public_suffix 1.4.6 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.ruby-gemset +1 -0
- data/.travis.yml +2 -2
- data/.yardopts +1 -2
- data/CHANGELOG.md +7 -0
- data/LICENSE.txt +1 -1
- data/README.md +65 -55
- data/Rakefile +8 -16
- data/{lib → data}/definitions.txt +1008 -64
- data/lib/public_suffix.rb +3 -10
- data/lib/public_suffix/domain.rb +15 -37
- data/lib/public_suffix/errors.rb +3 -5
- data/lib/public_suffix/list.rb +12 -13
- data/lib/public_suffix/rule.rb +61 -48
- data/lib/public_suffix/version.rb +5 -6
- data/public_suffix.gemspec +6 -6
- data/test/acceptance_test.rb +50 -14
- data/test/unit/list_test.rb +5 -5
- data/test/unit/public_suffix_test.rb +3 -3
- data/test/unit/rule_test.rb +3 -3
- metadata +18 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 741d26fc70c430d7b5261c959ec0a6b1e97d108c
|
4
|
+
data.tar.gz: 05c69126efbff70f36e3b2f6ff918216f04babff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ab71bb58e34a2a65dd9ef07eacfe9a5b8bca3188c92b148c1de8a2e3a13bad6b6bcd02aa2eddd34b47468d05fa693611caa9f5447ecf5be5110f5db47483180
|
7
|
+
data.tar.gz: ab8fdd3b5125afbcbe5211647d07618b5710c16dba23db3500ffd40a6229e8f07da25b249bee889311dea2e206055e19b0aaa36a2268a24391ebff97cbbaa6a0
|
data/.ruby-gemset
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
publicsuffix
|
data/.travis.yml
CHANGED
@@ -1,9 +1,8 @@
|
|
1
1
|
language: ruby
|
2
2
|
rvm:
|
3
|
-
- 1.9.3
|
4
3
|
- 2.0.0
|
5
4
|
- 2.1.0
|
6
|
-
- 2.
|
5
|
+
- 2.2.0
|
7
6
|
- ruby-head
|
8
7
|
- jruby-19mode
|
9
8
|
- rbx-19mode
|
@@ -15,5 +14,6 @@ notifications:
|
|
15
14
|
matrix:
|
16
15
|
allow_failures:
|
17
16
|
- rvm: rbx-19mode
|
17
|
+
- rvm: jruby-19mode
|
18
18
|
- rvm: ruby-head
|
19
19
|
|
data/.yardopts
CHANGED
@@ -1,2 +1 @@
|
|
1
|
-
--
|
2
|
-
--title 'Ruby Public Suffix API Documentation'
|
1
|
+
--title 'Ruby Public Suffix API Documentation'
|
data/CHANGELOG.md
CHANGED
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -33,7 +33,7 @@ Not convinced yet? Check out [this real world example](http://stackoverflow.com/
|
|
33
33
|
|
34
34
|
## Requirements
|
35
35
|
|
36
|
-
- Ruby >=
|
36
|
+
- Ruby >= 2.0
|
37
37
|
|
38
38
|
For an older versions of Ruby use a previous release. We also support several [Ruby implementations](http://simonecarletti.com/code/publicsuffix/#implementations).
|
39
39
|
|
@@ -51,78 +51,88 @@ You might need administrator privileges on your system to install the gem.
|
|
51
51
|
|
52
52
|
Example domain without subdomains.
|
53
53
|
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
54
|
+
```ruby
|
55
|
+
domain = PublicSuffix.parse("google.com")
|
56
|
+
# => #<PublicSuffix::Domain>
|
57
|
+
domain.tld
|
58
|
+
# => "com"
|
59
|
+
domain.sld
|
60
|
+
# => "google"
|
61
|
+
domain.trd
|
62
|
+
# => nil
|
63
|
+
domain.domain
|
64
|
+
# => "google.com"
|
65
|
+
domain.subdomain
|
66
|
+
# => nil
|
67
|
+
```
|
66
68
|
|
67
69
|
Example domain with subdomains.
|
68
70
|
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
71
|
+
```ruby
|
72
|
+
domain = PublicSuffix.parse("www.google.com")
|
73
|
+
# => #<PublicSuffix::Domain>
|
74
|
+
domain.tld
|
75
|
+
# => "com"
|
76
|
+
domain.sld
|
77
|
+
# => "google"
|
78
|
+
domain.trd
|
79
|
+
# => "www"
|
80
|
+
domain.domain
|
81
|
+
# => "google.com"
|
82
|
+
domain.subdomain
|
83
|
+
# => "www.google.com"
|
84
|
+
```
|
81
85
|
|
82
86
|
Simple validation example.
|
83
87
|
|
84
|
-
|
85
|
-
|
88
|
+
```ruby
|
89
|
+
PublicSuffix.valid?("google.com")
|
90
|
+
# => true
|
86
91
|
|
87
|
-
|
88
|
-
|
92
|
+
PublicSuffix.valid?("www.google.com")
|
93
|
+
# => true
|
89
94
|
|
90
|
-
|
91
|
-
|
95
|
+
PublicSuffix.valid?("x.yz")
|
96
|
+
# => false
|
97
|
+
```
|
92
98
|
|
93
99
|
## Fully Qualified Domain Names
|
94
100
|
|
95
101
|
This library automatically recognizes Fully Qualified Domain Names. A FQDN is a domain name that end with a trailing dot.
|
96
102
|
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
103
|
+
```ruby
|
104
|
+
# Parse a standard domain name
|
105
|
+
domain = PublicSuffix.parse("www.google.com")
|
106
|
+
# => #<PublicSuffix::Domain>
|
107
|
+
domain.tld
|
108
|
+
# => "com"
|
102
109
|
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
110
|
+
# Parse a fully qualified domain name
|
111
|
+
domain = PublicSuffix.parse("www.google.com.")
|
112
|
+
# => #<PublicSuffix::Domain>
|
113
|
+
domain.tld
|
114
|
+
# => "com"
|
115
|
+
```
|
108
116
|
|
109
117
|
## Private domains
|
110
118
|
|
111
119
|
This library has support for switching off support for private (non-ICANN) domains
|
112
120
|
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
121
|
+
```ruby
|
122
|
+
# Parse a domain on a private TLD
|
123
|
+
domain = PublicSuffix.parse("something.blogspot.com")
|
124
|
+
# => #<PublicSuffix::Domain>
|
125
|
+
domain.tld
|
126
|
+
# => "blogspot.com"
|
127
|
+
|
128
|
+
# Disable support for private TLDs
|
129
|
+
PublicSuffix::List.private_domains = false
|
130
|
+
# => #<PublicSuffix::List>
|
131
|
+
domain = PublicSuffix.parse("something.blogspot.com")
|
132
|
+
# => #<PublicSuffix::Domain>
|
133
|
+
domain.tld
|
134
|
+
# => "com"
|
135
|
+
```
|
126
136
|
|
127
137
|
## Feedback and bug reports
|
128
138
|
|
@@ -148,4 +158,4 @@ See the [CHANGELOG.md](CHANGELOG.md) file for details.
|
|
148
158
|
|
149
159
|
## License
|
150
160
|
|
151
|
-
Copyright (c) 2009-
|
161
|
+
Copyright (c) 2009-2015 Simone Carletti. This is Free Software distributed under the MIT license.
|
data/Rakefile
CHANGED
@@ -5,22 +5,16 @@ $:.unshift(File.dirname(__FILE__) + "/lib")
|
|
5
5
|
require 'public_suffix'
|
6
6
|
|
7
7
|
|
8
|
-
# Common package properties
|
9
|
-
PKG_NAME = PublicSuffix::GEM
|
10
|
-
PKG_VERSION = PublicSuffix::VERSION
|
11
|
-
|
12
|
-
|
13
8
|
# Run test by default.
|
14
|
-
task default
|
15
|
-
|
9
|
+
task :default => :test
|
16
10
|
|
17
11
|
spec = Gem::Specification.new do |s|
|
18
|
-
s.name =
|
19
|
-
s.version =
|
12
|
+
s.name = "public_suffix"
|
13
|
+
s.version = PublicSuffix::VERSION
|
20
14
|
s.summary = "Domain name parser based on the Public Suffix List."
|
21
15
|
s.description = "PublicSuffix can parse and decompose a domain name into top level domain, domain and subdomains."
|
22
16
|
|
23
|
-
s.required_ruby_version = ">=
|
17
|
+
s.required_ruby_version = ">= 2.0"
|
24
18
|
|
25
19
|
s.author = "Simone Carletti"
|
26
20
|
s.email = "weppos@weppos.net"
|
@@ -65,7 +59,7 @@ require 'rake/testtask'
|
|
65
59
|
|
66
60
|
Rake::TestTask.new do |t|
|
67
61
|
t.libs << "test"
|
68
|
-
t.
|
62
|
+
t.pattern = "test/**/*_test.rb"
|
69
63
|
t.verbose = !!ENV["VERBOSE"]
|
70
64
|
t.warning = !!ENV["WARNING"]
|
71
65
|
end
|
@@ -75,7 +69,7 @@ require 'yard'
|
|
75
69
|
require 'yard/rake/yardoc_task'
|
76
70
|
|
77
71
|
YARD::Rake::YardocTask.new(:yardoc) do |y|
|
78
|
-
y.options =
|
72
|
+
y.options = %w( --output-dir yardoc )
|
79
73
|
end
|
80
74
|
|
81
75
|
namespace :yardoc do
|
@@ -93,15 +87,13 @@ task :console do
|
|
93
87
|
end
|
94
88
|
|
95
89
|
|
96
|
-
desc
|
97
|
-
Downloads the Public Suffix List file from the repository and stores it locally.
|
98
|
-
DESC
|
90
|
+
desc "Downloads the Public Suffix List file from the repository and stores it locally."
|
99
91
|
task :upddef do
|
100
92
|
require "net/http"
|
101
93
|
|
102
94
|
DEFINITION_URL = "https://publicsuffix.org/list/effective_tld_names.dat"
|
103
95
|
|
104
|
-
File.open("
|
96
|
+
File.open("data/definitions.txt", "w+") do |f|
|
105
97
|
response = Net::HTTP.get_response(URI.parse(DEFINITION_URL))
|
106
98
|
response.body
|
107
99
|
f.write(response.body)
|
@@ -1130,7 +1130,7 @@ tt.im
|
|
1130
1130
|
tv.im
|
1131
1131
|
|
1132
1132
|
// in : http://en.wikipedia.org/wiki/.in
|
1133
|
-
// see also:
|
1133
|
+
// see also: https://registry.in/Policies
|
1134
1134
|
// Please note, that nic.in is not an offical eTLD, but used by most
|
1135
1135
|
// government institutions.
|
1136
1136
|
in
|
@@ -1598,7 +1598,7 @@ jobs
|
|
1598
1598
|
|
1599
1599
|
// jp : http://en.wikipedia.org/wiki/.jp
|
1600
1600
|
// http://jprs.co.jp/en/jpdomain.html
|
1601
|
-
// Submitted by registry <info@jprs.jp> 2014-
|
1601
|
+
// Submitted by registry <info@jprs.jp> 2014-10-30
|
1602
1602
|
jp
|
1603
1603
|
// jp organizational type names
|
1604
1604
|
ac.jp
|
@@ -1610,7 +1610,7 @@ gr.jp
|
|
1610
1610
|
lg.jp
|
1611
1611
|
ne.jp
|
1612
1612
|
or.jp
|
1613
|
-
// jp
|
1613
|
+
// jp prefecture type names
|
1614
1614
|
aichi.jp
|
1615
1615
|
akita.jp
|
1616
1616
|
aomori.jp
|
@@ -1658,6 +1658,53 @@ wakayama.jp
|
|
1658
1658
|
yamagata.jp
|
1659
1659
|
yamaguchi.jp
|
1660
1660
|
yamanashi.jp
|
1661
|
+
栃木.jp
|
1662
|
+
愛知.jp
|
1663
|
+
愛媛.jp
|
1664
|
+
兵庫.jp
|
1665
|
+
熊本.jp
|
1666
|
+
茨城.jp
|
1667
|
+
北海道.jp
|
1668
|
+
千葉.jp
|
1669
|
+
和歌山.jp
|
1670
|
+
長崎.jp
|
1671
|
+
長野.jp
|
1672
|
+
新潟.jp
|
1673
|
+
青森.jp
|
1674
|
+
静岡.jp
|
1675
|
+
東京.jp
|
1676
|
+
石川.jp
|
1677
|
+
埼玉.jp
|
1678
|
+
三重.jp
|
1679
|
+
京都.jp
|
1680
|
+
佐賀.jp
|
1681
|
+
大分.jp
|
1682
|
+
大阪.jp
|
1683
|
+
奈良.jp
|
1684
|
+
宮城.jp
|
1685
|
+
宮崎.jp
|
1686
|
+
富山.jp
|
1687
|
+
山口.jp
|
1688
|
+
山形.jp
|
1689
|
+
山梨.jp
|
1690
|
+
岩手.jp
|
1691
|
+
岐阜.jp
|
1692
|
+
岡山.jp
|
1693
|
+
島根.jp
|
1694
|
+
広島.jp
|
1695
|
+
徳島.jp
|
1696
|
+
沖縄.jp
|
1697
|
+
滋賀.jp
|
1698
|
+
神奈川.jp
|
1699
|
+
福井.jp
|
1700
|
+
福岡.jp
|
1701
|
+
福島.jp
|
1702
|
+
秋田.jp
|
1703
|
+
群馬.jp
|
1704
|
+
香川.jp
|
1705
|
+
高知.jp
|
1706
|
+
鳥取.jp
|
1707
|
+
鹿児島.jp
|
1661
1708
|
// jp geographic type names
|
1662
1709
|
// http://jprs.jp/doc/rule/saisoku-1.html
|
1663
1710
|
*.kawasaki.jp
|
@@ -5256,27 +5303,30 @@ gop.pk
|
|
5256
5303
|
gos.pk
|
5257
5304
|
info.pk
|
5258
5305
|
|
5259
|
-
// pl
|
5306
|
+
// pl http://www.dns.pl/english/index.html
|
5307
|
+
// confirmed on 26.09.2014 from Bogna Tchórzewska <partner@dns.pl>
|
5260
5308
|
pl
|
5261
|
-
|
5309
|
+
com.pl
|
5310
|
+
net.pl
|
5311
|
+
org.pl
|
5312
|
+
info.pl
|
5313
|
+
waw.pl
|
5314
|
+
gov.pl
|
5315
|
+
// pl functional domains (http://www.dns.pl/english/index.html)
|
5262
5316
|
aid.pl
|
5263
5317
|
agro.pl
|
5264
5318
|
atm.pl
|
5265
5319
|
auto.pl
|
5266
5320
|
biz.pl
|
5267
|
-
com.pl
|
5268
5321
|
edu.pl
|
5269
5322
|
gmina.pl
|
5270
5323
|
gsm.pl
|
5271
|
-
info.pl
|
5272
5324
|
mail.pl
|
5273
5325
|
miasta.pl
|
5274
5326
|
media.pl
|
5275
5327
|
mil.pl
|
5276
|
-
net.pl
|
5277
5328
|
nieruchomosci.pl
|
5278
5329
|
nom.pl
|
5279
|
-
org.pl
|
5280
5330
|
pc.pl
|
5281
5331
|
powiat.pl
|
5282
5332
|
priv.pl
|
@@ -5292,12 +5342,7 @@ tm.pl
|
|
5292
5342
|
tourism.pl
|
5293
5343
|
travel.pl
|
5294
5344
|
turystyka.pl
|
5295
|
-
// ICM functional domains (icm.edu.pl)
|
5296
|
-
6bone.pl
|
5297
|
-
art.pl
|
5298
|
-
mbone.pl
|
5299
5345
|
// Government domains (administred by ippt.gov.pl)
|
5300
|
-
gov.pl
|
5301
5346
|
uw.gov.pl
|
5302
5347
|
um.gov.pl
|
5303
5348
|
ug.gov.pl
|
@@ -5307,11 +5352,7 @@ so.gov.pl
|
|
5307
5352
|
sr.gov.pl
|
5308
5353
|
po.gov.pl
|
5309
5354
|
pa.gov.pl
|
5310
|
-
//
|
5311
|
-
ngo.pl
|
5312
|
-
irc.pl
|
5313
|
-
usenet.pl
|
5314
|
-
// NASK geographical domains : http://www.dns.pl/english/dns-regiony.html
|
5355
|
+
// pl regional domains (http://www.dns.pl/english/index.html)
|
5315
5356
|
augustow.pl
|
5316
5357
|
babia-gora.pl
|
5317
5358
|
bedzin.pl
|
@@ -5397,7 +5438,6 @@ rybnik.pl
|
|
5397
5438
|
rzeszow.pl
|
5398
5439
|
sanok.pl
|
5399
5440
|
sejny.pl
|
5400
|
-
siedlce.pl
|
5401
5441
|
slask.pl
|
5402
5442
|
slupsk.pl
|
5403
5443
|
sosnowiec.pl
|
@@ -5419,7 +5459,6 @@ ustka.pl
|
|
5419
5459
|
walbrzych.pl
|
5420
5460
|
warmia.pl
|
5421
5461
|
warszawa.pl
|
5422
|
-
waw.pl
|
5423
5462
|
wegrow.pl
|
5424
5463
|
wielun.pl
|
5425
5464
|
wlocl.pl
|
@@ -5432,18 +5471,6 @@ zagan.pl
|
|
5432
5471
|
zarow.pl
|
5433
5472
|
zgora.pl
|
5434
5473
|
zgorzelec.pl
|
5435
|
-
// TASK geographical domains (www.task.gda.pl/uslugi/dns)
|
5436
|
-
gda.pl
|
5437
|
-
gdansk.pl
|
5438
|
-
gdynia.pl
|
5439
|
-
med.pl
|
5440
|
-
sopot.pl
|
5441
|
-
// other geographical domains
|
5442
|
-
gliwice.pl
|
5443
|
-
krakow.pl
|
5444
|
-
poznan.pl
|
5445
|
-
wroc.pl
|
5446
|
-
zakopane.pl
|
5447
5474
|
|
5448
5475
|
// pm : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
|
5449
5476
|
pm
|
@@ -5628,7 +5655,7 @@ mari.ru
|
|
5628
5655
|
mari-el.ru
|
5629
5656
|
marine.ru
|
5630
5657
|
mordovia.ru
|
5631
|
-
mosreg.ru
|
5658
|
+
// mosreg.ru Bug 1090800 - removed at request of Aleksey Konstantinov <konstantinovav@mosreg.ru>
|
5632
5659
|
msk.ru
|
5633
5660
|
murmansk.ru
|
5634
5661
|
nalchik.ru
|
@@ -5879,6 +5906,38 @@ store.st
|
|
5879
5906
|
|
5880
5907
|
// su : http://en.wikipedia.org/wiki/.su
|
5881
5908
|
su
|
5909
|
+
adygeya.su
|
5910
|
+
arkhangelsk.su
|
5911
|
+
balashov.su
|
5912
|
+
bashkiria.su
|
5913
|
+
bryansk.su
|
5914
|
+
dagestan.su
|
5915
|
+
grozny.su
|
5916
|
+
ivanovo.su
|
5917
|
+
kalmykia.su
|
5918
|
+
kaluga.su
|
5919
|
+
karelia.su
|
5920
|
+
khakassia.su
|
5921
|
+
krasnodar.su
|
5922
|
+
kurgan.su
|
5923
|
+
lenug.su
|
5924
|
+
mordovia.su
|
5925
|
+
msk.su
|
5926
|
+
murmansk.su
|
5927
|
+
nalchik.su
|
5928
|
+
nov.su
|
5929
|
+
obninsk.su
|
5930
|
+
penza.su
|
5931
|
+
pokrovsk.su
|
5932
|
+
sochi.su
|
5933
|
+
spb.su
|
5934
|
+
togliatti.su
|
5935
|
+
troitsk.su
|
5936
|
+
tula.su
|
5937
|
+
tuva.su
|
5938
|
+
vladikavkaz.su
|
5939
|
+
vladimir.su
|
5940
|
+
vologda.su
|
5882
5941
|
|
5883
5942
|
// sv : http://www.svnet.org.sv/niveldos.pdf
|
5884
5943
|
sv
|
@@ -6753,7 +6812,10 @@ xxx
|
|
6753
6812
|
*.zw
|
6754
6813
|
|
6755
6814
|
|
6756
|
-
// List of new gTLDs imported from https://newgtlds.icann.org/newgtlds.csv on
|
6815
|
+
// List of new gTLDs imported from https://newgtlds.icann.org/newgtlds.csv on 2015-01-27T00:02:07Z
|
6816
|
+
|
6817
|
+
// abb : 2014-10-24 ABB Ltd
|
6818
|
+
abb
|
6757
6819
|
|
6758
6820
|
// abbott : 2014-07-24 Abbott Laboratories, Inc.
|
6759
6821
|
abbott
|
@@ -6767,24 +6829,51 @@ academy
|
|
6767
6829
|
// accenture : 2014-08-15 Accenture plc
|
6768
6830
|
accenture
|
6769
6831
|
|
6832
|
+
// accountant : 2014-11-20 dot Accountant Limited
|
6833
|
+
accountant
|
6834
|
+
|
6770
6835
|
// accountants : 2014-03-20 Knob Town, LLC
|
6771
6836
|
accountants
|
6772
6837
|
|
6838
|
+
// aco : 2015-01-08 ACO Severin Ahlmann GmbH & Co. KG
|
6839
|
+
aco
|
6840
|
+
|
6773
6841
|
// active : 2014-05-01 The Active Network, Inc
|
6774
6842
|
active
|
6775
6843
|
|
6776
6844
|
// actor : 2013-12-12 United TLD Holdco Ltd.
|
6777
6845
|
actor
|
6778
6846
|
|
6847
|
+
// ads : 2014-12-04 Charleston Road Registry Inc.
|
6848
|
+
ads
|
6849
|
+
|
6850
|
+
// adult : 2014-10-16 ICM Registry AD LLC
|
6851
|
+
adult
|
6852
|
+
|
6853
|
+
// afl : 2014-10-02 Australian Football League
|
6854
|
+
afl
|
6855
|
+
|
6779
6856
|
// africa : 2014-03-24 ZA Central Registry NPC trading as Registry.Africa
|
6780
6857
|
africa
|
6781
6858
|
|
6782
6859
|
// agency : 2013-11-14 Steel Falls, LLC
|
6783
6860
|
agency
|
6784
6861
|
|
6862
|
+
// aig : 2014-12-18 American International Group, Inc.
|
6863
|
+
aig
|
6864
|
+
|
6785
6865
|
// airforce : 2014-03-06 United TLD Holdco Ltd.
|
6786
6866
|
airforce
|
6787
6867
|
|
6868
|
+
// airtel : 2014-10-24 Bharti Airtel Limited
|
6869
|
+
airtel
|
6870
|
+
|
6871
|
+
// alibaba : 2015-01-15 Alibaba Group Holding Limited
|
6872
|
+
alibaba
|
6873
|
+
|
6874
|
+
// alipay : 2015-01-15 Alibaba Group Holding Limited
|
6875
|
+
alipay
|
6876
|
+
|
6788
6877
|
// allfinanz : 2014-07-03 Allfinanz Deutsche Vermögensberatung Aktiengesellschaft
|
6789
6878
|
allfinanz
|
6790
6879
|
|
@@ -6794,45 +6883,84 @@ alsace
|
|
6794
6883
|
// amsterdam : 2014-07-24 Gemeente Amsterdam
|
6795
6884
|
amsterdam
|
6796
6885
|
|
6886
|
+
// analytics : 2014-12-18 Campus IP LLC
|
6887
|
+
analytics
|
6888
|
+
|
6797
6889
|
// android : 2014-08-07 Charleston Road Registry Inc.
|
6798
6890
|
android
|
6799
6891
|
|
6892
|
+
// anquan : 2015-01-08 QIHOO 360 TECHNOLOGY CO. LTD.
|
6893
|
+
anquan
|
6894
|
+
|
6895
|
+
// apartments : 2014-12-11 June Maple, LLC
|
6896
|
+
apartments
|
6897
|
+
|
6800
6898
|
// aquarelle : 2014-07-24 Aquarelle.com
|
6801
6899
|
aquarelle
|
6802
6900
|
|
6901
|
+
// aramco : 2014-11-20 Aramco Services Company
|
6902
|
+
aramco
|
6903
|
+
|
6803
6904
|
// archi : 2014-02-06 STARTING DOT LIMITED
|
6804
6905
|
archi
|
6805
6906
|
|
6806
6907
|
// army : 2014-03-06 United TLD Holdco Ltd.
|
6807
6908
|
army
|
6808
6909
|
|
6910
|
+
// arte : 2014-12-11 Association Relative à la Télévision Européenne G.E.I.E.
|
6911
|
+
arte
|
6912
|
+
|
6809
6913
|
// associates : 2014-03-06 Baxter Hill, LLC
|
6810
6914
|
associates
|
6811
6915
|
|
6812
|
-
// attorney : 2014-03-20
|
6916
|
+
// attorney : 2014-03-20
|
6813
6917
|
attorney
|
6814
6918
|
|
6815
|
-
// auction : 2014-03-20
|
6919
|
+
// auction : 2014-03-20
|
6816
6920
|
auction
|
6817
6921
|
|
6818
6922
|
// audio : 2014-03-20 Uniregistry, Corp.
|
6819
6923
|
audio
|
6820
6924
|
|
6925
|
+
// author : 2014-12-18 Amazon EU S.à r.l.
|
6926
|
+
author
|
6927
|
+
|
6928
|
+
// auto : 2014-11-13 Uniregistry, Corp.
|
6929
|
+
auto
|
6930
|
+
|
6821
6931
|
// autos : 2014-01-09 DERAutos, LLC
|
6822
6932
|
autos
|
6823
6933
|
|
6934
|
+
// avianca : 2015-01-08 Aerovias del Continente Americano S.A. Avianca
|
6935
|
+
avianca
|
6936
|
+
|
6824
6937
|
// axa : 2013-12-19 AXA SA
|
6825
6938
|
axa
|
6826
6939
|
|
6827
|
-
//
|
6940
|
+
// azure : 2014-12-18 Microsoft Corporation
|
6941
|
+
azure
|
6942
|
+
|
6943
|
+
// baidu : 2015-01-08 Baidu, Inc.
|
6944
|
+
baidu
|
6945
|
+
|
6946
|
+
// band : 2014-06-12
|
6828
6947
|
band
|
6829
6948
|
|
6949
|
+
// bank : 2014-09-25 fTLD Registry Services LLC
|
6950
|
+
bank
|
6951
|
+
|
6830
6952
|
// bar : 2013-12-12 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
|
6831
6953
|
bar
|
6832
6954
|
|
6833
6955
|
// barcelona : 2014-07-24 Municipi de Barcelona
|
6834
6956
|
barcelona
|
6835
6957
|
|
6958
|
+
// barclaycard : 2014-11-20 Barclays Bank PLC
|
6959
|
+
barclaycard
|
6960
|
+
|
6961
|
+
// barclays : 2014-11-20 Barclays Bank PLC
|
6962
|
+
barclays
|
6963
|
+
|
6836
6964
|
// bargains : 2013-11-14 Half Hallow, LLC
|
6837
6965
|
bargains
|
6838
6966
|
|
@@ -6842,12 +6970,21 @@ bauhaus
|
|
6842
6970
|
// bayern : 2014-01-23 Bayern Connect GmbH
|
6843
6971
|
bayern
|
6844
6972
|
|
6973
|
+
// bbc : 2014-12-18 British Broadcasting Corporation
|
6974
|
+
bbc
|
6975
|
+
|
6976
|
+
// bbva : 2014-10-02 BANCO BILBAO VIZCAYA ARGENTARIA, S.A.
|
6977
|
+
bbva
|
6978
|
+
|
6845
6979
|
// bcn : 2014-07-24 Municipi de Barcelona
|
6846
6980
|
bcn
|
6847
6981
|
|
6848
6982
|
// beer : 2014-01-09 Top Level Domain Holdings Limited
|
6849
6983
|
beer
|
6850
6984
|
|
6985
|
+
// bentley : 2014-12-18 Bentley Motors Limited
|
6986
|
+
bentley
|
6987
|
+
|
6851
6988
|
// berlin : 2013-10-31 dotBERLIN GmbH & Co. KG
|
6852
6989
|
berlin
|
6853
6990
|
|
@@ -6866,6 +7003,12 @@ bid
|
|
6866
7003
|
// bike : 2013-08-27 Grand Hollow, LLC
|
6867
7004
|
bike
|
6868
7005
|
|
7006
|
+
// bing : 2014-12-18 Microsoft Corporation
|
7007
|
+
bing
|
7008
|
+
|
7009
|
+
// bingo : 2014-12-04 Sand Cedar, LLC
|
7010
|
+
bingo
|
7011
|
+
|
6869
7012
|
// bio : 2014-03-06 STARTING DOT LIMITED
|
6870
7013
|
bio
|
6871
7014
|
|
@@ -6881,6 +7024,9 @@ bloomberg
|
|
6881
7024
|
// blue : 2013-11-07 Afilias Limited
|
6882
7025
|
blue
|
6883
7026
|
|
7027
|
+
// bms : 2014-10-30 Bristol-Myers Squibb Company
|
7028
|
+
bms
|
7029
|
+
|
6884
7030
|
// bmw : 2014-01-09 Bayerische Motoren Werke Aktiengesellschaft
|
6885
7031
|
bmw
|
6886
7032
|
|
@@ -6890,15 +7036,39 @@ bnl
|
|
6890
7036
|
// bnpparibas : 2014-05-29 BNP Paribas
|
6891
7037
|
bnpparibas
|
6892
7038
|
|
7039
|
+
// boats : 2014-12-04 DERBoats, LLC
|
7040
|
+
boats
|
7041
|
+
|
7042
|
+
// bom : 2014-10-16 Núcleo de Informação e Coordenação do Ponto BR - NIC.br
|
7043
|
+
bom
|
7044
|
+
|
6893
7045
|
// bond : 2014-06-05 Bond University Limited
|
6894
7046
|
bond
|
6895
7047
|
|
6896
7048
|
// boo : 2014-01-30 Charleston Road Registry Inc.
|
6897
7049
|
boo
|
6898
7050
|
|
7051
|
+
// boots : 2015-01-08 THE BOOTS COMPANY PLC
|
7052
|
+
boots
|
7053
|
+
|
7054
|
+
// bot : 2014-12-18 Amazon EU S.à r.l.
|
7055
|
+
bot
|
7056
|
+
|
6899
7057
|
// boutique : 2013-11-14 Over Galley, LLC
|
6900
7058
|
boutique
|
6901
7059
|
|
7060
|
+
// bradesco : 2014-12-18 Banco Bradesco S.A.
|
7061
|
+
bradesco
|
7062
|
+
|
7063
|
+
// bridgestone : 2014-12-18 Bridgestone Corporation
|
7064
|
+
bridgestone
|
7065
|
+
|
7066
|
+
// broadway : 2014-12-22 Celebrate Broadway, Inc.
|
7067
|
+
broadway
|
7068
|
+
|
7069
|
+
// broker : 2014-12-11 IG Group Holdings PLC
|
7070
|
+
broker
|
7071
|
+
|
6902
7072
|
// brussels : 2014-02-06 DNS.be vzw
|
6903
7073
|
brussels
|
6904
7074
|
|
@@ -6914,6 +7084,9 @@ builders
|
|
6914
7084
|
// business : 2013-11-07 Spring Cross, LLC
|
6915
7085
|
business
|
6916
7086
|
|
7087
|
+
// buy : 2014-12-18 Amazon EU S.à r.l.
|
7088
|
+
buy
|
7089
|
+
|
6917
7090
|
// buzz : 2013-10-02 DOTSTRATEGY CO.
|
6918
7091
|
buzz
|
6919
7092
|
|
@@ -6926,6 +7099,9 @@ cab
|
|
6926
7099
|
// cal : 2014-07-24 Charleston Road Registry Inc.
|
6927
7100
|
cal
|
6928
7101
|
|
7102
|
+
// call : 2014-12-18 Amazon EU S.à r.l.
|
7103
|
+
call
|
7104
|
+
|
6929
7105
|
// camera : 2013-08-27 Atomic Maple, LLC
|
6930
7106
|
camera
|
6931
7107
|
|
@@ -6935,12 +7111,18 @@ camp
|
|
6935
7111
|
// cancerresearch : 2014-05-15 Australian Cancer Research Foundation
|
6936
7112
|
cancerresearch
|
6937
7113
|
|
7114
|
+
// canon : 2014-09-12 Canon Inc.
|
7115
|
+
canon
|
7116
|
+
|
6938
7117
|
// capetown : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
|
6939
7118
|
capetown
|
6940
7119
|
|
6941
7120
|
// capital : 2014-03-06 Delta Mill, LLC
|
6942
7121
|
capital
|
6943
7122
|
|
7123
|
+
// car : 2015-01-22 Charleston Road Registry Inc.
|
7124
|
+
car
|
7125
|
+
|
6944
7126
|
// caravan : 2013-12-12 Caravan International, Inc.
|
6945
7127
|
caravan
|
6946
7128
|
|
@@ -6956,6 +7138,9 @@ career
|
|
6956
7138
|
// careers : 2013-10-02 Wild Corner, LLC
|
6957
7139
|
careers
|
6958
7140
|
|
7141
|
+
// cars : 2014-11-13 Uniregistry, Corp.
|
7142
|
+
cars
|
7143
|
+
|
6959
7144
|
// cartier : 2014-06-23 Richemont DNS Inc.
|
6960
7145
|
cartier
|
6961
7146
|
|
@@ -6965,6 +7150,9 @@ casa
|
|
6965
7150
|
// cash : 2014-03-06 Delta Lake, LLC
|
6966
7151
|
cash
|
6967
7152
|
|
7153
|
+
// casino : 2014-12-18 Binky Sky, LLC
|
7154
|
+
casino
|
7155
|
+
|
6968
7156
|
// catering : 2013-12-05 New Falls. LLC
|
6969
7157
|
catering
|
6970
7158
|
|
@@ -6986,12 +7174,21 @@ cern
|
|
6986
7174
|
// cfa : 2014-08-28 CFA Institute
|
6987
7175
|
cfa
|
6988
7176
|
|
7177
|
+
// cfd : 2014-12-11 IG Group Holdings PLC
|
7178
|
+
cfd
|
7179
|
+
|
6989
7180
|
// channel : 2014-05-08 Charleston Road Registry Inc.
|
6990
7181
|
channel
|
6991
7182
|
|
7183
|
+
// chat : 2014-12-04 Sand Fields, LLC
|
7184
|
+
chat
|
7185
|
+
|
6992
7186
|
// cheap : 2013-11-14 Sand Cover, LLC
|
6993
7187
|
cheap
|
6994
7188
|
|
7189
|
+
// chloe : 2014-10-16 Richemont DNS Inc.
|
7190
|
+
chloe
|
7191
|
+
|
6995
7192
|
// christmas : 2013-11-21 Uniregistry, Corp.
|
6996
7193
|
christmas
|
6997
7194
|
|
@@ -7001,12 +7198,21 @@ chrome
|
|
7001
7198
|
// church : 2014-02-06 Holly Fileds, LLC
|
7002
7199
|
church
|
7003
7200
|
|
7201
|
+
// circle : 2014-12-18 Amazon EU S.à r.l.
|
7202
|
+
circle
|
7203
|
+
|
7204
|
+
// cisco : 2014-12-22 Cisco Technology, Inc.
|
7205
|
+
cisco
|
7206
|
+
|
7004
7207
|
// citic : 2014-01-09 CITIC Group Corporation
|
7005
7208
|
citic
|
7006
7209
|
|
7007
7210
|
// city : 2014-05-29 Snow Sky, LLC
|
7008
7211
|
city
|
7009
7212
|
|
7213
|
+
// cityeats : 2014-12-11 Lifestyle Domain Holdings, Inc.
|
7214
|
+
cityeats
|
7215
|
+
|
7010
7216
|
// claims : 2014-03-20 Black Corner, LLC
|
7011
7217
|
claims
|
7012
7218
|
|
@@ -7025,6 +7231,9 @@ clothing
|
|
7025
7231
|
// club : 2013-11-08 .CLUB DOMAINS, LLC
|
7026
7232
|
club
|
7027
7233
|
|
7234
|
+
// coach : 2014-10-09 Koko Island, LLC
|
7235
|
+
coach
|
7236
|
+
|
7028
7237
|
// codes : 2013-10-31 Puff Willow, LLC
|
7029
7238
|
codes
|
7030
7239
|
|
@@ -7049,15 +7258,21 @@ company
|
|
7049
7258
|
// computer : 2013-10-24 Pine Mill, LLC
|
7050
7259
|
computer
|
7051
7260
|
|
7261
|
+
// comsec : 2015-01-08 VeriSign, Inc.
|
7262
|
+
comsec
|
7263
|
+
|
7052
7264
|
// condos : 2013-12-05 Pine House, LLC
|
7053
7265
|
condos
|
7054
7266
|
|
7055
7267
|
// construction : 2013-09-16 Fox Dynamite, LLC
|
7056
7268
|
construction
|
7057
7269
|
|
7058
|
-
// consulting : 2013-12-05
|
7270
|
+
// consulting : 2013-12-05
|
7059
7271
|
consulting
|
7060
7272
|
|
7273
|
+
// contact : 2015-01-08 Top Level Spectrum, Inc.
|
7274
|
+
contact
|
7275
|
+
|
7061
7276
|
// contractors : 2013-09-10 Magic Woods, LLC
|
7062
7277
|
contractors
|
7063
7278
|
|
@@ -7067,27 +7282,48 @@ cooking
|
|
7067
7282
|
// cool : 2013-11-14 Koko Lake, LLC
|
7068
7283
|
cool
|
7069
7284
|
|
7285
|
+
// corsica : 2014-09-25 Collectivité Territoriale de Corse
|
7286
|
+
corsica
|
7287
|
+
|
7070
7288
|
// country : 2013-12-19 Top Level Domain Holdings Limited
|
7071
7289
|
country
|
7072
7290
|
|
7291
|
+
// courses : 2014-12-04 OPEN UNIVERSITIES AUSTRALIA PTY LTD
|
7292
|
+
courses
|
7293
|
+
|
7073
7294
|
// credit : 2014-03-20 Snow Shadow, LLC
|
7074
7295
|
credit
|
7075
7296
|
|
7076
7297
|
// creditcard : 2014-03-20 Binky Frostbite, LLC
|
7077
7298
|
creditcard
|
7078
7299
|
|
7300
|
+
// creditunion : 2015-01-22 CUNA Performance Resources, LLC
|
7301
|
+
creditunion
|
7302
|
+
|
7303
|
+
// cricket : 2014-10-09 dot Cricket Limited
|
7304
|
+
cricket
|
7305
|
+
|
7306
|
+
// crown : 2014-10-24 Crown Equipment Corporation
|
7307
|
+
crown
|
7308
|
+
|
7079
7309
|
// crs : 2014-04-03 Federated Co-operatives Limited
|
7080
7310
|
crs
|
7081
7311
|
|
7082
7312
|
// cruises : 2013-12-05 Spring Way, LLC
|
7083
7313
|
cruises
|
7084
7314
|
|
7315
|
+
// csc : 2014-09-25 Alliance-One Services, Inc.
|
7316
|
+
csc
|
7317
|
+
|
7085
7318
|
// cuisinella : 2014-04-03 SALM S.A.S.
|
7086
7319
|
cuisinella
|
7087
7320
|
|
7088
7321
|
// cymru : 2014-05-08 Nominet UK
|
7089
7322
|
cymru
|
7090
7323
|
|
7324
|
+
// cyou : 2015-01-22 Beijing Gamease Age Digital Technology Co., Ltd.
|
7325
|
+
cyou
|
7326
|
+
|
7091
7327
|
// dabur : 2014-02-06 Dabur India Limited
|
7092
7328
|
dabur
|
7093
7329
|
|
@@ -7097,6 +7333,9 @@ dad
|
|
7097
7333
|
// dance : 2013-10-24 United TLD Holdco Ltd.
|
7098
7334
|
dance
|
7099
7335
|
|
7336
|
+
// date : 2014-11-20 dot Date Limited
|
7337
|
+
date
|
7338
|
+
|
7100
7339
|
// dating : 2013-12-05 Pine Fest, LLC
|
7101
7340
|
dating
|
7102
7341
|
|
@@ -7106,24 +7345,42 @@ datsun
|
|
7106
7345
|
// day : 2014-01-30 Charleston Road Registry Inc.
|
7107
7346
|
day
|
7108
7347
|
|
7348
|
+
// dclk : 2014-11-20 Charleston Road Registry Inc.
|
7349
|
+
dclk
|
7350
|
+
|
7351
|
+
// dealer : 2014-12-22 Dealer Dot Com, Inc.
|
7352
|
+
dealer
|
7353
|
+
|
7109
7354
|
// deals : 2014-05-22 Sand Sunset, LLC
|
7110
7355
|
deals
|
7111
7356
|
|
7112
|
-
// degree : 2014-03-06
|
7357
|
+
// degree : 2014-03-06
|
7113
7358
|
degree
|
7114
7359
|
|
7360
|
+
// delivery : 2014-09-11 Steel Station, LLC
|
7361
|
+
delivery
|
7362
|
+
|
7363
|
+
// dell : 2014-10-24 Dell Inc.
|
7364
|
+
dell
|
7365
|
+
|
7115
7366
|
// democrat : 2013-10-24 United TLD Holdco Ltd.
|
7116
7367
|
democrat
|
7117
7368
|
|
7118
7369
|
// dental : 2014-03-20 Tin Birch, LLC
|
7119
7370
|
dental
|
7120
7371
|
|
7121
|
-
// dentist : 2014-03-20
|
7372
|
+
// dentist : 2014-03-20
|
7122
7373
|
dentist
|
7123
7374
|
|
7124
7375
|
// desi : 2013-11-14 Desi Networks LLC
|
7125
7376
|
desi
|
7126
7377
|
|
7378
|
+
// design : 2014-11-07 Top Level Design, LLC
|
7379
|
+
design
|
7380
|
+
|
7381
|
+
// dev : 2014-10-16 Charleston Road Registry Inc.
|
7382
|
+
dev
|
7383
|
+
|
7127
7384
|
// diamonds : 2013-09-22 John Edge, LLC
|
7128
7385
|
diamonds
|
7129
7386
|
|
@@ -7145,21 +7402,42 @@ discount
|
|
7145
7402
|
// dnp : 2013-12-13 Dai Nippon Printing Co., Ltd.
|
7146
7403
|
dnp
|
7147
7404
|
|
7405
|
+
// docs : 2014-10-16 Charleston Road Registry Inc.
|
7406
|
+
docs
|
7407
|
+
|
7408
|
+
// dog : 2014-12-04 Koko Mill, LLC
|
7409
|
+
dog
|
7410
|
+
|
7411
|
+
// doha : 2014-09-18 Communications Regulatory Authority (CRA)
|
7412
|
+
doha
|
7413
|
+
|
7148
7414
|
// domains : 2013-10-17 Sugar Cross, LLC
|
7149
7415
|
domains
|
7150
7416
|
|
7151
7417
|
// doosan : 2014-04-03 Doosan Corporation
|
7152
7418
|
doosan
|
7153
7419
|
|
7420
|
+
// download : 2014-11-20 dot Support Limited
|
7421
|
+
download
|
7422
|
+
|
7423
|
+
// dubai : 2015-01-01 Dubai Smart Government Department
|
7424
|
+
dubai
|
7425
|
+
|
7154
7426
|
// durban : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
|
7155
7427
|
durban
|
7156
7428
|
|
7157
7429
|
// dvag : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG
|
7158
7430
|
dvag
|
7159
7431
|
|
7432
|
+
// earth : 2014-12-04 Interlink Co., Ltd.
|
7433
|
+
earth
|
7434
|
+
|
7160
7435
|
// eat : 2014-01-23 Charleston Road Registry Inc.
|
7161
7436
|
eat
|
7162
7437
|
|
7438
|
+
// edeka : 2014-12-18 EDEKA Verband kaufmännischer Genossenschaften e.V.
|
7439
|
+
edeka
|
7440
|
+
|
7163
7441
|
// education : 2013-11-07 Brice Way, LLC
|
7164
7442
|
education
|
7165
7443
|
|
@@ -7169,6 +7447,9 @@ email
|
|
7169
7447
|
// emerck : 2014-04-03 Merck KGaA
|
7170
7448
|
emerck
|
7171
7449
|
|
7450
|
+
// energy : 2014-09-11 Binky Birch, LLC
|
7451
|
+
energy
|
7452
|
+
|
7172
7453
|
// engineer : 2014-03-06 United TLD Holdco Ltd.
|
7173
7454
|
engineer
|
7174
7455
|
|
@@ -7178,6 +7459,9 @@ engineering
|
|
7178
7459
|
// enterprises : 2013-09-20 Snow Oaks, LLC
|
7179
7460
|
enterprises
|
7180
7461
|
|
7462
|
+
// epson : 2014-12-04 Seiko Epson Corporation
|
7463
|
+
epson
|
7464
|
+
|
7181
7465
|
// equipment : 2013-08-27 Corn Station, LLC
|
7182
7466
|
equipment
|
7183
7467
|
|
@@ -7211,27 +7495,54 @@ expert
|
|
7211
7495
|
// exposed : 2013-12-05 Victor Beach, LLC
|
7212
7496
|
exposed
|
7213
7497
|
|
7498
|
+
// fage : 2014-12-18 Fage International S.A.
|
7499
|
+
fage
|
7500
|
+
|
7214
7501
|
// fail : 2014-03-06 Atomic Pipe, LLC
|
7215
7502
|
fail
|
7216
7503
|
|
7217
|
-
//
|
7504
|
+
// fairwinds : 2014-11-13 FairWinds Partners, LLC
|
7505
|
+
fairwinds
|
7506
|
+
|
7507
|
+
// faith : 2014-11-20 dot Faith Limited
|
7508
|
+
faith
|
7509
|
+
|
7510
|
+
// fan : 2014-03-06
|
7218
7511
|
fan
|
7219
7512
|
|
7513
|
+
// fans : 2014-11-07 Asiamix Digital Limited
|
7514
|
+
fans
|
7515
|
+
|
7220
7516
|
// farm : 2013-11-07 Just Maple, LLC
|
7221
7517
|
farm
|
7222
7518
|
|
7223
7519
|
// fashion : 2014-07-03 Top Level Domain Holdings Limited
|
7224
7520
|
fashion
|
7225
7521
|
|
7522
|
+
// fast : 2014-12-18 Amazon EU S.à r.l.
|
7523
|
+
fast
|
7524
|
+
|
7226
7525
|
// feedback : 2013-12-19 Top Level Spectrum, Inc.
|
7227
7526
|
feedback
|
7228
7527
|
|
7528
|
+
// ferrero : 2014-12-18 Ferrero Trading Lux S.A.
|
7529
|
+
ferrero
|
7530
|
+
|
7531
|
+
// film : 2015-01-08 Motion Picture Domain Registry Pty Ltd
|
7532
|
+
film
|
7533
|
+
|
7534
|
+
// final : 2014-10-16 Núcleo de Informação e Coordenação do Ponto BR - NIC.br
|
7535
|
+
final
|
7536
|
+
|
7229
7537
|
// finance : 2014-03-20 Cotton Cypress, LLC
|
7230
7538
|
finance
|
7231
7539
|
|
7232
7540
|
// financial : 2014-03-06 Just Cover, LLC
|
7233
7541
|
financial
|
7234
7542
|
|
7543
|
+
// firestone : 2014-12-18 Bridgestone Corporation
|
7544
|
+
firestone
|
7545
|
+
|
7235
7546
|
// firmdale : 2014-03-27 Firmdale Holdings Limited
|
7236
7547
|
firmdale
|
7237
7548
|
|
@@ -7241,6 +7552,9 @@ fish
|
|
7241
7552
|
// fishing : 2013-11-21 Top Level Domain Holdings Limited
|
7242
7553
|
fishing
|
7243
7554
|
|
7555
|
+
// fit : 2014-11-07 Top Level Domain Holdings Limited
|
7556
|
+
fit
|
7557
|
+
|
7244
7558
|
// fitness : 2014-03-06 Brice Orchard, LLC
|
7245
7559
|
fitness
|
7246
7560
|
|
@@ -7250,6 +7564,9 @@ flights
|
|
7250
7564
|
// florist : 2013-11-07 Half Cypress, LLC
|
7251
7565
|
florist
|
7252
7566
|
|
7567
|
+
// flowers : 2014-10-09 Uniregistry, Corp.
|
7568
|
+
flowers
|
7569
|
+
|
7253
7570
|
// flsmidth : 2014-07-24 FLSmidth A/S
|
7254
7571
|
flsmidth
|
7255
7572
|
|
@@ -7259,7 +7576,16 @@ fly
|
|
7259
7576
|
// foo : 2014-01-23 Charleston Road Registry Inc.
|
7260
7577
|
foo
|
7261
7578
|
|
7262
|
-
//
|
7579
|
+
// football : 2014-12-18 Foggy Farms, LLC
|
7580
|
+
football
|
7581
|
+
|
7582
|
+
// ford : 2014-11-13 Ford Motor Company
|
7583
|
+
ford
|
7584
|
+
|
7585
|
+
// forex : 2014-12-11 IG Group Holdings PLC
|
7586
|
+
forex
|
7587
|
+
|
7588
|
+
// forsale : 2014-05-22
|
7263
7589
|
forsale
|
7264
7590
|
|
7265
7591
|
// foundation : 2013-12-05 John Dale, LLC
|
@@ -7277,7 +7603,7 @@ fund
|
|
7277
7603
|
// furniture : 2014-03-20 Lone Fields, LLC
|
7278
7604
|
furniture
|
7279
7605
|
|
7280
|
-
// futbol : 2013-09-20
|
7606
|
+
// futbol : 2013-09-20
|
7281
7607
|
futbol
|
7282
7608
|
|
7283
7609
|
// gal : 2013-11-07 Asociación puntoGAL
|
@@ -7295,6 +7621,9 @@ gbiz
|
|
7295
7621
|
// gdn : 2014-07-31 Joint Stock Company \
|
7296
7622
|
gdn
|
7297
7623
|
|
7624
|
+
// gea : 2014-12-04 GEA Group Aktiengesellschaft
|
7625
|
+
gea
|
7626
|
+
|
7298
7627
|
// gent : 2014-01-23 COMBELL GROUP NV/SA
|
7299
7628
|
gent
|
7300
7629
|
|
@@ -7310,6 +7639,9 @@ gifts
|
|
7310
7639
|
// gives : 2014-03-06 United TLD Holdco Ltd.
|
7311
7640
|
gives
|
7312
7641
|
|
7642
|
+
// giving : 2014-11-13 Giving Limited
|
7643
|
+
giving
|
7644
|
+
|
7313
7645
|
// glass : 2013-11-07 Black Cover, LLC
|
7314
7646
|
glass
|
7315
7647
|
|
@@ -7331,12 +7663,30 @@ gmo
|
|
7331
7663
|
// gmx : 2014-04-24 1&1 Mail & Media GmbH
|
7332
7664
|
gmx
|
7333
7665
|
|
7666
|
+
// gold : 2015-01-22 June Edge, LLC
|
7667
|
+
gold
|
7668
|
+
|
7669
|
+
// goldpoint : 2014-11-20 YODOBASHI CAMERA CO.,LTD.
|
7670
|
+
goldpoint
|
7671
|
+
|
7672
|
+
// golf : 2014-12-18 Lone falls, LLC
|
7673
|
+
golf
|
7674
|
+
|
7675
|
+
// goo : 2014-12-18 NTT Resonant Inc.
|
7676
|
+
goo
|
7677
|
+
|
7678
|
+
// goog : 2014-11-20 Charleston Road Registry Inc.
|
7679
|
+
goog
|
7680
|
+
|
7334
7681
|
// google : 2014-07-24 Charleston Road Registry Inc.
|
7335
7682
|
google
|
7336
7683
|
|
7337
7684
|
// gop : 2014-01-16 Republican State Leadership Committee, Inc.
|
7338
7685
|
gop
|
7339
7686
|
|
7687
|
+
// got : 2014-12-18 Amazon EU S.à r.l.
|
7688
|
+
got
|
7689
|
+
|
7340
7690
|
// graphics : 2013-09-13 Over Madison, LLC
|
7341
7691
|
graphics
|
7342
7692
|
|
@@ -7352,6 +7702,9 @@ gripe
|
|
7352
7702
|
// group : 2014-08-15 Romeo Town, LLC
|
7353
7703
|
group
|
7354
7704
|
|
7705
|
+
// gucci : 2014-11-13 Guccio Gucci S.p.a.
|
7706
|
+
gucci
|
7707
|
+
|
7355
7708
|
// guge : 2014-08-28 Charleston Road Registry Inc.
|
7356
7709
|
guge
|
7357
7710
|
|
@@ -7367,7 +7720,10 @@ guru
|
|
7367
7720
|
// hamburg : 2014-02-20 Hamburg Top-Level-Domain GmbH
|
7368
7721
|
hamburg
|
7369
7722
|
|
7370
|
-
//
|
7723
|
+
// hangout : 2014-11-13 Charleston Road Registry Inc.
|
7724
|
+
hangout
|
7725
|
+
|
7726
|
+
// haus : 2013-12-05
|
7371
7727
|
haus
|
7372
7728
|
|
7373
7729
|
// healthcare : 2014-06-12 Silver Glen, LLC
|
@@ -7385,6 +7741,9 @@ hermes
|
|
7385
7741
|
// hiphop : 2014-03-06 Uniregistry, Corp.
|
7386
7742
|
hiphop
|
7387
7743
|
|
7744
|
+
// hitachi : 2014-10-31 Hitachi, Ltd.
|
7745
|
+
hitachi
|
7746
|
+
|
7388
7747
|
// hiv : 2014-03-13 dotHIV gemeinnuetziger e.V.
|
7389
7748
|
hiv
|
7390
7749
|
|
@@ -7397,6 +7756,9 @@ holiday
|
|
7397
7756
|
// homes : 2014-01-09 DERHomes, LLC
|
7398
7757
|
homes
|
7399
7758
|
|
7759
|
+
// honda : 2014-12-18 Honda Motor Co., Ltd.
|
7760
|
+
honda
|
7761
|
+
|
7400
7762
|
// horse : 2013-11-21 Top Level Domain Holdings Limited
|
7401
7763
|
horse
|
7402
7764
|
|
@@ -7406,15 +7768,27 @@ host
|
|
7406
7768
|
// hosting : 2014-05-29 Uniregistry, Corp.
|
7407
7769
|
hosting
|
7408
7770
|
|
7771
|
+
// hotmail : 2014-12-18 Microsoft Corporation
|
7772
|
+
hotmail
|
7773
|
+
|
7409
7774
|
// house : 2013-11-07 Sugar Park, LLC
|
7410
7775
|
house
|
7411
7776
|
|
7412
7777
|
// how : 2014-01-23 Charleston Road Registry Inc.
|
7413
7778
|
how
|
7414
7779
|
|
7780
|
+
// hsbc : 2014-10-24 HSBC Holdings PLC
|
7781
|
+
hsbc
|
7782
|
+
|
7415
7783
|
// ibm : 2014-07-31 International Business Machines Corporation
|
7416
7784
|
ibm
|
7417
7785
|
|
7786
|
+
// ice : 2014-10-30 IntercontinentalExchange, Inc.
|
7787
|
+
ice
|
7788
|
+
|
7789
|
+
// icu : 2015-01-08 One.com A/S
|
7790
|
+
icu
|
7791
|
+
|
7418
7792
|
// ifm : 2014-01-30 ifm electronic gmbh
|
7419
7793
|
ifm
|
7420
7794
|
|
@@ -7463,27 +7837,57 @@ ist
|
|
7463
7837
|
// istanbul : 2014-08-28 Istanbul Metropolitan Municipality
|
7464
7838
|
istanbul
|
7465
7839
|
|
7840
|
+
// itau : 2014-10-02 Itau Unibanco Holding S.A.
|
7841
|
+
itau
|
7842
|
+
|
7466
7843
|
// iwc : 2014-06-23 Richemont DNS Inc.
|
7467
7844
|
iwc
|
7468
7845
|
|
7846
|
+
// jaguar : 2014-11-13 Jaguar Land Rover Ltd
|
7847
|
+
jaguar
|
7848
|
+
|
7469
7849
|
// java : 2014-06-19 Oracle Corporation
|
7470
7850
|
java
|
7471
7851
|
|
7852
|
+
// jcb : 2014-11-20 JCB Co., Ltd.
|
7853
|
+
jcb
|
7854
|
+
|
7472
7855
|
// jetzt : 2014-01-09 New TLD Company AB
|
7473
7856
|
jetzt
|
7474
7857
|
|
7858
|
+
// jlc : 2014-12-04 Richemont DNS Inc.
|
7859
|
+
jlc
|
7860
|
+
|
7475
7861
|
// joburg : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
|
7476
7862
|
joburg
|
7477
7863
|
|
7864
|
+
// jot : 2014-12-18 Amazon EU S.à r.l.
|
7865
|
+
jot
|
7866
|
+
|
7867
|
+
// joy : 2014-12-18 Amazon EU S.à r.l.
|
7868
|
+
joy
|
7869
|
+
|
7870
|
+
// jprs : 2014-09-18 Japan Registry Services Co., Ltd.
|
7871
|
+
jprs
|
7872
|
+
|
7478
7873
|
// juegos : 2014-03-20 Uniregistry, Corp.
|
7479
7874
|
juegos
|
7480
7875
|
|
7481
7876
|
// kaufen : 2013-11-07 United TLD Holdco Ltd.
|
7482
7877
|
kaufen
|
7483
7878
|
|
7879
|
+
// kddi : 2014-09-12 KDDI CORPORATION
|
7880
|
+
kddi
|
7881
|
+
|
7882
|
+
// kfh : 2014-12-04 Kuwait Finance House
|
7883
|
+
kfh
|
7884
|
+
|
7484
7885
|
// kim : 2013-09-23 Afilias Limited
|
7485
7886
|
kim
|
7486
7887
|
|
7888
|
+
// kinder : 2014-11-07 Ferrero Trading Lux S.A.
|
7889
|
+
kinder
|
7890
|
+
|
7487
7891
|
// kitchen : 2013-09-20 Just Goodbye, LLC
|
7488
7892
|
kitchen
|
7489
7893
|
|
@@ -7493,22 +7897,40 @@ kiwi
|
|
7493
7897
|
// koeln : 2014-01-09 NetCologne Gesellschaft für Telekommunikation mbH
|
7494
7898
|
koeln
|
7495
7899
|
|
7900
|
+
// komatsu : 2015-01-08 Komatsu Ltd.
|
7901
|
+
komatsu
|
7902
|
+
|
7903
|
+
// kpn : 2015-01-08 Koninklijke KPN N.V.
|
7904
|
+
kpn
|
7905
|
+
|
7496
7906
|
// krd : 2013-12-05 KRG Department of Information Technology
|
7497
7907
|
krd
|
7498
7908
|
|
7499
7909
|
// kred : 2013-12-19 KredTLD Pty Ltd
|
7500
7910
|
kred
|
7501
7911
|
|
7912
|
+
// kyoto : 2014-11-07 Academic Institution: Kyoto Jyoho Gakuen
|
7913
|
+
kyoto
|
7914
|
+
|
7502
7915
|
// lacaixa : 2014-01-09 CAIXA D'ESTALVIS I PENSIONS DE BARCELONA
|
7503
7916
|
lacaixa
|
7504
7917
|
|
7505
7918
|
// land : 2013-09-10 Pine Moon, LLC
|
7506
7919
|
land
|
7507
7920
|
|
7921
|
+
// landrover : 2014-11-13 Jaguar Land Rover Ltd
|
7922
|
+
landrover
|
7923
|
+
|
7924
|
+
// lat : 2014-10-16 ECOM-LAC Federaciòn de Latinoamèrica y el Caribe para Internet y el Comercio Electrònico
|
7925
|
+
lat
|
7926
|
+
|
7508
7927
|
// latrobe : 2014-06-16 La Trobe University
|
7509
7928
|
latrobe
|
7510
7929
|
|
7511
|
-
//
|
7930
|
+
// law : 2015-01-22 Minds + Machines Group Limited
|
7931
|
+
law
|
7932
|
+
|
7933
|
+
// lawyer : 2014-03-20
|
7512
7934
|
lawyer
|
7513
7935
|
|
7514
7936
|
// lds : 2014-03-20 IRI Domain Management, LLC (\
|
@@ -7520,36 +7942,78 @@ lease
|
|
7520
7942
|
// leclerc : 2014-08-07 A.C.D. LEC Association des Centres Distributeurs Edouard Leclerc
|
7521
7943
|
leclerc
|
7522
7944
|
|
7945
|
+
// legal : 2014-10-16 Blue Falls, LLC
|
7946
|
+
legal
|
7947
|
+
|
7523
7948
|
// lgbt : 2014-05-08 Afilias Limited
|
7524
7949
|
lgbt
|
7525
7950
|
|
7951
|
+
// liaison : 2014-10-02 Liaison Technologies, Incorporated
|
7952
|
+
liaison
|
7953
|
+
|
7954
|
+
// lidl : 2014-09-18 Schwarz Domains und Services GmbH & Co. KG
|
7955
|
+
lidl
|
7956
|
+
|
7526
7957
|
// life : 2014-02-06 Trixy Oaks, LLC
|
7527
7958
|
life
|
7528
7959
|
|
7960
|
+
// lifeinsurance : 2015-01-15 American Council of Life Insurers
|
7961
|
+
lifeinsurance
|
7962
|
+
|
7963
|
+
// lifestyle : 2014-12-11 Lifestyle Domain Holdings, Inc.
|
7964
|
+
lifestyle
|
7965
|
+
|
7529
7966
|
// lighting : 2013-08-27 John McCook, LLC
|
7530
7967
|
lighting
|
7531
7968
|
|
7969
|
+
// like : 2014-12-18 Amazon EU S.à r.l.
|
7970
|
+
like
|
7971
|
+
|
7532
7972
|
// limited : 2014-03-06 Big Fest, LLC
|
7533
7973
|
limited
|
7534
7974
|
|
7535
7975
|
// limo : 2013-10-17 Hidden Frostbite, LLC
|
7536
7976
|
limo
|
7537
7977
|
|
7978
|
+
// lincoln : 2014-11-13 Ford Motor Company
|
7979
|
+
lincoln
|
7980
|
+
|
7981
|
+
// linde : 2014-12-04 Linde Aktiengesellschaft
|
7982
|
+
linde
|
7983
|
+
|
7538
7984
|
// link : 2013-11-14 Uniregistry, Corp.
|
7539
7985
|
link
|
7540
7986
|
|
7987
|
+
// live : 2014-12-04 Half Woods, LLC
|
7988
|
+
live
|
7989
|
+
|
7990
|
+
// loan : 2014-11-20 dot Loan Limited
|
7991
|
+
loan
|
7992
|
+
|
7541
7993
|
// loans : 2014-03-20 June Woods, LLC
|
7542
7994
|
loans
|
7543
7995
|
|
7544
7996
|
// london : 2013-11-14 Dot London Domains Limited
|
7545
7997
|
london
|
7546
7998
|
|
7999
|
+
// lotte : 2014-11-07 Lotte Holdings Co., Ltd.
|
8000
|
+
lotte
|
8001
|
+
|
7547
8002
|
// lotto : 2014-04-10 Afilias Limited
|
7548
8003
|
lotto
|
7549
8004
|
|
8005
|
+
// love : 2014-12-22 Merchant Law Group LLP
|
8006
|
+
love
|
8007
|
+
|
8008
|
+
// ltd : 2014-09-25 Over Corner, LLC
|
8009
|
+
ltd
|
8010
|
+
|
7550
8011
|
// ltda : 2014-04-17 DOMAIN ROBOT SERVICOS DE HOSPEDAGEM NA INTERNET LTDA
|
7551
8012
|
ltda
|
7552
8013
|
|
8014
|
+
// lupin : 2014-11-07 LUPIN LIMITED
|
8015
|
+
lupin
|
8016
|
+
|
7553
8017
|
// luxe : 2014-01-09 Top Level Domain Holdings Limited
|
7554
8018
|
luxe
|
7555
8019
|
|
@@ -7559,21 +8023,36 @@ luxury
|
|
7559
8023
|
// madrid : 2014-05-01 Comunidad de Madrid
|
7560
8024
|
madrid
|
7561
8025
|
|
8026
|
+
// maif : 2014-10-02 Mutuelle Assurance Instituteur France (MAIF)
|
8027
|
+
maif
|
8028
|
+
|
7562
8029
|
// maison : 2013-12-05 Victor Frostbite, LLC
|
7563
8030
|
maison
|
7564
8031
|
|
8032
|
+
// makeup : 2015-01-15 L'Oréal
|
8033
|
+
makeup
|
8034
|
+
|
8035
|
+
// man : 2014-12-04 MAN SE
|
8036
|
+
man
|
8037
|
+
|
7565
8038
|
// management : 2013-11-07 John Goodbye, LLC
|
7566
8039
|
management
|
7567
8040
|
|
7568
8041
|
// mango : 2013-10-24 PUNTO FA S.L.
|
7569
8042
|
mango
|
7570
8043
|
|
7571
|
-
// market : 2014-03-06
|
8044
|
+
// market : 2014-03-06
|
7572
8045
|
market
|
7573
8046
|
|
7574
8047
|
// marketing : 2013-11-07 Fern Pass, LLC
|
7575
8048
|
marketing
|
7576
8049
|
|
8050
|
+
// markets : 2014-12-11 IG Group Holdings PLC
|
8051
|
+
markets
|
8052
|
+
|
8053
|
+
// marriott : 2014-10-09 Marriott Worldwide Corporation
|
8054
|
+
marriott
|
8055
|
+
|
7577
8056
|
// media : 2014-03-06 Grand Glen, LLC
|
7578
8057
|
media
|
7579
8058
|
|
@@ -7586,31 +8065,52 @@ melbourne
|
|
7586
8065
|
// meme : 2014-01-30 Charleston Road Registry Inc.
|
7587
8066
|
meme
|
7588
8067
|
|
8068
|
+
// memorial : 2014-10-16 Dog Beach, LLC
|
8069
|
+
memorial
|
8070
|
+
|
7589
8071
|
// menu : 2013-09-11 Wedding TLD2, LLC
|
7590
8072
|
menu
|
7591
8073
|
|
8074
|
+
// meo : 2014-11-07 PT Comunicacoes S.A.
|
8075
|
+
meo
|
8076
|
+
|
7592
8077
|
// miami : 2013-12-19 Top Level Domain Holdings Limited
|
7593
8078
|
miami
|
7594
8079
|
|
8080
|
+
// microsoft : 2014-12-18 Microsoft Corporation
|
8081
|
+
microsoft
|
8082
|
+
|
7595
8083
|
// mini : 2014-01-09 Bayerische Motoren Werke Aktiengesellschaft
|
7596
8084
|
mini
|
7597
8085
|
|
8086
|
+
// mma : 2014-11-07 MMA IARD
|
8087
|
+
mma
|
8088
|
+
|
8089
|
+
// mobily : 2014-12-18 GreenTech Consultancy Company W.L.L.
|
8090
|
+
mobily
|
8091
|
+
|
7598
8092
|
// moda : 2013-11-07 United TLD Holdco Ltd.
|
7599
8093
|
moda
|
7600
8094
|
|
7601
8095
|
// moe : 2013-11-13 Interlink Co., Ltd.
|
7602
8096
|
moe
|
7603
8097
|
|
8098
|
+
// moi : 2014-12-18 Amazon EU S.à r.l.
|
8099
|
+
moi
|
8100
|
+
|
7604
8101
|
// monash : 2013-09-30 Monash University
|
7605
8102
|
monash
|
7606
8103
|
|
8104
|
+
// money : 2014-10-16 Outer McCook, LLC
|
8105
|
+
money
|
8106
|
+
|
7607
8107
|
// montblanc : 2014-06-23 Richemont DNS Inc.
|
7608
8108
|
montblanc
|
7609
8109
|
|
7610
8110
|
// mormon : 2013-12-05 IRI Domain Management, LLC (\
|
7611
8111
|
mormon
|
7612
8112
|
|
7613
|
-
// mortgage : 2014-03-20
|
8113
|
+
// mortgage : 2014-03-20
|
7614
8114
|
mortgage
|
7615
8115
|
|
7616
8116
|
// moscow : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
|
@@ -7622,12 +8122,27 @@ motorcycles
|
|
7622
8122
|
// mov : 2014-01-30 Charleston Road Registry Inc.
|
7623
8123
|
mov
|
7624
8124
|
|
8125
|
+
// movistar : 2014-10-16 Telefónica S.A.
|
8126
|
+
movistar
|
8127
|
+
|
8128
|
+
// mtn : 2014-12-04 MTN Dubai Limited
|
8129
|
+
mtn
|
8130
|
+
|
8131
|
+
// mtpc : 2014-11-20 Mitsubishi Tanabe Pharma Corporation
|
8132
|
+
mtpc
|
8133
|
+
|
8134
|
+
// nadex : 2014-12-11 IG Group Holdings PLC
|
8135
|
+
nadex
|
8136
|
+
|
7625
8137
|
// nagoya : 2013-10-24 GMO Registry, Inc.
|
7626
8138
|
nagoya
|
7627
8139
|
|
7628
8140
|
// navy : 2014-03-06 United TLD Holdco Ltd.
|
7629
8141
|
navy
|
7630
8142
|
|
8143
|
+
// nec : 2015-01-08 NEC Corporation
|
8144
|
+
nec
|
8145
|
+
|
7631
8146
|
// netbank : 2014-06-26 COMMONWEALTH BANK OF AUSTRALIA
|
7632
8147
|
netbank
|
7633
8148
|
|
@@ -7640,6 +8155,9 @@ neustar
|
|
7640
8155
|
// new : 2014-01-30 Charleston Road Registry Inc.
|
7641
8156
|
new
|
7642
8157
|
|
8158
|
+
// news : 2014-12-18 Hidden Bloom, LLC
|
8159
|
+
news
|
8160
|
+
|
7643
8161
|
// nexus : 2014-07-24 Charleston Road Registry Inc.
|
7644
8162
|
nexus
|
7645
8163
|
|
@@ -7649,30 +8167,57 @@ ngo
|
|
7649
8167
|
// nhk : 2014-02-13 Japan Broadcasting Corporation (NHK)
|
7650
8168
|
nhk
|
7651
8169
|
|
8170
|
+
// nico : 2014-12-04 DWANGO Co., Ltd.
|
8171
|
+
nico
|
8172
|
+
|
7652
8173
|
// ninja : 2013-11-07 United TLD Holdco Ltd.
|
7653
8174
|
ninja
|
7654
8175
|
|
7655
8176
|
// nissan : 2014-03-27 NISSAN MOTOR CO., LTD.
|
7656
8177
|
nissan
|
7657
8178
|
|
8179
|
+
// nokia : 2015-01-08 Nokia Corporation
|
8180
|
+
nokia
|
8181
|
+
|
8182
|
+
// norton : 2014-12-04 Symantec Corporation
|
8183
|
+
norton
|
8184
|
+
|
8185
|
+
// nowruz : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
|
8186
|
+
nowruz
|
8187
|
+
|
7658
8188
|
// nra : 2014-05-22 NRA Holdings Company, INC.
|
7659
8189
|
nra
|
7660
8190
|
|
7661
8191
|
// nrw : 2013-11-21 Minds + Machines GmbH
|
7662
8192
|
nrw
|
7663
8193
|
|
8194
|
+
// ntt : 2014-10-31 NIPPON TELEGRAPH AND TELEPHONE CORPORATION
|
8195
|
+
ntt
|
8196
|
+
|
7664
8197
|
// nyc : 2014-01-23 The City of New York by and through the New York City Department of Information Technology & Telecommunications
|
7665
8198
|
nyc
|
7666
8199
|
|
7667
|
-
//
|
8200
|
+
// obi : 2014-09-25 OBI Group Holding SE & Co. KGaA
|
8201
|
+
obi
|
8202
|
+
|
8203
|
+
// okinawa : 2013-12-05 BusinessRalliart Inc.
|
7668
8204
|
okinawa
|
7669
8205
|
|
8206
|
+
// omega : 2015-01-08 The Swatch Group Ltd
|
8207
|
+
omega
|
8208
|
+
|
8209
|
+
// one : 2014-11-07 One.com A/S
|
8210
|
+
one
|
8211
|
+
|
7670
8212
|
// ong : 2014-03-06 Public Interest Registry
|
7671
8213
|
ong
|
7672
8214
|
|
7673
8215
|
// onl : 2013-09-16 I-Registry Ltd.
|
7674
8216
|
onl
|
7675
8217
|
|
8218
|
+
// online : 2015-01-15 DotOnline Inc.
|
8219
|
+
online
|
8220
|
+
|
7676
8221
|
// ooo : 2014-01-09 INFIBEAM INCORPORATION LIMITED
|
7677
8222
|
ooo
|
7678
8223
|
|
@@ -7682,24 +8227,42 @@ oracle
|
|
7682
8227
|
// organic : 2014-03-27 Afilias Limited
|
7683
8228
|
organic
|
7684
8229
|
|
8230
|
+
// osaka : 2014-09-04 Interlink Co., Ltd.
|
8231
|
+
osaka
|
8232
|
+
|
7685
8233
|
// otsuka : 2013-10-11 Otsuka Holdings Co., Ltd.
|
7686
8234
|
otsuka
|
7687
8235
|
|
7688
8236
|
// ovh : 2014-01-16 OVH SAS
|
7689
8237
|
ovh
|
7690
8238
|
|
8239
|
+
// page : 2014-12-04 Charleston Road Registry Inc.
|
8240
|
+
page
|
8241
|
+
|
8242
|
+
// panerai : 2014-11-07 Richemont DNS Inc.
|
8243
|
+
panerai
|
8244
|
+
|
7691
8245
|
// paris : 2014-01-30 City of Paris
|
7692
8246
|
paris
|
7693
8247
|
|
8248
|
+
// pars : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
|
8249
|
+
pars
|
8250
|
+
|
7694
8251
|
// partners : 2013-12-05 Magic Glen, LLC
|
7695
8252
|
partners
|
7696
8253
|
|
7697
8254
|
// parts : 2013-12-05 Sea Goodbye, LLC
|
7698
8255
|
parts
|
7699
8256
|
|
8257
|
+
// party : 2014-09-11 Blue Sky Registry Limited
|
8258
|
+
party
|
8259
|
+
|
7700
8260
|
// pharmacy : 2014-06-19 National Association of Boards of Pharmacy
|
7701
8261
|
pharmacy
|
7702
8262
|
|
8263
|
+
// philips : 2014-11-07 Koninklijke Philips N.V.
|
8264
|
+
philips
|
8265
|
+
|
7703
8266
|
// photo : 2013-11-14 Uniregistry, Corp.
|
7704
8267
|
photo
|
7705
8268
|
|
@@ -7712,6 +8275,9 @@ photos
|
|
7712
8275
|
// physio : 2014-05-01 PhysBiz Pty Ltd
|
7713
8276
|
physio
|
7714
8277
|
|
8278
|
+
// piaget : 2014-10-16 Richemont DNS Inc.
|
8279
|
+
piaget
|
8280
|
+
|
7715
8281
|
// pics : 2013-11-14 Uniregistry, Corp.
|
7716
8282
|
pics
|
7717
8283
|
|
@@ -7721,6 +8287,12 @@ pictet
|
|
7721
8287
|
// pictures : 2014-03-06 Foggy Sky, LLC
|
7722
8288
|
pictures
|
7723
8289
|
|
8290
|
+
// pid : 2015-01-08 Top Level Spectrum, Inc.
|
8291
|
+
pid
|
8292
|
+
|
8293
|
+
// pin : 2014-12-18 Amazon EU S.à r.l.
|
8294
|
+
pin
|
8295
|
+
|
7724
8296
|
// pink : 2013-10-01 Afilias Limited
|
7725
8297
|
pink
|
7726
8298
|
|
@@ -7739,6 +8311,9 @@ pohl
|
|
7739
8311
|
// poker : 2014-07-03 Afilias Domains No. 5 Limited
|
7740
8312
|
poker
|
7741
8313
|
|
8314
|
+
// porn : 2014-10-16 ICM Registry PN LLC
|
8315
|
+
porn
|
8316
|
+
|
7742
8317
|
// praxi : 2013-12-05 Praxi S.p.A.
|
7743
8318
|
praxi
|
7744
8319
|
|
@@ -7754,6 +8329,9 @@ productions
|
|
7754
8329
|
// prof : 2014-07-24 Charleston Road Registry Inc.
|
7755
8330
|
prof
|
7756
8331
|
|
8332
|
+
// promo : 2014-12-18 Play.PROMO Oy
|
8333
|
+
promo
|
8334
|
+
|
7757
8335
|
// properties : 2013-12-05 Big Pass, LLC
|
7758
8336
|
properties
|
7759
8337
|
|
@@ -7769,6 +8347,12 @@ qpon
|
|
7769
8347
|
// quebec : 2013-12-19 PointQuébec Inc
|
7770
8348
|
quebec
|
7771
8349
|
|
8350
|
+
// racing : 2014-12-04 Premier Registry Limited
|
8351
|
+
racing
|
8352
|
+
|
8353
|
+
// read : 2014-12-18 Amazon EU S.à r.l.
|
8354
|
+
read
|
8355
|
+
|
7772
8356
|
// realtor : 2014-05-29 Real Estate Domains LLC
|
7773
8357
|
realtor
|
7774
8358
|
|
@@ -7778,6 +8362,9 @@ recipes
|
|
7778
8362
|
// red : 2013-11-07 Afilias Limited
|
7779
8363
|
red
|
7780
8364
|
|
8365
|
+
// redstone : 2014-10-31 Redstone Haute Couture Co., Ltd.
|
8366
|
+
redstone
|
8367
|
+
|
7781
8368
|
// rehab : 2014-03-06 United TLD Holdco Ltd.
|
7782
8369
|
rehab
|
7783
8370
|
|
@@ -7787,9 +8374,15 @@ reise
|
|
7787
8374
|
// reisen : 2014-03-06 New Cypress, LLC
|
7788
8375
|
reisen
|
7789
8376
|
|
8377
|
+
// reit : 2014-09-04 National Association of Real Estate Investment Trusts, Inc.
|
8378
|
+
reit
|
8379
|
+
|
7790
8380
|
// ren : 2013-12-12 Beijing Qianxiang Wangjing Technology Development Co., Ltd.
|
7791
8381
|
ren
|
7792
8382
|
|
8383
|
+
// rent : 2014-12-04 DERRent, LLC
|
8384
|
+
rent
|
8385
|
+
|
7793
8386
|
// rentals : 2013-12-05 Big Hollow,LLC
|
7794
8387
|
rentals
|
7795
8388
|
|
@@ -7808,45 +8401,90 @@ rest
|
|
7808
8401
|
// restaurant : 2014-07-03 Snow Avenue, LLC
|
7809
8402
|
restaurant
|
7810
8403
|
|
7811
|
-
//
|
8404
|
+
// review : 2014-11-20 dot Review Limited
|
8405
|
+
review
|
8406
|
+
|
8407
|
+
// reviews : 2013-09-13
|
7812
8408
|
reviews
|
7813
8409
|
|
7814
8410
|
// rich : 2013-11-21 I-Registry Ltd.
|
7815
8411
|
rich
|
7816
8412
|
|
8413
|
+
// ricoh : 2014-11-20 Ricoh Company, Ltd.
|
8414
|
+
ricoh
|
8415
|
+
|
7817
8416
|
// rio : 2014-02-27 Empresa Municipal de Informática SA - IPLANRIO
|
7818
8417
|
rio
|
7819
8418
|
|
7820
8419
|
// rip : 2014-07-10 United TLD Holdco Ltd.
|
7821
8420
|
rip
|
7822
8421
|
|
7823
|
-
//
|
8422
|
+
// rocher : 2014-12-18 Ferrero Trading Lux S.A.
|
8423
|
+
rocher
|
8424
|
+
|
8425
|
+
// rocks : 2013-11-14
|
7824
8426
|
rocks
|
7825
8427
|
|
7826
8428
|
// rodeo : 2013-12-19 Top Level Domain Holdings Limited
|
7827
8429
|
rodeo
|
7828
8430
|
|
8431
|
+
// room : 2014-12-18 Amazon EU S.à r.l.
|
8432
|
+
room
|
8433
|
+
|
7829
8434
|
// rsvp : 2014-05-08 Charleston Road Registry Inc.
|
7830
8435
|
rsvp
|
7831
8436
|
|
7832
8437
|
// ruhr : 2013-10-02 regiodot GmbH & Co. KG
|
7833
8438
|
ruhr
|
7834
8439
|
|
7835
|
-
// ryukyu : 2014-01-09 BusinessRalliart
|
8440
|
+
// ryukyu : 2014-01-09 BusinessRalliart Inc.
|
7836
8441
|
ryukyu
|
7837
8442
|
|
7838
8443
|
// saarland : 2013-12-12 dotSaarland GmbH
|
7839
8444
|
saarland
|
7840
8445
|
|
8446
|
+
// safe : 2014-12-18 Amazon EU S.à r.l.
|
8447
|
+
safe
|
8448
|
+
|
8449
|
+
// safety : 2015-01-08 Safety Registry Services, LLC.
|
8450
|
+
safety
|
8451
|
+
|
8452
|
+
// sakura : 2014-12-18 SAKURA Internet Inc.
|
8453
|
+
sakura
|
8454
|
+
|
8455
|
+
// sale : 2014-10-16
|
8456
|
+
sale
|
8457
|
+
|
8458
|
+
// salon : 2014-12-11 Outer Orchard, LLC
|
8459
|
+
salon
|
8460
|
+
|
7841
8461
|
// samsung : 2014-04-03 SAMSUNG SDS CO., LTD
|
7842
8462
|
samsung
|
7843
8463
|
|
8464
|
+
// sandvik : 2014-11-13 Sandvik AB
|
8465
|
+
sandvik
|
8466
|
+
|
8467
|
+
// sandvikcoromant : 2014-11-07 Sandvik AB
|
8468
|
+
sandvikcoromant
|
8469
|
+
|
8470
|
+
// sanofi : 2014-10-09 Sanofi
|
8471
|
+
sanofi
|
8472
|
+
|
7844
8473
|
// sap : 2014-03-27 SAP AG
|
7845
8474
|
sap
|
7846
8475
|
|
8476
|
+
// sapo : 2014-11-07 PT Comunicacoes S.A.
|
8477
|
+
sapo
|
8478
|
+
|
7847
8479
|
// sarl : 2014-07-03 Delta Orchard, LLC
|
7848
8480
|
sarl
|
7849
8481
|
|
8482
|
+
// saxo : 2014-10-31 Saxo Bank A/S
|
8483
|
+
saxo
|
8484
|
+
|
8485
|
+
// sbs : 2014-11-07 SPECIAL BROADCASTING SERVICE CORPORATION
|
8486
|
+
sbs
|
8487
|
+
|
7850
8488
|
// sca : 2014-03-13 SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)
|
7851
8489
|
sca
|
7852
8490
|
|
@@ -7859,46 +8497,85 @@ schmidt
|
|
7859
8497
|
// scholarships : 2014-04-24 Scholarships.com, LLC
|
7860
8498
|
scholarships
|
7861
8499
|
|
8500
|
+
// school : 2014-12-18 Little Galley, LLC
|
8501
|
+
school
|
8502
|
+
|
7862
8503
|
// schule : 2014-03-06 Outer Moon, LLC
|
7863
8504
|
schule
|
7864
8505
|
|
8506
|
+
// schwarz : 2014-09-18 Schwarz Domains und Services GmbH & Co. KG
|
8507
|
+
schwarz
|
8508
|
+
|
8509
|
+
// science : 2014-09-11 dot Science Limited
|
8510
|
+
science
|
8511
|
+
|
8512
|
+
// scor : 2014-10-31 SCOR SE
|
8513
|
+
scor
|
8514
|
+
|
7865
8515
|
// scot : 2014-01-23 Dot Scot Registry Limited
|
7866
8516
|
scot
|
7867
8517
|
|
7868
8518
|
// seat : 2014-05-22 SEAT, S.A. (Sociedad Unipersonal)
|
7869
8519
|
seat
|
7870
8520
|
|
8521
|
+
// seek : 2014-12-04 Seek Limited
|
8522
|
+
seek
|
8523
|
+
|
8524
|
+
// sener : 2014-10-24 Sener Ingeniería y Sistemas, S.A.
|
8525
|
+
sener
|
8526
|
+
|
7871
8527
|
// services : 2014-02-27 Fox Castle, LLC
|
7872
8528
|
services
|
7873
8529
|
|
7874
8530
|
// sew : 2014-07-17 SEW-EURODRIVE GmbH & Co KG
|
7875
8531
|
sew
|
7876
8532
|
|
8533
|
+
// sex : 2014-11-13 ICM Registry SX LLC
|
8534
|
+
sex
|
8535
|
+
|
7877
8536
|
// sexy : 2013-09-11 Uniregistry, Corp.
|
7878
8537
|
sexy
|
7879
8538
|
|
7880
8539
|
// sharp : 2014-05-01 Sharp Corporation
|
7881
8540
|
sharp
|
7882
8541
|
|
8542
|
+
// shia : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
|
8543
|
+
shia
|
8544
|
+
|
7883
8545
|
// shiksha : 2013-11-14 Afilias Limited
|
7884
8546
|
shiksha
|
7885
8547
|
|
7886
8548
|
// shoes : 2013-10-02 Binky Galley, LLC
|
7887
8549
|
shoes
|
7888
8550
|
|
8551
|
+
// shouji : 2015-01-08 QIHOO 360 TECHNOLOGY CO. LTD.
|
8552
|
+
shouji
|
8553
|
+
|
7889
8554
|
// shriram : 2014-01-23 Shriram Capital Ltd.
|
7890
8555
|
shriram
|
7891
8556
|
|
7892
8557
|
// singles : 2013-08-27 Fern Madison, LLC
|
7893
8558
|
singles
|
7894
8559
|
|
8560
|
+
// site : 2015-01-15 DotSite Inc.
|
8561
|
+
site
|
8562
|
+
|
8563
|
+
// skin : 2015-01-15 L'Oréal
|
8564
|
+
skin
|
8565
|
+
|
7895
8566
|
// sky : 2014-06-19 Sky IP International Ltd, a company incorporated in England and Wales, operating via its registered Swiss branch
|
7896
8567
|
sky
|
7897
8568
|
|
8569
|
+
// skype : 2014-12-18 Microsoft Corporation
|
8570
|
+
skype
|
8571
|
+
|
8572
|
+
// smile : 2014-12-18 Amazon EU S.à r.l.
|
8573
|
+
smile
|
8574
|
+
|
7898
8575
|
// social : 2013-11-07 United TLD Holdco Ltd.
|
7899
8576
|
social
|
7900
8577
|
|
7901
|
-
// software : 2014-03-20
|
8578
|
+
// software : 2014-03-20
|
7902
8579
|
software
|
7903
8580
|
|
7904
8581
|
// sohu : 2013-12-19 Sohu.com Limited
|
@@ -7910,6 +8587,9 @@ solar
|
|
7910
8587
|
// solutions : 2013-11-07 Silver Cover, LLC
|
7911
8588
|
solutions
|
7912
8589
|
|
8590
|
+
// sony : 2015-01-08 Sony Corporation
|
8591
|
+
sony
|
8592
|
+
|
7913
8593
|
// soy : 2014-01-23 Charleston Road Registry Inc.
|
7914
8594
|
soy
|
7915
8595
|
|
@@ -7919,6 +8599,39 @@ space
|
|
7919
8599
|
// spiegel : 2014-02-05 SPIEGEL-Verlag Rudolf Augstein GmbH & Co. KG
|
7920
8600
|
spiegel
|
7921
8601
|
|
8602
|
+
// spreadbetting : 2014-12-11 IG Group Holdings PLC
|
8603
|
+
spreadbetting
|
8604
|
+
|
8605
|
+
// stada : 2014-11-13 STADA Arzneimittel AG
|
8606
|
+
stada
|
8607
|
+
|
8608
|
+
// star : 2015-01-08 Star India Private Limited
|
8609
|
+
star
|
8610
|
+
|
8611
|
+
// statoil : 2014-12-04 Statoil ASA
|
8612
|
+
statoil
|
8613
|
+
|
8614
|
+
// stc : 2014-10-09 Saudi Telecom Company
|
8615
|
+
stc
|
8616
|
+
|
8617
|
+
// stcgroup : 2014-10-09 Saudi Telecom Company
|
8618
|
+
stcgroup
|
8619
|
+
|
8620
|
+
// stockholm : 2014-12-18 Stockholms kommun
|
8621
|
+
stockholm
|
8622
|
+
|
8623
|
+
// storage : 2014-12-22 Self Storage Company LLC
|
8624
|
+
storage
|
8625
|
+
|
8626
|
+
// study : 2014-12-11 OPEN UNIVERSITIES AUSTRALIA PTY LTD
|
8627
|
+
study
|
8628
|
+
|
8629
|
+
// style : 2014-12-04 Binky Moon, LLC
|
8630
|
+
style
|
8631
|
+
|
8632
|
+
// sucks : 2014-12-22 Vox Populi Registry Inc.
|
8633
|
+
sucks
|
8634
|
+
|
7922
8635
|
// supplies : 2013-12-19 Atomic Fields, LLC
|
7923
8636
|
supplies
|
7924
8637
|
|
@@ -7937,12 +8650,30 @@ surgery
|
|
7937
8650
|
// suzuki : 2014-02-20 SUZUKI MOTOR CORPORATION
|
7938
8651
|
suzuki
|
7939
8652
|
|
8653
|
+
// swatch : 2015-01-08 The Swatch Group Ltd
|
8654
|
+
swatch
|
8655
|
+
|
8656
|
+
// swiss : 2014-10-16 Swiss Confederation
|
8657
|
+
swiss
|
8658
|
+
|
8659
|
+
// sydney : 2014-09-18 State of New South Wales, Department of Premier and Cabinet
|
8660
|
+
sydney
|
8661
|
+
|
8662
|
+
// symantec : 2014-12-04 Symantec Corporation
|
8663
|
+
symantec
|
8664
|
+
|
7940
8665
|
// systems : 2013-11-07 Dash Cypress, LLC
|
7941
8666
|
systems
|
7942
8667
|
|
8668
|
+
// tab : 2014-12-04 Tabcorp Holdings Limited
|
8669
|
+
tab
|
8670
|
+
|
7943
8671
|
// taipei : 2014-07-10 Taipei City Government
|
7944
8672
|
taipei
|
7945
8673
|
|
8674
|
+
// taobao : 2015-01-15 Alibaba Group Holding Limited
|
8675
|
+
taobao
|
8676
|
+
|
7946
8677
|
// tatar : 2014-04-24 Limited Liability Company \
|
7947
8678
|
tatar
|
7948
8679
|
|
@@ -7952,21 +8683,36 @@ tattoo
|
|
7952
8683
|
// tax : 2014-03-20 Storm Orchard, LLC
|
7953
8684
|
tax
|
7954
8685
|
|
8686
|
+
// tci : 2014-09-12 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
|
8687
|
+
tci
|
8688
|
+
|
7955
8689
|
// technology : 2013-09-13 Auburn Falls
|
7956
8690
|
technology
|
7957
8691
|
|
8692
|
+
// telefonica : 2014-10-16 Telefónica S.A.
|
8693
|
+
telefonica
|
8694
|
+
|
7958
8695
|
// temasek : 2014-08-07 Temasek Holdings (Private) Limited
|
7959
8696
|
temasek
|
7960
8697
|
|
8698
|
+
// tennis : 2014-12-04 Cotton Bloom, LLC
|
8699
|
+
tennis
|
8700
|
+
|
7961
8701
|
// tienda : 2013-11-14 Victor Manor, LLC
|
7962
8702
|
tienda
|
7963
8703
|
|
7964
8704
|
// tips : 2013-09-20 Corn Willow, LLC
|
7965
8705
|
tips
|
7966
8706
|
|
8707
|
+
// tires : 2014-11-07 Dog Edge, LLC
|
8708
|
+
tires
|
8709
|
+
|
7967
8710
|
// tirol : 2014-04-24 punkt Tirol GmbH
|
7968
8711
|
tirol
|
7969
8712
|
|
8713
|
+
// tmall : 2015-01-15 Alibaba Group Holding Limited
|
8714
|
+
tmall
|
8715
|
+
|
7970
8716
|
// today : 2013-09-20 Pearl Woods, LLC
|
7971
8717
|
today
|
7972
8718
|
|
@@ -7979,9 +8725,15 @@ tools
|
|
7979
8725
|
// top : 2014-03-20 Jiangsu Bangning Science & Technology Co.,Ltd.
|
7980
8726
|
top
|
7981
8727
|
|
8728
|
+
// toray : 2014-12-18 Toray Industries, Inc.
|
8729
|
+
toray
|
8730
|
+
|
7982
8731
|
// toshiba : 2014-04-10 TOSHIBA Corporation
|
7983
8732
|
toshiba
|
7984
8733
|
|
8734
|
+
// tours : 2015-01-22 Sugar Station, LLC
|
8735
|
+
tours
|
8736
|
+
|
7985
8737
|
// town : 2014-03-06 Koko Moon, LLC
|
7986
8738
|
town
|
7987
8739
|
|
@@ -7991,12 +8743,24 @@ toys
|
|
7991
8743
|
// trade : 2014-01-23 Elite Registry Limited
|
7992
8744
|
trade
|
7993
8745
|
|
8746
|
+
// trading : 2014-12-11 IG Group Holdings PLC
|
8747
|
+
trading
|
8748
|
+
|
7994
8749
|
// training : 2013-11-07 Wild Willow, LLC
|
7995
8750
|
training
|
7996
8751
|
|
8752
|
+
// trust : 2014-10-16
|
8753
|
+
trust
|
8754
|
+
|
7997
8755
|
// tui : 2014-07-03 TUI AG
|
7998
8756
|
tui
|
7999
8757
|
|
8758
|
+
// tushu : 2014-12-18 Amazon EU S.à r.l.
|
8759
|
+
tushu
|
8760
|
+
|
8761
|
+
// ubs : 2014-12-11 UBS AG
|
8762
|
+
ubs
|
8763
|
+
|
8000
8764
|
// university : 2014-03-06 Little Station, LLC
|
8001
8765
|
university
|
8002
8766
|
|
@@ -8009,6 +8773,9 @@ uol
|
|
8009
8773
|
// vacations : 2013-12-05 Atomic Tigers, LLC
|
8010
8774
|
vacations
|
8011
8775
|
|
8776
|
+
// vana : 2014-12-11 Lifestyle Domain Holdings, Inc.
|
8777
|
+
vana
|
8778
|
+
|
8012
8779
|
// vegas : 2014-01-16 Dot Vegas, Inc.
|
8013
8780
|
vegas
|
8014
8781
|
|
@@ -8018,18 +8785,36 @@ ventures
|
|
8018
8785
|
// versicherung : 2014-03-20 dotversicherung-registry GmbH
|
8019
8786
|
versicherung
|
8020
8787
|
|
8021
|
-
// vet : 2014-03-06
|
8788
|
+
// vet : 2014-03-06
|
8022
8789
|
vet
|
8023
8790
|
|
8024
8791
|
// viajes : 2013-10-17 Black Madison, LLC
|
8025
8792
|
viajes
|
8026
8793
|
|
8794
|
+
// video : 2014-10-16
|
8795
|
+
video
|
8796
|
+
|
8027
8797
|
// villas : 2013-12-05 New Sky, LLC
|
8028
8798
|
villas
|
8029
8799
|
|
8800
|
+
// vip : 2015-01-22 Minds + Machines Group Limited
|
8801
|
+
vip
|
8802
|
+
|
8803
|
+
// virgin : 2014-09-25 Virgin Enterprises Limited
|
8804
|
+
virgin
|
8805
|
+
|
8030
8806
|
// vision : 2013-12-05 Koko Station, LLC
|
8031
8807
|
vision
|
8032
8808
|
|
8809
|
+
// vista : 2014-09-18 Vistaprint Limited
|
8810
|
+
vista
|
8811
|
+
|
8812
|
+
// vistaprint : 2014-09-18 Vistaprint Limited
|
8813
|
+
vistaprint
|
8814
|
+
|
8815
|
+
// viva : 2014-11-07 Saudi Telecom Company
|
8816
|
+
viva
|
8817
|
+
|
8033
8818
|
// vlaanderen : 2014-02-06 DNS.be vzw
|
8034
8819
|
vlaanderen
|
8035
8820
|
|
@@ -8051,12 +8836,24 @@ voyage
|
|
8051
8836
|
// wales : 2014-05-08 Nominet UK
|
8052
8837
|
wales
|
8053
8838
|
|
8839
|
+
// walter : 2014-11-13 Sandvik AB
|
8840
|
+
walter
|
8841
|
+
|
8054
8842
|
// wang : 2013-10-24 Zodiac Leo Limited
|
8055
8843
|
wang
|
8056
8844
|
|
8845
|
+
// wanggou : 2014-12-18 Amazon EU S.à r.l.
|
8846
|
+
wanggou
|
8847
|
+
|
8057
8848
|
// watch : 2013-11-14 Sand Shadow, LLC
|
8058
8849
|
watch
|
8059
8850
|
|
8851
|
+
// watches : 2014-12-22 Richemont DNS Inc.
|
8852
|
+
watches
|
8853
|
+
|
8854
|
+
// weather : 2015-01-08 The Weather Channel, LLC
|
8855
|
+
weather
|
8856
|
+
|
8060
8857
|
// webcam : 2014-01-23 dot Webcam Limited
|
8061
8858
|
webcam
|
8062
8859
|
|
@@ -8081,6 +8878,12 @@ wiki
|
|
8081
8878
|
// williamhill : 2014-03-13 William Hill Organization Limited
|
8082
8879
|
williamhill
|
8083
8880
|
|
8881
|
+
// win : 2014-11-20 First Registry Limited
|
8882
|
+
win
|
8883
|
+
|
8884
|
+
// windows : 2014-12-18 Microsoft Corporation
|
8885
|
+
windows
|
8886
|
+
|
8084
8887
|
// wme : 2014-02-13 William Morris Endeavor Entertainment, LLC
|
8085
8888
|
wme
|
8086
8889
|
|
@@ -8099,6 +8902,21 @@ wtc
|
|
8099
8902
|
// wtf : 2014-03-06 Hidden Way, LLC
|
8100
8903
|
wtf
|
8101
8904
|
|
8905
|
+
// xbox : 2014-12-18 Microsoft Corporation
|
8906
|
+
xbox
|
8907
|
+
|
8908
|
+
// xerox : 2014-10-24 Xerox DNHC LLC
|
8909
|
+
xerox
|
8910
|
+
|
8911
|
+
// xihuan : 2015-01-08 QIHOO 360 TECHNOLOGY CO. LTD.
|
8912
|
+
xihuan
|
8913
|
+
|
8914
|
+
// xin : 2014-12-11 Elegant Leader Limited
|
8915
|
+
xin
|
8916
|
+
|
8917
|
+
// xn--11b4c3d : 2015-01-15 VeriSign Sarl
|
8918
|
+
कॉम
|
8919
|
+
|
8102
8920
|
// xn--1qqw23a : 2014-01-09 Guangzhou YU Wei Information Technology Co., Ltd.
|
8103
8921
|
佛山
|
8104
8922
|
|
@@ -8111,6 +8929,12 @@ wtf
|
|
8111
8929
|
// xn--3ds443g : 2013-09-08 TLD REGISTRY LIMITED
|
8112
8930
|
在线
|
8113
8931
|
|
8932
|
+
// xn--3pxu8k : 2015-01-15 VeriSign Sarl
|
8933
|
+
点看
|
8934
|
+
|
8935
|
+
// xn--42c2d9a : 2015-01-15 VeriSign Sarl
|
8936
|
+
คอม
|
8937
|
+
|
8114
8938
|
// xn--45q11c : 2013-11-21 Zodiac Scorpio Limited
|
8115
8939
|
八卦
|
8116
8940
|
|
@@ -8123,6 +8947,9 @@ wtf
|
|
8123
8947
|
// xn--55qx5d : 2013-11-14 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
|
8124
8948
|
公司
|
8125
8949
|
|
8950
|
+
// xn--5tzm5g : 2014-12-22 Global Website TLD Asia Limited
|
8951
|
+
网站
|
8952
|
+
|
8126
8953
|
// xn--6frz82g : 2013-09-23 Afilias Limited
|
8127
8954
|
移动
|
8128
8955
|
|
@@ -8138,6 +8965,9 @@ wtf
|
|
8138
8965
|
// xn--80aswg : 2013-07-14 CORE Association
|
8139
8966
|
сайт
|
8140
8967
|
|
8968
|
+
// xn--9dbq2a : 2015-01-15 VeriSign Sarl
|
8969
|
+
קום
|
8970
|
+
|
8141
8971
|
// xn--9et52u : 2014-06-12 RISE VICTORY LIMITED
|
8142
8972
|
时尚
|
8143
8973
|
|
@@ -8147,6 +8977,9 @@ wtf
|
|
8147
8977
|
// xn--c1avg : 2013-11-14 Public Interest Registry
|
8148
8978
|
орг
|
8149
8979
|
|
8980
|
+
// xn--c2br7g : 2015-01-15 VeriSign Sarl
|
8981
|
+
नेट
|
8982
|
+
|
8150
8983
|
// xn--cg4bki : 2013-09-27 SAMSUNG SDS CO., LTD
|
8151
8984
|
삼성
|
8152
8985
|
|
@@ -8162,9 +8995,15 @@ wtf
|
|
8162
8995
|
// xn--d1acj3b : 2013-11-20 The Foundation for Network Initiatives “The Smart Internet”
|
8163
8996
|
дети
|
8164
8997
|
|
8998
|
+
// xn--eckvdtc9d : 2014-12-18 Amazon EU S.à r.l.
|
8999
|
+
ポイント
|
9000
|
+
|
8165
9001
|
// xn--efvy88h : 2014-08-22 Xinhua News Agency Guangdong Branch 新华通讯社广东分社
|
8166
9002
|
新闻
|
8167
9003
|
|
9004
|
+
// xn--fhbei : 2015-01-15 VeriSign Sarl
|
9005
|
+
كوم
|
9006
|
+
|
8168
9007
|
// xn--fiq228c5hs : 2013-09-08 TLD REGISTRY LIMITED
|
8169
9008
|
中文网
|
8170
9009
|
|
@@ -8183,30 +9022,69 @@ wtf
|
|
8183
9022
|
// xn--i1b6b1a6a2e : 2013-11-14 Public Interest Registry
|
8184
9023
|
संगठन
|
8185
9024
|
|
9025
|
+
// xn--imr513n : 2014-12-11 HU YI GLOBAL INFORMATION RESOURCES (HOLDING) COMPANY. HONGKONG LIMITED
|
9026
|
+
餐厅
|
9027
|
+
|
8186
9028
|
// xn--io0a7i : 2013-11-14 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
|
8187
9029
|
网络
|
8188
9030
|
|
9031
|
+
// xn--j1aef : 2015-01-15 VeriSign Sarl
|
9032
|
+
ком
|
9033
|
+
|
9034
|
+
// xn--jlq61u9w7b : 2015-01-08 Nokia Corporation
|
9035
|
+
诺基亚
|
9036
|
+
|
9037
|
+
// xn--kcrx77d1x4a : 2014-11-07 Koninklijke Philips N.V.
|
9038
|
+
飞利浦
|
9039
|
+
|
9040
|
+
// xn--kpu716f : 2014-12-22 Richemont DNS Inc.
|
9041
|
+
手表
|
9042
|
+
|
8189
9043
|
// xn--kput3i : 2014-02-13 Beijing RITT-Net Technology Development Co., Ltd
|
8190
9044
|
手机
|
8191
9045
|
|
9046
|
+
// xn--mgba3a3ejt : 2014-11-20 Aramco Services Company
|
9047
|
+
ارامكو
|
9048
|
+
|
8192
9049
|
// xn--mgbab2bd : 2013-10-31 CORE Association
|
8193
9050
|
بازار
|
8194
9051
|
|
9052
|
+
// xn--mgbb9fbpob : 2014-12-18 GreenTech Consultancy Company W.L.L.
|
9053
|
+
موبايلي
|
9054
|
+
|
9055
|
+
// xn--mgbt3dhd : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
|
9056
|
+
همراه
|
9057
|
+
|
9058
|
+
// xn--mk1bu44c : 2015-01-15 VeriSign Sarl
|
9059
|
+
닷컴
|
9060
|
+
|
8195
9061
|
// xn--mxtq1m : 2014-03-06 Net-Chinese Co., Ltd.
|
8196
9062
|
政府
|
8197
9063
|
|
8198
9064
|
// xn--ngbc5azd : 2013-07-13 International Domain Registry Pty. Ltd.
|
8199
9065
|
شبكة
|
8200
9066
|
|
9067
|
+
// xn--ngbe9e0a : 2014-12-04 Kuwait Finance House
|
9068
|
+
بيتك
|
9069
|
+
|
8201
9070
|
// xn--nqv7f : 2013-11-14 Public Interest Registry
|
8202
9071
|
机构
|
8203
9072
|
|
8204
9073
|
// xn--nqv7fs00ema : 2013-11-14 Public Interest Registry
|
8205
9074
|
组织机构
|
8206
9075
|
|
9076
|
+
// xn--nyqy26a : 2014-11-07 Stable Tone Limited
|
9077
|
+
健康
|
9078
|
+
|
8207
9079
|
// xn--p1acf : 2013-12-12 Rusnames Limited
|
8208
9080
|
рус
|
8209
9081
|
|
9082
|
+
// xn--pbt977c : 2014-12-22 Richemont DNS Inc.
|
9083
|
+
珠宝
|
9084
|
+
|
9085
|
+
// xn--pssy2u : 2015-01-15 VeriSign Sarl
|
9086
|
+
大拿
|
9087
|
+
|
8210
9088
|
// xn--q9jyb4c : 2013-09-17 Charleston Road Registry Inc.
|
8211
9089
|
みんな
|
8212
9090
|
|
@@ -8216,9 +9094,15 @@ wtf
|
|
8216
9094
|
// xn--rhqv96g : 2013-09-11 Stable Tone Limited
|
8217
9095
|
世界
|
8218
9096
|
|
8219
|
-
// xn--ses554g : 2014-01-16
|
9097
|
+
// xn--ses554g : 2014-01-16
|
8220
9098
|
网址
|
8221
9099
|
|
9100
|
+
// xn--t60b56a : 2015-01-15 VeriSign Sarl
|
9101
|
+
닷넷
|
9102
|
+
|
9103
|
+
// xn--tckwe : 2015-01-15 VeriSign Sarl
|
9104
|
+
コム
|
9105
|
+
|
8222
9106
|
// xn--unup4y : 2013-07-14 Spring Fields, LLC
|
8223
9107
|
游戏
|
8224
9108
|
|
@@ -8231,6 +9115,9 @@ vermögensberatung
|
|
8231
9115
|
// xn--vhquv : 2013-08-27 Dash McCook, LLC
|
8232
9116
|
企业
|
8233
9117
|
|
9118
|
+
// xn--vuq861b : 2014-10-16 Beijing Tele-info Network Technology Co., Ltd.
|
9119
|
+
信息
|
9120
|
+
|
8234
9121
|
// xn--xhq521b : 2013-11-14 Guangzhou YU Wei Information Technology Co., Ltd.
|
8235
9122
|
广东
|
8236
9123
|
|
@@ -8243,9 +9130,15 @@ xyz
|
|
8243
9130
|
// yachts : 2014-01-09 DERYachts, LLC
|
8244
9131
|
yachts
|
8245
9132
|
|
9133
|
+
// yamaxun : 2014-12-18 Amazon EU S.à r.l.
|
9134
|
+
yamaxun
|
9135
|
+
|
8246
9136
|
// yandex : 2014-04-10 YANDEX, LLC
|
8247
9137
|
yandex
|
8248
9138
|
|
9139
|
+
// yodobashi : 2014-11-20 YODOBASHI CAMERA CO.,LTD.
|
9140
|
+
yodobashi
|
9141
|
+
|
8249
9142
|
// yoga : 2014-05-29 Top Level Domain Holdings Limited
|
8250
9143
|
yoga
|
8251
9144
|
|
@@ -8255,21 +9148,35 @@ yokohama
|
|
8255
9148
|
// youtube : 2014-05-01 Charleston Road Registry Inc.
|
8256
9149
|
youtube
|
8257
9150
|
|
9151
|
+
// yun : 2015-01-08 QIHOO 360 TECHNOLOGY CO. LTD.
|
9152
|
+
yun
|
9153
|
+
|
9154
|
+
// zara : 2014-11-07 Industria de Diseño Textil, S.A. (INDITEX, S.A.)
|
9155
|
+
zara
|
9156
|
+
|
9157
|
+
// zero : 2014-12-18 Amazon EU S.à r.l.
|
9158
|
+
zero
|
9159
|
+
|
8258
9160
|
// zip : 2014-05-08 Charleston Road Registry Inc.
|
8259
9161
|
zip
|
8260
9162
|
|
8261
9163
|
// zone : 2013-11-14 Outer Falls, LLC
|
8262
|
-
zone
|
9164
|
+
zone
|
9165
|
+
|
9166
|
+
// zuerich : 2014-11-07 Kanton Zürich (Canton of Zurich)
|
9167
|
+
zuerich
|
9168
|
+
|
8263
9169
|
|
8264
9170
|
// ===END ICANN DOMAINS===
|
8265
9171
|
// ===BEGIN PRIVATE DOMAINS===
|
9172
|
+
// (Note: these are in alphabetical order by company name)
|
8266
9173
|
|
8267
9174
|
// Amazon CloudFront : https://aws.amazon.com/cloudfront/
|
8268
9175
|
// Submitted by Donavan Miller <donavanm@amazon.com> 2013-03-22
|
8269
9176
|
cloudfront.net
|
8270
9177
|
|
8271
9178
|
// Amazon Elastic Compute Cloud: https://aws.amazon.com/ec2/
|
8272
|
-
// Submitted by Osman Surkatty <osmans@amazon.com> 2014-
|
9179
|
+
// Submitted by Osman Surkatty <osmans@amazon.com> 2014-12-16
|
8273
9180
|
ap-northeast-1.compute.amazonaws.com
|
8274
9181
|
ap-southeast-1.compute.amazonaws.com
|
8275
9182
|
ap-southeast-2.compute.amazonaws.com
|
@@ -8278,6 +9185,7 @@ compute.amazonaws.cn
|
|
8278
9185
|
compute.amazonaws.com
|
8279
9186
|
compute-1.amazonaws.com
|
8280
9187
|
eu-west-1.compute.amazonaws.com
|
9188
|
+
eu-central-1.compute.amazonaws.com
|
8281
9189
|
sa-east-1.compute.amazonaws.com
|
8282
9190
|
us-east-1.amazonaws.com
|
8283
9191
|
us-gov-west-1.compute.amazonaws.com
|
@@ -8386,6 +9294,10 @@ co.ca
|
|
8386
9294
|
co.nl
|
8387
9295
|
co.no
|
8388
9296
|
|
9297
|
+
// Commerce Guys, SAS
|
9298
|
+
// Submitted by Damien Tournoud <damien@commerceguys.com> 2015-01-22
|
9299
|
+
*.platform.sh
|
9300
|
+
|
8389
9301
|
// Cupcake : https://cupcake.io/
|
8390
9302
|
// Submitted by Jonathan Rudenberg <jonathan@cupcake.io> 2013-10-08
|
8391
9303
|
cupcake.is
|
@@ -8691,6 +9603,10 @@ firebaseapp.com
|
|
8691
9603
|
// Submitted by Jonathan Rudenberg <jonathan@flynn.io> 2014-07-12
|
8692
9604
|
flynnhub.com
|
8693
9605
|
|
9606
|
+
// GDS : https://www.gov.uk/service-manual/operations/operating-servicegovuk-subdomains
|
9607
|
+
// Submitted by David Illsley <david.illsley@digital.cabinet-office.gov.uk> 2014-08-28
|
9608
|
+
service.gov.uk
|
9609
|
+
|
8694
9610
|
// GitHub, Inc.
|
8695
9611
|
// Submitted by Ben Toews <btoews@github.com> 2014-02-06
|
8696
9612
|
github.io
|
@@ -8701,8 +9617,9 @@ githubusercontent.com
|
|
8701
9617
|
ro.com
|
8702
9618
|
|
8703
9619
|
// Google, Inc.
|
8704
|
-
// Submitted by Eduardo Vela <evn@google.com>
|
9620
|
+
// Submitted by Eduardo Vela <evn@google.com> 2014-12-19
|
8705
9621
|
appspot.com
|
9622
|
+
blogspot.ae
|
8706
9623
|
blogspot.be
|
8707
9624
|
blogspot.bj
|
8708
9625
|
blogspot.ca
|
@@ -8717,6 +9634,7 @@ blogspot.com.ar
|
|
8717
9634
|
blogspot.com.au
|
8718
9635
|
blogspot.com.br
|
8719
9636
|
blogspot.com.es
|
9637
|
+
blogspot.com.tr
|
8720
9638
|
blogspot.cv
|
8721
9639
|
blogspot.cz
|
8722
9640
|
blogspot.de
|
@@ -8738,6 +9656,7 @@ blogspot.no
|
|
8738
9656
|
blogspot.pt
|
8739
9657
|
blogspot.re
|
8740
9658
|
blogspot.ro
|
9659
|
+
blogspot.ru
|
8741
9660
|
blogspot.se
|
8742
9661
|
blogspot.sg
|
8743
9662
|
blogspot.sk
|
@@ -8746,6 +9665,7 @@ blogspot.tw
|
|
8746
9665
|
codespot.com
|
8747
9666
|
googleapis.com
|
8748
9667
|
googlecode.com
|
9668
|
+
pagespeedmobilizer.com
|
8749
9669
|
withgoogle.com
|
8750
9670
|
|
8751
9671
|
// Heroku : https://www.heroku.com/
|
@@ -8790,17 +9710,41 @@ operaunite.com
|
|
8790
9710
|
// Submitted by Duarte Santos <domain-admin@outsystemscloud.com> 2014-03-11
|
8791
9711
|
outsystemscloud.com
|
8792
9712
|
|
9713
|
+
// .pl domains (grandfathered)
|
9714
|
+
art.pl
|
9715
|
+
gliwice.pl
|
9716
|
+
krakow.pl
|
9717
|
+
poznan.pl
|
9718
|
+
wroc.pl
|
9719
|
+
zakopane.pl
|
9720
|
+
|
9721
|
+
// priv.at : http://www.nic.priv.at/
|
9722
|
+
// Submitted by registry <lendl@nic.at> 2008-06-09
|
9723
|
+
priv.at
|
9724
|
+
|
8793
9725
|
// Red Hat, Inc. OpenShift : https://openshift.redhat.com/
|
8794
9726
|
// Submitted by Tim Kramer <tkramer@rhcloud.com> 2012-10-24
|
8795
9727
|
rhcloud.com
|
8796
9728
|
|
8797
|
-
//
|
8798
|
-
// Submitted by
|
8799
|
-
|
9729
|
+
// SinaAppEngine : http://sae.sina.com.cn/
|
9730
|
+
// Submitted by SinaAppEngine <saesupport@sinacloud.com> 2015-02-02
|
9731
|
+
sinaapp.com
|
9732
|
+
vipsinaapp.com
|
9733
|
+
1kapp.com
|
8800
9734
|
|
8801
|
-
//
|
8802
|
-
|
8803
|
-
|
9735
|
+
// TASK geographical domains (www.task.gda.pl/uslugi/dns)
|
9736
|
+
gda.pl
|
9737
|
+
gdansk.pl
|
9738
|
+
gdynia.pl
|
9739
|
+
med.pl
|
9740
|
+
sopot.pl
|
9741
|
+
|
9742
|
+
// UDR Limited : http://www.udr.hk.com
|
9743
|
+
// Submitted by registry <hostmaster@udr.hk.com> 2014-11-07
|
9744
|
+
hk.com
|
9745
|
+
hk.org
|
9746
|
+
ltd.hk
|
9747
|
+
inc.hk
|
8804
9748
|
|
8805
9749
|
// Yola : https://www.yola.com/
|
8806
9750
|
// Submitted by Stefano Rivera <stefano@yola.com> 2014-07-09
|