line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::Domain::TLD; |
2
|
1
|
|
|
1
|
|
584
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
24
|
|
3
|
1
|
|
|
1
|
|
2
|
use base qw( Exporter ); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
66
|
|
4
|
1
|
|
|
1
|
|
14
|
use 5.006; |
|
1
|
|
|
|
|
5
|
|
5
|
|
|
|
|
|
|
our @EXPORT_OK = qw( tlds tld_exists %tld_profile ); |
6
|
|
|
|
|
|
|
our $VERSION = '1.74'; |
7
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
|
3
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
18
|
|
9
|
1
|
|
|
1
|
|
3
|
use Carp; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
71
|
|
10
|
1
|
|
|
1
|
|
854
|
use Storable qw ( dclone ); |
|
1
|
|
|
|
|
2142
|
|
|
1
|
|
|
|
|
76
|
|
11
|
|
|
|
|
|
|
|
12
|
1
|
|
|
1
|
|
6
|
use constant TLD_TYPES => qw ( new_open new_restricted gtld_open gtld_restricted gtld_new cc ccidn ); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
2874
|
|
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 Rglementation des Tlcommunications (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 Vermgensberatung Aktiengesellschaft DVAG}, |
418
|
|
|
|
|
|
|
'xn--vermgensberatung-pwb' => q{Deutsche Vermgensberatung 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
|
|
|
|
|
|
|
'טעסט' => q{Internet Assigned Numbers Authority}, |
433
|
|
|
|
|
|
|
'קום' => q{VeriSign Sarl}, |
434
|
|
|
|
|
|
|
'آزمایشی' => q{Internet Assigned Numbers Authority}, |
435
|
|
|
|
|
|
|
'إختبار' => q{Internet Assigned Numbers Authority}, |
436
|
|
|
|
|
|
|
'ارامكو' => q{Aramco Services Company}, |
437
|
|
|
|
|
|
|
'الاردن' => q{National Information Technology Center (NITC)}, |
438
|
|
|
|
|
|
|
'الجزائر' => q{CERIST}, |
439
|
|
|
|
|
|
|
'السعودية' => q{Communications and Information Technology Commission}, |
440
|
|
|
|
|
|
|
'المغرب' => q{Agence Nationale de Réglementation des Télécommunications (ANRT)}, |
441
|
|
|
|
|
|
|
'امارات' => q{Telecommunications Regulatory Authority (TRA)}, |
442
|
|
|
|
|
|
|
'ایران' => q{Institute for Research in Fundamental Sciences (IPM)}, |
443
|
|
|
|
|
|
|
'بازار' => q{CORE Association}, |
444
|
|
|
|
|
|
|
'بيتك' => q{Kuwait Finance House}, |
445
|
|
|
|
|
|
|
'بھارت' => q{National Internet Exchange of India}, |
446
|
|
|
|
|
|
|
'تونس' => q{Agence Tunisienne d'Internet}, |
447
|
|
|
|
|
|
|
'سودان' => q{Sudan Internet Society}, |
448
|
|
|
|
|
|
|
'سورية' => q{National Agency for Network Services (NANS)}, |
449
|
|
|
|
|
|
|
'شبكة' => q{International Domain Registry Pty. Ltd.}, |
450
|
|
|
|
|
|
|
'عراق' => q{Communications and Media Commission (CMC)}, |
451
|
|
|
|
|
|
|
'عمان' => q{Telecommunications Regulatory Authority (TRA)}, |
452
|
|
|
|
|
|
|
'فلسطين' => q{Ministry of Telecom & Information Technology (MTIT)}, |
453
|
|
|
|
|
|
|
'قطر' => q{Communications Regulatory Authority}, |
454
|
|
|
|
|
|
|
'كوم' => q{VeriSign Sarl}, |
455
|
|
|
|
|
|
|
'مصر' => q{National Telecommunication Regulatory Authority - NTRA}, |
456
|
|
|
|
|
|
|
'مليسيا' => q{MYNIC Berhad}, |
457
|
|
|
|
|
|
|
'موبايلي' => q{GreenTech Consultancy Company W.L.L.}, |
458
|
|
|
|
|
|
|
'موقع' => q{Suhub Electronic Establishment}, |
459
|
|
|
|
|
|
|
'همراه' => q{Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.}, |
460
|
|
|
|
|
|
|
'پاکستان' => q{Not assigned}, |
461
|
|
|
|
|
|
|
'aaa' => q{American Automobile Association, Inc.}, |
462
|
|
|
|
|
|
|
'aarp' => q{AARP}, |
463
|
|
|
|
|
|
|
'abb' => q{ABB Ltd}, |
464
|
|
|
|
|
|
|
'abbott' => q{Abbott Laboratories, Inc.}, |
465
|
|
|
|
|
|
|
'abogado' => q{Top Level Domain Holdings Limited}, |
466
|
|
|
|
|
|
|
'ac' => q{Network Information Center (AC Domain Registry) - c/o Cable and Wireless (Ascension Island)}, |
467
|
|
|
|
|
|
|
'academy' => q{Half Oaks, LLC}, |
468
|
|
|
|
|
|
|
'accenture' => q{Accenture plc}, |
469
|
|
|
|
|
|
|
'accountant' => q{dot Accountant Limited}, |
470
|
|
|
|
|
|
|
'accountants' => q{Knob Town, LLC}, |
471
|
|
|
|
|
|
|
'aco' => q{ACO Severin Ahlmann GmbH & Co. KG}, |
472
|
|
|
|
|
|
|
'active' => q{The Active Network, Inc}, |
473
|
|
|
|
|
|
|
'actor' => q{United TLD Holdco Ltd.}, |
474
|
|
|
|
|
|
|
'ad' => q{Andorra Telecom}, |
475
|
|
|
|
|
|
|
'adac' => q{Allgemeiner Deutscher Automobil-Club e.V. (ADAC)}, |
476
|
|
|
|
|
|
|
'ads' => q{Charleston Road Registry Inc.}, |
477
|
|
|
|
|
|
|
'adult' => q{ICM Registry AD LLC}, |
478
|
|
|
|
|
|
|
'ae' => q{Telecommunication Regulatory Authority (TRA)}, |
479
|
|
|
|
|
|
|
'aeg' => q{Aktiebolaget Electrolux}, |
480
|
|
|
|
|
|
|
'aero' => q{Societe Internationale de Telecommunications Aeronautique (SITA INC USA)}, |
481
|
|
|
|
|
|
|
'af' => q{Ministry of Communications and IT}, |
482
|
|
|
|
|
|
|
'afl' => q{Australian Football League}, |
483
|
|
|
|
|
|
|
'ag' => q{UHSA School of Medicine}, |
484
|
|
|
|
|
|
|
'agency' => q{Steel Falls, LLC}, |
485
|
|
|
|
|
|
|
'ai' => q{Government of Anguilla}, |
486
|
|
|
|
|
|
|
'aig' => q{American International Group, Inc.}, |
487
|
|
|
|
|
|
|
'airforce' => q{United TLD Holdco Ltd.}, |
488
|
|
|
|
|
|
|
'airtel' => q{Bharti Airtel Limited}, |
489
|
|
|
|
|
|
|
'al' => q{Electronic and Postal Communications Authority - AKEP}, |
490
|
|
|
|
|
|
|
'alibaba' => q{Alibaba Group Holding Limited}, |
491
|
|
|
|
|
|
|
'alipay' => q{Alibaba Group Holding Limited}, |
492
|
|
|
|
|
|
|
'allfinanz' => q{Allfinanz Deutsche Vermögensberatung Aktiengesellschaft}, |
493
|
|
|
|
|
|
|
'alsace' => q{REGION D ALSACE}, |
494
|
|
|
|
|
|
|
'am' => q{"Internet Society" Non-governmental Organization}, |
495
|
|
|
|
|
|
|
'amica' => q{Amica Mutual Insurance Company}, |
496
|
|
|
|
|
|
|
'amsterdam' => q{Gemeente Amsterdam}, |
497
|
|
|
|
|
|
|
'an' => q{Retired}, |
498
|
|
|
|
|
|
|
'analytics' => q{Campus IP LLC}, |
499
|
|
|
|
|
|
|
'android' => q{Charleston Road Registry Inc.}, |
500
|
|
|
|
|
|
|
'ao' => q{Faculdade de Engenharia da Universidade Agostinho Neto}, |
501
|
|
|
|
|
|
|
'apartments' => q{June Maple, LLC}, |
502
|
|
|
|
|
|
|
'app' => q{Charleston Road Registry Inc.}, |
503
|
|
|
|
|
|
|
'apple' => q{Apple Inc.}, |
504
|
|
|
|
|
|
|
'aq' => q{Antarctica Network Information Centre Limited}, |
505
|
|
|
|
|
|
|
'aquarelle' => q{Aquarelle.com}, |
506
|
|
|
|
|
|
|
'ar' => q{Presidencia de la Nación – Secretaría Legal y Técnica}, |
507
|
|
|
|
|
|
|
'aramco' => q{Aramco Services Company}, |
508
|
|
|
|
|
|
|
'archi' => q{STARTING DOT LIMITED}, |
509
|
|
|
|
|
|
|
'army' => q{United TLD Holdco Ltd.}, |
510
|
|
|
|
|
|
|
'arpa' => q{Internet Architecture Board (IAB)}, |
511
|
|
|
|
|
|
|
'arte' => q{Association Relative à la Télévision Européenne G.E.I.E.}, |
512
|
|
|
|
|
|
|
'as' => q{AS Domain Registry}, |
513
|
|
|
|
|
|
|
'asia' => q{DotAsia Organisation Ltd.}, |
514
|
|
|
|
|
|
|
'associates' => q{Baxter Hill, LLC}, |
515
|
|
|
|
|
|
|
'at' => q{nic.at GmbH}, |
516
|
|
|
|
|
|
|
'attorney' => q{United TLD Holdco, Ltd}, |
517
|
|
|
|
|
|
|
'au' => q{.au Domain Administration (auDA)}, |
518
|
|
|
|
|
|
|
'auction' => q{United TLD HoldCo, Ltd.}, |
519
|
|
|
|
|
|
|
'audi' => q{AUDI Aktiengesellschaft}, |
520
|
|
|
|
|
|
|
'audio' => q{Uniregistry, Corp.}, |
521
|
|
|
|
|
|
|
'author' => q{Amazon Registry Services, Inc.}, |
522
|
|
|
|
|
|
|
'auto' => q{Cars Registry Limited}, |
523
|
|
|
|
|
|
|
'autos' => q{DERAutos, LLC}, |
524
|
|
|
|
|
|
|
'aw' => q{SETAR}, |
525
|
|
|
|
|
|
|
'ax' => q{Ålands landskapsregering}, |
526
|
|
|
|
|
|
|
'axa' => q{AXA SA}, |
527
|
|
|
|
|
|
|
'az' => q{IntraNS}, |
528
|
|
|
|
|
|
|
'azure' => q{Microsoft Corporation}, |
529
|
|
|
|
|
|
|
'ba' => q{Universtiy Telinformatic Centre (UTIC)}, |
530
|
|
|
|
|
|
|
'baidu' => q{Baidu, Inc.}, |
531
|
|
|
|
|
|
|
'band' => q{United TLD Holdco, Ltd}, |
532
|
|
|
|
|
|
|
'bank' => q{fTLD Registry Services, LLC}, |
533
|
|
|
|
|
|
|
'bar' => q{Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable}, |
534
|
|
|
|
|
|
|
'barcelona' => q{Municipi de Barcelona}, |
535
|
|
|
|
|
|
|
'barclaycard' => q{Barclays Bank PLC}, |
536
|
|
|
|
|
|
|
'barclays' => q{Barclays Bank PLC}, |
537
|
|
|
|
|
|
|
'bargains' => q{Half Hallow, LLC}, |
538
|
|
|
|
|
|
|
'bauhaus' => q{Werkhaus GmbH}, |
539
|
|
|
|
|
|
|
'bayern' => q{Bayern Connect GmbH}, |
540
|
|
|
|
|
|
|
'bb' => q{Government of Barbados - Ministry of Economic Affairs and Development |
541
|
|
|
|
|
|
|
Telecommunications Unit}, |
542
|
|
|
|
|
|
|
'bbc' => q{British Broadcasting Corporation}, |
543
|
|
|
|
|
|
|
'bbva' => q{BANCO BILBAO VIZCAYA ARGENTARIA, S.A.}, |
544
|
|
|
|
|
|
|
'bcn' => q{Municipi de Barcelona}, |
545
|
|
|
|
|
|
|
'bd' => q{Ministry of Post & Telecommunications - Bangladesh Secretariat}, |
546
|
|
|
|
|
|
|
'be' => q{DNS Belgium vzw/asbl}, |
547
|
|
|
|
|
|
|
'beats' => q{Beats Electronics, LLC}, |
548
|
|
|
|
|
|
|
'beer' => q{Top Level Domain Holdings Limited}, |
549
|
|
|
|
|
|
|
'bentley' => q{Bentley Motors Limited}, |
550
|
|
|
|
|
|
|
'berlin' => q{dotBERLIN GmbH & Co. KG}, |
551
|
|
|
|
|
|
|
'best' => q{BestTLD Pty Ltd}, |
552
|
|
|
|
|
|
|
'bet' => q{Afilias plc}, |
553
|
|
|
|
|
|
|
'bf' => q{ARCE-AutoritÈ de RÈgulation des Communications Electroniques}, |
554
|
|
|
|
|
|
|
'bg' => q{Register.BG}, |
555
|
|
|
|
|
|
|
'bh' => q{Telecommunications Regulatory Authority (TRA)}, |
556
|
|
|
|
|
|
|
'bharti' => q{Bharti Enterprises (Holding) Private Limited}, |
557
|
|
|
|
|
|
|
'bi' => q{Centre National de l'Informatique}, |
558
|
|
|
|
|
|
|
'bible' => q{American Bible Society}, |
559
|
|
|
|
|
|
|
'bid' => q{dot Bid Limited}, |
560
|
|
|
|
|
|
|
'bike' => q{Grand Hollow, LLC}, |
561
|
|
|
|
|
|
|
'bing' => q{Microsoft Corporation}, |
562
|
|
|
|
|
|
|
'bingo' => q{Sand Cedar, LLC}, |
563
|
|
|
|
|
|
|
'bio' => q{STARTING DOT LIMITED}, |
564
|
|
|
|
|
|
|
'biz' => q{Neustar, Inc.}, |
565
|
|
|
|
|
|
|
'bj' => q{Benin Telecoms S.A.}, |
566
|
|
|
|
|
|
|
'bl' => q{Not assigned}, |
567
|
|
|
|
|
|
|
'black' => q{Afilias Limited}, |
568
|
|
|
|
|
|
|
'blackfriday' => q{Uniregistry, Corp.}, |
569
|
|
|
|
|
|
|
'bloomberg' => q{Bloomberg IP Holdings LLC}, |
570
|
|
|
|
|
|
|
'blue' => q{Afilias Limited}, |
571
|
|
|
|
|
|
|
'bm' => q{Registry General - Ministry of Labour and Immigration}, |
572
|
|
|
|
|
|
|
'bms' => q{Bristol-Myers Squibb Company}, |
573
|
|
|
|
|
|
|
'bmw' => q{Bayerische Motoren Werke Aktiengesellschaft}, |
574
|
|
|
|
|
|
|
'bn' => q{Brunei Darussalam Network Information Centre Sdn Bhd (BNNIC)}, |
575
|
|
|
|
|
|
|
'bnl' => q{Banca Nazionale del Lavoro}, |
576
|
|
|
|
|
|
|
'bnpparibas' => q{BNP Paribas}, |
577
|
|
|
|
|
|
|
'bo' => q{Agencia para el Desarrollo de la Información de la Sociedad en Bolivia}, |
578
|
|
|
|
|
|
|
'boats' => q{DERBoats, LLC}, |
579
|
|
|
|
|
|
|
'boehringer' => q{Boehringer Ingelheim International GmbH}, |
580
|
|
|
|
|
|
|
'bom' => q{Núcleo de Informação e Coordenação do Ponto BR - NIC.br}, |
581
|
|
|
|
|
|
|
'bond' => q{Bond University Limited}, |
582
|
|
|
|
|
|
|
'boo' => q{Charleston Road Registry Inc.}, |
583
|
|
|
|
|
|
|
'book' => q{Amazon Registry Services, Inc.}, |
584
|
|
|
|
|
|
|
'boots' => q{THE BOOTS COMPANY PLC}, |
585
|
|
|
|
|
|
|
'bosch' => q{Robert Bosch GMBH}, |
586
|
|
|
|
|
|
|
'bostik' => q{Bostik SA}, |
587
|
|
|
|
|
|
|
'bot' => q{Amazon Registry Services, Inc.}, |
588
|
|
|
|
|
|
|
'boutique' => q{Over Galley, LLC}, |
589
|
|
|
|
|
|
|
'bq' => q{Not assigned}, |
590
|
|
|
|
|
|
|
'br' => q{Comite Gestor da Internet no Brasil}, |
591
|
|
|
|
|
|
|
'bradesco' => q{Banco Bradesco S.A.}, |
592
|
|
|
|
|
|
|
'bridgestone' => q{Bridgestone Corporation}, |
593
|
|
|
|
|
|
|
'broadway' => q{Celebrate Broadway, Inc.}, |
594
|
|
|
|
|
|
|
'broker' => q{DOTBROKER REGISTRY LTD}, |
595
|
|
|
|
|
|
|
'brother' => q{Brother Industries, Ltd.}, |
596
|
|
|
|
|
|
|
'brussels' => q{DNS.be vzw}, |
597
|
|
|
|
|
|
|
'bs' => q{The College of the Bahamas}, |
598
|
|
|
|
|
|
|
'bt' => q{Ministry of Information and Communications}, |
599
|
|
|
|
|
|
|
'budapest' => q{Top Level Domain Holdings Limited}, |
600
|
|
|
|
|
|
|
'bugatti' => q{Bugatti International SA}, |
601
|
|
|
|
|
|
|
'build' => q{Plan Bee LLC}, |
602
|
|
|
|
|
|
|
'builders' => q{Atomic Madison, LLC}, |
603
|
|
|
|
|
|
|
'business' => q{Spring Cross, LLC}, |
604
|
|
|
|
|
|
|
'buy' => q{Amazon Registry Services, INC}, |
605
|
|
|
|
|
|
|
'buzz' => q{DOTSTRATEGY CO.}, |
606
|
|
|
|
|
|
|
'bv' => q{UNINETT Norid A/S}, |
607
|
|
|
|
|
|
|
'bw' => q{Botswana Communications Regulatory Authority (BOCRA)}, |
608
|
|
|
|
|
|
|
'by' => q{Reliable Software, Ltd.}, |
609
|
|
|
|
|
|
|
'bz' => q{University of Belize}, |
610
|
|
|
|
|
|
|
'bzh' => q{Association www.bzh}, |
611
|
|
|
|
|
|
|
'ca' => q{Canadian Internet Registration Authority (CIRA) Autorité Canadienne pour les enregistrements Internet (ACEI)}, |
612
|
|
|
|
|
|
|
'cab' => q{Half Sunset, LLC}, |
613
|
|
|
|
|
|
|
'cafe' => q{Pioneer Canyon, LLC}, |
614
|
|
|
|
|
|
|
'cal' => q{Charleston Road Registry Inc.}, |
615
|
|
|
|
|
|
|
'call' => q{Amazon Registry Services, Inc.}, |
616
|
|
|
|
|
|
|
'camera' => q{Atomic Maple, LLC}, |
617
|
|
|
|
|
|
|
'camp' => q{Delta Dynamite, LLC}, |
618
|
|
|
|
|
|
|
'cancerresearch' => q{Australian Cancer Research Foundation}, |
619
|
|
|
|
|
|
|
'canon' => q{Canon Inc.}, |
620
|
|
|
|
|
|
|
'capetown' => q{ZA Central Registry NPC trading as ZA Central Registry}, |
621
|
|
|
|
|
|
|
'capital' => q{Delta Mill, LLC}, |
622
|
|
|
|
|
|
|
'car' => q{Cars Registry Limited}, |
623
|
|
|
|
|
|
|
'caravan' => q{Caravan International, Inc.}, |
624
|
|
|
|
|
|
|
'cards' => q{Foggy Hollow, LLC}, |
625
|
|
|
|
|
|
|
'care' => q{Goose Cross, LLC}, |
626
|
|
|
|
|
|
|
'career' => q{dotCareer LLC}, |
627
|
|
|
|
|
|
|
'careers' => q{Wild Corner, LLC}, |
628
|
|
|
|
|
|
|
'cars' => q{Cars Registry Limited}, |
629
|
|
|
|
|
|
|
'cartier' => q{Richemont DNS Inc.}, |
630
|
|
|
|
|
|
|
'casa' => q{Top Level Domain Holdings Limited}, |
631
|
|
|
|
|
|
|
'cash' => q{Delta Lake, LLC}, |
632
|
|
|
|
|
|
|
'casino' => q{Binky Sky, LLC}, |
633
|
|
|
|
|
|
|
'cat' => q{Fundacio puntCAT}, |
634
|
|
|
|
|
|
|
'catering' => q{New Falls. LLC}, |
635
|
|
|
|
|
|
|
'cba' => q{COMMONWEALTH BANK OF AUSTRALIA}, |
636
|
|
|
|
|
|
|
'cbn' => q{The Christian Broadcasting Network, Inc.}, |
637
|
|
|
|
|
|
|
'cc' => q{eNIC Cocos (Keeling) Islands Pty. - Ltd. d/b/a Island Internet Services}, |
638
|
|
|
|
|
|
|
'cd' => q{Office Congolais des Postes et Télécommunications - OCPT}, |
639
|
|
|
|
|
|
|
'ceb' => q{The Corporate Executive Board Company}, |
640
|
|
|
|
|
|
|
'center' => q{Tin Mill, LLC}, |
641
|
|
|
|
|
|
|
'ceo' => q{CEOTLD Pty Ltd}, |
642
|
|
|
|
|
|
|
'cern' => q{European Organization for Nuclear Research ("CERN")}, |
643
|
|
|
|
|
|
|
'cf' => q{Societe Centrafricaine de Telecommunications (SOCATEL)}, |
644
|
|
|
|
|
|
|
'cfa' => q{CFA Institute}, |
645
|
|
|
|
|
|
|
'cfd' => q{DOTCFD REGISTRY LTD}, |
646
|
|
|
|
|
|
|
'cg' => q{ONPT Congo and Interpoint Switzerland}, |
647
|
|
|
|
|
|
|
'ch' => q{SWITCH The Swiss Education & Research Network}, |
648
|
|
|
|
|
|
|
'chanel' => q{Chanel International B.V.}, |
649
|
|
|
|
|
|
|
'channel' => q{Charleston Road Registry Inc.}, |
650
|
|
|
|
|
|
|
'chat' => q{Sand Fields, LLC}, |
651
|
|
|
|
|
|
|
'cheap' => q{Sand Cover, LLC}, |
652
|
|
|
|
|
|
|
'chloe' => q{Richemont DNS Inc.}, |
653
|
|
|
|
|
|
|
'christmas' => q{Uniregistry, Corp.}, |
654
|
|
|
|
|
|
|
'chrome' => q{Charleston Road Registry Inc.}, |
655
|
|
|
|
|
|
|
'church' => q{Holly Fileds, LLC}, |
656
|
|
|
|
|
|
|
'ci' => q{INP-HB Institut National Polytechnique Felix Houphouet Boigny}, |
657
|
|
|
|
|
|
|
'cipriani' => q{Hotel Cipriani Srl}, |
658
|
|
|
|
|
|
|
'circle' => q{Amazon Registry Services, Inc.}, |
659
|
|
|
|
|
|
|
'cisco' => q{Cisco Technology, Inc.}, |
660
|
|
|
|
|
|
|
'citic' => q{CITIC Group Corporation}, |
661
|
|
|
|
|
|
|
'city' => q{Snow Sky, LLC}, |
662
|
|
|
|
|
|
|
'cityeats' => q{Lifestyle Domain Holdings, Inc.}, |
663
|
|
|
|
|
|
|
'ck' => q{Telecom Cook Islands Ltd.}, |
664
|
|
|
|
|
|
|
'cl' => q{NIC Chile (University of Chile)}, |
665
|
|
|
|
|
|
|
'claims' => q{Black Corner, LLC}, |
666
|
|
|
|
|
|
|
'cleaning' => q{Fox Shadow, LLC}, |
667
|
|
|
|
|
|
|
'click' => q{Uniregistry, Corp.}, |
668
|
|
|
|
|
|
|
'clinic' => q{Goose Park, LLC}, |
669
|
|
|
|
|
|
|
'clinique' => q{The Estée Lauder Companies Inc.}, |
670
|
|
|
|
|
|
|
'clothing' => q{Steel Lake, LLC}, |
671
|
|
|
|
|
|
|
'cloud' => q{ARUBA PEC S.p.A.}, |
672
|
|
|
|
|
|
|
'club' => q{.CLUB DOMAINS, LLC}, |
673
|
|
|
|
|
|
|
'clubmed' => q{Club Méditerranée S.A.}, |
674
|
|
|
|
|
|
|
'cm' => q{Cameroon Telecommunications (CAMTEL)}, |
675
|
|
|
|
|
|
|
'cn' => q{China Internet Network Information Center (CNNIC)}, |
676
|
|
|
|
|
|
|
'co' => q{.CO Internet S.A.S.}, |
677
|
|
|
|
|
|
|
'coach' => q{Koko Island, LLC}, |
678
|
|
|
|
|
|
|
'codes' => q{Puff Willow, LLC}, |
679
|
|
|
|
|
|
|
'coffee' => q{Trixy Cover, LLC}, |
680
|
|
|
|
|
|
|
'college' => q{XYZ.COM LLC}, |
681
|
|
|
|
|
|
|
'cologne' => q{NetCologne Gesellschaft für Telekommunikation mbH}, |
682
|
|
|
|
|
|
|
'com' => q{VeriSign Global Registry Services}, |
683
|
|
|
|
|
|
|
'commbank' => q{COMMONWEALTH BANK OF AUSTRALIA}, |
684
|
|
|
|
|
|
|
'community' => q{Fox Orchard, LLC}, |
685
|
|
|
|
|
|
|
'company' => q{Silver Avenue, LLC}, |
686
|
|
|
|
|
|
|
'compare' => q{iSelect Ltd}, |
687
|
|
|
|
|
|
|
'computer' => q{Pine Mill, LLC}, |
688
|
|
|
|
|
|
|
'comsec' => q{VeriSign, Inc.}, |
689
|
|
|
|
|
|
|
'condos' => q{Pine House, LLC}, |
690
|
|
|
|
|
|
|
'construction' => q{Fox Dynamite, LLC}, |
691
|
|
|
|
|
|
|
'consulting' => q{United TLD Holdco, LTD.}, |
692
|
|
|
|
|
|
|
'contact' => q{Top Level Spectrum, Inc.}, |
693
|
|
|
|
|
|
|
'contractors' => q{Magic Woods, LLC}, |
694
|
|
|
|
|
|
|
'cooking' => q{Top Level Domain Holdings Limited}, |
695
|
|
|
|
|
|
|
'cool' => q{Koko Lake, LLC}, |
696
|
|
|
|
|
|
|
'coop' => q{DotCooperation LLC}, |
697
|
|
|
|
|
|
|
'corsica' => q{Collectivité Territoriale de Corse}, |
698
|
|
|
|
|
|
|
'country' => q{Top Level Domain Holdings Limited}, |
699
|
|
|
|
|
|
|
'coupons' => q{Black Island, LLC}, |
700
|
|
|
|
|
|
|
'courses' => q{OPEN UNIVERSITIES AUSTRALIA PTY LTD}, |
701
|
|
|
|
|
|
|
'cr' => q{National Academy of Sciences - Academia Nacional de Ciencias}, |
702
|
|
|
|
|
|
|
'credit' => q{Snow Shadow, LLC}, |
703
|
|
|
|
|
|
|
'creditcard' => q{Binky Frostbite, LLC}, |
704
|
|
|
|
|
|
|
'creditunion' => q{CUNA Performance Resources, LLC}, |
705
|
|
|
|
|
|
|
'cricket' => q{dot Cricket Limited}, |
706
|
|
|
|
|
|
|
'crown' => q{Crown Equipment Corporation}, |
707
|
|
|
|
|
|
|
'crs' => q{Federated Co-operatives Limited}, |
708
|
|
|
|
|
|
|
'cruises' => q{Spring Way, LLC}, |
709
|
|
|
|
|
|
|
'csc' => q{Alliance-One Services, Inc.}, |
710
|
|
|
|
|
|
|
'cu' => q{CENIAInternet - Industria y San Jose |
711
|
|
|
|
|
|
|
Capitolio Nacional}, |
712
|
|
|
|
|
|
|
'cuisinella' => q{SALM S.A.S.}, |
713
|
|
|
|
|
|
|
'cv' => q{Agência Nacional das Comunicações (ANAC)}, |
714
|
|
|
|
|
|
|
'cw' => q{University of Curacao}, |
715
|
|
|
|
|
|
|
'cx' => q{Christmas Island Internet Administration Limited}, |
716
|
|
|
|
|
|
|
'cy' => q{University of Cyprus}, |
717
|
|
|
|
|
|
|
'cymru' => q{Nominet UK}, |
718
|
|
|
|
|
|
|
'cyou' => q{Beijing Gamease Age Digital Technology Co., Ltd.}, |
719
|
|
|
|
|
|
|
'cz' => q{CZ.NIC, z.s.p.o}, |
720
|
|
|
|
|
|
|
'dabur' => q{Dabur India Limited}, |
721
|
|
|
|
|
|
|
'dad' => q{Charleston Road Registry Inc.}, |
722
|
|
|
|
|
|
|
'dance' => q{United TLD Holdco Ltd.}, |
723
|
|
|
|
|
|
|
'date' => q{dot Date Limited}, |
724
|
|
|
|
|
|
|
'dating' => q{Pine Fest, LLC}, |
725
|
|
|
|
|
|
|
'datsun' => q{NISSAN MOTOR CO., LTD.}, |
726
|
|
|
|
|
|
|
'day' => q{Charleston Road Registry Inc.}, |
727
|
|
|
|
|
|
|
'dclk' => q{Charleston Road Registry Inc.}, |
728
|
|
|
|
|
|
|
'de' => q{DENIC eG}, |
729
|
|
|
|
|
|
|
'dealer' => q{Dealer Dot Com, Inc.}, |
730
|
|
|
|
|
|
|
'deals' => q{Sand Sunset, LLC}, |
731
|
|
|
|
|
|
|
'degree' => q{United TLD Holdco, Ltd}, |
732
|
|
|
|
|
|
|
'delivery' => q{Steel Station, LLC}, |
733
|
|
|
|
|
|
|
'dell' => q{Dell Inc.}, |
734
|
|
|
|
|
|
|
'deloitte' => q{Deloitte Touche Tohmatsu}, |
735
|
|
|
|
|
|
|
'delta' => q{Delta Air Lines, Inc.}, |
736
|
|
|
|
|
|
|
'democrat' => q{United TLD Holdco Ltd.}, |
737
|
|
|
|
|
|
|
'dental' => q{Tin Birch, LLC}, |
738
|
|
|
|
|
|
|
'dentist' => q{United TLD Holdco, Ltd}, |
739
|
|
|
|
|
|
|
'desi' => q{Desi Networks LLC}, |
740
|
|
|
|
|
|
|
'design' => q{Top Level Design, LLC}, |
741
|
|
|
|
|
|
|
'dev' => q{Charleston Road Registry Inc.}, |
742
|
|
|
|
|
|
|
'diamonds' => q{John Edge, LLC}, |
743
|
|
|
|
|
|
|
'diet' => q{Uniregistry, Corp.}, |
744
|
|
|
|
|
|
|
'digital' => q{Dash Park, LLC}, |
745
|
|
|
|
|
|
|
'direct' => q{Half Trail, LLC}, |
746
|
|
|
|
|
|
|
'directory' => q{Extra Madison, LLC}, |
747
|
|
|
|
|
|
|
'discount' => q{Holly Hill, LLC}, |
748
|
|
|
|
|
|
|
'dj' => q{Djibouti Telecom S.A}, |
749
|
|
|
|
|
|
|
'dk' => q{Dansk Internet Forum}, |
750
|
|
|
|
|
|
|
'dm' => q{DotDM Corporation}, |
751
|
|
|
|
|
|
|
'dnp' => q{Dai Nippon Printing Co., Ltd.}, |
752
|
|
|
|
|
|
|
'do' => q{Pontificia Universidad Catolica Madre y Maestra - Recinto Santo Tomas de Aquino}, |
753
|
|
|
|
|
|
|
'docs' => q{Charleston Road Registry Inc.}, |
754
|
|
|
|
|
|
|
'dog' => q{Koko Mill, LLC}, |
755
|
|
|
|
|
|
|
'doha' => q{Communications Regulatory Authority (CRA)}, |
756
|
|
|
|
|
|
|
'domains' => q{Sugar Cross, LLC}, |
757
|
|
|
|
|
|
|
'doosan' => q{Emergency Back-End Registry Operator Program - ICANN}, |
758
|
|
|
|
|
|
|
'download' => q{dot Support Limited}, |
759
|
|
|
|
|
|
|
'drive' => q{Charleston Road Registry Inc.}, |
760
|
|
|
|
|
|
|
'dubai' => q{Dubai Smart Government Department}, |
761
|
|
|
|
|
|
|
'durban' => q{ZA Central Registry NPC trading as ZA Central Registry}, |
762
|
|
|
|
|
|
|
'dvag' => q{Deutsche Vermögensberatung Aktiengesellschaft DVAG}, |
763
|
|
|
|
|
|
|
'dz' => q{CERIST}, |
764
|
|
|
|
|
|
|
'earth' => q{Interlink Co., Ltd.}, |
765
|
|
|
|
|
|
|
'eat' => q{Charleston Road Registry Inc.}, |
766
|
|
|
|
|
|
|
'ec' => q{NIC.EC (NICEC) S.A.}, |
767
|
|
|
|
|
|
|
'edeka' => q{EDEKA Verband kaufmännischer Genossenschaften e.V.}, |
768
|
|
|
|
|
|
|
'edu' => q{EDUCAUSE}, |
769
|
|
|
|
|
|
|
'education' => q{Brice Way, LLC}, |
770
|
|
|
|
|
|
|
'ee' => q{Eesti Interneti Sihtasutus (EIS)}, |
771
|
|
|
|
|
|
|
'eg' => q{Egyptian Universities Network (EUN) - Supreme Council of Universities}, |
772
|
|
|
|
|
|
|
'eh' => q{Not assigned}, |
773
|
|
|
|
|
|
|
'email' => q{Spring Madison, LLC}, |
774
|
|
|
|
|
|
|
'emerck' => q{Merck KGaA}, |
775
|
|
|
|
|
|
|
'energy' => q{Binky Birch, LLC}, |
776
|
|
|
|
|
|
|
'engineer' => q{United TLD Holdco Ltd.}, |
777
|
|
|
|
|
|
|
'engineering' => q{Romeo Canyon}, |
778
|
|
|
|
|
|
|
'enterprises' => q{Snow Oaks, LLC}, |
779
|
|
|
|
|
|
|
'epson' => q{Seiko Epson Corporation}, |
780
|
|
|
|
|
|
|
'equipment' => q{Corn Station, LLC}, |
781
|
|
|
|
|
|
|
'er' => q{Eritrea Telecommunication Services Corporation (EriTel)}, |
782
|
|
|
|
|
|
|
'erni' => q{ERNI Group Holding AG}, |
783
|
|
|
|
|
|
|
'es' => q{Red.es}, |
784
|
|
|
|
|
|
|
'esq' => q{Charleston Road Registry Inc.}, |
785
|
|
|
|
|
|
|
'estate' => q{Trixy Park, LLC}, |
786
|
|
|
|
|
|
|
'et' => q{Ethio telecom}, |
787
|
|
|
|
|
|
|
'eu' => q{EURid vzw/asbl}, |
788
|
|
|
|
|
|
|
'eurovision' => q{European Broadcasting Union (EBU)}, |
789
|
|
|
|
|
|
|
'eus' => q{Puntueus Fundazioa}, |
790
|
|
|
|
|
|
|
'events' => q{Pioneer Maple, LLC}, |
791
|
|
|
|
|
|
|
'everbank' => q{EverBank}, |
792
|
|
|
|
|
|
|
'exchange' => q{Spring Falls, LLC}, |
793
|
|
|
|
|
|
|
'expert' => q{Magic Pass, LLC}, |
794
|
|
|
|
|
|
|
'exposed' => q{Victor Beach, LLC}, |
795
|
|
|
|
|
|
|
'express' => q{Sea Sunset, LLC}, |
796
|
|
|
|
|
|
|
'fage' => q{Fage International S.A.}, |
797
|
|
|
|
|
|
|
'fail' => q{Atomic Pipe, LLC}, |
798
|
|
|
|
|
|
|
'fairwinds' => q{FairWinds Partners, LLC}, |
799
|
|
|
|
|
|
|
'faith' => q{dot Faith Limited}, |
800
|
|
|
|
|
|
|
'family' => q{United TLD Holdco Ltd.}, |
801
|
|
|
|
|
|
|
'fan' => q{Asiamix Digital Ltd}, |
802
|
|
|
|
|
|
|
'fans' => q{Asiamix Digital Limited}, |
803
|
|
|
|
|
|
|
'farm' => q{Just Maple, LLC}, |
804
|
|
|
|
|
|
|
'fashion' => q{Top Level Domain Holdings Limited}, |
805
|
|
|
|
|
|
|
'fast' => q{Amazon Registry Services, Inc.}, |
806
|
|
|
|
|
|
|
'feedback' => q{Top Level Spectrum, Inc.}, |
807
|
|
|
|
|
|
|
'ferrero' => q{Ferrero Trading Lux S.A.}, |
808
|
|
|
|
|
|
|
'fi' => q{Finnish Communications Regulatory Authority}, |
809
|
|
|
|
|
|
|
'film' => q{Motion Picture Domain Registry Pty Ltd}, |
810
|
|
|
|
|
|
|
'final' => q{Núcleo de Informação e Coordenação do Ponto BR - NIC.br}, |
811
|
|
|
|
|
|
|
'finance' => q{Cotton Cypress, LLC}, |
812
|
|
|
|
|
|
|
'financial' => q{Just Cover, LLC}, |
813
|
|
|
|
|
|
|
'firestone' => q{Bridgestone Corporation}, |
814
|
|
|
|
|
|
|
'firmdale' => q{Firmdale Holdings Limited}, |
815
|
|
|
|
|
|
|
'fish' => q{Fox Woods, LLC}, |
816
|
|
|
|
|
|
|
'fishing' => q{Top Level Domain Holdings Limited}, |
817
|
|
|
|
|
|
|
'fit' => q{Minds + Machines Group Limited}, |
818
|
|
|
|
|
|
|
'fitness' => q{Brice Orchard, LLC}, |
819
|
|
|
|
|
|
|
'fj' => q{The University of the South Pacific - IT Services}, |
820
|
|
|
|
|
|
|
'fk' => q{Falkland Islands Government}, |
821
|
|
|
|
|
|
|
'flickr' => q{Yahoo! Domain Services Inc.}, |
822
|
|
|
|
|
|
|
'flights' => q{Fox Station, LLC}, |
823
|
|
|
|
|
|
|
'florist' => q{Half Cypress, LLC}, |
824
|
|
|
|
|
|
|
'flowers' => q{Uniregistry, Corp.}, |
825
|
|
|
|
|
|
|
'flsmidth' => q{FLSmidth A/S}, |
826
|
|
|
|
|
|
|
'fly' => q{Charleston Road Registry Inc.}, |
827
|
|
|
|
|
|
|
'fm' => q{FSM Telecommunications Corporation}, |
828
|
|
|
|
|
|
|
'fo' => q{FO Council}, |
829
|
|
|
|
|
|
|
'foo' => q{Charleston Road Registry Inc.}, |
830
|
|
|
|
|
|
|
'football' => q{Foggy Farms, LLC}, |
831
|
|
|
|
|
|
|
'ford' => q{Ford Motor Company}, |
832
|
|
|
|
|
|
|
'forex' => q{DOTFOREX REGISTRY LTD}, |
833
|
|
|
|
|
|
|
'forsale' => q{United TLD Holdco, LLC}, |
834
|
|
|
|
|
|
|
'forum' => q{Fegistry, LLC}, |
835
|
|
|
|
|
|
|
'foundation' => q{John Dale, LLC}, |
836
|
|
|
|
|
|
|
'fox' => q{FOX Registry, LLC}, |
837
|
|
|
|
|
|
|
'fr' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)}, |
838
|
|
|
|
|
|
|
'fresenius' => q{Fresenius Immobilien-Verwaltungs-GmbH}, |
839
|
|
|
|
|
|
|
'frl' => q{FRLregistry B.V.}, |
840
|
|
|
|
|
|
|
'frogans' => q{OP3FT}, |
841
|
|
|
|
|
|
|
'frontier' => q{Frontier Communications Corporation}, |
842
|
|
|
|
|
|
|
'fund' => q{John Castle, LLC}, |
843
|
|
|
|
|
|
|
'furniture' => q{Lone Fields, LLC}, |
844
|
|
|
|
|
|
|
'futbol' => q{United TLD Holdco, Ltd.}, |
845
|
|
|
|
|
|
|
'fyi' => q{Silver Tigers, LLC}, |
846
|
|
|
|
|
|
|
'ga' => q{Agence Nationale des Infrastructures Numériques et des Fréquences (ANINF)}, |
847
|
|
|
|
|
|
|
'gal' => q{Asociación puntoGAL}, |
848
|
|
|
|
|
|
|
'gallery' => q{Sugar House, LLC}, |
849
|
|
|
|
|
|
|
'gallup' => q{Gallup, Inc.}, |
850
|
|
|
|
|
|
|
'game' => q{Uniregistry, Corp.}, |
851
|
|
|
|
|
|
|
'garden' => q{Top Level Domain Holdings Limited}, |
852
|
|
|
|
|
|
|
'gb' => q{Reserved Domain - IANA}, |
853
|
|
|
|
|
|
|
'gbiz' => q{Charleston Road Registry Inc.}, |
854
|
|
|
|
|
|
|
'gd' => q{The National Telecommunications Regulatory Commission (NTRC)}, |
855
|
|
|
|
|
|
|
'gdn' => q{Joint Stock Company "Navigation-information systems"}, |
856
|
|
|
|
|
|
|
'ge' => q{Caucasus Online}, |
857
|
|
|
|
|
|
|
'gea' => q{GEA Group Aktiengesellschaft}, |
858
|
|
|
|
|
|
|
'gent' => q{Combell nv}, |
859
|
|
|
|
|
|
|
'genting' => q{Resorts World Inc. Pte. Ltd.}, |
860
|
|
|
|
|
|
|
'gf' => q{Net Plus}, |
861
|
|
|
|
|
|
|
'gg' => q{Island Networks Ltd.}, |
862
|
|
|
|
|
|
|
'ggee' => q{GMO Internet, Inc.}, |
863
|
|
|
|
|
|
|
'gh' => q{Network Computer Systems Limited}, |
864
|
|
|
|
|
|
|
'gi' => q{Sapphire Networks}, |
865
|
|
|
|
|
|
|
'gift' => q{Uniregistry, Corp.}, |
866
|
|
|
|
|
|
|
'gifts' => q{Goose Sky, LLC}, |
867
|
|
|
|
|
|
|
'gives' => q{United TLD Holdco Ltd.}, |
868
|
|
|
|
|
|
|
'giving' => q{Giving Limited}, |
869
|
|
|
|
|
|
|
'gl' => q{TELE Greenland A/S}, |
870
|
|
|
|
|
|
|
'glass' => q{Black Cover, LLC}, |
871
|
|
|
|
|
|
|
'gle' => q{Charleston Road Registry Inc.}, |
872
|
|
|
|
|
|
|
'global' => q{Dot Global Domain Registry Limited}, |
873
|
|
|
|
|
|
|
'globo' => q{Globo Comunicação e Participações S.A}, |
874
|
|
|
|
|
|
|
'gm' => q{GM-NIC}, |
875
|
|
|
|
|
|
|
'gmail' => q{Charleston Road Registry Inc.}, |
876
|
|
|
|
|
|
|
'gmo' => q{GMO Internet, Inc.}, |
877
|
|
|
|
|
|
|
'gmx' => q{1&1 Mail & Media GmbH}, |
878
|
|
|
|
|
|
|
'gn' => q{Centre National des Sciences Halieutiques de Boussoura}, |
879
|
|
|
|
|
|
|
'gold' => q{June Edge, LLC}, |
880
|
|
|
|
|
|
|
'goldpoint' => q{YODOBASHI CAMERA CO.,LTD.}, |
881
|
|
|
|
|
|
|
'golf' => q{Lone Falls, LLC}, |
882
|
|
|
|
|
|
|
'goo' => q{NTT Resonant Inc.}, |
883
|
|
|
|
|
|
|
'goog' => q{Charleston Road Registry Inc.}, |
884
|
|
|
|
|
|
|
'google' => q{Charleston Road Registry Inc.}, |
885
|
|
|
|
|
|
|
'gop' => q{Republican State Leadership Committee, Inc.}, |
886
|
|
|
|
|
|
|
'got' => q{Amazon Registry Services, Inc.}, |
887
|
|
|
|
|
|
|
'gov' => q{General Services Administration - Attn: QTDC, 2E08 (.gov Domain Registration)}, |
888
|
|
|
|
|
|
|
'gp' => q{Networking Technologies Group}, |
889
|
|
|
|
|
|
|
'gq' => q{GETESA}, |
890
|
|
|
|
|
|
|
'gr' => q{ICS-FORTH GR}, |
891
|
|
|
|
|
|
|
'grainger' => q{Grainger Registry Services, LLC}, |
892
|
|
|
|
|
|
|
'graphics' => q{Over Madison, LLC}, |
893
|
|
|
|
|
|
|
'gratis' => q{Pioneer Tigers, LLC}, |
894
|
|
|
|
|
|
|
'green' => q{Afilias Limited}, |
895
|
|
|
|
|
|
|
'gripe' => q{Corn Sunset, LLC}, |
896
|
|
|
|
|
|
|
'group' => q{Romeo Town, LLC}, |
897
|
|
|
|
|
|
|
'gs' => q{Government of South Georgia and South Sandwich Islands (GSGSSI)}, |
898
|
|
|
|
|
|
|
'gt' => q{Universidad del Valle de Guatemala}, |
899
|
|
|
|
|
|
|
'gu' => q{University of Guam - Computer Center}, |
900
|
|
|
|
|
|
|
'gucci' => q{Guccio Gucci S.p.a.}, |
901
|
|
|
|
|
|
|
'guge' => q{Charleston Road Registry Inc.}, |
902
|
|
|
|
|
|
|
'guide' => q{Snow Moon, LLC}, |
903
|
|
|
|
|
|
|
'guitars' => q{Uniregistry, Corp.}, |
904
|
|
|
|
|
|
|
'guru' => q{Pioneer Cypress, LLC}, |
905
|
|
|
|
|
|
|
'gw' => q{Autoridade Reguladora Nacional - Tecnologias de Informação e Comunicação da Guiné-Bissau}, |
906
|
|
|
|
|
|
|
'gy' => q{University of Guyana}, |
907
|
|
|
|
|
|
|
'hamburg' => q{Hamburg Top-Level-Domain GmbH}, |
908
|
|
|
|
|
|
|
'hangout' => q{Charleston Road Registry Inc.}, |
909
|
|
|
|
|
|
|
'haus' => q{United TLD Holdco, LTD.}, |
910
|
|
|
|
|
|
|
'hdfcbank' => q{HDFC Bank Limited}, |
911
|
|
|
|
|
|
|
'health' => q{DotHealth, LLC}, |
912
|
|
|
|
|
|
|
'healthcare' => q{Silver Glen, LLC}, |
913
|
|
|
|
|
|
|
'help' => q{Uniregistry, Corp.}, |
914
|
|
|
|
|
|
|
'helsinki' => q{City of Helsinki}, |
915
|
|
|
|
|
|
|
'here' => q{Charleston Road Registry Inc.}, |
916
|
|
|
|
|
|
|
'hermes' => q{Hermes International}, |
917
|
|
|
|
|
|
|
'hiphop' => q{Uniregistry, Corp.}, |
918
|
|
|
|
|
|
|
'hitachi' => q{Hitachi, Ltd.}, |
919
|
|
|
|
|
|
|
'hiv' => q{dotHIV gemeinnuetziger e.V.}, |
920
|
|
|
|
|
|
|
'hk' => q{Hong Kong Internet Registration Corporation Ltd.}, |
921
|
|
|
|
|
|
|
'hm' => q{HM Domain Registry}, |
922
|
|
|
|
|
|
|
'hn' => q{Red de Desarrollo Sostenible Honduras}, |
923
|
|
|
|
|
|
|
'hockey' => q{Half Willow, LLC}, |
924
|
|
|
|
|
|
|
'holdings' => q{John Madison, LLC}, |
925
|
|
|
|
|
|
|
'holiday' => q{Goose Woods, LLC}, |
926
|
|
|
|
|
|
|
'homedepot' => q{Homer TLC, Inc.}, |
927
|
|
|
|
|
|
|
'homes' => q{DERHomes, LLC}, |
928
|
|
|
|
|
|
|
'honda' => q{Honda Motor Co., Ltd.}, |
929
|
|
|
|
|
|
|
'horse' => q{Top Level Domain Holdings Limited}, |
930
|
|
|
|
|
|
|
'host' => q{DotHost Inc.}, |
931
|
|
|
|
|
|
|
'hosting' => q{Uniregistry, Corp.}, |
932
|
|
|
|
|
|
|
'hoteles' => q{Travel Reservations SRL}, |
933
|
|
|
|
|
|
|
'hotmail' => q{Microsoft Corporation}, |
934
|
|
|
|
|
|
|
'house' => q{Sugar Park, LLC}, |
935
|
|
|
|
|
|
|
'how' => q{Charleston Road Registry Inc.}, |
936
|
|
|
|
|
|
|
'hr' => q{CARNet - Croatian Academic and Research Network}, |
937
|
|
|
|
|
|
|
'hsbc' => q{HSBC Holdings PLC}, |
938
|
|
|
|
|
|
|
'ht' => q{Consortium FDS/RDDH}, |
939
|
|
|
|
|
|
|
'hu' => q{Council of Hungarian Internet Providers (CHIP)}, |
940
|
|
|
|
|
|
|
'hyundai' => q{Hyundai Motor Company}, |
941
|
|
|
|
|
|
|
'ibm' => q{International Business Machines Corporation}, |
942
|
|
|
|
|
|
|
'icbc' => q{Industrial and Commercial Bank of China Limited}, |
943
|
|
|
|
|
|
|
'ice' => q{IntercontinentalExchange, Inc.}, |
944
|
|
|
|
|
|
|
'icu' => q{One.com A/S}, |
945
|
|
|
|
|
|
|
'id' => q{Perkumpulan Pengelola Nama Domain Internet Indonesia (PANDI)}, |
946
|
|
|
|
|
|
|
'ie' => q{University College Dublin - Computing Services |
947
|
|
|
|
|
|
|
Computer Centre}, |
948
|
|
|
|
|
|
|
'ifm' => q{ifm electronic gmbh}, |
949
|
|
|
|
|
|
|
'iinet' => q{Connect West Pty. Ltd.}, |
950
|
|
|
|
|
|
|
'il' => q{Internet Society of Israel}, |
951
|
|
|
|
|
|
|
'im' => q{Isle of Man Government}, |
952
|
|
|
|
|
|
|
'immo' => q{Auburn Bloom, LLC}, |
953
|
|
|
|
|
|
|
'immobilien' => q{United TLD Holdco Ltd.}, |
954
|
|
|
|
|
|
|
'in' => q{National Internet Exchange of India}, |
955
|
|
|
|
|
|
|
'industries' => q{Outer House, LLC}, |
956
|
|
|
|
|
|
|
'infiniti' => q{NISSAN MOTOR CO., LTD.}, |
957
|
|
|
|
|
|
|
'info' => q{Afilias Limited}, |
958
|
|
|
|
|
|
|
'ing' => q{Charleston Road Registry Inc.}, |
959
|
|
|
|
|
|
|
'ink' => q{Top Level Design, LLC}, |
960
|
|
|
|
|
|
|
'institute' => q{Outer Maple, LLC}, |
961
|
|
|
|
|
|
|
'insurance' => q{fTLD Registry Services LLC}, |
962
|
|
|
|
|
|
|
'insure' => q{Pioneer Willow, LLC}, |
963
|
|
|
|
|
|
|
'int' => q{Internet Assigned Numbers Authority}, |
964
|
|
|
|
|
|
|
'international' => q{Wild Way, LLC}, |
965
|
|
|
|
|
|
|
'investments' => q{Holly Glen, LLC}, |
966
|
|
|
|
|
|
|
'io' => q{IO Top Level Domain Registry - Cable and Wireless}, |
967
|
|
|
|
|
|
|
'ipiranga' => q{Ipiranga Produtos de Petroleo S.A.}, |
968
|
|
|
|
|
|
|
'iq' => q{Communications and Media Commission (CMC)}, |
969
|
|
|
|
|
|
|
'ir' => q{Institute for Research in Fundamental Sciences}, |
970
|
|
|
|
|
|
|
'irish' => q{Dot-Irish LLC}, |
971
|
|
|
|
|
|
|
'is' => q{ISNIC - Internet Iceland ltd.}, |
972
|
|
|
|
|
|
|
'iselect' => q{iSelect Ltd}, |
973
|
|
|
|
|
|
|
'ist' => q{Istanbul Metropolitan Municipality}, |
974
|
|
|
|
|
|
|
'istanbul' => q{Istanbul Metropolitan Municipality}, |
975
|
|
|
|
|
|
|
'it' => q{IIT - CNR}, |
976
|
|
|
|
|
|
|
'itau' => q{Itau Unibanco Holding S.A.}, |
977
|
|
|
|
|
|
|
'iwc' => q{Richemont DNS Inc.}, |
978
|
|
|
|
|
|
|
'jaguar' => q{Jaguar Land Rover Ltd}, |
979
|
|
|
|
|
|
|
'java' => q{Oracle Corporation}, |
980
|
|
|
|
|
|
|
'jcb' => q{JCB Co., Ltd.}, |
981
|
|
|
|
|
|
|
'je' => q{Island Networks (Jersey) Ltd.}, |
982
|
|
|
|
|
|
|
'jetzt' => q{New TLD Company AB}, |
983
|
|
|
|
|
|
|
'jewelry' => q{Wild Bloom, LLC}, |
984
|
|
|
|
|
|
|
'jlc' => q{Richemont DNS Inc.}, |
985
|
|
|
|
|
|
|
'jll' => q{Jones Lang LaSalle Incorporated}, |
986
|
|
|
|
|
|
|
'jm' => q{University of West Indies}, |
987
|
|
|
|
|
|
|
'jmp' => q{Matrix IP LLC}, |
988
|
|
|
|
|
|
|
'jo' => q{National Information Technology Center (NITC)}, |
989
|
|
|
|
|
|
|
'jobs' => q{Employ Media LLC}, |
990
|
|
|
|
|
|
|
'joburg' => q{ZA Central Registry NPC trading as ZA Central Registry}, |
991
|
|
|
|
|
|
|
'jot' => q{Amazon Registry Services, Inc.}, |
992
|
|
|
|
|
|
|
'joy' => q{Amazon Registry Services, Inc.}, |
993
|
|
|
|
|
|
|
'jp' => q{Japan Registry Services Co., Ltd.}, |
994
|
|
|
|
|
|
|
'jprs' => q{Japan Registry Services Co., Ltd.}, |
995
|
|
|
|
|
|
|
'juegos' => q{Uniregistry, Corp.}, |
996
|
|
|
|
|
|
|
'kaufen' => q{United TLD Holdco Ltd.}, |
997
|
|
|
|
|
|
|
'kddi' => q{KDDI CORPORATION}, |
998
|
|
|
|
|
|
|
'ke' => q{Kenya Network Information Center (KeNIC)}, |
999
|
|
|
|
|
|
|
'kfh' => q{Kuwait Finance House}, |
1000
|
|
|
|
|
|
|
'kg' => q{AsiaInfo Telecommunication Enterprise}, |
1001
|
|
|
|
|
|
|
'kh' => q{Telecommunication Regulator of Cambodia (TRC)}, |
1002
|
|
|
|
|
|
|
'ki' => q{Ministry of Communications, Transport, and Tourism Development}, |
1003
|
|
|
|
|
|
|
'kia' => q{KIA MOTORS CORPORATION}, |
1004
|
|
|
|
|
|
|
'kim' => q{Afilias Limited}, |
1005
|
|
|
|
|
|
|
'kinder' => q{Ferrero Trading Lux S.A.}, |
1006
|
|
|
|
|
|
|
'kitchen' => q{Just Goodbye, LLC}, |
1007
|
|
|
|
|
|
|
'kiwi' => q{DOT KIWI LIMITED}, |
1008
|
|
|
|
|
|
|
'km' => q{Comores Telecom}, |
1009
|
|
|
|
|
|
|
'kn' => q{Ministry of Finance, Sustainable Development Information & Technology}, |
1010
|
|
|
|
|
|
|
'koeln' => q{NetCologne Gesellschaft für Telekommunikation mbH}, |
1011
|
|
|
|
|
|
|
'komatsu' => q{Komatsu Ltd.}, |
1012
|
|
|
|
|
|
|
'kp' => q{Star Joint Venture Company}, |
1013
|
|
|
|
|
|
|
'kpn' => q{Koninklijke KPN N.V.}, |
1014
|
|
|
|
|
|
|
'kr' => q{Korea Internet & Security Agency (KISA)}, |
1015
|
|
|
|
|
|
|
'krd' => q{KRG Department of Information Technology}, |
1016
|
|
|
|
|
|
|
'kred' => q{KredTLD Pty Ltd}, |
1017
|
|
|
|
|
|
|
'kw' => q{Ministry of Communications}, |
1018
|
|
|
|
|
|
|
'ky' => q{The Information and Communications Technology Authority}, |
1019
|
|
|
|
|
|
|
'kyoto' => q{Academic Institution: Kyoto Jyoho Gakuen}, |
1020
|
|
|
|
|
|
|
'kz' => q{Association of IT Companies of Kazakhstan}, |
1021
|
|
|
|
|
|
|
'la' => q{Lao National Internet Committee (LANIC), Ministry of Posts and Telecommunications}, |
1022
|
|
|
|
|
|
|
'lacaixa' => q{CAIXA D'ESTALVIS I PENSIONS DE BARCELONA}, |
1023
|
|
|
|
|
|
|
'lamborghini' => q{Automobili Lamborghini S.p.A.}, |
1024
|
|
|
|
|
|
|
'lamer' => q{The Estée Lauder Companies Inc.}, |
1025
|
|
|
|
|
|
|
'lancaster' => q{LANCASTER}, |
1026
|
|
|
|
|
|
|
'land' => q{Pine Moon, LLC}, |
1027
|
|
|
|
|
|
|
'landrover' => q{Jaguar Land Rover Ltd}, |
1028
|
|
|
|
|
|
|
'lanxess' => q{LANXESS Corporation}, |
1029
|
|
|
|
|
|
|
'lasalle' => q{Jones Lang LaSalle Incorporated}, |
1030
|
|
|
|
|
|
|
'lat' => q{ECOM-LAC Federación de Latinoamérica y el Caribe para Internet y el Comercio Electrónico}, |
1031
|
|
|
|
|
|
|
'latrobe' => q{La Trobe University}, |
1032
|
|
|
|
|
|
|
'law' => q{Minds + Machines Group Limited}, |
1033
|
|
|
|
|
|
|
'lawyer' => q{United TLD Holdco, Ltd}, |
1034
|
|
|
|
|
|
|
'lb' => q{American University of Beirut - Computing and Networking Services}, |
1035
|
|
|
|
|
|
|
'lc' => q{University of Puerto Rico}, |
1036
|
|
|
|
|
|
|
'lds' => q{IRI Domain Management, LLC}, |
1037
|
|
|
|
|
|
|
'lease' => q{Victor Trail, LLC}, |
1038
|
|
|
|
|
|
|
'leclerc' => q{A.C.D. LEC Association des Centres Distributeurs Edouard Leclerc}, |
1039
|
|
|
|
|
|
|
'legal' => q{Blue Falls, LLC}, |
1040
|
|
|
|
|
|
|
'lexus' => q{TOYOTA MOTOR CORPORATION}, |
1041
|
|
|
|
|
|
|
'lgbt' => q{Afilias Limited}, |
1042
|
|
|
|
|
|
|
'li' => q{Universitaet Liechtenstein}, |
1043
|
|
|
|
|
|
|
'liaison' => q{Liaison Technologies, Incorporated}, |
1044
|
|
|
|
|
|
|
'lidl' => q{Schwarz Domains und Services GmbH & Co. KG}, |
1045
|
|
|
|
|
|
|
'life' => q{Trixy Oaks, LLC}, |
1046
|
|
|
|
|
|
|
'lifeinsurance' => q{American Council of Life Insurers}, |
1047
|
|
|
|
|
|
|
'lifestyle' => q{Lifestyle Domain Holdings, Inc.}, |
1048
|
|
|
|
|
|
|
'lighting' => q{John McCook, LLC}, |
1049
|
|
|
|
|
|
|
'like' => q{Amazon Registry Services, Inc.}, |
1050
|
|
|
|
|
|
|
'limited' => q{Big Fest, LLC}, |
1051
|
|
|
|
|
|
|
'limo' => q{Hidden Frostbite, LLC}, |
1052
|
|
|
|
|
|
|
'lincoln' => q{Ford Motor Company}, |
1053
|
|
|
|
|
|
|
'linde' => q{Linde Aktiengesellschaft}, |
1054
|
|
|
|
|
|
|
'link' => q{Uniregistry, Corp.}, |
1055
|
|
|
|
|
|
|
'live' => q{United TLD Holdco Ltd.}, |
1056
|
|
|
|
|
|
|
'living' => q{Lifestyle Domain Holdings, Inc.}, |
1057
|
|
|
|
|
|
|
'lixil' => q{LIXIL Group Corporation}, |
1058
|
|
|
|
|
|
|
'lk' => q{Council for Information Technology - LK Domain Registrar}, |
1059
|
|
|
|
|
|
|
'loan' => q{dot Loan Limited}, |
1060
|
|
|
|
|
|
|
'loans' => q{June Woods, LLC}, |
1061
|
|
|
|
|
|
|
'lol' => q{Uniregistry, Corp.}, |
1062
|
|
|
|
|
|
|
'london' => q{Dot London Domains Limited}, |
1063
|
|
|
|
|
|
|
'lotte' => q{Lotte Holdings Co., Ltd.}, |
1064
|
|
|
|
|
|
|
'lotto' => q{Afilias Limited}, |
1065
|
|
|
|
|
|
|
'love' => q{Merchant Law Group LLP}, |
1066
|
|
|
|
|
|
|
'lr' => q{Data Technology Solutions, Inc.}, |
1067
|
|
|
|
|
|
|
'ls' => q{National University of Lesotho}, |
1068
|
|
|
|
|
|
|
'lt' => q{Kaunas University of Technology}, |
1069
|
|
|
|
|
|
|
'ltd' => q{Over Corner, LLC}, |
1070
|
|
|
|
|
|
|
'ltda' => q{InterNetX Corp.}, |
1071
|
|
|
|
|
|
|
'lu' => q{RESTENA}, |
1072
|
|
|
|
|
|
|
'lupin' => q{LUPIN LIMITED}, |
1073
|
|
|
|
|
|
|
'luxe' => q{Top Level Domain Holdings Limited}, |
1074
|
|
|
|
|
|
|
'luxury' => q{Luxury Partners LLC}, |
1075
|
|
|
|
|
|
|
'lv' => q{University of Latvia - Institute of Mathematics and Computer Science |
1076
|
|
|
|
|
|
|
Department of Network Solutions (DNS)}, |
1077
|
|
|
|
|
|
|
'ly' => q{General Post and Telecommunication Company}, |
1078
|
|
|
|
|
|
|
'ma' => q{Agence Nationale de Réglementation des Télécommunications (ANRT)}, |
1079
|
|
|
|
|
|
|
'madrid' => q{Comunidad de Madrid}, |
1080
|
|
|
|
|
|
|
'maif' => q{Mutuelle Assurance Instituteur France (MAIF)}, |
1081
|
|
|
|
|
|
|
'maison' => q{Victor Frostbite, LLC}, |
1082
|
|
|
|
|
|
|
'makeup' => q{L'Oréal}, |
1083
|
|
|
|
|
|
|
'man' => q{MAN SE}, |
1084
|
|
|
|
|
|
|
'management' => q{John Goodbye, LLC}, |
1085
|
|
|
|
|
|
|
'mango' => q{PUNTO FA S.L.}, |
1086
|
|
|
|
|
|
|
'market' => q{United TLD Holdco, Ltd}, |
1087
|
|
|
|
|
|
|
'marketing' => q{Fern Pass, LLC}, |
1088
|
|
|
|
|
|
|
'markets' => q{DOTMARKETS REGISTRY LTD}, |
1089
|
|
|
|
|
|
|
'marriott' => q{Marriott Worldwide Corporation}, |
1090
|
|
|
|
|
|
|
'mba' => q{Lone Hollow, LLC}, |
1091
|
|
|
|
|
|
|
'mc' => q{Gouvernement de Monaco - Direction des Communications Electroniques}, |
1092
|
|
|
|
|
|
|
'md' => q{MoldData S.E.}, |
1093
|
|
|
|
|
|
|
'me' => q{Government of Montenegro}, |
1094
|
|
|
|
|
|
|
'med' => q{Medistry LLC}, |
1095
|
|
|
|
|
|
|
'media' => q{Grand Glen, LLC}, |
1096
|
|
|
|
|
|
|
'meet' => q{Afilias Limited}, |
1097
|
|
|
|
|
|
|
'melbourne' => q{The Crown in right of the State of Victoria, represented by its Department of State Development, Business and Innovation}, |
1098
|
|
|
|
|
|
|
'meme' => q{Charleston Road Registry Inc.}, |
1099
|
|
|
|
|
|
|
'memorial' => q{Dog Beach, LLC}, |
1100
|
|
|
|
|
|
|
'men' => q{Exclusive Registry Limited}, |
1101
|
|
|
|
|
|
|
'menu' => q{Wedding TLD2, LLC}, |
1102
|
|
|
|
|
|
|
'meo' => q{PT Comunicacoes S.A.}, |
1103
|
|
|
|
|
|
|
'mf' => q{Not assigned}, |
1104
|
|
|
|
|
|
|
'mg' => q{NIC-MG (Network Information Center Madagascar)}, |
1105
|
|
|
|
|
|
|
'mh' => q{Office of the Cabinet}, |
1106
|
|
|
|
|
|
|
'miami' => q{Top Level Domain Holdings Limited}, |
1107
|
|
|
|
|
|
|
'microsoft' => q{Microsoft Corporation}, |
1108
|
|
|
|
|
|
|
'mil' => q{DoD Network Information Center}, |
1109
|
|
|
|
|
|
|
'mini' => q{Bayerische Motoren Werke Aktiengesellschaft}, |
1110
|
|
|
|
|
|
|
'mk' => q{Macedonian Academic Research Network Skopje}, |
1111
|
|
|
|
|
|
|
'ml' => q{Agence des Technologies de l’Information et de la Communication}, |
1112
|
|
|
|
|
|
|
'mm' => q{Ministry of Communications, Posts & Telegraphs}, |
1113
|
|
|
|
|
|
|
'mma' => q{MMA IARD}, |
1114
|
|
|
|
|
|
|
'mn' => q{Datacom Co., Ltd.}, |
1115
|
|
|
|
|
|
|
'mo' => q{Bureau of Telecommunications Regulation (DSRT)}, |
1116
|
|
|
|
|
|
|
'mobi' => q{Afilias Technologies Limited dba dotMobi}, |
1117
|
|
|
|
|
|
|
'mobily' => q{GreenTech Consultancy Company W.L.L.}, |
1118
|
|
|
|
|
|
|
'moda' => q{United TLD Holdco Ltd.}, |
1119
|
|
|
|
|
|
|
'moe' => q{Interlink Co., Ltd.}, |
1120
|
|
|
|
|
|
|
'moi' => q{Amazon Registry Services, Inc.}, |
1121
|
|
|
|
|
|
|
'mom' => q{Uniregistry, Corp.}, |
1122
|
|
|
|
|
|
|
'monash' => q{Monash University}, |
1123
|
|
|
|
|
|
|
'money' => q{Outer McCook, LLC}, |
1124
|
|
|
|
|
|
|
'montblanc' => q{Richemont DNS Inc.}, |
1125
|
|
|
|
|
|
|
'mormon' => q{IRI Domain Management, LLC ("Applicant")}, |
1126
|
|
|
|
|
|
|
'mortgage' => q{United TLD Holdco, Ltd}, |
1127
|
|
|
|
|
|
|
'moscow' => q{Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)}, |
1128
|
|
|
|
|
|
|
'motorcycles' => q{DERMotorcycles, LLC}, |
1129
|
|
|
|
|
|
|
'mov' => q{Charleston Road Registry Inc.}, |
1130
|
|
|
|
|
|
|
'movie' => q{New Frostbite, LLC}, |
1131
|
|
|
|
|
|
|
'movistar' => q{Telefónica S.A.}, |
1132
|
|
|
|
|
|
|
'mp' => q{Saipan Datacom, Inc.}, |
1133
|
|
|
|
|
|
|
'mq' => q{MEDIASERV}, |
1134
|
|
|
|
|
|
|
'mr' => q{Université des Sciences, de Technologie et de Médecine}, |
1135
|
|
|
|
|
|
|
'ms' => q{MNI Networks Ltd.}, |
1136
|
|
|
|
|
|
|
'mt' => q{NIC (Malta)}, |
1137
|
|
|
|
|
|
|
'mtn' => q{MTN Dubai Limited}, |
1138
|
|
|
|
|
|
|
'mtpc' => q{Mitsubishi Tanabe Pharma Corporation}, |
1139
|
|
|
|
|
|
|
'mtr' => q{MTR Corporation Limited}, |
1140
|
|
|
|
|
|
|
'mu' => q{Internet Direct Ltd}, |
1141
|
|
|
|
|
|
|
'museum' => q{Museum Domain Management Association}, |
1142
|
|
|
|
|
|
|
'mutuelle' => q{Fédération Nationale de la Mutualité Française}, |
1143
|
|
|
|
|
|
|
'mv' => q{Dhiraagu Pvt. Ltd. (DHIVEHINET)}, |
1144
|
|
|
|
|
|
|
'mw' => q{Malawi Sustainable Development Network Programme - (Malawi SDNP)}, |
1145
|
|
|
|
|
|
|
'mx' => q{NIC-Mexico - ITESM - Campus Monterrey}, |
1146
|
|
|
|
|
|
|
'my' => q{MYNIC Berhad}, |
1147
|
|
|
|
|
|
|
'mz' => q{Centro de Informatica de Universidade Eduardo Mondlane}, |
1148
|
|
|
|
|
|
|
'na' => q{Namibian Network Information Center}, |
1149
|
|
|
|
|
|
|
'nadex' => q{Nadex Domains, Inc}, |
1150
|
|
|
|
|
|
|
'nagoya' => q{GMO Registry, Inc.}, |
1151
|
|
|
|
|
|
|
'name' => q{VeriSign Information Services, Inc.}, |
1152
|
|
|
|
|
|
|
'natura' => q{NATURA COSMÉTICOS S.A.}, |
1153
|
|
|
|
|
|
|
'navy' => q{United TLD Holdco Ltd.}, |
1154
|
|
|
|
|
|
|
'nc' => q{Office des Postes et Telecommunications}, |
1155
|
|
|
|
|
|
|
'ne' => q{SONITEL}, |
1156
|
|
|
|
|
|
|
'nec' => q{NEC Corporation}, |
1157
|
|
|
|
|
|
|
'net' => q{VeriSign Global Registry Services}, |
1158
|
|
|
|
|
|
|
'netbank' => q{COMMONWEALTH BANK OF AUSTRALIA}, |
1159
|
|
|
|
|
|
|
'network' => q{Trixy Manor, LLC}, |
1160
|
|
|
|
|
|
|
'neustar' => q{NeuStar, Inc.}, |
1161
|
|
|
|
|
|
|
'new' => q{Charleston Road Registry Inc.}, |
1162
|
|
|
|
|
|
|
'news' => q{United TLD Holdco Ltd.}, |
1163
|
|
|
|
|
|
|
'nexus' => q{Charleston Road Registry Inc.}, |
1164
|
|
|
|
|
|
|
'nf' => q{Norfolk Island Data Services}, |
1165
|
|
|
|
|
|
|
'ng' => q{Nigeria Internet Registration Association}, |
1166
|
|
|
|
|
|
|
'ngo' => q{Public Interest Registry}, |
1167
|
|
|
|
|
|
|
'nhk' => q{Japan Broadcasting Corporation (NHK)}, |
1168
|
|
|
|
|
|
|
'ni' => q{Universidad Nacional del Ingernieria - Centro de Computo}, |
1169
|
|
|
|
|
|
|
'nico' => q{DWANGO Co., Ltd.}, |
1170
|
|
|
|
|
|
|
'nikon' => q{NIKON CORPORATION}, |
1171
|
|
|
|
|
|
|
'ninja' => q{United TLD Holdco Ltd.}, |
1172
|
|
|
|
|
|
|
'nissan' => q{NISSAN MOTOR CO., LTD.}, |
1173
|
|
|
|
|
|
|
'nl' => q{SIDN (Stichting Internet Domeinregistratie Nederland)}, |
1174
|
|
|
|
|
|
|
'no' => q{UNINETT Norid A/S}, |
1175
|
|
|
|
|
|
|
'nokia' => q{Nokia Corporation}, |
1176
|
|
|
|
|
|
|
'norton' => q{Symantec Corporation}, |
1177
|
|
|
|
|
|
|
'nowruz' => q{Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.}, |
1178
|
|
|
|
|
|
|
'np' => q{Mercantile Communications Pvt. Ltd.}, |
1179
|
|
|
|
|
|
|
'nr' => q{CENPAC NET}, |
1180
|
|
|
|
|
|
|
'nra' => q{NRA Holdings Company, INC.}, |
1181
|
|
|
|
|
|
|
'nrw' => q{Minds + Machines GmbH}, |
1182
|
|
|
|
|
|
|
'ntt' => q{NIPPON TELEGRAPH AND TELEPHONE CORPORATION}, |
1183
|
|
|
|
|
|
|
'nu' => q{The IUSN Foundation}, |
1184
|
|
|
|
|
|
|
'nyc' => q{The City of New York by and through the New York City Department of Information Technology & Telecommunications}, |
1185
|
|
|
|
|
|
|
'nz' => q{InternetNZ}, |
1186
|
|
|
|
|
|
|
'obi' => q{OBI Group Holding SE & Co. KGaA}, |
1187
|
|
|
|
|
|
|
'office' => q{Microsoft Corporation}, |
1188
|
|
|
|
|
|
|
'okinawa' => q{BusinessRalliart inc.}, |
1189
|
|
|
|
|
|
|
'om' => q{Telecommunications Regulatory Authority (TRA)}, |
1190
|
|
|
|
|
|
|
'omega' => q{The Swatch Group Ltd}, |
1191
|
|
|
|
|
|
|
'one' => q{One.com A/S}, |
1192
|
|
|
|
|
|
|
'ong' => q{Public Interest Registry}, |
1193
|
|
|
|
|
|
|
'onl' => q{I-REGISTRY Ltd., Niederlassung Deutschland}, |
1194
|
|
|
|
|
|
|
'online' => q{DotOnline Inc.}, |
1195
|
|
|
|
|
|
|
'ooo' => q{INFIBEAM INCORPORATION LIMITED}, |
1196
|
|
|
|
|
|
|
'oracle' => q{Oracle Corporation}, |
1197
|
|
|
|
|
|
|
'orange' => q{Orange Brand Services Limited}, |
1198
|
|
|
|
|
|
|
'org' => q{Public Interest Registry (PIR)}, |
1199
|
|
|
|
|
|
|
'organic' => q{Afilias Limited}, |
1200
|
|
|
|
|
|
|
'origins' => q{The Estée Lauder Companies Inc.}, |
1201
|
|
|
|
|
|
|
'osaka' => q{Interlink Co., Ltd.}, |
1202
|
|
|
|
|
|
|
'otsuka' => q{Otsuka Holdings Co., Ltd.}, |
1203
|
|
|
|
|
|
|
'ovh' => q{OVH SAS}, |
1204
|
|
|
|
|
|
|
'pa' => q{Universidad Tecnologica de Panama}, |
1205
|
|
|
|
|
|
|
'page' => q{Charleston Road Registry Inc.}, |
1206
|
|
|
|
|
|
|
'pamperedchef' => q{The Pampered Chef, Ltd.}, |
1207
|
|
|
|
|
|
|
'panerai' => q{Richemont DNS Inc.}, |
1208
|
|
|
|
|
|
|
'paris' => q{City of Paris}, |
1209
|
|
|
|
|
|
|
'pars' => q{Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.}, |
1210
|
|
|
|
|
|
|
'partners' => q{Magic Glen, LLC}, |
1211
|
|
|
|
|
|
|
'parts' => q{Sea Goodbye, LLC}, |
1212
|
|
|
|
|
|
|
'party' => q{Blue Sky Registry Limited}, |
1213
|
|
|
|
|
|
|
'pe' => q{Red Cientifica Peruana}, |
1214
|
|
|
|
|
|
|
'pet' => q{Afilias plc}, |
1215
|
|
|
|
|
|
|
'pf' => q{Gouvernement de la Polynésie française}, |
1216
|
|
|
|
|
|
|
'pg' => q{PNG DNS Administration - Vice Chancellors Office |
1217
|
|
|
|
|
|
|
The Papua New Guinea University of Technology}, |
1218
|
|
|
|
|
|
|
'ph' => q{PH Domain Foundation}, |
1219
|
|
|
|
|
|
|
'pharmacy' => q{National Association of Boards of Pharmacy}, |
1220
|
|
|
|
|
|
|
'philips' => q{Koninklijke Philips N.V.}, |
1221
|
|
|
|
|
|
|
'photo' => q{Uniregistry, Corp.}, |
1222
|
|
|
|
|
|
|
'photography' => q{Sugar Glen, LLC}, |
1223
|
|
|
|
|
|
|
'photos' => q{Sea Corner, LLC}, |
1224
|
|
|
|
|
|
|
'physio' => q{PhysBiz Pty Ltd}, |
1225
|
|
|
|
|
|
|
'piaget' => q{Richemont DNS Inc.}, |
1226
|
|
|
|
|
|
|
'pics' => q{Uniregistry, Corp.}, |
1227
|
|
|
|
|
|
|
'pictet' => q{Pictet Europe S.A.}, |
1228
|
|
|
|
|
|
|
'pictures' => q{Foggy Sky, LLC}, |
1229
|
|
|
|
|
|
|
'pid' => q{Top Level Spectrum, Inc.}, |
1230
|
|
|
|
|
|
|
'pin' => q{Amazon Registry Services, Inc.}, |
1231
|
|
|
|
|
|
|
'ping' => q{Ping Registry Provider, Inc.}, |
1232
|
|
|
|
|
|
|
'pink' => q{Afilias Limited}, |
1233
|
|
|
|
|
|
|
'pizza' => q{Foggy Moon, LLC}, |
1234
|
|
|
|
|
|
|
'pk' => q{PKNIC}, |
1235
|
|
|
|
|
|
|
'pl' => q{Research and Academic Computer Network}, |
1236
|
|
|
|
|
|
|
'place' => q{Snow Galley, LLC}, |
1237
|
|
|
|
|
|
|
'play' => q{Charleston Road Registry Inc.}, |
1238
|
|
|
|
|
|
|
'playstation' => q{Sony Computer Entertainment Inc.}, |
1239
|
|
|
|
|
|
|
'plumbing' => q{Spring Tigers, LLC}, |
1240
|
|
|
|
|
|
|
'plus' => q{Sugar Mill, LLC}, |
1241
|
|
|
|
|
|
|
'pm' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)}, |
1242
|
|
|
|
|
|
|
'pn' => q{Pitcairn Island Administration}, |
1243
|
|
|
|
|
|
|
'pohl' => q{Deutsche Vermögensberatung Aktiengesellschaft DVAG}, |
1244
|
|
|
|
|
|
|
'poker' => q{Afilias Domains No. 5 Limited}, |
1245
|
|
|
|
|
|
|
'porn' => q{ICM Registry PN LLC}, |
1246
|
|
|
|
|
|
|
'post' => q{Universal Postal Union}, |
1247
|
|
|
|
|
|
|
'pr' => q{Gauss Research Laboratory Inc.}, |
1248
|
|
|
|
|
|
|
'praxi' => q{Praxi S.p.A.}, |
1249
|
|
|
|
|
|
|
'press' => q{DotPress Inc.}, |
1250
|
|
|
|
|
|
|
'pro' => q{Registry Services Corporation - dba RegistryPro}, |
1251
|
|
|
|
|
|
|
'prod' => q{Charleston Road Registry Inc.}, |
1252
|
|
|
|
|
|
|
'productions' => q{Magic Birch, LLC}, |
1253
|
|
|
|
|
|
|
'prof' => q{Charleston Road Registry Inc.}, |
1254
|
|
|
|
|
|
|
'promo' => q{Afilias plc}, |
1255
|
|
|
|
|
|
|
'properties' => q{Big Pass, LLC}, |
1256
|
|
|
|
|
|
|
'property' => q{Uniregistry, Corp.}, |
1257
|
|
|
|
|
|
|
'protection' => q{XYZ.COM LLC}, |
1258
|
|
|
|
|
|
|
'ps' => q{Ministry Of Telecommunications & - Information Technology, |
1259
|
|
|
|
|
|
|
Government Computer Center.}, |
1260
|
|
|
|
|
|
|
'pt' => q{Associação DNS.PT}, |
1261
|
|
|
|
|
|
|
'pub' => q{United TLD Holdco Ltd.}, |
1262
|
|
|
|
|
|
|
'pw' => q{Micronesia Investment and Development Corporation}, |
1263
|
|
|
|
|
|
|
'pwc' => q{PricewaterhouseCoopers LLP}, |
1264
|
|
|
|
|
|
|
'py' => q{NIC-PY}, |
1265
|
|
|
|
|
|
|
'qa' => q{Communications Regulatory Authority}, |
1266
|
|
|
|
|
|
|
'qpon' => q{dotCOOL, Inc.}, |
1267
|
|
|
|
|
|
|
'quebec' => q{PointQuébec Inc}, |
1268
|
|
|
|
|
|
|
'quest' => q{Quest ION Limited}, |
1269
|
|
|
|
|
|
|
'racing' => q{Premier Registry Limited}, |
1270
|
|
|
|
|
|
|
're' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)}, |
1271
|
|
|
|
|
|
|
'read' => q{Amazon Registry Services, Inc.}, |
1272
|
|
|
|
|
|
|
'realtor' => q{Real Estate Domains LLC}, |
1273
|
|
|
|
|
|
|
'realty' => q{Fegistry, LLC}, |
1274
|
|
|
|
|
|
|
'recipes' => q{Grand Island, LLC}, |
1275
|
|
|
|
|
|
|
'red' => q{Afilias Limited}, |
1276
|
|
|
|
|
|
|
'redstone' => q{Redstone Haute Couture Co., Ltd.}, |
1277
|
|
|
|
|
|
|
'redumbrella' => q{Travelers TLD, LLC}, |
1278
|
|
|
|
|
|
|
'rehab' => q{United TLD Holdco Ltd.}, |
1279
|
|
|
|
|
|
|
'reise' => q{Foggy Way, LLC}, |
1280
|
|
|
|
|
|
|
'reisen' => q{New Cypress, LLC}, |
1281
|
|
|
|
|
|
|
'reit' => q{National Association of Real Estate Investment Trusts, Inc.}, |
1282
|
|
|
|
|
|
|
'ren' => q{Beijing Qianxiang Wangjing Technology Development Co., Ltd.}, |
1283
|
|
|
|
|
|
|
'rent' => q{XYZ.COM LLC}, |
1284
|
|
|
|
|
|
|
'rentals' => q{Big Hollow,LLC}, |
1285
|
|
|
|
|
|
|
'repair' => q{Lone Sunset, LLC}, |
1286
|
|
|
|
|
|
|
'report' => q{Binky Glen, LLC}, |
1287
|
|
|
|
|
|
|
'republican' => q{United TLD Holdco Ltd.}, |
1288
|
|
|
|
|
|
|
'rest' => q{Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable}, |
1289
|
|
|
|
|
|
|
'restaurant' => q{Snow Avenue, LLC}, |
1290
|
|
|
|
|
|
|
'review' => q{dot Review Limited}, |
1291
|
|
|
|
|
|
|
'reviews' => q{United TLD Holdco, Ltd.}, |
1292
|
|
|
|
|
|
|
'rexroth' => q{Robert Bosch GMBH}, |
1293
|
|
|
|
|
|
|
'rich' => q{I-REGISTRY Ltd., Niederlassung Deutschland}, |
1294
|
|
|
|
|
|
|
'ricoh' => q{Ricoh Company, Ltd.}, |
1295
|
|
|
|
|
|
|
'rio' => q{Empresa Municipal de Informática SA - IPLANRIO}, |
1296
|
|
|
|
|
|
|
'rip' => q{United TLD Holdco Ltd.}, |
1297
|
|
|
|
|
|
|
'ro' => q{National Institute for R&D in Informatics}, |
1298
|
|
|
|
|
|
|
'rocher' => q{Ferrero Trading Lux S.A.}, |
1299
|
|
|
|
|
|
|
'rocks' => q{United TLD Holdco, LTD.}, |
1300
|
|
|
|
|
|
|
'rodeo' => q{Top Level Domain Holdings Limited}, |
1301
|
|
|
|
|
|
|
'room' => q{Amazon Registry Services, Inc.}, |
1302
|
|
|
|
|
|
|
'rs' => q{Serbian National Internet Domain Registry (RNIDS)}, |
1303
|
|
|
|
|
|
|
'rsvp' => q{Charleston Road Registry Inc.}, |
1304
|
|
|
|
|
|
|
'ru' => q{Coordination Center for TLD RU}, |
1305
|
|
|
|
|
|
|
'ruhr' => q{regiodot GmbH & Co. KG}, |
1306
|
|
|
|
|
|
|
'run' => q{Snow Park, LLC}, |
1307
|
|
|
|
|
|
|
'rw' => q{Rwanda Information Communication and Technology Association (RICTA)}, |
1308
|
|
|
|
|
|
|
'rwe' => q{RWE AG}, |
1309
|
|
|
|
|
|
|
'ryukyu' => q{BusinessRalliart inc.}, |
1310
|
|
|
|
|
|
|
'sa' => q{Communications and Information Technology Commission}, |
1311
|
|
|
|
|
|
|
'saarland' => q{dotSaarland GmbH}, |
1312
|
|
|
|
|
|
|
'safe' => q{Amazon Registry Services, Inc.}, |
1313
|
|
|
|
|
|
|
'safety' => q{Safety Registry Services, LLC.}, |
1314
|
|
|
|
|
|
|
'sakura' => q{SAKURA Internet Inc.}, |
1315
|
|
|
|
|
|
|
'sale' => q{United TLD Holdco, Ltd}, |
1316
|
|
|
|
|
|
|
'salon' => q{Outer Orchard, LLC}, |
1317
|
|
|
|
|
|
|
'samsung' => q{SAMSUNG SDS CO., LTD}, |
1318
|
|
|
|
|
|
|
'sandvik' => q{Sandvik AB}, |
1319
|
|
|
|
|
|
|
'sandvikcoromant' => q{Sandvik AB}, |
1320
|
|
|
|
|
|
|
'sanofi' => q{Sanofi}, |
1321
|
|
|
|
|
|
|
'sap' => q{SAP AG}, |
1322
|
|
|
|
|
|
|
'sapo' => q{PT Comunicacoes S.A.}, |
1323
|
|
|
|
|
|
|
'sarl' => q{Delta Orchard, LLC}, |
1324
|
|
|
|
|
|
|
'sas' => q{Research IP LLC}, |
1325
|
|
|
|
|
|
|
'saxo' => q{Saxo Bank A/S}, |
1326
|
|
|
|
|
|
|
'sb' => q{Solomon Telekom Company Limited}, |
1327
|
|
|
|
|
|
|
'sbs' => q{SPECIAL BROADCASTING SERVICE CORPORATION}, |
1328
|
|
|
|
|
|
|
'sc' => q{VCS Pty Ltd}, |
1329
|
|
|
|
|
|
|
'sca' => q{SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)}, |
1330
|
|
|
|
|
|
|
'scb' => q{The Siam Commercial Bank Public Company Limited ("SCB")}, |
1331
|
|
|
|
|
|
|
'schaeffler' => q{Schaeffler Technologies AG & Co. KG}, |
1332
|
|
|
|
|
|
|
'schmidt' => q{SALM S.A.S.}, |
1333
|
|
|
|
|
|
|
'scholarships' => q{Scholarships.com, LLC}, |
1334
|
|
|
|
|
|
|
'school' => q{Little Galley, LLC}, |
1335
|
|
|
|
|
|
|
'schule' => q{Outer Moon, LLC}, |
1336
|
|
|
|
|
|
|
'schwarz' => q{Schwarz Domains und Services GmbH & Co. KG}, |
1337
|
|
|
|
|
|
|
'science' => q{dot Science Limited}, |
1338
|
|
|
|
|
|
|
'scor' => q{SCOR SE}, |
1339
|
|
|
|
|
|
|
'scot' => q{Dot Scot Registry Limited}, |
1340
|
|
|
|
|
|
|
'sd' => q{Sudan Internet Society}, |
1341
|
|
|
|
|
|
|
'se' => q{The Internet Infrastructure Foundation}, |
1342
|
|
|
|
|
|
|
'seat' => q{SEAT, S.A. (Sociedad Unipersonal)}, |
1343
|
|
|
|
|
|
|
'security' => q{XYZ.COM LLC}, |
1344
|
|
|
|
|
|
|
'seek' => q{Seek Limited}, |
1345
|
|
|
|
|
|
|
'select' => q{iSelect Ltd}, |
1346
|
|
|
|
|
|
|
'sener' => q{Sener Ingeniería y Sistemas, S.A.}, |
1347
|
|
|
|
|
|
|
'services' => q{Fox Castle, LLC}, |
1348
|
|
|
|
|
|
|
'seven' => q{Seven West Media Ltd}, |
1349
|
|
|
|
|
|
|
'sew' => q{SEW-EURODRIVE GmbH & Co KG}, |
1350
|
|
|
|
|
|
|
'sex' => q{ICM Registry SX LLC}, |
1351
|
|
|
|
|
|
|
'sexy' => q{Uniregistry, Corp.}, |
1352
|
|
|
|
|
|
|
'sfr' => q{Societe Francaise du Radiotelephone - SFR}, |
1353
|
|
|
|
|
|
|
'sg' => q{Singapore Network Information Centre (SGNIC) Pte Ltd}, |
1354
|
|
|
|
|
|
|
'sh' => q{Government of St. Helena}, |
1355
|
|
|
|
|
|
|
'sharp' => q{Sharp Corporation}, |
1356
|
|
|
|
|
|
|
'shell' => q{Shell Information Technology International Inc}, |
1357
|
|
|
|
|
|
|
'shia' => q{Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.}, |
1358
|
|
|
|
|
|
|
'shiksha' => q{Afilias Limited}, |
1359
|
|
|
|
|
|
|
'shoes' => q{Binky Galley, LLC}, |
1360
|
|
|
|
|
|
|
'show' => q{Snow Beach, LLC}, |
1361
|
|
|
|
|
|
|
'shriram' => q{Shriram Capital Ltd.}, |
1362
|
|
|
|
|
|
|
'si' => q{Academic and Research Network of Slovenia (ARNES)}, |
1363
|
|
|
|
|
|
|
'singles' => q{Fern Madison, LLC}, |
1364
|
|
|
|
|
|
|
'site' => q{DotSite Inc.}, |
1365
|
|
|
|
|
|
|
'sj' => q{UNINETT Norid A/S}, |
1366
|
|
|
|
|
|
|
'sk' => q{SK-NIC, a.s.}, |
1367
|
|
|
|
|
|
|
'ski' => q{STARTING DOT LIMITED}, |
1368
|
|
|
|
|
|
|
'skin' => q{L'Oréal}, |
1369
|
|
|
|
|
|
|
'sky' => q{Sky International AG}, |
1370
|
|
|
|
|
|
|
'skype' => q{Microsoft Corporation}, |
1371
|
|
|
|
|
|
|
'sl' => q{Sierratel}, |
1372
|
|
|
|
|
|
|
'sm' => q{Telecom Italia San Marino S.p.A.}, |
1373
|
|
|
|
|
|
|
'smile' => q{Amazon Registry Services, Inc.}, |
1374
|
|
|
|
|
|
|
'sn' => q{Universite Cheikh Anta Diop - NIC Senegal}, |
1375
|
|
|
|
|
|
|
'sncf' => q{SNCF (Société Nationale des Chemins de fer Francais)}, |
1376
|
|
|
|
|
|
|
'so' => q{Ministry of Post and Telecommunications}, |
1377
|
|
|
|
|
|
|
'soccer' => q{Foggy Shadow, LLC}, |
1378
|
|
|
|
|
|
|
'social' => q{United TLD Holdco Ltd.}, |
1379
|
|
|
|
|
|
|
'softbank' => q{SoftBank Group Corp.}, |
1380
|
|
|
|
|
|
|
'software' => q{United TLD Holdco, Ltd}, |
1381
|
|
|
|
|
|
|
'sohu' => q{Sohu.com Limited}, |
1382
|
|
|
|
|
|
|
'solar' => q{Ruby Town, LLC}, |
1383
|
|
|
|
|
|
|
'solutions' => q{Silver Cover, LLC}, |
1384
|
|
|
|
|
|
|
'sony' => q{Sony Corporation}, |
1385
|
|
|
|
|
|
|
'soy' => q{Charleston Road Registry Inc.}, |
1386
|
|
|
|
|
|
|
'space' => q{DotSpace Inc.}, |
1387
|
|
|
|
|
|
|
'spiegel' => q{SPIEGEL-Verlag Rudolf Augstein GmbH & Co. KG}, |
1388
|
|
|
|
|
|
|
'spreadbetting' => q{DOTSPREADBETTING REGISTRY LTD}, |
1389
|
|
|
|
|
|
|
'sr' => q{Telesur}, |
1390
|
|
|
|
|
|
|
'srl' => q{InterNetX Corp.}, |
1391
|
|
|
|
|
|
|
'ss' => q{Not assigned}, |
1392
|
|
|
|
|
|
|
'st' => q{Tecnisys}, |
1393
|
|
|
|
|
|
|
'stada' => q{STADA Arzneimittel AG}, |
1394
|
|
|
|
|
|
|
'star' => q{Star India Private Limited}, |
1395
|
|
|
|
|
|
|
'starhub' => q{StarHub Limited}, |
1396
|
|
|
|
|
|
|
'statefarm' => q{State Farm Mutual Automobile Insurance Company}, |
1397
|
|
|
|
|
|
|
'statoil' => q{Statoil ASA}, |
1398
|
|
|
|
|
|
|
'stc' => q{Saudi Telecom Company}, |
1399
|
|
|
|
|
|
|
'stcgroup' => q{Saudi Telecom Company}, |
1400
|
|
|
|
|
|
|
'stockholm' => q{Stockholms kommun}, |
1401
|
|
|
|
|
|
|
'storage' => q{Self Storage Company LLC}, |
1402
|
|
|
|
|
|
|
'studio' => q{United TLD Holdco Ltd.}, |
1403
|
|
|
|
|
|
|
'study' => q{OPEN UNIVERSITIES AUSTRALIA PTY LTD}, |
1404
|
|
|
|
|
|
|
'style' => q{Binky Moon, LLC}, |
1405
|
|
|
|
|
|
|
'su' => q{Russian Institute for Development of Public Networks - (ROSNIIROS)}, |
1406
|
|
|
|
|
|
|
'sucks' => q{Vox Populi Registry Ltd.}, |
1407
|
|
|
|
|
|
|
'supplies' => q{Atomic Fields, LLC}, |
1408
|
|
|
|
|
|
|
'supply' => q{Half Falls, LLC}, |
1409
|
|
|
|
|
|
|
'support' => q{Grand Orchard, LLC}, |
1410
|
|
|
|
|
|
|
'surf' => q{Top Level Domain Holdings Limited}, |
1411
|
|
|
|
|
|
|
'surgery' => q{Tin Avenue, LLC}, |
1412
|
|
|
|
|
|
|
'suzuki' => q{SUZUKI MOTOR CORPORATION}, |
1413
|
|
|
|
|
|
|
'sv' => q{SVNet}, |
1414
|
|
|
|
|
|
|
'swatch' => q{The Swatch Group Ltd}, |
1415
|
|
|
|
|
|
|
'swiss' => q{Swiss Confederation}, |
1416
|
|
|
|
|
|
|
'sx' => q{SX Registry SA B.V.}, |
1417
|
|
|
|
|
|
|
'sy' => q{National Agency for Network Services (NANS)}, |
1418
|
|
|
|
|
|
|
'sydney' => q{State of New South Wales, Department of Premier and Cabinet}, |
1419
|
|
|
|
|
|
|
'symantec' => q{Symantec Corporation}, |
1420
|
|
|
|
|
|
|
'systems' => q{Dash Cypress, LLC}, |
1421
|
|
|
|
|
|
|
'sz' => q{University of Swaziland - Department of Computer Science}, |
1422
|
|
|
|
|
|
|
'tab' => q{Tabcorp Holdings Limited}, |
1423
|
|
|
|
|
|
|
'taipei' => q{Taipei City Government}, |
1424
|
|
|
|
|
|
|
'taobao' => q{Alibaba Group Holding Limited}, |
1425
|
|
|
|
|
|
|
'tatamotors' => q{Tata Motors Ltd}, |
1426
|
|
|
|
|
|
|
'tatar' => q{Limited Liability Company "Coordination Center of Regional Domain of Tatarstan Republic"}, |
1427
|
|
|
|
|
|
|
'tattoo' => q{Uniregistry, Corp.}, |
1428
|
|
|
|
|
|
|
'tax' => q{Storm Orchard, LLC}, |
1429
|
|
|
|
|
|
|
'taxi' => q{Pine Falls, LLC}, |
1430
|
|
|
|
|
|
|
'tc' => q{Melrex TC}, |
1431
|
|
|
|
|
|
|
'tci' => q{Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.}, |
1432
|
|
|
|
|
|
|
'td' => q{Société des télécommunications du Tchad (SOTEL TCHAD)}, |
1433
|
|
|
|
|
|
|
'team' => q{Atomic Lake, LLC}, |
1434
|
|
|
|
|
|
|
'tech' => q{Dot Tech LLC}, |
1435
|
|
|
|
|
|
|
'technology' => q{Auburn Falls, LLC}, |
1436
|
|
|
|
|
|
|
'tel' => q{Telnic Ltd.}, |
1437
|
|
|
|
|
|
|
'telefonica' => q{Telefónica S.A.}, |
1438
|
|
|
|
|
|
|
'temasek' => q{Temasek Holdings (Private) Limited}, |
1439
|
|
|
|
|
|
|
'tennis' => q{Cotton Bloom, LLC}, |
1440
|
|
|
|
|
|
|
'tf' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)}, |
1441
|
|
|
|
|
|
|
'tg' => q{Autorite de Reglementation des secteurs de Postes et de Telecommunications (ART&P)}, |
1442
|
|
|
|
|
|
|
'th' => q{Thai Network Information Center Foundation}, |
1443
|
|
|
|
|
|
|
'thd' => q{Homer TLC, Inc.}, |
1444
|
|
|
|
|
|
|
'theater' => q{Blue Tigers, LLC}, |
1445
|
|
|
|
|
|
|
'theatre' => q{XYZ.COM LLC}, |
1446
|
|
|
|
|
|
|
'tickets' => q{Accent Media Limited}, |
1447
|
|
|
|
|
|
|
'tienda' => q{Victor Manor, LLC}, |
1448
|
|
|
|
|
|
|
'tiffany' => q{Tiffany and Company}, |
1449
|
|
|
|
|
|
|
'tips' => q{Corn Willow, LLC}, |
1450
|
|
|
|
|
|
|
'tires' => q{Dog Edge, LLC}, |
1451
|
|
|
|
|
|
|
'tirol' => q{punkt Tirol GmbH}, |
1452
|
|
|
|
|
|
|
'tj' => q{Information Technology Center}, |
1453
|
|
|
|
|
|
|
'tk' => q{Telecommunication Tokelau Corporation (Teletok)}, |
1454
|
|
|
|
|
|
|
'tl' => q{Ministry of Transport and Communications; National Division of Information and Technology}, |
1455
|
|
|
|
|
|
|
'tm' => q{TM Domain Registry Ltd}, |
1456
|
|
|
|
|
|
|
'tmall' => q{Alibaba Group Holding Limited}, |
1457
|
|
|
|
|
|
|
'tn' => q{Agence Tunisienne d'Internet}, |
1458
|
|
|
|
|
|
|
'to' => q{Government of the Kingdom of Tonga - H.R.H. Crown Prince Tupouto'a |
1459
|
|
|
|
|
|
|
c/o Consulate of Tonga}, |
1460
|
|
|
|
|
|
|
'today' => q{Pearl Woods, LLC}, |
1461
|
|
|
|
|
|
|
'tokyo' => q{GMO Registry, Inc.}, |
1462
|
|
|
|
|
|
|
'tools' => q{Pioneer North, LLC}, |
1463
|
|
|
|
|
|
|
'top' => q{Jiangsu Bangning Science & Technology Co.,Ltd.}, |
1464
|
|
|
|
|
|
|
'toray' => q{Toray Industries, Inc.}, |
1465
|
|
|
|
|
|
|
'toshiba' => q{TOSHIBA Corporation}, |
1466
|
|
|
|
|
|
|
'tours' => q{Sugar Station, LLC}, |
1467
|
|
|
|
|
|
|
'town' => q{Koko Moon, LLC}, |
1468
|
|
|
|
|
|
|
'toyota' => q{TOYOTA MOTOR CORPORATION}, |
1469
|
|
|
|
|
|
|
'toys' => q{Pioneer Orchard, LLC}, |
1470
|
|
|
|
|
|
|
'tp' => q{Retired}, |
1471
|
|
|
|
|
|
|
'tr' => q{Middle East Technical University - Department of Computer Engineering}, |
1472
|
|
|
|
|
|
|
'trade' => q{Elite Registry Limited}, |
1473
|
|
|
|
|
|
|
'trading' => q{DOTTRADING REGISTRY LTD}, |
1474
|
|
|
|
|
|
|
'training' => q{Wild Willow, LLC}, |
1475
|
|
|
|
|
|
|
'travel' => q{Tralliance Registry Management Company, LLC.}, |
1476
|
|
|
|
|
|
|
'travelers' => q{Travelers TLD, LLC}, |
1477
|
|
|
|
|
|
|
'travelersinsurance' => q{Travelers TLD, LLC}, |
1478
|
|
|
|
|
|
|
'trust' => q{Artemis Internet Inc}, |
1479
|
|
|
|
|
|
|
'trv' => q{Travelers TLD, LLC}, |
1480
|
|
|
|
|
|
|
'tt' => q{University of the West Indies - Faculty of Engineering}, |
1481
|
|
|
|
|
|
|
'tube' => q{Latin American Telecom LLC}, |
1482
|
|
|
|
|
|
|
'tui' => q{TUI AG}, |
1483
|
|
|
|
|
|
|
'tushu' => q{Amazon Registry Services, Inc.}, |
1484
|
|
|
|
|
|
|
'tv' => q{Ministry of Finance and Tourism}, |
1485
|
|
|
|
|
|
|
'tvs' => q{T V SUNDRAM IYENGAR & SONS PRIVATE LIMITED}, |
1486
|
|
|
|
|
|
|
'tw' => q{Taiwan Network Information Center (TWNIC)}, |
1487
|
|
|
|
|
|
|
'tz' => q{Tanzania Network Information Centre (tzNIC)}, |
1488
|
|
|
|
|
|
|
'ua' => q{Hostmaster Ltd.}, |
1489
|
|
|
|
|
|
|
'ubs' => q{UBS AG}, |
1490
|
|
|
|
|
|
|
'ug' => q{Uganda Online Ltd.}, |
1491
|
|
|
|
|
|
|
'uk' => q{Nominet UK}, |
1492
|
|
|
|
|
|
|
'um' => q{Not assigned}, |
1493
|
|
|
|
|
|
|
'unicom' => q{China United Network Communications Corporation Limited}, |
1494
|
|
|
|
|
|
|
'university' => q{Little Station, LLC}, |
1495
|
|
|
|
|
|
|
'uno' => q{Dot Latin LLC}, |
1496
|
|
|
|
|
|
|
'uol' => q{UBN INTERNET LTDA.}, |
1497
|
|
|
|
|
|
|
'us' => q{NeuStar, Inc.}, |
1498
|
|
|
|
|
|
|
'uy' => q{SeCIU - Universidad de la Republica}, |
1499
|
|
|
|
|
|
|
'uz' => q{Computerization and Information Technologies Developing Center - UZINFOCOM}, |
1500
|
|
|
|
|
|
|
'va' => q{Holy See Secretariat of State Department of Telecommunications}, |
1501
|
|
|
|
|
|
|
'vacations' => q{Atomic Tigers, LLC}, |
1502
|
|
|
|
|
|
|
'vana' => q{Lifestyle Domain Holdings, Inc.}, |
1503
|
|
|
|
|
|
|
'vc' => q{Ministry of Telecommunications, Science, Technology and Industry}, |
1504
|
|
|
|
|
|
|
've' => q{Comisión Nacional de Telecomunicaciones (CONATEL)}, |
1505
|
|
|
|
|
|
|
'vegas' => q{Dot Vegas, Inc.}, |
1506
|
|
|
|
|
|
|
'ventures' => q{Binky Lake, LLC}, |
1507
|
|
|
|
|
|
|
'verisign' => q{VeriSign, Inc.}, |
1508
|
|
|
|
|
|
|
'vermögensberater' => q{Deutsche Vermögensberatung Aktiengesellschaft DVAG}, |
1509
|
|
|
|
|
|
|
'vermögensberatung' => q{Deutsche Vermögensberatung Aktiengesellschaft DVAG}, |
1510
|
|
|
|
|
|
|
'versicherung' => q{dotversicherung-registry GmbH}, |
1511
|
|
|
|
|
|
|
'vet' => q{United TLD Holdco, Ltd}, |
1512
|
|
|
|
|
|
|
'vg' => q{Telecommunications Regulatory Commission of the Virgin Islands}, |
1513
|
|
|
|
|
|
|
'vi' => q{Virgin Islands Public Telcommunications System - c/o COBEX Internet Services}, |
1514
|
|
|
|
|
|
|
'viajes' => q{Black Madison, LLC}, |
1515
|
|
|
|
|
|
|
'video' => q{United TLD Holdco, Ltd}, |
1516
|
|
|
|
|
|
|
'villas' => q{New Sky, LLC}, |
1517
|
|
|
|
|
|
|
'vin' => q{Holly Shadow, LLC}, |
1518
|
|
|
|
|
|
|
'vip' => q{Minds + Machines Group Limited}, |
1519
|
|
|
|
|
|
|
'virgin' => q{Virgin Enterprises Limited}, |
1520
|
|
|
|
|
|
|
'vision' => q{Koko Station, LLC}, |
1521
|
|
|
|
|
|
|
'vista' => q{Vistaprint Limited}, |
1522
|
|
|
|
|
|
|
'vistaprint' => q{Vistaprint Limited}, |
1523
|
|
|
|
|
|
|
'viva' => q{Saudi Telecom Company}, |
1524
|
|
|
|
|
|
|
'vlaanderen' => q{DNS.be vzw}, |
1525
|
|
|
|
|
|
|
'vn' => q{Ministry of Information and Communications of Socialist Republic of Viet Nam}, |
1526
|
|
|
|
|
|
|
'vodka' => q{Top Level Domain Holdings Limited}, |
1527
|
|
|
|
|
|
|
'volkswagen' => q{Volkswagen Group of America Inc.}, |
1528
|
|
|
|
|
|
|
'vote' => q{Monolith Registry LLC}, |
1529
|
|
|
|
|
|
|
'voting' => q{Valuetainment Corp.}, |
1530
|
|
|
|
|
|
|
'voto' => q{Monolith Registry LLC}, |
1531
|
|
|
|
|
|
|
'voyage' => q{Ruby House, LLC}, |
1532
|
|
|
|
|
|
|
'vu' => q{Telecom Vanuatu Limited}, |
1533
|
|
|
|
|
|
|
'wales' => q{Nominet UK}, |
1534
|
|
|
|
|
|
|
'walter' => q{Sandvik AB}, |
1535
|
|
|
|
|
|
|
'wang' => q{Zodiac Registry Limited}, |
1536
|
|
|
|
|
|
|
'wanggou' => q{Amazon Registry Services, Inc.}, |
1537
|
|
|
|
|
|
|
'watch' => q{Sand Shadow, LLC}, |
1538
|
|
|
|
|
|
|
'watches' => q{Richemont DNS Inc.}, |
1539
|
|
|
|
|
|
|
'weather' => q{The Weather Channel, LLC}, |
1540
|
|
|
|
|
|
|
'weatherchannel' => q{The Weather Channel, LLC}, |
1541
|
|
|
|
|
|
|
'webcam' => q{dot Webcam Limited}, |
1542
|
|
|
|
|
|
|
'weber' => q{Saint-Gobain Weber SA}, |
1543
|
|
|
|
|
|
|
'website' => q{DotWebsite Inc.}, |
1544
|
|
|
|
|
|
|
'wed' => q{Atgron, Inc.}, |
1545
|
|
|
|
|
|
|
'wedding' => q{Top Level Domain Holdings Limited}, |
1546
|
|
|
|
|
|
|
'weir' => q{Weir Group IP Limited}, |
1547
|
|
|
|
|
|
|
'wf' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)}, |
1548
|
|
|
|
|
|
|
'whoswho' => q{Who's Who Registry}, |
1549
|
|
|
|
|
|
|
'wien' => q{punkt.wien GmbH}, |
1550
|
|
|
|
|
|
|
'wiki' => q{Top Level Design, LLC}, |
1551
|
|
|
|
|
|
|
'williamhill' => q{William Hill Organization Limited}, |
1552
|
|
|
|
|
|
|
'win' => q{First Registry Limited}, |
1553
|
|
|
|
|
|
|
'windows' => q{Microsoft Corporation}, |
1554
|
|
|
|
|
|
|
'wine' => q{June Station, LLC}, |
1555
|
|
|
|
|
|
|
'wme' => q{William Morris Endeavor Entertainment, LLC}, |
1556
|
|
|
|
|
|
|
'wolterskluwer' => q{Wolters Kluwer N.V.}, |
1557
|
|
|
|
|
|
|
'work' => q{Top Level Domain Holdings Limited}, |
1558
|
|
|
|
|
|
|
'works' => q{Little Dynamite, LLC}, |
1559
|
|
|
|
|
|
|
'world' => q{Bitter Fields, LLC}, |
1560
|
|
|
|
|
|
|
'ws' => q{Government of Samoa Ministry of Foreign Affairs & Trade}, |
1561
|
|
|
|
|
|
|
'wtc' => q{World Trade Centers Association, Inc.}, |
1562
|
|
|
|
|
|
|
'wtf' => q{Hidden Way, LLC}, |
1563
|
|
|
|
|
|
|
'xbox' => q{Microsoft Corporation}, |
1564
|
|
|
|
|
|
|
'xerox' => q{Xerox DNHC LLC}, |
1565
|
|
|
|
|
|
|
'xin' => q{Elegant Leader Limited}, |
1566
|
|
|
|
|
|
|
'xperia' => q{Sony Mobile Communications AB}, |
1567
|
|
|
|
|
|
|
'xxx' => q{ICM Registry LLC}, |
1568
|
|
|
|
|
|
|
'xyz' => q{XYZ.COM LLC}, |
1569
|
|
|
|
|
|
|
'yachts' => q{DERYachts, LLC}, |
1570
|
|
|
|
|
|
|
'yahoo' => q{Yahoo! Domain Services Inc.}, |
1571
|
|
|
|
|
|
|
'yamaxun' => q{Amazon Registry Services, Inc.}, |
1572
|
|
|
|
|
|
|
'yandex' => q{YANDEX, LLC}, |
1573
|
|
|
|
|
|
|
'ye' => q{TeleYemen}, |
1574
|
|
|
|
|
|
|
'yodobashi' => q{YODOBASHI CAMERA CO.,LTD.}, |
1575
|
|
|
|
|
|
|
'yoga' => q{Top Level Domain Holdings Limited}, |
1576
|
|
|
|
|
|
|
'yokohama' => q{GMO Registry, Inc.}, |
1577
|
|
|
|
|
|
|
'youtube' => q{Charleston Road Registry Inc.}, |
1578
|
|
|
|
|
|
|
'yt' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)}, |
1579
|
|
|
|
|
|
|
'za' => q{ZA Domain Name Authority}, |
1580
|
|
|
|
|
|
|
'zara' => q{Industria de Diseño Textil, S.A. (INDITEX, S.A.)}, |
1581
|
|
|
|
|
|
|
'zero' => q{Amazon Registry Services, Inc.}, |
1582
|
|
|
|
|
|
|
'zip' => q{Charleston Road Registry Inc.}, |
1583
|
|
|
|
|
|
|
'zm' => q{Zambia Information and Communications Technology Authority (ZICTA)}, |
1584
|
|
|
|
|
|
|
'zone' => q{Outer Falls, LLC}, |
1585
|
|
|
|
|
|
|
'zuerich' => q{Kanton Zürich (Canton of Zurich)}, |
1586
|
|
|
|
|
|
|
'zw' => q{Postal and Telecommunications Regulatory Authority of Zimbabwe (POTRAZ)}, |
1587
|
|
|
|
|
|
|
'δοκιμή' => q{Internet Assigned Numbers Authority}, |
1588
|
|
|
|
|
|
|
'ελ' => q{ICS-FORTH GR}, |
1589
|
|
|
|
|
|
|
'бел' => q{Reliable Software, Ltd.}, |
1590
|
|
|
|
|
|
|
'дети' => q{The Foundation for Network Initiatives “The Smart Internet”}, |
1591
|
|
|
|
|
|
|
'ею' => q{EURid vzw/asbl}, |
1592
|
|
|
|
|
|
|
'испытание' => q{Internet Assigned Numbers Authority}, |
1593
|
|
|
|
|
|
|
'ком' => q{VeriSign Sarl}, |
1594
|
|
|
|
|
|
|
'мкд' => q{Macedonian Academic Research Network Skopje}, |
1595
|
|
|
|
|
|
|
'мон' => q{Datacom Co.,Ltd}, |
1596
|
|
|
|
|
|
|
'москва' => q{Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)}, |
1597
|
|
|
|
|
|
|
'онлайн' => q{CORE Association}, |
1598
|
|
|
|
|
|
|
'орг' => q{Public Interest Registry}, |
1599
|
|
|
|
|
|
|
'рус' => q{Rusnames Limited}, |
1600
|
|
|
|
|
|
|
'рф' => q{Coordination Center for TLD RU}, |
1601
|
|
|
|
|
|
|
'сайт' => q{CORE Association}, |
1602
|
|
|
|
|
|
|
'срб' => q{Serbian National Internet Domain Registry (RNIDS)}, |
1603
|
|
|
|
|
|
|
'укр' => q{Ukrainian Network Information Centre (UANIC), Inc.}, |
1604
|
|
|
|
|
|
|
'қаз' => q{Association of IT Companies of Kazakhstan}, |
1605
|
|
|
|
|
|
|
'հայ' => q{"Internet Society" Non-governmental Organization}, |
1606
|
|
|
|
|
|
|
'कॉम' => q{VeriSign Sarl}, |
1607
|
|
|
|
|
|
|
'नेट' => q{VeriSign Sarl}, |
1608
|
|
|
|
|
|
|
'परीक्षा' => q{Internet Assigned Numbers Authority}, |
1609
|
|
|
|
|
|
|
'भारत' => q{National Internet Exchange of India}, |
1610
|
|
|
|
|
|
|
'संगठन' => q{Public Interest Registry}, |
1611
|
|
|
|
|
|
|
'বাংলা' => q{Not assigned}, |
1612
|
|
|
|
|
|
|
'ভারত' => q{National Internet Exchange of India}, |
1613
|
|
|
|
|
|
|
'ਭਾਰਤ' => q{National Internet Exchange of India}, |
1614
|
|
|
|
|
|
|
'ભારત' => q{National Internet Exchange of India}, |
1615
|
|
|
|
|
|
|
'இந்தியா' => q{National Internet Exchange of India}, |
1616
|
|
|
|
|
|
|
'இலங்கை' => q{LK Domain Registry}, |
1617
|
|
|
|
|
|
|
'சிங்கப்பூர்' => q{Singapore Network Information Centre (SGNIC) Pte Ltd}, |
1618
|
|
|
|
|
|
|
'பரிட்சை' => q{Internet Assigned Numbers Authority}, |
1619
|
|
|
|
|
|
|
'భారత్' => q{National Internet Exchange of India}, |
1620
|
|
|
|
|
|
|
'ලංකා' => q{LK Domain Registry}, |
1621
|
|
|
|
|
|
|
'คอม' => q{VeriSign Sarl}, |
1622
|
|
|
|
|
|
|
'ไทย' => q{Thai Network Information Center Foundation}, |
1623
|
|
|
|
|
|
|
'გე' => q{Information Technologies Development Center (ITDC)}, |
1624
|
|
|
|
|
|
|
'みんな' => q{Charleston Road Registry Inc.}, |
1625
|
|
|
|
|
|
|
'グーグル' => q{Charleston Road Registry Inc.}, |
1626
|
|
|
|
|
|
|
'コム' => q{VeriSign Sarl}, |
1627
|
|
|
|
|
|
|
'テスト' => q{Internet Assigned Numbers Authority}, |
1628
|
|
|
|
|
|
|
'ポイント' => q{Amazon Registry Services, Inc.}, |
1629
|
|
|
|
|
|
|
'世界' => q{Stable Tone Limited}, |
1630
|
|
|
|
|
|
|
'中信' => q{CITIC Group Corporation}, |
1631
|
|
|
|
|
|
|
'中国' => q{China Internet Network Information Center (CNNIC)}, |
1632
|
|
|
|
|
|
|
'中國' => q{China Internet Network Information Center (CNNIC)}, |
1633
|
|
|
|
|
|
|
'中文网' => q{TLD REGISTRY LIMITED}, |
1634
|
|
|
|
|
|
|
'企业' => q{Dash McCook, LLC}, |
1635
|
|
|
|
|
|
|
'佛山' => q{Guangzhou YU Wei Information Technology Co., Ltd.}, |
1636
|
|
|
|
|
|
|
'信息' => q{Beijing Tele-info Network Technology Co., Ltd.}, |
1637
|
|
|
|
|
|
|
'健康' => q{Stable Tone Limited}, |
1638
|
|
|
|
|
|
|
'八卦' => q{Zodiac Scorpio Limited}, |
1639
|
|
|
|
|
|
|
'公司' => q{Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)}, |
1640
|
|
|
|
|
|
|
'公益' => q{China Organizational Name Administration Center}, |
1641
|
|
|
|
|
|
|
'台湾' => q{Taiwan Network Information Center (TWNIC)}, |
1642
|
|
|
|
|
|
|
'台灣' => q{Taiwan Network Information Center (TWNIC)}, |
1643
|
|
|
|
|
|
|
'商城' => q{Zodiac Aquarius Limited}, |
1644
|
|
|
|
|
|
|
'商店' => q{Wild Island, LLC}, |
1645
|
|
|
|
|
|
|
'商标' => q{HU YI GLOBAL INFORMATION RESOURCES(HOLDING) COMPANY.HONGKONG LIMITED}, |
1646
|
|
|
|
|
|
|
'在线' => q{TLD REGISTRY LIMITED}, |
1647
|
|
|
|
|
|
|
'大拿' => q{VeriSign Sarl}, |
1648
|
|
|
|
|
|
|
'娱乐' => q{Will Bloom, LLC}, |
1649
|
|
|
|
|
|
|
'工行' => q{Industrial and Commercial Bank of China Limited}, |
1650
|
|
|
|
|
|
|
'广东' => q{Guangzhou YU Wei Information Technology Co., Ltd.}, |
1651
|
|
|
|
|
|
|
'慈善' => q{Excellent First Limited}, |
1652
|
|
|
|
|
|
|
'我爱你' => q{Tycoon Treasure Limited}, |
1653
|
|
|
|
|
|
|
'手机' => q{Beijing RITT-Net Technology Development Co., Ltd}, |
1654
|
|
|
|
|
|
|
'手表' => q{Richemont DNS Inc.}, |
1655
|
|
|
|
|
|
|
'政务' => q{China Organizational Name Administration Center}, |
1656
|
|
|
|
|
|
|
'政府' => q{Net-Chinese Co., Ltd.}, |
1657
|
|
|
|
|
|
|
'新加坡' => q{Singapore Network Information Centre (SGNIC) Pte Ltd}, |
1658
|
|
|
|
|
|
|
'新闻' => q{Xinhua News Agency Guangdong Branch 新华通讯社广东分社}, |
1659
|
|
|
|
|
|
|
'时尚' => q{RISE VICTORY LIMITED}, |
1660
|
|
|
|
|
|
|
'机构' => q{Public Interest Registry}, |
1661
|
|
|
|
|
|
|
'测试' => q{Internet Assigned Numbers Authority}, |
1662
|
|
|
|
|
|
|
'淡马锡' => q{Temasek Holdings (Private) Limited}, |
1663
|
|
|
|
|
|
|
'測試' => q{Internet Assigned Numbers Authority}, |
1664
|
|
|
|
|
|
|
'游戏' => q{Spring Fields, LLC}, |
1665
|
|
|
|
|
|
|
'澳門' => q{Bureau of Telecommunications Regulation (DSRT)}, |
1666
|
|
|
|
|
|
|
'点看' => q{VeriSign Sarl}, |
1667
|
|
|
|
|
|
|
'珠宝' => q{Richemont DNS Inc.}, |
1668
|
|
|
|
|
|
|
'移动' => q{Afilias Limited}, |
1669
|
|
|
|
|
|
|
'组织机构' => q{Public Interest Registry}, |
1670
|
|
|
|
|
|
|
'网址' => q{KNET Co., Ltd}, |
1671
|
|
|
|
|
|
|
'网店' => q{Zodiac Libra Limited}, |
1672
|
|
|
|
|
|
|
'网络' => q{Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)}, |
1673
|
|
|
|
|
|
|
'联通' => q{China United Network Communications Corporation Limited}, |
1674
|
|
|
|
|
|
|
'诺基亚' => q{Nokia Corporation}, |
1675
|
|
|
|
|
|
|
'谷歌' => q{Charleston Road Registry Inc.}, |
1676
|
|
|
|
|
|
|
'购物' => q{Minds + Machines Group Limited}, |
1677
|
|
|
|
|
|
|
'集团' => q{Eagle Horizon Limited}, |
1678
|
|
|
|
|
|
|
'飞利浦' => q{Koninklijke Philips N.V.}, |
1679
|
|
|
|
|
|
|
'餐厅' => q{HU YI GLOBAL INFORMATION RESOURCES (HOLDING) COMPANY. HONGKONG LIMITED}, |
1680
|
|
|
|
|
|
|
'香港' => q{Hong Kong Internet Registration Corporation Ltd.}, |
1681
|
|
|
|
|
|
|
'닷넷' => q{VeriSign Sarl}, |
1682
|
|
|
|
|
|
|
'닷컴' => q{VeriSign Sarl}, |
1683
|
|
|
|
|
|
|
'삼성' => q{SAMSUNG SDS CO., LTD}, |
1684
|
|
|
|
|
|
|
'테스트' => q{Internet Assigned Numbers Authority}, |
1685
|
|
|
|
|
|
|
'한국' => q{KISA (Korea Internet & Security Agency)}, |
1686
|
|
|
|
|
|
|
} |
1687
|
|
|
|
|
|
|
); |
1688
|
|
|
|
|
|
|
|
1689
|
|
|
|
|
|
|
my $flat_profile = flatten ( \%tld_profile ); |
1690
|
|
|
|
|
|
|
|
1691
|
|
|
|
|
|
|
sub flatten { |
1692
|
1
|
|
|
1
|
0
|
1
|
my $hashref = shift; |
1693
|
1
|
|
|
|
|
1
|
my %results; |
1694
|
8
|
|
|
|
|
608
|
@results{ keys %{ $hashref->{$_} } } = values % { $hashref->{$_} } |
|
8
|
|
|
|
|
60
|
|
1695
|
1
|
|
|
|
|
8
|
for ( keys %$hashref ); |
1696
|
1
|
|
|
|
|
3
|
return \%results; |
1697
|
|
|
|
|
|
|
} |
1698
|
|
|
|
|
|
|
|
1699
|
|
|
|
|
|
|
sub check_type { |
1700
|
0
|
|
|
0
|
0
|
|
my $type = shift; |
1701
|
0
|
0
|
|
|
|
|
croak "unknown TLD type: $type" unless grep { $type eq $_ } TLD_TYPES; |
|
0
|
|
|
|
|
|
|
1702
|
0
|
|
|
|
|
|
return 1; |
1703
|
|
|
|
|
|
|
} |
1704
|
|
|
|
|
|
|
|
1705
|
|
|
|
|
|
|
=head1 PUBLIC METHODS |
1706
|
|
|
|
|
|
|
|
1707
|
|
|
|
|
|
|
Each public function/method is described here. |
1708
|
|
|
|
|
|
|
These are how you should interact with this module. |
1709
|
|
|
|
|
|
|
|
1710
|
|
|
|
|
|
|
=head3 C<< tlds >> |
1711
|
|
|
|
|
|
|
|
1712
|
|
|
|
|
|
|
This routine returns the tlds requested. |
1713
|
|
|
|
|
|
|
|
1714
|
|
|
|
|
|
|
my @all_tlds = tlds; #array of tlds |
1715
|
|
|
|
|
|
|
my $all_tlds = tlds; #hashref of tlds and their descriptions |
1716
|
|
|
|
|
|
|
|
1717
|
|
|
|
|
|
|
my @cc_tlds = tlds('cc'); #array of just 'cc' type tlds |
1718
|
|
|
|
|
|
|
my $cc_tlds = tlds('cc'); #hashref of just 'cc' type tlds and their descriptions |
1719
|
|
|
|
|
|
|
|
1720
|
|
|
|
|
|
|
Valid types are: |
1721
|
|
|
|
|
|
|
cc - country code domains |
1722
|
|
|
|
|
|
|
ccidn - internationalized country code top-level domain |
1723
|
|
|
|
|
|
|
gtld_open - generic domains that anyone can register |
1724
|
|
|
|
|
|
|
gtld_restricted - generic restricted registration domains |
1725
|
|
|
|
|
|
|
gtld_new - new gTLDs |
1726
|
|
|
|
|
|
|
new_open - recently added generic domains |
1727
|
|
|
|
|
|
|
new_restricted - new restricted registration domains |
1728
|
|
|
|
|
|
|
reserved - RFC2606 restricted names, not returned by tlds |
1729
|
|
|
|
|
|
|
|
1730
|
|
|
|
|
|
|
=cut |
1731
|
|
|
|
|
|
|
|
1732
|
|
|
|
|
|
|
sub tlds { |
1733
|
0
|
|
|
0
|
1
|
|
my $type = shift; |
1734
|
0
|
0
|
|
|
|
|
check_type ( $type ) if $type; |
1735
|
|
|
|
|
|
|
my $results = $type ? |
1736
|
0
|
|
|
|
|
|
wantarray ? [ keys %{ $tld_profile{$type} } ] : |
1737
|
|
|
|
|
|
|
dclone ( $tld_profile{$type} ) : |
1738
|
0
|
0
|
|
|
|
|
wantarray ? [ map { keys %$_ } values %tld_profile ] : |
|
0
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
1739
|
|
|
|
|
|
|
$flat_profile; |
1740
|
0
|
0
|
|
|
|
|
return wantarray ? @$results : $results; |
1741
|
|
|
|
|
|
|
} |
1742
|
|
|
|
|
|
|
|
1743
|
|
|
|
|
|
|
=head3 C<< tld_exists >> |
1744
|
|
|
|
|
|
|
|
1745
|
|
|
|
|
|
|
This routine returns true if the given domain exists and false otherwise. |
1746
|
|
|
|
|
|
|
|
1747
|
|
|
|
|
|
|
die "no such domain" unless tld_exists($tld); #call without tld type |
1748
|
|
|
|
|
|
|
die "no such domain" unless tld_exists($tld, 'new_open'); #call with tld type |
1749
|
|
|
|
|
|
|
|
1750
|
|
|
|
|
|
|
=cut |
1751
|
|
|
|
|
|
|
|
1752
|
|
|
|
|
|
|
sub tld_exists { |
1753
|
0
|
|
|
0
|
1
|
|
my ( $tld, $type ) = ( lc ( $_[0] ), $_[1] ); |
1754
|
0
|
0
|
|
|
|
|
check_type ( $type ) if $type; |
1755
|
|
|
|
|
|
|
my $result = $type ? |
1756
|
|
|
|
|
|
|
$tld_profile{$type}{$tld} ? 1 : 0 : |
1757
|
0
|
0
|
|
|
|
|
$flat_profile->{$tld} ? 1 : 0; |
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
1758
|
0
|
|
|
|
|
|
return $result; |
1759
|
|
|
|
|
|
|
} |
1760
|
|
|
|
|
|
|
|
1761
|
|
|
|
|
|
|
=head1 COPYRIGHT |
1762
|
|
|
|
|
|
|
|
1763
|
|
|
|
|
|
|
Copyright (c) 2003-2016 Alex Pavlovic, all rights reserved. This program |
1764
|
|
|
|
|
|
|
is free software; you can redistribute it and/or modify it under the same terms |
1765
|
|
|
|
|
|
|
as Perl itself. |
1766
|
|
|
|
|
|
|
|
1767
|
|
|
|
|
|
|
=head1 AUTHORS |
1768
|
|
|
|
|
|
|
|
1769
|
|
|
|
|
|
|
Alexander Pavlovic |
1770
|
|
|
|
|
|
|
Ricardo SIGNES |
1771
|
|
|
|
|
|
|
|
1772
|
|
|
|
|
|
|
=cut |
1773
|
|
|
|
|
|
|
|
1774
|
|
|
|
|
|
|
1; |