email_data 1604944785 → 1605483437

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aa8d3696d76e382a9c5f4dafd80239dae34fa4f5a16ba17108ebe7c65e3092cb
4
- data.tar.gz: 8d8a9f1228ca1fba0bc4931df8710ae11bb92e85995b46b438c137024fd8101a
3
+ metadata.gz: 7ee4f3cd6480023a786dddb8575eef1e905c483ae039fc28fd83a58801a10898
4
+ data.tar.gz: 00c365370cd541acbac7815975e7fb2bba3642b1a2fe67c9babd423fbbad2aa8
5
5
  SHA512:
6
- metadata.gz: d2c9c9e455690c0d6e9fff0d9caced96e7207e7aae668b977acbbc8efe054d0a968351cdcaafd043172e5f0dac46ace5ca74df757135ff3a7336f4c93ac3c3ec
7
- data.tar.gz: 24b3f3346e4b2a602b503038ed2e97ab232c3cd47265a4391798b113d2c4ced176b3d4fac33016c5e145fb22c7c7e53dd0cd94df897d839139233123a302988b
6
+ metadata.gz: ab4ee9e948f586672c4a6e1a54ef1923853ca29493e9926f61d4eb6c2b1c40e35e660957d28c74d99c7e0dc3b773f34c9bd4bb0267bfb3380fe82a6750f30434
7
+ data.tar.gz: 283ac7b4918b5fc74fb5edaca8a59af3ad0da8173eea5815b853fb2e46c9b2747585d5a46338e9d246a022c0ec40f446ea1450e0945fbb489d024ddd22ebf667
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- email_data (1604944785)
4
+ email_data (1605483437)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -38,15 +38,16 @@ GEM
38
38
  rake (13.0.1)
39
39
  regexp_parser (1.8.2)
40
40
  rexml (3.2.4)
41
- root_domain (0.1.0)
41
+ root_domain (0.1.1)
42
+ email_data
42
43
  simpleidn
43
- rubocop (1.2.0)
44
+ rubocop (1.3.0)
44
45
  parallel (~> 1.10)
45
46
  parser (>= 2.7.1.5)
46
47
  rainbow (>= 2.2.2, < 4.0)
47
48
  regexp_parser (>= 1.8)
48
49
  rexml
49
- rubocop-ast (>= 1.0.1)
50
+ rubocop-ast (>= 1.1.1)
50
51
  ruby-progressbar (~> 1.7)
51
52
  unicode-display_width (>= 1.4.0, < 2.0)
52
53
  rubocop-ast (1.1.1)
data/README.md CHANGED
@@ -58,6 +58,18 @@ EmailData.free_email_domains
58
58
 
59
59
  # List of roles. Can be used to filter out emails like info@ or all@.
60
60
  EmailData.roles
61
+
62
+ # List of private relays like Apple's Hide My Email.
63
+ EmailData.private_relays
64
+
65
+ # List of country tlds.
66
+ EmailData.country_tlds
67
+
68
+ # List of official tlds.
69
+ EmailData.tlds
70
+
71
+ # List of second-level domains.
72
+ EmailData.slds
61
73
  ```
62
74
 
63
75
  #### Data sources
@@ -98,6 +110,12 @@ class SetupEmailData < ActiveRecord::Migration[6.1]
98
110
 
99
111
  add_index :tlds, :name, unique: true
100
112
 
113
+ create_table :slds do |t|
114
+ t.citext :name, null: false
115
+ end
116
+
117
+ add_index :slds, :name, unique: true
118
+
101
119
  create_table :country_tlds do |t|
102
120
  t.citext :name, null: false
103
121
  end
@@ -127,6 +145,12 @@ class SetupEmailData < ActiveRecord::Migration[6.1]
127
145
  end
128
146
 
129
147
  add_index :roles, :name, unique: true
148
+
149
+ create_table :private_relays do |t|
150
+ t.citext :name, null: false
151
+ end
152
+
153
+ add_index :private_relays, :name, unique: true
130
154
  end
131
155
  end
132
156
  ```
@@ -155,11 +179,13 @@ The you can load each dataset using `COPY`:
155
179
 
156
180
  ```sql
157
181
  COPY tlds (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/tlds.txt';
182
+ COPY slds (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/slds.txt';
158
183
  COPY country_tlds (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/country_tlds.txt';
159
184
  COPY disposable_emails (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/disposable_emails.txt';
160
185
  COPY disposable_domains (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/disposable_domains.txt';
161
186
  COPY free_email_domains (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/free_email_domains.txt';
162
187
  COPY roles (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/roles.txt';
188
+ COPY private_relays (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/private_relays.txt';
163
189
  ```
164
190
 
165
191
  Alternatively, you could create a migrate that executes that same command; given
@@ -181,11 +207,13 @@ class LoadEmailData < ActiveRecord::Migration[6.1]
181
207
  end
182
208
 
183
209
  copy.call(:tlds)
210
+ copy.call(:slds)
184
211
  copy.call(:country_tlds)
185
212
  copy.call(:disposable_emails)
186
213
  copy.call(:disposable_domains)
187
214
  copy.call(:free_email_domains)
188
215
  copy.call(:roles)
216
+ copy.call(:private_relays)
189
217
  end
190
218
  end
191
219
  ```
@@ -209,6 +237,10 @@ const disposableEmails = require("@fnando/email_data/data/json/disposable_emails
209
237
  const disposableDomains = require("@fnando/email_data/data/json/disposable_domains.json");
210
238
  const freeEmailDomains = require("@fnando/email_data/data/json/free_email_domains.json");
211
239
  const roles = require("@fnando/email_data/data/json/roles.json");
240
+ const privateRelays = require("@fnando/email_data/data/json/private_relays.json");
241
+ const tlds = require("@fnando/email_data/data/json/tlds.json");
242
+ const slds = require("@fnando/email_data/data/json/slds.json");
243
+ const cctlds = require("@fnando/email_data/data/json/country_tlds.json");
212
244
  ```
213
245
 
214
246
  ## Dataset
@@ -224,6 +256,8 @@ like to add, please make a pull request against the files `data/manual/*.txt`.
224
256
  - `data/manual/free_email_domains.txt`: only free email services must go here.
225
257
  - `data/manual/roles.txt`: list of role-based user names like `info` or
226
258
  `no-reply`.
259
+ - `data/manual/private_relays.txt`: list of private relay services, like Apple's
260
+ Hide My Email.
227
261
 
228
262
  ## Development
229
263
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1604944785
1
+ 1605483437
@@ -7,12 +7,6 @@ source $HOME/.zsh/asdf.sh
7
7
 
8
8
  asdf local nodejs 12.18.4
9
9
 
10
- for input in $(ls -1 data/*.txt); do
11
- name=$(basename $input)
12
- output=data/json/"${name%.txt}.json"
13
- jq -R -s -c 'split("\n")' < $input > $output
14
- done
15
-
16
10
  npm publish --access=public
17
11
 
18
12
  terminal-notifier \
data/bin/sync CHANGED
@@ -5,3 +5,5 @@ echo
5
5
  ./bin/sync-free-emails
6
6
  echo
7
7
  ./bin/sync-disposable-emails
8
+ echo
9
+ ./bin/export-json-files
@@ -182,6 +182,10 @@ threads.clear
182
182
 
183
183
  domains = []
184
184
 
185
+ puts "=> Saving private relays"
186
+ private_relays = normalize_list(File.read("#{__dir__}/../data/manual/private_relays.txt").lines)
187
+ save_file("private_relays.txt", private_relays)
188
+
185
189
  puts "=> Loading disposable_domains.txt"
186
190
  domains += normalize_list(File.read("#{__dir__}/../data/disposable_domains.txt").lines)
187
191
 
@@ -196,9 +200,8 @@ end
196
200
 
197
201
  ignore_domains = normalize_list(File.read("#{__dir__}/../data/free_email_domains.txt").lines)
198
202
  .map {|domain| RootDomain.call(domain) }
199
- ignore_domains += %w[
200
- appleid.com
201
- ]
203
+ ignore_domains += normalize_list(File.read("#{__dir__}/../data/private_relays.txt").lines)
204
+ .map {|line| RootDomain.call(line) }
202
205
 
203
206
  puts "=> Normalize domains (count: #{domains.size})"
204
207
  domains = domains
@@ -26,3 +26,18 @@ country_tlds = country_tlds
26
26
 
27
27
  puts "=> Saving country_tlds.txt"
28
28
  save_file("country_tlds.txt", normalize_list(country_tlds))
29
+
30
+ puts "=> Fetching sld list"
31
+ response = http_request(:get, "https://publicsuffix.org/list/public_suffix_list.dat")
32
+ content, _ = response.body.split("END ICANN DOMAINS")
33
+
34
+ slds = content
35
+ .lines
36
+ .map {|line| line.gsub(/^\*\./, "") }
37
+ .map(&:strip)
38
+ .reject(&:empty?)
39
+ .reject {|line| line.start_with?("/") }
40
+ .map {|line| line.gsub(/^([!*.]+)/, "") }
41
+ .reject {|line| line.split(".").size == 1 }
42
+
43
+ save_file("slds.txt", normalize_list(slds))
@@ -2215,6 +2215,7 @@
2215
2215
  25806.monster
2216
2216
  2584445.com
2217
2217
  2594445.com
2218
+ 2595966.com
2218
2219
  25betturka.com
2219
2220
  25comp.ru
2220
2221
  25fwlp1ih7av5ym.xyz
@@ -7266,6 +7267,7 @@
7266
7267
  97178c5.com
7267
7268
  97178c6.com
7268
7269
  97207q.com
7270
+ 9722.us
7269
7271
  9724445.com
7270
7272
  9727a.com
7271
7273
  973.dog
@@ -10356,6 +10358,7 @@ alhadattv.com
10356
10358
  alhalfpricelistings.com
10357
10359
  alhamadealmeria.com
10358
10360
  alhashareslectronics.com
10361
+ alhemyaria.news
10359
10362
  alhzfw.us
10360
10363
  ali-baba.info
10361
10364
  aliagaberrakemlak.com
@@ -10429,6 +10432,7 @@ alisverisistan.net
10429
10432
  alitaj.com
10430
10433
  alittle.website
10431
10434
  alivance.com
10435
+ aliveinlosangeles.com
10432
10436
  alivemail.cf
10433
10437
  alivemail.ga
10434
10438
  alivemail.gq
@@ -12000,6 +12004,7 @@ apk-download.xyz
12000
12004
  apk1000.com
12001
12005
  apk2download.net
12002
12006
  apkfun.club
12007
+ apklitestore.com
12003
12008
  apkload.com
12004
12009
  apkmd.com
12005
12010
  apkmoe.com
@@ -13484,6 +13489,7 @@ aub6jbkk.xyz
13484
13489
  aubootfans.co.uk
13485
13490
  aubootfans.com
13486
13491
  aubootsoutlet.co.uk
13492
+ aubreyequine.com
13487
13493
  aucenter.info
13488
13494
  auchandirekt.pl
13489
13495
  auction315.xyz
@@ -13578,6 +13584,7 @@ ausdoctors.info
13578
13584
  ausgefallen.info
13579
13585
  auslaenderberatunge-erfurt.press
13580
13586
  auspaccornerstone.com
13587
+ auspb.com
13581
13588
  auspicy.best
13582
13589
  aussie.finance
13583
13590
  aussie.loan
@@ -14289,6 +14296,7 @@ azspartners.ru
14289
14296
  azsportsnetwork.net
14290
14297
  aztecspecialties.us
14291
14298
  azterul.ru
14299
+ aztraumacenter.com
14292
14300
  azulaomarine.com
14293
14301
  azulgold.com
14294
14302
  azumail.com
@@ -14442,6 +14450,7 @@ b55b56.gq
14442
14450
  b55b56.ml
14443
14451
  b55b56.tk
14444
14452
  b571qqnl.buzz
14453
+ b572elzs.buzz
14445
14454
  b59da.xyz
14446
14455
  b59qph.us
14447
14456
  b5gtfghtt.xyz
@@ -16513,6 +16522,7 @@ bestcustomlogo.com
16513
16522
  bestdarkspotcorrector.org
16514
16523
  bestdates.xyz
16515
16524
  bestdateshere23.com
16525
+ bestdavenportchiropractor.com
16516
16526
  bestday.pw
16517
16527
  bestdealsdiscounts.co.in
16518
16528
  bestdentistofficenearme.com
@@ -18130,6 +18140,7 @@ bjog.tech
18130
18140
  bjq53.space
18131
18141
  bjqjvtodz.shop
18132
18142
  bjsnc.com
18143
+ bjsy6p.com
18133
18144
  bjtpg.us
18134
18145
  bjwc.us
18135
18146
  bjxt.ml
@@ -20770,6 +20781,7 @@ buylaptopsunder300.com
20770
20781
  buylevitra-us.com
20771
20782
  buylevitra.website
20772
20783
  buylikes247.com
20784
+ buylimu.biz
20773
20785
  buylouisvuittonbagsjp.com
20774
20786
  buymethotrexate.info
20775
20787
  buymichaelkorsoutletca.ca
@@ -21403,6 +21415,7 @@ c6h12o6.gq
21403
21415
  c6h12o6.ml
21404
21416
  c6h12o6.tk
21405
21417
  c6loaadz.ru
21418
+ c70321.com
21406
21419
  c70456.com
21407
21420
  c70567.com
21408
21421
  c70654.com
@@ -24467,6 +24480,7 @@ civilokant903.gq
24467
24480
  civilokant903.ml
24468
24481
  civilokant903.tk
24469
24482
  civilroom.com
24483
+ civilyze.com
24470
24484
  civoo.com
24471
24485
  civvic.ro
24472
24486
  civx.org
@@ -29701,6 +29715,7 @@ designfox.org
29701
29715
  designfreebies.ru
29702
29716
  designfuture.info
29703
29717
  designingenium.com
29718
+ designingireland.com
29704
29719
  designingknights.com
29705
29720
  designland.info
29706
29721
  designmint.site
@@ -30766,6 +30781,7 @@ discardmail.com
30766
30781
  discardmail.de
30767
30782
  discardmail.ml
30768
30783
  discardmail.tk
30784
+ discdots.com
30769
30785
  discfoo.com
30770
30786
  discjumsa.tk
30771
30787
  disckracuvna.cf
@@ -32166,6 +32182,7 @@ drawing-new.ru
32166
32182
  drawinginfo.ru
32167
32183
  drawingwithjeffrey.com
32168
32184
  drawme.site
32185
+ drawmeans.com
32169
32186
  drawmedia.org
32170
32187
  drawquest.net
32171
32188
  drazen.dev
@@ -36305,6 +36322,7 @@ evaluatorapp.com
36305
36322
  evalusave.com
36306
36323
  evamail.com
36307
36324
  evanackmann.net
36325
+ evandro.cd
36308
36326
  evanfox.info
36309
36327
  evanhamilton.buzz
36310
36328
  evanlifesciences.com
@@ -40678,6 +40696,7 @@ fullen.in
40678
40696
  fullepisodesnow.com
40679
40697
  fullermail.men
40680
40698
  fullfilmizle2.com
40699
+ fullframedesign.com
40681
40700
  fullhomepacks.info
40682
40701
  fulll.stream
40683
40702
  fullmoviesonline.space
@@ -41415,6 +41434,7 @@ gangkindter.ga
41415
41434
  gangkindter.gq
41416
41435
  gangkindter.tk
41417
41436
  gangstersofharlem.com
41437
+ gangtrk.site
41418
41438
  gangu.cf
41419
41439
  gangu.gq
41420
41440
  gangu.ml
@@ -41730,6 +41750,7 @@ gdian43.com
41730
41750
  gdian49.com
41731
41751
  gdian54.com
41732
41752
  gdian57.com
41753
+ gdian63.com
41733
41754
  gdian78.com
41734
41755
  gdian84.com
41735
41756
  gdian86.com
@@ -41743,6 +41764,7 @@ gdmail.top
41743
41764
  gdmalls.com
41744
41765
  gdprcompliance.expert
41745
41766
  gdprcompliance.solutions
41767
+ gdqdaintb.ml
41746
41768
  gdqdp2.us
41747
41769
  gdqzhv.com
41748
41770
  gdradr.com
@@ -41996,6 +42018,7 @@ geokomponent.ru
41996
42018
  geolocalroadmap.com
41997
42019
  geologgdpo.space
41998
42020
  geologicpublications.net
42021
+ geologik.biz
41999
42022
  geomail.win
42000
42023
  geometricescape.com
42001
42024
  georaster.info
@@ -42195,6 +42218,7 @@ getit-beauty.com
42195
42218
  getitfast.com
42196
42219
  getjar.pl
42197
42220
  getjulia.com
42221
+ getkitchen.club
42198
42222
  getkl.site
42199
42223
  getknot.app
42200
42224
  getladiescoats.com
@@ -42370,6 +42394,7 @@ gg023.space
42370
42394
  gg024.space
42371
42395
  gg025.space
42372
42396
  gg18269.com
42397
+ gg2srxzj.com
42373
42398
  gg57822.com
42374
42399
  gg7665.com
42375
42400
  gg9094.com
@@ -42585,6 +42610,7 @@ gigism.com
42585
42610
  gign-40.com
42586
42611
  gigpurchase.com
42587
42612
  gihybe.us
42613
+ giize.com
42588
42614
  gikemart.site
42589
42615
  gikmail.com
42590
42616
  gilaayam.com
@@ -46515,6 +46541,7 @@ heangdilly.icu
46515
46541
  heari.net
46516
46542
  hearingaiddoctor.net
46517
46543
  hearpower.us
46544
+ heart1.ga
46518
46545
  heartandhopefund.com
46519
46546
  heartburnnomorereview.info
46520
46547
  heartfair.xyz
@@ -49679,6 +49706,7 @@ idahowine.tours
49679
49706
  idat.buzz
49680
49707
  idat.site
49681
49708
  idbloc.co
49709
+ idcbill.com
49682
49710
  idcclub88.com
49683
49711
  iddaairan.website
49684
49712
  iddaalabayi.com
@@ -50286,6 +50314,7 @@ imagictech.com
50286
50314
  imaginegiants.com
50287
50315
  imagineinvestments.com
50288
50316
  imaginethelearning.com
50317
+ imagiscape.photography
50289
50318
  imagiscape.photos
50290
50319
  imagiscape.pictures
50291
50320
  imagiscape.us
@@ -50896,6 +50925,7 @@ infoportalchik.ru
50896
50925
  infoprediksi4d.com
50897
50926
  infoprice.tech
50898
50927
  infoqq24jam.xyz
50928
+ inform-factory-new.info
50899
50929
  inform-mart-deal.ru
50900
50930
  inform-new-like.ru
50901
50931
  inform-store-active.ru
@@ -52664,6 +52694,7 @@ jaaj.cf
52664
52694
  jaalaa4.xyz
52665
52695
  jaanv.com
52666
52696
  jaarvandemolens.online
52697
+ jaat.live
52667
52698
  jabatankopi.com
52668
52699
  jabberflash.info
52669
52700
  jabbyhotel.online
@@ -56576,6 +56607,7 @@ kmeuktpmh.pl
56576
56607
  kmhow.com
56577
56608
  kmkl.de
56578
56609
  kmlueh.shop
56610
+ kmonger.co
56579
56611
  kmonkeyd.com
56580
56612
  kmonlinestore.co.uk
56581
56613
  kmqqu.live
@@ -59583,6 +59615,7 @@ lightspeed.store
59583
59615
  lightspeedgolf.app
59584
59616
  lightswea.icu
59585
59617
  lightvid.ru
59618
+ lightvids.com
59586
59619
  lightvivo.ru
59587
59620
  lighvanrau.ga
59588
59621
  ligirls.ru
@@ -66894,6 +66927,7 @@ moldered494dn.online
66894
66927
  moldova-nedv.ru
66895
66928
  moldova.uno
66896
66929
  moldujgkcqb.email
66930
+ moldura888.com
66897
66931
  molecadamail.pw
66898
66932
  molkq.site
66899
66933
  moll.express
@@ -70270,6 +70304,7 @@ new-year-lucky-gifts.monster
70270
70304
  new-year-special-gift.icu
70271
70305
  new-year-special-gift.monster
70272
70306
  new-york-wedding.com
70307
+ new-york.host
70273
70308
  new688e.ga
70274
70309
  newa.wtf
70275
70310
  newage.press
@@ -79282,6 +79317,7 @@ preccompdes.gq
79282
79317
  preccompdes.ml
79283
79318
  precconta.cf
79284
79319
  precconta.ga
79320
+ precconta.tk
79285
79321
  precdate.cf
79286
79322
  precdate.ga
79287
79323
  precdate.gq
@@ -87769,6 +87805,7 @@ sciegenics.com
87769
87805
  science-aviation.org
87770
87806
  science-full.ru
87771
87807
  scienceacademicnews.site
87808
+ scienceauvert.org
87772
87809
  sciencelive.ru
87773
87810
  sciencepub.news
87774
87811
  sciencestill.com
@@ -95751,6 +95788,7 @@ teamandclub.ga
95751
95788
  teambogor.online
95752
95789
  teamdigest.com
95753
95790
  teamflow.works
95791
+ teamhv.net
95754
95792
  teamjulie.com
95755
95793
  teamkg.tk
95756
95794
  teamkiller.net
@@ -95769,6 +95807,7 @@ teamspeak3.ga
95769
95807
  teamster.com
95770
95808
  teamtimspencer.com
95771
95809
  teamtournamenttravel.com
95810
+ teamtriton.net
95772
95811
  teamviewerindirsene.com
95773
95812
  teamwyden.net
95774
95813
  teamxpress.org
@@ -95930,6 +95969,7 @@ tee800.com
95930
95969
  teebaum-oel.info
95931
95970
  teecheap.store
95932
95971
  teedinnan.com
95972
+ teeessential.com
95933
95973
  teemia.com
95934
95974
  teemo.site
95935
95975
  teemoco.shop
@@ -97859,6 +97899,7 @@ thyroidsaver.org
97859
97899
  thyroidtips.info
97860
97900
  thyxwenu.shop
97861
97901
  thzhhe5l.ml
97902
+ ti-sale.online
97862
97903
  tiabami.cf
97863
97904
  tiabami.ga
97864
97905
  tiabami.gq
@@ -104424,6 +104465,7 @@ viddly.online
104424
104465
  viddly.plus
104425
104466
  viddly.site
104426
104467
  viddsy.net
104468
+ videgertools.info
104427
104469
  video-16porno.fr
104428
104470
  video-dlj-tebya.ru
104429
104471
  video-insanity.com
@@ -104849,6 +104891,7 @@ viraginous.xyz
104849
104891
  viral-hub.xyz
104850
104892
  viral-science.fun
104851
104893
  viral-update.xyz
104894
+ viralchoose.com
104852
104895
  viralclothes.com
104853
104896
  viralhits.org
104854
104897
  virallifestyles.com
@@ -106438,6 +106481,7 @@ warnerbrobrewco.com
106438
106481
  warnerwave.xyz
106439
106482
  warning-10by25.stream
106440
106483
  warnomics.com
106484
+ waroengdo.store
106441
106485
  waronrent.org
106442
106486
  warp2p.com
106443
106487
  warqaat.com
@@ -106742,6 +106786,7 @@ wdrecipes.com
106742
106786
  wdrzw.info
106743
106787
  wdsfbghfg77hj.gq
106744
106788
  wdvhw1.site
106789
+ wdw.ru
106745
106790
  wdwot.com
106746
106791
  wdx4.com
106747
106792
  wdxgc.com
@@ -107417,6 +107462,7 @@ wgfvim.us
107417
107462
  wgkfdq.host
107418
107463
  wgkoeln.org
107419
107464
  wgnyw.info
107465
+ wgraj.com
107420
107466
  wgrazd.site
107421
107467
  wgw365.com
107422
107468
  wgweddxy.shop
@@ -110756,6 +110802,7 @@ xn--rgfest-vxa4c.com
110756
110802
  xn--rhqt5tmrbt30afkiqpk45b.top
110757
110803
  xn--ridsp-nua.se
110758
110804
  xn--robotjurdico-zfb.com
110805
+ xn--rpple-tsa.com
110759
110806
  xn--rrmokarejnkping-8sbic.nu
110760
110807
  xn--rrmokarenorrkping-zzbm.com
110761
110808
  xn--saatbahaber-4zb11d.com