ryodo 0.3.0 → 0.3.1
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/.rubocop.yml +17 -0
- data/.travis.yml +7 -5
- data/Gemfile +5 -0
- data/LICENSE +1 -1
- data/README.md +18 -101
- data/Rakefile +9 -9
- data/data/suffix.dat +342 -7
- data/lib/ryodo/convenience.rb +2 -0
- data/lib/ryodo/domain.rb +37 -13
- data/lib/ryodo/ext/uri.rb +8 -4
- data/lib/ryodo/methods.rb +0 -1
- data/lib/ryodo/parser.rb +2 -2
- data/lib/ryodo/rule.rb +3 -3
- data/lib/ryodo/rule_set.rb +51 -37
- data/lib/ryodo/suffix_list.rb +11 -13
- data/lib/ryodo/suffix_list_fetcher.rb +1 -0
- data/lib/ryodo/version.rb +1 -1
- data/ryodo.gemspec +7 -7
- data/spec/_files/mozilla_effective_tld_names.dat +975 -63
- data/spec/ryodo/suffix_list_fetcher_spec.rb +7 -6
- data/spec/ryodo/suffix_list_spec.rb +15 -16
- data/spec/spec_helper.rb +16 -7
- data/spec/suffix_checker.rb +130 -0
- metadata +12 -26
- data/checks/matching.rb +0 -107
- data/spec/ryodo_spec.rb +0 -5
data/lib/ryodo/convenience.rb
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
module Ryodo
|
2
2
|
module Convenience
|
3
|
+
# rubocop:disable Style/MethodName
|
3
4
|
def Ryodo(domain_string)
|
4
5
|
Ryodo.parse(domain_string)
|
5
6
|
end
|
@@ -7,6 +8,7 @@ module Ryodo
|
|
7
8
|
def Ryodo?(domain_string)
|
8
9
|
Ryodo.valid?(domain_string)
|
9
10
|
end
|
11
|
+
# rubocop:enable Style/MethodName
|
10
12
|
end
|
11
13
|
end
|
12
14
|
|
data/lib/ryodo/domain.rb
CHANGED
@@ -2,7 +2,6 @@ module Ryodo
|
|
2
2
|
class Domain
|
3
3
|
# DomainString is a String with extended methods
|
4
4
|
class DomainString < String
|
5
|
-
|
6
5
|
def reverse
|
7
6
|
to_a(:r).join(".")
|
8
7
|
end
|
@@ -20,7 +19,7 @@ module Ryodo
|
|
20
19
|
private
|
21
20
|
|
22
21
|
def dsplit
|
23
|
-
|
22
|
+
split(".", -1)
|
24
23
|
end
|
25
24
|
end
|
26
25
|
|
@@ -29,15 +28,9 @@ module Ryodo
|
|
29
28
|
|
30
29
|
def initialize(domainStr)
|
31
30
|
fail TypeError, "Not a valid domain string!" unless domainStr.is_a?(String)
|
32
|
-
@domain_string
|
33
|
-
|
34
|
-
|
35
|
-
no_dot_but_parts = no_leading_dot && parts
|
36
|
-
|
37
|
-
@suffix = parts[0].reverse.join(".") if no_dot_but_parts
|
38
|
-
@domain = (parts[0] + parts[1]).reverse.join(".") if no_dot_but_parts && !parts[1].empty?
|
39
|
-
@secondary = parts[1].first if no_dot_but_parts && !parts[1].empty?
|
40
|
-
@subdomain = (parts[2]).reverse.join(".") if no_dot_but_parts && !parts[2].empty?
|
31
|
+
@domain_string = DomainString.new domainStr.downcase
|
32
|
+
parse_domain_string
|
33
|
+
retrieve_domain_parts
|
41
34
|
end
|
42
35
|
|
43
36
|
def suffix
|
@@ -62,11 +55,11 @@ module Ryodo
|
|
62
55
|
end
|
63
56
|
|
64
57
|
def fqdn
|
65
|
-
DomainString.new("#{
|
58
|
+
DomainString.new("#{self}.")
|
66
59
|
end
|
67
60
|
|
68
61
|
def valid?
|
69
|
-
|
62
|
+
@suffix && @secondary && true
|
70
63
|
end
|
71
64
|
alias_method :is_valid?, :valid?
|
72
65
|
|
@@ -87,5 +80,36 @@ module Ryodo
|
|
87
80
|
def send(symbol, *args)
|
88
81
|
__send__(symbol, *args)
|
89
82
|
end
|
83
|
+
|
84
|
+
private
|
85
|
+
|
86
|
+
def parse_domain_string
|
87
|
+
no_leading_dot = @domain_string[0] != "."
|
88
|
+
@_parts = Ryodo::Parser.run(@domain_string)
|
89
|
+
@_no_dot_but_parts = no_leading_dot && @_parts
|
90
|
+
end
|
91
|
+
|
92
|
+
def retrieve_domain_parts
|
93
|
+
retrieve_suffix
|
94
|
+
retrieve_domain
|
95
|
+
retrieve_secondary
|
96
|
+
retrieve_subdomain
|
97
|
+
end
|
98
|
+
|
99
|
+
def retrieve_suffix
|
100
|
+
@suffix = @_parts[0].reverse.join(".") if @_no_dot_but_parts
|
101
|
+
end
|
102
|
+
|
103
|
+
def retrieve_domain
|
104
|
+
@domain = (@_parts[0] + @_parts[1]).reverse.join(".") if @_no_dot_but_parts && !@_parts[1].empty?
|
105
|
+
end
|
106
|
+
|
107
|
+
def retrieve_secondary
|
108
|
+
@secondary = @_parts[1].first if @_no_dot_but_parts && !@_parts[1].empty?
|
109
|
+
end
|
110
|
+
|
111
|
+
def retrieve_subdomain
|
112
|
+
@subdomain = (@_parts[2]).reverse.join(".") if @_no_dot_but_parts && !@_parts[2].empty?
|
113
|
+
end
|
90
114
|
end
|
91
115
|
end
|
data/lib/ryodo/ext/uri.rb
CHANGED
@@ -1,9 +1,13 @@
|
|
1
1
|
require "uri"
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
module URI
|
4
|
+
class Generic
|
5
|
+
alias_method :set_host_string, :set_host
|
5
6
|
|
6
|
-
|
7
|
-
|
7
|
+
# rubocop:disable Style/AccessorMethodName
|
8
|
+
def set_host(value)
|
9
|
+
@host = Ryodo.parse(set_host_string(value)) unless set_host_string(value).nil?
|
10
|
+
end
|
11
|
+
# rubocop:enable Style/AccessorMethodName
|
8
12
|
end
|
9
13
|
end
|
data/lib/ryodo/methods.rb
CHANGED
data/lib/ryodo/parser.rb
CHANGED
data/lib/ryodo/rule.rb
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
module Ryodo
|
2
|
-
|
2
|
+
Rule = Struct.new(:exception, :stop_ok, :children) do
|
3
3
|
def children?
|
4
4
|
!children.empty?
|
5
5
|
end
|
6
|
-
|
6
|
+
alias_method :has_children?, :children?
|
7
7
|
|
8
8
|
def suffix?
|
9
9
|
stop_ok
|
10
10
|
end
|
11
|
-
|
11
|
+
alias_method :is_suffix?, :suffix?
|
12
12
|
end
|
13
13
|
end
|
data/lib/ryodo/rule_set.rb
CHANGED
@@ -2,55 +2,69 @@ module Ryodo
|
|
2
2
|
class RuleSet
|
3
3
|
def initialize
|
4
4
|
@tree = {}
|
5
|
-
build
|
6
|
-
end
|
7
|
-
|
8
|
-
def
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
5
|
+
build
|
6
|
+
end
|
7
|
+
|
8
|
+
def match(path)
|
9
|
+
suffix, domain, match = find_match_parts(path, [], [], nil)
|
10
|
+
suffix.push(domain.shift) if match && !match.exception
|
11
|
+
# only if match has no children with domain and domain is present
|
12
|
+
[suffix, [domain.shift], domain] if match && domain[0] && !match.children.keys.include?(domain[0])
|
13
|
+
end
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def build
|
18
|
+
Ryodo::SuffixList.list.each { |line| build_line(line) }
|
19
|
+
end
|
20
|
+
|
21
|
+
def build_line(line)
|
22
|
+
line.each.with_index do |node_name, idx|
|
23
|
+
node_name, node = find_node_by_rule(node_name, line)
|
24
|
+
idx > 0 ? add_node_to_parent(node_name, node, idx, line) : add_node_to_tree(node_name, node)
|
25
25
|
end
|
26
26
|
end
|
27
27
|
|
28
|
+
def find_node_by_rule(node_name, line)
|
29
|
+
stop_ok = node_name == line.last
|
30
|
+
exception = node_name[0] == "!"
|
31
|
+
node_name = node_name[1..-1] if exception
|
32
|
+
children = {}
|
33
|
+
[node_name, Ryodo::Rule.new(exception, stop_ok, children)]
|
34
|
+
end
|
35
|
+
|
36
|
+
def add_node_to_parent(node_name, node, index, line)
|
37
|
+
end_idx = index - 1
|
38
|
+
parent = select_rule(line[0..end_idx])
|
39
|
+
parent.children[node_name] = node unless parent.children[node_name]
|
40
|
+
end
|
41
|
+
|
42
|
+
def add_node_to_tree(node_name, node)
|
43
|
+
@tree[node_name] = node unless @tree[node_name]
|
44
|
+
end
|
45
|
+
|
28
46
|
def select_rule(rule_path)
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
end
|
47
|
+
return unless rule_path[-1]
|
48
|
+
if rule_path[0..-2].empty?
|
49
|
+
@tree[rule_path[-1]]
|
50
|
+
else
|
51
|
+
(rule = select_rule(rule_path[0..-2])) && rule.children[rule_path[-1]]
|
35
52
|
end
|
36
53
|
end
|
37
54
|
|
38
|
-
def
|
39
|
-
|
40
|
-
|
41
|
-
until match || path.empty?
|
42
|
-
match = select_rule(path) || select_rule(path.dup.fill("*",-1))
|
43
|
-
match = nil if match && !match.is_suffix?
|
55
|
+
def find_match_parts(path, suffix, domain, rule_match)
|
56
|
+
until rule_match || path.empty?
|
57
|
+
rule_match = find_rule_match(path)
|
44
58
|
domain.unshift path.pop
|
45
59
|
suffix = path
|
46
60
|
end
|
47
61
|
|
48
|
-
suffix
|
62
|
+
[suffix, domain, rule_match]
|
63
|
+
end
|
49
64
|
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
end
|
65
|
+
def find_rule_match(path)
|
66
|
+
rule_match = select_rule(path) || select_rule(path.dup.fill("*", -1))
|
67
|
+
rule_match && !rule_match.is_suffix? ? nil : rule_match
|
54
68
|
end
|
55
69
|
end
|
56
70
|
end
|
data/lib/ryodo/suffix_list.rb
CHANGED
@@ -1,12 +1,14 @@
|
|
1
|
+
require "forwardable"
|
2
|
+
|
1
3
|
module Ryodo
|
2
4
|
class SuffixList
|
5
|
+
attr_reader :suffix_data
|
6
|
+
|
3
7
|
def initialize(suffix_file = Ryodo::PUBLIC_SUFFIX_STORE)
|
4
8
|
load_file(suffix_file)
|
5
9
|
end
|
6
10
|
|
7
11
|
def parse_data
|
8
|
-
# loads and converts to array
|
9
|
-
# "baz.bar.foo" => ["baz", "bar", "foo"]
|
10
12
|
File.readlines(@suffix_file).map { |line| line.strip.split(".") }
|
11
13
|
end
|
12
14
|
|
@@ -15,34 +17,30 @@ module Ryodo
|
|
15
17
|
@suffix_data = parse_data << ["example"]
|
16
18
|
end
|
17
19
|
|
18
|
-
|
19
|
-
@suffix_data
|
20
|
-
end
|
20
|
+
alias_method :list, :suffix_data
|
21
21
|
|
22
22
|
def inspect
|
23
23
|
"#<#{self.class} FILE:#{@suffix_file} ENTRIES:#{@suffix_data.size}>"
|
24
24
|
end
|
25
25
|
|
26
26
|
class << self
|
27
|
+
extend Forwardable
|
28
|
+
|
29
|
+
# rubocop:disable Style/MethodName
|
27
30
|
def SuffixList(suffix_file = Ryodo::PUBLIC_SUFFIX_STORE)
|
28
31
|
instance(suffix_file)
|
29
32
|
end
|
33
|
+
# rubocop:enable Style/MethodName
|
30
34
|
|
31
35
|
def reload(suffix_file = Ryodo::PUBLIC_SUFFIX_STORE)
|
32
36
|
instance.load_file(suffix_file) && true
|
33
37
|
end
|
34
38
|
|
35
|
-
def list
|
36
|
-
instance.list
|
37
|
-
end
|
38
|
-
|
39
39
|
def instance
|
40
|
-
|
40
|
+
@instance ||= new
|
41
41
|
end
|
42
42
|
|
43
|
-
|
44
|
-
instance.inspect
|
45
|
-
end
|
43
|
+
delegate [:list, :inspect] => :instance
|
46
44
|
end
|
47
45
|
|
48
46
|
private_class_method :new
|
data/lib/ryodo/version.rb
CHANGED
data/ryodo.gemspec
CHANGED
@@ -7,20 +7,20 @@ Gem::Specification.new do |spec|
|
|
7
7
|
spec.version = Ryodo::VERSION
|
8
8
|
spec.authors = ["Christoph Grabo"]
|
9
9
|
spec.email = ["chris@dinarrr.com"]
|
10
|
-
spec.description =
|
11
|
-
spec.summary =
|
10
|
+
spec.description = "ryōdo【領土】 りょうど — A domain name parser gem using public suffix list (provided by publicsuffix.org / mozilla)"
|
11
|
+
spec.summary = "ryōdo【領土】 りょうど — A domain name parser using public suffix list"
|
12
12
|
spec.homepage = "http://github.com/asaaki/ryodo"
|
13
13
|
spec.license = "MIT"
|
14
14
|
|
15
|
-
spec.files = `git ls-files`.split(
|
15
|
+
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
|
16
16
|
spec.executables = []
|
17
|
-
spec.test_files = spec.files.grep(
|
17
|
+
spec.test_files = spec.files.grep(/\A(test|spec|features)\//)
|
18
18
|
spec.require_paths = ["lib"]
|
19
19
|
|
20
20
|
spec.add_development_dependency "rake"
|
21
|
-
spec.add_development_dependency "bundler"
|
22
|
-
|
23
|
-
spec.add_development_dependency "rspec", "~> 3.
|
21
|
+
spec.add_development_dependency "bundler"
|
22
|
+
|
23
|
+
spec.add_development_dependency "rspec", "~> 3.2.0"
|
24
24
|
spec.add_development_dependency "fakeweb", "~> 1.3.0"
|
25
25
|
spec.add_development_dependency "pry", "~> 0.10.1"
|
26
26
|
spec.add_development_dependency "pry-doc", "~> 0.6.0"
|
@@ -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
|
@@ -6753,7 +6780,10 @@ xxx
|
|
6753
6780
|
*.zw
|
6754
6781
|
|
6755
6782
|
|
6756
|
-
// List of new gTLDs imported from https://newgtlds.icann.org/newgtlds.csv on
|
6783
|
+
// List of new gTLDs imported from https://newgtlds.icann.org/newgtlds.csv on 2015-01-27T00:02:07Z
|
6784
|
+
|
6785
|
+
// abb : 2014-10-24 ABB Ltd
|
6786
|
+
abb
|
6757
6787
|
|
6758
6788
|
// abbott : 2014-07-24 Abbott Laboratories, Inc.
|
6759
6789
|
abbott
|
@@ -6767,24 +6797,51 @@ academy
|
|
6767
6797
|
// accenture : 2014-08-15 Accenture plc
|
6768
6798
|
accenture
|
6769
6799
|
|
6800
|
+
// accountant : 2014-11-20 dot Accountant Limited
|
6801
|
+
accountant
|
6802
|
+
|
6770
6803
|
// accountants : 2014-03-20 Knob Town, LLC
|
6771
6804
|
accountants
|
6772
6805
|
|
6806
|
+
// aco : 2015-01-08 ACO Severin Ahlmann GmbH & Co. KG
|
6807
|
+
aco
|
6808
|
+
|
6773
6809
|
// active : 2014-05-01 The Active Network, Inc
|
6774
6810
|
active
|
6775
6811
|
|
6776
6812
|
// actor : 2013-12-12 United TLD Holdco Ltd.
|
6777
6813
|
actor
|
6778
6814
|
|
6815
|
+
// ads : 2014-12-04 Charleston Road Registry Inc.
|
6816
|
+
ads
|
6817
|
+
|
6818
|
+
// adult : 2014-10-16 ICM Registry AD LLC
|
6819
|
+
adult
|
6820
|
+
|
6821
|
+
// afl : 2014-10-02 Australian Football League
|
6822
|
+
afl
|
6823
|
+
|
6779
6824
|
// africa : 2014-03-24 ZA Central Registry NPC trading as Registry.Africa
|
6780
6825
|
africa
|
6781
6826
|
|
6782
6827
|
// agency : 2013-11-14 Steel Falls, LLC
|
6783
6828
|
agency
|
6784
6829
|
|
6830
|
+
// aig : 2014-12-18 American International Group, Inc.
|
6831
|
+
aig
|
6832
|
+
|
6785
6833
|
// airforce : 2014-03-06 United TLD Holdco Ltd.
|
6786
6834
|
airforce
|
6787
6835
|
|
6836
|
+
// airtel : 2014-10-24 Bharti Airtel Limited
|
6837
|
+
airtel
|
6838
|
+
|
6839
|
+
// alibaba : 2015-01-15 Alibaba Group Holding Limited
|
6840
|
+
alibaba
|
6841
|
+
|
6842
|
+
// alipay : 2015-01-15 Alibaba Group Holding Limited
|
6843
|
+
alipay
|
6844
|
+
|
6788
6845
|
// allfinanz : 2014-07-03 Allfinanz Deutsche Vermögensberatung Aktiengesellschaft
|
6789
6846
|
allfinanz
|
6790
6847
|
|
@@ -6794,45 +6851,84 @@ alsace
|
|
6794
6851
|
// amsterdam : 2014-07-24 Gemeente Amsterdam
|
6795
6852
|
amsterdam
|
6796
6853
|
|
6854
|
+
// analytics : 2014-12-18 Campus IP LLC
|
6855
|
+
analytics
|
6856
|
+
|
6797
6857
|
// android : 2014-08-07 Charleston Road Registry Inc.
|
6798
6858
|
android
|
6799
6859
|
|
6860
|
+
// anquan : 2015-01-08 QIHOO 360 TECHNOLOGY CO. LTD.
|
6861
|
+
anquan
|
6862
|
+
|
6863
|
+
// apartments : 2014-12-11 June Maple, LLC
|
6864
|
+
apartments
|
6865
|
+
|
6800
6866
|
// aquarelle : 2014-07-24 Aquarelle.com
|
6801
6867
|
aquarelle
|
6802
6868
|
|
6869
|
+
// aramco : 2014-11-20 Aramco Services Company
|
6870
|
+
aramco
|
6871
|
+
|
6803
6872
|
// archi : 2014-02-06 STARTING DOT LIMITED
|
6804
6873
|
archi
|
6805
6874
|
|
6806
6875
|
// army : 2014-03-06 United TLD Holdco Ltd.
|
6807
6876
|
army
|
6808
6877
|
|
6878
|
+
// arte : 2014-12-11 Association Relative à la Télévision Européenne G.E.I.E.
|
6879
|
+
arte
|
6880
|
+
|
6809
6881
|
// associates : 2014-03-06 Baxter Hill, LLC
|
6810
6882
|
associates
|
6811
6883
|
|
6812
|
-
// attorney : 2014-03-20
|
6884
|
+
// attorney : 2014-03-20
|
6813
6885
|
attorney
|
6814
6886
|
|
6815
|
-
// auction : 2014-03-20
|
6887
|
+
// auction : 2014-03-20
|
6816
6888
|
auction
|
6817
6889
|
|
6818
6890
|
// audio : 2014-03-20 Uniregistry, Corp.
|
6819
6891
|
audio
|
6820
6892
|
|
6893
|
+
// author : 2014-12-18 Amazon EU S.à r.l.
|
6894
|
+
author
|
6895
|
+
|
6896
|
+
// auto : 2014-11-13 Uniregistry, Corp.
|
6897
|
+
auto
|
6898
|
+
|
6821
6899
|
// autos : 2014-01-09 DERAutos, LLC
|
6822
6900
|
autos
|
6823
6901
|
|
6902
|
+
// avianca : 2015-01-08 Aerovias del Continente Americano S.A. Avianca
|
6903
|
+
avianca
|
6904
|
+
|
6824
6905
|
// axa : 2013-12-19 AXA SA
|
6825
6906
|
axa
|
6826
6907
|
|
6827
|
-
//
|
6908
|
+
// azure : 2014-12-18 Microsoft Corporation
|
6909
|
+
azure
|
6910
|
+
|
6911
|
+
// baidu : 2015-01-08 Baidu, Inc.
|
6912
|
+
baidu
|
6913
|
+
|
6914
|
+
// band : 2014-06-12
|
6828
6915
|
band
|
6829
6916
|
|
6917
|
+
// bank : 2014-09-25 fTLD Registry Services LLC
|
6918
|
+
bank
|
6919
|
+
|
6830
6920
|
// bar : 2013-12-12 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
|
6831
6921
|
bar
|
6832
6922
|
|
6833
6923
|
// barcelona : 2014-07-24 Municipi de Barcelona
|
6834
6924
|
barcelona
|
6835
6925
|
|
6926
|
+
// barclaycard : 2014-11-20 Barclays Bank PLC
|
6927
|
+
barclaycard
|
6928
|
+
|
6929
|
+
// barclays : 2014-11-20 Barclays Bank PLC
|
6930
|
+
barclays
|
6931
|
+
|
6836
6932
|
// bargains : 2013-11-14 Half Hallow, LLC
|
6837
6933
|
bargains
|
6838
6934
|
|
@@ -6842,12 +6938,21 @@ bauhaus
|
|
6842
6938
|
// bayern : 2014-01-23 Bayern Connect GmbH
|
6843
6939
|
bayern
|
6844
6940
|
|
6941
|
+
// bbc : 2014-12-18 British Broadcasting Corporation
|
6942
|
+
bbc
|
6943
|
+
|
6944
|
+
// bbva : 2014-10-02 BANCO BILBAO VIZCAYA ARGENTARIA, S.A.
|
6945
|
+
bbva
|
6946
|
+
|
6845
6947
|
// bcn : 2014-07-24 Municipi de Barcelona
|
6846
6948
|
bcn
|
6847
6949
|
|
6848
6950
|
// beer : 2014-01-09 Top Level Domain Holdings Limited
|
6849
6951
|
beer
|
6850
6952
|
|
6953
|
+
// bentley : 2014-12-18 Bentley Motors Limited
|
6954
|
+
bentley
|
6955
|
+
|
6851
6956
|
// berlin : 2013-10-31 dotBERLIN GmbH & Co. KG
|
6852
6957
|
berlin
|
6853
6958
|
|
@@ -6866,6 +6971,12 @@ bid
|
|
6866
6971
|
// bike : 2013-08-27 Grand Hollow, LLC
|
6867
6972
|
bike
|
6868
6973
|
|
6974
|
+
// bing : 2014-12-18 Microsoft Corporation
|
6975
|
+
bing
|
6976
|
+
|
6977
|
+
// bingo : 2014-12-04 Sand Cedar, LLC
|
6978
|
+
bingo
|
6979
|
+
|
6869
6980
|
// bio : 2014-03-06 STARTING DOT LIMITED
|
6870
6981
|
bio
|
6871
6982
|
|
@@ -6881,6 +6992,9 @@ bloomberg
|
|
6881
6992
|
// blue : 2013-11-07 Afilias Limited
|
6882
6993
|
blue
|
6883
6994
|
|
6995
|
+
// bms : 2014-10-30 Bristol-Myers Squibb Company
|
6996
|
+
bms
|
6997
|
+
|
6884
6998
|
// bmw : 2014-01-09 Bayerische Motoren Werke Aktiengesellschaft
|
6885
6999
|
bmw
|
6886
7000
|
|
@@ -6890,15 +7004,39 @@ bnl
|
|
6890
7004
|
// bnpparibas : 2014-05-29 BNP Paribas
|
6891
7005
|
bnpparibas
|
6892
7006
|
|
7007
|
+
// boats : 2014-12-04 DERBoats, LLC
|
7008
|
+
boats
|
7009
|
+
|
7010
|
+
// bom : 2014-10-16 Núcleo de Informação e Coordenação do Ponto BR - NIC.br
|
7011
|
+
bom
|
7012
|
+
|
6893
7013
|
// bond : 2014-06-05 Bond University Limited
|
6894
7014
|
bond
|
6895
7015
|
|
6896
7016
|
// boo : 2014-01-30 Charleston Road Registry Inc.
|
6897
7017
|
boo
|
6898
7018
|
|
7019
|
+
// boots : 2015-01-08 THE BOOTS COMPANY PLC
|
7020
|
+
boots
|
7021
|
+
|
7022
|
+
// bot : 2014-12-18 Amazon EU S.à r.l.
|
7023
|
+
bot
|
7024
|
+
|
6899
7025
|
// boutique : 2013-11-14 Over Galley, LLC
|
6900
7026
|
boutique
|
6901
7027
|
|
7028
|
+
// bradesco : 2014-12-18 Banco Bradesco S.A.
|
7029
|
+
bradesco
|
7030
|
+
|
7031
|
+
// bridgestone : 2014-12-18 Bridgestone Corporation
|
7032
|
+
bridgestone
|
7033
|
+
|
7034
|
+
// broadway : 2014-12-22 Celebrate Broadway, Inc.
|
7035
|
+
broadway
|
7036
|
+
|
7037
|
+
// broker : 2014-12-11 IG Group Holdings PLC
|
7038
|
+
broker
|
7039
|
+
|
6902
7040
|
// brussels : 2014-02-06 DNS.be vzw
|
6903
7041
|
brussels
|
6904
7042
|
|
@@ -6914,6 +7052,9 @@ builders
|
|
6914
7052
|
// business : 2013-11-07 Spring Cross, LLC
|
6915
7053
|
business
|
6916
7054
|
|
7055
|
+
// buy : 2014-12-18 Amazon EU S.à r.l.
|
7056
|
+
buy
|
7057
|
+
|
6917
7058
|
// buzz : 2013-10-02 DOTSTRATEGY CO.
|
6918
7059
|
buzz
|
6919
7060
|
|
@@ -6926,6 +7067,9 @@ cab
|
|
6926
7067
|
// cal : 2014-07-24 Charleston Road Registry Inc.
|
6927
7068
|
cal
|
6928
7069
|
|
7070
|
+
// call : 2014-12-18 Amazon EU S.à r.l.
|
7071
|
+
call
|
7072
|
+
|
6929
7073
|
// camera : 2013-08-27 Atomic Maple, LLC
|
6930
7074
|
camera
|
6931
7075
|
|
@@ -6935,12 +7079,18 @@ camp
|
|
6935
7079
|
// cancerresearch : 2014-05-15 Australian Cancer Research Foundation
|
6936
7080
|
cancerresearch
|
6937
7081
|
|
7082
|
+
// canon : 2014-09-12 Canon Inc.
|
7083
|
+
canon
|
7084
|
+
|
6938
7085
|
// capetown : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
|
6939
7086
|
capetown
|
6940
7087
|
|
6941
7088
|
// capital : 2014-03-06 Delta Mill, LLC
|
6942
7089
|
capital
|
6943
7090
|
|
7091
|
+
// car : 2015-01-22 Charleston Road Registry Inc.
|
7092
|
+
car
|
7093
|
+
|
6944
7094
|
// caravan : 2013-12-12 Caravan International, Inc.
|
6945
7095
|
caravan
|
6946
7096
|
|
@@ -6956,6 +7106,9 @@ career
|
|
6956
7106
|
// careers : 2013-10-02 Wild Corner, LLC
|
6957
7107
|
careers
|
6958
7108
|
|
7109
|
+
// cars : 2014-11-13 Uniregistry, Corp.
|
7110
|
+
cars
|
7111
|
+
|
6959
7112
|
// cartier : 2014-06-23 Richemont DNS Inc.
|
6960
7113
|
cartier
|
6961
7114
|
|
@@ -6965,6 +7118,9 @@ casa
|
|
6965
7118
|
// cash : 2014-03-06 Delta Lake, LLC
|
6966
7119
|
cash
|
6967
7120
|
|
7121
|
+
// casino : 2014-12-18 Binky Sky, LLC
|
7122
|
+
casino
|
7123
|
+
|
6968
7124
|
// catering : 2013-12-05 New Falls. LLC
|
6969
7125
|
catering
|
6970
7126
|
|
@@ -6986,12 +7142,21 @@ cern
|
|
6986
7142
|
// cfa : 2014-08-28 CFA Institute
|
6987
7143
|
cfa
|
6988
7144
|
|
7145
|
+
// cfd : 2014-12-11 IG Group Holdings PLC
|
7146
|
+
cfd
|
7147
|
+
|
6989
7148
|
// channel : 2014-05-08 Charleston Road Registry Inc.
|
6990
7149
|
channel
|
6991
7150
|
|
7151
|
+
// chat : 2014-12-04 Sand Fields, LLC
|
7152
|
+
chat
|
7153
|
+
|
6992
7154
|
// cheap : 2013-11-14 Sand Cover, LLC
|
6993
7155
|
cheap
|
6994
7156
|
|
7157
|
+
// chloe : 2014-10-16 Richemont DNS Inc.
|
7158
|
+
chloe
|
7159
|
+
|
6995
7160
|
// christmas : 2013-11-21 Uniregistry, Corp.
|
6996
7161
|
christmas
|
6997
7162
|
|
@@ -7001,12 +7166,21 @@ chrome
|
|
7001
7166
|
// church : 2014-02-06 Holly Fileds, LLC
|
7002
7167
|
church
|
7003
7168
|
|
7169
|
+
// circle : 2014-12-18 Amazon EU S.à r.l.
|
7170
|
+
circle
|
7171
|
+
|
7172
|
+
// cisco : 2014-12-22 Cisco Technology, Inc.
|
7173
|
+
cisco
|
7174
|
+
|
7004
7175
|
// citic : 2014-01-09 CITIC Group Corporation
|
7005
7176
|
citic
|
7006
7177
|
|
7007
7178
|
// city : 2014-05-29 Snow Sky, LLC
|
7008
7179
|
city
|
7009
7180
|
|
7181
|
+
// cityeats : 2014-12-11 Lifestyle Domain Holdings, Inc.
|
7182
|
+
cityeats
|
7183
|
+
|
7010
7184
|
// claims : 2014-03-20 Black Corner, LLC
|
7011
7185
|
claims
|
7012
7186
|
|
@@ -7025,6 +7199,9 @@ clothing
|
|
7025
7199
|
// club : 2013-11-08 .CLUB DOMAINS, LLC
|
7026
7200
|
club
|
7027
7201
|
|
7202
|
+
// coach : 2014-10-09 Koko Island, LLC
|
7203
|
+
coach
|
7204
|
+
|
7028
7205
|
// codes : 2013-10-31 Puff Willow, LLC
|
7029
7206
|
codes
|
7030
7207
|
|
@@ -7049,15 +7226,21 @@ company
|
|
7049
7226
|
// computer : 2013-10-24 Pine Mill, LLC
|
7050
7227
|
computer
|
7051
7228
|
|
7229
|
+
// comsec : 2015-01-08 VeriSign, Inc.
|
7230
|
+
comsec
|
7231
|
+
|
7052
7232
|
// condos : 2013-12-05 Pine House, LLC
|
7053
7233
|
condos
|
7054
7234
|
|
7055
7235
|
// construction : 2013-09-16 Fox Dynamite, LLC
|
7056
7236
|
construction
|
7057
7237
|
|
7058
|
-
// consulting : 2013-12-05
|
7238
|
+
// consulting : 2013-12-05
|
7059
7239
|
consulting
|
7060
7240
|
|
7241
|
+
// contact : 2015-01-08 Top Level Spectrum, Inc.
|
7242
|
+
contact
|
7243
|
+
|
7061
7244
|
// contractors : 2013-09-10 Magic Woods, LLC
|
7062
7245
|
contractors
|
7063
7246
|
|
@@ -7067,27 +7250,48 @@ cooking
|
|
7067
7250
|
// cool : 2013-11-14 Koko Lake, LLC
|
7068
7251
|
cool
|
7069
7252
|
|
7253
|
+
// corsica : 2014-09-25 Collectivité Territoriale de Corse
|
7254
|
+
corsica
|
7255
|
+
|
7070
7256
|
// country : 2013-12-19 Top Level Domain Holdings Limited
|
7071
7257
|
country
|
7072
7258
|
|
7259
|
+
// courses : 2014-12-04 OPEN UNIVERSITIES AUSTRALIA PTY LTD
|
7260
|
+
courses
|
7261
|
+
|
7073
7262
|
// credit : 2014-03-20 Snow Shadow, LLC
|
7074
7263
|
credit
|
7075
7264
|
|
7076
7265
|
// creditcard : 2014-03-20 Binky Frostbite, LLC
|
7077
7266
|
creditcard
|
7078
7267
|
|
7268
|
+
// creditunion : 2015-01-22 CUNA Performance Resources, LLC
|
7269
|
+
creditunion
|
7270
|
+
|
7271
|
+
// cricket : 2014-10-09 dot Cricket Limited
|
7272
|
+
cricket
|
7273
|
+
|
7274
|
+
// crown : 2014-10-24 Crown Equipment Corporation
|
7275
|
+
crown
|
7276
|
+
|
7079
7277
|
// crs : 2014-04-03 Federated Co-operatives Limited
|
7080
7278
|
crs
|
7081
7279
|
|
7082
7280
|
// cruises : 2013-12-05 Spring Way, LLC
|
7083
7281
|
cruises
|
7084
7282
|
|
7283
|
+
// csc : 2014-09-25 Alliance-One Services, Inc.
|
7284
|
+
csc
|
7285
|
+
|
7085
7286
|
// cuisinella : 2014-04-03 SALM S.A.S.
|
7086
7287
|
cuisinella
|
7087
7288
|
|
7088
7289
|
// cymru : 2014-05-08 Nominet UK
|
7089
7290
|
cymru
|
7090
7291
|
|
7292
|
+
// cyou : 2015-01-22 Beijing Gamease Age Digital Technology Co., Ltd.
|
7293
|
+
cyou
|
7294
|
+
|
7091
7295
|
// dabur : 2014-02-06 Dabur India Limited
|
7092
7296
|
dabur
|
7093
7297
|
|
@@ -7097,6 +7301,9 @@ dad
|
|
7097
7301
|
// dance : 2013-10-24 United TLD Holdco Ltd.
|
7098
7302
|
dance
|
7099
7303
|
|
7304
|
+
// date : 2014-11-20 dot Date Limited
|
7305
|
+
date
|
7306
|
+
|
7100
7307
|
// dating : 2013-12-05 Pine Fest, LLC
|
7101
7308
|
dating
|
7102
7309
|
|
@@ -7106,24 +7313,42 @@ datsun
|
|
7106
7313
|
// day : 2014-01-30 Charleston Road Registry Inc.
|
7107
7314
|
day
|
7108
7315
|
|
7316
|
+
// dclk : 2014-11-20 Charleston Road Registry Inc.
|
7317
|
+
dclk
|
7318
|
+
|
7319
|
+
// dealer : 2014-12-22 Dealer Dot Com, Inc.
|
7320
|
+
dealer
|
7321
|
+
|
7109
7322
|
// deals : 2014-05-22 Sand Sunset, LLC
|
7110
7323
|
deals
|
7111
7324
|
|
7112
|
-
// degree : 2014-03-06
|
7325
|
+
// degree : 2014-03-06
|
7113
7326
|
degree
|
7114
7327
|
|
7328
|
+
// delivery : 2014-09-11 Steel Station, LLC
|
7329
|
+
delivery
|
7330
|
+
|
7331
|
+
// dell : 2014-10-24 Dell Inc.
|
7332
|
+
dell
|
7333
|
+
|
7115
7334
|
// democrat : 2013-10-24 United TLD Holdco Ltd.
|
7116
7335
|
democrat
|
7117
7336
|
|
7118
7337
|
// dental : 2014-03-20 Tin Birch, LLC
|
7119
7338
|
dental
|
7120
7339
|
|
7121
|
-
// dentist : 2014-03-20
|
7340
|
+
// dentist : 2014-03-20
|
7122
7341
|
dentist
|
7123
7342
|
|
7124
7343
|
// desi : 2013-11-14 Desi Networks LLC
|
7125
7344
|
desi
|
7126
7345
|
|
7346
|
+
// design : 2014-11-07 Top Level Design, LLC
|
7347
|
+
design
|
7348
|
+
|
7349
|
+
// dev : 2014-10-16 Charleston Road Registry Inc.
|
7350
|
+
dev
|
7351
|
+
|
7127
7352
|
// diamonds : 2013-09-22 John Edge, LLC
|
7128
7353
|
diamonds
|
7129
7354
|
|
@@ -7145,21 +7370,42 @@ discount
|
|
7145
7370
|
// dnp : 2013-12-13 Dai Nippon Printing Co., Ltd.
|
7146
7371
|
dnp
|
7147
7372
|
|
7373
|
+
// docs : 2014-10-16 Charleston Road Registry Inc.
|
7374
|
+
docs
|
7375
|
+
|
7376
|
+
// dog : 2014-12-04 Koko Mill, LLC
|
7377
|
+
dog
|
7378
|
+
|
7379
|
+
// doha : 2014-09-18 Communications Regulatory Authority (CRA)
|
7380
|
+
doha
|
7381
|
+
|
7148
7382
|
// domains : 2013-10-17 Sugar Cross, LLC
|
7149
7383
|
domains
|
7150
7384
|
|
7151
7385
|
// doosan : 2014-04-03 Doosan Corporation
|
7152
7386
|
doosan
|
7153
7387
|
|
7388
|
+
// download : 2014-11-20 dot Support Limited
|
7389
|
+
download
|
7390
|
+
|
7391
|
+
// dubai : 2015-01-01 Dubai Smart Government Department
|
7392
|
+
dubai
|
7393
|
+
|
7154
7394
|
// durban : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
|
7155
7395
|
durban
|
7156
7396
|
|
7157
7397
|
// dvag : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG
|
7158
7398
|
dvag
|
7159
7399
|
|
7400
|
+
// earth : 2014-12-04 Interlink Co., Ltd.
|
7401
|
+
earth
|
7402
|
+
|
7160
7403
|
// eat : 2014-01-23 Charleston Road Registry Inc.
|
7161
7404
|
eat
|
7162
7405
|
|
7406
|
+
// edeka : 2014-12-18 EDEKA Verband kaufmännischer Genossenschaften e.V.
|
7407
|
+
edeka
|
7408
|
+
|
7163
7409
|
// education : 2013-11-07 Brice Way, LLC
|
7164
7410
|
education
|
7165
7411
|
|
@@ -7169,6 +7415,9 @@ email
|
|
7169
7415
|
// emerck : 2014-04-03 Merck KGaA
|
7170
7416
|
emerck
|
7171
7417
|
|
7418
|
+
// energy : 2014-09-11 Binky Birch, LLC
|
7419
|
+
energy
|
7420
|
+
|
7172
7421
|
// engineer : 2014-03-06 United TLD Holdco Ltd.
|
7173
7422
|
engineer
|
7174
7423
|
|
@@ -7178,6 +7427,9 @@ engineering
|
|
7178
7427
|
// enterprises : 2013-09-20 Snow Oaks, LLC
|
7179
7428
|
enterprises
|
7180
7429
|
|
7430
|
+
// epson : 2014-12-04 Seiko Epson Corporation
|
7431
|
+
epson
|
7432
|
+
|
7181
7433
|
// equipment : 2013-08-27 Corn Station, LLC
|
7182
7434
|
equipment
|
7183
7435
|
|
@@ -7211,27 +7463,54 @@ expert
|
|
7211
7463
|
// exposed : 2013-12-05 Victor Beach, LLC
|
7212
7464
|
exposed
|
7213
7465
|
|
7466
|
+
// fage : 2014-12-18 Fage International S.A.
|
7467
|
+
fage
|
7468
|
+
|
7214
7469
|
// fail : 2014-03-06 Atomic Pipe, LLC
|
7215
7470
|
fail
|
7216
7471
|
|
7217
|
-
//
|
7472
|
+
// fairwinds : 2014-11-13 FairWinds Partners, LLC
|
7473
|
+
fairwinds
|
7474
|
+
|
7475
|
+
// faith : 2014-11-20 dot Faith Limited
|
7476
|
+
faith
|
7477
|
+
|
7478
|
+
// fan : 2014-03-06
|
7218
7479
|
fan
|
7219
7480
|
|
7481
|
+
// fans : 2014-11-07 Asiamix Digital Limited
|
7482
|
+
fans
|
7483
|
+
|
7220
7484
|
// farm : 2013-11-07 Just Maple, LLC
|
7221
7485
|
farm
|
7222
7486
|
|
7223
7487
|
// fashion : 2014-07-03 Top Level Domain Holdings Limited
|
7224
7488
|
fashion
|
7225
7489
|
|
7490
|
+
// fast : 2014-12-18 Amazon EU S.à r.l.
|
7491
|
+
fast
|
7492
|
+
|
7226
7493
|
// feedback : 2013-12-19 Top Level Spectrum, Inc.
|
7227
7494
|
feedback
|
7228
7495
|
|
7496
|
+
// ferrero : 2014-12-18 Ferrero Trading Lux S.A.
|
7497
|
+
ferrero
|
7498
|
+
|
7499
|
+
// film : 2015-01-08 Motion Picture Domain Registry Pty Ltd
|
7500
|
+
film
|
7501
|
+
|
7502
|
+
// final : 2014-10-16 Núcleo de Informação e Coordenação do Ponto BR - NIC.br
|
7503
|
+
final
|
7504
|
+
|
7229
7505
|
// finance : 2014-03-20 Cotton Cypress, LLC
|
7230
7506
|
finance
|
7231
7507
|
|
7232
7508
|
// financial : 2014-03-06 Just Cover, LLC
|
7233
7509
|
financial
|
7234
7510
|
|
7511
|
+
// firestone : 2014-12-18 Bridgestone Corporation
|
7512
|
+
firestone
|
7513
|
+
|
7235
7514
|
// firmdale : 2014-03-27 Firmdale Holdings Limited
|
7236
7515
|
firmdale
|
7237
7516
|
|
@@ -7241,6 +7520,9 @@ fish
|
|
7241
7520
|
// fishing : 2013-11-21 Top Level Domain Holdings Limited
|
7242
7521
|
fishing
|
7243
7522
|
|
7523
|
+
// fit : 2014-11-07 Top Level Domain Holdings Limited
|
7524
|
+
fit
|
7525
|
+
|
7244
7526
|
// fitness : 2014-03-06 Brice Orchard, LLC
|
7245
7527
|
fitness
|
7246
7528
|
|
@@ -7250,6 +7532,9 @@ flights
|
|
7250
7532
|
// florist : 2013-11-07 Half Cypress, LLC
|
7251
7533
|
florist
|
7252
7534
|
|
7535
|
+
// flowers : 2014-10-09 Uniregistry, Corp.
|
7536
|
+
flowers
|
7537
|
+
|
7253
7538
|
// flsmidth : 2014-07-24 FLSmidth A/S
|
7254
7539
|
flsmidth
|
7255
7540
|
|
@@ -7259,7 +7544,16 @@ fly
|
|
7259
7544
|
// foo : 2014-01-23 Charleston Road Registry Inc.
|
7260
7545
|
foo
|
7261
7546
|
|
7262
|
-
//
|
7547
|
+
// football : 2014-12-18 Foggy Farms, LLC
|
7548
|
+
football
|
7549
|
+
|
7550
|
+
// ford : 2014-11-13 Ford Motor Company
|
7551
|
+
ford
|
7552
|
+
|
7553
|
+
// forex : 2014-12-11 IG Group Holdings PLC
|
7554
|
+
forex
|
7555
|
+
|
7556
|
+
// forsale : 2014-05-22
|
7263
7557
|
forsale
|
7264
7558
|
|
7265
7559
|
// foundation : 2013-12-05 John Dale, LLC
|
@@ -7277,7 +7571,7 @@ fund
|
|
7277
7571
|
// furniture : 2014-03-20 Lone Fields, LLC
|
7278
7572
|
furniture
|
7279
7573
|
|
7280
|
-
// futbol : 2013-09-20
|
7574
|
+
// futbol : 2013-09-20
|
7281
7575
|
futbol
|
7282
7576
|
|
7283
7577
|
// gal : 2013-11-07 Asociación puntoGAL
|
@@ -7295,6 +7589,9 @@ gbiz
|
|
7295
7589
|
// gdn : 2014-07-31 Joint Stock Company \
|
7296
7590
|
gdn
|
7297
7591
|
|
7592
|
+
// gea : 2014-12-04 GEA Group Aktiengesellschaft
|
7593
|
+
gea
|
7594
|
+
|
7298
7595
|
// gent : 2014-01-23 COMBELL GROUP NV/SA
|
7299
7596
|
gent
|
7300
7597
|
|
@@ -7310,6 +7607,9 @@ gifts
|
|
7310
7607
|
// gives : 2014-03-06 United TLD Holdco Ltd.
|
7311
7608
|
gives
|
7312
7609
|
|
7610
|
+
// giving : 2014-11-13 Giving Limited
|
7611
|
+
giving
|
7612
|
+
|
7313
7613
|
// glass : 2013-11-07 Black Cover, LLC
|
7314
7614
|
glass
|
7315
7615
|
|
@@ -7331,12 +7631,30 @@ gmo
|
|
7331
7631
|
// gmx : 2014-04-24 1&1 Mail & Media GmbH
|
7332
7632
|
gmx
|
7333
7633
|
|
7634
|
+
// gold : 2015-01-22 June Edge, LLC
|
7635
|
+
gold
|
7636
|
+
|
7637
|
+
// goldpoint : 2014-11-20 YODOBASHI CAMERA CO.,LTD.
|
7638
|
+
goldpoint
|
7639
|
+
|
7640
|
+
// golf : 2014-12-18 Lone falls, LLC
|
7641
|
+
golf
|
7642
|
+
|
7643
|
+
// goo : 2014-12-18 NTT Resonant Inc.
|
7644
|
+
goo
|
7645
|
+
|
7646
|
+
// goog : 2014-11-20 Charleston Road Registry Inc.
|
7647
|
+
goog
|
7648
|
+
|
7334
7649
|
// google : 2014-07-24 Charleston Road Registry Inc.
|
7335
7650
|
google
|
7336
7651
|
|
7337
7652
|
// gop : 2014-01-16 Republican State Leadership Committee, Inc.
|
7338
7653
|
gop
|
7339
7654
|
|
7655
|
+
// got : 2014-12-18 Amazon EU S.à r.l.
|
7656
|
+
got
|
7657
|
+
|
7340
7658
|
// graphics : 2013-09-13 Over Madison, LLC
|
7341
7659
|
graphics
|
7342
7660
|
|
@@ -7352,6 +7670,9 @@ gripe
|
|
7352
7670
|
// group : 2014-08-15 Romeo Town, LLC
|
7353
7671
|
group
|
7354
7672
|
|
7673
|
+
// gucci : 2014-11-13 Guccio Gucci S.p.a.
|
7674
|
+
gucci
|
7675
|
+
|
7355
7676
|
// guge : 2014-08-28 Charleston Road Registry Inc.
|
7356
7677
|
guge
|
7357
7678
|
|
@@ -7367,7 +7688,10 @@ guru
|
|
7367
7688
|
// hamburg : 2014-02-20 Hamburg Top-Level-Domain GmbH
|
7368
7689
|
hamburg
|
7369
7690
|
|
7370
|
-
//
|
7691
|
+
// hangout : 2014-11-13 Charleston Road Registry Inc.
|
7692
|
+
hangout
|
7693
|
+
|
7694
|
+
// haus : 2013-12-05
|
7371
7695
|
haus
|
7372
7696
|
|
7373
7697
|
// healthcare : 2014-06-12 Silver Glen, LLC
|
@@ -7385,6 +7709,9 @@ hermes
|
|
7385
7709
|
// hiphop : 2014-03-06 Uniregistry, Corp.
|
7386
7710
|
hiphop
|
7387
7711
|
|
7712
|
+
// hitachi : 2014-10-31 Hitachi, Ltd.
|
7713
|
+
hitachi
|
7714
|
+
|
7388
7715
|
// hiv : 2014-03-13 dotHIV gemeinnuetziger e.V.
|
7389
7716
|
hiv
|
7390
7717
|
|
@@ -7397,6 +7724,9 @@ holiday
|
|
7397
7724
|
// homes : 2014-01-09 DERHomes, LLC
|
7398
7725
|
homes
|
7399
7726
|
|
7727
|
+
// honda : 2014-12-18 Honda Motor Co., Ltd.
|
7728
|
+
honda
|
7729
|
+
|
7400
7730
|
// horse : 2013-11-21 Top Level Domain Holdings Limited
|
7401
7731
|
horse
|
7402
7732
|
|
@@ -7406,15 +7736,27 @@ host
|
|
7406
7736
|
// hosting : 2014-05-29 Uniregistry, Corp.
|
7407
7737
|
hosting
|
7408
7738
|
|
7739
|
+
// hotmail : 2014-12-18 Microsoft Corporation
|
7740
|
+
hotmail
|
7741
|
+
|
7409
7742
|
// house : 2013-11-07 Sugar Park, LLC
|
7410
7743
|
house
|
7411
7744
|
|
7412
7745
|
// how : 2014-01-23 Charleston Road Registry Inc.
|
7413
7746
|
how
|
7414
7747
|
|
7748
|
+
// hsbc : 2014-10-24 HSBC Holdings PLC
|
7749
|
+
hsbc
|
7750
|
+
|
7415
7751
|
// ibm : 2014-07-31 International Business Machines Corporation
|
7416
7752
|
ibm
|
7417
7753
|
|
7754
|
+
// ice : 2014-10-30 IntercontinentalExchange, Inc.
|
7755
|
+
ice
|
7756
|
+
|
7757
|
+
// icu : 2015-01-08 One.com A/S
|
7758
|
+
icu
|
7759
|
+
|
7418
7760
|
// ifm : 2014-01-30 ifm electronic gmbh
|
7419
7761
|
ifm
|
7420
7762
|
|
@@ -7463,27 +7805,57 @@ ist
|
|
7463
7805
|
// istanbul : 2014-08-28 Istanbul Metropolitan Municipality
|
7464
7806
|
istanbul
|
7465
7807
|
|
7808
|
+
// itau : 2014-10-02 Itau Unibanco Holding S.A.
|
7809
|
+
itau
|
7810
|
+
|
7466
7811
|
// iwc : 2014-06-23 Richemont DNS Inc.
|
7467
7812
|
iwc
|
7468
7813
|
|
7814
|
+
// jaguar : 2014-11-13 Jaguar Land Rover Ltd
|
7815
|
+
jaguar
|
7816
|
+
|
7469
7817
|
// java : 2014-06-19 Oracle Corporation
|
7470
7818
|
java
|
7471
7819
|
|
7820
|
+
// jcb : 2014-11-20 JCB Co., Ltd.
|
7821
|
+
jcb
|
7822
|
+
|
7472
7823
|
// jetzt : 2014-01-09 New TLD Company AB
|
7473
7824
|
jetzt
|
7474
7825
|
|
7826
|
+
// jlc : 2014-12-04 Richemont DNS Inc.
|
7827
|
+
jlc
|
7828
|
+
|
7475
7829
|
// joburg : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
|
7476
7830
|
joburg
|
7477
7831
|
|
7832
|
+
// jot : 2014-12-18 Amazon EU S.à r.l.
|
7833
|
+
jot
|
7834
|
+
|
7835
|
+
// joy : 2014-12-18 Amazon EU S.à r.l.
|
7836
|
+
joy
|
7837
|
+
|
7838
|
+
// jprs : 2014-09-18 Japan Registry Services Co., Ltd.
|
7839
|
+
jprs
|
7840
|
+
|
7478
7841
|
// juegos : 2014-03-20 Uniregistry, Corp.
|
7479
7842
|
juegos
|
7480
7843
|
|
7481
7844
|
// kaufen : 2013-11-07 United TLD Holdco Ltd.
|
7482
7845
|
kaufen
|
7483
7846
|
|
7847
|
+
// kddi : 2014-09-12 KDDI CORPORATION
|
7848
|
+
kddi
|
7849
|
+
|
7850
|
+
// kfh : 2014-12-04 Kuwait Finance House
|
7851
|
+
kfh
|
7852
|
+
|
7484
7853
|
// kim : 2013-09-23 Afilias Limited
|
7485
7854
|
kim
|
7486
7855
|
|
7856
|
+
// kinder : 2014-11-07 Ferrero Trading Lux S.A.
|
7857
|
+
kinder
|
7858
|
+
|
7487
7859
|
// kitchen : 2013-09-20 Just Goodbye, LLC
|
7488
7860
|
kitchen
|
7489
7861
|
|
@@ -7493,22 +7865,40 @@ kiwi
|
|
7493
7865
|
// koeln : 2014-01-09 NetCologne Gesellschaft für Telekommunikation mbH
|
7494
7866
|
koeln
|
7495
7867
|
|
7868
|
+
// komatsu : 2015-01-08 Komatsu Ltd.
|
7869
|
+
komatsu
|
7870
|
+
|
7871
|
+
// kpn : 2015-01-08 Koninklijke KPN N.V.
|
7872
|
+
kpn
|
7873
|
+
|
7496
7874
|
// krd : 2013-12-05 KRG Department of Information Technology
|
7497
7875
|
krd
|
7498
7876
|
|
7499
7877
|
// kred : 2013-12-19 KredTLD Pty Ltd
|
7500
7878
|
kred
|
7501
7879
|
|
7880
|
+
// kyoto : 2014-11-07 Academic Institution: Kyoto Jyoho Gakuen
|
7881
|
+
kyoto
|
7882
|
+
|
7502
7883
|
// lacaixa : 2014-01-09 CAIXA D'ESTALVIS I PENSIONS DE BARCELONA
|
7503
7884
|
lacaixa
|
7504
7885
|
|
7505
7886
|
// land : 2013-09-10 Pine Moon, LLC
|
7506
7887
|
land
|
7507
7888
|
|
7889
|
+
// landrover : 2014-11-13 Jaguar Land Rover Ltd
|
7890
|
+
landrover
|
7891
|
+
|
7892
|
+
// lat : 2014-10-16 ECOM-LAC Federaciòn de Latinoamèrica y el Caribe para Internet y el Comercio Electrònico
|
7893
|
+
lat
|
7894
|
+
|
7508
7895
|
// latrobe : 2014-06-16 La Trobe University
|
7509
7896
|
latrobe
|
7510
7897
|
|
7511
|
-
//
|
7898
|
+
// law : 2015-01-22 Minds + Machines Group Limited
|
7899
|
+
law
|
7900
|
+
|
7901
|
+
// lawyer : 2014-03-20
|
7512
7902
|
lawyer
|
7513
7903
|
|
7514
7904
|
// lds : 2014-03-20 IRI Domain Management, LLC (\
|
@@ -7520,36 +7910,78 @@ lease
|
|
7520
7910
|
// leclerc : 2014-08-07 A.C.D. LEC Association des Centres Distributeurs Edouard Leclerc
|
7521
7911
|
leclerc
|
7522
7912
|
|
7913
|
+
// legal : 2014-10-16 Blue Falls, LLC
|
7914
|
+
legal
|
7915
|
+
|
7523
7916
|
// lgbt : 2014-05-08 Afilias Limited
|
7524
7917
|
lgbt
|
7525
7918
|
|
7919
|
+
// liaison : 2014-10-02 Liaison Technologies, Incorporated
|
7920
|
+
liaison
|
7921
|
+
|
7922
|
+
// lidl : 2014-09-18 Schwarz Domains und Services GmbH & Co. KG
|
7923
|
+
lidl
|
7924
|
+
|
7526
7925
|
// life : 2014-02-06 Trixy Oaks, LLC
|
7527
7926
|
life
|
7528
7927
|
|
7928
|
+
// lifeinsurance : 2015-01-15 American Council of Life Insurers
|
7929
|
+
lifeinsurance
|
7930
|
+
|
7931
|
+
// lifestyle : 2014-12-11 Lifestyle Domain Holdings, Inc.
|
7932
|
+
lifestyle
|
7933
|
+
|
7529
7934
|
// lighting : 2013-08-27 John McCook, LLC
|
7530
7935
|
lighting
|
7531
7936
|
|
7937
|
+
// like : 2014-12-18 Amazon EU S.à r.l.
|
7938
|
+
like
|
7939
|
+
|
7532
7940
|
// limited : 2014-03-06 Big Fest, LLC
|
7533
7941
|
limited
|
7534
7942
|
|
7535
7943
|
// limo : 2013-10-17 Hidden Frostbite, LLC
|
7536
7944
|
limo
|
7537
7945
|
|
7946
|
+
// lincoln : 2014-11-13 Ford Motor Company
|
7947
|
+
lincoln
|
7948
|
+
|
7949
|
+
// linde : 2014-12-04 Linde Aktiengesellschaft
|
7950
|
+
linde
|
7951
|
+
|
7538
7952
|
// link : 2013-11-14 Uniregistry, Corp.
|
7539
7953
|
link
|
7540
7954
|
|
7955
|
+
// live : 2014-12-04 Half Woods, LLC
|
7956
|
+
live
|
7957
|
+
|
7958
|
+
// loan : 2014-11-20 dot Loan Limited
|
7959
|
+
loan
|
7960
|
+
|
7541
7961
|
// loans : 2014-03-20 June Woods, LLC
|
7542
7962
|
loans
|
7543
7963
|
|
7544
7964
|
// london : 2013-11-14 Dot London Domains Limited
|
7545
7965
|
london
|
7546
7966
|
|
7967
|
+
// lotte : 2014-11-07 Lotte Holdings Co., Ltd.
|
7968
|
+
lotte
|
7969
|
+
|
7547
7970
|
// lotto : 2014-04-10 Afilias Limited
|
7548
7971
|
lotto
|
7549
7972
|
|
7973
|
+
// love : 2014-12-22 Merchant Law Group LLP
|
7974
|
+
love
|
7975
|
+
|
7976
|
+
// ltd : 2014-09-25 Over Corner, LLC
|
7977
|
+
ltd
|
7978
|
+
|
7550
7979
|
// ltda : 2014-04-17 DOMAIN ROBOT SERVICOS DE HOSPEDAGEM NA INTERNET LTDA
|
7551
7980
|
ltda
|
7552
7981
|
|
7982
|
+
// lupin : 2014-11-07 LUPIN LIMITED
|
7983
|
+
lupin
|
7984
|
+
|
7553
7985
|
// luxe : 2014-01-09 Top Level Domain Holdings Limited
|
7554
7986
|
luxe
|
7555
7987
|
|
@@ -7559,21 +7991,36 @@ luxury
|
|
7559
7991
|
// madrid : 2014-05-01 Comunidad de Madrid
|
7560
7992
|
madrid
|
7561
7993
|
|
7994
|
+
// maif : 2014-10-02 Mutuelle Assurance Instituteur France (MAIF)
|
7995
|
+
maif
|
7996
|
+
|
7562
7997
|
// maison : 2013-12-05 Victor Frostbite, LLC
|
7563
7998
|
maison
|
7564
7999
|
|
8000
|
+
// makeup : 2015-01-15 L'Oréal
|
8001
|
+
makeup
|
8002
|
+
|
8003
|
+
// man : 2014-12-04 MAN SE
|
8004
|
+
man
|
8005
|
+
|
7565
8006
|
// management : 2013-11-07 John Goodbye, LLC
|
7566
8007
|
management
|
7567
8008
|
|
7568
8009
|
// mango : 2013-10-24 PUNTO FA S.L.
|
7569
8010
|
mango
|
7570
8011
|
|
7571
|
-
// market : 2014-03-06
|
8012
|
+
// market : 2014-03-06
|
7572
8013
|
market
|
7573
8014
|
|
7574
8015
|
// marketing : 2013-11-07 Fern Pass, LLC
|
7575
8016
|
marketing
|
7576
8017
|
|
8018
|
+
// markets : 2014-12-11 IG Group Holdings PLC
|
8019
|
+
markets
|
8020
|
+
|
8021
|
+
// marriott : 2014-10-09 Marriott Worldwide Corporation
|
8022
|
+
marriott
|
8023
|
+
|
7577
8024
|
// media : 2014-03-06 Grand Glen, LLC
|
7578
8025
|
media
|
7579
8026
|
|
@@ -7586,31 +8033,52 @@ melbourne
|
|
7586
8033
|
// meme : 2014-01-30 Charleston Road Registry Inc.
|
7587
8034
|
meme
|
7588
8035
|
|
8036
|
+
// memorial : 2014-10-16 Dog Beach, LLC
|
8037
|
+
memorial
|
8038
|
+
|
7589
8039
|
// menu : 2013-09-11 Wedding TLD2, LLC
|
7590
8040
|
menu
|
7591
8041
|
|
8042
|
+
// meo : 2014-11-07 PT Comunicacoes S.A.
|
8043
|
+
meo
|
8044
|
+
|
7592
8045
|
// miami : 2013-12-19 Top Level Domain Holdings Limited
|
7593
8046
|
miami
|
7594
8047
|
|
8048
|
+
// microsoft : 2014-12-18 Microsoft Corporation
|
8049
|
+
microsoft
|
8050
|
+
|
7595
8051
|
// mini : 2014-01-09 Bayerische Motoren Werke Aktiengesellschaft
|
7596
8052
|
mini
|
7597
8053
|
|
8054
|
+
// mma : 2014-11-07 MMA IARD
|
8055
|
+
mma
|
8056
|
+
|
8057
|
+
// mobily : 2014-12-18 GreenTech Consultancy Company W.L.L.
|
8058
|
+
mobily
|
8059
|
+
|
7598
8060
|
// moda : 2013-11-07 United TLD Holdco Ltd.
|
7599
8061
|
moda
|
7600
8062
|
|
7601
8063
|
// moe : 2013-11-13 Interlink Co., Ltd.
|
7602
8064
|
moe
|
7603
8065
|
|
8066
|
+
// moi : 2014-12-18 Amazon EU S.à r.l.
|
8067
|
+
moi
|
8068
|
+
|
7604
8069
|
// monash : 2013-09-30 Monash University
|
7605
8070
|
monash
|
7606
8071
|
|
8072
|
+
// money : 2014-10-16 Outer McCook, LLC
|
8073
|
+
money
|
8074
|
+
|
7607
8075
|
// montblanc : 2014-06-23 Richemont DNS Inc.
|
7608
8076
|
montblanc
|
7609
8077
|
|
7610
8078
|
// mormon : 2013-12-05 IRI Domain Management, LLC (\
|
7611
8079
|
mormon
|
7612
8080
|
|
7613
|
-
// mortgage : 2014-03-20
|
8081
|
+
// mortgage : 2014-03-20
|
7614
8082
|
mortgage
|
7615
8083
|
|
7616
8084
|
// moscow : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
|
@@ -7622,12 +8090,27 @@ motorcycles
|
|
7622
8090
|
// mov : 2014-01-30 Charleston Road Registry Inc.
|
7623
8091
|
mov
|
7624
8092
|
|
8093
|
+
// movistar : 2014-10-16 Telefónica S.A.
|
8094
|
+
movistar
|
8095
|
+
|
8096
|
+
// mtn : 2014-12-04 MTN Dubai Limited
|
8097
|
+
mtn
|
8098
|
+
|
8099
|
+
// mtpc : 2014-11-20 Mitsubishi Tanabe Pharma Corporation
|
8100
|
+
mtpc
|
8101
|
+
|
8102
|
+
// nadex : 2014-12-11 IG Group Holdings PLC
|
8103
|
+
nadex
|
8104
|
+
|
7625
8105
|
// nagoya : 2013-10-24 GMO Registry, Inc.
|
7626
8106
|
nagoya
|
7627
8107
|
|
7628
8108
|
// navy : 2014-03-06 United TLD Holdco Ltd.
|
7629
8109
|
navy
|
7630
8110
|
|
8111
|
+
// nec : 2015-01-08 NEC Corporation
|
8112
|
+
nec
|
8113
|
+
|
7631
8114
|
// netbank : 2014-06-26 COMMONWEALTH BANK OF AUSTRALIA
|
7632
8115
|
netbank
|
7633
8116
|
|
@@ -7640,6 +8123,9 @@ neustar
|
|
7640
8123
|
// new : 2014-01-30 Charleston Road Registry Inc.
|
7641
8124
|
new
|
7642
8125
|
|
8126
|
+
// news : 2014-12-18 Hidden Bloom, LLC
|
8127
|
+
news
|
8128
|
+
|
7643
8129
|
// nexus : 2014-07-24 Charleston Road Registry Inc.
|
7644
8130
|
nexus
|
7645
8131
|
|
@@ -7649,30 +8135,57 @@ ngo
|
|
7649
8135
|
// nhk : 2014-02-13 Japan Broadcasting Corporation (NHK)
|
7650
8136
|
nhk
|
7651
8137
|
|
8138
|
+
// nico : 2014-12-04 DWANGO Co., Ltd.
|
8139
|
+
nico
|
8140
|
+
|
7652
8141
|
// ninja : 2013-11-07 United TLD Holdco Ltd.
|
7653
8142
|
ninja
|
7654
8143
|
|
7655
8144
|
// nissan : 2014-03-27 NISSAN MOTOR CO., LTD.
|
7656
8145
|
nissan
|
7657
8146
|
|
8147
|
+
// nokia : 2015-01-08 Nokia Corporation
|
8148
|
+
nokia
|
8149
|
+
|
8150
|
+
// norton : 2014-12-04 Symantec Corporation
|
8151
|
+
norton
|
8152
|
+
|
8153
|
+
// nowruz : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
|
8154
|
+
nowruz
|
8155
|
+
|
7658
8156
|
// nra : 2014-05-22 NRA Holdings Company, INC.
|
7659
8157
|
nra
|
7660
8158
|
|
7661
8159
|
// nrw : 2013-11-21 Minds + Machines GmbH
|
7662
8160
|
nrw
|
7663
8161
|
|
8162
|
+
// ntt : 2014-10-31 NIPPON TELEGRAPH AND TELEPHONE CORPORATION
|
8163
|
+
ntt
|
8164
|
+
|
7664
8165
|
// nyc : 2014-01-23 The City of New York by and through the New York City Department of Information Technology & Telecommunications
|
7665
8166
|
nyc
|
7666
8167
|
|
7667
|
-
//
|
8168
|
+
// obi : 2014-09-25 OBI Group Holding SE & Co. KGaA
|
8169
|
+
obi
|
8170
|
+
|
8171
|
+
// okinawa : 2013-12-05 BusinessRalliart Inc.
|
7668
8172
|
okinawa
|
7669
8173
|
|
8174
|
+
// omega : 2015-01-08 The Swatch Group Ltd
|
8175
|
+
omega
|
8176
|
+
|
8177
|
+
// one : 2014-11-07 One.com A/S
|
8178
|
+
one
|
8179
|
+
|
7670
8180
|
// ong : 2014-03-06 Public Interest Registry
|
7671
8181
|
ong
|
7672
8182
|
|
7673
8183
|
// onl : 2013-09-16 I-Registry Ltd.
|
7674
8184
|
onl
|
7675
8185
|
|
8186
|
+
// online : 2015-01-15 DotOnline Inc.
|
8187
|
+
online
|
8188
|
+
|
7676
8189
|
// ooo : 2014-01-09 INFIBEAM INCORPORATION LIMITED
|
7677
8190
|
ooo
|
7678
8191
|
|
@@ -7682,24 +8195,42 @@ oracle
|
|
7682
8195
|
// organic : 2014-03-27 Afilias Limited
|
7683
8196
|
organic
|
7684
8197
|
|
8198
|
+
// osaka : 2014-09-04 Interlink Co., Ltd.
|
8199
|
+
osaka
|
8200
|
+
|
7685
8201
|
// otsuka : 2013-10-11 Otsuka Holdings Co., Ltd.
|
7686
8202
|
otsuka
|
7687
8203
|
|
7688
8204
|
// ovh : 2014-01-16 OVH SAS
|
7689
8205
|
ovh
|
7690
8206
|
|
8207
|
+
// page : 2014-12-04 Charleston Road Registry Inc.
|
8208
|
+
page
|
8209
|
+
|
8210
|
+
// panerai : 2014-11-07 Richemont DNS Inc.
|
8211
|
+
panerai
|
8212
|
+
|
7691
8213
|
// paris : 2014-01-30 City of Paris
|
7692
8214
|
paris
|
7693
8215
|
|
8216
|
+
// pars : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
|
8217
|
+
pars
|
8218
|
+
|
7694
8219
|
// partners : 2013-12-05 Magic Glen, LLC
|
7695
8220
|
partners
|
7696
8221
|
|
7697
8222
|
// parts : 2013-12-05 Sea Goodbye, LLC
|
7698
8223
|
parts
|
7699
8224
|
|
8225
|
+
// party : 2014-09-11 Blue Sky Registry Limited
|
8226
|
+
party
|
8227
|
+
|
7700
8228
|
// pharmacy : 2014-06-19 National Association of Boards of Pharmacy
|
7701
8229
|
pharmacy
|
7702
8230
|
|
8231
|
+
// philips : 2014-11-07 Koninklijke Philips N.V.
|
8232
|
+
philips
|
8233
|
+
|
7703
8234
|
// photo : 2013-11-14 Uniregistry, Corp.
|
7704
8235
|
photo
|
7705
8236
|
|
@@ -7712,6 +8243,9 @@ photos
|
|
7712
8243
|
// physio : 2014-05-01 PhysBiz Pty Ltd
|
7713
8244
|
physio
|
7714
8245
|
|
8246
|
+
// piaget : 2014-10-16 Richemont DNS Inc.
|
8247
|
+
piaget
|
8248
|
+
|
7715
8249
|
// pics : 2013-11-14 Uniregistry, Corp.
|
7716
8250
|
pics
|
7717
8251
|
|
@@ -7721,6 +8255,12 @@ pictet
|
|
7721
8255
|
// pictures : 2014-03-06 Foggy Sky, LLC
|
7722
8256
|
pictures
|
7723
8257
|
|
8258
|
+
// pid : 2015-01-08 Top Level Spectrum, Inc.
|
8259
|
+
pid
|
8260
|
+
|
8261
|
+
// pin : 2014-12-18 Amazon EU S.à r.l.
|
8262
|
+
pin
|
8263
|
+
|
7724
8264
|
// pink : 2013-10-01 Afilias Limited
|
7725
8265
|
pink
|
7726
8266
|
|
@@ -7739,6 +8279,9 @@ pohl
|
|
7739
8279
|
// poker : 2014-07-03 Afilias Domains No. 5 Limited
|
7740
8280
|
poker
|
7741
8281
|
|
8282
|
+
// porn : 2014-10-16 ICM Registry PN LLC
|
8283
|
+
porn
|
8284
|
+
|
7742
8285
|
// praxi : 2013-12-05 Praxi S.p.A.
|
7743
8286
|
praxi
|
7744
8287
|
|
@@ -7754,6 +8297,9 @@ productions
|
|
7754
8297
|
// prof : 2014-07-24 Charleston Road Registry Inc.
|
7755
8298
|
prof
|
7756
8299
|
|
8300
|
+
// promo : 2014-12-18 Play.PROMO Oy
|
8301
|
+
promo
|
8302
|
+
|
7757
8303
|
// properties : 2013-12-05 Big Pass, LLC
|
7758
8304
|
properties
|
7759
8305
|
|
@@ -7769,6 +8315,12 @@ qpon
|
|
7769
8315
|
// quebec : 2013-12-19 PointQuébec Inc
|
7770
8316
|
quebec
|
7771
8317
|
|
8318
|
+
// racing : 2014-12-04 Premier Registry Limited
|
8319
|
+
racing
|
8320
|
+
|
8321
|
+
// read : 2014-12-18 Amazon EU S.à r.l.
|
8322
|
+
read
|
8323
|
+
|
7772
8324
|
// realtor : 2014-05-29 Real Estate Domains LLC
|
7773
8325
|
realtor
|
7774
8326
|
|
@@ -7778,6 +8330,9 @@ recipes
|
|
7778
8330
|
// red : 2013-11-07 Afilias Limited
|
7779
8331
|
red
|
7780
8332
|
|
8333
|
+
// redstone : 2014-10-31 Redstone Haute Couture Co., Ltd.
|
8334
|
+
redstone
|
8335
|
+
|
7781
8336
|
// rehab : 2014-03-06 United TLD Holdco Ltd.
|
7782
8337
|
rehab
|
7783
8338
|
|
@@ -7787,9 +8342,15 @@ reise
|
|
7787
8342
|
// reisen : 2014-03-06 New Cypress, LLC
|
7788
8343
|
reisen
|
7789
8344
|
|
8345
|
+
// reit : 2014-09-04 National Association of Real Estate Investment Trusts, Inc.
|
8346
|
+
reit
|
8347
|
+
|
7790
8348
|
// ren : 2013-12-12 Beijing Qianxiang Wangjing Technology Development Co., Ltd.
|
7791
8349
|
ren
|
7792
8350
|
|
8351
|
+
// rent : 2014-12-04 DERRent, LLC
|
8352
|
+
rent
|
8353
|
+
|
7793
8354
|
// rentals : 2013-12-05 Big Hollow,LLC
|
7794
8355
|
rentals
|
7795
8356
|
|
@@ -7808,45 +8369,90 @@ rest
|
|
7808
8369
|
// restaurant : 2014-07-03 Snow Avenue, LLC
|
7809
8370
|
restaurant
|
7810
8371
|
|
7811
|
-
//
|
8372
|
+
// review : 2014-11-20 dot Review Limited
|
8373
|
+
review
|
8374
|
+
|
8375
|
+
// reviews : 2013-09-13
|
7812
8376
|
reviews
|
7813
8377
|
|
7814
8378
|
// rich : 2013-11-21 I-Registry Ltd.
|
7815
8379
|
rich
|
7816
8380
|
|
8381
|
+
// ricoh : 2014-11-20 Ricoh Company, Ltd.
|
8382
|
+
ricoh
|
8383
|
+
|
7817
8384
|
// rio : 2014-02-27 Empresa Municipal de Informática SA - IPLANRIO
|
7818
8385
|
rio
|
7819
8386
|
|
7820
8387
|
// rip : 2014-07-10 United TLD Holdco Ltd.
|
7821
8388
|
rip
|
7822
8389
|
|
7823
|
-
//
|
8390
|
+
// rocher : 2014-12-18 Ferrero Trading Lux S.A.
|
8391
|
+
rocher
|
8392
|
+
|
8393
|
+
// rocks : 2013-11-14
|
7824
8394
|
rocks
|
7825
8395
|
|
7826
8396
|
// rodeo : 2013-12-19 Top Level Domain Holdings Limited
|
7827
8397
|
rodeo
|
7828
8398
|
|
8399
|
+
// room : 2014-12-18 Amazon EU S.à r.l.
|
8400
|
+
room
|
8401
|
+
|
7829
8402
|
// rsvp : 2014-05-08 Charleston Road Registry Inc.
|
7830
8403
|
rsvp
|
7831
8404
|
|
7832
8405
|
// ruhr : 2013-10-02 regiodot GmbH & Co. KG
|
7833
8406
|
ruhr
|
7834
8407
|
|
7835
|
-
// ryukyu : 2014-01-09 BusinessRalliart
|
8408
|
+
// ryukyu : 2014-01-09 BusinessRalliart Inc.
|
7836
8409
|
ryukyu
|
7837
8410
|
|
7838
8411
|
// saarland : 2013-12-12 dotSaarland GmbH
|
7839
8412
|
saarland
|
7840
8413
|
|
8414
|
+
// safe : 2014-12-18 Amazon EU S.à r.l.
|
8415
|
+
safe
|
8416
|
+
|
8417
|
+
// safety : 2015-01-08 Safety Registry Services, LLC.
|
8418
|
+
safety
|
8419
|
+
|
8420
|
+
// sakura : 2014-12-18 SAKURA Internet Inc.
|
8421
|
+
sakura
|
8422
|
+
|
8423
|
+
// sale : 2014-10-16
|
8424
|
+
sale
|
8425
|
+
|
8426
|
+
// salon : 2014-12-11 Outer Orchard, LLC
|
8427
|
+
salon
|
8428
|
+
|
7841
8429
|
// samsung : 2014-04-03 SAMSUNG SDS CO., LTD
|
7842
8430
|
samsung
|
7843
8431
|
|
8432
|
+
// sandvik : 2014-11-13 Sandvik AB
|
8433
|
+
sandvik
|
8434
|
+
|
8435
|
+
// sandvikcoromant : 2014-11-07 Sandvik AB
|
8436
|
+
sandvikcoromant
|
8437
|
+
|
8438
|
+
// sanofi : 2014-10-09 Sanofi
|
8439
|
+
sanofi
|
8440
|
+
|
7844
8441
|
// sap : 2014-03-27 SAP AG
|
7845
8442
|
sap
|
7846
8443
|
|
8444
|
+
// sapo : 2014-11-07 PT Comunicacoes S.A.
|
8445
|
+
sapo
|
8446
|
+
|
7847
8447
|
// sarl : 2014-07-03 Delta Orchard, LLC
|
7848
8448
|
sarl
|
7849
8449
|
|
8450
|
+
// saxo : 2014-10-31 Saxo Bank A/S
|
8451
|
+
saxo
|
8452
|
+
|
8453
|
+
// sbs : 2014-11-07 SPECIAL BROADCASTING SERVICE CORPORATION
|
8454
|
+
sbs
|
8455
|
+
|
7850
8456
|
// sca : 2014-03-13 SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)
|
7851
8457
|
sca
|
7852
8458
|
|
@@ -7859,46 +8465,85 @@ schmidt
|
|
7859
8465
|
// scholarships : 2014-04-24 Scholarships.com, LLC
|
7860
8466
|
scholarships
|
7861
8467
|
|
8468
|
+
// school : 2014-12-18 Little Galley, LLC
|
8469
|
+
school
|
8470
|
+
|
7862
8471
|
// schule : 2014-03-06 Outer Moon, LLC
|
7863
8472
|
schule
|
7864
8473
|
|
8474
|
+
// schwarz : 2014-09-18 Schwarz Domains und Services GmbH & Co. KG
|
8475
|
+
schwarz
|
8476
|
+
|
8477
|
+
// science : 2014-09-11 dot Science Limited
|
8478
|
+
science
|
8479
|
+
|
8480
|
+
// scor : 2014-10-31 SCOR SE
|
8481
|
+
scor
|
8482
|
+
|
7865
8483
|
// scot : 2014-01-23 Dot Scot Registry Limited
|
7866
8484
|
scot
|
7867
8485
|
|
7868
8486
|
// seat : 2014-05-22 SEAT, S.A. (Sociedad Unipersonal)
|
7869
8487
|
seat
|
7870
8488
|
|
8489
|
+
// seek : 2014-12-04 Seek Limited
|
8490
|
+
seek
|
8491
|
+
|
8492
|
+
// sener : 2014-10-24 Sener Ingeniería y Sistemas, S.A.
|
8493
|
+
sener
|
8494
|
+
|
7871
8495
|
// services : 2014-02-27 Fox Castle, LLC
|
7872
8496
|
services
|
7873
8497
|
|
7874
8498
|
// sew : 2014-07-17 SEW-EURODRIVE GmbH & Co KG
|
7875
8499
|
sew
|
7876
8500
|
|
8501
|
+
// sex : 2014-11-13 ICM Registry SX LLC
|
8502
|
+
sex
|
8503
|
+
|
7877
8504
|
// sexy : 2013-09-11 Uniregistry, Corp.
|
7878
8505
|
sexy
|
7879
8506
|
|
7880
8507
|
// sharp : 2014-05-01 Sharp Corporation
|
7881
8508
|
sharp
|
7882
8509
|
|
8510
|
+
// shia : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
|
8511
|
+
shia
|
8512
|
+
|
7883
8513
|
// shiksha : 2013-11-14 Afilias Limited
|
7884
8514
|
shiksha
|
7885
8515
|
|
7886
8516
|
// shoes : 2013-10-02 Binky Galley, LLC
|
7887
8517
|
shoes
|
7888
8518
|
|
8519
|
+
// shouji : 2015-01-08 QIHOO 360 TECHNOLOGY CO. LTD.
|
8520
|
+
shouji
|
8521
|
+
|
7889
8522
|
// shriram : 2014-01-23 Shriram Capital Ltd.
|
7890
8523
|
shriram
|
7891
8524
|
|
7892
8525
|
// singles : 2013-08-27 Fern Madison, LLC
|
7893
8526
|
singles
|
7894
8527
|
|
8528
|
+
// site : 2015-01-15 DotSite Inc.
|
8529
|
+
site
|
8530
|
+
|
8531
|
+
// skin : 2015-01-15 L'Oréal
|
8532
|
+
skin
|
8533
|
+
|
7895
8534
|
// sky : 2014-06-19 Sky IP International Ltd, a company incorporated in England and Wales, operating via its registered Swiss branch
|
7896
8535
|
sky
|
7897
8536
|
|
8537
|
+
// skype : 2014-12-18 Microsoft Corporation
|
8538
|
+
skype
|
8539
|
+
|
8540
|
+
// smile : 2014-12-18 Amazon EU S.à r.l.
|
8541
|
+
smile
|
8542
|
+
|
7898
8543
|
// social : 2013-11-07 United TLD Holdco Ltd.
|
7899
8544
|
social
|
7900
8545
|
|
7901
|
-
// software : 2014-03-20
|
8546
|
+
// software : 2014-03-20
|
7902
8547
|
software
|
7903
8548
|
|
7904
8549
|
// sohu : 2013-12-19 Sohu.com Limited
|
@@ -7910,6 +8555,9 @@ solar
|
|
7910
8555
|
// solutions : 2013-11-07 Silver Cover, LLC
|
7911
8556
|
solutions
|
7912
8557
|
|
8558
|
+
// sony : 2015-01-08 Sony Corporation
|
8559
|
+
sony
|
8560
|
+
|
7913
8561
|
// soy : 2014-01-23 Charleston Road Registry Inc.
|
7914
8562
|
soy
|
7915
8563
|
|
@@ -7919,6 +8567,39 @@ space
|
|
7919
8567
|
// spiegel : 2014-02-05 SPIEGEL-Verlag Rudolf Augstein GmbH & Co. KG
|
7920
8568
|
spiegel
|
7921
8569
|
|
8570
|
+
// spreadbetting : 2014-12-11 IG Group Holdings PLC
|
8571
|
+
spreadbetting
|
8572
|
+
|
8573
|
+
// stada : 2014-11-13 STADA Arzneimittel AG
|
8574
|
+
stada
|
8575
|
+
|
8576
|
+
// star : 2015-01-08 Star India Private Limited
|
8577
|
+
star
|
8578
|
+
|
8579
|
+
// statoil : 2014-12-04 Statoil ASA
|
8580
|
+
statoil
|
8581
|
+
|
8582
|
+
// stc : 2014-10-09 Saudi Telecom Company
|
8583
|
+
stc
|
8584
|
+
|
8585
|
+
// stcgroup : 2014-10-09 Saudi Telecom Company
|
8586
|
+
stcgroup
|
8587
|
+
|
8588
|
+
// stockholm : 2014-12-18 Stockholms kommun
|
8589
|
+
stockholm
|
8590
|
+
|
8591
|
+
// storage : 2014-12-22 Self Storage Company LLC
|
8592
|
+
storage
|
8593
|
+
|
8594
|
+
// study : 2014-12-11 OPEN UNIVERSITIES AUSTRALIA PTY LTD
|
8595
|
+
study
|
8596
|
+
|
8597
|
+
// style : 2014-12-04 Binky Moon, LLC
|
8598
|
+
style
|
8599
|
+
|
8600
|
+
// sucks : 2014-12-22 Vox Populi Registry Inc.
|
8601
|
+
sucks
|
8602
|
+
|
7922
8603
|
// supplies : 2013-12-19 Atomic Fields, LLC
|
7923
8604
|
supplies
|
7924
8605
|
|
@@ -7937,12 +8618,30 @@ surgery
|
|
7937
8618
|
// suzuki : 2014-02-20 SUZUKI MOTOR CORPORATION
|
7938
8619
|
suzuki
|
7939
8620
|
|
8621
|
+
// swatch : 2015-01-08 The Swatch Group Ltd
|
8622
|
+
swatch
|
8623
|
+
|
8624
|
+
// swiss : 2014-10-16 Swiss Confederation
|
8625
|
+
swiss
|
8626
|
+
|
8627
|
+
// sydney : 2014-09-18 State of New South Wales, Department of Premier and Cabinet
|
8628
|
+
sydney
|
8629
|
+
|
8630
|
+
// symantec : 2014-12-04 Symantec Corporation
|
8631
|
+
symantec
|
8632
|
+
|
7940
8633
|
// systems : 2013-11-07 Dash Cypress, LLC
|
7941
8634
|
systems
|
7942
8635
|
|
8636
|
+
// tab : 2014-12-04 Tabcorp Holdings Limited
|
8637
|
+
tab
|
8638
|
+
|
7943
8639
|
// taipei : 2014-07-10 Taipei City Government
|
7944
8640
|
taipei
|
7945
8641
|
|
8642
|
+
// taobao : 2015-01-15 Alibaba Group Holding Limited
|
8643
|
+
taobao
|
8644
|
+
|
7946
8645
|
// tatar : 2014-04-24 Limited Liability Company \
|
7947
8646
|
tatar
|
7948
8647
|
|
@@ -7952,21 +8651,36 @@ tattoo
|
|
7952
8651
|
// tax : 2014-03-20 Storm Orchard, LLC
|
7953
8652
|
tax
|
7954
8653
|
|
8654
|
+
// tci : 2014-09-12 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
|
8655
|
+
tci
|
8656
|
+
|
7955
8657
|
// technology : 2013-09-13 Auburn Falls
|
7956
8658
|
technology
|
7957
8659
|
|
8660
|
+
// telefonica : 2014-10-16 Telefónica S.A.
|
8661
|
+
telefonica
|
8662
|
+
|
7958
8663
|
// temasek : 2014-08-07 Temasek Holdings (Private) Limited
|
7959
8664
|
temasek
|
7960
8665
|
|
8666
|
+
// tennis : 2014-12-04 Cotton Bloom, LLC
|
8667
|
+
tennis
|
8668
|
+
|
7961
8669
|
// tienda : 2013-11-14 Victor Manor, LLC
|
7962
8670
|
tienda
|
7963
8671
|
|
7964
8672
|
// tips : 2013-09-20 Corn Willow, LLC
|
7965
8673
|
tips
|
7966
8674
|
|
8675
|
+
// tires : 2014-11-07 Dog Edge, LLC
|
8676
|
+
tires
|
8677
|
+
|
7967
8678
|
// tirol : 2014-04-24 punkt Tirol GmbH
|
7968
8679
|
tirol
|
7969
8680
|
|
8681
|
+
// tmall : 2015-01-15 Alibaba Group Holding Limited
|
8682
|
+
tmall
|
8683
|
+
|
7970
8684
|
// today : 2013-09-20 Pearl Woods, LLC
|
7971
8685
|
today
|
7972
8686
|
|
@@ -7979,9 +8693,15 @@ tools
|
|
7979
8693
|
// top : 2014-03-20 Jiangsu Bangning Science & Technology Co.,Ltd.
|
7980
8694
|
top
|
7981
8695
|
|
8696
|
+
// toray : 2014-12-18 Toray Industries, Inc.
|
8697
|
+
toray
|
8698
|
+
|
7982
8699
|
// toshiba : 2014-04-10 TOSHIBA Corporation
|
7983
8700
|
toshiba
|
7984
8701
|
|
8702
|
+
// tours : 2015-01-22 Sugar Station, LLC
|
8703
|
+
tours
|
8704
|
+
|
7985
8705
|
// town : 2014-03-06 Koko Moon, LLC
|
7986
8706
|
town
|
7987
8707
|
|
@@ -7991,12 +8711,24 @@ toys
|
|
7991
8711
|
// trade : 2014-01-23 Elite Registry Limited
|
7992
8712
|
trade
|
7993
8713
|
|
8714
|
+
// trading : 2014-12-11 IG Group Holdings PLC
|
8715
|
+
trading
|
8716
|
+
|
7994
8717
|
// training : 2013-11-07 Wild Willow, LLC
|
7995
8718
|
training
|
7996
8719
|
|
8720
|
+
// trust : 2014-10-16
|
8721
|
+
trust
|
8722
|
+
|
7997
8723
|
// tui : 2014-07-03 TUI AG
|
7998
8724
|
tui
|
7999
8725
|
|
8726
|
+
// tushu : 2014-12-18 Amazon EU S.à r.l.
|
8727
|
+
tushu
|
8728
|
+
|
8729
|
+
// ubs : 2014-12-11 UBS AG
|
8730
|
+
ubs
|
8731
|
+
|
8000
8732
|
// university : 2014-03-06 Little Station, LLC
|
8001
8733
|
university
|
8002
8734
|
|
@@ -8009,6 +8741,9 @@ uol
|
|
8009
8741
|
// vacations : 2013-12-05 Atomic Tigers, LLC
|
8010
8742
|
vacations
|
8011
8743
|
|
8744
|
+
// vana : 2014-12-11 Lifestyle Domain Holdings, Inc.
|
8745
|
+
vana
|
8746
|
+
|
8012
8747
|
// vegas : 2014-01-16 Dot Vegas, Inc.
|
8013
8748
|
vegas
|
8014
8749
|
|
@@ -8018,18 +8753,36 @@ ventures
|
|
8018
8753
|
// versicherung : 2014-03-20 dotversicherung-registry GmbH
|
8019
8754
|
versicherung
|
8020
8755
|
|
8021
|
-
// vet : 2014-03-06
|
8756
|
+
// vet : 2014-03-06
|
8022
8757
|
vet
|
8023
8758
|
|
8024
8759
|
// viajes : 2013-10-17 Black Madison, LLC
|
8025
8760
|
viajes
|
8026
8761
|
|
8762
|
+
// video : 2014-10-16
|
8763
|
+
video
|
8764
|
+
|
8027
8765
|
// villas : 2013-12-05 New Sky, LLC
|
8028
8766
|
villas
|
8029
8767
|
|
8768
|
+
// vip : 2015-01-22 Minds + Machines Group Limited
|
8769
|
+
vip
|
8770
|
+
|
8771
|
+
// virgin : 2014-09-25 Virgin Enterprises Limited
|
8772
|
+
virgin
|
8773
|
+
|
8030
8774
|
// vision : 2013-12-05 Koko Station, LLC
|
8031
8775
|
vision
|
8032
8776
|
|
8777
|
+
// vista : 2014-09-18 Vistaprint Limited
|
8778
|
+
vista
|
8779
|
+
|
8780
|
+
// vistaprint : 2014-09-18 Vistaprint Limited
|
8781
|
+
vistaprint
|
8782
|
+
|
8783
|
+
// viva : 2014-11-07 Saudi Telecom Company
|
8784
|
+
viva
|
8785
|
+
|
8033
8786
|
// vlaanderen : 2014-02-06 DNS.be vzw
|
8034
8787
|
vlaanderen
|
8035
8788
|
|
@@ -8051,12 +8804,24 @@ voyage
|
|
8051
8804
|
// wales : 2014-05-08 Nominet UK
|
8052
8805
|
wales
|
8053
8806
|
|
8807
|
+
// walter : 2014-11-13 Sandvik AB
|
8808
|
+
walter
|
8809
|
+
|
8054
8810
|
// wang : 2013-10-24 Zodiac Leo Limited
|
8055
8811
|
wang
|
8056
8812
|
|
8813
|
+
// wanggou : 2014-12-18 Amazon EU S.à r.l.
|
8814
|
+
wanggou
|
8815
|
+
|
8057
8816
|
// watch : 2013-11-14 Sand Shadow, LLC
|
8058
8817
|
watch
|
8059
8818
|
|
8819
|
+
// watches : 2014-12-22 Richemont DNS Inc.
|
8820
|
+
watches
|
8821
|
+
|
8822
|
+
// weather : 2015-01-08 The Weather Channel, LLC
|
8823
|
+
weather
|
8824
|
+
|
8060
8825
|
// webcam : 2014-01-23 dot Webcam Limited
|
8061
8826
|
webcam
|
8062
8827
|
|
@@ -8081,6 +8846,12 @@ wiki
|
|
8081
8846
|
// williamhill : 2014-03-13 William Hill Organization Limited
|
8082
8847
|
williamhill
|
8083
8848
|
|
8849
|
+
// win : 2014-11-20 First Registry Limited
|
8850
|
+
win
|
8851
|
+
|
8852
|
+
// windows : 2014-12-18 Microsoft Corporation
|
8853
|
+
windows
|
8854
|
+
|
8084
8855
|
// wme : 2014-02-13 William Morris Endeavor Entertainment, LLC
|
8085
8856
|
wme
|
8086
8857
|
|
@@ -8099,6 +8870,21 @@ wtc
|
|
8099
8870
|
// wtf : 2014-03-06 Hidden Way, LLC
|
8100
8871
|
wtf
|
8101
8872
|
|
8873
|
+
// xbox : 2014-12-18 Microsoft Corporation
|
8874
|
+
xbox
|
8875
|
+
|
8876
|
+
// xerox : 2014-10-24 Xerox DNHC LLC
|
8877
|
+
xerox
|
8878
|
+
|
8879
|
+
// xihuan : 2015-01-08 QIHOO 360 TECHNOLOGY CO. LTD.
|
8880
|
+
xihuan
|
8881
|
+
|
8882
|
+
// xin : 2014-12-11 Elegant Leader Limited
|
8883
|
+
xin
|
8884
|
+
|
8885
|
+
// xn--11b4c3d : 2015-01-15 VeriSign Sarl
|
8886
|
+
कॉम
|
8887
|
+
|
8102
8888
|
// xn--1qqw23a : 2014-01-09 Guangzhou YU Wei Information Technology Co., Ltd.
|
8103
8889
|
佛山
|
8104
8890
|
|
@@ -8111,6 +8897,12 @@ wtf
|
|
8111
8897
|
// xn--3ds443g : 2013-09-08 TLD REGISTRY LIMITED
|
8112
8898
|
在线
|
8113
8899
|
|
8900
|
+
// xn--3pxu8k : 2015-01-15 VeriSign Sarl
|
8901
|
+
点看
|
8902
|
+
|
8903
|
+
// xn--42c2d9a : 2015-01-15 VeriSign Sarl
|
8904
|
+
คอม
|
8905
|
+
|
8114
8906
|
// xn--45q11c : 2013-11-21 Zodiac Scorpio Limited
|
8115
8907
|
八卦
|
8116
8908
|
|
@@ -8123,6 +8915,9 @@ wtf
|
|
8123
8915
|
// xn--55qx5d : 2013-11-14 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
|
8124
8916
|
公司
|
8125
8917
|
|
8918
|
+
// xn--5tzm5g : 2014-12-22 Global Website TLD Asia Limited
|
8919
|
+
网站
|
8920
|
+
|
8126
8921
|
// xn--6frz82g : 2013-09-23 Afilias Limited
|
8127
8922
|
移动
|
8128
8923
|
|
@@ -8138,6 +8933,9 @@ wtf
|
|
8138
8933
|
// xn--80aswg : 2013-07-14 CORE Association
|
8139
8934
|
сайт
|
8140
8935
|
|
8936
|
+
// xn--9dbq2a : 2015-01-15 VeriSign Sarl
|
8937
|
+
קום
|
8938
|
+
|
8141
8939
|
// xn--9et52u : 2014-06-12 RISE VICTORY LIMITED
|
8142
8940
|
时尚
|
8143
8941
|
|
@@ -8147,6 +8945,9 @@ wtf
|
|
8147
8945
|
// xn--c1avg : 2013-11-14 Public Interest Registry
|
8148
8946
|
орг
|
8149
8947
|
|
8948
|
+
// xn--c2br7g : 2015-01-15 VeriSign Sarl
|
8949
|
+
नेट
|
8950
|
+
|
8150
8951
|
// xn--cg4bki : 2013-09-27 SAMSUNG SDS CO., LTD
|
8151
8952
|
삼성
|
8152
8953
|
|
@@ -8162,9 +8963,15 @@ wtf
|
|
8162
8963
|
// xn--d1acj3b : 2013-11-20 The Foundation for Network Initiatives “The Smart Internet”
|
8163
8964
|
дети
|
8164
8965
|
|
8966
|
+
// xn--eckvdtc9d : 2014-12-18 Amazon EU S.à r.l.
|
8967
|
+
ポイント
|
8968
|
+
|
8165
8969
|
// xn--efvy88h : 2014-08-22 Xinhua News Agency Guangdong Branch 新华通讯社广东分社
|
8166
8970
|
新闻
|
8167
8971
|
|
8972
|
+
// xn--fhbei : 2015-01-15 VeriSign Sarl
|
8973
|
+
كوم
|
8974
|
+
|
8168
8975
|
// xn--fiq228c5hs : 2013-09-08 TLD REGISTRY LIMITED
|
8169
8976
|
中文网
|
8170
8977
|
|
@@ -8183,30 +8990,69 @@ wtf
|
|
8183
8990
|
// xn--i1b6b1a6a2e : 2013-11-14 Public Interest Registry
|
8184
8991
|
संगठन
|
8185
8992
|
|
8993
|
+
// xn--imr513n : 2014-12-11 HU YI GLOBAL INFORMATION RESOURCES (HOLDING) COMPANY. HONGKONG LIMITED
|
8994
|
+
餐厅
|
8995
|
+
|
8186
8996
|
// xn--io0a7i : 2013-11-14 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
|
8187
8997
|
网络
|
8188
8998
|
|
8999
|
+
// xn--j1aef : 2015-01-15 VeriSign Sarl
|
9000
|
+
ком
|
9001
|
+
|
9002
|
+
// xn--jlq61u9w7b : 2015-01-08 Nokia Corporation
|
9003
|
+
诺基亚
|
9004
|
+
|
9005
|
+
// xn--kcrx77d1x4a : 2014-11-07 Koninklijke Philips N.V.
|
9006
|
+
飞利浦
|
9007
|
+
|
9008
|
+
// xn--kpu716f : 2014-12-22 Richemont DNS Inc.
|
9009
|
+
手表
|
9010
|
+
|
8189
9011
|
// xn--kput3i : 2014-02-13 Beijing RITT-Net Technology Development Co., Ltd
|
8190
9012
|
手机
|
8191
9013
|
|
9014
|
+
// xn--mgba3a3ejt : 2014-11-20 Aramco Services Company
|
9015
|
+
ارامكو
|
9016
|
+
|
8192
9017
|
// xn--mgbab2bd : 2013-10-31 CORE Association
|
8193
9018
|
بازار
|
8194
9019
|
|
9020
|
+
// xn--mgbb9fbpob : 2014-12-18 GreenTech Consultancy Company W.L.L.
|
9021
|
+
موبايلي
|
9022
|
+
|
9023
|
+
// xn--mgbt3dhd : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
|
9024
|
+
همراه
|
9025
|
+
|
9026
|
+
// xn--mk1bu44c : 2015-01-15 VeriSign Sarl
|
9027
|
+
닷컴
|
9028
|
+
|
8195
9029
|
// xn--mxtq1m : 2014-03-06 Net-Chinese Co., Ltd.
|
8196
9030
|
政府
|
8197
9031
|
|
8198
9032
|
// xn--ngbc5azd : 2013-07-13 International Domain Registry Pty. Ltd.
|
8199
9033
|
شبكة
|
8200
9034
|
|
9035
|
+
// xn--ngbe9e0a : 2014-12-04 Kuwait Finance House
|
9036
|
+
بيتك
|
9037
|
+
|
8201
9038
|
// xn--nqv7f : 2013-11-14 Public Interest Registry
|
8202
9039
|
机构
|
8203
9040
|
|
8204
9041
|
// xn--nqv7fs00ema : 2013-11-14 Public Interest Registry
|
8205
9042
|
组织机构
|
8206
9043
|
|
9044
|
+
// xn--nyqy26a : 2014-11-07 Stable Tone Limited
|
9045
|
+
健康
|
9046
|
+
|
8207
9047
|
// xn--p1acf : 2013-12-12 Rusnames Limited
|
8208
9048
|
рус
|
8209
9049
|
|
9050
|
+
// xn--pbt977c : 2014-12-22 Richemont DNS Inc.
|
9051
|
+
珠宝
|
9052
|
+
|
9053
|
+
// xn--pssy2u : 2015-01-15 VeriSign Sarl
|
9054
|
+
大拿
|
9055
|
+
|
8210
9056
|
// xn--q9jyb4c : 2013-09-17 Charleston Road Registry Inc.
|
8211
9057
|
みんな
|
8212
9058
|
|
@@ -8216,9 +9062,15 @@ wtf
|
|
8216
9062
|
// xn--rhqv96g : 2013-09-11 Stable Tone Limited
|
8217
9063
|
世界
|
8218
9064
|
|
8219
|
-
// xn--ses554g : 2014-01-16
|
9065
|
+
// xn--ses554g : 2014-01-16
|
8220
9066
|
网址
|
8221
9067
|
|
9068
|
+
// xn--t60b56a : 2015-01-15 VeriSign Sarl
|
9069
|
+
닷넷
|
9070
|
+
|
9071
|
+
// xn--tckwe : 2015-01-15 VeriSign Sarl
|
9072
|
+
コム
|
9073
|
+
|
8222
9074
|
// xn--unup4y : 2013-07-14 Spring Fields, LLC
|
8223
9075
|
游戏
|
8224
9076
|
|
@@ -8231,6 +9083,9 @@ vermögensberatung
|
|
8231
9083
|
// xn--vhquv : 2013-08-27 Dash McCook, LLC
|
8232
9084
|
企业
|
8233
9085
|
|
9086
|
+
// xn--vuq861b : 2014-10-16 Beijing Tele-info Network Technology Co., Ltd.
|
9087
|
+
信息
|
9088
|
+
|
8234
9089
|
// xn--xhq521b : 2013-11-14 Guangzhou YU Wei Information Technology Co., Ltd.
|
8235
9090
|
广东
|
8236
9091
|
|
@@ -8243,9 +9098,15 @@ xyz
|
|
8243
9098
|
// yachts : 2014-01-09 DERYachts, LLC
|
8244
9099
|
yachts
|
8245
9100
|
|
9101
|
+
// yamaxun : 2014-12-18 Amazon EU S.à r.l.
|
9102
|
+
yamaxun
|
9103
|
+
|
8246
9104
|
// yandex : 2014-04-10 YANDEX, LLC
|
8247
9105
|
yandex
|
8248
9106
|
|
9107
|
+
// yodobashi : 2014-11-20 YODOBASHI CAMERA CO.,LTD.
|
9108
|
+
yodobashi
|
9109
|
+
|
8249
9110
|
// yoga : 2014-05-29 Top Level Domain Holdings Limited
|
8250
9111
|
yoga
|
8251
9112
|
|
@@ -8255,21 +9116,35 @@ yokohama
|
|
8255
9116
|
// youtube : 2014-05-01 Charleston Road Registry Inc.
|
8256
9117
|
youtube
|
8257
9118
|
|
9119
|
+
// yun : 2015-01-08 QIHOO 360 TECHNOLOGY CO. LTD.
|
9120
|
+
yun
|
9121
|
+
|
9122
|
+
// zara : 2014-11-07 Industria de Diseño Textil, S.A. (INDITEX, S.A.)
|
9123
|
+
zara
|
9124
|
+
|
9125
|
+
// zero : 2014-12-18 Amazon EU S.à r.l.
|
9126
|
+
zero
|
9127
|
+
|
8258
9128
|
// zip : 2014-05-08 Charleston Road Registry Inc.
|
8259
9129
|
zip
|
8260
9130
|
|
8261
9131
|
// zone : 2013-11-14 Outer Falls, LLC
|
8262
9132
|
zone
|
8263
9133
|
|
9134
|
+
// zuerich : 2014-11-07 Kanton Zürich (Canton of Zurich)
|
9135
|
+
zuerich
|
9136
|
+
|
9137
|
+
|
8264
9138
|
// ===END ICANN DOMAINS===
|
8265
9139
|
// ===BEGIN PRIVATE DOMAINS===
|
9140
|
+
// (Note: these are in alphabetical order by company name)
|
8266
9141
|
|
8267
9142
|
// Amazon CloudFront : https://aws.amazon.com/cloudfront/
|
8268
9143
|
// Submitted by Donavan Miller <donavanm@amazon.com> 2013-03-22
|
8269
9144
|
cloudfront.net
|
8270
9145
|
|
8271
9146
|
// Amazon Elastic Compute Cloud: https://aws.amazon.com/ec2/
|
8272
|
-
// Submitted by Osman Surkatty <osmans@amazon.com> 2014-
|
9147
|
+
// Submitted by Osman Surkatty <osmans@amazon.com> 2014-12-16
|
8273
9148
|
ap-northeast-1.compute.amazonaws.com
|
8274
9149
|
ap-southeast-1.compute.amazonaws.com
|
8275
9150
|
ap-southeast-2.compute.amazonaws.com
|
@@ -8278,6 +9153,7 @@ compute.amazonaws.cn
|
|
8278
9153
|
compute.amazonaws.com
|
8279
9154
|
compute-1.amazonaws.com
|
8280
9155
|
eu-west-1.compute.amazonaws.com
|
9156
|
+
eu-central-1.compute.amazonaws.com
|
8281
9157
|
sa-east-1.compute.amazonaws.com
|
8282
9158
|
us-east-1.amazonaws.com
|
8283
9159
|
us-gov-west-1.compute.amazonaws.com
|
@@ -8386,6 +9262,10 @@ co.ca
|
|
8386
9262
|
co.nl
|
8387
9263
|
co.no
|
8388
9264
|
|
9265
|
+
// Commerce Guys, SAS
|
9266
|
+
// Submitted by Damien Tournoud <damien@commerceguys.com> 2015-01-22
|
9267
|
+
*.platform.sh
|
9268
|
+
|
8389
9269
|
// Cupcake : https://cupcake.io/
|
8390
9270
|
// Submitted by Jonathan Rudenberg <jonathan@cupcake.io> 2013-10-08
|
8391
9271
|
cupcake.is
|
@@ -8691,6 +9571,10 @@ firebaseapp.com
|
|
8691
9571
|
// Submitted by Jonathan Rudenberg <jonathan@flynn.io> 2014-07-12
|
8692
9572
|
flynnhub.com
|
8693
9573
|
|
9574
|
+
// GDS : https://www.gov.uk/service-manual/operations/operating-servicegovuk-subdomains
|
9575
|
+
// Submitted by David Illsley <david.illsley@digital.cabinet-office.gov.uk> 2014-08-28
|
9576
|
+
service.gov.uk
|
9577
|
+
|
8694
9578
|
// GitHub, Inc.
|
8695
9579
|
// Submitted by Ben Toews <btoews@github.com> 2014-02-06
|
8696
9580
|
github.io
|
@@ -8701,8 +9585,9 @@ githubusercontent.com
|
|
8701
9585
|
ro.com
|
8702
9586
|
|
8703
9587
|
// Google, Inc.
|
8704
|
-
// Submitted by Eduardo Vela <evn@google.com>
|
9588
|
+
// Submitted by Eduardo Vela <evn@google.com> 2014-12-19
|
8705
9589
|
appspot.com
|
9590
|
+
blogspot.ae
|
8706
9591
|
blogspot.be
|
8707
9592
|
blogspot.bj
|
8708
9593
|
blogspot.ca
|
@@ -8717,6 +9602,7 @@ blogspot.com.ar
|
|
8717
9602
|
blogspot.com.au
|
8718
9603
|
blogspot.com.br
|
8719
9604
|
blogspot.com.es
|
9605
|
+
blogspot.com.tr
|
8720
9606
|
blogspot.cv
|
8721
9607
|
blogspot.cz
|
8722
9608
|
blogspot.de
|
@@ -8738,6 +9624,7 @@ blogspot.no
|
|
8738
9624
|
blogspot.pt
|
8739
9625
|
blogspot.re
|
8740
9626
|
blogspot.ro
|
9627
|
+
blogspot.ru
|
8741
9628
|
blogspot.se
|
8742
9629
|
blogspot.sg
|
8743
9630
|
blogspot.sk
|
@@ -8746,6 +9633,7 @@ blogspot.tw
|
|
8746
9633
|
codespot.com
|
8747
9634
|
googleapis.com
|
8748
9635
|
googlecode.com
|
9636
|
+
pagespeedmobilizer.com
|
8749
9637
|
withgoogle.com
|
8750
9638
|
|
8751
9639
|
// Heroku : https://www.heroku.com/
|
@@ -8790,17 +9678,41 @@ operaunite.com
|
|
8790
9678
|
// Submitted by Duarte Santos <domain-admin@outsystemscloud.com> 2014-03-11
|
8791
9679
|
outsystemscloud.com
|
8792
9680
|
|
9681
|
+
// .pl domains (grandfathered)
|
9682
|
+
art.pl
|
9683
|
+
gliwice.pl
|
9684
|
+
krakow.pl
|
9685
|
+
poznan.pl
|
9686
|
+
wroc.pl
|
9687
|
+
zakopane.pl
|
9688
|
+
|
9689
|
+
// priv.at : http://www.nic.priv.at/
|
9690
|
+
// Submitted by registry <lendl@nic.at> 2008-06-09
|
9691
|
+
priv.at
|
9692
|
+
|
8793
9693
|
// Red Hat, Inc. OpenShift : https://openshift.redhat.com/
|
8794
9694
|
// Submitted by Tim Kramer <tkramer@rhcloud.com> 2012-10-24
|
8795
9695
|
rhcloud.com
|
8796
9696
|
|
8797
|
-
//
|
8798
|
-
// Submitted by
|
8799
|
-
|
9697
|
+
// SinaAppEngine : http://sae.sina.com.cn/
|
9698
|
+
// Submitted by SinaAppEngine <saesupport@sinacloud.com> 2015-02-02
|
9699
|
+
sinaapp.com
|
9700
|
+
vipsinaapp.com
|
9701
|
+
1kapp.com
|
8800
9702
|
|
8801
|
-
//
|
8802
|
-
|
8803
|
-
|
9703
|
+
// TASK geographical domains (www.task.gda.pl/uslugi/dns)
|
9704
|
+
gda.pl
|
9705
|
+
gdansk.pl
|
9706
|
+
gdynia.pl
|
9707
|
+
med.pl
|
9708
|
+
sopot.pl
|
9709
|
+
|
9710
|
+
// UDR Limited : http://www.udr.hk.com
|
9711
|
+
// Submitted by registry <hostmaster@udr.hk.com> 2014-11-07
|
9712
|
+
hk.com
|
9713
|
+
hk.org
|
9714
|
+
ltd.hk
|
9715
|
+
inc.hk
|
8804
9716
|
|
8805
9717
|
// Yola : https://www.yola.com/
|
8806
9718
|
// Submitted by Stefano Rivera <stefano@yola.com> 2014-07-09
|