line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::Domain::TLD; |
2
|
1
|
|
|
1
|
|
663
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
31
|
|
3
|
1
|
|
|
1
|
|
4
|
use base qw(Exporter); |
|
1
|
|
|
|
|
0
|
|
|
1
|
|
|
|
|
83
|
|
4
|
1
|
|
|
1
|
|
15
|
use 5.006; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
209
|
|
5
|
|
|
|
|
|
|
our @EXPORT_OK = qw(tlds tld_exists %tld_profile); |
6
|
|
|
|
|
|
|
our $VERSION = '1.73'; |
7
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
|
7
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
38
|
|
9
|
1
|
|
|
1
|
|
5
|
use Carp; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
96
|
|
10
|
1
|
|
|
1
|
|
1508
|
use Storable qw ( dclone ); |
|
1
|
|
|
|
|
3321
|
|
|
1
|
|
|
|
|
78
|
|
11
|
|
|
|
|
|
|
|
12
|
1
|
|
|
1
|
|
7
|
use constant TLD_TYPES => qw ( new_open new_restricted gtld_open gtld_restricted gtld_new cc ccidn ); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
2994
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Net::Domain::TLD - Work with TLD names |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 SYNOPSIS |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
use Net::Domain::TLD qw(tlds tld_exists); |
21
|
|
|
|
|
|
|
my @ccTLDs = tlds('cc'); |
22
|
|
|
|
|
|
|
print "TLD ok\n" if tld_exists('ac','cc'); |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 DESCRIPTION |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
The purpose of this module is to provide user with current list of |
27
|
|
|
|
|
|
|
available top level domain names including new ICANN additions and ccTLDs |
28
|
|
|
|
|
|
|
Currently TLD definitions have been acquired from the following sources: |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
http://www.icann.org/tlds/ |
31
|
|
|
|
|
|
|
http://www.dnso.org/constituency/gtld/gtld.html |
32
|
|
|
|
|
|
|
http://www.iana.org/cctld/cctld-whois.htm |
33
|
|
|
|
|
|
|
https://www.iana.org/domains/root/db |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=cut |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
my %tld_profile = ( |
38
|
|
|
|
|
|
|
reserved => { |
39
|
|
|
|
|
|
|
test => q{DNS testing names}, |
40
|
|
|
|
|
|
|
example => q{Documentation names}, |
41
|
|
|
|
|
|
|
invalid => q{Invalid names}, |
42
|
|
|
|
|
|
|
localhost => q{Loopback names} |
43
|
|
|
|
|
|
|
}, |
44
|
|
|
|
|
|
|
new_open => { |
45
|
|
|
|
|
|
|
info => q{Unrestricted use}, |
46
|
|
|
|
|
|
|
xxx => q{sponsored top-level domain} |
47
|
|
|
|
|
|
|
}, |
48
|
|
|
|
|
|
|
new_restricted => { |
49
|
|
|
|
|
|
|
aero => q{Air-transport industry}, |
50
|
|
|
|
|
|
|
asia => q{Companies, organisations and individuals in the Asia-Pacific region}, |
51
|
|
|
|
|
|
|
arpa => q{Address and Routing Parameter Area}, |
52
|
|
|
|
|
|
|
biz => q{Businesses}, |
53
|
|
|
|
|
|
|
cat => q{Catalan linguistic and cultural community}, |
54
|
|
|
|
|
|
|
coop => q{Cooperatives}, |
55
|
|
|
|
|
|
|
jobs => q{Human Resource Management}, |
56
|
|
|
|
|
|
|
mobi => q{Mobile}, |
57
|
|
|
|
|
|
|
museum => q{Museums}, |
58
|
|
|
|
|
|
|
name => q{For registration by individuals}, |
59
|
|
|
|
|
|
|
post => q{Universal Postal Union}, |
60
|
|
|
|
|
|
|
pro => q{Accountants, lawyers, and physicians}, |
61
|
|
|
|
|
|
|
travel => q{Travel industry}, |
62
|
|
|
|
|
|
|
tel => q{For businesses and individuals to publish contact data} |
63
|
|
|
|
|
|
|
}, |
64
|
|
|
|
|
|
|
gtld_open => { |
65
|
|
|
|
|
|
|
com => q{Commercial organization}, |
66
|
|
|
|
|
|
|
net => q{Network connection services provider}, |
67
|
|
|
|
|
|
|
org => q{Non-profit organizations and industry standard groups} |
68
|
|
|
|
|
|
|
}, |
69
|
|
|
|
|
|
|
gtld_restricted => { |
70
|
|
|
|
|
|
|
gov => q{United States Government}, |
71
|
|
|
|
|
|
|
mil => q{United States Military}, |
72
|
|
|
|
|
|
|
edu => q{Educational institution}, |
73
|
|
|
|
|
|
|
int => q{International treaties/databases}, |
74
|
|
|
|
|
|
|
}, |
75
|
|
|
|
|
|
|
cc => { |
76
|
|
|
|
|
|
|
ac => q{Ascension Island}, |
77
|
|
|
|
|
|
|
ad => q{Andorra}, |
78
|
|
|
|
|
|
|
ae => q{United Arab Emirates}, |
79
|
|
|
|
|
|
|
af => q{Afghanistan}, |
80
|
|
|
|
|
|
|
ag => q{Antigua and Barbuda}, |
81
|
|
|
|
|
|
|
ai => q{Anguilla}, |
82
|
|
|
|
|
|
|
al => q{Albania}, |
83
|
|
|
|
|
|
|
am => q{Armenia}, |
84
|
|
|
|
|
|
|
an => q{Netherlands Antilles}, |
85
|
|
|
|
|
|
|
ao => q{Angola}, |
86
|
|
|
|
|
|
|
aq => q{Antartica}, |
87
|
|
|
|
|
|
|
ar => q{Argentina}, |
88
|
|
|
|
|
|
|
as => q{American Samoa}, |
89
|
|
|
|
|
|
|
at => q{Austria}, |
90
|
|
|
|
|
|
|
au => q{Australia}, |
91
|
|
|
|
|
|
|
aw => q{Aruba}, |
92
|
|
|
|
|
|
|
ax => q(Aland Islands), |
93
|
|
|
|
|
|
|
az => q{Azerbaijan}, |
94
|
|
|
|
|
|
|
ba => q{Bosnia and Herzegovina}, |
95
|
|
|
|
|
|
|
bb => q{Barbados}, |
96
|
|
|
|
|
|
|
bd => q{Bangladesh}, |
97
|
|
|
|
|
|
|
be => q{Belgium}, |
98
|
|
|
|
|
|
|
bf => q{Burkina Faso}, |
99
|
|
|
|
|
|
|
bg => q{Bulgaria}, |
100
|
|
|
|
|
|
|
bh => q{Bahrain}, |
101
|
|
|
|
|
|
|
bi => q{Burundi}, |
102
|
|
|
|
|
|
|
bj => q{Benin}, |
103
|
|
|
|
|
|
|
bl => q(Saint Barthelemy), |
104
|
|
|
|
|
|
|
bm => q{Bermuda}, |
105
|
|
|
|
|
|
|
bn => q{Brunei Darussalam}, |
106
|
|
|
|
|
|
|
bo => q{Bolivia}, |
107
|
|
|
|
|
|
|
bq => q{Not assigned}, |
108
|
|
|
|
|
|
|
br => q{Brazil}, |
109
|
|
|
|
|
|
|
bs => q{Bahamas}, |
110
|
|
|
|
|
|
|
bt => q{Bhutan}, |
111
|
|
|
|
|
|
|
bv => q{Bouvet Island}, |
112
|
|
|
|
|
|
|
bw => q{Botswana}, |
113
|
|
|
|
|
|
|
by => q{Belarus}, |
114
|
|
|
|
|
|
|
bz => q{Belize}, |
115
|
|
|
|
|
|
|
ca => q{Canada}, |
116
|
|
|
|
|
|
|
cc => q{Cocos (Keeling) Islands}, |
117
|
|
|
|
|
|
|
cd => q{Congo, Democratic Republic of the}, |
118
|
|
|
|
|
|
|
cf => q{Central African Republic}, |
119
|
|
|
|
|
|
|
cg => q{Congo, Republic of}, |
120
|
|
|
|
|
|
|
ch => q{Switzerland}, |
121
|
|
|
|
|
|
|
ci => q{Cote d'Ivoire}, |
122
|
|
|
|
|
|
|
ck => q{Cook Islands}, |
123
|
|
|
|
|
|
|
cl => q{Chile}, |
124
|
|
|
|
|
|
|
cm => q{Cameroon}, |
125
|
|
|
|
|
|
|
cn => q{China}, |
126
|
|
|
|
|
|
|
co => q{Colombia}, |
127
|
|
|
|
|
|
|
cr => q{Costa Rica}, |
128
|
|
|
|
|
|
|
cu => q{Cuba}, |
129
|
|
|
|
|
|
|
cv => q{Cap Verde}, |
130
|
|
|
|
|
|
|
cw => q{University of the Netherlands Antilles}, |
131
|
|
|
|
|
|
|
cx => q{Christmas Island}, |
132
|
|
|
|
|
|
|
cy => q{Cyprus}, |
133
|
|
|
|
|
|
|
cz => q{Czech Republic}, |
134
|
|
|
|
|
|
|
de => q{Germany}, |
135
|
|
|
|
|
|
|
dj => q{Djibouti}, |
136
|
|
|
|
|
|
|
dk => q{Denmark}, |
137
|
|
|
|
|
|
|
dm => q{Dominica}, |
138
|
|
|
|
|
|
|
do => q{Dominican Republic}, |
139
|
|
|
|
|
|
|
dz => q{Algeria}, |
140
|
|
|
|
|
|
|
ec => q{Ecuador}, |
141
|
|
|
|
|
|
|
ee => q{Estonia}, |
142
|
|
|
|
|
|
|
eg => q{Egypt}, |
143
|
|
|
|
|
|
|
eh => q{Western Sahara}, |
144
|
|
|
|
|
|
|
er => q{Eritrea}, |
145
|
|
|
|
|
|
|
es => q{Spain}, |
146
|
|
|
|
|
|
|
et => q{Ethiopia}, |
147
|
|
|
|
|
|
|
eu => q{European Union}, |
148
|
|
|
|
|
|
|
fi => q{Finland}, |
149
|
|
|
|
|
|
|
fj => q{Fiji}, |
150
|
|
|
|
|
|
|
fk => q{Falkland Islands (Malvina)}, |
151
|
|
|
|
|
|
|
fm => q{Micronesia, Federal State of}, |
152
|
|
|
|
|
|
|
fo => q{Faroe Islands}, |
153
|
|
|
|
|
|
|
fr => q{France}, |
154
|
|
|
|
|
|
|
ga => q{Gabon}, |
155
|
|
|
|
|
|
|
gb => q{United Kingdom}, |
156
|
|
|
|
|
|
|
gd => q{Grenada}, |
157
|
|
|
|
|
|
|
ge => q{Georgia}, |
158
|
|
|
|
|
|
|
gf => q{French Guiana}, |
159
|
|
|
|
|
|
|
gg => q{Guernsey}, |
160
|
|
|
|
|
|
|
gh => q{Ghana}, |
161
|
|
|
|
|
|
|
gi => q{Gibraltar}, |
162
|
|
|
|
|
|
|
gl => q{Greenland}, |
163
|
|
|
|
|
|
|
gm => q{Gambia}, |
164
|
|
|
|
|
|
|
gn => q{Guinea}, |
165
|
|
|
|
|
|
|
gp => q{Guadeloupe}, |
166
|
|
|
|
|
|
|
gq => q{Equatorial Guinea}, |
167
|
|
|
|
|
|
|
gr => q{Greece}, |
168
|
|
|
|
|
|
|
gs => q{South Georgia and the South Sandwich Islands}, |
169
|
|
|
|
|
|
|
gt => q{Guatemala}, |
170
|
|
|
|
|
|
|
gu => q{Guam}, |
171
|
|
|
|
|
|
|
gw => q{Guinea-Bissau}, |
172
|
|
|
|
|
|
|
gy => q{Guyana}, |
173
|
|
|
|
|
|
|
hk => q{Hong Kong}, |
174
|
|
|
|
|
|
|
hm => q{Heard and McDonald Islands}, |
175
|
|
|
|
|
|
|
hn => q{Honduras}, |
176
|
|
|
|
|
|
|
hr => q{Croatia/Hrvatska}, |
177
|
|
|
|
|
|
|
ht => q{Haiti}, |
178
|
|
|
|
|
|
|
hu => q{Hungary}, |
179
|
|
|
|
|
|
|
id => q{Indonesia}, |
180
|
|
|
|
|
|
|
ie => q{Ireland}, |
181
|
|
|
|
|
|
|
il => q{Israel}, |
182
|
|
|
|
|
|
|
im => q{Isle of Man}, |
183
|
|
|
|
|
|
|
in => q{India}, |
184
|
|
|
|
|
|
|
io => q{British Indian Ocean Territory}, |
185
|
|
|
|
|
|
|
iq => q{Iraq}, |
186
|
|
|
|
|
|
|
ir => q{Iran (Islamic Republic of)}, |
187
|
|
|
|
|
|
|
is => q{Iceland}, |
188
|
|
|
|
|
|
|
it => q{Italy}, |
189
|
|
|
|
|
|
|
je => q{Jersey}, |
190
|
|
|
|
|
|
|
jm => q{Jamaica}, |
191
|
|
|
|
|
|
|
jo => q{Jordan}, |
192
|
|
|
|
|
|
|
jp => q{Japan}, |
193
|
|
|
|
|
|
|
ke => q{Kenya}, |
194
|
|
|
|
|
|
|
kg => q{Kyrgyzstan}, |
195
|
|
|
|
|
|
|
kh => q{Cambodia}, |
196
|
|
|
|
|
|
|
ki => q{Kiribati}, |
197
|
|
|
|
|
|
|
km => q{Comoros}, |
198
|
|
|
|
|
|
|
kn => q{Saint Kitts and Nevis}, |
199
|
|
|
|
|
|
|
kp => q{Korea, Democratic People's Republic}, |
200
|
|
|
|
|
|
|
kr => q{Korea, Republic of}, |
201
|
|
|
|
|
|
|
kw => q{Kuwait}, |
202
|
|
|
|
|
|
|
ky => q{Cayman Islands}, |
203
|
|
|
|
|
|
|
kz => q{Kazakhstan}, |
204
|
|
|
|
|
|
|
la => q{Lao People's Democratic Republic}, |
205
|
|
|
|
|
|
|
lb => q{Lebanon}, |
206
|
|
|
|
|
|
|
lc => q{Saint Lucia}, |
207
|
|
|
|
|
|
|
li => q{Liechtenstein}, |
208
|
|
|
|
|
|
|
lk => q{Sri Lanka}, |
209
|
|
|
|
|
|
|
lr => q{Liberia}, |
210
|
|
|
|
|
|
|
ls => q{Lesotho}, |
211
|
|
|
|
|
|
|
lt => q{Lithuania}, |
212
|
|
|
|
|
|
|
lu => q{Luxembourg}, |
213
|
|
|
|
|
|
|
lv => q{Latvia}, |
214
|
|
|
|
|
|
|
ly => q{Libyan Arab Jamahiriya}, |
215
|
|
|
|
|
|
|
ma => q{Morocco}, |
216
|
|
|
|
|
|
|
mc => q{Monaco}, |
217
|
|
|
|
|
|
|
md => q{Moldova, Republic of}, |
218
|
|
|
|
|
|
|
me => q(Montenegro), |
219
|
|
|
|
|
|
|
mf => q{Saint Martin (French part)}, |
220
|
|
|
|
|
|
|
mg => q{Madagascar}, |
221
|
|
|
|
|
|
|
mh => q{Marshall Islands}, |
222
|
|
|
|
|
|
|
mk => q{Macedonia, Former Yugoslav Republic}, |
223
|
|
|
|
|
|
|
ml => q{Mali}, |
224
|
|
|
|
|
|
|
mm => q{Myanmar}, |
225
|
|
|
|
|
|
|
mn => q{Mongolia}, |
226
|
|
|
|
|
|
|
mo => q{Macau}, |
227
|
|
|
|
|
|
|
mp => q{Northern Mariana Islands}, |
228
|
|
|
|
|
|
|
mq => q{Martinique}, |
229
|
|
|
|
|
|
|
mr => q{Mauritania}, |
230
|
|
|
|
|
|
|
ms => q{Montserrat}, |
231
|
|
|
|
|
|
|
mt => q{Malta}, |
232
|
|
|
|
|
|
|
mu => q{Mauritius}, |
233
|
|
|
|
|
|
|
mv => q{Maldives}, |
234
|
|
|
|
|
|
|
mw => q{Malawi}, |
235
|
|
|
|
|
|
|
mx => q{Mexico}, |
236
|
|
|
|
|
|
|
my => q{Malaysia}, |
237
|
|
|
|
|
|
|
mz => q{Mozambique}, |
238
|
|
|
|
|
|
|
na => q{Namibia}, |
239
|
|
|
|
|
|
|
nc => q{New Caledonia}, |
240
|
|
|
|
|
|
|
ne => q{Niger}, |
241
|
|
|
|
|
|
|
nf => q{Norfolk Island}, |
242
|
|
|
|
|
|
|
ng => q{Nigeria}, |
243
|
|
|
|
|
|
|
ni => q{Nicaragua}, |
244
|
|
|
|
|
|
|
nl => q{Netherlands}, |
245
|
|
|
|
|
|
|
no => q{Norway}, |
246
|
|
|
|
|
|
|
np => q{Nepal}, |
247
|
|
|
|
|
|
|
nr => q{Nauru}, |
248
|
|
|
|
|
|
|
nu => q{Niue}, |
249
|
|
|
|
|
|
|
nz => q{New Zealand}, |
250
|
|
|
|
|
|
|
om => q{Oman}, |
251
|
|
|
|
|
|
|
pa => q{Panama}, |
252
|
|
|
|
|
|
|
pe => q{Peru}, |
253
|
|
|
|
|
|
|
pf => q{French Polynesia}, |
254
|
|
|
|
|
|
|
pg => q{Papua New Guinea}, |
255
|
|
|
|
|
|
|
ph => q{Philippines}, |
256
|
|
|
|
|
|
|
pk => q{Pakistan}, |
257
|
|
|
|
|
|
|
pl => q{Poland}, |
258
|
|
|
|
|
|
|
pm => q{St. Pierre and Miquelon}, |
259
|
|
|
|
|
|
|
pn => q{Pitcairn Island}, |
260
|
|
|
|
|
|
|
pr => q{Puerto Rico}, |
261
|
|
|
|
|
|
|
ps => q{Palestinian Territories}, |
262
|
|
|
|
|
|
|
pt => q{Portugal}, |
263
|
|
|
|
|
|
|
pw => q{Palau}, |
264
|
|
|
|
|
|
|
py => q{Paraguay}, |
265
|
|
|
|
|
|
|
qa => q{Qatar}, |
266
|
|
|
|
|
|
|
re => q{Reunion Island}, |
267
|
|
|
|
|
|
|
ro => q{Romania}, |
268
|
|
|
|
|
|
|
rs => q(Serbia), |
269
|
|
|
|
|
|
|
ru => q{Russian Federation}, |
270
|
|
|
|
|
|
|
rw => q{Rwanda}, |
271
|
|
|
|
|
|
|
sa => q{Saudi Arabia}, |
272
|
|
|
|
|
|
|
sb => q{Solomon Islands}, |
273
|
|
|
|
|
|
|
sc => q{Seychelles}, |
274
|
|
|
|
|
|
|
sd => q{Sudan}, |
275
|
|
|
|
|
|
|
se => q{Sweden}, |
276
|
|
|
|
|
|
|
sg => q{Singapore}, |
277
|
|
|
|
|
|
|
sh => q{St. Helena}, |
278
|
|
|
|
|
|
|
si => q{Slovenia}, |
279
|
|
|
|
|
|
|
sj => q{Svalbard and Jan Mayen Islands}, |
280
|
|
|
|
|
|
|
sk => q{Slovak Republic}, |
281
|
|
|
|
|
|
|
sl => q{Sierra Leone}, |
282
|
|
|
|
|
|
|
sm => q{San Marino}, |
283
|
|
|
|
|
|
|
sn => q{Senegal}, |
284
|
|
|
|
|
|
|
so => q{Somalia}, |
285
|
|
|
|
|
|
|
sr => q{Suriname}, |
286
|
|
|
|
|
|
|
ss => q{Not assigned}, |
287
|
|
|
|
|
|
|
st => q{Sao Tome and Principe}, |
288
|
|
|
|
|
|
|
su => q{Soviet Union}, |
289
|
|
|
|
|
|
|
sv => q{El Salvador}, |
290
|
|
|
|
|
|
|
sx => q{SX Registry SA B.V.}, |
291
|
|
|
|
|
|
|
sy => q{Syrian Arab Republic}, |
292
|
|
|
|
|
|
|
sz => q{Swaziland}, |
293
|
|
|
|
|
|
|
tc => q{Turks and Caicos Islands}, |
294
|
|
|
|
|
|
|
td => q{Chad}, |
295
|
|
|
|
|
|
|
tf => q{French Southern Territories}, |
296
|
|
|
|
|
|
|
tg => q{Togo}, |
297
|
|
|
|
|
|
|
th => q{Thailand}, |
298
|
|
|
|
|
|
|
tj => q{Tajikistan}, |
299
|
|
|
|
|
|
|
tk => q{Tokelau}, |
300
|
|
|
|
|
|
|
tl => q{Timor-Leste}, |
301
|
|
|
|
|
|
|
tm => q{Turkmenistan}, |
302
|
|
|
|
|
|
|
tn => q{Tunisia}, |
303
|
|
|
|
|
|
|
to => q{Tonga}, |
304
|
|
|
|
|
|
|
tp => q{East Timor}, |
305
|
|
|
|
|
|
|
tr => q{Turkey}, |
306
|
|
|
|
|
|
|
tt => q{Trinidad and Tobago}, |
307
|
|
|
|
|
|
|
tv => q{Tuvalu}, |
308
|
|
|
|
|
|
|
tw => q{Taiwan}, |
309
|
|
|
|
|
|
|
tz => q{Tanzania}, |
310
|
|
|
|
|
|
|
ua => q{Ukraine}, |
311
|
|
|
|
|
|
|
ug => q{Uganda}, |
312
|
|
|
|
|
|
|
uk => q{United Kingdom}, |
313
|
|
|
|
|
|
|
um => q{US Minor Outlying Islands}, |
314
|
|
|
|
|
|
|
us => q{United States}, |
315
|
|
|
|
|
|
|
uy => q{Uruguay}, |
316
|
|
|
|
|
|
|
uz => q{Uzbekistan}, |
317
|
|
|
|
|
|
|
va => q{Holy See (City Vatican State)}, |
318
|
|
|
|
|
|
|
vc => q{Saint Vincent and the Grenadines}, |
319
|
|
|
|
|
|
|
ve => q{Venezuela}, |
320
|
|
|
|
|
|
|
vg => q{Virgin Islands (British)}, |
321
|
|
|
|
|
|
|
vi => q{Virgin Islands (USA)}, |
322
|
|
|
|
|
|
|
vn => q{Vietnam}, |
323
|
|
|
|
|
|
|
vu => q{Vanuatu}, |
324
|
|
|
|
|
|
|
wf => q{Wallis and Futuna Islands}, |
325
|
|
|
|
|
|
|
ws => q{Western Samoa}, |
326
|
|
|
|
|
|
|
ye => q{Yemen}, |
327
|
|
|
|
|
|
|
yt => q{Mayotte}, |
328
|
|
|
|
|
|
|
yu => q{Yugoslavia}, |
329
|
|
|
|
|
|
|
za => q{South Africa}, |
330
|
|
|
|
|
|
|
zm => q{Zambia}, |
331
|
|
|
|
|
|
|
zw => q{Zimbabwe} |
332
|
|
|
|
|
|
|
}, |
333
|
|
|
|
|
|
|
ccidn => { |
334
|
|
|
|
|
|
|
'xn--0zwm56d' => q{Internet Assigned Numbers Authority}, |
335
|
|
|
|
|
|
|
'xn--11b5bs3a9aj6g' => q{Internet Assigned Numbers Authority}, |
336
|
|
|
|
|
|
|
'xn--1qqw23a' => q{Guangzhou YU Wei Information Technology Co., Ltd.}, |
337
|
|
|
|
|
|
|
'xn--3bst00m' => q{Eagle Horizon Limited}, |
338
|
|
|
|
|
|
|
'xn--3ds443g' => q{TLD REGISTRY LIMITED}, |
339
|
|
|
|
|
|
|
'xn--3e0b707e' => q{KISA (Korea Internet & Security Agency)}, |
340
|
|
|
|
|
|
|
'xn--45brj9c' => q{National Internet Exchange of India}, |
341
|
|
|
|
|
|
|
'xn--45q11c' => q{Zodiac Scorpio Limited}, |
342
|
|
|
|
|
|
|
'xn--4gbrim' => q{Suhub Electronic Establishment}, |
343
|
|
|
|
|
|
|
'xn--54b7fta0cc' => q{Not assigned}, |
344
|
|
|
|
|
|
|
'xn--55qw42g' => q{China Organizational Name Administration Center}, |
345
|
|
|
|
|
|
|
'xn--55qx5d' => q{Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)}, |
346
|
|
|
|
|
|
|
'xn--6frz82g' => q{Afilias Limited}, |
347
|
|
|
|
|
|
|
'xn--6qq986b3xl' => q{Tycoon Treasure Limited}, |
348
|
|
|
|
|
|
|
'xn--80adxhks' => q{Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)}, |
349
|
|
|
|
|
|
|
'xn--80akhbyknj4f' => q{Internet Assigned Numbers Authority}, |
350
|
|
|
|
|
|
|
'xn--80ao21a' => q{Association of IT Companies of Kazakhstan}, |
351
|
|
|
|
|
|
|
'xn--80asehdb' => q{CORE Association}, |
352
|
|
|
|
|
|
|
'xn--80aswg' => q{CORE Association}, |
353
|
|
|
|
|
|
|
'xn--90a3ac' => q{Serbian National Internet Domain Registry (RNIDS)}, |
354
|
|
|
|
|
|
|
'xn--90ais' => q{Not assigned}, |
355
|
|
|
|
|
|
|
'xn--9t4b11yi5a' => q{Internet Assigned Numbers Authority}, |
356
|
|
|
|
|
|
|
'xn--b4w605ferd' => q{Temasek Holdings (Private) Limited}, |
357
|
|
|
|
|
|
|
'xn--c1avg' => q{Public Interest Registry}, |
358
|
|
|
|
|
|
|
'xn--cg4bki' => q{SAMSUNG SDS CO., LTD}, |
359
|
|
|
|
|
|
|
'xn--clchc0ea0b2g2a9gcd' => q{Singapore Network Information Centre (SGNIC) Pte Ltd}, |
360
|
|
|
|
|
|
|
'xn--czr694b' => q{HU YI GLOBAL INFORMATION RESOURCES(HOLDING) COMPANY.HONGKONG LIMITED}, |
361
|
|
|
|
|
|
|
'xn--czrs0t' => q{Wild Island, LLC}, |
362
|
|
|
|
|
|
|
'xn--czru2d' => q{Zodiac Aquarius Limited}, |
363
|
|
|
|
|
|
|
'xn--d1acj3b' => q{The Foundation for Network Initiatives “The Smart Internetâ€}, |
364
|
|
|
|
|
|
|
'xn--d1alf' => q{Macedonian Academic Research Network Skopje}, |
365
|
|
|
|
|
|
|
'xn--deba0ad' => q{Internet Assigned Numbers Authority}, |
366
|
|
|
|
|
|
|
'xn--fiq228c5hs' => q{TLD REGISTRY LIMITED}, |
367
|
|
|
|
|
|
|
'xn--fiq64b' => q{CITIC Group Corporation}, |
368
|
|
|
|
|
|
|
'xn--fiqs8s' => q{China Internet Network Information Center}, |
369
|
|
|
|
|
|
|
'xn--fiqz9s' => q{China Internet Network Information Center}, |
370
|
|
|
|
|
|
|
'xn--flw351e' => q{Charleston Road Registry Inc.}, |
371
|
|
|
|
|
|
|
'xn--fpcrj9c3d' => q{National Internet Exchange of India}, |
372
|
|
|
|
|
|
|
'xn--fzc2c9e2c' => q{LK Domain Registry}, |
373
|
|
|
|
|
|
|
'xn--g6w251d' => q{Internet Assigned Numbers Authority}, |
374
|
|
|
|
|
|
|
'xn--gecrj9c' => q{National Internet Exchange of India}, |
375
|
|
|
|
|
|
|
'xn--h2brj9c' => q{National Internet Exchange of India}, |
376
|
|
|
|
|
|
|
'xn--hgbk6aj7f53bba' => q{Internet Assigned Numbers Authority}, |
377
|
|
|
|
|
|
|
'xn--hlcj6aya9esc7a' => q{Internet Assigned Numbers Authority}, |
378
|
|
|
|
|
|
|
'xn--hxt814e' => q{Zodiac Libra Limited}, |
379
|
|
|
|
|
|
|
'xn--i1b6b1a6a2e' => q{Public Interest Registry}, |
380
|
|
|
|
|
|
|
'xn--io0a7i' => q{Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)}, |
381
|
|
|
|
|
|
|
'xn--j1amh' => q{Ukrainian Network Information Centre (UANIC), Inc.}, |
382
|
|
|
|
|
|
|
'xn--j6w193g' => q{Hong Kong Internet Registration Corporation Ltd.}, |
383
|
|
|
|
|
|
|
'xn--jxalpdlp' => q{Internet Assigned Numbers Authority}, |
384
|
|
|
|
|
|
|
'xn--kgbechtv' => q{Internet Assigned Numbers Authority}, |
385
|
|
|
|
|
|
|
'xn--kprw13d' => q{Taiwan Network Information Center (TWNIC)}, |
386
|
|
|
|
|
|
|
'xn--kpry57d' => q{Taiwan Network Information Center (TWNIC)}, |
387
|
|
|
|
|
|
|
'xn--kput3i' => q{Beijing RITT-Net Technology Development Co., Ltd}, |
388
|
|
|
|
|
|
|
'xn--l1acc' => q{Datacom Co.,Ltd}, |
389
|
|
|
|
|
|
|
'xn--lgbbat1ad8j' => q{CERIST}, |
390
|
|
|
|
|
|
|
'xn--mgb9awbf' => q{Telecommunications Regulatory Authority (TRA)}, |
391
|
|
|
|
|
|
|
'xn--mgba3a4f16a' => q{Institute for Research in Fundamental Sciences (IPM)}, |
392
|
|
|
|
|
|
|
'xn--mgbaam7a8h' => q{Telecommunications Regulatory Authority (TRA)}, |
393
|
|
|
|
|
|
|
'xn--mgbab2bd' => q{CORE Association}, |
394
|
|
|
|
|
|
|
'xn--mgbai9azgqp6j' => q{Not assigned}, |
395
|
|
|
|
|
|
|
'xn--mgbayh7gpa' => q{National Information Technology Center (NITC)}, |
396
|
|
|
|
|
|
|
'xn--mgbbh1a71e' => q{National Internet Exchange of India}, |
397
|
|
|
|
|
|
|
'xn--mgbc0a9azcg' => q{Agence Nationale de Réglementation des Télécommunications (ANRT)}, |
398
|
|
|
|
|
|
|
'xn--mgberp4a5d4ar' => q{Communications and Information Technology Commission}, |
399
|
|
|
|
|
|
|
'xn--mgbpl2fh' => q{Not assigned}, |
400
|
|
|
|
|
|
|
'xn--mgbtx2b' => q{Not assigned}, |
401
|
|
|
|
|
|
|
'xn--mgbx4cd0ab' => q{MYNIC Berhad}, |
402
|
|
|
|
|
|
|
'xn--ngbc5azd' => q{International Domain Registry Pty. Ltd.}, |
403
|
|
|
|
|
|
|
'xn--node' => q{Information Technologies Development Center (ITDC)}, |
404
|
|
|
|
|
|
|
'xn--nqv7f' => q{Public Interest Registry}, |
405
|
|
|
|
|
|
|
'xn--nqv7fs00ema' => q{Public Interest Registry}, |
406
|
|
|
|
|
|
|
'xn--o3cw4h' => q{Thai Network Information Center Foundation}, |
407
|
|
|
|
|
|
|
'xn--ogbpf8fl' => q{National Agency for Network Services (NANS)}, |
408
|
|
|
|
|
|
|
'xn--p1acf' => q{Rusnames Limited}, |
409
|
|
|
|
|
|
|
'xn--p1ai' => q{Coordination Center for TLD RU}, |
410
|
|
|
|
|
|
|
'xn--pgbs0dh' => q{Agence Tunisienne d'Internet}, |
411
|
|
|
|
|
|
|
'xn--q9jyb4c' => q{Charleston Road Registry Inc.}, |
412
|
|
|
|
|
|
|
'xn--qcka1pmc' => q{Charleston Road Registry Inc.}, |
413
|
|
|
|
|
|
|
'xn--rhqv96g' => q{Stable Tone Limited}, |
414
|
|
|
|
|
|
|
'xn--s9brj9c' => q{National Internet Exchange of India}, |
415
|
|
|
|
|
|
|
'xn--ses554g' => q{KNET Co., Ltd}, |
416
|
|
|
|
|
|
|
'xn--unup4y' => q{Spring Fields, LLC}, |
417
|
|
|
|
|
|
|
'xn--vermgensberater-ctb' => q{Deutsche Vermögensberatung Aktiengesellschaft DVAG}, |
418
|
|
|
|
|
|
|
'xn--vermgensberatung-pwb' => q{Deutsche Vermögensberatung Aktiengesellschaft DVAG}, |
419
|
|
|
|
|
|
|
'xn--vhquv' => q{Dash McCook, LLC}, |
420
|
|
|
|
|
|
|
'xn--wgbh1c' => q{National Telecommunication Regulatory Authority - NTRA}, |
421
|
|
|
|
|
|
|
'xn--wgbl6a' => q{Communications Regulatory Authority}, |
422
|
|
|
|
|
|
|
'xn--xhq521b' => q{Guangzhou YU Wei Information Technology Co., Ltd.}, |
423
|
|
|
|
|
|
|
'xn--xkc2al3hye2a' => q{LK Domain Registry}, |
424
|
|
|
|
|
|
|
'xn--xkc2dl3a5ee0h' => q{National Internet Exchange of India}, |
425
|
|
|
|
|
|
|
'xn--y9a3aq' => q{Not assigned}, |
426
|
|
|
|
|
|
|
'xn--yfro4i67o' => q{Singapore Network Information Centre (SGNIC) Pte Ltd}, |
427
|
|
|
|
|
|
|
'xn--ygbi2ammx' => q{Ministry of Telecom & Information Technology (MTIT)}, |
428
|
|
|
|
|
|
|
'xn--zckzah' => q{Internet Assigned Numbers Authority}, |
429
|
|
|
|
|
|
|
'xn--zfr164b' => q{China Organizational Name Administration Center}, |
430
|
|
|
|
|
|
|
}, |
431
|
|
|
|
|
|
|
gtld_new => { |
432
|
|
|
|
|
|
|
'abogado' => q{Top Level Domain Holdings Limited}, |
433
|
|
|
|
|
|
|
'ac' => q{Network Information Center (AC Domain Registry) c/o Cable and Wireless (Ascension Island)}, |
434
|
|
|
|
|
|
|
'academy' => q{Half Oaks, LLC}, |
435
|
|
|
|
|
|
|
'accountants' => q{Knob Town, LLC}, |
436
|
|
|
|
|
|
|
'active' => q{The Active Network, Inc}, |
437
|
|
|
|
|
|
|
'actor' => q{United TLD Holdco Ltd.}, |
438
|
|
|
|
|
|
|
'ad' => q{Andorra Telecom}, |
439
|
|
|
|
|
|
|
'adult' => q{ICM Registry AD LLC}, |
440
|
|
|
|
|
|
|
'ae' => q{Telecommunication Regulatory Authority (TRA)}, |
441
|
|
|
|
|
|
|
'aero' => q{Societe Internationale de Telecommunications Aeronautique (SITA INC USA)}, |
442
|
|
|
|
|
|
|
'af' => q{Ministry of Communications and IT}, |
443
|
|
|
|
|
|
|
'ag' => q{UHSA School of Medicine}, |
444
|
|
|
|
|
|
|
'agency' => q{Steel Falls, LLC}, |
445
|
|
|
|
|
|
|
'ai' => q{Government of Anguilla}, |
446
|
|
|
|
|
|
|
'airforce' => q{United TLD Holdco Ltd.}, |
447
|
|
|
|
|
|
|
'al' => q{Electronic and Postal Communications Authority - AKEP}, |
448
|
|
|
|
|
|
|
'allfinanz' => q{Allfinanz Deutsche Vermögensberatung Aktiengesellschaft}, |
449
|
|
|
|
|
|
|
'alsace' => q{REGION D ALSACE}, |
450
|
|
|
|
|
|
|
'am' => q{Internet Society}, |
451
|
|
|
|
|
|
|
'amsterdam' => q{Gemeente Amsterdam}, |
452
|
|
|
|
|
|
|
'an' => q{University of Curacao}, |
453
|
|
|
|
|
|
|
'android' => q{Charleston Road Registry Inc.}, |
454
|
|
|
|
|
|
|
'ao' => q{Faculdade de Engenharia da Universidade Agostinho Neto}, |
455
|
|
|
|
|
|
|
'aq' => q{Antarctica Network Information Centre Limited}, |
456
|
|
|
|
|
|
|
'aquarelle' => q{Aquarelle.com}, |
457
|
|
|
|
|
|
|
'ar' => q{Presidencia de la Nación – SecretarÃa Legal y Técnica}, |
458
|
|
|
|
|
|
|
'archi' => q{STARTING DOT LIMITED}, |
459
|
|
|
|
|
|
|
'army' => q{United TLD Holdco Ltd.}, |
460
|
|
|
|
|
|
|
'arpa' => q{Internet Architecture Board (IAB)}, |
461
|
|
|
|
|
|
|
'as' => q{AS Domain Registry}, |
462
|
|
|
|
|
|
|
'asia' => q{DotAsia Organisation Ltd.}, |
463
|
|
|
|
|
|
|
'associates' => q{Baxter Hill, LLC}, |
464
|
|
|
|
|
|
|
'at' => q{nic.at GmbH}, |
465
|
|
|
|
|
|
|
'attorney' => q{United TLD Holdco, Ltd}, |
466
|
|
|
|
|
|
|
'au' => q{.au Domain Administration (auDA)}, |
467
|
|
|
|
|
|
|
'auction' => q{United TLD HoldCo, Ltd.}, |
468
|
|
|
|
|
|
|
'audio' => q{Uniregistry, Corp.}, |
469
|
|
|
|
|
|
|
'autos' => q{DERAutos, LLC}, |
470
|
|
|
|
|
|
|
'aw' => q{SETAR}, |
471
|
|
|
|
|
|
|
'ax' => q{Ålands landskapsregering}, |
472
|
|
|
|
|
|
|
'axa' => q{AXA SA}, |
473
|
|
|
|
|
|
|
'az' => q{IntraNS}, |
474
|
|
|
|
|
|
|
'ba' => q{Universtiy Telinformatic Centre (UTIC)}, |
475
|
|
|
|
|
|
|
'band' => q{United TLD Holdco, Ltd}, |
476
|
|
|
|
|
|
|
'bank' => q{fTLD Registry Services, LLC}, |
477
|
|
|
|
|
|
|
'bar' => q{Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable}, |
478
|
|
|
|
|
|
|
'barclaycard' => q{Barclays Bank PLC}, |
479
|
|
|
|
|
|
|
'barclays' => q{Barclays Bank PLC}, |
480
|
|
|
|
|
|
|
'bargains' => q{Half Hallow, LLC}, |
481
|
|
|
|
|
|
|
'bayern' => q{Bayern Connect GmbH}, |
482
|
|
|
|
|
|
|
'bb' => q{Government of Barbados Ministry of Economic Affairs and Development Telecommunications Unit}, |
483
|
|
|
|
|
|
|
'bd' => q{Ministry of Post & Telecommunications Bangladesh Secretariat}, |
484
|
|
|
|
|
|
|
'be' => q{DNS Belgium vzw/asbl}, |
485
|
|
|
|
|
|
|
'beer' => q{Top Level Domain Holdings Limited}, |
486
|
|
|
|
|
|
|
'berlin' => q{dotBERLIN GmbH & Co. KG}, |
487
|
|
|
|
|
|
|
'best' => q{BestTLD Pty Ltd}, |
488
|
|
|
|
|
|
|
'bf' => q{ARCE-AutoritÈ de RÈgulation des Communications Electroniques}, |
489
|
|
|
|
|
|
|
'bg' => q{Register.BG}, |
490
|
|
|
|
|
|
|
'bh' => q{Telecommunications Regulatory Authority (TRA)}, |
491
|
|
|
|
|
|
|
'bi' => q{Centre National de l'Informatique}, |
492
|
|
|
|
|
|
|
'bid' => q{dot Bid Limited}, |
493
|
|
|
|
|
|
|
'bike' => q{Grand Hollow, LLC}, |
494
|
|
|
|
|
|
|
'bio' => q{STARTING DOT LIMITED}, |
495
|
|
|
|
|
|
|
'biz' => q{NeuStar, Inc.}, |
496
|
|
|
|
|
|
|
'bj' => q{Benin Telecoms S.A.}, |
497
|
|
|
|
|
|
|
'bl' => q{Not assigned}, |
498
|
|
|
|
|
|
|
'black' => q{Afilias Limited}, |
499
|
|
|
|
|
|
|
'blackfriday' => q{Uniregistry, Corp.}, |
500
|
|
|
|
|
|
|
'bloomberg' => q{Bloomberg IP Holdings LLC}, |
501
|
|
|
|
|
|
|
'blue' => q{Afilias Limited}, |
502
|
|
|
|
|
|
|
'bm' => q{Registry General Ministry of Labour and Immigration}, |
503
|
|
|
|
|
|
|
'bmw' => q{Bayerische Motoren Werke Aktiengesellschaft}, |
504
|
|
|
|
|
|
|
'bn' => q{Telekom Brunei Berhad}, |
505
|
|
|
|
|
|
|
'bnpparibas' => q{BNP Paribas}, |
506
|
|
|
|
|
|
|
'bo' => q{Agencia para el Desarrollo de la Información de la Sociedad en Bolivia}, |
507
|
|
|
|
|
|
|
'boo' => q{Charleston Road Registry Inc.}, |
508
|
|
|
|
|
|
|
'boutique' => q{Over Galley, LLC}, |
509
|
|
|
|
|
|
|
'bq' => q{Not assigned}, |
510
|
|
|
|
|
|
|
'br' => q{Comite Gestor da Internet no Brasil}, |
511
|
|
|
|
|
|
|
'brussels' => q{DNS.be vzw}, |
512
|
|
|
|
|
|
|
'bs' => q{The College of the Bahamas}, |
513
|
|
|
|
|
|
|
'bt' => q{Ministry of Information and Communications}, |
514
|
|
|
|
|
|
|
'budapest' => q{Top Level Domain Holdings Limited}, |
515
|
|
|
|
|
|
|
'build' => q{Plan Bee LLC}, |
516
|
|
|
|
|
|
|
'builders' => q{Atomic Madison, LLC}, |
517
|
|
|
|
|
|
|
'business' => q{Spring Cross, LLC}, |
518
|
|
|
|
|
|
|
'buzz' => q{DOTSTRATEGY CO.}, |
519
|
|
|
|
|
|
|
'bv' => q{UNINETT Norid A/S}, |
520
|
|
|
|
|
|
|
'bw' => q{Botswana Communications Regulatory Authority (BOCRA)}, |
521
|
|
|
|
|
|
|
'by' => q{Reliable Software Inc.}, |
522
|
|
|
|
|
|
|
'bz' => q{University of Belize}, |
523
|
|
|
|
|
|
|
'bzh' => q{Association www.bzh}, |
524
|
|
|
|
|
|
|
'ca' => q{Canadian Internet Registration Authority (CIRA) Autorite Canadienne pour les Enregistrements Internet (ACEI)}, |
525
|
|
|
|
|
|
|
'cab' => q{Half Sunset, LLC}, |
526
|
|
|
|
|
|
|
'cal' => q{Charleston Road Registry Inc.}, |
527
|
|
|
|
|
|
|
'camera' => q{Atomic Maple, LLC}, |
528
|
|
|
|
|
|
|
'camp' => q{Delta Dynamite, LLC}, |
529
|
|
|
|
|
|
|
'cancerresearch' => q{Australian Cancer Research Foundation}, |
530
|
|
|
|
|
|
|
'capetown' => q{ZA Central Registry NPC trading as ZA Central Registry}, |
531
|
|
|
|
|
|
|
'capital' => q{Delta Mill, LLC}, |
532
|
|
|
|
|
|
|
'caravan' => q{Caravan International, Inc.}, |
533
|
|
|
|
|
|
|
'cards' => q{Foggy Hollow, LLC}, |
534
|
|
|
|
|
|
|
'care' => q{Goose Cross, LLC}, |
535
|
|
|
|
|
|
|
'career' => q{dotCareer LLC}, |
536
|
|
|
|
|
|
|
'careers' => q{Wild Corner, LLC}, |
537
|
|
|
|
|
|
|
'cartier' => q{Richemont DNS Inc.}, |
538
|
|
|
|
|
|
|
'casa' => q{Top Level Domain Holdings Limited}, |
539
|
|
|
|
|
|
|
'cash' => q{Delta Lake, LLC}, |
540
|
|
|
|
|
|
|
'cat' => q{Fundacio puntCAT}, |
541
|
|
|
|
|
|
|
'catering' => q{New Falls. LLC}, |
542
|
|
|
|
|
|
|
'cc' => q{eNIC Cocos (Keeling) Islands Pty. Ltd. d/b/a Island Internet Services}, |
543
|
|
|
|
|
|
|
'cd' => q{Office Congolais des Postes et Télécommunications - OCPT}, |
544
|
|
|
|
|
|
|
'center' => q{Tin Mill, LLC}, |
545
|
|
|
|
|
|
|
'ceo' => q{CEOTLD Pty Ltd}, |
546
|
|
|
|
|
|
|
'cern' => q{European Organization for Nuclear Research ("CERN")}, |
547
|
|
|
|
|
|
|
'cf' => q{Societe Centrafricaine de Telecommunications (SOCATEL)}, |
548
|
|
|
|
|
|
|
'cg' => q{ONPT Congo and Interpoint Switzerland}, |
549
|
|
|
|
|
|
|
'ch' => q{SWITCH The Swiss Education & Research Network}, |
550
|
|
|
|
|
|
|
'channel' => q{Charleston Road Registry Inc.}, |
551
|
|
|
|
|
|
|
'cheap' => q{Sand Cover, LLC}, |
552
|
|
|
|
|
|
|
'christmas' => q{Uniregistry, Corp.}, |
553
|
|
|
|
|
|
|
'chrome' => q{Charleston Road Registry Inc.}, |
554
|
|
|
|
|
|
|
'church' => q{Holly Fileds, LLC}, |
555
|
|
|
|
|
|
|
'ci' => q{INP-HB Institut National Polytechnique Felix Houphouet Boigny}, |
556
|
|
|
|
|
|
|
'citic' => q{CITIC Group Corporation}, |
557
|
|
|
|
|
|
|
'city' => q{Snow Sky, LLC}, |
558
|
|
|
|
|
|
|
'ck' => q{Telecom Cook Islands Ltd.}, |
559
|
|
|
|
|
|
|
'cl' => q{NIC Chile (University of Chile)}, |
560
|
|
|
|
|
|
|
'claims' => q{Black Corner, LLC}, |
561
|
|
|
|
|
|
|
'cleaning' => q{Fox Shadow, LLC}, |
562
|
|
|
|
|
|
|
'click' => q{Uniregistry, Corp.}, |
563
|
|
|
|
|
|
|
'clinic' => q{Goose Park, LLC}, |
564
|
|
|
|
|
|
|
'clothing' => q{Steel Lake, LLC}, |
565
|
|
|
|
|
|
|
'club' => q{.CLUB DOMAINS, LLC}, |
566
|
|
|
|
|
|
|
'cm' => q{Cameroon Telecommunications (CAMTEL)}, |
567
|
|
|
|
|
|
|
'cn' => q{Computer Network Information Center, Chinese Academy of Sciences}, |
568
|
|
|
|
|
|
|
'co' => q{.CO Internet S.A.S.}, |
569
|
|
|
|
|
|
|
'coach' => q{Koko Island, LLC}, |
570
|
|
|
|
|
|
|
'codes' => q{Puff Willow, LLC}, |
571
|
|
|
|
|
|
|
'coffee' => q{Trixy Cover, LLC}, |
572
|
|
|
|
|
|
|
'college' => q{XYZ.COM LLC}, |
573
|
|
|
|
|
|
|
'cologne' => q{NetCologne Gesellschaft für Telekommunikation mbH}, |
574
|
|
|
|
|
|
|
'com' => q{VeriSign Global Registry Services}, |
575
|
|
|
|
|
|
|
'community' => q{Fox Orchard, LLC}, |
576
|
|
|
|
|
|
|
'company' => q{Silver Avenue, LLC}, |
577
|
|
|
|
|
|
|
'computer' => q{Pine Mill, LLC}, |
578
|
|
|
|
|
|
|
'condos' => q{Pine House, LLC}, |
579
|
|
|
|
|
|
|
'construction' => q{Fox Dynamite, LLC}, |
580
|
|
|
|
|
|
|
'consulting' => q{United TLD Holdco, LTD.}, |
581
|
|
|
|
|
|
|
'contractors' => q{Magic Woods, LLC}, |
582
|
|
|
|
|
|
|
'cooking' => q{Top Level Domain Holdings Limited}, |
583
|
|
|
|
|
|
|
'cool' => q{Koko Lake, LLC}, |
584
|
|
|
|
|
|
|
'coop' => q{DotCooperation LLC}, |
585
|
|
|
|
|
|
|
'country' => q{Top Level Domain Holdings Limited}, |
586
|
|
|
|
|
|
|
'cr' => q{National Academy of Sciences Academia Nacional de Ciencias}, |
587
|
|
|
|
|
|
|
'credit' => q{Snow Shadow, LLC}, |
588
|
|
|
|
|
|
|
'creditcard' => q{Binky Frostbite, LLC}, |
589
|
|
|
|
|
|
|
'cricket' => q{dot Cricket Limited}, |
590
|
|
|
|
|
|
|
'crs' => q{Federated Co-operatives Limited}, |
591
|
|
|
|
|
|
|
'cruises' => q{Spring Way, LLC}, |
592
|
|
|
|
|
|
|
'cu' => q{CENIAInternet Industria y San Jose Capitolio Nacional}, |
593
|
|
|
|
|
|
|
'cuisinella' => q{SALM S.A.S.}, |
594
|
|
|
|
|
|
|
'cv' => q{Agência Nacional das Comunicações (ANAC)}, |
595
|
|
|
|
|
|
|
'cw' => q{University of Curacao}, |
596
|
|
|
|
|
|
|
'cx' => q{Christmas Island Internet Administration Limited}, |
597
|
|
|
|
|
|
|
'cy' => q{University of Cyprus}, |
598
|
|
|
|
|
|
|
'cymru' => q{Nominet UK}, |
599
|
|
|
|
|
|
|
'cz' => q{CZ.NIC, z.s.p.o}, |
600
|
|
|
|
|
|
|
'dabur' => q{Dabur India Limited}, |
601
|
|
|
|
|
|
|
'dad' => q{Charleston Road Registry Inc.}, |
602
|
|
|
|
|
|
|
'dance' => q{United TLD Holdco Ltd.}, |
603
|
|
|
|
|
|
|
'dating' => q{Pine Fest, LLC}, |
604
|
|
|
|
|
|
|
'day' => q{Charleston Road Registry Inc.}, |
605
|
|
|
|
|
|
|
'dclk' => q{Charleston Road Registry Inc.}, |
606
|
|
|
|
|
|
|
'de' => q{DENIC eG}, |
607
|
|
|
|
|
|
|
'deals' => q{Sand Sunset, LLC}, |
608
|
|
|
|
|
|
|
'degree' => q{United TLD Holdco, Ltd}, |
609
|
|
|
|
|
|
|
'delivery' => q{Steel Station, LLC}, |
610
|
|
|
|
|
|
|
'democrat' => q{United TLD Holdco Ltd.}, |
611
|
|
|
|
|
|
|
'dental' => q{Tin Birch, LLC}, |
612
|
|
|
|
|
|
|
'dentist' => q{United TLD Holdco, Ltd}, |
613
|
|
|
|
|
|
|
'desi' => q{Desi Networks LLC}, |
614
|
|
|
|
|
|
|
'design' => q{Top Level Design, LLC}, |
615
|
|
|
|
|
|
|
'dev' => q{Charleston Road Registry Inc.}, |
616
|
|
|
|
|
|
|
'diamonds' => q{John Edge, LLC}, |
617
|
|
|
|
|
|
|
'diet' => q{Uniregistry, Corp.}, |
618
|
|
|
|
|
|
|
'digital' => q{Dash Park, LLC}, |
619
|
|
|
|
|
|
|
'direct' => q{Half Trail, LLC}, |
620
|
|
|
|
|
|
|
'directory' => q{Extra Madison, LLC}, |
621
|
|
|
|
|
|
|
'discount' => q{Holly Hill, LLC}, |
622
|
|
|
|
|
|
|
'dj' => q{Djibouti Telecom S.A}, |
623
|
|
|
|
|
|
|
'dk' => q{Dansk Internet Forum}, |
624
|
|
|
|
|
|
|
'dm' => q{DotDM Corporation}, |
625
|
|
|
|
|
|
|
'dnp' => q{Dai Nippon Printing Co., Ltd.}, |
626
|
|
|
|
|
|
|
'do' => q{Pontificia Universidad Catolica Madre y Maestra Recinto Santo Tomas de Aquino}, |
627
|
|
|
|
|
|
|
'docs' => q{Charleston Road Registry Inc.}, |
628
|
|
|
|
|
|
|
'domains' => q{Sugar Cross, LLC}, |
629
|
|
|
|
|
|
|
'doosan' => q{Doosan Corporation}, |
630
|
|
|
|
|
|
|
'durban' => q{ZA Central Registry NPC trading as ZA Central Registry}, |
631
|
|
|
|
|
|
|
'dvag' => q{Deutsche Vermögensberatung Aktiengesellschaft DVAG}, |
632
|
|
|
|
|
|
|
'dz' => q{CERIST}, |
633
|
|
|
|
|
|
|
'eat' => q{Charleston Road Registry Inc.}, |
634
|
|
|
|
|
|
|
'ec' => q{NIC.EC (NICEC) S.A.}, |
635
|
|
|
|
|
|
|
'edu' => q{EDUCAUSE}, |
636
|
|
|
|
|
|
|
'education' => q{Brice Way, LLC}, |
637
|
|
|
|
|
|
|
'ee' => q{Eesti Interneti Sihtasutus (EIS)}, |
638
|
|
|
|
|
|
|
'eg' => q{Egyptian Universities Network (EUN) Supreme Council of Universities}, |
639
|
|
|
|
|
|
|
'eh' => q{Not assigned}, |
640
|
|
|
|
|
|
|
'email' => q{Spring Madison, LLC}, |
641
|
|
|
|
|
|
|
'emerck' => q{Merck KGaA}, |
642
|
|
|
|
|
|
|
'energy' => q{Binky Birch, LLC}, |
643
|
|
|
|
|
|
|
'engineer' => q{United TLD Holdco Ltd.}, |
644
|
|
|
|
|
|
|
'engineering' => q{Romeo Canyon}, |
645
|
|
|
|
|
|
|
'enterprises' => q{Snow Oaks, LLC}, |
646
|
|
|
|
|
|
|
'equipment' => q{Corn Station, LLC}, |
647
|
|
|
|
|
|
|
'er' => q{Eritrea Telecommunication Services Corporation (EriTel)}, |
648
|
|
|
|
|
|
|
'es' => q{Red.es}, |
649
|
|
|
|
|
|
|
'esq' => q{Charleston Road Registry Inc.}, |
650
|
|
|
|
|
|
|
'estate' => q{Trixy Park, LLC}, |
651
|
|
|
|
|
|
|
'et' => q{Ethio telecom}, |
652
|
|
|
|
|
|
|
'eu' => q{EURid vzw/asbl}, |
653
|
|
|
|
|
|
|
'eurovision' => q{European Broadcasting Union (EBU)}, |
654
|
|
|
|
|
|
|
'eus' => q{Puntueus Fundazioa}, |
655
|
|
|
|
|
|
|
'events' => q{Pioneer Maple, LLC}, |
656
|
|
|
|
|
|
|
'everbank' => q{EverBank}, |
657
|
|
|
|
|
|
|
'exchange' => q{Spring Falls, LLC}, |
658
|
|
|
|
|
|
|
'expert' => q{Magic Pass, LLC}, |
659
|
|
|
|
|
|
|
'exposed' => q{Victor Beach, LLC}, |
660
|
|
|
|
|
|
|
'fail' => q{Atomic Pipe, LLC}, |
661
|
|
|
|
|
|
|
'farm' => q{Just Maple, LLC}, |
662
|
|
|
|
|
|
|
'fashion' => q{Top Level Domain Holdings Limited}, |
663
|
|
|
|
|
|
|
'feedback' => q{Top Level Spectrum, Inc.}, |
664
|
|
|
|
|
|
|
'fi' => q{Finnish Communications Regulatory Authority}, |
665
|
|
|
|
|
|
|
'finance' => q{Cotton Cypress, LLC}, |
666
|
|
|
|
|
|
|
'financial' => q{Just Cover, LLC}, |
667
|
|
|
|
|
|
|
'firmdale' => q{Firmdale Holdings Limited}, |
668
|
|
|
|
|
|
|
'fish' => q{Fox Woods, LLC}, |
669
|
|
|
|
|
|
|
'fishing' => q{Top Level Domain Holdings Limited}, |
670
|
|
|
|
|
|
|
'fit' => q{Minds + Machines Group Limited}, |
671
|
|
|
|
|
|
|
'fitness' => q{Brice Orchard, LLC}, |
672
|
|
|
|
|
|
|
'fj' => q{The University of the South Pacific IT Services}, |
673
|
|
|
|
|
|
|
'fk' => q{Falkland Islands Government}, |
674
|
|
|
|
|
|
|
'flights' => q{Fox Station, LLC}, |
675
|
|
|
|
|
|
|
'florist' => q{Half Cypress, LLC}, |
676
|
|
|
|
|
|
|
'flowers' => q{Uniregistry, Corp.}, |
677
|
|
|
|
|
|
|
'flsmidth' => q{FLSmidth A/S}, |
678
|
|
|
|
|
|
|
'fly' => q{Charleston Road Registry Inc.}, |
679
|
|
|
|
|
|
|
'fm' => q{FSM Telecommunications Corporation}, |
680
|
|
|
|
|
|
|
'fo' => q{FO Council}, |
681
|
|
|
|
|
|
|
'foo' => q{Charleston Road Registry Inc.}, |
682
|
|
|
|
|
|
|
'forsale' => q{United TLD Holdco, LLC}, |
683
|
|
|
|
|
|
|
'foundation' => q{John Dale, LLC}, |
684
|
|
|
|
|
|
|
'fr' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)}, |
685
|
|
|
|
|
|
|
'frl' => q{FRLregistry B.V.}, |
686
|
|
|
|
|
|
|
'frogans' => q{OP3FT}, |
687
|
|
|
|
|
|
|
'fund' => q{John Castle, LLC}, |
688
|
|
|
|
|
|
|
'furniture' => q{Lone Fields, LLC}, |
689
|
|
|
|
|
|
|
'futbol' => q{United TLD Holdco, Ltd.}, |
690
|
|
|
|
|
|
|
'ga' => q{Agence Nationale des Infrastructures Numériques et des Fréquences (ANINF)}, |
691
|
|
|
|
|
|
|
'gal' => q{Asociación puntoGAL}, |
692
|
|
|
|
|
|
|
'gallery' => q{Sugar House, LLC}, |
693
|
|
|
|
|
|
|
'garden' => q{Top Level Domain Holdings Limited}, |
694
|
|
|
|
|
|
|
'gb' => q{Reserved Domain - IANA}, |
695
|
|
|
|
|
|
|
'gbiz' => q{Charleston Road Registry Inc.}, |
696
|
|
|
|
|
|
|
'gd' => q{The National Telecommunications Regulatory Commission (NTRC)}, |
697
|
|
|
|
|
|
|
'ge' => q{Caucasus Online}, |
698
|
|
|
|
|
|
|
'gent' => q{COMBELL GROUP NV/SA}, |
699
|
|
|
|
|
|
|
'gf' => q{Net Plus}, |
700
|
|
|
|
|
|
|
'gg' => q{Island Networks Ltd.}, |
701
|
|
|
|
|
|
|
'ggee' => q{GMO Internet, Inc.}, |
702
|
|
|
|
|
|
|
'gh' => q{Network Computer Systems Limited}, |
703
|
|
|
|
|
|
|
'gi' => q{Sapphire Networks}, |
704
|
|
|
|
|
|
|
'gift' => q{Uniregistry, Corp.}, |
705
|
|
|
|
|
|
|
'gifts' => q{Goose Sky, LLC}, |
706
|
|
|
|
|
|
|
'gives' => q{United TLD Holdco Ltd.}, |
707
|
|
|
|
|
|
|
'gl' => q{TELE Greenland A/S}, |
708
|
|
|
|
|
|
|
'glass' => q{Black Cover, LLC}, |
709
|
|
|
|
|
|
|
'gle' => q{Charleston Road Registry Inc.}, |
710
|
|
|
|
|
|
|
'global' => q{Dot GLOBAL AS}, |
711
|
|
|
|
|
|
|
'globo' => q{Globo Comunicação e Participações S.A}, |
712
|
|
|
|
|
|
|
'gm' => q{GM-NIC}, |
713
|
|
|
|
|
|
|
'gmail' => q{Charleston Road Registry Inc.}, |
714
|
|
|
|
|
|
|
'gmo' => q{GMO Internet, Inc.}, |
715
|
|
|
|
|
|
|
'gmx' => q{1&1 Mail & Media GmbH}, |
716
|
|
|
|
|
|
|
'gn' => q{Centre National des Sciences Halieutiques de Boussoura}, |
717
|
|
|
|
|
|
|
'goog' => q{Charleston Road Registry Inc.}, |
718
|
|
|
|
|
|
|
'google' => q{Charleston Road Registry Inc.}, |
719
|
|
|
|
|
|
|
'gop' => q{Republican State Leadership Committee, Inc.}, |
720
|
|
|
|
|
|
|
'gov' => q{General Services Administration Attn: QTDC, 2E08 (.gov Domain Registration)}, |
721
|
|
|
|
|
|
|
'gp' => q{Networking Technologies Group}, |
722
|
|
|
|
|
|
|
'gq' => q{GETESA}, |
723
|
|
|
|
|
|
|
'gr' => q{ICS-FORTH GR}, |
724
|
|
|
|
|
|
|
'graphics' => q{Over Madison, LLC}, |
725
|
|
|
|
|
|
|
'gratis' => q{Pioneer Tigers, LLC}, |
726
|
|
|
|
|
|
|
'green' => q{Afilias Limited}, |
727
|
|
|
|
|
|
|
'gripe' => q{Corn Sunset, LLC}, |
728
|
|
|
|
|
|
|
'gs' => q{Government of South Georgia and South Sandwich Islands (GSGSSI)}, |
729
|
|
|
|
|
|
|
'gt' => q{Universidad del Valle de Guatemala}, |
730
|
|
|
|
|
|
|
'gu' => q{University of Guam Computer Center}, |
731
|
|
|
|
|
|
|
'guide' => q{Snow Moon, LLC}, |
732
|
|
|
|
|
|
|
'guitars' => q{Uniregistry, Corp.}, |
733
|
|
|
|
|
|
|
'guru' => q{Pioneer Cypress, LLC}, |
734
|
|
|
|
|
|
|
'gw' => q{Autoridade Reguladora Nacional - Tecnologias de Informação e Comunicação da Guiné-Bissau}, |
735
|
|
|
|
|
|
|
'gy' => q{University of Guyana}, |
736
|
|
|
|
|
|
|
'hamburg' => q{Hamburg Top-Level-Domain GmbH}, |
737
|
|
|
|
|
|
|
'hangout' => q{Charleston Road Registry Inc.}, |
738
|
|
|
|
|
|
|
'haus' => q{United TLD Holdco, LTD.}, |
739
|
|
|
|
|
|
|
'healthcare' => q{Silver Glen, LLC}, |
740
|
|
|
|
|
|
|
'help' => q{Uniregistry, Corp.}, |
741
|
|
|
|
|
|
|
'here' => q{Charleston Road Registry Inc.}, |
742
|
|
|
|
|
|
|
'hermes' => q{Hermes International}, |
743
|
|
|
|
|
|
|
'hiphop' => q{Uniregistry, Corp.}, |
744
|
|
|
|
|
|
|
'hiv' => q{dotHIV gemeinnuetziger e.V.}, |
745
|
|
|
|
|
|
|
'hk' => q{Hong Kong Internet Registration Corporation Ltd.}, |
746
|
|
|
|
|
|
|
'hm' => q{HM Domain Registry}, |
747
|
|
|
|
|
|
|
'hn' => q{Red de Desarrollo Sostenible Honduras}, |
748
|
|
|
|
|
|
|
'holdings' => q{John Madison, LLC}, |
749
|
|
|
|
|
|
|
'holiday' => q{Goose Woods, LLC}, |
750
|
|
|
|
|
|
|
'homes' => q{DERHomes, LLC}, |
751
|
|
|
|
|
|
|
'horse' => q{Top Level Domain Holdings Limited}, |
752
|
|
|
|
|
|
|
'host' => q{DotHost Inc.}, |
753
|
|
|
|
|
|
|
'hosting' => q{Uniregistry, Corp.}, |
754
|
|
|
|
|
|
|
'house' => q{Sugar Park, LLC}, |
755
|
|
|
|
|
|
|
'how' => q{Charleston Road Registry Inc.}, |
756
|
|
|
|
|
|
|
'hr' => q{CARNet - Croatian Academic and Research Network}, |
757
|
|
|
|
|
|
|
'ht' => q{Consortium FDS/RDDH}, |
758
|
|
|
|
|
|
|
'hu' => q{Council of Hungarian Internet Providers (CHIP)}, |
759
|
|
|
|
|
|
|
'ibm' => q{International Business Machines Corporation}, |
760
|
|
|
|
|
|
|
'id' => q{Perkumpulan Pengelola Nama Domain Internet Indonesia (PANDI)}, |
761
|
|
|
|
|
|
|
'ie' => q{University College Dublin Computing Services Computer Centre}, |
762
|
|
|
|
|
|
|
'ifm' => q{ifm electronic gmbh}, |
763
|
|
|
|
|
|
|
'il' => q{Internet Society of Israel}, |
764
|
|
|
|
|
|
|
'im' => q{Isle of Man Government}, |
765
|
|
|
|
|
|
|
'immo' => q{Auburn Bloom, LLC}, |
766
|
|
|
|
|
|
|
'immobilien' => q{United TLD Holdco Ltd.}, |
767
|
|
|
|
|
|
|
'in' => q{National Internet Exchange of India}, |
768
|
|
|
|
|
|
|
'industries' => q{Outer House, LLC}, |
769
|
|
|
|
|
|
|
'info' => q{Afilias Limited}, |
770
|
|
|
|
|
|
|
'ing' => q{Charleston Road Registry Inc.}, |
771
|
|
|
|
|
|
|
'ink' => q{Top Level Design, LLC}, |
772
|
|
|
|
|
|
|
'institute' => q{Outer Maple, LLC}, |
773
|
|
|
|
|
|
|
'insure' => q{Pioneer Willow, LLC}, |
774
|
|
|
|
|
|
|
'int' => q{Internet Assigned Numbers Authority}, |
775
|
|
|
|
|
|
|
'international' => q{Wild Way, LLC}, |
776
|
|
|
|
|
|
|
'investments' => q{Holly Glen, LLC}, |
777
|
|
|
|
|
|
|
'io' => q{IO Top Level Domain Registry Cable and Wireless}, |
778
|
|
|
|
|
|
|
'iq' => q{Communications and Media Commission (CMC)}, |
779
|
|
|
|
|
|
|
'ir' => q{Institute for Research in Fundamental Sciences}, |
780
|
|
|
|
|
|
|
'irish' => q{Dot-Irish LLC}, |
781
|
|
|
|
|
|
|
'is' => q{ISNIC - Internet Iceland ltd.}, |
782
|
|
|
|
|
|
|
'it' => q{IIT - CNR}, |
783
|
|
|
|
|
|
|
'iwc' => q{Richemont DNS Inc.}, |
784
|
|
|
|
|
|
|
'jcb' => q{JCB Co., Ltd.}, |
785
|
|
|
|
|
|
|
'je' => q{Island Networks (Jersey) Ltd.}, |
786
|
|
|
|
|
|
|
'jetzt' => q{New TLD Company AB}, |
787
|
|
|
|
|
|
|
'jm' => q{University of West Indies}, |
788
|
|
|
|
|
|
|
'jo' => q{National Information Technology Center (NITC)}, |
789
|
|
|
|
|
|
|
'jobs' => q{Employ Media LLC}, |
790
|
|
|
|
|
|
|
'joburg' => q{ZA Central Registry NPC trading as ZA Central Registry}, |
791
|
|
|
|
|
|
|
'jp' => q{Japan Registry Services Co., Ltd.}, |
792
|
|
|
|
|
|
|
'juegos' => q{Uniregistry, Corp.}, |
793
|
|
|
|
|
|
|
'kaufen' => q{United TLD Holdco Ltd.}, |
794
|
|
|
|
|
|
|
'kddi' => q{KDDI CORPORATION}, |
795
|
|
|
|
|
|
|
'ke' => q{Kenya Network Information Center (KeNIC)}, |
796
|
|
|
|
|
|
|
'kg' => q{AsiaInfo Telecommunication Enterprise}, |
797
|
|
|
|
|
|
|
'kh' => q{Ministry of Post and Telecommunications}, |
798
|
|
|
|
|
|
|
'ki' => q{Ministry of Communications, Transport, and Tourism Development}, |
799
|
|
|
|
|
|
|
'kim' => q{Afilias Limited}, |
800
|
|
|
|
|
|
|
'kitchen' => q{Just Goodbye, LLC}, |
801
|
|
|
|
|
|
|
'kiwi' => q{DOT KIWI LIMITED}, |
802
|
|
|
|
|
|
|
'km' => q{Comores Telecom}, |
803
|
|
|
|
|
|
|
'kn' => q{Ministry of Finance, Sustainable Development Information & Technology}, |
804
|
|
|
|
|
|
|
'koeln' => q{NetCologne Gesellschaft für Telekommunikation mbH}, |
805
|
|
|
|
|
|
|
'kp' => q{Star Joint Venture Company}, |
806
|
|
|
|
|
|
|
'kr' => q{Korea Internet & Security Agency (KISA)}, |
807
|
|
|
|
|
|
|
'krd' => q{KRG Department of Information Technology}, |
808
|
|
|
|
|
|
|
'kred' => q{KredTLD Pty Ltd}, |
809
|
|
|
|
|
|
|
'kw' => q{Ministry of Communications}, |
810
|
|
|
|
|
|
|
'ky' => q{The Information and Communications Technology Authority}, |
811
|
|
|
|
|
|
|
'kyoto' => q{Academic Institution: Kyoto Jyoho Gakuen}, |
812
|
|
|
|
|
|
|
'kz' => q{Association of IT Companies of Kazakhstan}, |
813
|
|
|
|
|
|
|
'la' => q{Lao National Internet Committee (LANIC), Ministry of Posts and Telecommunications}, |
814
|
|
|
|
|
|
|
'lacaixa' => q{CAIXA D'ESTALVIS I PENSIONS DE BARCELONA}, |
815
|
|
|
|
|
|
|
'land' => q{Pine Moon, LLC}, |
816
|
|
|
|
|
|
|
'lat' => q{ECOM-LAC Federación de Latinoamérica y el Caribe para Internet y el Comercio Electrónico}, |
817
|
|
|
|
|
|
|
'latrobe' => q{La Trobe University}, |
818
|
|
|
|
|
|
|
'lawyer' => q{United TLD Holdco, Ltd}, |
819
|
|
|
|
|
|
|
'lb' => q{American University of Beirut Computing and Networking Services}, |
820
|
|
|
|
|
|
|
'lc' => q{University of Puerto Rico}, |
821
|
|
|
|
|
|
|
'lds' => q{IRI Domain Management, LLC}, |
822
|
|
|
|
|
|
|
'lease' => q{Victor Trail, LLC}, |
823
|
|
|
|
|
|
|
'legal' => q{Blue Falls, LLC}, |
824
|
|
|
|
|
|
|
'lgbt' => q{Afilias Limited}, |
825
|
|
|
|
|
|
|
'li' => q{Universitaet Liechtenstein}, |
826
|
|
|
|
|
|
|
'lidl' => q{Schwarz Domains und Services GmbH & Co. KG}, |
827
|
|
|
|
|
|
|
'life' => q{Trixy Oaks, LLC}, |
828
|
|
|
|
|
|
|
'lighting' => q{John McCook, LLC}, |
829
|
|
|
|
|
|
|
'limited' => q{Big Fest, LLC}, |
830
|
|
|
|
|
|
|
'limo' => q{Hidden Frostbite, LLC}, |
831
|
|
|
|
|
|
|
'link' => q{Uniregistry, Corp.}, |
832
|
|
|
|
|
|
|
'lk' => q{Council for Information Technology LK Domain Registrar}, |
833
|
|
|
|
|
|
|
'loans' => q{June Woods, LLC}, |
834
|
|
|
|
|
|
|
'london' => q{Dot London Domains Limited}, |
835
|
|
|
|
|
|
|
'lotte' => q{Lotte Holdings Co., Ltd.}, |
836
|
|
|
|
|
|
|
'lotto' => q{Afilias Limited}, |
837
|
|
|
|
|
|
|
'lr' => q{Data Technology Solutions, Inc.}, |
838
|
|
|
|
|
|
|
'ls' => q{National University of Lesotho}, |
839
|
|
|
|
|
|
|
'lt' => q{Kaunas University of Technology}, |
840
|
|
|
|
|
|
|
'ltda' => q{InterNetX Corp.}, |
841
|
|
|
|
|
|
|
'lu' => q{RESTENA}, |
842
|
|
|
|
|
|
|
'luxe' => q{Top Level Domain Holdings Limited}, |
843
|
|
|
|
|
|
|
'luxury' => q{Luxury Partners LLC}, |
844
|
|
|
|
|
|
|
'lv' => q{University of Latvia Institute of Mathematics and Computer Science Department of Network Solutions (DNS)}, |
845
|
|
|
|
|
|
|
'ly' => q{General Post and Telecommunication Company}, |
846
|
|
|
|
|
|
|
'ma' => q{Agence Nationale de Réglementation des Télécommunications (ANRT)}, |
847
|
|
|
|
|
|
|
'madrid' => q{Comunidad de Madrid}, |
848
|
|
|
|
|
|
|
'maison' => q{Victor Frostbite, LLC}, |
849
|
|
|
|
|
|
|
'management' => q{John Goodbye, LLC}, |
850
|
|
|
|
|
|
|
'mango' => q{PUNTO FA S.L.}, |
851
|
|
|
|
|
|
|
'market' => q{Unitied TLD Holdco, Ltd}, |
852
|
|
|
|
|
|
|
'marketing' => q{Fern Pass, LLC}, |
853
|
|
|
|
|
|
|
'marriott' => q{Marriott Worldwide Corporation}, |
854
|
|
|
|
|
|
|
'mc' => q{Gouvernement de Monaco Direction des Communications Electroniques}, |
855
|
|
|
|
|
|
|
'md' => q{MoldData S.E.}, |
856
|
|
|
|
|
|
|
'me' => q{Government of Montenegro}, |
857
|
|
|
|
|
|
|
'media' => q{Grand Glen, LLC}, |
858
|
|
|
|
|
|
|
'meet' => q{Afilias Limited}, |
859
|
|
|
|
|
|
|
'melbourne' => q{The Crown in right of the State of Victoria, represented by its Department of State Development, Business and Innovation}, |
860
|
|
|
|
|
|
|
'meme' => q{Charleston Road Registry Inc.}, |
861
|
|
|
|
|
|
|
'memorial' => q{Dog Beach, LLC}, |
862
|
|
|
|
|
|
|
'menu' => q{Wedding TLD2, LLC}, |
863
|
|
|
|
|
|
|
'mf' => q{Not assigned}, |
864
|
|
|
|
|
|
|
'mg' => q{NIC-MG (Network Information Center Madagascar)}, |
865
|
|
|
|
|
|
|
'mh' => q{Office of the Cabinet}, |
866
|
|
|
|
|
|
|
'miami' => q{Top Level Domain Holdings Limited}, |
867
|
|
|
|
|
|
|
'mil' => q{DoD Network Information Center}, |
868
|
|
|
|
|
|
|
'mini' => q{Bayerische Motoren Werke Aktiengesellschaft}, |
869
|
|
|
|
|
|
|
'mk' => q{Macedonian Academic Research Network Skopje}, |
870
|
|
|
|
|
|
|
'ml' => q{Agence des Technologies de l’Information et de la Communication}, |
871
|
|
|
|
|
|
|
'mm' => q{Ministry of Communications, Posts & Telegraphs}, |
872
|
|
|
|
|
|
|
'mn' => q{Datacom Co., Ltd.}, |
873
|
|
|
|
|
|
|
'mo' => q{Bureau of Telecommunications Regulation (DSRT)}, |
874
|
|
|
|
|
|
|
'mobi' => q{Afilias Technologies Limited dba dotMobi}, |
875
|
|
|
|
|
|
|
'moda' => q{United TLD Holdco Ltd.}, |
876
|
|
|
|
|
|
|
'moe' => q{Interlink Co., Ltd.}, |
877
|
|
|
|
|
|
|
'monash' => q{Monash University}, |
878
|
|
|
|
|
|
|
'money' => q{Outer McCook, LLC}, |
879
|
|
|
|
|
|
|
'mormon' => q{IRI Domain Management, LLC ("Applicant")}, |
880
|
|
|
|
|
|
|
'mortgage' => q{United TLD Holdco, Ltd}, |
881
|
|
|
|
|
|
|
'moscow' => q{Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)}, |
882
|
|
|
|
|
|
|
'motorcycles' => q{DERMotorcycles, LLC}, |
883
|
|
|
|
|
|
|
'mov' => q{Charleston Road Registry Inc.}, |
884
|
|
|
|
|
|
|
'mp' => q{Saipan Datacom, Inc.}, |
885
|
|
|
|
|
|
|
'mq' => q{MEDIASERV}, |
886
|
|
|
|
|
|
|
'mr' => q{Université des Sciences, de Technologie et de Médecine}, |
887
|
|
|
|
|
|
|
'ms' => q{MNI Networks Ltd.}, |
888
|
|
|
|
|
|
|
'mt' => q{NIC (Malta)}, |
889
|
|
|
|
|
|
|
'mu' => q{Internet Direct Ltd}, |
890
|
|
|
|
|
|
|
'museum' => q{Museum Domain Management Association}, |
891
|
|
|
|
|
|
|
'mv' => q{Dhiraagu Pvt. Ltd. (DHIVEHINET)}, |
892
|
|
|
|
|
|
|
'mw' => q{Malawi Sustainable Development Network Programme (Malawi SDNP)}, |
893
|
|
|
|
|
|
|
'mx' => q{NIC-Mexico ITESM - Campus Monterrey}, |
894
|
|
|
|
|
|
|
'my' => q{MYNIC Berhad}, |
895
|
|
|
|
|
|
|
'mz' => q{Centro de Informatica de Universidade Eduardo Mondlane}, |
896
|
|
|
|
|
|
|
'na' => q{Namibian Network Information Center}, |
897
|
|
|
|
|
|
|
'nagoya' => q{GMO Registry, Inc.}, |
898
|
|
|
|
|
|
|
'name' => q{VeriSign Information Services, Inc.}, |
899
|
|
|
|
|
|
|
'navy' => q{United TLD Holdco Ltd.}, |
900
|
|
|
|
|
|
|
'nc' => q{Office des Postes et Telecommunications}, |
901
|
|
|
|
|
|
|
'ne' => q{SONITEL}, |
902
|
|
|
|
|
|
|
'net' => q{VeriSign Global Registry Services}, |
903
|
|
|
|
|
|
|
'network' => q{Trixy Manor, LLC}, |
904
|
|
|
|
|
|
|
'neustar' => q{NeuStar, Inc.}, |
905
|
|
|
|
|
|
|
'new' => q{Charleston Road Registry Inc.}, |
906
|
|
|
|
|
|
|
'nexus' => q{Charleston Road Registry Inc.}, |
907
|
|
|
|
|
|
|
'nf' => q{Norfolk Island Data Services}, |
908
|
|
|
|
|
|
|
'ng' => q{Nigeria Internet Registration Association}, |
909
|
|
|
|
|
|
|
'ngo' => q{Public Interest Registry}, |
910
|
|
|
|
|
|
|
'nhk' => q{Japan Broadcasting Corporation (NHK)}, |
911
|
|
|
|
|
|
|
'ni' => q{Universidad Nacional del Ingernieria Centro de Computo}, |
912
|
|
|
|
|
|
|
'ninja' => q{United TLD Holdco Ltd.}, |
913
|
|
|
|
|
|
|
'nl' => q{SIDN (Stichting Internet Domeinregistratie Nederland)}, |
914
|
|
|
|
|
|
|
'no' => q{UNINETT Norid A/S}, |
915
|
|
|
|
|
|
|
'np' => q{Mercantile Communications Pvt. Ltd.}, |
916
|
|
|
|
|
|
|
'nr' => q{CENPAC NET}, |
917
|
|
|
|
|
|
|
'nra' => q{NRA Holdings Company, INC.}, |
918
|
|
|
|
|
|
|
'nrw' => q{Minds + Machines GmbH}, |
919
|
|
|
|
|
|
|
'ntt' => q{NIPPON TELEGRAPH AND TELEPHONE CORPORATION}, |
920
|
|
|
|
|
|
|
'nu' => q{The IUSN Foundation}, |
921
|
|
|
|
|
|
|
'nyc' => q{The City of New York by and through the New York City Department of Information Technology & Telecommunications}, |
922
|
|
|
|
|
|
|
'nz' => q{InternetNZ}, |
923
|
|
|
|
|
|
|
'okinawa' => q{BusinessRalliart inc.}, |
924
|
|
|
|
|
|
|
'om' => q{Telecommunications Regulatory Authority (TRA)}, |
925
|
|
|
|
|
|
|
'one' => q{One.com A/S}, |
926
|
|
|
|
|
|
|
'ong' => q{Public Interest Registry}, |
927
|
|
|
|
|
|
|
'onl' => q{I-REGISTRY Ltd., Niederlassung Deutschland}, |
928
|
|
|
|
|
|
|
'ooo' => q{INFIBEAM INCORPORATION LIMITED}, |
929
|
|
|
|
|
|
|
'org' => q{Public Interest Registry (PIR)}, |
930
|
|
|
|
|
|
|
'organic' => q{Afilias Limited}, |
931
|
|
|
|
|
|
|
'osaka' => q{Interlink Co., Ltd.}, |
932
|
|
|
|
|
|
|
'otsuka' => q{Otsuka Holdings Co., Ltd.}, |
933
|
|
|
|
|
|
|
'ovh' => q{OVH SAS}, |
934
|
|
|
|
|
|
|
'pa' => q{Universidad Tecnologica de Panama}, |
935
|
|
|
|
|
|
|
'paris' => q{City of Paris}, |
936
|
|
|
|
|
|
|
'partners' => q{Magic Glen, LLC}, |
937
|
|
|
|
|
|
|
'parts' => q{Sea Goodbye, LLC}, |
938
|
|
|
|
|
|
|
'party' => q{Blue Sky Registry Limited}, |
939
|
|
|
|
|
|
|
'pe' => q{Red Cientifica Peruana}, |
940
|
|
|
|
|
|
|
'pf' => q{Gouvernement de la Polynésie française}, |
941
|
|
|
|
|
|
|
'pg' => q{PNG DNS Administration Vice Chancellors Office The Papua New Guinea University of Technology}, |
942
|
|
|
|
|
|
|
'ph' => q{PH Domain Foundation}, |
943
|
|
|
|
|
|
|
'pharmacy' => q{National Association of Boards of Pharmacy}, |
944
|
|
|
|
|
|
|
'photo' => q{Uniregistry, Corp.}, |
945
|
|
|
|
|
|
|
'photography' => q{Sugar Glen, LLC}, |
946
|
|
|
|
|
|
|
'photos' => q{Sea Corner, LLC}, |
947
|
|
|
|
|
|
|
'physio' => q{PhysBiz Pty Ltd}, |
948
|
|
|
|
|
|
|
'pics' => q{Uniregistry, Corp.}, |
949
|
|
|
|
|
|
|
'pictures' => q{Foggy Sky, LLC}, |
950
|
|
|
|
|
|
|
'pink' => q{Afilias Limited}, |
951
|
|
|
|
|
|
|
'pizza' => q{Foggy Moon, LLC}, |
952
|
|
|
|
|
|
|
'pk' => q{PKNIC}, |
953
|
|
|
|
|
|
|
'pl' => q{Research and Academic Computer Network}, |
954
|
|
|
|
|
|
|
'place' => q{Snow Galley, LLC}, |
955
|
|
|
|
|
|
|
'plumbing' => q{Spring Tigers, LLC}, |
956
|
|
|
|
|
|
|
'pm' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)}, |
957
|
|
|
|
|
|
|
'pn' => q{Pitcairn Island Administration}, |
958
|
|
|
|
|
|
|
'pohl' => q{Deutsche Vermögensberatung Aktiengesellschaft DVAG}, |
959
|
|
|
|
|
|
|
'poker' => q{Afilias Domains No. 5 Limited}, |
960
|
|
|
|
|
|
|
'porn' => q{ICM Registry PN LLC}, |
961
|
|
|
|
|
|
|
'post' => q{Universal Postal Union}, |
962
|
|
|
|
|
|
|
'pr' => q{Gauss Research Laboratory Inc.}, |
963
|
|
|
|
|
|
|
'praxi' => q{Praxi S.p.A.}, |
964
|
|
|
|
|
|
|
'press' => q{DotPress Inc.}, |
965
|
|
|
|
|
|
|
'pro' => q{Registry Services Corporation dba RegistryPro}, |
966
|
|
|
|
|
|
|
'prod' => q{Charleston Road Registry Inc.}, |
967
|
|
|
|
|
|
|
'productions' => q{Magic Birch, LLC}, |
968
|
|
|
|
|
|
|
'prof' => q{Charleston Road Registry Inc.}, |
969
|
|
|
|
|
|
|
'properties' => q{Big Pass, LLC}, |
970
|
|
|
|
|
|
|
'property' => q{Uniregistry, Corp.}, |
971
|
|
|
|
|
|
|
'ps' => q{Ministry Of Telecommunications & Information Technology, Government Computer Center.}, |
972
|
|
|
|
|
|
|
'pt' => q{Associação DNS.PT}, |
973
|
|
|
|
|
|
|
'pub' => q{United TLD Holdco Ltd.}, |
974
|
|
|
|
|
|
|
'pw' => q{Micronesia Investment and Development Corporation}, |
975
|
|
|
|
|
|
|
'py' => q{NIC-PY}, |
976
|
|
|
|
|
|
|
'qa' => q{Communications Regulatory Authority}, |
977
|
|
|
|
|
|
|
'qpon' => q{dotCOOL, Inc.}, |
978
|
|
|
|
|
|
|
'quebec' => q{PointQuébec Inc}, |
979
|
|
|
|
|
|
|
're' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)}, |
980
|
|
|
|
|
|
|
'realtor' => q{Real Estate Domains LLC}, |
981
|
|
|
|
|
|
|
'recipes' => q{Grand Island, LLC}, |
982
|
|
|
|
|
|
|
'red' => q{Afilias Limited}, |
983
|
|
|
|
|
|
|
'rehab' => q{United TLD Holdco Ltd.}, |
984
|
|
|
|
|
|
|
'reise' => q{dotreise GmbH}, |
985
|
|
|
|
|
|
|
'reisen' => q{New Cypress, LLC}, |
986
|
|
|
|
|
|
|
'reit' => q{National Association of Real Estate Investment Trusts, Inc.}, |
987
|
|
|
|
|
|
|
'ren' => q{Beijing Qianxiang Wangjing Technology Development Co., Ltd.}, |
988
|
|
|
|
|
|
|
'rentals' => q{Big Hollow,LLC}, |
989
|
|
|
|
|
|
|
'repair' => q{Lone Sunset, LLC}, |
990
|
|
|
|
|
|
|
'report' => q{Binky Glen, LLC}, |
991
|
|
|
|
|
|
|
'republican' => q{United TLD Holdco Ltd.}, |
992
|
|
|
|
|
|
|
'rest' => q{Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable}, |
993
|
|
|
|
|
|
|
'restaurant' => q{Snow Avenue, LLC}, |
994
|
|
|
|
|
|
|
'reviews' => q{United TLD Holdco, Ltd.}, |
995
|
|
|
|
|
|
|
'rich' => q{I-REGISTRY Ltd., Niederlassung Deutschland}, |
996
|
|
|
|
|
|
|
'rio' => q{Empresa Municipal de Informática SA - IPLANRIO}, |
997
|
|
|
|
|
|
|
'rip' => q{United TLD Holdco Ltd.}, |
998
|
|
|
|
|
|
|
'ro' => q{National Institute for R&D in Informatics}, |
999
|
|
|
|
|
|
|
'rocks' => q{United TLD Holdco, LTD.}, |
1000
|
|
|
|
|
|
|
'rodeo' => q{Top Level Domain Holdings Limited}, |
1001
|
|
|
|
|
|
|
'rs' => q{Serbian National Internet Domain Registry (RNIDS)}, |
1002
|
|
|
|
|
|
|
'rsvp' => q{Charleston Road Registry Inc.}, |
1003
|
|
|
|
|
|
|
'ru' => q{Coordination Center for TLD RU}, |
1004
|
|
|
|
|
|
|
'ruhr' => q{regiodot GmbH & Co. KG}, |
1005
|
|
|
|
|
|
|
'rw' => q{Rwanda Information Communication and Technology Association (RICTA)}, |
1006
|
|
|
|
|
|
|
'ryukyu' => q{BusinessRalliart inc.}, |
1007
|
|
|
|
|
|
|
'sa' => q{Communications and Information Technology Commission}, |
1008
|
|
|
|
|
|
|
'saarland' => q{dotSaarland GmbH}, |
1009
|
|
|
|
|
|
|
'sale' => q{United TLD Holdco, Ltd}, |
1010
|
|
|
|
|
|
|
'samsung' => q{SAMSUNG SDS CO., LTD}, |
1011
|
|
|
|
|
|
|
'sarl' => q{Delta Orchard, LLC}, |
1012
|
|
|
|
|
|
|
'sb' => q{Solomon Telekom Company Limited}, |
1013
|
|
|
|
|
|
|
'sc' => q{VCS Pty Ltd}, |
1014
|
|
|
|
|
|
|
'sca' => q{SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)}, |
1015
|
|
|
|
|
|
|
'scb' => q{The Siam Commercial Bank Public Company Limited ("SCB")}, |
1016
|
|
|
|
|
|
|
'schmidt' => q{SALM S.A.S.}, |
1017
|
|
|
|
|
|
|
'schule' => q{Outer Moon, LLC}, |
1018
|
|
|
|
|
|
|
'schwarz' => q{Schwarz Domains und Services GmbH & Co. KG}, |
1019
|
|
|
|
|
|
|
'science' => q{dot Science Limited}, |
1020
|
|
|
|
|
|
|
'scot' => q{Dot Scot Registry Limited}, |
1021
|
|
|
|
|
|
|
'sd' => q{Sudan Internet Society}, |
1022
|
|
|
|
|
|
|
'se' => q{The Internet Infrastructure Foundation}, |
1023
|
|
|
|
|
|
|
'services' => q{Fox Castle, LLC}, |
1024
|
|
|
|
|
|
|
'sew' => q{SEW-EURODRIVE GmbH & Co KG}, |
1025
|
|
|
|
|
|
|
'sexy' => q{Uniregistry, Corp.}, |
1026
|
|
|
|
|
|
|
'sg' => q{Singapore Network Information Centre (SGNIC) Pte Ltd}, |
1027
|
|
|
|
|
|
|
'sh' => q{Government of St. Helena}, |
1028
|
|
|
|
|
|
|
'shiksha' => q{Afilias Limited}, |
1029
|
|
|
|
|
|
|
'shoes' => q{Binky Galley, LLC}, |
1030
|
|
|
|
|
|
|
'shriram' => q{Shriram Capital Ltd.}, |
1031
|
|
|
|
|
|
|
'si' => q{Academic and Research Network of Slovenia (ARNES)}, |
1032
|
|
|
|
|
|
|
'singles' => q{Fern Madison, LLC}, |
1033
|
|
|
|
|
|
|
'sj' => q{UNINETT Norid A/S}, |
1034
|
|
|
|
|
|
|
'sk' => q{SK-NIC, a.s.}, |
1035
|
|
|
|
|
|
|
'sky' => q{Sky IP International Ltd, a company incorporated in England and Wales, operating via its registered Swiss branch}, |
1036
|
|
|
|
|
|
|
'sl' => q{Sierratel}, |
1037
|
|
|
|
|
|
|
'sm' => q{Telecom Italia San Marino S.p.A.}, |
1038
|
|
|
|
|
|
|
'sn' => q{Universite Cheikh Anta Diop NIC Senegal}, |
1039
|
|
|
|
|
|
|
'so' => q{Ministry of Post and Telecommunications}, |
1040
|
|
|
|
|
|
|
'social' => q{United TLD Holdco Ltd.}, |
1041
|
|
|
|
|
|
|
'software' => q{United TLD Holdco, Ltd}, |
1042
|
|
|
|
|
|
|
'sohu' => q{Sohu.com Limited}, |
1043
|
|
|
|
|
|
|
'solar' => q{Ruby Town, LLC}, |
1044
|
|
|
|
|
|
|
'solutions' => q{Silver Cover, LLC}, |
1045
|
|
|
|
|
|
|
'soy' => q{Charleston Road Registry Inc.}, |
1046
|
|
|
|
|
|
|
'space' => q{DotSpace Inc.}, |
1047
|
|
|
|
|
|
|
'spiegel' => q{SPIEGEL-Verlag Rudolf Augstein GmbH & Co. KG}, |
1048
|
|
|
|
|
|
|
'sr' => q{Telesur}, |
1049
|
|
|
|
|
|
|
'ss' => q{Not assigned}, |
1050
|
|
|
|
|
|
|
'st' => q{Tecnisys}, |
1051
|
|
|
|
|
|
|
'su' => q{Russian Institute for Development of Public Networks (ROSNIIROS)}, |
1052
|
|
|
|
|
|
|
'supplies' => q{Atomic Fields, LLC}, |
1053
|
|
|
|
|
|
|
'supply' => q{Half Falls, LLC}, |
1054
|
|
|
|
|
|
|
'support' => q{Grand Orchard, LLC}, |
1055
|
|
|
|
|
|
|
'surf' => q{Top Level Domain Holdings Limited}, |
1056
|
|
|
|
|
|
|
'surgery' => q{Tin Avenue, LLC}, |
1057
|
|
|
|
|
|
|
'suzuki' => q{SUZUKI MOTOR CORPORATION}, |
1058
|
|
|
|
|
|
|
'sv' => q{SVNet}, |
1059
|
|
|
|
|
|
|
'sx' => q{SX Registry SA B.V.}, |
1060
|
|
|
|
|
|
|
'sy' => q{National Agency for Network Services (NANS)}, |
1061
|
|
|
|
|
|
|
'sydney' => q{State of New South Wales, Department of Premier and Cabinet}, |
1062
|
|
|
|
|
|
|
'systems' => q{Dash Cypress, LLC}, |
1063
|
|
|
|
|
|
|
'sz' => q{University of Swaziland Department of Computer Science}, |
1064
|
|
|
|
|
|
|
'taipei' => q{Taipei City Government}, |
1065
|
|
|
|
|
|
|
'tatar' => q{Limited Liability Company "Coordination Center of Regional Domain of Tatarstan Republic"}, |
1066
|
|
|
|
|
|
|
'tattoo' => q{Uniregistry, Corp.}, |
1067
|
|
|
|
|
|
|
'tax' => q{Storm Orchard, LLC}, |
1068
|
|
|
|
|
|
|
'tc' => q{Melrex TC}, |
1069
|
|
|
|
|
|
|
'td' => q{Société des télécommunications du Tchad (SOTEL TCHAD)}, |
1070
|
|
|
|
|
|
|
'technology' => q{Auburn Falls, LLC}, |
1071
|
|
|
|
|
|
|
'tel' => q{Telnic Ltd.}, |
1072
|
|
|
|
|
|
|
'temasek' => q{Temasek Holdings (Private) Limited}, |
1073
|
|
|
|
|
|
|
'tf' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)}, |
1074
|
|
|
|
|
|
|
'tg' => q{Cafe Informatique et Telecommunications}, |
1075
|
|
|
|
|
|
|
'th' => q{Thai Network Information Center Foundation}, |
1076
|
|
|
|
|
|
|
'tienda' => q{Victor Manor, LLC}, |
1077
|
|
|
|
|
|
|
'tips' => q{Corn Willow, LLC}, |
1078
|
|
|
|
|
|
|
'tires' => q{Dog Edge, LLC}, |
1079
|
|
|
|
|
|
|
'tirol' => q{punkt Tirol GmbH}, |
1080
|
|
|
|
|
|
|
'tj' => q{Information Technology Center}, |
1081
|
|
|
|
|
|
|
'tk' => q{Telecommunication Tokelau Corporation (Teletok)}, |
1082
|
|
|
|
|
|
|
'tl' => q{Ministry of Transport and Communications; National Division of Information and Technology}, |
1083
|
|
|
|
|
|
|
'tm' => q{TM Domain Registry Ltd}, |
1084
|
|
|
|
|
|
|
'tn' => q{Agence Tunisienne d'Internet}, |
1085
|
|
|
|
|
|
|
'to' => q{Government of the Kingdom of Tonga H.R.H. Crown Prince Tupouto'a c/o Consulate of Tonga}, |
1086
|
|
|
|
|
|
|
'today' => q{Pearl Woods, LLC}, |
1087
|
|
|
|
|
|
|
'tokyo' => q{GMO Registry, Inc.}, |
1088
|
|
|
|
|
|
|
'tools' => q{Pioneer North, LLC}, |
1089
|
|
|
|
|
|
|
'top' => q{Jiangsu Bangning Science & Technology Co.,Ltd.}, |
1090
|
|
|
|
|
|
|
'town' => q{Koko Moon, LLC}, |
1091
|
|
|
|
|
|
|
'toys' => q{Pioneer Orchard, LLC}, |
1092
|
|
|
|
|
|
|
'tp' => q{-}, |
1093
|
|
|
|
|
|
|
'tr' => q{Middle East Technical University Department of Computer Engineering}, |
1094
|
|
|
|
|
|
|
'trade' => q{Elite Registry Limited}, |
1095
|
|
|
|
|
|
|
'training' => q{Wild Willow, LLC}, |
1096
|
|
|
|
|
|
|
'travel' => q{Tralliance Registry Management Company, LLC.}, |
1097
|
|
|
|
|
|
|
'trust' => q{Artemis Internet Inc}, |
1098
|
|
|
|
|
|
|
'tt' => q{University of the West Indies Faculty of Engineering}, |
1099
|
|
|
|
|
|
|
'tui' => q{TUI AG}, |
1100
|
|
|
|
|
|
|
'tv' => q{Ministry of Finance and Tourism}, |
1101
|
|
|
|
|
|
|
'tw' => q{Taiwan Network Information Center (TWNIC)}, |
1102
|
|
|
|
|
|
|
'tz' => q{Tanzania Network Information Centre (tzNIC)}, |
1103
|
|
|
|
|
|
|
'ua' => q{Hostmaster Ltd.}, |
1104
|
|
|
|
|
|
|
'ug' => q{Uganda Online Ltd.}, |
1105
|
|
|
|
|
|
|
'uk' => q{Nominet UK}, |
1106
|
|
|
|
|
|
|
'um' => q{Not assigned}, |
1107
|
|
|
|
|
|
|
'university' => q{Little Station, LLC}, |
1108
|
|
|
|
|
|
|
'uno' => q{Dot Latin LLC}, |
1109
|
|
|
|
|
|
|
'uol' => q{UBN INTERNET LTDA.}, |
1110
|
|
|
|
|
|
|
'us' => q{NeuStar, Inc.}, |
1111
|
|
|
|
|
|
|
'uy' => q{SeCIU - Universidad de la Republica}, |
1112
|
|
|
|
|
|
|
'uz' => q{Computerization and Information Technologies Developing Center UZINFOCOM}, |
1113
|
|
|
|
|
|
|
'va' => q{Holy See Secretariat of State Department of Telecommunications}, |
1114
|
|
|
|
|
|
|
'vacations' => q{Atomic Tigers, LLC}, |
1115
|
|
|
|
|
|
|
'vc' => q{Ministry of Telecommunications, Science, Technology and Industry}, |
1116
|
|
|
|
|
|
|
've' => q{Comisión Nacional de Telecomunicaciones (CONATEL)}, |
1117
|
|
|
|
|
|
|
'vegas' => q{Dot Vegas, Inc.}, |
1118
|
|
|
|
|
|
|
'ventures' => q{Binky Lake, LLC}, |
1119
|
|
|
|
|
|
|
'versicherung' => q{dotversicherung-registry GmbH}, |
1120
|
|
|
|
|
|
|
'vet' => q{United TLD Holdco, Ltd}, |
1121
|
|
|
|
|
|
|
'vg' => q{Telecommunications Regulatory Commission of the Virgin Islands}, |
1122
|
|
|
|
|
|
|
'vi' => q{Virgin Islands Public Telcommunications System c/o COBEX Internet Services}, |
1123
|
|
|
|
|
|
|
'viajes' => q{Black Madison, LLC}, |
1124
|
|
|
|
|
|
|
'video' => q{United TLD Holdco, Ltd}, |
1125
|
|
|
|
|
|
|
'villas' => q{New Sky, LLC}, |
1126
|
|
|
|
|
|
|
'vision' => q{Koko Station, LLC}, |
1127
|
|
|
|
|
|
|
'vlaanderen' => q{DNS.be vzw}, |
1128
|
|
|
|
|
|
|
'vn' => q{Ministry of Information and Communications of Socialist Republic of Viet Nam}, |
1129
|
|
|
|
|
|
|
'vodka' => q{Top Level Domain Holdings Limited}, |
1130
|
|
|
|
|
|
|
'vote' => q{Monolith Registry LLC}, |
1131
|
|
|
|
|
|
|
'voting' => q{Valuetainment Corp.}, |
1132
|
|
|
|
|
|
|
'voto' => q{Monolith Registry LLC}, |
1133
|
|
|
|
|
|
|
'voyage' => q{Ruby House, LLC}, |
1134
|
|
|
|
|
|
|
'vu' => q{Telecom Vanuatu Limited}, |
1135
|
|
|
|
|
|
|
'wales' => q{Nominet UK}, |
1136
|
|
|
|
|
|
|
'wang' => q{Zodiac Registry Limited}, |
1137
|
|
|
|
|
|
|
'watch' => q{Sand Shadow, LLC}, |
1138
|
|
|
|
|
|
|
'webcam' => q{dot Webcam Limited}, |
1139
|
|
|
|
|
|
|
'website' => q{DotWebsite Inc.}, |
1140
|
|
|
|
|
|
|
'wed' => q{Atgron, Inc.}, |
1141
|
|
|
|
|
|
|
'wedding' => q{Top Level Domain Holdings Limited}, |
1142
|
|
|
|
|
|
|
'wf' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)}, |
1143
|
|
|
|
|
|
|
'whoswho' => q{Who's Who Registry}, |
1144
|
|
|
|
|
|
|
'wien' => q{punkt.wien GmbH}, |
1145
|
|
|
|
|
|
|
'wiki' => q{Top Level Design, LLC}, |
1146
|
|
|
|
|
|
|
'williamhill' => q{William Hill Organization Limited}, |
1147
|
|
|
|
|
|
|
'wme' => q{William Morris Endeavor Entertainment, LLC}, |
1148
|
|
|
|
|
|
|
'work' => q{Top Level Domain Holdings Limited}, |
1149
|
|
|
|
|
|
|
'works' => q{Little Dynamite, LLC}, |
1150
|
|
|
|
|
|
|
'world' => q{Bitter Fields, LLC}, |
1151
|
|
|
|
|
|
|
'ws' => q{Government of Samoa Ministry of Foreign Affairs & Trade}, |
1152
|
|
|
|
|
|
|
'wtc' => q{World Trade Centers Association, Inc.}, |
1153
|
|
|
|
|
|
|
'wtf' => q{Hidden Way, LLC}, |
1154
|
|
|
|
|
|
|
'xxx' => q{ICM Registry LLC}, |
1155
|
|
|
|
|
|
|
'xyz' => q{XYZ.COM LLC}, |
1156
|
|
|
|
|
|
|
'yachts' => q{DERYachts, LLC}, |
1157
|
|
|
|
|
|
|
'yandex' => q{YANDEX, LLC}, |
1158
|
|
|
|
|
|
|
'ye' => q{TeleYemen}, |
1159
|
|
|
|
|
|
|
'yoga' => q{Top Level Domain Holdings Limited}, |
1160
|
|
|
|
|
|
|
'yokohama' => q{GMO Registry, Inc.}, |
1161
|
|
|
|
|
|
|
'youtube' => q{Charleston Road Registry Inc.}, |
1162
|
|
|
|
|
|
|
'yt' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)}, |
1163
|
|
|
|
|
|
|
'za' => q{ZA Domain Name Authority}, |
1164
|
|
|
|
|
|
|
'zip' => q{Charleston Road Registry Inc.}, |
1165
|
|
|
|
|
|
|
'zm' => q{Zambia Information and Communications Technology Authority (ZICTA)}, |
1166
|
|
|
|
|
|
|
'zone' => q{Outer Falls, LLC}, |
1167
|
|
|
|
|
|
|
'zuerich' => q{Kanton Zürich (Canton of Zurich)}, |
1168
|
|
|
|
|
|
|
'zw' => q{Postal and Telecommunications Regulatory Authority of Zimbabwe (POTRAZ)}, |
1169
|
|
|
|
|
|
|
} |
1170
|
|
|
|
|
|
|
); |
1171
|
|
|
|
|
|
|
|
1172
|
|
|
|
|
|
|
my $flat_profile = flatten ( \%tld_profile ); |
1173
|
|
|
|
|
|
|
|
1174
|
|
|
|
|
|
|
sub flatten { |
1175
|
1
|
|
|
1
|
0
|
1
|
my $hashref = shift; |
1176
|
1
|
|
|
|
|
2
|
my %results; |
1177
|
8
|
|
|
|
|
588
|
@results{ keys %{ $hashref->{$_} } } = values % { $hashref->{$_} } |
|
8
|
|
|
|
|
63
|
|
1178
|
1
|
|
|
|
|
5
|
for ( keys %$hashref ); |
1179
|
1
|
|
|
|
|
3
|
return \%results; |
1180
|
|
|
|
|
|
|
} |
1181
|
|
|
|
|
|
|
|
1182
|
|
|
|
|
|
|
sub check_type { |
1183
|
0
|
|
|
0
|
0
|
|
my $type = shift; |
1184
|
0
|
0
|
|
|
|
|
croak "unknown TLD type: $type" unless grep { $type eq $_ } TLD_TYPES; |
|
0
|
|
|
|
|
|
|
1185
|
0
|
|
|
|
|
|
return 1; |
1186
|
|
|
|
|
|
|
} |
1187
|
|
|
|
|
|
|
|
1188
|
|
|
|
|
|
|
=head1 PUBLIC METHODS |
1189
|
|
|
|
|
|
|
|
1190
|
|
|
|
|
|
|
Each public function/method is described here. |
1191
|
|
|
|
|
|
|
These are how you should interact with this module. |
1192
|
|
|
|
|
|
|
|
1193
|
|
|
|
|
|
|
=head3 C<< tlds >> |
1194
|
|
|
|
|
|
|
|
1195
|
|
|
|
|
|
|
This routine returns the tlds requested. |
1196
|
|
|
|
|
|
|
|
1197
|
|
|
|
|
|
|
my @all_tlds = tlds; #array of tlds |
1198
|
|
|
|
|
|
|
my $all_tlds = tlds; #hashref of tlds and their descriptions |
1199
|
|
|
|
|
|
|
|
1200
|
|
|
|
|
|
|
my @cc_tlds = tlds('cc'); #array of just 'cc' type tlds |
1201
|
|
|
|
|
|
|
my $cc_tlds = tlds('cc'); #hashref of just 'cc' type tlds and their descriptions |
1202
|
|
|
|
|
|
|
|
1203
|
|
|
|
|
|
|
Valid types are: |
1204
|
|
|
|
|
|
|
cc - country code domains |
1205
|
|
|
|
|
|
|
ccidn - internationalized country code top-level domain |
1206
|
|
|
|
|
|
|
gtld_open - generic domains that anyone can register |
1207
|
|
|
|
|
|
|
gtld_restricted - generic restricted registration domains |
1208
|
|
|
|
|
|
|
gtld_new - new gTLDs |
1209
|
|
|
|
|
|
|
new_open - recently added generic domains |
1210
|
|
|
|
|
|
|
new_restricted - new restricted registration domains |
1211
|
|
|
|
|
|
|
reserved - RFC2606 restricted names, not returned by tlds |
1212
|
|
|
|
|
|
|
|
1213
|
|
|
|
|
|
|
=cut |
1214
|
|
|
|
|
|
|
|
1215
|
|
|
|
|
|
|
sub tlds { |
1216
|
0
|
|
|
0
|
1
|
|
my $type = shift; |
1217
|
0
|
0
|
|
|
|
|
check_type ( $type ) if $type; |
1218
|
0
|
|
|
|
|
|
my $results = $type ? |
1219
|
0
|
|
|
|
|
|
wantarray ? [ keys %{ $tld_profile{$type} } ] : |
1220
|
|
|
|
|
|
|
dclone ( $tld_profile{$type} ) : |
1221
|
0
|
0
|
|
|
|
|
wantarray ? [ map { keys %$_ } values %tld_profile ] : |
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
1222
|
|
|
|
|
|
|
$flat_profile; |
1223
|
0
|
0
|
|
|
|
|
return wantarray ? @$results : $results; |
1224
|
|
|
|
|
|
|
} |
1225
|
|
|
|
|
|
|
|
1226
|
|
|
|
|
|
|
=head3 C<< tld_exists >> |
1227
|
|
|
|
|
|
|
|
1228
|
|
|
|
|
|
|
This routine returns true if the given domain exists and false otherwise. |
1229
|
|
|
|
|
|
|
|
1230
|
|
|
|
|
|
|
die "no such domain" unless tld_exists($tld); #call without tld type |
1231
|
|
|
|
|
|
|
die "no such domain" unless tld_exists($tld, 'new_open'); #call with tld type |
1232
|
|
|
|
|
|
|
|
1233
|
|
|
|
|
|
|
=cut |
1234
|
|
|
|
|
|
|
|
1235
|
|
|
|
|
|
|
sub tld_exists { |
1236
|
0
|
|
|
0
|
1
|
|
my ( $tld, $type ) = ( lc ( $_[0] ), $_[1] ); |
1237
|
0
|
0
|
|
|
|
|
check_type ( $type ) if $type; |
1238
|
0
|
0
|
|
|
|
|
my $result = $type ? |
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
1239
|
|
|
|
|
|
|
$tld_profile{$type}{$tld} ? 1 : 0 : |
1240
|
|
|
|
|
|
|
$flat_profile->{$tld} ? 1 : 0; |
1241
|
0
|
|
|
|
|
|
return $result; |
1242
|
|
|
|
|
|
|
} |
1243
|
|
|
|
|
|
|
|
1244
|
|
|
|
|
|
|
=head1 COPYRIGHT |
1245
|
|
|
|
|
|
|
|
1246
|
|
|
|
|
|
|
Copyright (c) 2003-2014 Alex Pavlovic, all rights reserved. This program |
1247
|
|
|
|
|
|
|
is free software; you can redistribute it and/or modify it under the same terms |
1248
|
|
|
|
|
|
|
as Perl itself. |
1249
|
|
|
|
|
|
|
|
1250
|
|
|
|
|
|
|
=head1 AUTHORS |
1251
|
|
|
|
|
|
|
|
1252
|
|
|
|
|
|
|
Alexander Pavlovic |
1253
|
|
|
|
|
|
|
Ricardo SIGNES |
1254
|
|
|
|
|
|
|
|
1255
|
|
|
|
|
|
|
=cut |
1256
|
|
|
|
|
|
|
|
1257
|
|
|
|
|
|
|
1; |