generated from justjavac/deno_starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdomains.ts
2927 lines (2926 loc) · 111 KB
/
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
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",