deno.land / x / domain@v0.1.0 / domains.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
const domains: [ string, string, | "generic" | "country-code" | "sponsored" | "infrastructure" | "generic-restricted" | "test", string,][] = [ [".aaa", ".aaa", "generic", "American Automobile Association, Inc."], [".aarp", ".aarp", "generic", "AARP"], [".abarth", ".abarth", "generic", "Fiat Chrysler Automobiles N.V."], [".abb", ".abb", "generic", "ABB Ltd"], [".abbott", ".abbott", "generic", "Abbott Laboratories, Inc."], [".abbvie", ".abbvie", "generic", "AbbVie Inc."], [".abc", ".abc", "generic", "Disney Enterprises, Inc."], [".able", ".able", "generic", "Able Inc."], [".abogado", ".abogado", "generic", "Minds + Machines Group Limited"], [ ".abudhabi", ".abudhabi", "generic", "Abu Dhabi Systems and Information Centre", ], [".ac", ".ac", "country-code", "Internet Computer Bureau Limited"], [".academy", ".academy", "generic", "Binky Moon, LLC"], [".accenture", ".accenture", "generic", "Accenture plc"], [".accountant", ".accountant", "generic", "dot Accountant Limited"], [".accountants", ".accountants", "generic", "Binky Moon, LLC"], [".aco", ".aco", "generic", "ACO Severin Ahlmann GmbH & Co. KG"], [".active", ".active", "generic", "Not assigned"], [".actor", ".actor", "generic", "United TLD Holdco Ltd."], [".ad", ".ad", "country-code", "Andorra Telecom"], [ ".adac", ".adac", "generic", "Allgemeiner Deutscher Automobil-Club e.V. (ADAC)", ], [".ads", ".ads", "generic", "Charleston Road Registry Inc."], [".adult", ".adult", "generic", "ICM Registry AD LLC"], [ ".ae", ".ae", "country-code", "Telecommunication Regulatory Authority (TRA)", ], [".aeg", ".aeg", "generic", "Aktiebolaget Electrolux"], [ ".aero", ".aero", "sponsored", "Societe Internationale de Telecommunications Aeronautique (SITA INC USA)", ], [".aetna", ".aetna", "generic", "Aetna Life Insurance Company"], [".af", ".af", "country-code", "Ministry of Communications and IT"], [ ".afamilycompany", ".afamilycompany", "generic", "Johnson Shareholdings, Inc.", ], [".afl", ".afl", "generic", "Australian Football League"], [ ".africa", ".africa", "generic", "ZA Central Registry NPC trading as Registry.Africa", ], [".ag", ".ag", "country-code", "UHSA School of Medicine"], [ ".agakhan", ".agakhan", "generic", "Fondation Aga Khan (Aga Khan Foundation)", ], [".agency", ".agency", "generic", "Binky Moon, LLC"], [".ai", ".ai", "country-code", "Government of Anguilla"], [".aig", ".aig", "generic", "American International Group, Inc."], [".aigo", ".aigo", "generic", "Not assigned"], [".airbus", ".airbus", "generic", "Airbus S.A.S."], [".airforce", ".airforce", "generic", "United TLD Holdco Ltd."], [".airtel", ".airtel", "generic", "Bharti Airtel Limited"], [".akdn", ".akdn", "generic", "Fondation Aga Khan (Aga Khan Foundation)"], [ ".al", ".al", "country-code", "Electronic and Postal Communications Authority - AKEP", ], [".alfaromeo", ".alfaromeo", "generic", "Fiat Chrysler Automobiles N.V."], [".alibaba", ".alibaba", "generic", "Alibaba Group Holding Limited"], [".alipay", ".alipay", "generic", "Alibaba Group Holding Limited"], [ ".allfinanz", ".allfinanz", "generic", "Allfinanz Deutsche Vermögensberatung Aktiengesellschaft", ], [ ".allstate", ".allstate", "generic", "Allstate Fire and Casualty Insurance Company", ], [".ally", ".ally", "generic", "Ally Financial Inc."], [".alsace", ".alsace", "generic", "REGION GRAND EST"], [".alstom", ".alstom", "generic", "ALSTOM"], [ ".am", ".am", "country-code", '"Internet Society" Non-governmental Organization', ], [".amazon", ".amazon", "generic", "Amazon Registry Services, Inc."], [ ".americanexpress", ".americanexpress", "generic", "American Express Travel Related Services Company, Inc.", ], [".americanfamily", ".americanfamily", "generic", "AmFam, Inc."], [ ".amex", ".amex", "generic", "American Express Travel Related Services Company, Inc.", ], [".amfam", ".amfam", "generic", "AmFam, Inc."], [".amica", ".amica", "generic", "Amica Mutual Insurance Company"], [".amsterdam", ".amsterdam", "generic", "Gemeente Amsterdam"], [".an", ".an", "country-code", "Retired"], [".analytics", ".analytics", "generic", "Campus IP LLC"], [".android", ".android", "generic", "Charleston Road Registry Inc."], [".anquan", ".anquan", "generic", "QIHOO 360 TECHNOLOGY CO. LTD."], [ ".anz", ".anz", "generic", "Australia and New Zealand Banking Group Limited", ], [ ".ao", ".ao", "country-code", "Ministry of Telecommunications and Information Technologies (MTTI)", ], [".aol", ".aol", "generic", "OATH Inc."], [".apartments", ".apartments", "generic", "Binky Moon, LLC"], [".app", ".app", "generic", "Charleston Road Registry Inc."], [".apple", ".apple", "generic", "Apple Inc."], [ ".aq", ".aq", "country-code", "Antarctica Network Information Centre Limited", ], [".aquarelle", ".aquarelle", "generic", "Aquarelle.com"], [ ".ar", ".ar", "country-code", "Presidencia de la Nación – Secretaría Legal y Técnica", ], [".arab", ".arab", "generic", "League of Arab States"], [".aramco", ".aramco", "generic", "Aramco Services Company"], [".archi", ".archi", "generic", "Afilias Limited"], [".army", ".army", "generic", "United TLD Holdco Ltd."], [".arpa", ".arpa", "infrastructure", "Internet Architecture Board (IAB)"], [".art", ".art", "generic", "UK Creative Ideas Limited"], [ ".arte", ".arte", "generic", "Association Relative à la Télévision Européenne G.E.I.E.", ], [".as", ".as", "country-code", "AS Domain Registry"], [".asda", ".asda", "generic", "Wal-Mart Stores, Inc."], [".asia", ".asia", "sponsored", "DotAsia Organisation Ltd."], [".associates", ".associates", "generic", "Binky Moon, LLC"], [".at", ".at", "country-code", "nic.at GmbH"], [".athleta", ".athleta", "generic", "The Gap, Inc."], [".attorney", ".attorney", "generic", "United TLD Holdco, Ltd"], [".au", ".au", "country-code", ".au Domain Administration (auDA)"], [".auction", ".auction", "generic", "United TLD HoldCo, Ltd."], [".audi", ".audi", "generic", "AUDI Aktiengesellschaft"], [".audible", ".audible", "generic", "Amazon Registry Services, Inc."], [".audio", ".audio", "generic", "Uniregistry, Corp."], [".auspost", ".auspost", "generic", "Australian Postal Corporation"], [".author", ".author", "generic", "Amazon Registry Services, Inc."], [".auto", ".auto", "generic", "Cars Registry Limited"], [".autos", ".autos", "generic", "DERAutos, LLC"], [".avianca", ".avianca", "generic", "Avianca Holdings S.A."], [".aw", ".aw", "country-code", "SETAR"], [".aws", ".aws", "generic", "Amazon Registry Services, Inc."], [".ax", ".ax", "country-code", "Ålands landskapsregering"], [".axa", ".axa", "generic", "AXA SA"], [".az", ".az", "country-code", "IntraNS"], [".azure", ".azure", "generic", "Microsoft Corporation"], [".ba", ".ba", "country-code", "Universtiy Telinformatic Centre (UTIC)"], [".baby", ".baby", "generic", "XYZ.COM LLC"], [".baidu", ".baidu", "generic", "Baidu, Inc."], [".banamex", ".banamex", "generic", "Citigroup Inc."], [".bananarepublic", ".bananarepublic", "generic", "The Gap, Inc."], [".band", ".band", "generic", "United TLD Holdco, Ltd"], [".bank", ".bank", "generic", "fTLD Registry Services, LLC"], [ ".bar", ".bar", "generic", "Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable", ], [".barcelona", ".barcelona", "generic", "Municipi de Barcelona"], [".barclaycard", ".barclaycard", "generic", "Barclays Bank PLC"], [".barclays", ".barclays", "generic", "Barclays Bank PLC"], [".barefoot", ".barefoot", "generic", "Gallo Vineyards, Inc."], [".bargains", ".bargains", "generic", "Binky Moon, LLC"], [".baseball", ".baseball", "generic", "MLB Advanced Media DH, LLC"], [ ".basketball", ".basketball", "generic", "Fédération Internationale de Basketball (FIBA)", ], [".bauhaus", ".bauhaus", "generic", "Werkhaus GmbH"], [".bayern", ".bayern", "generic", "Bayern Connect GmbH"], [ ".bb", ".bb", "country-code", "Government of Barbados\nMinistry of Economic Affairs and Development\nTelecommunications Unit", ], [".bbc", ".bbc", "generic", "British Broadcasting Corporation"], [".bbt", ".bbt", "generic", "BB&T Corporation"], [".bbva", ".bbva", "generic", "BANCO BILBAO VIZCAYA ARGENTARIA, S.A."], [".bcg", ".bcg", "generic", "The Boston Consulting Group, Inc."], [".bcn", ".bcn", "generic", "Municipi de Barcelona"], [".bd", ".bd", "country-code", "Posts and Telecommunications Division"], [".be", ".be", "country-code", "DNS Belgium vzw/asbl"], [".beats", ".beats", "generic", "Beats Electronics, LLC"], [".beauty", ".beauty", "generic", "L'Oréal"], [".beer", ".beer", "generic", "Minds + Machines Group Limited"], [".bentley", ".bentley", "generic", "Bentley Motors Limited"], [".berlin", ".berlin", "generic", "dotBERLIN GmbH & Co. KG"], [".best", ".best", "generic", "BestTLD Pty Ltd"], [".bestbuy", ".bestbuy", "generic", "BBY Solutions, Inc."], [".bet", ".bet", "generic", "Afilias Limited"], [ ".bf", ".bf", "country-code", "ARCE-AutoritÈ de RÈgulation des Communications Electroniques", ], [".bg", ".bg", "country-code", "Register.BG"], [ ".bh", ".bh", "country-code", "Telecommunications Regulatory Authority (TRA)", ], [ ".bharti", ".bharti", "generic", "Bharti Enterprises (Holding) Private Limited", ], [".bi", ".bi", "country-code", "Centre National de l'Informatique"], [".bible", ".bible", "generic", "American Bible Society"], [".bid", ".bid", "generic", "dot Bid Limited"], [".bike", ".bike", "generic", "Binky Moon, LLC"], [".bing", ".bing", "generic", "Microsoft Corporation"], [".bingo", ".bingo", "generic", "Binky Moon, LLC"], [".bio", ".bio", "generic", "Afilias Limited"], [".biz", ".biz", "generic-restricted", "Neustar, Inc."], [ ".bj", ".bj", "country-code", "Autorité de Régulation des Communications Electroniques et de la Poste du Bénin (ARCEP BENIN)", ], [".bl", ".bl", "country-code", "Not assigned"], [".black", ".black", "generic", "Afilias Limited"], [".blackfriday", ".blackfriday", "generic", "Uniregistry, Corp."], [".blanco", ".blanco", "generic", "Not assigned"], [".blockbuster", ".blockbuster", "generic", "Dish DBS Corporation"], [".blog", ".blog", "generic", "Knock Knock WHOIS There, LLC"], [".bloomberg", ".bloomberg", "generic", "Bloomberg IP Holdings LLC"], [".blue", ".blue", "generic", "Afilias Limited"], [ ".bm", ".bm", "country-code", "Registry General Department, Ministry of Home Affairs", ], [".bms", ".bms", "generic", "Bristol-Myers Squibb Company"], [".bmw", ".bmw", "generic", "Bayerische Motoren Werke Aktiengesellschaft"], [ ".bn", ".bn", "country-code", "Authority for Info-communications Technology Industry of Brunei Darussalam (AITI)", ], [".bnl", ".bnl", "generic", "Not assigned"], [".bnpparibas", ".bnpparibas", "generic", "BNP Paribas"], [ ".bo", ".bo", "country-code", "Agencia para el Desarrollo de la Información de la Sociedad en Bolivia", ], [".boats", ".boats", "generic", "DERBoats, LLC"], [ ".boehringer", ".boehringer", "generic", "Boehringer Ingelheim International GmbH", ], [".bofa", ".bofa", "generic", "Bank of America Corporation"], [ ".bom", ".bom", "generic", "Núcleo de Informação e Coordenação do Ponto BR - NIC.br", ], [".bond", ".bond", "generic", "Shortdot SA"], [".boo", ".boo", "generic", "Charleston Road Registry Inc."], [".book", ".book", "generic", "Amazon Registry Services, Inc."], [".booking", ".booking", "generic", "Booking.com B.V."], [".boots", ".boots", "generic", "Not assigned"], [".bosch", ".bosch", "generic", "Robert Bosch GMBH"], [".bostik", ".bostik", "generic", "Bostik SA"], [".boston", ".boston", "generic", "Boston TLD Management, LLC"], [".bot", ".bot", "generic", "Amazon Registry Services, Inc."], [".boutique", ".boutique", "generic", "Binky Moon, LLC"], [".box", ".box", "generic", ".Box Inc."], [".bq", ".bq", "country-code", "Not assigned"], [".br", ".br", "country-code", "Comite Gestor da Internet no Brasil"], [".bradesco", ".bradesco", "generic", "Banco Bradesco S.A."], [".bridgestone", ".bridgestone", "generic", "Bridgestone Corporation"], [".broadway", ".broadway", "generic", "Celebrate Broadway, Inc."], [".broker", ".broker", "generic", "DOTBROKER REGISTRY LTD"], [".brother", ".brother", "generic", "Brother Industries, Ltd."], [".brussels", ".brussels", "generic", "DNS.be vzw"], [".bs", ".bs", "country-code", "University of The Bahamas"], [".bt", ".bt", "country-code", "Ministry of Information and Communications"], [".budapest", ".budapest", "generic", "Minds + Machines Group Limited"], [".bugatti", ".bugatti", "generic", "Bugatti International SA"], [".build", ".build", "generic", "Plan Bee LLC"], [".builders", ".builders", "generic", "Binky Moon, LLC"], [".business", ".business", "generic", "Binky Moon, LLC"], [".buy", ".buy", "generic", "Amazon Registry Services, INC"], [".buzz", ".buzz", "generic", "DOTSTRATEGY CO."], [".bv", ".bv", "country-code", "Norid A/S"], [ ".bw", ".bw", "country-code", "Botswana Communications Regulatory Authority (BOCRA)", ], [".by", ".by", "country-code", "Reliable Software, Ltd."], [".bz", ".bz", "country-code", "University of Belize"], [".bzh", ".bzh", "generic", "Association www.bzh"], [ ".ca", ".ca", "country-code", "Canadian Internet Registration Authority (CIRA) Autorité Canadienne pour les enregistrements Internet (ACEI)", ], [".cab", ".cab", "generic", "Binky Moon, LLC"], [".cafe", ".cafe", "generic", "Binky Moon, LLC"], [".cal", ".cal", "generic", "Charleston Road Registry Inc."], [".call", ".call", "generic", "Amazon Registry Services, Inc."], [".calvinklein", ".calvinklein", "generic", "PVH gTLD Holdings LLC"], [".cam", ".cam", "generic", "AC Webconnecting Holding B.V."], [".camera", ".camera", "generic", "Binky Moon, LLC"], [".camp", ".camp", "generic", "Binky Moon, LLC"], [ ".cancerresearch", ".cancerresearch", "generic", "Australian Cancer Research Foundation", ], [".canon", ".canon", "generic", "Canon Inc."], [ ".capetown", ".capetown", "generic", "ZA Central Registry NPC trading as ZA Central Registry", ], [".capital", ".capital", "generic", "Binky Moon, LLC"], [ ".capitalone", ".capitalone", "generic", "Capital One Financial Corporation", ], [".car", ".car", "generic", "Cars Registry Limited"], [".caravan", ".caravan", "generic", "Caravan International, Inc."], [".cards", ".cards", "generic", "Binky Moon, LLC"], [".care", ".care", "generic", "Binky Moon, LLC"], [".career", ".career", "generic", "dotCareer LLC"], [".careers", ".careers", "generic", "Binky Moon, LLC"], [".cars", ".cars", "generic", "Cars Registry Limited"], [".cartier", ".cartier", "generic", "Not assigned"], [".casa", ".casa", "generic", "Minds + Machines Group Limited"], [".case", ".case", "generic", "CNH Industrial N.V."], [".caseih", ".caseih", "generic", "CNH Industrial N.V."], [".cash", ".cash", "generic", "Binky Moon, LLC"], [".casino", ".casino", "generic", "Binky Moon, LLC"], [".cat", ".cat", "sponsored", "Fundacio puntCAT"], [".catering", ".catering", "generic", "Binky Moon, LLC"], [ ".catholic", ".catholic", "generic", "Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)", ], [".cba", ".cba", "generic", "COMMONWEALTH BANK OF AUSTRALIA"], [".cbn", ".cbn", "generic", "The Christian Broadcasting Network, Inc."], [".cbre", ".cbre", "generic", "CBRE, Inc."], [".cbs", ".cbs", "generic", "CBS Domains Inc."], [ ".cc", ".cc", "country-code", "eNIC Cocos (Keeling) Islands Pty.\nLtd. d/b/a Island Internet Services", ], [ ".cd", ".cd", "country-code", "Office Congolais des Postes et Télécommunications - OCPT", ], [".ceb", ".ceb", "generic", "The Corporate Executive Board Company"], [".center", ".center", "generic", "Binky Moon, LLC"], [".ceo", ".ceo", "generic", "CEOTLD Pty Ltd"], [ ".cern", ".cern", "generic", 'European Organization for Nuclear Research ("CERN")', ], [ ".cf", ".cf", "country-code", "Societe Centrafricaine de Telecommunications (SOCATEL)", ], [".cfa", ".cfa", "generic", "CFA Institute"], [".cfd", ".cfd", "generic", "DOTCFD REGISTRY LTD"], [".cg", ".cg", "country-code", "Interpoint Switzerland"], [ ".ch", ".ch", "country-code", "SWITCH The Swiss Education & Research Network", ], [".chanel", ".chanel", "generic", "Chanel International B.V."], [".channel", ".channel", "generic", "Charleston Road Registry Inc."], [".charity", ".charity", "generic", "Corn Lake, LLC"], [".chase", ".chase", "generic", "JPMorgan Chase Bank, National Association"], [".chat", ".chat", "generic", "Binky Moon, LLC"], [".cheap", ".cheap", "generic", "Binky Moon, LLC"], [".chintai", ".chintai", "generic", "CHINTAI Corporation"], [".chloe", ".chloe", "generic", "Not assigned"], [".christmas", ".christmas", "generic", "Uniregistry, Corp."], [".chrome", ".chrome", "generic", "Charleston Road Registry Inc."], [".chrysler", ".chrysler", "generic", "Not assigned"], [".church", ".church", "generic", "Binky Moon, LLC"], [ ".ci", ".ci", "country-code", "Autorité de Régulation des Télécommunications/TIC de Côte d’lvoire (ARTCI)", ], [".cipriani", ".cipriani", "generic", "Hotel Cipriani Srl"], [".circle", ".circle", "generic", "Amazon Registry Services, Inc."], [".cisco", ".cisco", "generic", "Cisco Technology, Inc."], [".citadel", ".citadel", "generic", "Citadel Domain LLC"], [".citi", ".citi", "generic", "Citigroup Inc."], [".citic", ".citic", "generic", "CITIC Group Corporation"], [".city", ".city", "generic", "Binky Moon, LLC"], [".cityeats", ".cityeats", "generic", "Lifestyle Domain Holdings, Inc."], [".ck", ".ck", "country-code", "Telecom Cook Islands Ltd."], [".cl", ".cl", "country-code", "NIC Chile (University of Chile)"], [".claims", ".claims", "generic", "Binky Moon, LLC"], [".cleaning", ".cleaning", "generic", "Binky Moon, LLC"], [".click", ".click", "generic", "Uniregistry, Corp."], [".clinic", ".clinic", "generic", "Binky Moon, LLC"], [".clinique", ".clinique", "generic", "The Estée Lauder Companies Inc."], [".clothing", ".clothing", "generic", "Binky Moon, LLC"], [".cloud", ".cloud", "generic", "ARUBA PEC S.p.A."], [".club", ".club", "generic", ".CLUB DOMAINS, LLC"], [".clubmed", ".clubmed", "generic", "Club Méditerranée S.A."], [".cm", ".cm", "country-code", "Cameroon Telecommunications (CAMTEL)"], [ ".cn", ".cn", "country-code", "China Internet Network Information Center (CNNIC)", ], [".co", ".co", "country-code", ".CO Internet S.A.S."], [".coach", ".coach", "generic", "Binky Moon, LLC"], [".codes", ".codes", "generic", "Binky Moon, LLC"], [".coffee", ".coffee", "generic", "Binky Moon, LLC"], [".college", ".college", "generic", "XYZ.COM LLC"], [".cologne", ".cologne", "generic", "dotKoeln GmbH"], [".com", ".com", "generic", "VeriSign Global Registry Services"], [".comcast", ".comcast", "generic", "Comcast IP Holdings I, LLC"], [".commbank", ".commbank", "generic", "COMMONWEALTH BANK OF AUSTRALIA"], [".community", ".community", "generic", "Binky Moon, LLC"], [".company", ".company", "generic", "Binky Moon, LLC"], [".compare", ".compare", "generic", "Registry Services, LLC"], [".computer", ".computer", "generic", "Binky Moon, LLC"], [".comsec", ".comsec", "generic", "VeriSign, Inc."], [".condos", ".condos", "generic", "Binky Moon, LLC"], [".construction", ".construction", "generic", "Binky Moon, LLC"], [".consulting", ".consulting", "generic", "United TLD Holdco, LTD."], [".contact", ".contact", "generic", "Dog Beach, LLC"], [".contractors", ".contractors", "generic", "Binky Moon, LLC"], [".cooking", ".cooking", "generic", "Minds + Machines Group Limited"], [ ".cookingchannel", ".cookingchannel", "generic", "Lifestyle Domain Holdings, Inc.", ], [".cool", ".cool", "generic", "Binky Moon, LLC"], [".coop", ".coop", "sponsored", "DotCooperation LLC"], [".corsica", ".corsica", "generic", "Collectivité de Corse"], [".country", ".country", "generic", "Top Level Domain Holdings Limited"], [".coupon", ".coupon", "generic", "Amazon Registry Services, Inc."], [".coupons", ".coupons", "generic", "Binky Moon, LLC"], [".courses", ".courses", "generic", "OPEN UNIVERSITIES AUSTRALIA PTY LTD"], [ ".cpa", ".cpa", "generic", "American Institute of Certified Public Accountants", ], [ ".cr", ".cr", "country-code", "National Academy of Sciences\nAcademia Nacional de Ciencias", ], [".credit", ".credit", "generic", "Binky Moon, LLC"], [".creditcard", ".creditcard", "generic", "Binky Moon, LLC"], [ ".creditunion", ".creditunion", "generic", "CUNA Performance Resources, LLC", ], [".cricket", ".cricket", "generic", "dot Cricket Limited"], [".crown", ".crown", "generic", "Crown Equipment Corporation"], [".crs", ".crs", "generic", "Federated Co-operatives Limited"], [".cruise", ".cruise", "generic", "Viking River Cruises (Bermuda) Ltd."], [".cruises", ".cruises", "generic", "Binky Moon, LLC"], [".csc", ".csc", "generic", "Alliance-One Services, Inc."], [ ".cu", ".cu", "country-code", "CENIAInternet\nIndustria y San Jose\nCapitolio Nacional", ], [".cuisinella", ".cuisinella", "generic", "SALM S.A.S."], [ ".cv", ".cv", "country-code", "Agência Reguladora Multissectorial da Economia (ARME)", ], [".cw", ".cw", "country-code", "University of Curacao"], [ ".cx", ".cx", "country-code", "Christmas Island Domain Administration Limited", ], [".cy", ".cy", "country-code", "University of Cyprus"], [".cymru", ".cymru", "generic", "Nominet UK"], [".cyou", ".cyou", "generic", "Shortdot SA"], [".cz", ".cz", "country-code", "CZ.NIC, z.s.p.o"], [".dabur", ".dabur", "generic", "Dabur India Limited"], [".dad", ".dad", "generic", "Charleston Road Registry Inc."], [".dance", ".dance", "generic", "United TLD Holdco Ltd."], [".data", ".data", "generic", "Dish DBS Corporation"], [".date", ".date", "generic", "dot Date Limited"], [".dating", ".dating", "generic", "Binky Moon, LLC"], [".datsun", ".datsun", "generic", "NISSAN MOTOR CO., LTD."], [".day", ".day", "generic", "Charleston Road Registry Inc."], [".dclk", ".dclk", "generic", "Charleston Road Registry Inc."], [".dds", ".dds", "generic", "Minds + Machines Group Limited"], [".de", ".de", "country-code", "DENIC eG"], [".deal", ".deal", "generic", "Amazon Registry Services, Inc."], [".dealer", ".dealer", "generic", "Intercap Registry Inc."], [".deals", ".deals", "generic", "Binky Moon, LLC"], [".degree", ".degree", "generic", "United TLD Holdco, Ltd"], [".delivery", ".delivery", "generic", "Binky Moon, LLC"], [".dell", ".dell", "generic", "Dell Inc."], [".deloitte", ".deloitte", "generic", "Deloitte Touche Tohmatsu"], [".delta", ".delta", "generic", "Delta Air Lines, Inc."], [".democrat", ".democrat", "generic", "United TLD Holdco Ltd."], [".dental", ".dental", "generic", "Binky Moon, LLC"], [".dentist", ".dentist", "generic", "United TLD Holdco, Ltd"], [".desi", ".desi", "generic", "Desi Networks LLC"], [".design", ".design", "generic", "Top Level Design, LLC"], [".dev", ".dev", "generic", "Charleston Road Registry Inc."], [".dhl", ".dhl", "generic", "Deutsche Post AG"], [".diamonds", ".diamonds", "generic", "Binky Moon, LLC"], [".diet", ".diet", "generic", "Uniregistry, Corp."], [".digital", ".digital", "generic", "Binky Moon, LLC"], [".direct", ".direct", "generic", "Binky Moon, LLC"], [".directory", ".directory", "generic", "Binky Moon, LLC"], [".discount", ".discount", "generic", "Binky Moon, LLC"], [".discover", ".discover", "generic", "Discover Financial Services"], [".dish", ".dish", "generic", "Dish DBS Corporation"], [".diy", ".diy", "generic", "Lifestyle Domain Holdings, Inc."], [".dj", ".dj", "country-code", "Djibouti Telecom S.A"], [".dk", ".dk", "country-code", "Dansk Internet Forum"], [".dm", ".dm", "country-code", "DotDM Corporation"], [".dnp", ".dnp", "generic", "Dai Nippon Printing Co., Ltd."], [ ".do", ".do", "country-code", "Pontificia Universidad Catolica Madre y Maestra\nRecinto Santo Tomas de Aquino", ], [".docs", ".docs", "generic", "Charleston Road Registry Inc."], [".doctor", ".doctor", "generic", "Binky Moon, LLC"], [".dodge", ".dodge", "generic", "Not assigned"], [".dog", ".dog", "generic", "Binky Moon, LLC"], [".doha", ".doha", "generic", "Not assigned"], [".domains", ".domains", "generic", "Binky Moon, LLC"], [".doosan", ".doosan", "generic", "Retired"], [".dot", ".dot", "generic", "Dish DBS Corporation"], [".download", ".download", "generic", "dot Support Limited"], [".drive", ".drive", "generic", "Charleston Road Registry Inc."], [".dtv", ".dtv", "generic", "Dish DBS Corporation"], [".dubai", ".dubai", "generic", "Dubai Smart Government Department"], [".duck", ".duck", "generic", "Johnson Shareholdings, Inc."], [".dunlop", ".dunlop", "generic", "The Goodyear Tire & Rubber Company"], [".duns", ".duns", "generic", "Not assigned"], [".dupont", ".dupont", "generic", "E. I. du Pont de Nemours and Company"], [ ".durban", ".durban", "generic", "ZA Central Registry NPC trading as ZA Central Registry", ], [ ".dvag", ".dvag", "generic", "Deutsche Vermögensberatung Aktiengesellschaft DVAG", ], [".dvr", ".dvr", "generic", "Hughes Satellite Systems Corporation"], [".dz", ".dz", "country-code", "CERIST"], [".earth", ".earth", "generic", "Interlink Co., Ltd."], [".eat", ".eat", "generic", "Charleston Road Registry Inc."], [".ec", ".ec", "country-code", "ECUADORDOMAIN S.A."], [".eco", ".eco", "generic", "Big Room Inc."], [ ".edeka", ".edeka", "generic", "EDEKA Verband kaufmännischer Genossenschaften e.V.", ], [".edu", ".edu", "sponsored", "EDUCAUSE"], [".education", ".education", "generic", "Binky Moon, LLC"], [".ee", ".ee", "country-code", "Eesti Interneti Sihtasutus (EIS)"], [ ".eg", ".eg", "country-code", "Egyptian Universities Network (EUN)\nSupreme Council of Universities", ], [".eh", ".eh", "country-code", "Not assigned"], [".email", ".email", "generic", "Binky Moon, LLC"], [".emerck", ".emerck", "generic", "Merck KGaA"], [".energy", ".energy", "generic", "Binky Moon, LLC"], [".engineer", ".engineer", "generic", "United TLD Holdco Ltd."], [".engineering", ".engineering", "generic", "Binky Moon, LLC"], [".enterprises", ".enterprises", "generic", "Binky Moon, LLC"], [".epost", ".epost", "generic", "Not assigned"], [".epson", ".epson", "generic", "Seiko Epson Corporation"], [".equipment", ".equipment", "generic", "Binky Moon, LLC"], [ ".er", ".er", "country-code", "Eritrea Telecommunication Services Corporation (EriTel)", ], [".ericsson", ".ericsson", "generic", "Telefonaktiebolaget L M Ericsson"], [".erni", ".erni", "generic", "ERNI Group Holding AG"], [".es", ".es", "country-code", "Red.es"], [".esq", ".esq", "generic", "Charleston Road Registry Inc."], [".estate", ".estate", "generic", "Binky Moon, LLC"], [".esurance", ".esurance", "generic", "Not assigned"], [".et", ".et", "country-code", "Ethio telecom"], [ ".etisalat", ".etisalat", "generic", "Emirates Telecommunications Corporation (trading as Etisalat)", ], [".eu", ".eu", "country-code", "EURid vzw/asbl"], [ ".eurovision", ".eurovision", "generic", "European Broadcasting Union (EBU)", ], [".eus", ".eus", "generic", "Puntueus Fundazioa"], [".events", ".events", "generic", "Binky Moon, LLC"], [".everbank", ".everbank", "generic", "Not assigned"], [".exchange", ".exchange", "generic", "Binky Moon, LLC"], [".expert", ".expert", "generic", "Binky Moon, LLC"], [".exposed", ".exposed", "generic", "Binky Moon, LLC"], [".express", ".express", "generic", "Binky Moon, LLC"], [".extraspace", ".extraspace", "generic", "Extra Space Storage LLC"], [".fage", ".fage", "generic", "Fage International S.A."], [".fail", ".fail", "generic", "Binky Moon, LLC"], [".fairwinds", ".fairwinds", "generic", "FairWinds Partners, LLC"], [".faith", ".faith", "generic", "dot Faith Limited"], [".family", ".family", "generic", "United TLD Holdco Ltd."], [".fan", ".fan", "generic", "Asiamix Digital Ltd"], [".fans", ".fans", "generic", "ZDNS International Limited"], [".farm", ".farm", "generic", "Binky Moon, LLC"], [".farmers", ".farmers", "generic", "Farmers Insurance Exchange"], [".fashion", ".fashion", "generic", "Minds + Machines Group Limited"], [".fast", ".fast", "generic", "Amazon Registry Services, Inc."], [".fedex", ".fedex", "generic", "Federal Express Corporation"], [".feedback", ".feedback", "generic", "Top Level Spectrum, Inc."], [".ferrari", ".ferrari", "generic", "Fiat Chrysler Automobiles N.V."], [".ferrero", ".ferrero", "generic", "Ferrero Trading Lux S.A."], [ ".fi", ".fi", "country-code", "Finnish Transport and Communications Agency Traficom", ], [".fiat", ".fiat", "generic", "Fiat Chrysler Automobiles N.V."], [".fidelity", ".fidelity", "generic", "Fidelity Brokerage Services LLC"], [".fido", ".fido", "generic", "Rogers Communications Canada Inc."], [".film", ".film", "generic", "Motion Picture Domain Registry Pty Ltd"], [ ".final", ".final", "generic", "Núcleo de Informação e Coordenação do Ponto BR - NIC.br", ], [".finance", ".finance", "generic", "Binky Moon, LLC"], [".financial", ".financial", "generic", "Binky Moon, LLC"], [".fire", ".fire", "generic", "Amazon Registry Services, Inc."], [ ".firestone", ".firestone", "generic", "Bridgestone Licensing Services, Inc.", ], [".firmdale", ".firmdale", "generic", "Firmdale Holdings Limited"], [".fish", ".fish", "generic", "Binky Moon, LLC"], [".fishing", ".fishing", "generic", "Minds + Machines Group Limited"], [".fit", ".fit", "generic", "Minds + Machines Group Limited"], [".fitness", ".fitness", "generic", "Binky Moon, LLC"], [ ".fj", ".fj", "country-code", "The University of the South Pacific\nIT Services", ], [".fk", ".fk", "country-code", "Falkland Islands Government"], [".flickr", ".flickr", "generic", "Flickr, Inc."], [".flights", ".flights", "generic", "Binky Moon, LLC"], [".flir", ".flir", "generic", "FLIR Systems, Inc."], [".florist", ".florist", "generic", "Binky Moon, LLC"], [".flowers", ".flowers", "generic", "Uniregistry, Corp."], [".flsmidth", ".flsmidth", "generic", "Retired"], [".fly", ".fly", "generic", "Charleston Road Registry Inc."], [".fm", ".fm", "country-code", "FSM Telecommunications Corporation"], [".fo", ".fo", "country-code", "FO Council"], [".foo", ".foo", "generic", "Charleston Road Registry Inc."], [".food", ".food", "generic", "Lifestyle Domain Holdings, Inc."], [ ".foodnetwork", ".foodnetwork", "generic", "Lifestyle Domain Holdings, Inc.", ], [".football", ".football", "generic", "Binky Moon, LLC"], [".ford", ".ford", "generic", "Ford Motor Company"], [".forex", ".forex", "generic", "DOTFOREX REGISTRY LTD"], [".forsale", ".forsale", "generic", "United TLD Holdco, LLC"], [".forum", ".forum", "generic", "Fegistry, LLC"], [".foundation", ".foundation", "generic", "Binky Moon, LLC"], [".fox", ".fox", "generic", "FOX Registry, LLC"], [ ".fr", ".fr", "country-code", "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", ], [".free", ".free", "generic", "Amazon Registry Services, Inc."], [ ".fresenius", ".fresenius", "generic", "Fresenius Immobilien-Verwaltungs-GmbH", ], [".frl", ".frl", "generic", "FRLregistry B.V."], [".frogans", ".frogans", "generic", "OP3FT"], [".frontdoor", ".frontdoor", "generic", "Lifestyle Domain Holdings, Inc."], [".frontier", ".frontier", "generic", "Frontier Communications Corporation"], [".ftr", ".ftr", "generic", "Frontier Communications Corporation"], [".fujitsu", ".fujitsu", "generic", "Fujitsu Limited"], [".fujixerox", ".fujixerox", "generic", "Xerox DNHC LLC"], [".fun", ".fun", "generic", "DotSpace, Inc."], [".fund", ".fund", "generic", "Binky Moon, LLC"], [".furniture", ".furniture", "generic", "Binky Moon, LLC"], [".futbol", ".futbol", "generic", "United TLD Holdco, Ltd."], [".fyi", ".fyi", "generic", "Binky Moon, LLC"], [ ".ga", ".ga", "country-code", "Agence Nationale des Infrastructures Numériques et des Fréquences (ANINF)", ], [".gal", ".gal", "generic", "Asociación puntoGAL"], [".gallery", ".gallery", "generic", "Binky Moon, LLC"], [".gallo", ".gallo", "generic", "Gallo Vineyards, Inc."], [".gallup", ".gallup", "generic", "Gallup, Inc."], [".game", ".game", "generic", "Uniregistry, Corp."], [".games", ".games", "generic", "United TLD Holdco Ltd."], [".gap", ".gap", "generic", "The Gap, Inc."], [".garden", ".garden", "generic", "Minds + Machines Group Limited"], [".gay", ".gay", "generic", "Top Level Design, LLC"], [".gb", ".gb", "country-code", "Reserved Domain - IANA"], [".gbiz", ".gbiz", "generic", "Charleston Road Registry Inc."], [ ".gd", ".gd", "country-code", "The National Telecommunications Regulatory Commission (NTRC)", ], [ ".gdn", ".gdn", "generic", 'Joint Stock Company "Navigation-information systems"', ], [".ge", ".ge", "country-code", "Caucasus Online LLC"], [".gea", ".gea", "generic", "GEA Group Aktiengesellschaft"], [".gent", ".gent", "generic", "Combell nv"], [".genting", ".genting", "generic", "Resorts World Inc. Pte. Ltd."], [".george", ".george", "generic", "Wal-Mart Stores, Inc."], [".gf", ".gf", "country-code", "Net Plus"], [".gg", ".gg", "country-code", "Island Networks Ltd."], [".ggee", ".ggee", "generic", "GMO Internet, Inc."], [".gh", ".gh", "country-code", "Network Computer Systems Limited"], [".gi", ".gi", "country-code", "Sapphire Networks"], [".gift", ".gift", "generic", "Uniregistry, Corp."], [".gifts", ".gifts", "generic", "Binky Moon, LLC"], [".gives", ".gives", "generic", "United TLD Holdco Ltd."], [".giving", ".giving", "generic", "Giving Limited"], [".gl", ".gl", "country-code", "TELE Greenland A/S"], [".glade", ".glade", "generic", "Johnson Shareholdings, Inc."], [".glass", ".glass", "generic", "Binky Moon, LLC"], [".gle", ".gle", "generic", "Charleston Road Registry Inc."], [".global", ".global", "generic", "Dot Global Domain Registry Limited"], [".globo", ".globo", "generic", "Globo Comunicação e Participações S.A"], [".gm", ".gm", "country-code", "GM-NIC"], [".gmail", ".gmail", "generic", "Charleston Road Registry Inc."], [".gmbh", ".gmbh", "generic", "Binky Moon, LLC"], [".gmo", ".gmo", "generic", "GMO Internet, Inc."], [".gmx", ".gmx", "generic", "1&1 Mail & Media GmbH"], [ ".gn", ".gn", "country-code", "Centre National des Sciences Halieutiques de Boussoura", ], [".godaddy", ".godaddy", "generic", "Go Daddy East, LLC"], [".gold", ".gold", "generic", "Binky Moon, LLC"], [".goldpoint", ".goldpoint", "generic", "YODOBASHI CAMERA CO.,LTD."], [".golf", ".golf", "generic", "Binky Moon, LLC"], [".goo", ".goo", "generic", "NTT Resonant Inc."], [".goodhands", ".goodhands", "generic", "Not assigned"], [".goodyear", ".goodyear", "generic", "The Goodyear Tire & Rubber Company"], [".goog", ".goog", "generic", "Charleston Road Registry Inc."], [".google", ".google", "generic", "Charleston Road Registry Inc."], [".gop", ".gop", "generic", "Republican State Leadership Committee, Inc."], [".got", ".got", "generic", "Amazon Registry Services, Inc."], [ ".gov", ".gov", "sponsored", "General Services Administration\nAttn: QTDC, 2E08 (.gov Domain Registration)", ], [".gp", ".gp", "country-code", "Networking Technologies Group"], [".gq", ".gq", "country-code", "GETESA"], [".gr", ".gr", "country-code", "ICS-FORTH GR"], [".grainger", ".grainger", "generic", "Grainger Registry Services, LLC"], [".graphics", ".graphics", "generic", "Binky Moon, LLC"], [".gratis", ".gratis", "generic", "Binky Moon, LLC"], [".green", ".green", "generic", "Afilias Limited"], [".gripe", ".gripe", "generic", "Binky Moon, LLC"], [".grocery", ".grocery", "generic", "Wal-Mart Stores, Inc."], [".group", ".group", "generic", "Binky Moon, LLC"], [ ".gs", ".gs", "country-code", "Government of South Georgia and South Sandwich Islands (GSGSSI)", ], [".gt", ".gt", "country-code", "Universidad del Valle de Guatemala"], [".gu", ".gu", "country-code", "University of Guam"], [ ".guardian", ".guardian", "generic", "The Guardian Life Insurance Company of America", ], [".gucci", ".gucci", "generic", "Guccio Gucci S.p.a."], [".guge", ".guge", "generic", "Charleston Road Registry Inc."], [".guide", ".guide", "generic", "Binky Moon, LLC"], [".guitars", ".guitars", "generic", "Uniregistry, Corp."], [".guru", ".guru", "generic", "Binky Moon, LLC"], [ ".gw", ".gw", "country-code", "Autoridade Reguladora Nacional - Tecnologias de Informação e Comunicação da Guiné-Bissau", ], [".gy", ".gy", "country-code", "University of Guyana"], [".hair", ".hair", "generic", "L'Oreal"], [".hamburg", ".hamburg", "generic", "Hamburg Top-Level-Domain GmbH"], [".hangout", ".hangout", "generic", "Charleston Road Registry Inc."], [".haus", ".haus", "generic", "United TLD Holdco, LTD."], [".hbo", ".hbo", "generic", "HBO Registry Services, Inc."], [ ".hdfc", ".hdfc", "generic", "HOUSING DEVELOPMENT FINANCE CORPORATION LIMITED", ], [".hdfcbank", ".hdfcbank", "generic", "HDFC Bank Limited"], [".health", ".health", "generic", "DotHealth, LLC"], [".healthcare", ".healthcare", "generic", "Binky Moon, LLC"], [".help", ".help", "generic", "Uniregistry, Corp."], [".helsinki", ".helsinki", "generic", "City of Helsinki"], [".here", ".here", "generic", "Charleston Road Registry Inc."], [".hermes", ".hermes", "generic", "Hermes International"], [".hgtv", ".hgtv", "generic", "Lifestyle Domain Holdings, Inc."], [".hiphop", ".hiphop", "generic", "Uniregistry, Corp."], [".hisamitsu", ".hisamitsu", "generic", "Hisamitsu Pharmaceutical Co.,Inc."], [".hitachi", ".hitachi", "generic", "Hitachi, Ltd."], [".hiv", ".hiv", "generic", "Uniregistry, Corp."], [ ".hk", ".hk", "country-code", "Hong Kong Internet Registration Corporation Ltd.", ], [".hkt", ".hkt", "generic", "PCCW-HKT DataCom Services Limited"], [".hm", ".hm", "country-code", "HM Domain Registry"], [".hn", ".hn", "country-code", "Red de Desarrollo Sostenible Honduras"], [".hockey", ".hockey", "generic", "Binky Moon, LLC"], [".holdings", ".holdings", "generic", "Binky Moon, LLC"], [".holiday", ".holiday", "generic", "Binky Moon, LLC"], [".homedepot", ".homedepot", "generic", "Home Depot Product Authority, LLC"], [".homegoods", ".homegoods", "generic", "The TJX Companies, Inc."], [".homes", ".homes", "generic", "DERHomes, LLC"], [".homesense", ".homesense", "generic", "The TJX Companies, Inc."], [".honda", ".honda", "generic", "Honda Motor Co., Ltd."], [".honeywell", ".honeywell", "generic", "Not assigned"], [".horse", ".horse", "generic", "Minds + Machines Group Limited"], [".hospital", ".hospital", "generic", "Binky Moon, LLC"], [".host", ".host", "generic", "DotHost Inc."], [".hosting", ".hosting", "generic", "Uniregistry, Corp."], [".hot", ".hot", "generic", "Amazon Registry Services, Inc."], [".hoteles", ".hoteles", "generic", "Travel Reservations SRL"], [".hotels", ".hotels", "generic", "Booking.com B.V."], [".hotmail", ".hotmail", "generic", "Microsoft Corporation"], [".house", ".house", "generic", "Binky Moon, LLC"], [".how", ".how", "generic", "Charleston Road Registry Inc."], [ ".hr", ".hr", "country-code", "CARNet - Croatian Academic and Research Network", ], [".hsbc", ".hsbc", "generic", "HSBC Global Services (UK) Limited"], [".ht", ".ht", "country-code", "Consortium FDS/RDDH"], [".htc", ".htc", "generic", "Not assigned"], [ ".hu", ".hu", "country-code", "Council of Hungarian Internet Providers (CHIP)", ], [".hughes", ".hughes", "generic", "Hughes Satellite Systems Corporation"], [".hyatt", ".hyatt", "generic", "Hyatt GTLD, L.L.C."], [".hyundai", ".hyundai", "generic", "Hyundai Motor Company"], [".ibm", ".ibm", "generic", "International Business Machines Corporation"], [ ".icbc", ".icbc", "generic", "Industrial and Commercial Bank of China Limited", ], [".ice", ".ice", "generic", "IntercontinentalExchange, Inc."], [".icu", ".icu", "generic", "Shortdot SA"], [ ".id", ".id", "country-code", "Perkumpulan Pengelola Nama Domain Internet Indonesia (PANDI)", ], [ ".ie", ".ie", "country-code", "University College Dublin\nComputing Services\nComputer Centre", ], [".ieee", ".ieee", "generic", "IEEE Global LLC"], [".ifm", ".ifm", "generic", "ifm electronic gmbh"], [".iinet", ".iinet", "generic", "Retired"], [".ikano", ".ikano", "generic", "Ikano S.A."], [".il", ".il", "country-code", "Internet Society of Israel"], [".im", ".im", "country-code", "Isle of Man Government"], [".imamat", ".imamat", "generic", "Fondation Aga Khan (Aga Khan Foundation)"], [".imdb", ".imdb", "generic", "Amazon Registry Services, Inc."], [".immo", ".immo", "generic", "Binky Moon, LLC"], [".immobilien", ".immobilien", "generic", "United TLD Holdco Ltd."], [".in", ".in", "country-code", "National Internet Exchange of India"], [".inc", ".inc", "generic", "Intercap Registry Inc."], [".industries", ".industries", "generic", "Binky Moon, LLC"], [".infiniti", ".infiniti", "generic", "NISSAN MOTOR CO., LTD."], [".info", ".info", "generic", "Afilias Limited"], [".ing", ".ing", "generic", "Charleston Road Registry Inc."], [".ink", ".ink", "generic", "Top Level Design, LLC"], [".institute", ".institute", "generic", "Binky Moon, LLC"], [".insurance", ".insurance", "generic", "fTLD Registry Services LLC"], [".insure", ".insure", "generic", "Binky Moon, LLC"], [".int", ".int", "sponsored", "Internet Assigned Numbers Authority"], [".intel", ".intel", "generic", "Intel Corporation"], [".international", ".international", "generic", "Binky Moon, LLC"], [".intuit", ".intuit", "generic", "Intuit Administrative Services, Inc."], [".investments", ".investments", "generic", "Binky Moon, LLC"], [".io", ".io", "country-code", "Internet Computer Bureau Limited"], [".ipiranga", ".ipiranga", "generic", "Ipiranga Produtos de Petroleo S.A."], [".iq", ".iq", "country-code", "Communications and Media Commission (CMC)"], [ ".ir", ".ir", "country-code", "Institute for Research in Fundamental Sciences", ], [".irish", ".irish", "generic", "Binky Moon, LLC"], [".is", ".is", "country-code", "ISNIC - Internet Iceland ltd."], [".iselect", ".iselect", "generic", "Not assigned"], [ ".ismaili", ".ismaili", "generic", "Fondation Aga Khan (Aga Khan Foundation)", ], [".ist", ".ist", "generic", "Istanbul Metropolitan Municipality"], [".istanbul", ".istanbul", "generic", "Istanbul Metropolitan Municipality"], [".it", ".it", "country-code", "IIT - CNR"], [".itau", ".itau", "generic", "Itau Unibanco Holding S.A."], [".itv", ".itv", "generic", "ITV Services Limited"], [".iveco", ".iveco", "generic", "CNH Industrial N.V."], [".iwc", ".iwc", "generic", "Not assigned"], [".jaguar", ".jaguar", "generic", "Jaguar Land Rover Ltd"], [".java", ".java", "generic", "Oracle Corporation"], [".jcb", ".jcb", "generic", "JCB Co., Ltd."], [".jcp", ".jcp", "generic", "JCP Media, Inc."], [".je", ".je", "country-code", "Island Networks (Jersey) Ltd."], [".jeep", ".jeep", "generic", "FCA US LLC."], [".jetzt", ".jetzt", "generic", "Binky Moon, LLC"], [".jewelry", ".jewelry", "generic", "Binky Moon, LLC"], [".jio", ".jio", "generic", "Affinity Names, Inc."], [".jlc", ".jlc", "generic", "Not assigned"], [".jll", ".jll", "generic", "Jones Lang LaSalle Incorporated"], [".jm", ".jm", "country-code", "University of West Indies"], [".jmp", ".jmp", "generic", "Matrix IP LLC"], [".jnj", ".jnj", "generic", "Johnson & Johnson Services, Inc."], [ ".jo", ".jo", "country-code", "National Information Technology Center (NITC)", ], [".jobs", ".jobs", "sponsored", "Employ Media LLC"], [ ".joburg", ".joburg", "generic", "ZA Central Registry NPC trading as ZA Central Registry", ], [".jot", ".jot", "generic", "Amazon Registry Services, Inc."], [".joy", ".joy", "generic", "Amazon Registry Services, Inc."], [".jp", ".jp", "country-code", "Japan Registry Services Co., Ltd."], [ ".jpmorgan", ".jpmorgan", "generic", "JPMorgan Chase Bank, National Association", ], [".jprs", ".jprs", "generic", "Japan Registry Services Co., Ltd."], [".juegos", ".juegos", "generic", "Uniregistry, Corp."], [".juniper", ".juniper", "generic", "JUNIPER NETWORKS, INC."], [".kaufen", ".kaufen", "generic", "United TLD Holdco Ltd."], [".kddi", ".kddi", "generic", "KDDI CORPORATION"], [".ke", ".ke", "country-code", "Kenya Network Information Center (KeNIC)"], [".kerryhotels", ".kerryhotels", "generic", "Kerry Trading Co. Limited"], [ ".kerrylogistics", ".kerrylogistics", "generic", "Kerry Trading Co. Limited", ], [ ".kerryproperties", ".kerryproperties", "generic", "Kerry Trading Co. Limited", ], [".kfh", ".kfh", "generic", "Kuwait Finance House"], [".kg", ".kg", "country-code", "AsiaInfo Telecommunication Enterprise"], [ ".kh", ".kh", "country-code", "Telecommunication Regulator of Cambodia (TRC)", ], [ ".ki", ".ki", "country-code", "Ministry of Communications, Transport, and Tourism Development", ], [".kia", ".kia", "generic", "KIA MOTORS CORPORATION"], [".kim", ".kim", "generic", "Afilias Limited"], [".kinder", ".kinder", "generic", "Ferrero Trading Lux S.A."], [".kindle", ".kindle", "generic", "Amazon Registry Services, Inc."], [".kitchen", ".kitchen", "generic", "Binky Moon, LLC"], [".kiwi", ".kiwi", "generic", "DOT KIWI LIMITED"], [".km", ".km", "country-code", "Comores Telecom"], [ ".kn", ".kn", "country-code", "Ministry of Finance, Sustainable Development Information & Technology", ], [".koeln", ".koeln", "generic", "dotKoeln GmbH"], [".komatsu", ".komatsu", "generic", "Komatsu Ltd."], [".kosher", ".kosher", "generic", "Kosher Marketing Assets LLC"], [".kp", ".kp", "country-code", "Star Joint Venture Company"], [ ".kpmg", ".kpmg", "generic", "KPMG International Cooperative (KPMG International Genossenschaft)", ], [".kpn", ".kpn", "generic", "Koninklijke KPN N.V."], [".kr", ".kr", "country-code", "Korea Internet & Security Agency (KISA)"], [".krd", ".krd", "generic", "KRG Department of Information Technology"], [".kred", ".kred", "generic", "KredTLD Pty Ltd"], [".kuokgroup", ".kuokgroup", "generic", "Kerry Trading Co. Limited"], [ ".kw", ".kw", "country-code", "Communications and Information Technology Regulatory Authority", ], [ ".ky", ".ky", "country-code", "Utility Regulation and Competition Office (OfReg)", ], [".kyoto", ".kyoto", "generic", "Academic Institution: Kyoto Jyoho Gakuen"], [".kz", ".kz", "country-code", "Association of IT Companies of Kazakhstan"], [ ".la", ".la", "country-code", "Lao National Internet Committee (LANIC), Ministry of Posts and Telecommunications", ], [ ".lacaixa", ".lacaixa", "generic", "CAIXA D'ESTALVIS I PENSIONS DE BARCELONA", ], [".ladbrokes", ".ladbrokes", "generic", "Not assigned"], [".lamborghini", ".lamborghini", "generic", "Automobili Lamborghini S.p.A."], [".lamer", ".lamer", "generic", "The Estée Lauder Companies Inc."], [".lancaster", ".lancaster", "generic", "LANCASTER"], [".lancia", ".lancia", "generic", "Fiat Chrysler Automobiles N.V."], [".lancome", ".lancome", "generic", "Not assigned"], [".land", ".land", "generic", "Binky Moon, LLC"], [".landrover", ".landrover", "generic", "Jaguar Land Rover Ltd"], [".lanxess", ".lanxess", "generic", "LANXESS Corporation"], [".lasalle", ".lasalle", "generic", "Jones Lang LaSalle Incorporated"], [ ".lat", ".lat", "generic", "ECOM-LAC Federación de Latinoamérica y el Caribe para Internet y el Comercio Electrónico", ], [".latino", ".latino", "generic", "Dish DBS Corporation"], [".latrobe", ".latrobe", "generic", "La Trobe University"], [".law", ".law", "generic", "LW TLD Limited"], [".lawyer", ".lawyer", "generic", "United TLD Holdco, Ltd"], [ ".lb", ".lb", "country-code", "American University of Beirut\nComputing and Networking Services", ], [".lc", ".lc", "country-code", "University of Puerto Rico"], [".lds", ".lds", "generic", "IRI Domain Management, LLC"], [".lease", ".lease", "generic", "Binky Moon, LLC"], [ ".leclerc", ".leclerc", "generic", "A.C.D. LEC Association des Centres Distributeurs Edouard Leclerc", ], [".lefrak", ".lefrak", "generic", "LeFrak Organization, Inc."], [".legal", ".legal", "generic", "Binky Moon, LLC"], [".lego", ".lego", "generic", "LEGO Juris A/S"], [".lexus", ".lexus", "generic", "TOYOTA MOTOR CORPORATION"], [".lgbt", ".lgbt", "generic", "Afilias Limited"], [ ".li", ".li", "country-code", "SWITCH The Swiss Education & Research Network", ], [".liaison", ".liaison", "generic", "Not assigned"], [".lidl", ".lidl", "generic", "Schwarz Domains und Services GmbH & Co. KG"], [".life", ".life", "generic", "Binky Moon, LLC"], [ ".lifeinsurance", ".lifeinsurance", "generic", "American Council of Life Insurers", ], [".lifestyle", ".lifestyle", "generic", "Lifestyle Domain Holdings, Inc."], [".lighting", ".lighting", "generic", "Binky Moon, LLC"], [".like", ".like", "generic", "Amazon Registry Services, Inc."], [".lilly", ".lilly", "generic", "Eli Lilly and Company"], [".limited", ".limited", "generic", "Binky Moon, LLC"], [".limo", ".limo", "generic", "Binky Moon, LLC"], [".lincoln", ".lincoln", "generic", "Ford Motor Company"], [".linde", ".linde", "generic", "Linde Aktiengesellschaft"], [".link", ".link", "generic", "Uniregistry, Corp."], [".lipsy", ".lipsy", "generic", "Lipsy Ltd"], [".live", ".live", "generic", "United TLD Holdco Ltd."], [".living", ".living", "generic", "Lifestyle Domain Holdings, Inc."], [".lixil", ".lixil", "generic", "LIXIL Group Corporation"], [ ".lk", ".lk", "country-code", "Council for Information Technology\nLK Domain Registrar", ], [".llc", ".llc", "generic", "Afilias Limited"], [".llp", ".llp", "generic", "Dot Registry LLC"], [".loan", ".loan", "generic", "dot Loan Limited"], [".loans", ".loans", "generic", "Binky Moon, LLC"], [".locker", ".locker", "generic", "Dish DBS Corporation"], [".locus", ".locus", "generic", "Locus Analytics LLC"], [".loft", ".loft", "generic", "Annco, Inc."], [".lol", ".lol", "generic", "Uniregistry, Corp."], [".london", ".london", "generic", "Dot London Domains Limited"], [".lotte", ".lotte", "generic", "Lotte Holdings Co., Ltd."], [".lotto", ".lotto", "generic", "Afilias Limited"], [".love", ".love", "generic", "Merchant Law Group LLP"], [".lpl", ".lpl", "generic", "LPL Holdings, Inc."], [".lplfinancial", ".lplfinancial", "generic", "LPL Holdings, Inc."], [".lr", ".lr", "country-code", "Data Technology Solutions, Inc."], [ ".ls", ".ls", "country-code", "Lesotho Network Information Centre Proprietary (LSNIC)", ], [".lt", ".lt", "country-code", "Kaunas University of Technology"], [".ltd", ".ltd", "generic", "Binky Moon, LLC"], [".ltda", ".ltda", "generic", "InterNetX Corp."], [".lu", ".lu", "country-code", "RESTENA"], [".lundbeck", ".lundbeck", "generic", "H. Lundbeck A/S"], [".lupin", ".lupin", "generic", "LUPIN LIMITED"], [".luxe", ".luxe", "generic", "Minds + Machines Group Limited"], [".luxury", ".luxury", "generic", "Luxury Partners LLC"], [ ".lv", ".lv", "country-code", "University of Latvia\nInstitute of Mathematics and Computer Science\nDepartment of Network Solutions (DNS)", ], [".ly", ".ly", "country-code", "General Post and Telecommunication Company"], [ ".ma", ".ma", "country-code", "Agence Nationale de Réglementation des Télécommunications (ANRT)", ], [".macys", ".macys", "generic", "Macys, Inc."], [".madrid", ".madrid", "generic", "Comunidad de Madrid"], [".maif", ".maif", "generic", "Mutuelle Assurance Instituteur France (MAIF)"], [".maison", ".maison", "generic", "Binky Moon, LLC"], [".makeup", ".makeup", "generic", "L'Oréal"], [".man", ".man", "generic", "MAN SE"], [".management", ".management", "generic", "Binky Moon, LLC"], [".mango", ".mango", "generic", "PUNTO FA S.L."], [".map", ".map", "generic", "Charleston Road Registry Inc."], [".market", ".market", "generic", "United TLD Holdco, Ltd"], [".marketing", ".marketing", "generic", "Binky Moon, LLC"], [".markets", ".markets", "generic", "DOTMARKETS REGISTRY LTD"], [".marriott", ".marriott", "generic", "Marriott Worldwide Corporation"], [".marshalls", ".marshalls", "generic", "The TJX Companies, Inc."], [".maserati", ".maserati", "generic", "Fiat Chrysler Automobiles N.V."], [".mattel", ".mattel", "generic", "Mattel Sites, Inc."], [".mba", ".mba", "generic", "Binky Moon, LLC"], [ ".mc", ".mc", "country-code", "Gouvernement de Monaco\nDirection des Communications Electroniques", ], [".mcd", ".mcd", "generic", "Not assigned"], [".mcdonalds", ".mcdonalds", "generic", "Not assigned"], [".mckinsey", ".mckinsey", "generic", "McKinsey Holdings, Inc."], [".md", ".md", "country-code", "MoldData S.E."], [".me", ".me", "country-code", "Government of Montenegro"], [".med", ".med", "generic", "Medistry LLC"], [".media", ".media", "generic", "Binky Moon, LLC"], [".meet", ".meet", "generic", "Charleston Road Registry Inc."], [ ".melbourne", ".melbourne", "generic", "The Crown in right of the State of Victoria, represented by its Department of State Development, Business and Innovation", ], [".meme", ".meme", "generic", "Charleston Road Registry Inc."], [".memorial", ".memorial", "generic", "Dog Beach, LLC"], [".men", ".men", "generic", "Exclusive Registry Limited"], [".menu", ".menu", "generic", "Wedding TLD2, LLC"], [".meo", ".meo", "generic", "Not assigned"], [".merckmsd", ".merckmsd", "generic", "MSD Registry Holdings, Inc."], [".metlife", ".metlife", "generic", "MetLife Services and Solutions, LLC"], [".mf", ".mf", "country-code", "Not assigned"], [ ".mg", ".mg", "country-code", "NIC-MG (Network Information Center Madagascar)", ], [".mh", ".mh", "country-code", "Office of the Cabinet"], [".miami", ".miami", "generic", "Minds + Machines Group Limited"], [".microsoft", ".microsoft", "generic", "Microsoft Corporation"], [".mil", ".mil", "sponsored", "DoD Network Information Center"], [".mini", ".mini", "generic", "Bayerische Motoren Werke Aktiengesellschaft"], [".mint", ".mint", "generic", "Intuit Administrative Services, Inc."], [".mit", ".mit", "generic", "Massachusetts Institute of Technology"], [".mitsubishi", ".mitsubishi", "generic", "Mitsubishi Corporation"], [".mk", ".mk", "country-code", "Macedonian Academic Research Network Skopje"], [ ".ml", ".ml", "country-code", "Agence des Technologies de l’Information et de la Communication", ], [".mlb", ".mlb", "generic", "MLB Advanced Media DH, LLC"], [".mls", ".mls", "generic", "The Canadian Real Estate Association"], [".mm", ".mm", "country-code", "Ministry of Transport and Communications"], [".mma", ".mma", "generic", "MMA IARD"], [".mn", ".mn", "country-code", "Datacom Co., Ltd."], [ ".mo", ".mo", "country-code", "Macao Post and Telecommunications Bureau (CTT)", ], [".mobi", ".mobi", "generic", "Afilias Technologies Limited dba dotMobi"], [".mobile", ".mobile", "generic", "Dish DBS Corporation"], [".mobily", ".mobily", "generic", "Not assigned"], [".moda", ".moda", "generic", "United TLD Holdco Ltd."], [".moe", ".moe", "generic", "Interlink Co., Ltd."], [".moi", ".moi", "generic", "Amazon Registry Services, Inc."], [".mom", ".mom", "generic", "Uniregistry, Corp."], [".monash", ".monash", "generic", "Monash University"], [".money", ".money", "generic", "Binky Moon, LLC"], [".monster", ".monster", "generic", "XYZ.COM LLC"], [".montblanc", ".montblanc", "generic", "Not assigned"], [".mopar", ".mopar", "generic", "Not assigned"], [".mormon", ".mormon", "generic", 'IRI Domain Management, LLC ("Applicant")'], [".mortgage", ".mortgage", "generic", "United TLD Holdco, Ltd"], [ ".moscow", ".moscow", "generic", "Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)", ], [".moto", ".moto", "generic", "Motorola Trademark Holdings, LLC"], [".motorcycles", ".motorcycles", "generic", "DERMotorcycles, LLC"], [".mov", ".mov", "generic", "Charleston Road Registry Inc."], [".movie", ".movie", "generic", "Binky Moon, LLC"], [".movistar", ".movistar", "generic", "Not assigned"], [".mp", ".mp", "country-code", "Saipan Datacom, Inc."], [".mq", ".mq", "country-code", "MEDIASERV"], [".mr", ".mr", "country-code", "Université de Nouakchott Al Aasriya"], [".ms", ".ms", "country-code", "MNI Networks Ltd."], [".msd", ".msd", "generic", "MSD Registry Holdings, Inc."], [".mt", ".mt", "country-code", "NIC (Malta)"], [".mtn", ".mtn", "generic", "MTN Dubai Limited"], [".mtpc", ".mtpc", "generic", "Retired"], [".mtr", ".mtr", "generic", "MTR Corporation Limited"], [".mu", ".mu", "country-code", "Internet Direct Ltd"], [".museum", ".museum", "sponsored", "Museum Domain Management Association"], [".mutual", ".mutual", "generic", "Northwestern Mutual MU TLD Registry, LLC"], [".mutuelle", ".mutuelle", "generic", "Retired"], [".mv", ".mv", "country-code", "Dhiraagu Pvt. Ltd. (DHIVEHINET)"], [ ".mw", ".mw", "country-code", "Malawi Sustainable Development Network Programme\n(Malawi SDNP)", ], [".mx", ".mx", "country-code", "NIC-Mexico\nITESM - Campus Monterrey"], [".my", ".my", "country-code", "MYNIC Berhad"], [ ".mz", ".mz", "country-code", "Centro de Informatica de Universidade Eduardo Mondlane", ], [".na", ".na", "country-code", "Namibian Network Information Center"], [".nab", ".nab", "generic", "National Australia Bank Limited"], [".nadex", ".nadex", "generic", "Not assigned"], [".nagoya", ".nagoya", "generic", "GMO Registry, Inc."], [ ".name", ".name", "generic-restricted", "VeriSign Information Services, Inc.", ], [ ".nationwide", ".nationwide", "generic", "Nationwide Mutual Insurance Company", ], [".natura", ".natura", "generic", "NATURA COSMÉTICOS S.A."], [".navy", ".navy", "generic", "United TLD Holdco Ltd."], [".nba", ".nba", "generic", "NBA REGISTRY, LLC"], [".nc", ".nc", "country-code", "Office des Postes et Telecommunications"], [".ne", ".ne", "country-code", "SONITEL"], [".nec", ".nec", "generic", "NEC Corporation"], [".net", ".net", "generic", "VeriSign Global Registry Services"], [".netbank", ".netbank", "generic", "COMMONWEALTH BANK OF AUSTRALIA"], [".netflix", ".netflix", "generic", "Netflix, Inc."], [".network", ".network", "generic", "Binky Moon, LLC"], [".neustar", ".neustar", "generic", "NeuStar, Inc."], [".new", ".new", "generic", "Charleston Road Registry Inc."], [".newholland", ".newholland", "generic", "CNH Industrial N.V."], [".news", ".news", "generic", "United TLD Holdco Ltd."], [".next", ".next", "generic", "Next plc"], [".nextdirect", ".nextdirect", "generic", "Next plc"], [".nexus", ".nexus", "generic", "Charleston Road Registry Inc."], [".nf", ".nf", "country-code", "Norfolk Island Data Services"], [".nfl", ".nfl", "generic", "NFL Reg Ops LLC"], [".ng", ".ng", "country-code", "Nigeria Internet Registration Association"], [".ngo", ".ngo", "generic", "Public Interest Registry"], [".nhk", ".nhk", "generic", "Japan Broadcasting Corporation (NHK)"], [ ".ni", ".ni", "country-code", "Universidad Nacional del Ingernieria\nCentro de Computo", ], [".nico", ".nico", "generic", "DWANGO Co., Ltd."], [".nike", ".nike", "generic", "NIKE, Inc."], [".nikon", ".nikon", "generic", "NIKON CORPORATION"], [".ninja", ".ninja", "generic", "United TLD Holdco Ltd."], [".nissan", ".nissan", "generic", "NISSAN MOTOR CO., LTD."], [".nissay", ".nissay", "generic", "Nippon Life Insurance Company"], [ ".nl", ".nl", "country-code", "SIDN (Stichting Internet Domeinregistratie Nederland)", ], [".no", ".no", "country-code", "Norid A/S"], [".nokia", ".nokia", "generic", "Nokia Corporation"], [ ".northwesternmutual", ".northwesternmutual", "generic", "Northwestern Mutual Registry, LLC", ], [".norton", ".norton", "generic", "Symantec Corporation"], [".now", ".now", "generic", "Amazon Registry Services, Inc."], [ ".nowruz", ".nowruz", "generic", "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", ], [".nowtv", ".nowtv", "generic", "Starbucks (HK) Limited"], [".np", ".np", "country-code", "Mercantile Communications Pvt. Ltd."], [".nr", ".nr", "country-code", "CENPAC NET"], [".nra", ".nra", "generic", "NRA Holdings Company, INC."], [".nrw", ".nrw", "generic", "Minds + Machines GmbH"], [".ntt", ".ntt", "generic", "NIPPON TELEGRAPH AND TELEPHONE CORPORATION"], [".nu", ".nu", "country-code", "The IUSN Foundation"], [ ".nyc", ".nyc", "generic", "The City of New York by and through the New York City Department of Information Technology & Telecommunications", ], [".nz", ".nz", "country-code", "InternetNZ"], [".obi", ".obi", "generic", "OBI Group Holding SE & Co. KGaA"], [".observer", ".observer", "generic", "Top Level Spectrum, Inc."], [".off", ".off", "generic", "Johnson Shareholdings, Inc."], [".office", ".office", "generic", "Microsoft Corporation"], [".okinawa", ".okinawa", "generic", "BRregistry, Inc."], [".olayan", ".olayan", "generic", "Crescent Holding GmbH"], [".olayangroup", ".olayangroup", "generic", "Crescent Holding GmbH"], [".oldnavy", ".oldnavy", "generic", "The Gap, Inc."], [".ollo", ".ollo", "generic", "Dish DBS Corporation"], [ ".om", ".om", "country-code", "Telecommunications Regulatory Authority (TRA)", ], [".omega", ".omega", "generic", "The Swatch Group Ltd"], [".one", ".one", "generic", "One.com A/S"], [".ong", ".ong", "generic", "Public Interest Registry"], [".onl", ".onl", "generic", "I-REGISTRY Ltd., Niederlassung Deutschland"], [".online", ".online", "generic", "DotOnline Inc."], [ ".onyourside", ".onyourside", "generic", "Nationwide Mutual Insurance Company", ], [".ooo", ".ooo", "generic", "INFIBEAM INCORPORATION LIMITED"], [ ".open", ".open", "generic", "American Express Travel Related Services Company, Inc.", ], [".oracle", ".oracle", "generic", "Oracle Corporation"], [".orange", ".orange", "generic", "Orange Brand Services Limited"], [".org", ".org", "generic", "Public Interest Registry (PIR)"], [".organic", ".organic", "generic", "Afilias Limited"], [".orientexpress", ".orientexpress", "generic", "Retired"], [".origins", ".origins", "generic", "The Estée Lauder Companies Inc."], [".osaka", ".osaka", "generic", "Osaka Registry Co., Ltd."], [".otsuka", ".otsuka", "generic", "Otsuka Holdings Co., Ltd."], [".ott", ".ott", "generic", "Dish DBS Corporation"], [".ovh", ".ovh", "generic", "OVH SAS"], [".pa", ".pa", "country-code", "Universidad Tecnologica de Panama"], [".page", ".page", "generic", "Charleston Road Registry Inc."], [".pamperedchef", ".pamperedchef", "generic", "Not assigned"], [".panasonic", ".panasonic", "generic", "Panasonic Corporation"], [".panerai", ".panerai", "generic", "Not assigned"], [".paris", ".paris", "generic", "City of Paris"], [ ".pars", ".pars", "generic", "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", ], [".partners", ".partners", "generic", "Binky Moon, LLC"], [".parts", ".parts", "generic", "Binky Moon, LLC"], [".party", ".party", "generic", "Blue Sky Registry Limited"], [".passagens", ".passagens", "generic", "Travel Reservations SRL"], [".pay", ".pay", "generic", "Amazon Registry Services, Inc."], [".pccw", ".pccw", "generic", "PCCW Enterprises Limited"], [".pe", ".pe", "country-code", "Red Cientifica Peruana"], [".pet", ".pet", "generic", "Afilias Limited"], [".pf", ".pf", "country-code", "Gouvernement de la Polynésie française"], [".pfizer", ".pfizer", "generic", "Pfizer Inc."], [ ".pg", ".pg", "country-code", "PNG DNS Administration\nVice Chancellors Office\nThe Papua New Guinea University of Technology", ], [".ph", ".ph", "country-code", "PH Domain Foundation"], [ ".pharmacy", ".pharmacy", "generic", "National Association of Boards of Pharmacy", ], [".phd", ".phd", "generic", "Charleston Road Registry Inc."], [".philips", ".philips", "generic", "Koninklijke Philips N.V."], [".phone", ".phone", "generic", "Dish DBS Corporation"], [".photo", ".photo", "generic", "Uniregistry, Corp."], [".photography", ".photography", "generic", "Binky Moon, LLC"], [".photos", ".photos", "generic", "Binky Moon, LLC"], [".physio", ".physio", "generic", "PhysBiz Pty Ltd"], [".piaget", ".piaget", "generic", "Not assigned"], [".pics", ".pics", "generic", "Uniregistry, Corp."], [".pictet", ".pictet", "generic", "Pictet Europe S.A."], [".pictures", ".pictures", "generic", "Binky Moon, LLC"], [".pid", ".pid", "generic", "Top Level Spectrum, Inc."], [".pin", ".pin", "generic", "Amazon Registry Services, Inc."], [".ping", ".ping", "generic", "Ping Registry Provider, Inc."], [".pink", ".pink", "generic", "Afilias Limited"], [".pioneer", ".pioneer", "generic", "Pioneer Corporation"], [".pizza", ".pizza", "generic", "Binky Moon, LLC"], [".pk", ".pk", "country-code", "PKNIC"], [".pl", ".pl", "country-code", "Research and Academic Computer Network"], [".place", ".place", "generic", "Binky Moon, LLC"], [".play", ".play", "generic", "Charleston Road Registry Inc."], [ ".playstation", ".playstation", "generic", "Sony Computer Entertainment Inc.", ], [".plumbing", ".plumbing", "generic", "Binky Moon, LLC"], [".plus", ".plus", "generic", "Binky Moon, LLC"], [ ".pm", ".pm", "country-code", "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", ], [".pn", ".pn", "country-code", "Pitcairn Island Administration"], [".pnc", ".pnc", "generic", "PNC Domain Co., LLC"], [ ".pohl", ".pohl", "generic", "Deutsche Vermögensberatung Aktiengesellschaft DVAG", ], [".poker", ".poker", "generic", "Afilias Limited"], [".politie", ".politie", "generic", "Politie Nederland"], [".porn", ".porn", "generic", "ICM Registry PN LLC"], [".post", ".post", "sponsored", "Universal Postal Union"], [".pr", ".pr", "country-code", "Gauss Research Laboratory Inc."], [".pramerica", ".pramerica", "generic", "Prudential Financial, Inc."], [".praxi", ".praxi", "generic", "Praxi S.p.A."], [".press", ".press", "generic", "DotPress Inc."], [".prime", ".prime", "generic", "Amazon Registry Services, Inc."], [".pro", ".pro", "generic-restricted", "Afilias Limited"], [".prod", ".prod", "generic", "Charleston Road Registry Inc."], [".productions", ".productions", "generic", "Binky Moon, LLC"], [".prof", ".prof", "generic", "Charleston Road Registry Inc."], [ ".progressive", ".progressive", "generic", "Progressive Casualty Insurance Company", ], [".promo", ".promo", "generic", "Afilias Limited"], [".properties", ".properties", "generic", "Binky Moon, LLC"], [".property", ".property", "generic", "Uniregistry, Corp."], [".protection", ".protection", "generic", "XYZ.COM LLC"], [".pru", ".pru", "generic", "Prudential Financial, Inc."], [".prudential", ".prudential", "generic", "Prudential Financial, Inc."], [ ".ps", ".ps", "country-code", "Ministry Of Telecommunications &\nInformation Technology,\nGovernment Computer Center.", ], [".pt", ".pt", "country-code", "Associação DNS.PT"], [".pub", ".pub", "generic", "United TLD Holdco Ltd."], [ ".pw", ".pw", "country-code", "Micronesia Investment and Development Corporation", ], [".pwc", ".pwc", "generic", "PricewaterhouseCoopers LLP"], [".py", ".py", "country-code", "NIC-PY"], [".qa", ".qa", "country-code", "Communications Regulatory Authority"], [".qpon", ".qpon", "generic", "dotCOOL, Inc."], [".quebec", ".quebec", "generic", "PointQuébec Inc"], [".quest", ".quest", "generic", "XYZ.COM LLC"], [".qvc", ".qvc", "generic", "QVC, Inc."], [".racing", ".racing", "generic", "Premier Registry Limited"], [".radio", ".radio", "generic", "European Broadcasting Union (EBU)"], [".raid", ".raid", "generic", "Johnson Shareholdings, Inc."], [ ".re", ".re", "country-code", "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", ], [".read", ".read", "generic", "Amazon Registry Services, Inc."], [".realestate", ".realestate", "generic", "dotRealEstate LLC"], [".realtor", ".realtor", "generic", "Real Estate Domains LLC"], [".realty", ".realty", "generic", "Fegistry, LLC"], [".recipes", ".recipes", "generic", "Binky Moon, LLC"], [".red", ".red", "generic", "Afilias Limited"], [".redstone", ".redstone", "generic", "Redstone Haute Couture Co., Ltd."], [".redumbrella", ".redumbrella", "generic", "Travelers TLD, LLC"], [".rehab", ".rehab", "generic", "United TLD Holdco Ltd."], [".reise", ".reise", "generic", "Binky Moon, LLC"], [".reisen", ".reisen", "generic", "Binky Moon, LLC"], [ ".reit", ".reit", "generic", "National Association of Real Estate Investment Trusts, Inc.", ], [".reliance", ".reliance", "generic", "Reliance Industries Limited"], [".ren", ".ren", "generic", "ZDNS International Limited"], [".rent", ".rent", "generic", "XYZ.COM LLC"], [".rentals", ".rentals", "generic", "Binky Moon, LLC"], [".repair", ".repair", "generic", "Binky Moon, LLC"], [".report", ".report", "generic", "Binky Moon, LLC"], [".republican", ".republican", "generic", "United TLD Holdco Ltd."], [ ".rest", ".rest", "generic", "Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable", ], [".restaurant", ".restaurant", "generic", "Binky Moon, LLC"], [".review", ".review", "generic", "dot Review Limited"], [".reviews", ".reviews", "generic", "United TLD Holdco, Ltd."], [".rexroth", ".rexroth", "generic", "Robert Bosch GMBH"], [".rich", ".rich", "generic", "I-REGISTRY Ltd., Niederlassung Deutschland"], [ ".richardli", ".richardli", "generic", "Pacific Century Asset Management (HK) Limited", ], [".ricoh", ".ricoh", "generic", "Ricoh Company, Ltd."], [".rightathome", ".rightathome", "generic", "Not assigned"], [".ril", ".ril", "generic", "Reliance Industries Limited"], [".rio", ".rio", "generic", "Empresa Municipal de Informática SA - IPLANRIO"], [".rip", ".rip", "generic", "United TLD Holdco Ltd."], [".rmit", ".rmit", "generic", "Royal Melbourne Institute of Technology"], [".ro", ".ro", "country-code", "National Institute for R&D in Informatics"], [".rocher", ".rocher", "generic", "Ferrero Trading Lux S.A."], [".rocks", ".rocks", "generic", "United TLD Holdco, LTD."], [".rodeo", ".rodeo", "generic", "Minds + Machines Group Limited"], [".rogers", ".rogers", "generic", "Rogers Communications Canada Inc."], [".room", ".room", "generic", "Amazon Registry Services, Inc."], [ ".rs", ".rs", "country-code", "Serbian National Internet Domain Registry (RNIDS)", ], [".rsvp", ".rsvp", "generic", "Charleston Road Registry Inc."], [".ru", ".ru", "country-code", "Coordination Center for TLD RU"], [".rugby", ".rugby", "generic", "World Rugby Strategic Developments Limited"], [".ruhr", ".ruhr", "generic", "regiodot GmbH & Co. KG"], [".run", ".run", "generic", "Binky Moon, LLC"], [ ".rw", ".rw", "country-code", "Rwanda Internet Community and Technology Alliance (RICTA) Ltd", ], [".rwe", ".rwe", "generic", "RWE AG"], [".ryukyu", ".ryukyu", "generic", "BRregistry, Inc."], [ ".sa", ".sa", "country-code", "Communications and Information Technology Commission", ], [".saarland", ".saarland", "generic", "dotSaarland GmbH"], [".safe", ".safe", "generic", "Amazon Registry Services, Inc."], [".safety", ".safety", "generic", "Safety Registry Services, LLC."], [".sakura", ".sakura", "generic", "SAKURA Internet Inc."], [".sale", ".sale", "generic", "United TLD Holdco, Ltd"], [".salon", ".salon", "generic", "Binky Moon, LLC"], [".samsclub", ".samsclub", "generic", "Wal-Mart Stores, Inc."], [".samsung", ".samsung", "generic", "SAMSUNG SDS CO., LTD"], [".sandvik", ".sandvik", "generic", "Sandvik AB"], [".sandvikcoromant", ".sandvikcoromant", "generic", "Sandvik AB"], [".sanofi", ".sanofi", "generic", "Sanofi"], [".sap", ".sap", "generic", "SAP AG"], [".sapo", ".sapo", "generic", "Not assigned"], [".sarl", ".sarl", "generic", "Binky Moon, LLC"], [".sas", ".sas", "generic", "Research IP LLC"], [".save", ".save", "generic", "Amazon Registry Services, Inc."], [".saxo", ".saxo", "generic", "Saxo Bank A/S"], [".sb", ".sb", "country-code", "Solomon Telekom Company Limited"], [".sbi", ".sbi", "generic", "STATE BANK OF INDIA"], [".sbs", ".sbs", "generic", "SPECIAL BROADCASTING SERVICE CORPORATION"], [".sc", ".sc", "country-code", "VCS Pty Ltd"], [".sca", ".sca", "generic", "SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)"], [ ".scb", ".scb", "generic", 'The Siam Commercial Bank Public Company Limited ("SCB")', ], [ ".schaeffler", ".schaeffler", "generic", "Schaeffler Technologies AG & Co. KG", ], [".schmidt", ".schmidt", "generic", "SALM S.A.S."], [".scholarships", ".scholarships", "generic", "Scholarships.com, LLC"], [".school", ".school", "generic", "Binky Moon, LLC"], [".schule", ".schule", "generic", "Binky Moon, LLC"], [ ".schwarz", ".schwarz", "generic", "Schwarz Domains und Services GmbH & Co. KG", ], [".science", ".science", "generic", "dot Science Limited"], [".scjohnson", ".scjohnson", "generic", "Johnson Shareholdings, Inc."], [".scor", ".scor", "generic", "Not assigned"], [".scot", ".scot", "generic", "Dot Scot Registry Limited"], [".sd", ".sd", "country-code", "Sudan Internet Society"], [".se", ".se", "country-code", "The Internet Infrastructure Foundation"], [".search", ".search", "generic", "Charleston Road Registry Inc."], [".seat", ".seat", "generic", "SEAT, S.A. (Sociedad Unipersonal)"], [".secure", ".secure", "generic", "Amazon Registry Services, Inc."], [".security", ".security", "generic", "XYZ.COM LLC"], [".seek", ".seek", "generic", "Seek Limited"], [".select", ".select", "generic", "Registry Services, LLC"], [".sener", ".sener", "generic", "Sener Ingeniería y Sistemas, S.A."], [".services", ".services", "generic", "Binky Moon, LLC"], [".ses", ".ses", "generic", "SES"], [".seven", ".seven", "generic", "Seven West Media Ltd"], [".sew", ".sew", "generic", "SEW-EURODRIVE GmbH & Co KG"], [".sex", ".sex", "generic", "ICM Registry SX LLC"], [".sexy", ".sexy", "generic", "Uniregistry, Corp."], [".sfr", ".sfr", "generic", "Societe Francaise du Radiotelephone - SFR"], [ ".sg", ".sg", "country-code", "Singapore Network Information Centre (SGNIC) Pte Ltd", ], [".sh", ".sh", "country-code", "Government of St. Helena"], [ ".shangrila", ".shangrila", "generic", "Shangri‐La International Hotel Management Limited", ], [".sharp", ".sharp", "generic", "Sharp Corporation"], [".shaw", ".shaw", "generic", "Shaw Cablesystems G.P."], [ ".shell", ".shell", "generic", "Shell Information Technology International Inc", ], [ ".shia", ".shia", "generic", "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", ], [".shiksha", ".shiksha", "generic", "Afilias Limited"], [".shoes", ".shoes", "generic", "Binky Moon, LLC"], [".shop", ".shop", "generic", "GMO Registry, Inc."], [".shopping", ".shopping", "generic", "Binky Moon, LLC"], [".shouji", ".shouji", "generic", "QIHOO 360 TECHNOLOGY CO. LTD."], [".show", ".show", "generic", "Binky Moon, LLC"], [".showtime", ".showtime", "generic", "CBS Domains Inc."], [".shriram", ".shriram", "generic", "Shriram Capital Ltd."], [ ".si", ".si", "country-code", "Academic and Research Network of Slovenia (ARNES)", ], [".silk", ".silk", "generic", "Amazon Registry Services, Inc."], [".sina", ".sina", "generic", "Sina Corporation"], [".singles", ".singles", "generic", "Binky Moon, LLC"], [".site", ".site", "generic", "DotSite Inc."], [".sj", ".sj", "country-code", "Norid A/S"], [".sk", ".sk", "country-code", "SK-NIC, a.s."], [".ski", ".ski", "generic", "Afilias Limited"], [".skin", ".skin", "generic", "L'Oréal"], [".sky", ".sky", "generic", "Sky International AG"], [".skype", ".skype", "generic", "Microsoft Corporation"], [".sl", ".sl", "country-code", "Sierratel"], [".sling", ".sling", "generic", "Hughes Satellite Systems Corporation"], [".sm", ".sm", "country-code", "Telecom Italia San Marino S.p.A."], [".smart", ".smart", "generic", "Smart Communications, Inc. (SMART)"], [".smile", ".smile", "generic", "Amazon Registry Services, Inc."], [".sn", ".sn", "country-code", "Universite Cheikh Anta Diop\nNIC Senegal"], [ ".sncf", ".sncf", "generic", "SNCF (Société Nationale des Chemins de fer Francais)", ], [".so", ".so", "country-code", "Ministry of Post and Telecommunications"], [".soccer", ".soccer", "generic", "Binky Moon, LLC"], [".social", ".social", "generic", "United TLD Holdco Ltd."], [".softbank", ".softbank", "generic", "SoftBank Group Corp."], [".software", ".software", "generic", "United TLD Holdco, Ltd"], [".sohu", ".sohu", "generic", "Sohu.com Limited"], [".solar", ".solar", "generic", "Binky Moon, LLC"], [".solutions", ".solutions", "generic", "Binky Moon, LLC"], [".song", ".song", "generic", "Amazon Registry Services, Inc."], [".sony", ".sony", "generic", "Sony Corporation"], [".soy", ".soy", "generic", "Charleston Road Registry Inc."], [".space", ".space", "generic", "DotSpace Inc."], [".spiegel", ".spiegel", "generic", "Not assigned"], [ ".sport", ".sport", "generic", "Global Association of International Sports Federations (GAISF)", ], [".spot", ".spot", "generic", "Amazon Registry Services, Inc."], [ ".spreadbetting", ".spreadbetting", "generic", "DOTSPREADBETTING REGISTRY LTD", ], [".sr", ".sr", "country-code", "Telesur"], [".srl", ".srl", "generic", "InterNetX Corp."], [".srt", ".srt", "generic", "Not assigned"], [".ss", ".ss", "country-code", "National Communication Authority (NCA)"], [".st", ".st", "country-code", "Tecnisys"], [".stada", ".stada", "generic", "STADA Arzneimittel AG"], [".staples", ".staples", "generic", "Staples, Inc."], [".star", ".star", "generic", "Star India Private Limited"], [".starhub", ".starhub", "generic", "Not assigned"], [".statebank", ".statebank", "generic", "STATE BANK OF INDIA"], [ ".statefarm", ".statefarm", "generic", "State Farm Mutual Automobile Insurance Company", ], [".statoil", ".statoil", "generic", "Not assigned"], [".stc", ".stc", "generic", "Saudi Telecom Company"], [".stcgroup", ".stcgroup", "generic", "Saudi Telecom Company"], [".stockholm", ".stockholm", "generic", "Stockholms kommun"], [".storage", ".storage", "generic", "XYZ.COM LLC"], [".store", ".store", "generic", "DotStore Inc."], [".stream", ".stream", "generic", "dot Stream Limited"], [".studio", ".studio", "generic", "United TLD Holdco Ltd."], [".study", ".study", "generic", "OPEN UNIVERSITIES AUSTRALIA PTY LTD"], [".style", ".style", "generic", "Binky Moon, LLC"], [ ".su", ".su", "country-code", "Russian Institute for Development of Public Networks\n(ROSNIIROS)", ], [".sucks", ".sucks", "generic", "Vox Populi Registry Ltd."], [".supplies", ".supplies", "generic", "Binky Moon, LLC"], [".supply", ".supply", "generic", "Binky Moon, LLC"], [".support", ".support", "generic", "Binky Moon, LLC"], [".surf", ".surf", "generic", "Minds + Machines Group Limited"], [".surgery", ".surgery", "generic", "Binky Moon, LLC"], [".suzuki", ".suzuki", "generic", "SUZUKI MOTOR CORPORATION"], [".sv", ".sv", "country-code", "SVNet"], [".swatch", ".swatch", "generic", "The Swatch Group Ltd"], [ ".swiftcover", ".swiftcover", "generic", "Swiftcover Insurance Services Limited", ], [".swiss", ".swiss", "generic", "Swiss Confederation"], [".sx", ".sx", "country-code", "SX Registry SA B.V."], [".sy", ".sy", "country-code", "National Agency for Network Services (NANS)"], [ ".sydney", ".sydney", "generic", "State of New South Wales, Department of Premier and Cabinet", ], [".symantec", ".symantec", "generic", "Not assigned"], [".systems", ".systems", "generic", "Binky Moon, LLC"], [ ".sz", ".sz", "country-code", "University of Swaziland\nDepartment of Computer Science", ], [".tab", ".tab", "generic", "Tabcorp Holdings Limited"], [".taipei", ".taipei", "generic", "Taipei City Government"], [".talk", ".talk", "generic", "Amazon Registry Services, Inc."], [".taobao", ".taobao", "generic", "Alibaba Group Holding Limited"], [".target", ".target", "generic", "Target Domain Holdings, LLC"], [".tatamotors", ".tatamotors", "generic", "Tata Motors Ltd"], [ ".tatar", ".tatar", "generic", 'Limited Liability Company "Coordination Center of Regional Domain of Tatarstan Republic"', ], [".tattoo", ".tattoo", "generic", "Uniregistry, Corp."], [".tax", ".tax", "generic", "Binky Moon, LLC"], [".taxi", ".taxi", "generic", "Binky Moon, LLC"], [".tc", ".tc", "country-code", "Melrex TC"], [ ".tci", ".tci", "generic", "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", ], [ ".td", ".td", "country-code", "l'Agence de Développement des Technologies de l'Information et de la Communication (ADETIC)", ], [".tdk", ".tdk", "generic", "TDK Corporation"], [".team", ".team", "generic", "Binky Moon, LLC"], [".tech", ".tech", "generic", "Dot Tech LLC"], [".technology", ".technology", "generic", "Binky Moon, LLC"], [".tel", ".tel", "sponsored", "Telnames Ltd."], [".telecity", ".telecity", "generic", "Not assigned"], [".telefonica", ".telefonica", "generic", "Not assigned"], [".temasek", ".temasek", "generic", "Temasek Holdings (Private) Limited"], [".tennis", ".tennis", "generic", "Binky Moon, LLC"], [".teva", ".teva", "generic", "Teva Pharmaceutical Industries Limited"], [ ".tf", ".tf", "country-code", "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", ], [ ".tg", ".tg", "country-code", "Autorite de Reglementation des secteurs de Postes et de Telecommunications (ART&P)", ], [".th", ".th", "country-code", "Thai Network Information Center Foundation"], [".thd", ".thd", "generic", "Home Depot Product Authority, LLC"], [".theater", ".theater", "generic", "Binky Moon, LLC"], [".theatre", ".theatre", "generic", "XYZ.COM LLC"], [ ".tiaa", ".tiaa", "generic", "Teachers Insurance and Annuity Association of America", ], [".tickets", ".tickets", "generic", "Accent Media Limited"], [".tienda", ".tienda", "generic", "Binky Moon, LLC"], [".tiffany", ".tiffany", "generic", "Tiffany and Company"], [".tips", ".tips", "generic", "Binky Moon, LLC"], [".tires", ".tires", "generic", "Binky Moon, LLC"], [".tirol", ".tirol", "generic", "punkt Tirol GmbH"], [".tj", ".tj", "country-code", "Information Technology Center"], [".tjmaxx", ".tjmaxx", "generic", "The TJX Companies, Inc."], [".tjx", ".tjx", "generic", "The TJX Companies, Inc."], [ ".tk", ".tk", "country-code", "Telecommunication Tokelau Corporation (Teletok)", ], [".tkmaxx", ".tkmaxx", "generic", "The TJX Companies, Inc."], [".tl", ".tl", "country-code", "Autoridade Nacional de Comunicações"], [".tm", ".tm", "country-code", "TM Domain Registry Ltd"], [".tmall", ".tmall", "generic", "Alibaba Group Holding Limited"], [".tn", ".tn", "country-code", "Agence Tunisienne d'Internet"], [ ".to", ".to", "country-code", "Government of the Kingdom of Tonga\nH.R.H. Crown Prince Tupouto'a\nc/o Consulate of Tonga", ], [".today", ".today", "generic", "Binky Moon, LLC"], [".tokyo", ".tokyo", "generic", "GMO Registry, Inc."], [".tools", ".tools", "generic", "Binky Moon, LLC"], [".top", ".top", "generic", "Jiangsu Bangning Science & Technology Co.,Ltd."], [".toray", ".toray", "generic", "Toray Industries, Inc."], [".toshiba", ".toshiba", "generic", "TOSHIBA Corporation"], [".total", ".total", "generic", "Total SA"], [".tours", ".tours", "generic", "Binky Moon, LLC"], [".town", ".town", "generic", "Binky Moon, LLC"], [".toyota", ".toyota", "generic", "TOYOTA MOTOR CORPORATION"], [".toys", ".toys", "generic", "Binky Moon, LLC"], [".tp", ".tp", "country-code", "Retired"], [ ".tr", ".tr", "country-code", "Bilgi Teknolojileri ve İletişim Kurumu (BTK)", ], [".trade", ".trade", "generic", "Elite Registry Limited"], [".trading", ".trading", "generic", "DOTTRADING REGISTRY LTD"], [".training", ".training", "generic", "Binky Moon, LLC"], [".travel", ".travel", "sponsored", "Dog\tBeach, LLC"], [ ".travelchannel", ".travelchannel", "generic", "Lifestyle Domain Holdings, Inc.", ], [".travelers", ".travelers", "generic", "Travelers TLD, LLC"], [ ".travelersinsurance", ".travelersinsurance", "generic", "Travelers TLD, LLC", ], [".trust", ".trust", "generic", "Artemis Internet Inc"], [".trv", ".trv", "generic", "Travelers TLD, LLC"], [ ".tt", ".tt", "country-code", "University of the West Indies\nFaculty of Engineering", ], [".tube", ".tube", "generic", "Latin American Telecom LLC"], [".tui", ".tui", "generic", "TUI AG"], [".tunes", ".tunes", "generic", "Amazon Registry Services, Inc."], [".tushu", ".tushu", "generic", "Amazon Registry Services, Inc."], [".tv", ".tv", "country-code", "Ministry of Finance and Tourism"], [".tvs", ".tvs", "generic", "T V SUNDRAM IYENGAR & SONS PRIVATE LIMITED"], [".tw", ".tw", "country-code", "Taiwan Network Information Center (TWNIC)"], [ ".tz", ".tz", "country-code", "Tanzania Communications Regulatory Authority", ], [".ua", ".ua", "country-code", "Hostmaster Ltd."], [".ubank", ".ubank", "generic", "National Australia Bank Limited"], [".ubs", ".ubs", "generic", "UBS AG"], [".uconnect", ".uconnect", "generic", "Not assigned"], [".ug", ".ug", "country-code", "Uganda Online Ltd."], [".uk", ".uk", "country-code", "Nominet UK"], [".um", ".um", "country-code", "Not assigned"], [ ".unicom", ".unicom", "generic", "China United Network Communications Corporation Limited", ], [".university", ".university", "generic", "Binky Moon, LLC"], [".uno", ".uno", "generic", "DotSite Inc."], [".uol", ".uol", "generic", "UBN INTERNET LTDA."], [".ups", ".ups", "generic", "UPS Market Driver, Inc."], [".us", ".us", "country-code", "NeuStar, Inc."], [".uy", ".uy", "country-code", "SeCIU - Universidad de la Republica"], [ ".uz", ".uz", "country-code", "Single Integrator for Creation and Support of State Information Systems UZINFOCOM", ], [".va", ".va", "country-code", "Holy See - Vatican City State"], [".vacations", ".vacations", "generic", "Binky Moon, LLC"], [".vana", ".vana", "generic", "Lifestyle Domain Holdings, Inc."], [".vanguard", ".vanguard", "generic", "The Vanguard Group, Inc."], [ ".vc", ".vc", "country-code", "Ministry of Telecommunications, Science, Technology and Industry", ], [ ".ve", ".ve", "country-code", "Comisión Nacional de Telecomunicaciones (CONATEL)", ], [".vegas", ".vegas", "generic", "Dot Vegas, Inc."], [".ventures", ".ventures", "generic", "Binky Moon, LLC"], [".verisign", ".verisign", "generic", "VeriSign, Inc."], [ ".versicherung", ".versicherung", "generic", "TLD-BOX Registrydienstleistungen GmbH", ], [".vet", ".vet", "generic", "United TLD Holdco, Ltd"], [ ".vg", ".vg", "country-code", "Telecommunications Regulatory Commission of the Virgin Islands", ], [ ".vi", ".vi", "country-code", "Virgin Islands Public Telecommunications System, Inc.", ], [".viajes", ".viajes", "generic", "Binky Moon, LLC"], [".video", ".video", "generic", "United TLD Holdco, Ltd"], [ ".vig", ".vig", "generic", "VIENNA INSURANCE GROUP AG Wiener Versicherung Gruppe", ], [".viking", ".viking", "generic", "Viking River Cruises (Bermuda) Ltd."], [".villas", ".villas", "generic", "Binky Moon, LLC"], [".vin", ".vin", "generic", "Binky Moon, LLC"], [".vip", ".vip", "generic", "Minds + Machines Group Limited"], [".virgin", ".virgin", "generic", "Virgin Enterprises Limited"], [".visa", ".visa", "generic", "Visa Worldwide Pte. Limited"], [".vision", ".vision", "generic", "Binky Moon, LLC"], [".vista", ".vista", "generic", "Not assigned"], [".vistaprint", ".vistaprint", "generic", "Not assigned"], [".viva", ".viva", "generic", "Saudi Telecom Company"], [".vivo", ".vivo", "generic", "Telefonica Brasil S.A."], [".vlaanderen", ".vlaanderen", "generic", "DNS.be vzw"], [ ".vn", ".vn", "country-code", "Viet Nam Internet Network Information Center (VNNIC)", ], [".vodka", ".vodka", "generic", "Minds + Machines Group Limited"], [".volkswagen", ".volkswagen", "generic", "Volkswagen Group of America Inc."], [".volvo", ".volvo", "generic", "Volvo Holding Sverige Aktiebolag"], [".vote", ".vote", "generic", "Monolith Registry LLC"], [".voting", ".voting", "generic", "Valuetainment Corp."], [".voto", ".voto", "generic", "Monolith Registry LLC"], [".voyage", ".voyage", "generic", "Binky Moon, LLC"], [ ".vu", ".vu", "country-code", "Telecommunications Radiocommunications and Broadcasting Regulator (TRBR)", ], [".vuelos", ".vuelos", "generic", "Travel Reservations SRL"], [".wales", ".wales", "generic", "Nominet UK"], [".walmart", ".walmart", "generic", "Wal-Mart Stores, Inc."], [".walter", ".walter", "generic", "Sandvik AB"], [".wang", ".wang", "generic", "Zodiac Wang Limited"], [".wanggou", ".wanggou", "generic", "Amazon Registry Services, Inc."], [".warman", ".warman", "generic", "Not assigned"], [".watch", ".watch", "generic", "Binky Moon, LLC"], [".watches", ".watches", "generic", "Richemont DNS Inc."], [ ".weather", ".weather", "generic", "International Business Machines Corporation", ], [ ".weatherchannel", ".weatherchannel", "generic", "International Business Machines Corporation", ], [".webcam", ".webcam", "generic", "dot Webcam Limited"], [".weber", ".weber", "generic", "Saint-Gobain Weber SA"], [".website", ".website", "generic", "DotWebsite Inc."], [ ".wed", ".wed", "generic", "Emergency Back-End Registry Operator Program - ICANN", ], [".wedding", ".wedding", "generic", "Minds + Machines Group Limited"], [".weibo", ".weibo", "generic", "Sina Corporation"], [".weir", ".weir", "generic", "Weir Group IP Limited"], [ ".wf", ".wf", "country-code", "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", ], [".whoswho", ".whoswho", "generic", "Who's Who Registry"], [".wien", ".wien", "generic", "punkt.wien GmbH"], [".wiki", ".wiki", "generic", "Top Level Design, LLC"], [ ".williamhill", ".williamhill", "generic", "William Hill Organization Limited", ], [".win", ".win", "generic", "First Registry Limited"], [".windows", ".windows", "generic", "Microsoft Corporation"], [".wine", ".wine", "generic", "Binky Moon, LLC"], [".winners", ".winners", "generic", "The TJX Companies, Inc."], [".wme", ".wme", "generic", "William Morris Endeavor Entertainment, LLC"], [".wolterskluwer", ".wolterskluwer", "generic", "Wolters Kluwer N.V."], [".woodside", ".woodside", "generic", "Woodside Petroleum Limited"], [".work", ".work", "generic", "Minds + Machines Group Limited"], [".works", ".works", "generic", "Binky Moon, LLC"], [".world", ".world", "generic", "Binky Moon, LLC"], [".wow", ".wow", "generic", "Amazon Registry Services, Inc."], [ ".ws", ".ws", "country-code", "Government of Samoa Ministry of Foreign Affairs & Trade", ], [".wtc", ".wtc", "generic", "World Trade Centers Association, Inc."], [".wtf", ".wtf", "generic", "Binky Moon, LLC"], [".xbox", ".xbox", "generic", "Microsoft Corporation"], [".xerox", ".xerox", "generic", "Xerox DNHC LLC"], [".xfinity", ".xfinity", "generic", "Comcast IP Holdings I, LLC"], [".xihuan", ".xihuan", "generic", "QIHOO 360 TECHNOLOGY CO. LTD."], [".xin", ".xin", "generic", "Elegant Leader Limited"], [".测试", ".xn--0zwm56d", "test", "Internet Assigned Numbers Authority"], [".कॉम", ".xn--11b4c3d", "generic", "VeriSign Sarl"], [ ".परीक्षा", ".xn--11b5bs3a9aj6g", "test", "Internet Assigned Numbers Authority", ], [".セール", ".xn--1ck2e1b", "generic", "Amazon Registry Services, Inc."], [ ".佛山", ".xn--1qqw23a", "generic", "Guangzhou YU Wei Information Technology Co., Ltd.", ], [ ".ಭಾರತ", ".xn--2scrj9c", "country-code", "National Internet eXchange of India", ], [".慈善", ".xn--30rr7y", "generic", "Excellent First Limited"], [".集团", ".xn--3bst00m", "generic", "Eagle Horizon Limited"], [".在线", ".xn--3ds443g", "generic", "TLD REGISTRY LIMITED"], [ ".한국", ".xn--3e0b707e", "country-code", "KISA (Korea Internet & Security Agency)", ], [ ".ଭାରତ", ".xn--3hcrj9c", "country-code", "National Internet eXchange of India", ], [ ".大众汽车", ".xn--3oq18vl8pn36a", "generic", "Volkswagen (China) Investment Co., Ltd.", ], [".点看", ".xn--3pxu8k", "generic", "VeriSign Sarl"], [".คอม", ".xn--42c2d9a", "generic", "VeriSign Sarl"], [ ".ভাৰত", ".xn--45br5cyl", "country-code", "National Internet eXchange of India", ], [ ".ভারত", ".xn--45brj9c", "country-code", "National Internet Exchange of India", ], [".八卦", ".xn--45q11c", "generic", "Zodiac Gemini Ltd"], ["‏.ישראל‎", ".xn--4dbrk0ce", "country-code", "Not assigned"], ["‏.موقع‎", ".xn--4gbrim", "generic", "Suhub Electronic Establishment"], [ ".বাংলা", ".xn--54b7fta0cc", "country-code", "Posts and Telecommunications Division", ], [ ".公益", ".xn--55qw42g", "generic", "China Organizational Name Administration Center", ], [ ".公司", ".xn--55qx5d", "generic", "Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)", ], [ ".香格里拉", ".xn--5su34j936bgsg", "generic", "Shangri‐La International Hotel Management Limited", ], [".网站", ".xn--5tzm5g", "generic", "Global Website TLD Asia Limited"], [".移动", ".xn--6frz82g", "generic", "Afilias Limited"], [".我爱你", ".xn--6qq986b3xl", "generic", "Tycoon Treasure Limited"], [ ".москва", ".xn--80adxhks", "generic", "Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)", ], [ ".испытание", ".xn--80akhbyknj4f", "test", "Internet Assigned Numbers Authority", ], [ ".қаз", ".xn--80ao21a", "country-code", "Association of IT Companies of Kazakhstan", ], [ ".католик", ".xn--80aqecdr1a", "generic", "Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)", ], [".онлайн", ".xn--80asehdb", "generic", "CORE Association"], [".сайт", ".xn--80aswg", "generic", "CORE Association"], [ ".联通", ".xn--8y0a063a", "generic", "China United Network Communications Corporation Limited", ], [ ".срб", ".xn--90a3ac", "country-code", "Serbian National Internet Domain Registry (RNIDS)", ], [".бг", ".xn--90ae", "country-code", "Imena.BG AD"], [".бел", ".xn--90ais", "country-code", "Reliable Software, Ltd."], ["‏.קום‎", ".xn--9dbq2a", "generic", "VeriSign Sarl"], [".时尚", ".xn--9et52u", "generic", "RISE VICTORY LIMITED"], [".微博", ".xn--9krt00a", "generic", "Sina Corporation"], [".테스트", ".xn--9t4b11yi5a", "test", "Internet Assigned Numbers Authority"], [".淡马锡", ".xn--b4w605ferd", "generic", "Temasek Holdings (Private) Limited"], [ ".ファッション", ".xn--bck1b9a5dre4c", "generic", "Amazon Registry Services, Inc.", ], [".орг", ".xn--c1avg", "generic", "Public Interest Registry"], [".नेट", ".xn--c2br7g", "generic", "VeriSign Sarl"], [".ストア", ".xn--cck2b3b", "generic", "Amazon Registry Services, Inc."], [".アマゾン", ".xn--cckwcxetd", "generic", "Amazon Registry Services, Inc."], [".삼성", ".xn--cg4bki", "generic", "SAMSUNG SDS CO., LTD"], [ ".சிங்கப்பூர்", ".xn--clchc0ea0b2g2a9gcd", "country-code", "Singapore Network Information Centre (SGNIC) Pte Ltd", ], [ ".商标", ".xn--czr694b", "generic", "HU YI GLOBAL INFORMATION RESOURCES(HOLDING) COMPANY.HONGKONG LIMITED", ], [".商店", ".xn--czrs0t", "generic", "Binky Moon, LLC"], [".商城", ".xn--czru2d", "generic", "Zodiac Aquarius Limited"], [ ".дети", ".xn--d1acj3b", "generic", "The Foundation for Network Initiatives “The Smart Internet”", ], [ ".мкд", ".xn--d1alf", "country-code", "Macedonian Academic Research Network Skopje", ], ["‏.טעסט‎", ".xn--deba0ad", "test", "Internet Assigned Numbers Authority"], [".ею", ".xn--e1a4c", "country-code", "EURid vzw/asbl"], [".ポイント", ".xn--eckvdtc9d", "generic", "Amazon Registry Services, Inc."], [ ".新闻", ".xn--efvy88h", "generic", "Guangzhou YU Wei Information and Technology Co.,Ltd", ], [".工行", ".xn--estv75g", "generic", "Not assigned"], [".家電", ".xn--fct429k", "generic", "Amazon Registry Services, Inc."], ["‏.كوم‎", ".xn--fhbei", "generic", "VeriSign Sarl"], [".中文网", ".xn--fiq228c5hs", "generic", "TLD REGISTRY LIMITED"], [".中信", ".xn--fiq64b", "generic", "CITIC Group Corporation"], [ ".中国", ".xn--fiqs8s", "country-code", "China Internet Network Information Center (CNNIC)", ], [ ".中國", ".xn--fiqz9s", "country-code", "China Internet Network Information Center (CNNIC)", ], [".娱乐", ".xn--fjq720a", "generic", "Binky Moon, LLC"], [".谷歌", ".xn--flw351e", "generic", "Charleston Road Registry Inc."], [ ".భారత్", ".xn--fpcrj9c3d", "country-code", "National Internet Exchange of India", ], [".ලංකා", ".xn--fzc2c9e2c", "country-code", "LK Domain Registry"], [".電訊盈科", ".xn--fzys8d69uvgm", "generic", "PCCW Enterprises Limited"], [".购物", ".xn--g2xx48c", "generic", "Minds + Machines Group Limited"], [".測試", ".xn--g6w251d", "test", "Internet Assigned Numbers Authority"], [".クラウド", ".xn--gckr3f0f", "generic", "Amazon Registry Services, Inc."], [ ".ભારત", ".xn--gecrj9c", "country-code", "National Internet Exchange of India", ], [".通販", ".xn--gk3at1e", "generic", "Amazon Registry Services, Inc."], [ ".भारतम्", ".xn--h2breg3eve", "country-code", "National Internet eXchange of India", ], [ ".भारत", ".xn--h2brj9c", "country-code", "National Internet Exchange of India", ], [ ".भारोत", ".xn--h2brj9c8c", "country-code", "National Internet eXchange of India", ], [ "‏.آزمایشی‎", ".xn--hgbk6aj7f53bba", "test", "Internet Assigned Numbers Authority", ], [ ".பரிட்சை", ".xn--hlcj6aya9esc7a", "test", "Internet Assigned Numbers Authority", ], [".网店", ".xn--hxt814e", "generic", "Zodiac Taurus Ltd."], [".संगठन", ".xn--i1b6b1a6a2e", "generic", "Public Interest Registry"], [ ".餐厅", ".xn--imr513n", "generic", "HU YI GLOBAL INFORMATION RESOURCES (HOLDING) COMPANY. HONGKONG LIMITED", ], [ ".网络", ".xn--io0a7i", "generic", "Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)", ], [".ком", ".xn--j1aef", "generic", "VeriSign Sarl"], [ ".укр", ".xn--j1amh", "country-code", "Ukrainian Network Information Centre (UANIC), Inc.", ], [ ".香港", ".xn--j6w193g", "country-code", "Hong Kong Internet Registration Corporation Ltd.", ], [".亚马逊", ".xn--jlq480n2rg", "generic", "Amazon Registry Services, Inc."], [".诺基亚", ".xn--jlq61u9w7b", "generic", "Nokia Corporation"], [".食品", ".xn--jvr189m", "generic", "Amazon Registry Services, Inc."], [".δοκιμή", ".xn--jxalpdlp", "test", "Internet Assigned Numbers Authority"], [".飞利浦", ".xn--kcrx77d1x4a", "generic", "Koninklijke Philips N.V."], ["‏.إختبار‎", ".xn--kgbechtv", "test", "Internet Assigned Numbers Authority"], [ ".台湾", ".xn--kprw13d", "country-code", "Taiwan Network Information Center (TWNIC)", ], [ ".台灣", ".xn--kpry57d", "country-code", "Taiwan Network Information Center (TWNIC)", ], [".手表", ".xn--kpu716f", "generic", "Not assigned"], [ ".手机", ".xn--kput3i", "generic", "Beijing RITT-Net Technology Development Co., Ltd", ], [".мон", ".xn--l1acc", "country-code", "Datacom Co.,Ltd"], ["‏.الجزائر‎", ".xn--lgbbat1ad8j", "country-code", "CERIST"], [ "‏.عمان‎", ".xn--mgb9awbf", "country-code", "Telecommunications Regulatory Authority (TRA)", ], ["‏.ارامكو‎", ".xn--mgba3a3ejt", "generic", "Aramco Services Company"], [ "‏.ایران‎", ".xn--mgba3a4f16a", "country-code", "Institute for Research in Fundamental Sciences (IPM)", ], ["‏.العليان‎", ".xn--mgba7c0bbn0a", "generic", "Crescent Holding GmbH"], [ "‏.اتصالات‎", ".xn--mgbaakc7dvf", "generic", "Emirates Telecommunications Corporation (trading as Etisalat)", ], [ "‏.امارات‎", ".xn--mgbaam7a8h", "country-code", "Telecommunications Regulatory Authority (TRA)", ], ["‏.بازار‎", ".xn--mgbab2bd", "generic", "CORE Association"], [ "‏.موريتانيا‎", ".xn--mgbah1a3hjkrd", "country-code", "Université de Nouakchott Al Aasriya", ], [ "‏.پاکستان‎", ".xn--mgbai9azgqp6j", "country-code", "National Telecommunication Corporation", ], [ "‏.الاردن‎", ".xn--mgbayh7gpa", "country-code", "National Information Technology Center (NITC)", ], ["‏.موبايلي‎", ".xn--mgbb9fbpob", "generic", "Not assigned"], [ "‏.بارت‎", ".xn--mgbbh1a", "country-code", "National Internet eXchange of India", ], [ "‏.بھارت‎", ".xn--mgbbh1a71e", "country-code", "National Internet Exchange of India", ], [ "‏.المغرب‎", ".xn--mgbc0a9azcg", "country-code", "Agence Nationale de Réglementation des Télécommunications (ANRT)", ], [ "‏.ابوظبي‎", ".xn--mgbca7dzdo", "generic", "Abu Dhabi Systems and Information Centre", ], [ "‏.البحرين‎", ".xn--mgbcpq6gpa1a", "country-code", "Telecommunications Regulatory Authority (TRA)", ], [ "‏.السعودية‎", ".xn--mgberp4a5d4ar", "country-code", "Communications and Information Technology Commission", ], [ "‏.ڀارت‎", ".xn--mgbgu82a", "country-code", "National Internet eXchange of India", ], [ "‏.كاثوليك‎", ".xn--mgbi4ecexp", "generic", "Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)", ], ["‏.سودان‎", ".xn--mgbpl2fh", "country-code", "Sudan Internet Society"], [ "‏.همراه‎", ".xn--mgbt3dhd", "generic", "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", ], [ "‏.عراق‎", ".xn--mgbtx2b", "country-code", "Communications and Media Commission (CMC)", ], ["‏.مليسيا‎", ".xn--mgbx4cd0ab", "country-code", "MYNIC Berhad"], [ ".澳門", ".xn--mix891f", "country-code", "Macao Post and Telecommunications Bureau (CTT)", ], [".닷컴", ".xn--mk1bu44c", "generic", "VeriSign Sarl"], [".政府", ".xn--mxtq1m", "generic", "Net-Chinese Co., Ltd."], [ "‏.شبكة‎", ".xn--ngbc5azd", "generic", "International Domain Registry Pty. Ltd.", ], ["‏.بيتك‎", ".xn--ngbe9e0a", "generic", "Kuwait Finance House"], ["‏.عرب‎", ".xn--ngbrx", "generic", "League of Arab States"], [ ".გე", ".xn--node", "country-code", "Information Technologies Development Center (ITDC)", ], [".机构", ".xn--nqv7f", "generic", "Public Interest Registry"], [".组织机构", ".xn--nqv7fs00ema", "generic", "Public Interest Registry"], [".健康", ".xn--nyqy26a", "generic", "Stable Tone Limited"], [ ".ไทย", ".xn--o3cw4h", "country-code", "Thai Network Information Center Foundation", ], [ "‏.سورية‎", ".xn--ogbpf8fl", "country-code", "National Agency for Network Services (NANS)", ], [ ".招聘", ".xn--otu796d", "generic", "Dot Trademark TLD Holding Company Limited", ], [".рус", ".xn--p1acf", "generic", "Rusnames Limited"], [".рф", ".xn--p1ai", "country-code", "Coordination Center for TLD RU"], [".珠宝", ".xn--pbt977c", "generic", "Not assigned"], ["‏.تونس‎", ".xn--pgbs0dh", "country-code", "Agence Tunisienne d'Internet"], [".大拿", ".xn--pssy2u", "generic", "VeriSign Sarl"], [ ".ລາວ", ".xn--q7ce6a", "country-code", "Lao National Internet Center (LANIC)", ], [".みんな", ".xn--q9jyb4c", "generic", "Charleston Road Registry Inc."], [".グーグル", ".xn--qcka1pmc", "generic", "Charleston Road Registry Inc."], [".ευ", ".xn--qxa6a", "country-code", "EURid vzw/asbl"], [".ελ", ".xn--qxam", "country-code", "ICS-FORTH GR"], [".世界", ".xn--rhqv96g", "generic", "Stable Tone Limited"], [".書籍", ".xn--rovu88b", "generic", "Amazon Registry Services, Inc."], [ ".ഭാരതം", ".xn--rvc1e0am3e", "country-code", "National Internet eXchange of India", ], [ ".ਭਾਰਤ", ".xn--s9brj9c", "country-code", "National Internet Exchange of India", ], [".网址", ".xn--ses554g", "generic", "KNET Co., Ltd"], [".닷넷", ".xn--t60b56a", "generic", "VeriSign Sarl"], [".コム", ".xn--tckwe", "generic", "VeriSign Sarl"], [ ".天主教", ".xn--tiq49xqyj", "generic", "Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)", ], [".游戏", ".xn--unup4y", "generic", "Binky Moon, LLC"], [ ".vermögensberater", ".xn--vermgensberater-ctb", "generic", "Deutsche Vermögensberatung Aktiengesellschaft DVAG", ], [ ".vermögensberatung", ".xn--vermgensberatung-pwb", "generic", "Deutsche Vermögensberatung Aktiengesellschaft DVAG", ], [".企业", ".xn--vhquv", "generic", "Binky Moon, LLC"], [ ".信息", ".xn--vuq861b", "generic", "Beijing Tele-info Network Technology Co., Ltd.", ], [".嘉里大酒店", ".xn--w4r85el8fhu5dnra", "generic", "Kerry Trading Co. Limited"], [".嘉里", ".xn--w4rs40l", "generic", "Kerry Trading Co. Limited"], [ "‏.مصر‎", ".xn--wgbh1c", "country-code", "National Telecommunication Regulatory Authority - NTRA", ], [ "‏.قطر‎", ".xn--wgbl6a", "country-code", "Communications Regulatory Authority", ], [ ".广东", ".xn--xhq521b", "generic", "Guangzhou YU Wei Information Technology Co., Ltd.", ], [".இலங்கை", ".xn--xkc2al3hye2a", "country-code", "LK Domain Registry"], [ ".இந்தியா", ".xn--xkc2dl3a5ee0h", "country-code", "National Internet Exchange of India", ], [ ".հայ", ".xn--y9a3aq", "country-code", '"Internet Society" Non-governmental Organization', ], [ ".新加坡", ".xn--yfro4i67o", "country-code", "Singapore Network Information Centre (SGNIC) Pte Ltd", ], [ "‏.فلسطين‎", ".xn--ygbi2ammx", "country-code", "Ministry of Telecom & Information Technology (MTIT)", ], [".テスト", ".xn--zckzah", "test", "Internet Assigned Numbers Authority"], [ ".政务", ".xn--zfr164b", "generic", "China Organizational Name Administration Center", ], [".xperia", ".xperia", "generic", "Not assigned"], [".xxx", ".xxx", "sponsored", "ICM Registry LLC"], [".xyz", ".xyz", "generic", "XYZ.COM LLC"], [".yachts", ".yachts", "generic", "DERYachts, LLC"], [".yahoo", ".yahoo", "generic", "Yahoo! Domain Services Inc."], [".yamaxun", ".yamaxun", "generic", "Amazon Registry Services, Inc."], [".yandex", ".yandex", "generic", "Yandex Europe B.V."], [".ye", ".ye", "country-code", "TeleYemen"], [".yodobashi", ".yodobashi", "generic", "YODOBASHI CAMERA CO.,LTD."], [".yoga", ".yoga", "generic", "Minds + Machines Group Limited"], [".yokohama", ".yokohama", "generic", "GMO Registry, Inc."], [".you", ".you", "generic", "Amazon Registry Services, Inc."], [".youtube", ".youtube", "generic", "Charleston Road Registry Inc."], [ ".yt", ".yt", "country-code", "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", ], [".yun", ".yun", "generic", "QIHOO 360 TECHNOLOGY CO. LTD."], [".za", ".za", "country-code", "ZA Domain Name Authority"], [".zappos", ".zappos", "generic", "Amazon Registry Services, Inc."], [ ".zara", ".zara", "generic", "Industria de Diseño Textil, S.A. (INDITEX, S.A.)", ], [".zero", ".zero", "generic", "Amazon Registry Services, Inc."], [".zip", ".zip", "generic", "Charleston Road Registry Inc."], [".zippo", ".zippo", "generic", "Not assigned"], [ ".zm", ".zm", "country-code", "Zambia Information and Communications Technology Authority (ZICTA)", ], [".zone", ".zone", "generic", "Binky Moon, LLC"], [".zuerich", ".zuerich", "generic", "Kanton Zürich (Canton of Zurich)"], [ ".zw", ".zw", "country-code", "Postal and Telecommunications Regulatory Authority of Zimbabwe (POTRAZ)", ],];
export default domains;
domain

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉