email_data 1605067682 → 1605588714

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: db126a2e2c1283ba53da0f547a637a00f3b0649d620c25bf15f6f3a67fefbf14
4
- data.tar.gz: c7a75987fdd41e347f3f4798b75855639672f8e1ca21e70a246708736edfdddd
3
+ metadata.gz: f72ac55688da2831c2b38ed3597453aa1e6c287e141fa050651369bdb62478f9
4
+ data.tar.gz: 4abf910163c5de1edfe916c512759f12bdd698e13b93a79da3a6b1e2657ba5f7
5
5
  SHA512:
6
- metadata.gz: '008c758016fe7b7315d606f13090a3b0acac475f5d65862e3a58aa88f5560a31822545b4e497276b874f56eb9362e9938f366dd57acd8f405a262b9a749f27ba'
7
- data.tar.gz: de99977f40967a68628407e878ac33268635ccdbc3ff766eeee201aa9626e7a52f14528d2b37cf4ab487dd6b7f35321d280d5d523658eb30e4c4d199929263d2
6
+ metadata.gz: 060b04778ed545923c428c0931c3aeefbb33ea975b1a0f74f5d3d752624e98ac7dd94580a3e8b1ada049c6620fb9df2b2fe54c10d29ed130096e0d2103a82580
7
+ data.tar.gz: 63cc89b31258dec4edea810e6aed73c2b62bf48dfe968cf8b522954a4b01b32fe4a8f9e3655ca4252b5c784ffaca25c14c4a79a3cc1a1dbdb001a2fb41c28f44
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- email_data (1605067682)
4
+ email_data (1605588714)
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.1)
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
- 1605067682
1
+ 1605588714
@@ -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))
@@ -33,6 +33,7 @@
33
33
  001xs.net
34
34
  001xs.org
35
35
  001xs.xyz
36
+ 002.city
36
37
  002288211.com
37
38
  002r.com
38
39
  002t.com
@@ -6988,6 +6989,7 @@
6988
6989
  8verxcdkrfal61pfag.tk
6989
6990
  8vkopg.us
6990
6991
  8vnond.us
6992
+ 8w903.buzz
6991
6993
  8wehgc2atizw.cf
6992
6994
  8wehgc2atizw.ga
6993
6995
  8wehgc2atizw.gq
@@ -7027,6 +7029,7 @@
7027
7029
  8xgui.com
7028
7030
  8xgun.com
7029
7031
  8xgve.com
7032
+ 8xi.org
7030
7033
  8xzr.com
7031
7034
  8ycxiazai.com
7032
7035
  8ycxz.com
@@ -7267,6 +7270,7 @@
7267
7270
  97178c5.com
7268
7271
  97178c6.com
7269
7272
  97207q.com
7273
+ 9722.us
7270
7274
  9724445.com
7271
7275
  9727a.com
7272
7276
  973.dog
@@ -7772,6 +7776,7 @@ a02sjv3e4e8jk4liat.gq
7772
7776
  a02sjv3e4e8jk4liat.ml
7773
7777
  a02sjv3e4e8jk4liat.tk
7774
7778
  a0f7ukc.com
7779
+ a0fnjd.us
7775
7780
  a0reklama.pl
7776
7781
  a0txa.icu
7777
7782
  a0ywhm.us
@@ -8373,6 +8378,7 @@ accumolecular.com
8373
8378
  accur8.net
8374
8379
  accuracyis.com
8375
8380
  accuranker.tech
8381
+ accuratecallabs.com
8376
8382
  accuratecallabs.net
8377
8383
  accurateforum.info
8378
8384
  accuratehealthman.xyz
@@ -10213,6 +10219,7 @@ alcsehar.ml
10213
10219
  alcsehar.tk
10214
10220
  alcsx.site
10215
10221
  alcyonoid.info
10222
+ aldawaeya.org
10216
10223
  aldealdi.shop
10217
10224
  aldeaminera.info
10218
10225
  aldemimea.xyz
@@ -10357,6 +10364,7 @@ alhadattv.com
10357
10364
  alhalfpricelistings.com
10358
10365
  alhamadealmeria.com
10359
10366
  alhashareslectronics.com
10367
+ alhemyaria.news
10360
10368
  alhzfw.us
10361
10369
  ali-baba.info
10362
10370
  aliagaberrakemlak.com
@@ -10430,6 +10438,7 @@ alisverisistan.net
10430
10438
  alitaj.com
10431
10439
  alittle.website
10432
10440
  alivance.com
10441
+ aliveinlosangeles.com
10433
10442
  alivemail.cf
10434
10443
  alivemail.ga
10435
10444
  alivemail.gq
@@ -12001,6 +12010,7 @@ apk-download.xyz
12001
12010
  apk1000.com
12002
12011
  apk2download.net
12003
12012
  apkfun.club
12013
+ apklitestore.com
12004
12014
  apkload.com
12005
12015
  apkmd.com
12006
12016
  apkmoe.com
@@ -13580,6 +13590,7 @@ ausdoctors.info
13580
13590
  ausgefallen.info
13581
13591
  auslaenderberatunge-erfurt.press
13582
13592
  auspaccornerstone.com
13593
+ auspb.com
13583
13594
  auspicy.best
13584
13595
  aussie.finance
13585
13596
  aussie.loan
@@ -14291,6 +14302,7 @@ azspartners.ru
14291
14302
  azsportsnetwork.net
14292
14303
  aztecspecialties.us
14293
14304
  azterul.ru
14305
+ aztraumacenter.com
14294
14306
  azulaomarine.com
14295
14307
  azulgold.com
14296
14308
  azumail.com
@@ -14834,7 +14846,9 @@ bahisstar221.com
14834
14846
  bahisstar226.com
14835
14847
  bahisstar228.com
14836
14848
  bahisstar229.com
14849
+ bahistek39.com
14837
14850
  bahistek40.com
14851
+ bahistek86.com
14838
14852
  bahisturk14.com
14839
14853
  bahisturk17.com
14840
14854
  bahisturk23.com
@@ -16516,6 +16530,7 @@ bestcustomlogo.com
16516
16530
  bestdarkspotcorrector.org
16517
16531
  bestdates.xyz
16518
16532
  bestdateshere23.com
16533
+ bestdavenportchiropractor.com
16519
16534
  bestday.pw
16520
16535
  bestdealsdiscounts.co.in
16521
16536
  bestdentistofficenearme.com
@@ -17936,6 +17951,7 @@ birminghamalcoholrehab.com
17936
17951
  birminghamcocainerehab.com
17937
17952
  birminghamfans.com
17938
17953
  birminghamheroinrehab.com
17954
+ birminghamquote.com
17939
17955
  biro.gq
17940
17956
  biro.ml
17941
17957
  biro.tk
@@ -18133,6 +18149,7 @@ bjog.tech
18133
18149
  bjq53.space
18134
18150
  bjqjvtodz.shop
18135
18151
  bjsnc.com
18152
+ bjsy6p.com
18136
18153
  bjtpg.us
18137
18154
  bjwc.us
18138
18155
  bjxt.ml
@@ -18435,6 +18452,7 @@ blogcash.com
18435
18452
  blogcast.blog
18436
18453
  blogcast.lgbt
18437
18454
  blogcast.us
18455
+ blogchannels.com
18438
18456
  blogcollege.com
18439
18457
  blogdad.com
18440
18458
  blogdiary.live
@@ -19893,6 +19911,7 @@ brisbanephotobooth.com
19893
19911
  bristlebrush.us
19894
19912
  bristlebrushes.biz
19895
19913
  bristlebrushes.us
19914
+ bristol-drones.com
19896
19915
  britainst.com
19897
19916
  britbarnmi.ga
19898
19917
  britbarnmi.gq
@@ -20073,6 +20092,7 @@ brvbfj.shop
20073
20092
  brxqoy.cf
20074
20093
  bryanle.com
20075
20094
  bryanlgx.com
20095
+ bryanslist.com
20076
20096
  brymstonne.org
20077
20097
  brypeterson.com
20078
20098
  bryskumde.cf
@@ -20670,6 +20690,7 @@ buvertu.cf
20670
20690
  buvertu.ga
20671
20691
  buvertu.gq
20672
20692
  buvertu.ml
20693
+ buvetti.com
20673
20694
  buxap.com
20674
20695
  buxl.com
20675
20696
  buxod.com
@@ -20773,6 +20794,7 @@ buylaptopsunder300.com
20773
20794
  buylevitra-us.com
20774
20795
  buylevitra.website
20775
20796
  buylikes247.com
20797
+ buylimu.biz
20776
20798
  buylouisvuittonbagsjp.com
20777
20799
  buymethotrexate.info
20778
20800
  buymichaelkorsoutletca.ca
@@ -21406,6 +21428,7 @@ c6h12o6.gq
21406
21428
  c6h12o6.ml
21407
21429
  c6h12o6.tk
21408
21430
  c6loaadz.ru
21431
+ c70321.com
21409
21432
  c70456.com
21410
21433
  c70567.com
21411
21434
  c70654.com
@@ -22354,6 +22377,7 @@ casinobit.club
22354
22377
  casinobonusual2.com
22355
22378
  casinochan2.com
22356
22379
  casinocuan.club
22380
+ casinoelit47.com
22357
22381
  casinoeridanmark.com
22358
22382
  casinofundaily.info
22359
22383
  casinogreat.club
@@ -23614,6 +23638,7 @@ cheapukniketrainerssale.co.uk
23614
23638
  cheapuksalehandbagsoutletlv.co.uk
23615
23639
  cheapukstraightenerssale.info
23616
23640
  cheapusbspeakers.info
23641
+ cheapviagra.org
23617
23642
  cheapwebtraffic.com
23618
23643
  cheapweekendgetawaysforcouples.com
23619
23644
  cheatautomation.com
@@ -24444,6 +24469,7 @@ citymdisp.ga
24444
24469
  citymdisp.gq
24445
24470
  citymdisp.ml
24446
24471
  cityofnah.com
24472
+ cityquote.com
24447
24473
  cityroyal.org
24448
24474
  citytorate.ru
24449
24475
  citytowercasino.com
@@ -24470,6 +24496,7 @@ civilokant903.gq
24470
24496
  civilokant903.ml
24471
24497
  civilokant903.tk
24472
24498
  civilroom.com
24499
+ civilyze.com
24473
24500
  civoo.com
24474
24501
  civvic.ro
24475
24502
  civx.org
@@ -24843,6 +24870,7 @@ clickmp.pro
24843
24870
  clickmpnew.pro
24844
24871
  clicknett.com
24845
24872
  clicknowk.pro
24873
+ clickp.pro
24846
24874
  clickpet.online
24847
24875
  clickpm.pro
24848
24876
  clickpnow.pro
@@ -25619,12 +25647,14 @@ coloshild.ru
25619
25647
  coloshron.ru
25620
25648
  colosjoy.ru
25621
25649
  colossuscloud.us
25650
+ colourandcode.com
25622
25651
  colt45forsale.tk
25623
25652
  coltonattorneys.com
25624
25653
  columbuscasino.design
25625
25654
  columbuseldercare.com
25626
25655
  columbusinfo.xyz
25627
25656
  columbusnm.net
25657
+ columbusquote.com
25628
25658
  com-04536875422364784521.top
25629
25659
  com-101634586696.help
25630
25660
  com-1024493459167.online
@@ -25661,6 +25691,8 @@ com-xvrv6yt51g.com
25661
25691
  com.com
25662
25692
  com.mz
25663
25693
  com.ninja
25694
+ com.np
25695
+ com.ru
25664
25696
  com.uk
25665
25697
  com.us
25666
25698
  com3b.com
@@ -25870,6 +25902,7 @@ computerslistnews.site
25870
25902
  computersoftware2012.info
25871
25903
  computerspeakers22.com
25872
25904
  computersshop.futbol
25905
+ computingzone.org
25873
25906
  compvershy.cf
25874
25907
  compvershy.ga
25875
25908
  compvershy.gq
@@ -27158,6 +27191,7 @@ crudeoildemulsifier.com
27158
27191
  crudewag.icu
27159
27192
  cruisecentraladviser.com
27160
27193
  cruisefloppy.com
27194
+ cruisessale.com
27161
27195
  crulle.ru
27162
27196
  crumlin-grill.com
27163
27197
  crunchcompass.com
@@ -28302,6 +28336,7 @@ dalamananadolulisesi.xyz
28302
28336
  dalamanporttransfer.xyz
28303
28337
  dalamanturkishvillas.xyz
28304
28338
  dalanila.tk
28339
+ dalatrk.site
28305
28340
  dalatvirginia.com
28306
28341
  dalbam7.net
28307
28342
  daleadershipinstitute.org
@@ -28820,6 +28855,7 @@ db4t5tes4.ga
28820
28855
  db4t5tes4.gq
28821
28856
  db4t5tes4.ml
28822
28857
  db4t5tes4.tk
28858
+ dbadhe.com
28823
28859
  dbanote.net
28824
28860
  dbatalk.com
28825
28861
  dbataturkioo.com
@@ -29704,6 +29740,7 @@ designfox.org
29704
29740
  designfreebies.ru
29705
29741
  designfuture.info
29706
29742
  designingenium.com
29743
+ designingireland.com
29707
29744
  designingknights.com
29708
29745
  designland.info
29709
29746
  designmint.site
@@ -30769,6 +30806,7 @@ discardmail.com
30769
30806
  discardmail.de
30770
30807
  discardmail.ml
30771
30808
  discardmail.tk
30809
+ discdots.com
30772
30810
  discfoo.com
30773
30811
  discjumsa.tk
30774
30812
  disckracuvna.cf
@@ -36325,6 +36363,7 @@ evavbe.ml
36325
36363
  evavbe.tk
36326
36364
  evavoyance.com
36327
36365
  evbank.ru
36366
+ evbholdingsllc.com
36328
36367
  evcmail.com
36329
36368
  evcr8twoxifpaw.cf
36330
36369
  evcr8twoxifpaw.ga
@@ -36790,6 +36829,7 @@ extra-penis-enlargement.info
36790
36829
  extraaaa.tk
36791
36830
  extraaaa2.ga
36792
36831
  extraaaa2.tk
36832
+ extraale.com
36793
36833
  extraam.loan
36794
36834
  extrabooks.site
36795
36835
  extracccolorrfull.com
@@ -36822,6 +36862,7 @@ exttract.email
36822
36862
  extureme.com
36823
36863
  exwta.us
36824
36864
  exxale.shop
36865
+ exxale.space
36825
36866
  exxon-mobil.tk
36826
36867
  exxoncars.com
36827
36868
  exxx.club
@@ -40683,6 +40724,7 @@ fullen.in
40683
40724
  fullepisodesnow.com
40684
40725
  fullermail.men
40685
40726
  fullfilmizle2.com
40727
+ fullframedesign.com
40686
40728
  fullhomepacks.info
40687
40729
  fulll.stream
40688
40730
  fullmoviesonline.space
@@ -41736,6 +41778,7 @@ gdian43.com
41736
41778
  gdian49.com
41737
41779
  gdian54.com
41738
41780
  gdian57.com
41781
+ gdian63.com
41739
41782
  gdian78.com
41740
41783
  gdian84.com
41741
41784
  gdian86.com
@@ -41749,6 +41792,7 @@ gdmail.top
41749
41792
  gdmalls.com
41750
41793
  gdprcompliance.expert
41751
41794
  gdprcompliance.solutions
41795
+ gdqdaintb.ml
41752
41796
  gdqdp2.us
41753
41797
  gdqzhv.com
41754
41798
  gdradr.com
@@ -42002,6 +42046,7 @@ geokomponent.ru
42002
42046
  geolocalroadmap.com
42003
42047
  geologgdpo.space
42004
42048
  geologicpublications.net
42049
+ geologik.biz
42005
42050
  geomail.win
42006
42051
  geometricescape.com
42007
42052
  georaster.info
@@ -42044,6 +42089,7 @@ gerandos.ru
42044
42089
  gerdese.online
42045
42090
  gerdimenta.ru
42046
42091
  geremail.info
42092
+ gerenc.host
42047
42093
  gerenciagran.com
42048
42094
  gergilimembran.com
42049
42095
  gerhanajitu.net
@@ -42201,6 +42247,7 @@ getit-beauty.com
42201
42247
  getitfast.com
42202
42248
  getjar.pl
42203
42249
  getjulia.com
42250
+ getkitchen.club
42204
42251
  getkl.site
42205
42252
  getknot.app
42206
42253
  getladiescoats.com
@@ -42301,6 +42348,7 @@ getyougadgets.com
42301
42348
  getyourbook.site
42302
42349
  getyourstudy.ru
42303
42350
  getyourtantraon.com
42351
+ getzradonpros.net
42304
42352
  geuur.live
42305
42353
  gevemarket.site
42306
42354
  gewinner-pose.com
@@ -42376,6 +42424,7 @@ gg023.space
42376
42424
  gg024.space
42377
42425
  gg025.space
42378
42426
  gg18269.com
42427
+ gg2srxzj.com
42379
42428
  gg57822.com
42380
42429
  gg7665.com
42381
42430
  gg9094.com
@@ -42591,6 +42640,7 @@ gigism.com
42591
42640
  gign-40.com
42592
42641
  gigpurchase.com
42593
42642
  gihybe.us
42643
+ giize.com
42594
42644
  gikemart.site
42595
42645
  gikmail.com
42596
42646
  gilaayam.com
@@ -44481,6 +44531,7 @@ groupe-psa.cf
44481
44531
  groupe-psa.gq
44482
44532
  groupe-psa.ml
44483
44533
  groupe-psa.tk
44534
+ groupe.cd
44484
44535
  groupfunds.club
44485
44536
  groupkami.com
44486
44537
  groupmaidat.com
@@ -46521,6 +46572,7 @@ heangdilly.icu
46521
46572
  heari.net
46522
46573
  hearingaiddoctor.net
46523
46574
  hearpower.us
46575
+ heart1.ga
46524
46576
  heartandhopefund.com
46525
46577
  heartburnnomorereview.info
46526
46578
  heartfair.xyz
@@ -49833,6 +49885,7 @@ ieattach.ml
49833
49885
  iecrater.com
49834
49886
  iecusa.net
49835
49887
  iedindon.ml
49888
+ ieeeves.org
49836
49889
  iefbcieuf.cf
49837
49890
  iefbcieuf.ml
49838
49891
  iefbcieuf.tk
@@ -50293,6 +50346,7 @@ imagictech.com
50293
50346
  imaginegiants.com
50294
50347
  imagineinvestments.com
50295
50348
  imaginethelearning.com
50349
+ imagiscape.photography
50296
50350
  imagiscape.photos
50297
50351
  imagiscape.pictures
50298
50352
  imagiscape.us
@@ -50807,7 +50861,6 @@ infinityangelhealingpathways.com
50807
50861
  infinitybooksjapan.org
50808
50862
  infinityclasses.info
50809
50863
  infinityclippingpath.com
50810
- infis.net.ru
50811
50864
  infitter.ru
50812
50865
  inflammationpills.info
50813
50866
  inflatableslife.com
@@ -50903,6 +50956,7 @@ infoportalchik.ru
50903
50956
  infoprediksi4d.com
50904
50957
  infoprice.tech
50905
50958
  infoqq24jam.xyz
50959
+ inform-factory-new.info
50906
50960
  inform-mart-deal.ru
50907
50961
  inform-new-like.ru
50908
50962
  inform-store-active.ru
@@ -52671,6 +52725,7 @@ jaaj.cf
52671
52725
  jaalaa4.xyz
52672
52726
  jaanv.com
52673
52727
  jaarvandemolens.online
52728
+ jaat.live
52674
52729
  jabatankopi.com
52675
52730
  jabberflash.info
52676
52731
  jabbyhotel.online
@@ -56583,6 +56638,7 @@ kmeuktpmh.pl
56583
56638
  kmhow.com
56584
56639
  kmkl.de
56585
56640
  kmlueh.shop
56641
+ kmonger.co
56586
56642
  kmonkeyd.com
56587
56643
  kmonlinestore.co.uk
56588
56644
  kmqqu.live
@@ -57358,6 +57414,7 @@ kuatocokjaran.gq
57358
57414
  kuatocokjaran.ml
57359
57415
  kuatocokjaran.tk
57360
57416
  kuba-nedv.ru
57417
+ kubeflow.info
57361
57418
  kubqs.live
57362
57419
  kubzone.ru
57363
57420
  kuchenmobel-berlin.ovh
@@ -57835,6 +57892,7 @@ labogili.ga
57835
57892
  labontemty.com
57836
57893
  laboralistascoruna.com
57837
57894
  laboratortehnicadentara.ro
57895
+ laboratoryreport.win
57838
57896
  labored673vl.online
57839
57897
  laboriously.com
57840
57898
  laborstart.org
@@ -59007,6 +59065,7 @@ lesabahis40.com
59007
59065
  lesabahis48.com
59008
59066
  lesabahis49.com
59009
59067
  lesabahis55.com
59068
+ lesabahis90.com
59010
59069
  lesastroi.ru
59011
59070
  lesbugs.com
59012
59071
  lesfineslamesdechicoutimi.com
@@ -59590,6 +59649,7 @@ lightspeed.store
59590
59649
  lightspeedgolf.app
59591
59650
  lightswea.icu
59592
59651
  lightvid.ru
59652
+ lightvids.com
59593
59653
  lightvivo.ru
59594
59654
  lighvanrau.ga
59595
59655
  ligirls.ru
@@ -61795,7 +61855,6 @@ lyaliume.site
61795
61855
  lyamda.ru
61796
61856
  lybaba.xyz
61797
61857
  lybe.info
61798
- lyceum-life.com.ru
61799
61858
  lydia-uniform.com
61800
61859
  lydias-scrubs.com
61801
61860
  lydiascrubs.com
@@ -62021,6 +62080,7 @@ mabterssur.ml
62021
62080
  mabterssur.tk
62022
62081
  mabuklagi.ga
62023
62082
  mabulareserve.com
62083
+ mabv.club
62024
62084
  macaniuo235.cf
62025
62085
  macankumbang.com
62026
62086
  macaoguojihui.com
@@ -65451,6 +65511,7 @@ mft9864784.xyz
65451
65511
  mft9867978.xyz
65452
65512
  mft9876343.xyz
65453
65513
  mft9883173.xyz
65514
+ mft9909394.xyz
65454
65515
  mft9911897.xyz
65455
65516
  mft9920868.xyz
65456
65517
  mfuil.us
@@ -66774,6 +66835,7 @@ modetoxcenter.com
66774
66835
  modety.online
66775
66836
  modhack.net
66776
66837
  modicadacademy.com
66838
+ modikulp.com
66777
66839
  modish.net
66778
66840
  modjunkies.com
66779
66841
  modkjaj.site
@@ -67261,6 +67323,7 @@ mormoncoffee.com
67261
67323
  mornayoovm.space
67262
67324
  mornhfas.org.ua
67263
67325
  morningstarkafe.xyz
67326
+ morningstiffnesspodcast.org
67264
67327
  morningtw.com
67265
67328
  mornsoft.com
67266
67329
  morogamers.com
@@ -67624,6 +67687,7 @@ mrchinh.com
67624
67687
  mrclipper.com
67625
67688
  mrcraftyconsultant.com
67626
67689
  mrctacoma.com
67690
+ mrdeeps.ml
67627
67691
  mrdevilstore.com
67628
67692
  mrdjg.live
67629
67693
  mrdomino99.org
@@ -69311,7 +69375,6 @@ namste99.com
69311
69375
  namtinh.top
69312
69376
  namtovarovedam.ru
69313
69377
  namtruong318.com
69314
- namunathapa.com.np
69315
69378
  namuoutlets.site
69316
69379
  namushops.site
69317
69380
  namuwikiusercontent.com
@@ -70048,6 +70111,7 @@ net-piyango.biz
70048
70111
  net-privichkam.ru
70049
70112
  net-solution.info
70050
70113
  net.com
70114
+ net.ru
70051
70115
  net191.com
70052
70116
  net1mail.com
70053
70117
  net2222.com
@@ -70278,6 +70342,7 @@ new-year-lucky-gifts.monster
70278
70342
  new-year-special-gift.icu
70279
70343
  new-year-special-gift.monster
70280
70344
  new-york-wedding.com
70345
+ new-york.host
70281
70346
  new688e.ga
70282
70347
  newa.wtf
70283
70348
  newage.press
@@ -74628,6 +74693,7 @@ osfujhtwrblkigbsqeo.ml
74628
74693
  osfujhtwrblkigbsqeo.tk
74629
74694
  osg168live.asia
74630
74695
  osg168live.us
74696
+ osg777.link
74631
74697
  osgame.live
74632
74698
  osgame.online
74633
74699
  osgpoker.us
@@ -75314,6 +75380,7 @@ p6udt9.us
75314
75380
  p71ce1m.com
75315
75381
  p7665.com
75316
75382
  p7998.com
75383
+ p7n39rellip7.best
75317
75384
  p8oan2gwrpbpvbh.cf
75318
75385
  p8oan2gwrpbpvbh.ga
75319
75386
  p8oan2gwrpbpvbh.gq
@@ -77386,6 +77453,7 @@ pidcockmarketing.com
77386
77453
  pidemudanza.com
77387
77454
  pidmail.com
77388
77455
  pidoseme.online
77456
+ pidouno.com
77389
77457
  pidox.org
77390
77458
  piebombing.com
77391
77459
  piececoun.icu
@@ -77565,6 +77633,7 @@ pinsonian.org
77565
77633
  pinsup.ru
77566
77634
  pintaresfacilconsapolin.com
77567
77635
  pintasticapp.com
77636
+ pintech.ru
77568
77637
  pintechpinball.com
77569
77638
  pinterest-seo.online
77570
77639
  pinterests.pro
@@ -79033,7 +79102,6 @@ powerhousedyno.com
79033
79102
  powerin.site
79034
79103
  powerlea.xyz
79035
79104
  powerlear.xyz
79036
- powerlink.com.np
79037
79105
  powermass.site
79038
79106
  powerml.racing
79039
79107
  powerpages.website
@@ -79290,6 +79358,7 @@ preccompdes.gq
79290
79358
  preccompdes.ml
79291
79359
  precconta.cf
79292
79360
  precconta.ga
79361
+ precconta.tk
79293
79362
  precdate.cf
79294
79363
  precdate.ga
79295
79364
  precdate.gq
@@ -79560,6 +79629,7 @@ prilution.info
79560
79629
  prim1v.us
79561
79630
  primabananen.net
79562
79631
  primalburnkenburge.com
79632
+ primaryale.com
79563
79633
  primaryvideos.com
79564
79634
  primasecure.cd
79565
79635
  primate.de
@@ -81590,6 +81660,7 @@ quanaril.cf
81590
81660
  quanaril.com
81591
81661
  quanaril.ga
81592
81662
  quanaril.ml
81663
+ quandahui.com
81593
81664
  quangcaoso1.net
81594
81665
  quant-heyr.pro
81595
81666
  quant-rr.pro
@@ -82280,6 +82351,7 @@ ragzwtna4ozrbf.tk
82280
82351
  rahabionic.com
82281
82352
  rahavpn.men
82282
82353
  rahimis.com
82354
+ rahul.cyou
82283
82355
  raiasu.cf
82284
82356
  raiasu.ga
82285
82357
  raiasu.gq
@@ -86148,6 +86220,7 @@ rvb.ro
86148
86220
  rvbspending.com
86149
86221
  rvctf.com
86150
86222
  rvdogs.com
86223
+ rvemold.com
86151
86224
  rviixj.us
86152
86225
  rvjtudarhs.cf
86153
86226
  rvjtudarhs.ga
@@ -87517,6 +87590,7 @@ savethechildrenactionnetwork.com
87517
87590
  savetimeerr.fun
87518
87591
  saveuhealth.com
87519
87592
  savevid.ga
87593
+ saveyourgadget.com
87520
87594
  savingallhomes.com
87521
87595
  savingnyhomes.com
87522
87596
  savingsearcher.com
@@ -87564,6 +87638,7 @@ saymeow.de
87564
87638
  saymuscge.cf
87565
87639
  saymuscge.ga
87566
87640
  saymuscge.ml
87641
+ saynigger.com
87567
87642
  saynotospams.com
87568
87643
  sayonara.gq
87569
87644
  sayonara.ml
@@ -87777,6 +87852,7 @@ sciegenics.com
87777
87852
  science-aviation.org
87778
87853
  science-full.ru
87779
87854
  scienceacademicnews.site
87855
+ scienceauvert.org
87780
87856
  sciencelive.ru
87781
87857
  sciencepub.news
87782
87858
  sciencestill.com
@@ -87882,6 +87958,7 @@ screenvel.com
87882
87958
  screwdon.recipes
87883
87959
  screwdriveraction.com
87884
87960
  screwthe.xyz
87961
+ scribb.eu
87885
87962
  scribble.uno
87886
87963
  scribeorigins.org
87887
87964
  script.click
@@ -90074,6 +90151,7 @@ simplesport.ru
90074
90151
  simpletextmarketing.com
90075
90152
  simpleverification.com
90076
90153
  simpleverni.icu
90154
+ simplexion.pm
90077
90155
  simplictylegal.com
90078
90156
  simplus.com.br
90079
90157
  simply-email.bid
@@ -95759,6 +95837,7 @@ teamandclub.ga
95759
95837
  teambogor.online
95760
95838
  teamdigest.com
95761
95839
  teamflow.works
95840
+ teamhv.net
95762
95841
  teamjulie.com
95763
95842
  teamkg.tk
95764
95843
  teamkiller.net
@@ -95939,6 +96018,7 @@ tee800.com
95939
96018
  teebaum-oel.info
95940
96019
  teecheap.store
95941
96020
  teedinnan.com
96021
+ teeessential.com
95942
96022
  teemia.com
95943
96023
  teemo.site
95944
96024
  teemoco.shop
@@ -96488,6 +96568,7 @@ test130.com
96488
96568
  test324t6234w5y.ru
96489
96569
  testa-lot.net
96490
96570
  testadobe.ru
96571
+ testbnk.com
96491
96572
  testclean.org
96492
96573
  testclubs.com
96493
96574
  testdom34533663.host
@@ -97868,6 +97949,7 @@ thyroidsaver.org
97868
97949
  thyroidtips.info
97869
97950
  thyxwenu.shop
97870
97951
  thzhhe5l.ml
97952
+ ti-sale.online
97871
97953
  tiabami.cf
97872
97954
  tiabami.ga
97873
97955
  tiabami.gq
@@ -98136,6 +98218,7 @@ tintuceva.org
98136
98218
  tintucphunu.org
98137
98219
  tinviahe.top
98138
98220
  tinybt.com
98221
+ tinyheight.com
98139
98222
  tinymill.org
98140
98223
  tinypc.reviews
98141
98224
  tinypc.tech
@@ -101631,6 +101714,7 @@ ucq9vbhc9mhvp3bmge6.gq
101631
101714
  ucq9vbhc9mhvp3bmge6.ml
101632
101715
  ucr6pb.site
101633
101716
  ucroyal09.com
101717
+ ucsoft.biz
101634
101718
  uctqoj.us
101635
101719
  uctwh.us
101636
101720
  ucupdong.ml
@@ -104193,6 +104277,7 @@ vestgreensig.cf
104193
104277
  vestgreensig.ga
104194
104278
  vestgreensig.gq
104195
104279
  vestgreensig.tk
104280
+ vestigeschool.com
104196
104281
  vestimed.ru
104197
104282
  vestnikao.ru
104198
104283
  vestniktm.ru
@@ -104325,6 +104410,7 @@ vhntp15yadrtz0.gq
104325
104410
  vhntp15yadrtz0.ml
104326
104411
  vhntp15yadrtz0.tk
104327
104412
  vhobbi.ru
104413
+ vhoff.com
104328
104414
  vhpsc.us
104329
104415
  vhw5ie.us
104330
104416
  vhwiz8.us
@@ -104433,6 +104519,7 @@ viddly.online
104433
104519
  viddly.plus
104434
104520
  viddly.site
104435
104521
  viddsy.net
104522
+ videgertools.info
104436
104523
  video-16porno.fr
104437
104524
  video-dlj-tebya.ru
104438
104525
  video-insanity.com
@@ -104858,6 +104945,7 @@ viraginous.xyz
104858
104945
  viral-hub.xyz
104859
104946
  viral-science.fun
104860
104947
  viral-update.xyz
104948
+ viralchoose.com
104861
104949
  viralclothes.com
104862
104950
  viralhits.org
104863
104951
  virallifestyles.com
@@ -106447,6 +106535,7 @@ warnerbrobrewco.com
106447
106535
  warnerwave.xyz
106448
106536
  warning-10by25.stream
106449
106537
  warnomics.com
106538
+ waroengdo.store
106450
106539
  waronrent.org
106451
106540
  warp2p.com
106452
106541
  warqaat.com
@@ -106751,6 +106840,7 @@ wdrecipes.com
106751
106840
  wdrzw.info
106752
106841
  wdsfbghfg77hj.gq
106753
106842
  wdvhw1.site
106843
+ wdw.ru
106754
106844
  wdwot.com
106755
106845
  wdx4.com
106756
106846
  wdxgc.com
@@ -110766,6 +110856,7 @@ xn--rgfest-vxa4c.com
110766
110856
  xn--rhqt5tmrbt30afkiqpk45b.top
110767
110857
  xn--ridsp-nua.se
110768
110858
  xn--robotjurdico-zfb.com
110859
+ xn--rpple-tsa.com
110769
110860
  xn--rrmokarejnkping-8sbic.nu
110770
110861
  xn--rrmokarenorrkping-zzbm.com
110771
110862
  xn--saatbahaber-4zb11d.com
@@ -111114,6 +111205,7 @@ xtremeventure.com
111114
111205
  xtremewebtraffic.net
111115
111206
  xtrstories.com
111116
111207
  xtrstudios.com
111208
+ xtrtarget.com
111117
111209
  xtrzeer.fun
111118
111210
  xtubemate.site
111119
111211
  xtuc.com
@@ -111666,7 +111758,6 @@ yachassa09.com
111666
111758
  yachassa16.com
111667
111759
  yackir.store
111668
111760
  yacxrz.pl
111669
- yadavnaresh.com.np
111670
111761
  yadegarigift.icu
111671
111762
  yadkincounty.org
111672
111763
  yadong4.com