wmap 2.5.2 → 2.5.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -20,8 +20,6 @@ class Wmap::WpTracker
20
20
 
21
21
  attr_accessor :http_timeout, :max_parallel, :verbose, :sites_wp, :data_dir
22
22
  attr_reader :known_wp_sites
23
- # set hard stop limit of http time-out to 8 seconds, in order to avoid severe performance penalty for certain 'weird' site(s)
24
- Max_http_timeout=8000
25
23
 
26
24
  # WordPress checker instance default variables
27
25
  def initialize (params = {})
@@ -41,171 +39,139 @@ class Wmap::WpTracker
41
39
  # 'setter' to load the known wordpress sites into an instance variable
42
40
  def load_from_file (file=@file_stores, lc=true)
43
41
  puts "Loading trusted file: #{file}" if @verbose
44
- begin
45
- known_wp_sites=Hash.new
46
- f_wp_sites=File.open(file, 'r')
47
- f_wp_sites.each_line do |line|
48
- puts "Processing line: #{line}" if @verbose
49
- line=line.chomp.strip
50
- next if line.nil?
51
- next if line.empty?
52
- next if line =~ /^\s*#/
53
- line=line.downcase if lc==true
54
- entry=line.split(',')
55
- if known_wp_sites.key?(entry[0])
56
- next
57
- else
58
- if entry[1] =~ /yes/i
59
- known_wp_sites[entry[0]]=true
60
- else
61
- known_wp_sites[entry[0]]=false
62
- end
63
- end
64
-
42
+ known_wp_sites=Hash.new
43
+ f_wp_sites=File.open(file, 'r')
44
+ f_wp_sites.each_line do |line|
45
+ puts "Processing line: #{line}" if @verbose
46
+ line=line.chomp.strip
47
+ next if line.nil?
48
+ next if line.empty?
49
+ next if line =~ /^\s*#/
50
+ line=line.downcase if lc==true
51
+ entry=line.split(',')
52
+ site = entry[0].strip()
53
+ if known_wp_sites.key?(site)
54
+ next
55
+ else
56
+ known_wp_sites[site] = Hash.new
57
+ known_wp_sites[site]['site'] = site
58
+ known_wp_sites[site]['version'] = entry[1].strip()
59
+ known_wp_sites[site]['redirection'] = entry[2].strip()
65
60
  end
66
- f_wp_sites.close
67
- return known_wp_sites
68
- rescue => ee
69
- puts "Exception on method #{__method__}: #{ee}" if @verbose
70
- return nil
61
+
71
62
  end
63
+ f_wp_sites.close
64
+ return known_wp_sites
65
+ rescue => ee
66
+ puts "Exception on method #{__method__}: #{ee}" if @verbose
67
+ return Hash.new
72
68
  end
73
69
 
74
70
  # Save the current hash table into a file
75
71
  def save_to_file!(file_wps=@file_wps, wps=@known_wp_sites)
76
72
  puts "Saving the current wordpress site table from memory to file: #{file_wps} ..." if @verbose
77
- begin
78
- timestamp=Time.now
79
- f=File.open(file_wps, 'w')
80
- f.write "# Local wps file created by class #{self.class} method #{__method__} at: #{timestamp}\n"
81
- f.write "# domain name, free zone transfer detected?\n"
82
- wps.keys.sort.map do |key|
83
- if wps[key]
84
- f.write "#{key}, yes\n"
85
- else
86
- f.write "#{key}, no\n"
87
- end
88
- end
89
- f.close
90
- puts "WordPress site cache table is successfully saved: #{file_wps}"
91
- rescue => ee
92
- puts "Exception on method #{__method__}: #{ee}" if @verbose
73
+ timestamp=Time.now
74
+ f=File.open(file_wps, 'w')
75
+ f.write "# Local wps file created by class #{self.class} method #{__method__} at: #{timestamp}\n"
76
+ f.write "# WP Site URL, WP Version, Redirection \n"
77
+ wps.keys.sort.map do |key|
78
+ f.write "#{key}, #{wps[key]['version']}, #{wps[key]['redirection']}\n"
93
79
  end
80
+ f.close
81
+ puts "WordPress site cache table is successfully saved: #{file_wps}"
82
+ rescue => ee
83
+ puts "Exception on method #{__method__}: #{ee}" if @verbose
94
84
  end
95
85
  alias_method :save!, :save_to_file!
96
86
 
97
87
  # 'setter' to add wordpress entry to the cache one at a time
98
88
  def add(url, use_cache=true)
99
- begin
100
- puts "Add entry to the local cache table: #{url}" if @verbose
101
- site=url_2_site(url)
102
- if use_cache && @known_wp_sites.key?(site)
103
- puts "Site is already exist. Skipping: #{site}"
104
- else
105
- record=Hash.new
106
- if is_wp?(site)
107
- record[site]=true
108
- else
109
- record[site]=false
110
- end
89
+ puts "Add entry to the local cache table: #{url}" if @verbose
90
+ site=url_2_site(url)
91
+ if use_cache && @known_wp_sites.key?(site)
92
+ puts "Site is already exist. Skipping: #{site}"
93
+ else
94
+ record=Hash.new
95
+ redirection = landing_location(site)
96
+ if is_wp?(redirection)
97
+ version = wp_ver(site)
98
+ record['site'] = site
99
+ record['version'] = version
100
+ record['redirection'] = redirection
101
+ @known_wp_sites[site]=record
111
102
  puts "Entry loaded: #{record}"
112
103
  end
113
- @known_wp_sites.merge!(record)
114
- return record
115
- rescue => ee
116
- puts "Exception on method #{__method__}: #{ee}: #{url}" if @verbose
117
104
  end
105
+ return record
106
+ rescue => ee
107
+ puts "Exception on method #{__method__}: #{ee}: #{url}" if @verbose
118
108
  end
119
109
 
120
110
  # logic to determin if it's a wordpress site
121
111
  def is_wp?(url)
122
- #begin
123
- site=url_2_site(url)
124
- if wp_readme?(site)
125
- found=true
126
- elsif wp_css?(site)
127
- found=true
128
- elsif wp_meta?(site)
129
- found=true
130
- elsif wp_login?(site)
131
- found=true
132
- elsif wp_rpc?(site)
133
- found=true
134
- else
135
- found=false
136
- end
137
- return found
138
- #rescue => ee
139
- # puts "Exception on method #{__method__}: #{ee}: #{url}" if @verbose
140
- #end
112
+ site=url_2_site(url)
113
+ if wp_readme?(site)
114
+ found=true
115
+ elsif wp_css?(site)
116
+ found=true
117
+ elsif wp_meta?(site)
118
+ found=true
119
+ elsif wp_login?(site)
120
+ found=true
121
+ elsif wp_rpc?(site)
122
+ found=true
123
+ else
124
+ found=false
125
+ end
126
+ return found
127
+ rescue => ee
128
+ puts "Exception on method #{__method__}: #{ee}: #{url}" if @verbose
141
129
  end
142
130
 
143
- # add wordpress site entries (from a sitetracker list)
144
- def refresh (num=@max_parallel,use_cache=true)
145
- #begin
146
- puts "Add entries to the local cache table from site tracker: " if @verbose
147
- results=Hash.new
148
- wps=Wmap::SiteTracker.instance.known_sites.keys
149
- if wps.size > 0
150
- Parallel.map(wps, :in_processes => num) { |target|
151
- add(target,use_cache)
152
- }.each do |process|
153
- if process.nil?
154
- next
155
- elsif process.empty?
156
- #do nothing
157
- else
158
- results.merge!(process)
159
- end
131
+ # Refresh one site entry then update the instance variable (cache)
132
+ def refresh (target,use_cache=false)
133
+ return add(target,use_cache)
134
+ end
135
+
136
+ # Refresh wordpress site entries within the sitetracker list
137
+ def refreshs (num=@max_parallel,use_cache=false)
138
+ puts "Add entries to the local cache table from site tracker: " if @verbose
139
+ results=Hash.new
140
+ wps=Wmap::SiteTracker.instance.known_sites.keys
141
+ if wps.size > 0
142
+ Parallel.map(wps, :in_processes => num) { |target|
143
+ refresh(target,use_cache)
144
+ }.each do |process|
145
+ if process.nil?
146
+ next
147
+ elsif process.empty?
148
+ #do nothing
149
+ else
150
+ site = process['site']
151
+ results[site] = process
160
152
  end
161
- @known_wp_sites.merge!(results)
162
- puts "Done loading entries."
163
- return results
164
- else
165
- puts "Error: no entry is loaded. Please check your list and try again."
166
153
  end
154
+ @known_wp_sites.merge!(results)
155
+ puts "Done loading entries."
167
156
  return results
168
- #rescue => ee
169
- # puts "Exception on method #{__method__}: #{ee}" if @verbose
170
- #end
171
- end
172
-
173
- # Wrapper to use OpenURI method 'read' to return url body contents
174
- def read_url(url)
175
- begin
176
- puts "Wrapper to return the OpenURI object for url: #{url}" if @verbose
177
- url_object=open_url(url)
178
- html_body=url_object.read
179
- doc = Nokogiri::HTML(html_body)
180
- return doc
181
- rescue => ee
182
- puts "Exception on method #{__method__}: #{ee}" if @verbose
183
- return nil
184
- end
185
- end
186
-
187
- # Wrapper for the OpenURI open method - create an open_uri object and return the reference upon success
188
- def open_url(url)
189
- #url_object = nil
190
- puts "Open url #{url} by creating an open_uri object. Return the reference upon success." if @verbose
191
- if url =~ /http\:/i
192
- # patch for allow the 'un-safe' URL redirection i.e. https://www.example.com -> http://www.example.com
193
- url_object = open(url, :allow_redirections=>:safe, :read_timeout=>Max_http_timeout/1000)
194
- elsif url =~ /https\:/i
195
- url_object = open(url,:ssl_verify_mode => 0, :allow_redirections =>:safe, :read_timeout=>Max_http_timeout/1000)
196
157
  else
197
- raise "Invalid URL format - please specify the protocol prefix http(s) in the URL: #{url}"
158
+ puts "Error: no entry is loaded. Please check your list and try again."
198
159
  end
199
- return url_object
200
- end
160
+ wps=nil
161
+ return results
162
+ rescue => ee
163
+ puts "Exception on method #{__method__}: #{ee}" if @verbose
164
+ return Hash.new
165
+ end
201
166
 
202
167
  # Wordpress detection checkpoint - readme.html
203
- def wp_readme?(site)
168
+ def wp_readme?(url)
169
+ site = url_2_site(url)
204
170
  readme_url=site + "readme.html"
205
171
  k=Wmap::UrlChecker.new
206
172
  if k.response_code(readme_url) == 200
207
173
  k=nil
208
- doc=read_url(readme_url)
174
+ doc=open_page(readme_url)
209
175
  title=doc.css('title')
210
176
  if title.to_s =~ /wordpress/i
211
177
  return true
@@ -216,11 +182,15 @@ class Wmap::WpTracker
216
182
  k=nil
217
183
  return false
218
184
  end
185
+ rescue => ee
186
+ puts "Exception on method #{__method__} for site #{url}: #{ee}" if @verbose
187
+ return false
219
188
  end
220
189
 
221
190
  # Wordpress detection checkpoint - install.css
222
- def wp_css?(site)
223
- css_url=site + "wp-admin/css/install.css"
191
+ def wp_css?(url)
192
+ site = url_2_site(url)
193
+ css_url = site + "wp-admin/css/install.css"
224
194
  k=Wmap::UrlChecker.new
225
195
  if k.response_code(css_url) == 200
226
196
  k=nil
@@ -237,6 +207,9 @@ class Wmap::WpTracker
237
207
  return false
238
208
  end
239
209
  return false
210
+ rescue => ee
211
+ puts "Exception on method #{__method__} for site #{url}: #{ee}" if @verbose
212
+ return false
240
213
  end
241
214
 
242
215
  # Wordpress detection checkpoint - meta generator
@@ -245,7 +218,7 @@ class Wmap::WpTracker
245
218
  k=Wmap::UrlChecker.new
246
219
  if k.response_code(site) == 200
247
220
  k=nil
248
- doc=read_url(site)
221
+ doc=open_page(site)
249
222
  meta=doc.css('meta')
250
223
  if meta.to_s =~ /wordpress/i
251
224
  return true
@@ -254,6 +227,9 @@ class Wmap::WpTracker
254
227
  end
255
228
  end
256
229
  return false
230
+ rescue => ee
231
+ puts "Exception on method #{__method__} for url #{url}: #{ee}" if @verbose
232
+ return false
257
233
  end
258
234
 
259
235
  # Wordpress detection checkpoint - wp-login
@@ -263,7 +239,7 @@ class Wmap::WpTracker
263
239
  k=Wmap::UrlChecker.new
264
240
  if k.response_code(login_url) == 200
265
241
  k=nil
266
- doc=read_url(login_url)
242
+ doc=open_page(login_url)
267
243
  links=doc.css('link')
268
244
  if links.to_s =~ /login.min.css/i
269
245
  return true
@@ -272,6 +248,9 @@ class Wmap::WpTracker
272
248
  end
273
249
  end
274
250
  return false
251
+ rescue => ee
252
+ puts "Exception on method #{__method__} for url #{url}: #{ee}" if @verbose
253
+ return false
275
254
  end
276
255
 
277
256
  # Wordpress detection checkpoint - xml-rpc
@@ -285,6 +264,9 @@ class Wmap::WpTracker
285
264
  return true
286
265
  end
287
266
  return false
267
+ rescue => ee
268
+ puts "Exception on method #{__method__} for url #{url}: #{ee}" if @verbose
269
+ return false
288
270
  end
289
271
 
290
272
  # Extract the WordPress version
@@ -302,6 +284,9 @@ class Wmap::WpTracker
302
284
  else
303
285
  return nil
304
286
  end
287
+ rescue => ee
288
+ puts "Exception on method #{__method__} for url #{url}: #{ee}" if @verbose
289
+ return nil
305
290
  end
306
291
 
307
292
  # Identify wordpress version through the login page
@@ -312,7 +297,7 @@ class Wmap::WpTracker
312
297
  k=Wmap::UrlChecker.new
313
298
  #puts "Res code: #{k.response_code(login_url)}" if @verbose
314
299
  if k.response_code(login_url) == 200
315
- doc=read_url(login_url)
300
+ doc=open_page(login_url)
316
301
  #puts doc.inspect
317
302
  links=doc.css('link')
318
303
  #puts links.inspect if @verbose
@@ -326,6 +311,9 @@ class Wmap::WpTracker
326
311
  end
327
312
  k=nil
328
313
  return nil
314
+ rescue => ee
315
+ puts "Exception on method #{__method__} for url #{url}: #{ee}" if @verbose
316
+ return nil
329
317
  end
330
318
 
331
319
  # Identify wordpress version through the meta link
@@ -333,7 +321,7 @@ class Wmap::WpTracker
333
321
  site=url_2_site(url)
334
322
  k=Wmap::UrlChecker.new
335
323
  if k.response_code(site) == 200
336
- doc=read_url(site)
324
+ doc=open_page(site)
337
325
  #puts doc.inspect
338
326
  meta=doc.css('meta')
339
327
  #puts meta.inspect
@@ -347,6 +335,9 @@ class Wmap::WpTracker
347
335
  end
348
336
  k=nil
349
337
  return nil
338
+ rescue => ee
339
+ puts "Exception on method #{__method__} for url #{url}: #{ee}" if @verbose
340
+ return nil
350
341
  end
351
342
 
352
343
  # Wordpress version detection via - readme.html
@@ -357,7 +348,7 @@ class Wmap::WpTracker
357
348
  puts "Res code: #{k.response_code(readme_url)}" if @verbose
358
349
  if k.response_code(readme_url) == 200
359
350
  k=nil
360
- doc=read_url(readme_url)
351
+ doc=open_page(readme_url)
361
352
  puts doc if @verbose
362
353
  logo=doc.css('h1#logo')[0]
363
354
  puts logo.inspect if @verbose
@@ -365,6 +356,9 @@ class Wmap::WpTracker
365
356
  end
366
357
  k=nil
367
358
  return nil
359
+ rescue => ee
360
+ puts "Exception on method #{__method__} for url #{url}: #{ee}" if @verbose
361
+ return nil
368
362
  end
369
363
 
370
364
 
data/logs/wmap.log CHANGED
@@ -1,1553 +1,16 @@
1
- 2018-11-05 11:22:30 -0500: wmap: Execute the command: wmap daniellesteel.com
2
- 2018-11-05 11:27:07 -0500: trust: Execute the command: trust /tmp/domains
3
- 2018-11-05 12:41:32 -0500: trust: Execute the command: trust /tmp/domains
4
- 2018-11-05 12:44:39 -0500: wmap: Execute the command: wmap /tmp/domains
5
- 2018-11-05 13:55:09 -0500: wmap: Execute the command: wmap watchmedisappear.com
6
- 2018-11-05 13:57:33 -0500: wmap: Execute the command: wmap /tmp/test
7
- 2018-11-05 14:14:16 -0500: wmap: Execute the command: wmap -h
8
- 2018-11-05 15:22:53 -0500: updateAll: Execute the command: updateAll
9
- 2018-11-05 15:23:51 -0500: updateAll: Execute the command: updateAll
10
- 2018-11-05 15:41:29 -0500: wmap: Execute the command: wmap 12-21book.com
11
- 2018-11-05 15:41:49 -0500: wmap: Execute the command: wmap 1968thebook.com
12
- 2018-11-05 15:42:22 -0500: wmap: Execute the command: wmap 20by20contest.com
13
- 2018-11-05 15:43:13 -0500: wmap: Execute the command: wmap 20by20essays.com
14
- 2018-11-05 15:44:14 -0500: wmap: Execute the command: wmap 20essays.com
15
- 2018-11-05 15:45:26 -0500: wmap: Execute the command: wmap 20sgirl.com
16
- 2018-11-05 15:45:55 -0500: wmap: Execute the command: wmap 20sgirlprize.com
17
- 2018-11-05 15:46:47 -0500: wmap: Execute the command: wmap 42words.com
18
- 2018-11-05 15:58:39 -0500: wmap: Execute the command: wmap 77shadowstreet.com
19
- 2018-11-05 15:59:35 -0500: wmap: Execute the command: wmap abiglittlelife.com
20
- 2018-11-05 15:59:55 -0500: wmap: Execute the command: wmap aegoliusclub.com
21
- 2018-11-05 16:00:15 -0500: wmap: Execute the command: wmap alexandrialink.com
22
- 2018-11-05 16:01:12 -0500: wmap: Execute the command: wmap aliceihavebeen.com
23
- 2018-11-05 16:02:03 -0500: wmap: Execute the command: wmap americancrimespree.com
24
- 2018-11-05 16:02:22 -0500: wmap: Execute the command: wmap americanempire.net
25
- 2018-11-05 16:03:06 -0500: wmap: Execute the command: wmap americanmadebook.com
26
- 2018-11-05 16:03:53 -0500: wmap: Execute the command: wmap americanwidowbook.com
27
- 2018-11-05 16:04:49 -0500: wmap: Execute the command: wmap andsonsbook.com
28
- 2018-11-05 16:05:45 -0500: wmap: Execute the command: wmap annahopebooks.com
29
- 2018-11-05 16:06:06 -0500: wmap: Execute the command: wmap arishavit.com
30
- 2018-11-05 16:06:25 -0500: wmap: Execute the command: wmap armageddonschildren.com
31
- 2018-11-05 16:07:13 -0500: wmap: Execute the command: wmap artiestoofat.com
32
- 2018-11-05 16:08:17 -0500: wmap: Execute the command: wmap artietoofat.com
33
- 2018-11-05 16:08:37 -0500: wmap: Execute the command: wmap artofbeingbook.com
34
- 2018-11-05 16:22:24 -0500: wmap: Execute the command: wmap ashleybell.info
35
- 2018-11-05 16:23:53 -0500: wmap: Execute the command: wmap ashleybell.net
36
- 2018-11-05 16:26:37 -0500: wmap: Execute the command: wmap athreadofgrace.com
37
- 2018-11-05 16:27:28 -0500: wmap: Execute the command: wmap atrandom.com
38
- 2018-11-05 16:28:20 -0500: wmap: Execute the command: wmap atrandombooks.com
39
- 2018-11-05 16:29:13 -0500: wmap: Execute the command: wmap auel.com
40
- 2018-11-05 16:29:26 -0500: wmap: Execute the command: wmap authorjeffsoloway.com
41
- 2018-11-05 16:37:03 -0500: wmap: Execute the command: wmap authorphonechat.com
42
- 2018-11-05 18:43:03 -0500: wmap: Execute the command: wmap 12-21book.com
43
- 2018-11-05 18:43:25 -0500: wmap: Execute the command: wmap 1968thebook.com
44
- 2018-11-05 18:43:46 -0500: wmap: Execute the command: wmap 20by20contest.com
45
- 2018-11-05 18:44:03 -0500: wmap: Execute the command: wmap 20by20essays.com
46
- 2018-11-05 18:44:25 -0500: wmap: Execute the command: wmap 20essays.com
47
- 2018-11-05 18:44:41 -0500: wmap: Execute the command: wmap 20sgirl.com
48
- 2018-11-05 18:45:03 -0500: wmap: Execute the command: wmap 20sgirlprize.com
49
- 2018-11-05 18:45:19 -0500: wmap: Execute the command: wmap 42words.com
50
- 2018-11-05 18:45:41 -0500: wmap: Execute the command: wmap 77shadowstreet.com
51
- 2018-11-05 18:45:53 -0500: wmap: Execute the command: wmap abiglittlelife.com
52
- 2018-11-05 18:46:39 -0500: wmap: Execute the command: wmap aegoliusclub.com
53
- 2018-11-05 18:47:01 -0500: wmap: Execute the command: wmap alexandrialink.com
54
- 2018-11-05 18:47:22 -0500: wmap: Execute the command: wmap aliceihavebeen.com
55
- 2018-11-05 18:47:44 -0500: wmap: Execute the command: wmap americancrimespree.com
56
- 2018-11-05 18:48:01 -0500: wmap: Execute the command: wmap americanempire.net
57
- 2018-11-05 18:48:22 -0500: wmap: Execute the command: wmap americanmadebook.com
58
- 2018-11-05 18:48:44 -0500: wmap: Execute the command: wmap americanwidowbook.com
59
- 2018-11-05 18:49:00 -0500: wmap: Execute the command: wmap andsonsbook.com
60
- 2018-11-05 18:49:22 -0500: wmap: Execute the command: wmap annahopebooks.com
61
- 2018-11-05 18:49:43 -0500: wmap: Execute the command: wmap arishavit.com
62
- 2018-11-05 18:50:05 -0500: wmap: Execute the command: wmap armageddonschildren.com
63
- 2018-11-05 18:50:22 -0500: wmap: Execute the command: wmap artiestoofat.com
64
- 2018-11-05 18:50:43 -0500: wmap: Execute the command: wmap artietoofat.com
65
- 2018-11-05 18:51:05 -0500: wmap: Execute the command: wmap artofbeingbook.com
66
- 2018-11-05 18:51:26 -0500: wmap: Execute the command: wmap ashleybell.info
67
- 2018-11-05 18:51:43 -0500: wmap: Execute the command: wmap ashleybell.net
68
- 2018-11-05 18:52:04 -0500: wmap: Execute the command: wmap athreadofgrace.com
69
- 2018-11-05 18:52:26 -0500: wmap: Execute the command: wmap atrandom.com
70
- 2018-11-05 18:52:48 -0500: wmap: Execute the command: wmap atrandombooks.com
71
- 2018-11-05 18:53:09 -0500: wmap: Execute the command: wmap auel.com
72
- 2018-11-05 18:53:31 -0500: wmap: Execute the command: wmap authorjeffsoloway.com
73
- 2018-11-05 18:53:47 -0500: wmap: Execute the command: wmap authorphonechat.com
74
- 2018-11-05 18:54:09 -0500: wmap: Execute the command: wmap babylonrisingbook.com
75
- 2018-11-05 18:54:26 -0500: wmap: Execute the command: wmap babylonrisingseries.com
76
- 2018-11-05 18:55:07 -0500: wmap: Execute the command: wmap babywhisperersecrets.com
77
- 2018-11-05 18:55:39 -0500: wmap: Execute the command: wmap bakingcakesoffer.com
78
- 2018-11-05 18:56:25 -0500: wmap: Execute the command: wmap ballantine.biz
79
- 2018-11-05 18:56:47 -0500: wmap: Execute the command: wmap ballantinebook.com
80
- 2018-11-05 18:57:04 -0500: wmap: Execute the command: wmap ballantinebooks.biz
81
- 2018-11-05 18:57:25 -0500: wmap: Execute the command: wmap ballantinebooks.com
82
- 2018-11-05 18:57:42 -0500: wmap: Execute the command: wmap ballantinereaderscircle.com
83
- 2018-11-05 18:58:23 -0500: wmap: Execute the command: wmap ballantinereadingguides.com
84
- 2018-11-05 18:58:45 -0500: wmap: Execute the command: wmap bangforyourbook.com
85
- 2018-11-05 18:59:07 -0500: wmap: Execute the command: wmap bantam.com
86
- 2018-11-05 18:59:28 -0500: wmap: Execute the command: wmap bantambooks.biz
87
- 2018-11-05 18:59:50 -0500: wmap: Execute the command: wmap bantamclassic.com
88
- 2018-11-05 19:00:06 -0500: wmap: Execute the command: wmap bantamclassics.com
89
- 2018-11-05 19:00:28 -0500: wmap: Execute the command: wmap bantamdell.com
90
- 2018-11-05 19:00:44 -0500: wmap: Execute the command: wmap bantamdellarc.com
91
- 2018-11-05 19:01:26 -0500: wmap: Execute the command: wmap bantamdellpodcast.com
92
- 2018-11-05 19:01:58 -0500: wmap: Execute the command: wmap bantamdellstories.com
93
- 2018-11-05 19:02:44 -0500: wmap: Execute the command: wmap bantamdellsubrights.com
94
- 2018-11-05 19:03:06 -0500: wmap: Execute the command: wmap bantamdiscovery.com
95
- 2018-11-05 19:03:22 -0500: wmap: Execute the command: wmap bantamdiscoverybooks.com
96
- 2018-11-05 19:03:44 -0500: wmap: Execute the command: wmap bantamshakespeare.com
97
- 2018-11-05 19:04:00 -0500: wmap: Execute the command: wmap bantamspectra.net
98
- 2018-11-05 19:04:42 -0500: wmap: Execute the command: wmap bdbooksellercafe.com
99
- 2018-11-05 19:05:14 -0500: wmap: Execute the command: wmap beautyandthebookshow.com
100
- 2018-11-05 19:06:00 -0500: wmap: Execute the command: wmap becomingmarie.com
101
- 2018-11-05 19:06:22 -0500: wmap: Execute the command: wmap behindthebeautifulforevers.com
102
- 2018-11-05 19:06:38 -0500: wmap: Execute the command: wmap belvaplain.com
103
- 2018-11-05 19:07:00 -0500: wmap: Execute the command: wmap benop.life
104
- 2018-11-05 19:07:21 -0500: wmap: Execute the command: wmap bestfirstsentence.com
105
- 2018-11-05 19:07:43 -0500: wmap: Execute the command: wmap bewarethevastmachine.com
106
- 2018-11-05 19:08:05 -0500: wmap: Execute the command: wmap blackbook35.com
107
- 2018-11-05 19:08:21 -0500: wmap: Execute the command: wmap blackmirrorbooks.com
108
- 2018-11-05 19:09:03 -0500: wmap: Execute the command: wmap blackswanthebook.com
109
- 2018-11-05 19:09:34 -0500: wmap: Execute the command: wmap blackswantheory.com
110
- 2018-11-05 19:10:21 -0500: wmap: Execute the command: wmap bloodandice.com
111
- 2018-11-05 19:10:42 -0500: wmap: Execute the command: wmap bonappetitbooks.com
112
- 2018-11-05 19:10:59 -0500: wmap: Execute the command: wmap boneclocks.com
113
- 2018-11-05 19:11:21 -0500: wmap: Execute the command: wmap bookclubbookfair.com
114
- 2018-11-05 19:11:37 -0500: wmap: Execute the command: wmap bookclubfest.com
115
- 2018-11-05 19:12:19 -0500: wmap: Execute the command: wmap bookedforbreakfast.com
116
- 2018-11-05 19:12:50 -0500: wmap: Execute the command: wmap booksoftortall.com
117
- 2018-11-05 19:13:12 -0500: wmap: Execute the command: wmap booksus.com
118
- 2018-11-05 19:13:33 -0500: wmap: Execute the command: wmap boom-brokaw.com
119
- 2018-11-05 19:13:55 -0500: wmap: Execute the command: wmap boris-akunin.com
120
- 2018-11-05 19:14:17 -0500: wmap: Execute the command: wmap boydvartybooks.com
121
- 2018-11-05 19:14:33 -0500: wmap: Execute the command: wmap brc-phonechats.com
122
- 2018-11-05 19:15:15 -0500: wmap: Execute the command: wmap brcforbooksellers.com
123
- 2018-11-05 19:15:46 -0500: wmap: Execute the command: wmap brcphonechat.com
124
- 2018-11-05 19:16:08 -0500: wmap: Execute the command: wmap brcphonechats.com
125
- 2018-11-05 19:16:29 -0500: wmap: Execute the command: wmap breaking-and-entering.com
126
- 2018-11-05 19:16:41 -0500: wmap: Execute the command: wmap brightsideofdisaster.com
127
- 2018-11-05 19:17:02 -0500: wmap: Execute the command: wmap britneybooks.com
128
- 2018-11-05 19:17:19 -0500: wmap: Execute the command: wmap britneysbook.com
129
- 2018-11-05 19:17:41 -0500: wmap: Execute the command: wmap britneyspearsbook.com
130
- 2018-11-05 19:18:02 -0500: wmap: Execute the command: wmap brockmannrebate.com
131
- 2018-11-05 19:18:24 -0500: wmap: Execute the command: wmap brooklyn-dodgers-book.com
132
- 2018-11-05 19:18:40 -0500: wmap: Execute the command: wmap brooklyndodgers-book.com
133
- 2018-11-05 19:19:02 -0500: wmap: Execute the command: wmap bryanstevensonbooks.com
134
- 2018-11-05 19:19:23 -0500: wmap: Execute the command: wmap bsireporting.com
135
- 2018-11-05 19:19:40 -0500: wmap: Execute the command: wmap bushrhyme.com
136
- 2018-11-05 19:20:02 -0500: wmap: Execute the command: wmap buyinginbook.com
137
- 2018-11-05 19:20:18 -0500: wmap: Execute the command: wmap cathedralofthewild.com
138
- 2018-11-05 19:20:40 -0500: wmap: Execute the command: wmap charlemagnepursuit.com
139
- 2018-11-05 19:20:56 -0500: wmap: Execute the command: wmap chatwithlisasee.com
140
- 2018-11-05 19:21:18 -0500: wmap: Execute the command: wmap cityofmirrorsbook.com
141
- 2018-11-05 19:21:39 -0500: wmap: Execute the command: wmap cliopuddinrecipe.com
142
- 2018-11-05 19:22:01 -0500: wmap: Execute the command: wmap colleenpatrickyoudream.com
143
- 2018-11-05 19:22:23 -0500: wmap: Execute the command: wmap confessionsofadognapper.com
144
- 2018-11-05 19:22:39 -0500: wmap: Execute the command: wmap conspiracyfools.com
145
- 2018-11-05 19:23:21 -0500: wmap: Execute the command: wmap conspiracyoffools-book.com
146
- 2018-11-05 19:23:52 -0500: wmap: Execute the command: wmap conspiracyoffools.com
147
- 2018-11-05 19:24:39 -0500: wmap: Execute the command: wmap conspiracyoffoolsbook.com
148
- 2018-11-05 19:25:01 -0500: wmap: Execute the command: wmap conspiracythriller.com
149
- 2018-11-05 19:25:22 -0500: wmap: Execute the command: wmap conviction-book.com
150
- 2018-11-05 19:25:44 -0500: wmap: Execute the command: wmap creativityincbook.com
151
- 2018-11-05 19:26:05 -0500: wmap: Execute the command: wmap crescentbooks.com
152
- 2018-11-05 19:26:27 -0500: wmap: Execute the command: wmap crimeofprivilege.com
153
- 2018-11-05 19:26:48 -0500: wmap: Execute the command: wmap crossexaminationbooks.com
154
- 2018-11-05 19:27:05 -0500: wmap: Execute the command: wmap crunchycon.net
155
- 2018-11-05 19:27:26 -0500: wmap: Execute the command: wmap crystalskullbook.com
156
- 2018-11-05 19:27:48 -0500: wmap: Execute the command: wmap cubiclesurvivalguide.com
157
- 2018-11-05 19:28:10 -0500: wmap: Execute the command: wmap cultural-creatives.com
158
- 2018-11-05 19:28:26 -0500: wmap: Execute the command: wmap curtisandjane.com
159
- 2018-11-05 19:28:48 -0500: wmap: Execute the command: wmap curtisandjane.net
160
- 2018-11-05 19:29:04 -0500: wmap: Execute the command: wmap curtisandjane.org
161
- 2018-11-05 19:29:46 -0500: wmap: Execute the command: wmap daisyjonesandthesix.com
162
- 2018-11-05 19:30:17 -0500: wmap: Execute the command: wmap dakotameyerbooks.com
163
- 2018-11-05 19:31:04 -0500: wmap: Execute the command: wmap danielle-steel.com
164
- 2018-11-05 19:31:26 -0500: wmap: Execute the command: wmap daniellesteel.com
165
- 2018-11-05 19:31:42 -0500: wmap: Execute the command: wmap danyadunbar.com
166
- 2018-11-05 19:32:24 -0500: wmap: Execute the command: wmap darkfeverpodcast.com
167
- 2018-11-05 19:32:55 -0500: wmap: Execute the command: wmap darthwho.com
168
- 2018-11-05 19:33:42 -0500: wmap: Execute the command: wmap davidgilbertbooks.com
169
- 2018-11-05 19:34:03 -0500: wmap: Execute the command: wmap davidmitchellbooks.com
170
- 2018-11-05 19:34:20 -0500: wmap: Execute the command: wmap deadendrebate.com
171
- 2018-11-05 19:34:42 -0500: wmap: Execute the command: wmap deathtroopers.com
172
- 2018-11-05 19:34:58 -0500: wmap: Execute the command: wmap deathtrooperstrailercontest.com
173
- 2018-11-05 19:35:40 -0500: wmap: Execute the command: wmap dellbooks.com
174
- 2018-11-05 19:36:11 -0500: wmap: Execute the command: wmap dellpublishing.biz
175
- 2018-11-05 19:36:58 -0500: wmap: Execute the command: wmap delrey.xxx
176
- 2018-11-05 19:37:19 -0500: wmap: Execute the command: wmap delreybooks.com
177
- 2018-11-05 19:37:36 -0500: wmap: Execute the command: wmap delreycomics.com
178
- 2018-11-05 19:37:58 -0500: wmap: Execute the command: wmap delreycomics.info
179
- 2018-11-05 19:38:14 -0500: wmap: Execute the command: wmap delreycomics.net
180
- 2018-11-05 19:38:56 -0500: wmap: Execute the command: wmap delreycomics.org
181
- 2018-11-05 19:39:27 -0500: wmap: Execute the command: wmap delreydigital.com
182
- 2018-11-05 19:40:14 -0500: wmap: Execute the command: wmap delreymanga.com
183
- 2018-11-05 19:40:35 -0500: wmap: Execute the command: wmap deltabooks.com
184
- 2018-11-05 19:40:52 -0500: wmap: Execute the command: wmap depositorybankofzurich.com
185
- 2018-11-05 19:41:14 -0500: wmap: Execute the command: wmap deviousbookforcats.com
186
- 2018-11-05 19:41:30 -0500: wmap: Execute the command: wmap dialpress.com
187
- 2018-11-05 19:41:52 -0500: wmap: Execute the command: wmap dianestingley.com
188
- 2018-11-05 19:42:08 -0500: wmap: Execute the command: wmap dinnerchallenge.com
189
- 2018-11-05 19:42:50 -0500: wmap: Execute the command: wmap doatg.com
190
- 2018-11-05 19:43:11 -0500: wmap: Execute the command: wmap donnakaranbook.com
191
- 2018-11-05 19:43:33 -0500: wmap: Execute the command: wmap doubleknightbooks.com
192
- 2018-11-05 19:43:55 -0500: wmap: Execute the command: wmap dpolicebook.com
193
- 2018-11-05 19:44:11 -0500: wmap: Execute the command: wmap dreameaters.com
194
- 2018-11-05 19:44:33 -0500: wmap: Execute the command: wmap droppedmylastegg.com
195
- 2018-11-05 19:44:49 -0500: wmap: Execute the command: wmap dublin-book.com
196
- 2018-11-05 19:45:31 -0500: wmap: Execute the command: wmap earthschildren.com
197
- 2018-11-05 19:46:02 -0500: wmap: Execute the command: wmap earthschildren.net
198
- 2018-11-05 19:46:49 -0500: wmap: Execute the command: wmap eatit2beatit.com
199
- 2018-11-05 19:47:11 -0500: wmap: Execute the command: wmap ebadi-ecard.com
200
- 2018-11-05 19:47:27 -0500: wmap: Execute the command: wmap edcatmull.com
201
- 2018-11-05 19:47:49 -0500: wmap: Execute the command: wmap eddiehaungbooks.com
202
- 2018-11-05 19:48:05 -0500: wmap: Execute the command: wmap eddiewritesbooks.com
203
- 2018-11-05 19:48:47 -0500: wmap: Execute the command: wmap educatedbook.com
204
- 2018-11-05 19:49:18 -0500: wmap: Execute the command: wmap egoandhubris.com
205
- 2018-11-05 19:50:05 -0500: wmap: Execute the command: wmap elizabethstrout.com
206
- 2018-11-05 19:50:27 -0500: wmap: Execute the command: wmap emilygiffinfans.com
207
- 2018-11-05 19:50:43 -0500: wmap: Execute the command: wmap entercityofmirrors.com
208
- 2018-11-05 19:51:05 -0500: wmap: Execute the command: wmap enterthepassage.com
209
- 2018-11-05 19:51:26 -0500: wmap: Execute the command: wmap enterthetwelve.com
210
- 2018-11-05 19:51:43 -0500: wmap: Execute the command: wmap ettabook.com
211
- 2018-11-05 19:52:24 -0500: wmap: Execute the command: wmap exactlyasiam.net
212
- 2018-11-05 19:52:56 -0500: wmap: Execute the command: wmap exactlyasiambook.com
213
- 2018-11-05 19:53:18 -0500: wmap: Execute the command: wmap exorsith.com
214
- 2018-11-05 19:53:39 -0500: wmap: Execute the command: wmap familycirclebooks.com
215
- 2018-11-05 19:54:01 -0500: wmap: Execute the command: wmap fannie-flagg.com
216
- 2018-11-05 19:54:22 -0500: wmap: Execute the command: wmap fateofthejedi.com
217
- 2018-11-05 19:54:39 -0500: wmap: Execute the command: wmap faultlinebook.com
218
- 2018-11-05 19:55:00 -0500: wmap: Execute the command: wmap fawcettbooks.com
219
- 2018-11-05 19:55:22 -0500: wmap: Execute the command: wmap feverbornbook.com
220
- 2018-11-05 19:55:44 -0500: wmap: Execute the command: wmap feverseries.com
221
- 2018-11-05 19:56:00 -0500: wmap: Execute the command: wmap fifthsorceress.com
222
- 2018-11-05 19:56:22 -0500: wmap: Execute the command: wmap fightthevastmachine.com
223
- 2018-11-05 19:56:43 -0500: wmap: Execute the command: wmap findbillie.com
224
- 2018-11-05 19:57:00 -0500: wmap: Execute the command: wmap finn-novel.com
225
- 2018-11-05 19:57:21 -0500: wmap: Execute the command: wmap firstlit.com
226
- 2018-11-05 19:57:38 -0500: wmap: Execute the command: wmap followthepassage.com
227
- 2018-11-05 19:58:00 -0500: wmap: Execute the command: wmap fortheloveofadog.net
228
- 2018-11-05 19:58:16 -0500: wmap: Execute the command: wmap foxnewstruestory.com
229
- 2018-11-05 19:58:58 -0500: wmap: Execute the command: wmap fracescolejones.com
230
- 2018-11-05 19:59:29 -0500: wmap: Execute the command: wmap fracturedcity.com
231
- 2018-11-05 19:59:51 -0500: wmap: Execute the command: wmap fracturedcity.net
232
- 2018-11-05 20:00:12 -0500: wmap: Execute the command: wmap fracturedcity.org
233
- 2018-11-05 20:00:34 -0500: wmap: Execute the command: wmap fragipanihotel.com
234
- 2018-11-05 20:00:51 -0500: wmap: Execute the command: wmap freepuddinrecipe.com
235
- 2018-11-05 20:01:32 -0500: wmap: Execute the command: wmap freshofftheboatbook.com
236
- 2018-11-05 20:01:54 -0500: wmap: Execute the command: wmap furstbook.com
237
- 2018-11-05 20:02:10 -0500: wmap: Execute the command: wmap furythenovel.com
238
- 2018-11-05 20:02:52 -0500: wmap: Execute the command: wmap gabrielshermanbooks.com
239
- 2018-11-05 20:03:23 -0500: wmap: Execute the command: wmap garyshteyngart.com
240
- 2018-11-05 20:04:10 -0500: wmap: Execute the command: wmap georgesaundersbooks.com
241
- 2018-11-05 20:04:32 -0500: wmap: Execute the command: wmap getintoprep.com
242
- 2018-11-05 20:04:48 -0500: wmap: Execute the command: wmap getoveryourself-book.com
243
- 2018-11-05 20:05:50 -0500: wmap: Execute the command: wmap getpuddin.com
244
- 2018-11-05 20:06:11 -0500: wmap: Execute the command: wmap giffordslastegg.com
245
- 2018-11-05 20:06:28 -0500: wmap: Execute the command: wmap gilreavill.com
246
- 2018-11-05 20:07:09 -0500: wmap: Execute the command: wmap givethebestadvice.com
247
- 2018-11-05 20:07:41 -0500: wmap: Execute the command: wmap glassbooksofthedreameaters.com
248
- 2018-11-05 20:08:28 -0500: wmap: Execute the command: wmap godfatherreturns.com
249
- 2018-11-05 20:08:49 -0500: wmap: Execute the command: wmap gotosleepmethods.com
250
- 2018-11-05 20:09:06 -0500: wmap: Execute the command: wmap gourmetbks.com
251
- 2018-11-05 20:10:07 -0500: wmap: Execute the command: wmap gramercybooks.com
252
- 2018-11-05 20:10:29 -0500: wmap: Execute the command: wmap greedwatch.net
253
- 2018-11-05 20:10:45 -0500: wmap: Execute the command: wmap gregdinallo.com
254
- 2018-11-05 20:11:07 -0500: wmap: Execute the command: wmap hanniballecter.com
255
- 2018-11-05 20:11:29 -0500: wmap: Execute the command: wmap happynorooz.com
256
- 2018-11-05 20:12:00 -0500: wmap: Execute the command: wmap harryturtledove.net
257
- 2018-11-05 20:12:22 -0500: wmap: Execute the command: wmap hausfraubook.com
258
- 2018-11-05 20:12:44 -0500: wmap: Execute the command: wmap hollypetersonthemanny.com
259
- 2018-11-05 20:13:00 -0500: wmap: Execute the command: wmap homerepairishomicide.com
260
- 2018-11-05 20:13:42 -0500: wmap: Execute the command: wmap hotelonthecornerofbitterandsweet.com
261
- 2018-11-05 20:14:13 -0500: wmap: Execute the command: wmap houseatmidnight.com
262
- 2018-11-05 20:15:00 -0500: wmap: Execute the command: wmap houseofcollectibles.com
263
- 2018-11-05 20:15:21 -0500: wmap: Execute the command: wmap howgodchangesyourbrain.com
264
- 2018-11-05 20:15:38 -0500: wmap: Execute the command: wmap howlerarmy.com
265
- 2018-11-05 20:16:00 -0500: wmap: Execute the command: wmap howlerlegion.com
266
- 2018-11-05 20:16:16 -0500: wmap: Execute the command: wmap howtowowbook.com
267
- 2018-11-05 20:16:38 -0500: wmap: Execute the command: wmap iainlawrence.net
268
- 2018-11-05 20:16:54 -0500: wmap: Execute the command: wmap iambabcock.com
269
- 2018-11-05 20:17:36 -0500: wmap: Execute the command: wmap iknowwhytoo.com
270
- 2018-11-05 20:18:07 -0500: wmap: Execute the command: wmap inlincolnshand.com
271
- 2018-11-05 20:18:54 -0500: wmap: Execute the command: wmap intofire.com
272
- 2018-11-05 20:19:16 -0500: wmap: Execute the command: wmap iranawakening.com
273
- 2018-11-05 20:19:32 -0500: wmap: Execute the command: wmap irisjohansennovels.com
274
- 2018-11-05 20:20:14 -0500: wmap: Execute the command: wmap isaacsstorm.com
275
- 2018-11-05 20:20:45 -0500: wmap: Execute the command: wmap islandatthecenter.com
276
- 2018-11-05 20:21:32 -0500: wmap: Execute the command: wmap islandatthecenteroftheworld.com
277
- 2018-11-05 20:21:53 -0500: wmap: Execute the command: wmap ivybooks.com
278
- 2018-11-05 20:22:10 -0500: wmap: Execute the command: wmap jamesleeburke.com
279
- 2018-11-05 20:22:32 -0500: wmap: Execute the command: wmap janehawk.com
280
- 2018-11-05 20:22:48 -0500: wmap: Execute the command: wmap jeanauel.com
281
- 2018-11-05 20:23:10 -0500: wmap: Execute the command: wmap jeanauel.net
282
- 2018-11-05 20:23:26 -0500: wmap: Execute the command: wmap jeanauel.org
283
- 2018-11-05 20:24:08 -0500: wmap: Execute the command: wmap jeannenolan.com
284
- 2018-11-05 20:24:29 -0500: wmap: Execute the command: wmap jeannenolanbooks.com
285
- 2018-11-05 20:24:51 -0500: wmap: Execute the command: wmap jewelofmedina.com
286
- 2018-11-05 20:25:13 -0500: wmap: Execute the command: wmap joanandersonbooks.com
287
- 2018-11-05 20:25:29 -0500: wmap: Execute the command: wmap jodipicoultstory.com
288
- 2018-11-05 20:26:11 -0500: wmap: Execute the command: wmap jonathankellerman.net
289
- 2018-11-05 20:26:42 -0500: wmap: Execute the command: wmap josephgirzone.com
290
- 2018-11-05 20:27:29 -0500: wmap: Execute the command: wmap judithmcnaughtforum.com
291
- 2018-11-05 20:27:50 -0500: wmap: Execute the command: wmap julietbook.com
292
- 2018-11-05 20:28:12 -0500: wmap: Execute the command: wmap justmercythebook.com
293
- 2018-11-05 20:28:34 -0500: wmap: Execute the command: wmap justwhenithoughtiddropped.com
294
- 2018-11-05 20:28:55 -0500: wmap: Execute the command: wmap kabulbeautyschool.net
295
- 2018-11-05 20:29:17 -0500: wmap: Execute the command: wmap kabulbeautyschoolbook.com
296
- 2018-11-05 20:29:33 -0500: wmap: Execute the command: wmap katz-dogs.com
297
- 2018-11-05 20:29:55 -0500: wmap: Execute the command: wmap khizrkhanbooks.com
298
- 2018-11-05 20:30:16 -0500: wmap: Execute the command: wmap kingdomironthrone.com
299
- 2018-11-05 20:30:38 -0500: wmap: Execute the command: wmap kingdomnarrowsea.com
300
- 2018-11-05 20:31:00 -0500: wmap: Execute the command: wmap kingdomoftheisles.com
301
- 2018-11-05 20:31:16 -0500: wmap: Execute the command: wmap kingdomtrident.com
302
- 2018-11-05 20:31:38 -0500: wmap: Execute the command: wmap kingscrapbook.com
303
- 2018-11-05 20:31:54 -0500: wmap: Execute the command: wmap kinsellaplaylist.com
304
- 2018-11-05 20:32:16 -0500: wmap: Execute the command: wmap kristinhannah.net
305
- 2018-11-05 20:32:32 -0500: wmap: Execute the command: wmap ladyelizabethbook.com
306
- 2018-11-05 20:33:14 -0500: wmap: Execute the command: wmap lamourfamilyheritagecelebration.com
307
- 2018-11-05 20:33:46 -0500: wmap: Execute the command: wmap landisrebate.com
308
- 2018-11-05 20:34:07 -0500: wmap: Execute the command: wmap lauramchughbooks.com
309
- 2018-11-05 20:34:29 -0500: wmap: Execute the command: wmap laurenowenbooks.com
310
- 2018-11-05 20:34:45 -0500: wmap: Execute the command: wmap lazaruschild.com
311
- 2018-11-05 20:35:07 -0500: wmap: Execute the command: wmap lenadunhambooks.com
312
- 2018-11-05 20:35:23 -0500: wmap: Execute the command: wmap lenguaviva.com
313
- 2018-11-05 20:35:45 -0500: wmap: Execute the command: wmap lessonsfromdads.com
314
- 2018-11-05 20:36:02 -0500: wmap: Execute the command: wmap letstakethelongwayhome.com
315
- 2018-11-05 20:36:43 -0500: wmap: Execute the command: wmap lettertomydaughterbook.com
316
- 2018-11-05 20:37:05 -0500: wmap: Execute the command: wmap lillysinghbook.com
317
- 2018-11-05 20:37:21 -0500: wmap: Execute the command: wmap literaryquotationoftheweek.com
318
- 2018-11-05 20:38:03 -0500: wmap: Execute the command: wmap literaryquoteoftheweek.com
319
- 2018-11-05 20:38:34 -0500: wmap: Execute the command: wmap literaryquoteoftheweek.net
320
- 2018-11-05 20:38:56 -0500: wmap: Execute the command: wmap litflash.com
321
- 2018-11-05 20:39:18 -0500: wmap: Execute the command: wmap littlerandom.com
322
- 2018-11-05 20:39:34 -0500: wmap: Execute the command: wmap loudestvoiceintheroom.com
323
- 2018-11-05 20:40:16 -0500: wmap: Execute the command: wmap louislamourebooks.com
324
- 2018-11-05 20:40:47 -0500: wmap: Execute the command: wmap lovesweptbooks.com
325
- 2018-11-05 20:41:09 -0500: wmap: Execute the command: wmap lovingfrank.com
326
- 2018-11-05 20:41:30 -0500: wmap: Execute the command: wmap luannerice.com
327
- 2018-11-05 20:41:52 -0500: wmap: Execute the command: wmap luckyorsmart.com
328
- 2018-11-05 20:42:09 -0500: wmap: Execute the command: wmap lullaby-book.com
329
- 2018-11-05 20:42:30 -0500: wmap: Execute the command: wmap lunchhourbookclub.com
330
- 2018-11-05 20:42:47 -0500: wmap: Execute the command: wmap malicemobile.com
331
- 2018-11-05 20:43:28 -0500: wmap: Execute the command: wmap marianneszegedymaszak.com
332
- 2018-11-05 20:44:00 -0500: wmap: Execute the command: wmap martywingate.com
333
- 2018-11-05 20:44:46 -0500: wmap: Execute the command: wmap mavensword.com
334
- 2018-11-05 20:45:08 -0500: wmap: Execute the command: wmap michaelpaterniti.com
335
- 2018-11-05 20:45:25 -0500: wmap: Execute the command: wmap michaelwalkerbooks.com
336
- 2018-11-05 20:45:46 -0500: wmap: Execute the command: wmap midnightbreedread.com
337
- 2018-11-05 20:46:08 -0500: wmap: Execute the command: wmap milkglassmoon.com
338
- 2018-11-05 20:46:29 -0500: wmap: Execute the command: wmap misterpip.com
339
- 2018-11-05 20:46:51 -0500: wmap: Execute the command: wmap mlpublicity.com
340
- 2018-11-05 20:47:07 -0500: wmap: Execute the command: wmap modernlibrary.com
341
- 2018-11-05 20:47:29 -0500: wmap: Execute the command: wmap modernlibrarypublicity.com
342
- 2018-11-05 20:47:46 -0500: wmap: Execute the command: wmap moneywash.net
343
- 2018-11-05 20:48:27 -0500: wmap: Execute the command: wmap morerizzoli.com
344
- 2018-11-05 20:48:59 -0500: wmap: Execute the command: wmap morganroadbooks.com
345
- 2018-11-05 20:49:45 -0500: wmap: Execute the command: wmap mortalis-books.com
346
- 2018-11-05 20:50:07 -0500: wmap: Execute the command: wmap mrstomthumb.com
347
- 2018-11-05 20:50:23 -0500: wmap: Execute the command: wmap mtaibbi.com
348
- 2018-11-05 20:50:45 -0500: wmap: Execute the command: wmap muchtoopromisedland.com
349
- 2018-11-05 20:51:01 -0500: wmap: Execute the command: wmap mygoldenplayhouse.com
350
- 2018-11-05 20:51:43 -0500: wmap: Execute the command: wmap mypromisedlandbook.com
351
- 2018-11-05 20:52:15 -0500: wmap: Execute the command: wmap mywifethinksimanidiot.com
352
- 2018-11-05 20:53:01 -0500: wmap: Execute the command: wmap nateberkusbooks.com
353
- 2018-11-05 20:53:23 -0500: wmap: Execute the command: wmap naturalsuspect.com
354
- 2018-11-05 20:53:39 -0500: wmap: Execute the command: wmap needtoknowbook.com
355
- 2018-11-05 20:54:21 -0500: wmap: Execute the command: wmap no1ladiesdetective.com
356
- 2018-11-05 20:54:53 -0500: wmap: Execute the command: wmap nortonthecat.com
357
- 2018-11-05 20:55:39 -0500: wmap: Execute the command: wmap notchicklit.com
358
- 2018-11-05 20:56:01 -0500: wmap: Execute the command: wmap notchiclit.com
359
- 2018-11-05 20:56:17 -0500: wmap: Execute the command: wmap ntkog.com
360
- 2018-11-05 20:56:39 -0500: wmap: Execute the command: wmap officialbookclubselection.com
361
- 2018-11-05 20:56:55 -0500: wmap: Execute the command: wmap offthepageevents.com
362
- 2018-11-05 20:57:37 -0500: wmap: Execute the command: wmap olofrudbeck.com
363
- 2018-11-05 20:58:09 -0500: wmap: Execute the command: wmap onefolgatestreet.com
364
- 2018-11-05 20:58:55 -0500: wmap: Execute the command: wmap oneworldbks.com
365
- 2018-11-05 20:59:17 -0500: wmap: Execute the command: wmap oneworldbooks.net
366
- 2018-11-05 20:59:33 -0500: wmap: Execute the command: wmap oneworldstriversrow.com
367
- 2018-11-05 20:59:55 -0500: wmap: Execute the command: wmap oneworldstriversrow.net
368
- 2018-11-05 21:00:11 -0500: wmap: Execute the command: wmap onlinebookclubbookfair.com
369
- 2018-11-05 21:00:53 -0500: wmap: Execute the command: wmap onmybedsidetable.com
370
- 2018-11-05 21:01:25 -0500: wmap: Execute the command: wmap onmynightstand.com
371
- 2018-11-05 21:02:11 -0500: wmap: Execute the command: wmap ourdogs.org
372
- 2018-11-05 21:02:33 -0500: wmap: Execute the command: wmap outcastsunitedepilogue.com
373
- 2018-11-05 21:02:49 -0500: wmap: Execute the command: wmap outlandersaga.com
374
- 2018-11-05 21:03:11 -0500: wmap: Execute the command: wmap outletbooks.com
375
- 2018-11-05 21:03:27 -0500: wmap: Execute the command: wmap parentsatrandom.com
376
- 2018-11-05 21:04:09 -0500: wmap: Execute the command: wmap pariswife.com
377
- 2018-11-05 21:04:41 -0500: wmap: Execute the command: wmap paulhardingbooks.com
378
- 2018-11-05 21:05:27 -0500: wmap: Execute the command: wmap perrioshaughnessy.com
379
- 2018-11-05 21:05:49 -0500: wmap: Execute the command: wmap piercebrownbooks.com
380
- 2018-11-05 21:06:05 -0500: wmap: Execute the command: wmap piratesdaughterbook.com
381
- 2018-11-05 21:06:27 -0500: wmap: Execute the command: wmap playmebooks.com
382
- 2018-11-05 21:06:48 -0500: wmap: Execute the command: wmap playmeseries.com
383
- 2018-11-05 21:07:10 -0500: wmap: Execute the command: wmap pleasebewithme.com
384
- 2018-11-05 21:07:32 -0500: wmap: Execute the command: wmap popeandmussolini.com
385
- 2018-11-05 21:07:48 -0500: wmap: Execute the command: wmap powerofapositiveno.com
386
- 2018-11-05 21:08:10 -0500: wmap: Execute the command: wmap presidiopress.com
387
- 2018-11-05 21:08:27 -0500: wmap: Execute the command: wmap promiseskeptthebook.com
388
- 2018-11-05 21:09:08 -0500: wmap: Execute the command: wmap puddinrecipe.com
389
- 2018-11-05 21:09:30 -0500: wmap: Execute the command: wmap queendomacrossthewater.com
390
- 2018-11-05 21:09:52 -0500: wmap: Execute the command: wmap questofthrones.com
391
- 2018-11-05 21:10:13 -0500: wmap: Execute the command: wmap racheljoycebooks.com
392
- 2018-11-05 21:10:36 -0500: wmap: Execute the command: wmap randomhouseadulttradegroup.com
393
- 2018-11-05 21:11:41 -0500: wmap: Execute the command: wmap randomhousebooks.com
394
- 2018-11-05 21:11:54 -0500: wmap: Execute the command: wmap randomhousepublicity.com
395
- 2018-11-05 21:12:20 -0500: wmap: Execute the command: wmap randomhousepublishinggroup.com
396
- 2018-11-05 21:13:14 -0500: wmap: Execute the command: wmap randomhousereaderscircle.com
397
- 2018-11-05 21:13:49 -0500: wmap: Execute the command: wmap randomhousereadinggroup.com
398
- 2018-11-05 21:14:56 -0500: wmap: Execute the command: wmap randomhousetrade.com
399
- 2018-11-05 21:15:54 -0500: wmap: Execute the command: wmap randomhousetradegroup.com
400
- 2018-11-05 21:16:45 -0500: wmap: Execute the command: wmap randomhousetradepaperbacks.com
401
- 2018-11-05 21:17:28 -0500: wmap: Execute the command: wmap randomhousetradepublicity.com
402
- 2018-11-05 21:18:06 -0500: wmap: Execute the command: wmap rcforbooksellers.com
403
- 2018-11-05 21:18:55 -0500: wmap: Execute the command: wmap readavatar.com
404
- 2018-11-05 21:19:08 -0500: wmap: Execute the command: wmap readavatarbooks.com
405
- 2018-11-05 21:19:19 -0500: wmap: Execute the command: wmap readberg.com
406
- 2018-11-05 21:20:11 -0500: wmap: Execute the command: wmap readbuyingin.com
407
- 2018-11-05 21:20:44 -0500: wmap: Execute the command: wmap readcityofmirrors.com
408
- 2018-11-05 21:21:30 -0500: wmap: Execute the command: wmap readeddie.com
409
- 2018-11-05 21:22:13 -0500: wmap: Execute the command: wmap readfinn.com
410
- 2018-11-05 21:22:42 -0500: wmap: Execute the command: wmap readleechild.com
411
- 2018-11-05 21:23:27 -0500: wmap: Execute the command: wmap 77shadowstreet.com
412
- 2018-11-05 21:23:27 -0500: wmap: Execute the command: wmap 42words.com
413
- 2018-11-05 21:23:27 -0500: wmap: Execute the command: wmap 1968thebook.com
414
- 2018-11-05 21:23:27 -0500: wmap: Execute the command: wmap 20sgirlprize.com
415
- 2018-11-05 21:23:27 -0500: wmap: Execute the command: wmap 20by20contest.com
416
- 2018-11-05 21:23:27 -0500: wmap: Execute the command: wmap 20by20essays.com
417
- 2018-11-05 21:23:27 -0500: wmap: Execute the command: wmap abiglittlelife.com
418
- 2018-11-05 21:23:27 -0500: wmap: Execute the command: wmap 12-21book.com
419
- 2018-11-05 21:23:27 -0500: wmap: Execute the command: wmap 20essays.com
420
- 2018-11-05 21:23:27 -0500: wmap: Execute the command: wmap 20sgirl.com
421
- 2018-11-05 21:23:40 -0500: wmap: Execute the command: wmap aegoliusclub.com
422
- 2018-11-05 21:23:42 -0500: wmap: Execute the command: wmap alexandrialink.com
423
- 2018-11-05 21:23:45 -0500: wmap: Execute the command: wmap aliceihavebeen.com
424
- 2018-11-05 21:23:48 -0500: wmap: Execute the command: wmap americancrimespree.com
425
- 2018-11-05 21:23:52 -0500: wmap: Execute the command: wmap americanempire.net
426
- 2018-11-05 21:23:57 -0500: wmap: Execute the command: wmap americanmadebook.com
427
- 2018-11-05 21:24:00 -0500: wmap: Execute the command: wmap americanwidowbook.com
428
- 2018-11-05 21:24:08 -0500: wmap: Execute the command: wmap andsonsbook.com
429
- 2018-11-05 21:24:13 -0500: wmap: Execute the command: wmap annahopebooks.com
430
- 2018-11-05 21:24:15 -0500: wmap: Execute the command: wmap arishavit.com
431
- 2018-11-05 21:24:26 -0500: wmap: Execute the command: wmap armageddonschildren.com
432
- 2018-11-05 21:24:27 -0500: wmap: Execute the command: wmap artiestoofat.com
433
- 2018-11-05 21:24:27 -0500: wmap: Execute the command: wmap artietoofat.com
434
- 2018-11-05 21:24:29 -0500: wmap: Execute the command: wmap artofbeingbook.com
435
- 2018-11-05 21:24:29 -0500: wmap: Execute the command: wmap ashleybell.info
436
- 2018-11-05 21:24:29 -0500: wmap: Execute the command: wmap ashleybell.net
437
- 2018-11-05 21:24:32 -0500: wmap: Execute the command: wmap athreadofgrace.com
438
- 2018-11-05 21:24:38 -0500: wmap: Execute the command: wmap atrandom.com
439
- 2018-11-05 21:24:42 -0500: wmap: Execute the command: wmap atrandombooks.com
440
- 2018-11-05 21:24:48 -0500: wmap: Execute the command: wmap auel.com
441
- 2018-11-05 21:24:49 -0500: wmap: Execute the command: wmap authorjeffsoloway.com
442
- 2018-11-05 21:24:52 -0500: wmap: Execute the command: wmap authorphonechat.com
443
- 2018-11-05 21:24:55 -0500: wmap: Execute the command: wmap babylonrisingbook.com
444
- 2018-11-05 21:24:55 -0500: wmap: Execute the command: wmap babylonrisingseries.com
445
- 2018-11-05 21:24:55 -0500: wmap: Execute the command: wmap babywhisperersecrets.com
446
- 2018-11-05 21:24:56 -0500: wmap: Execute the command: wmap bakingcakesoffer.com
447
- 2018-11-05 21:25:06 -0500: wmap: Execute the command: wmap ballantine.biz
448
- 2018-11-05 21:25:11 -0500: wmap: Execute the command: wmap ballantinebook.com
449
- 2018-11-05 21:25:22 -0500: wmap: Execute the command: wmap ballantinebooks.biz
450
- 2018-11-05 21:25:26 -0500: wmap: Execute the command: wmap ballantinebooks.com
451
- 2018-11-05 21:25:39 -0500: wmap: Execute the command: wmap ballantinereaderscircle.com
452
- 2018-11-05 21:25:47 -0500: wmap: Execute the command: wmap ballantinereadingguides.com
453
- 2018-11-05 21:25:48 -0500: wmap: Execute the command: wmap bangforyourbook.com
454
- 2018-11-05 21:25:55 -0500: wmap: Execute the command: wmap bantam.com
455
- 2018-11-05 21:26:05 -0500: wmap: Execute the command: wmap bantambooks.biz
456
- 2018-11-05 21:26:19 -0500: wmap: Execute the command: wmap bantamclassic.com
457
- 2018-11-05 21:26:25 -0500: wmap: Execute the command: wmap bantamclassics.com
458
- 2018-11-05 21:26:26 -0500: wmap: Execute the command: wmap bantamdell.com
459
- 2018-11-05 21:26:49 -0500: wmap: Execute the command: wmap bantamdellarc.com
460
- 2018-11-05 21:26:51 -0500: wmap: Execute the command: wmap bantamdellpodcast.com
461
- 2018-11-05 21:26:59 -0500: wmap: Execute the command: wmap bantamdellstories.com
462
- 2018-11-05 21:27:00 -0500: wmap: Execute the command: wmap bantamdellsubrights.com
463
- 2018-11-05 21:27:08 -0500: wmap: Execute the command: wmap bantamdiscovery.com
464
- 2018-11-05 21:27:11 -0500: wmap: Execute the command: wmap bantamdiscoverybooks.com
465
- 2018-11-05 21:27:28 -0500: wmap: Execute the command: wmap bantamshakespeare.com
466
- 2018-11-05 21:27:29 -0500: wmap: Execute the command: wmap bantamspectra.net
467
- 2018-11-05 21:27:38 -0500: wmap: Execute the command: wmap bdbooksellercafe.com
468
- 2018-11-05 21:27:46 -0500: wmap: Execute the command: wmap beautyandthebookshow.com
469
- 2018-11-05 21:27:50 -0500: wmap: Execute the command: wmap becomingmarie.com
470
- 2018-11-05 21:27:51 -0500: wmap: Execute the command: wmap behindthebeautifulforevers.com
471
- 2018-11-05 21:27:52 -0500: wmap: Execute the command: wmap belvaplain.com
472
- 2018-11-05 21:27:54 -0500: wmap: Execute the command: wmap benop.life
473
- 2018-11-05 21:28:08 -0500: wmap: Execute the command: wmap bestfirstsentence.com
474
- 2018-11-05 21:28:08 -0500: wmap: Execute the command: wmap bewarethevastmachine.com
475
- 2018-11-05 21:28:10 -0500: wmap: Execute the command: wmap blackbook35.com
476
- 2018-11-05 21:28:19 -0500: wmap: Execute the command: wmap blackmirrorbooks.com
477
- 2018-11-05 21:28:22 -0500: wmap: Execute the command: wmap blackswanthebook.com
478
- 2018-11-05 21:28:22 -0500: wmap: Execute the command: wmap blackswantheory.com
479
- 2018-11-05 21:28:26 -0500: wmap: Execute the command: wmap bloodandice.com
480
- 2018-11-05 21:28:31 -0500: wmap: Execute the command: wmap bonappetitbooks.com
481
- 2018-11-05 21:28:43 -0500: wmap: Execute the command: wmap boneclocks.com
482
- 2018-11-05 21:29:00 -0500: wmap: Execute the command: wmap bookclubbookfair.com
483
- 2018-11-05 21:29:03 -0500: wmap: Execute the command: wmap bookclubfest.com
484
- 2018-11-05 21:29:05 -0500: wmap: Execute the command: wmap bookedforbreakfast.com
485
- 2018-11-05 21:29:06 -0500: wmap: Execute the command: wmap booksoftortall.com
486
- 2018-11-05 21:29:07 -0500: wmap: Execute the command: wmap booksus.com
487
- 2018-11-05 21:29:20 -0500: wmap: Execute the command: wmap boom-brokaw.com
488
- 2018-11-05 21:29:27 -0500: wmap: Execute the command: wmap boris-akunin.com
489
- 2018-11-05 21:29:27 -0500: wmap: Execute the command: wmap boydvartybooks.com
490
- 2018-11-05 21:29:35 -0500: wmap: Execute the command: wmap brc-phonechats.com
491
- 2018-11-05 21:29:42 -0500: wmap: Execute the command: wmap brcforbooksellers.com
492
- 2018-11-05 21:29:45 -0500: wmap: Execute the command: wmap brcphonechat.com
493
- 2018-11-05 21:29:46 -0500: wmap: Execute the command: wmap brcphonechats.com
494
- 2018-11-05 21:29:48 -0500: wmap: Execute the command: wmap breaking-and-entering.com
495
- 2018-11-05 21:30:03 -0500: wmap: Execute the command: wmap brightsideofdisaster.com
496
- 2018-11-05 21:30:10 -0500: wmap: Execute the command: wmap britneybooks.com
497
- 2018-11-05 21:30:19 -0500: wmap: Execute the command: wmap britneysbook.com
498
- 2018-11-05 21:30:22 -0500: wmap: Execute the command: wmap britneyspearsbook.com
499
- 2018-11-05 21:30:24 -0500: wmap: Execute the command: wmap brockmannrebate.com
500
- 2018-11-05 21:30:24 -0500: wmap: Execute the command: wmap brooklyn-dodgers-book.com
501
- 2018-11-05 21:30:25 -0500: wmap: Execute the command: wmap brooklyndodgers-book.com
502
- 2018-11-05 21:30:29 -0500: wmap: Execute the command: wmap bryanstevensonbooks.com
503
- 2018-11-05 21:30:31 -0500: wmap: Execute the command: wmap bsireporting.com
504
- 2018-11-05 21:30:33 -0500: wmap: Execute the command: wmap bushrhyme.com
505
- 2018-11-05 21:30:36 -0500: wmap: Execute the command: wmap buyinginbook.com
506
- 2018-11-05 21:30:36 -0500: wmap: Execute the command: wmap cathedralofthewild.com
507
- 2018-11-05 21:30:37 -0500: wmap: Execute the command: wmap charlemagnepursuit.com
508
- 2018-11-05 21:30:43 -0500: wmap: Execute the command: wmap chatwithlisasee.com
509
- 2018-11-05 21:30:50 -0500: wmap: Execute the command: wmap cityofmirrorsbook.com
510
- 2018-11-05 21:30:53 -0500: wmap: Execute the command: wmap cliopuddinrecipe.com
511
- 2018-11-05 21:31:04 -0500: wmap: Execute the command: wmap colleenpatrickyoudream.com
512
- 2018-11-05 21:31:05 -0500: wmap: Execute the command: wmap confessionsofadognapper.com
513
- 2018-11-05 21:31:08 -0500: wmap: Execute the command: wmap conspiracyfools.com
514
- 2018-11-05 21:31:12 -0500: wmap: Execute the command: wmap conspiracyoffools-book.com
515
- 2018-11-05 21:31:19 -0500: wmap: Execute the command: wmap conspiracyoffools.com
516
- 2018-11-05 21:31:21 -0500: wmap: Execute the command: wmap conspiracyoffoolsbook.com
517
- 2018-11-05 21:31:24 -0500: wmap: Execute the command: wmap conspiracythriller.com
518
- 2018-11-05 21:31:27 -0500: wmap: Execute the command: wmap conviction-book.com
519
- 2018-11-05 21:31:30 -0500: wmap: Execute the command: wmap creativityincbook.com
520
- 2018-11-05 21:31:38 -0500: wmap: Execute the command: wmap crescentbooks.com
521
- 2018-11-05 21:31:44 -0500: wmap: Execute the command: wmap crimeofprivilege.com
522
- 2018-11-05 21:31:48 -0500: wmap: Execute the command: wmap crossexaminationbooks.com
523
- 2018-11-05 21:31:53 -0500: wmap: Execute the command: wmap crunchycon.net
524
- 2018-11-05 21:31:56 -0500: wmap: Execute the command: wmap crystalskullbook.com
525
- 2018-11-05 21:31:59 -0500: wmap: Execute the command: wmap cubiclesurvivalguide.com
526
- 2018-11-05 21:32:08 -0500: wmap: Execute the command: wmap cultural-creatives.com
527
- 2018-11-05 21:32:09 -0500: wmap: Execute the command: wmap curtisandjane.com
528
- 2018-11-05 21:32:12 -0500: wmap: Execute the command: wmap curtisandjane.net
529
- 2018-11-05 21:32:14 -0500: wmap: Execute the command: wmap curtisandjane.org
530
- 2018-11-05 21:32:14 -0500: wmap: Execute the command: wmap daisyjonesandthesix.com
531
- 2018-11-05 21:32:21 -0500: wmap: Execute the command: wmap dakotameyerbooks.com
532
- 2018-11-05 21:32:27 -0500: wmap: Execute the command: wmap danielle-steel.com
533
- 2018-11-05 21:32:30 -0500: wmap: Execute the command: wmap daniellesteel.com
534
- 2018-11-05 21:32:36 -0500: wmap: Execute the command: wmap danyadunbar.com
535
- 2018-11-05 21:32:40 -0500: wmap: Execute the command: wmap darkfeverpodcast.com
536
- 2018-11-05 21:32:48 -0500: wmap: Execute the command: wmap darthwho.com
537
- 2018-11-05 21:32:50 -0500: wmap: Execute the command: wmap davidgilbertbooks.com
538
- 2018-11-05 21:32:50 -0500: wmap: Execute the command: wmap davidmitchellbooks.com
539
- 2018-11-05 21:32:53 -0500: wmap: Execute the command: wmap deadendrebate.com
540
- 2018-11-05 21:32:58 -0500: wmap: Execute the command: wmap deathtroopers.com
541
- 2018-11-05 21:33:04 -0500: wmap: Execute the command: wmap deathtrooperstrailercontest.com
542
- 2018-11-05 21:33:10 -0500: wmap: Execute the command: wmap dellbooks.com
543
- 2018-11-05 21:33:13 -0500: wmap: Execute the command: wmap dellpublishing.biz
544
- 2018-11-05 21:33:14 -0500: wmap: Execute the command: wmap delrey.xxx
545
- 2018-11-05 21:33:28 -0500: wmap: Execute the command: wmap delreybooks.com
546
- 2018-11-05 21:33:33 -0500: wmap: Execute the command: wmap delreycomics.com
547
- 2018-11-05 21:33:36 -0500: wmap: Execute the command: wmap delreycomics.info
548
- 2018-11-05 21:33:43 -0500: wmap: Execute the command: wmap delreycomics.net
549
- 2018-11-05 21:33:50 -0500: wmap: Execute the command: wmap delreycomics.org
550
- 2018-11-05 21:33:50 -0500: wmap: Execute the command: wmap delreydigital.com
551
- 2018-11-05 21:33:57 -0500: wmap: Execute the command: wmap delreymanga.com
552
- 2018-11-05 21:34:09 -0500: wmap: Execute the command: wmap deltabooks.com
553
- 2018-11-05 21:34:10 -0500: wmap: Execute the command: wmap depositorybankofzurich.com
554
- 2018-11-05 21:34:14 -0500: wmap: Execute the command: wmap deviousbookforcats.com
555
- 2018-11-05 21:34:27 -0500: wmap: Execute the command: wmap dialpress.com
556
- 2018-11-05 21:34:28 -0500: wmap: Execute the command: wmap dianestingley.com
557
- 2018-11-05 21:34:43 -0500: wmap: Execute the command: wmap dinnerchallenge.com
558
- 2018-11-05 21:34:46 -0500: wmap: Execute the command: wmap doatg.com
559
- 2018-11-05 21:34:47 -0500: wmap: Execute the command: wmap donnakaranbook.com
560
- 2018-11-05 21:34:47 -0500: wmap: Execute the command: wmap doubleknightbooks.com
561
- 2018-11-05 21:34:58 -0500: wmap: Execute the command: wmap dpolicebook.com
562
- 2018-11-05 21:35:00 -0500: wmap: Execute the command: wmap dreameaters.com
563
- 2018-11-05 21:35:02 -0500: wmap: Execute the command: wmap droppedmylastegg.com
564
- 2018-11-05 21:35:05 -0500: wmap: Execute the command: wmap dublin-book.com
565
- 2018-11-05 21:35:13 -0500: wmap: Execute the command: wmap earthschildren.com
566
- 2018-11-05 21:35:16 -0500: wmap: Execute the command: wmap earthschildren.net
567
- 2018-11-05 21:35:19 -0500: wmap: Execute the command: wmap eatit2beatit.com
568
- 2018-11-05 21:35:19 -0500: wmap: Execute the command: wmap ebadi-ecard.com
569
- 2018-11-05 21:35:24 -0500: wmap: Execute the command: wmap edcatmull.com
570
- 2018-11-05 21:35:27 -0500: wmap: Execute the command: wmap eddiehaungbooks.com
571
- 2018-11-05 21:35:33 -0500: wmap: Execute the command: wmap eddiewritesbooks.com
572
- 2018-11-05 21:35:35 -0500: wmap: Execute the command: wmap educatedbook.com
573
- 2018-11-05 21:35:36 -0500: wmap: Execute the command: wmap egoandhubris.com
574
- 2018-11-05 21:35:54 -0500: wmap: Execute the command: wmap elizabethstrout.com
575
- 2018-11-05 21:36:02 -0500: wmap: Execute the command: wmap emilygiffinfans.com
576
- 2018-11-05 21:36:08 -0500: wmap: Execute the command: wmap entercityofmirrors.com
577
- 2018-11-05 21:36:13 -0500: wmap: Execute the command: wmap enterthepassage.com
578
- 2018-11-05 21:36:14 -0500: wmap: Execute the command: wmap enterthetwelve.com
579
- 2018-11-05 21:36:18 -0500: wmap: Execute the command: wmap ettabook.com
580
- 2018-11-05 21:36:19 -0500: wmap: Execute the command: wmap exactlyasiam.net
581
- 2018-11-05 21:36:20 -0500: wmap: Execute the command: wmap exactlyasiambook.com
582
- 2018-11-05 21:36:23 -0500: wmap: Execute the command: wmap exorsith.com
583
- 2018-11-05 21:36:28 -0500: wmap: Execute the command: wmap familycirclebooks.com
584
- 2018-11-05 21:36:29 -0500: wmap: Execute the command: wmap fannie-flagg.com
585
- 2018-11-05 21:36:35 -0500: wmap: Execute the command: wmap fateofthejedi.com
586
- 2018-11-05 21:36:35 -0500: wmap: Execute the command: wmap faultlinebook.com
587
- 2018-11-05 21:36:37 -0500: wmap: Execute the command: wmap fawcettbooks.com
588
- 2018-11-05 21:36:38 -0500: wmap: Execute the command: wmap feverbornbook.com
589
- 2018-11-05 21:36:44 -0500: wmap: Execute the command: wmap feverseries.com
590
- 2018-11-05 21:37:01 -0500: wmap: Execute the command: wmap fifthsorceress.com
591
- 2018-11-05 21:37:02 -0500: wmap: Execute the command: wmap fightthevastmachine.com
592
- 2018-11-05 21:37:05 -0500: wmap: Execute the command: wmap findbillie.com
593
- 2018-11-05 21:37:12 -0500: wmap: Execute the command: wmap finn-novel.com
594
- 2018-11-05 21:37:16 -0500: wmap: Execute the command: wmap firstlit.com
595
- 2018-11-05 21:37:18 -0500: wmap: Execute the command: wmap followthepassage.com
596
- 2018-11-05 21:37:25 -0500: wmap: Execute the command: wmap fortheloveofadog.net
597
- 2018-11-05 21:37:27 -0500: wmap: Execute the command: wmap foxnewstruestory.com
598
- 2018-11-05 21:37:31 -0500: wmap: Execute the command: wmap fracescolejones.com
599
- 2018-11-05 21:37:32 -0500: wmap: Execute the command: wmap fracturedcity.com
600
- 2018-11-05 21:37:35 -0500: wmap: Execute the command: wmap fracturedcity.net
601
- 2018-11-05 21:37:42 -0500: wmap: Execute the command: wmap fracturedcity.org
602
- 2018-11-05 21:37:42 -0500: wmap: Execute the command: wmap fragipanihotel.com
603
- 2018-11-05 21:37:48 -0500: wmap: Execute the command: wmap freepuddinrecipe.com
604
- 2018-11-05 21:37:50 -0500: wmap: Execute the command: wmap freshofftheboatbook.com
605
- 2018-11-05 21:37:56 -0500: wmap: Execute the command: wmap furstbook.com
606
- 2018-11-05 21:37:57 -0500: wmap: Execute the command: wmap furythenovel.com
607
- 2018-11-05 21:38:03 -0500: wmap: Execute the command: wmap gabrielshermanbooks.com
608
- 2018-11-05 21:38:07 -0500: wmap: Execute the command: wmap garyshteyngart.com
609
- 2018-11-05 21:38:08 -0500: wmap: Execute the command: wmap georgesaundersbooks.com
610
- 2018-11-05 21:38:16 -0500: wmap: Execute the command: wmap getintoprep.com
611
- 2018-11-05 21:38:18 -0500: wmap: Execute the command: wmap getoveryourself-book.com
612
- 2018-11-05 21:38:22 -0500: wmap: Execute the command: wmap getpuddin.com
613
- 2018-11-05 21:38:26 -0500: wmap: Execute the command: wmap giffordslastegg.com
614
- 2018-11-05 21:38:27 -0500: wmap: Execute the command: wmap gilreavill.com
615
- 2018-11-05 21:38:33 -0500: wmap: Execute the command: wmap givethebestadvice.com
616
- 2018-11-05 21:38:36 -0500: wmap: Execute the command: wmap glassbooksofthedreameaters.com
617
- 2018-11-05 21:38:42 -0500: wmap: Execute the command: wmap godfatherreturns.com
618
- 2018-11-05 21:38:43 -0500: wmap: Execute the command: wmap gotosleepmethods.com
619
- 2018-11-05 21:38:50 -0500: wmap: Execute the command: wmap gourmetbks.com
620
- 2018-11-05 21:38:56 -0500: wmap: Execute the command: wmap gramercybooks.com
621
- 2018-11-05 21:38:57 -0500: wmap: Execute the command: wmap greedwatch.net
622
- 2018-11-05 21:38:58 -0500: wmap: Execute the command: wmap gregdinallo.com
623
- 2018-11-05 21:39:12 -0500: wmap: Execute the command: wmap hanniballecter.com
624
- 2018-11-05 21:39:28 -0500: wmap: Execute the command: wmap happynorooz.com
625
- 2018-11-05 21:39:32 -0500: wmap: Execute the command: wmap harryturtledove.net
626
- 2018-11-05 21:39:37 -0500: wmap: Execute the command: wmap hausfraubook.com
627
- 2018-11-05 21:39:38 -0500: wmap: Execute the command: wmap hollypetersonthemanny.com
628
- 2018-11-05 21:39:43 -0500: wmap: Execute the command: wmap homerepairishomicide.com
629
- 2018-11-05 21:39:49 -0500: wmap: Execute the command: wmap hotelonthecornerofbitterandsweet.com
630
- 2018-11-05 21:39:54 -0500: wmap: Execute the command: wmap houseatmidnight.com
631
- 2018-11-05 21:40:06 -0500: wmap: Execute the command: wmap houseofcollectibles.com
632
- 2018-11-05 21:40:21 -0500: wmap: Execute the command: wmap howgodchangesyourbrain.com
633
- 2018-11-05 21:40:21 -0500: wmap: Execute the command: wmap howlerarmy.com
634
- 2018-11-05 21:40:26 -0500: wmap: Execute the command: wmap howlerlegion.com
635
- 2018-11-05 21:40:27 -0500: wmap: Execute the command: wmap howtowowbook.com
636
- 2018-11-05 21:40:29 -0500: wmap: Execute the command: wmap iainlawrence.net
637
- 2018-11-05 21:40:32 -0500: wmap: Execute the command: wmap iambabcock.com
638
- 2018-11-05 21:40:43 -0500: wmap: Execute the command: wmap iknowwhytoo.com
639
- 2018-11-05 21:40:49 -0500: wmap: Execute the command: wmap inlincolnshand.com
640
- 2018-11-05 21:40:54 -0500: wmap: Execute the command: wmap intofire.com
641
- 2018-11-05 21:41:09 -0500: wmap: Execute the command: wmap iranawakening.com
642
- 2018-11-05 21:41:09 -0500: wmap: Execute the command: wmap irisjohansennovels.com
643
- 2018-11-05 21:41:10 -0500: wmap: Execute the command: wmap isaacsstorm.com
644
- 2018-11-05 21:41:13 -0500: wmap: Execute the command: wmap islandatthecenter.com
645
- 2018-11-05 21:41:21 -0500: wmap: Execute the command: wmap islandatthecenteroftheworld.com
646
- 2018-11-05 21:41:24 -0500: wmap: Execute the command: wmap ivybooks.com
647
- 2018-11-05 21:41:27 -0500: wmap: Execute the command: wmap jamesleeburke.com
648
- 2018-11-05 21:41:29 -0500: wmap: Execute the command: wmap janehawk.com
649
- 2018-11-05 21:41:34 -0500: wmap: Execute the command: wmap jeanauel.com
650
- 2018-11-05 21:41:42 -0500: wmap: Execute the command: wmap jeanauel.net
651
- 2018-11-05 21:41:43 -0500: wmap: Execute the command: wmap jeanauel.org
652
- 2018-11-05 21:41:45 -0500: wmap: Execute the command: wmap jeannenolan.com
653
- 2018-11-05 21:41:48 -0500: wmap: Execute the command: wmap jeannenolanbooks.com
654
- 2018-11-05 21:41:54 -0500: wmap: Execute the command: wmap jewelofmedina.com
655
- 2018-11-05 21:42:00 -0500: wmap: Execute the command: wmap joanandersonbooks.com
656
- 2018-11-05 21:42:06 -0500: wmap: Execute the command: wmap jodipicoultstory.com
657
- 2018-11-05 21:42:11 -0500: wmap: Execute the command: wmap jonathankellerman.net
658
- 2018-11-05 21:42:14 -0500: wmap: Execute the command: wmap josephgirzone.com
659
- 2018-11-05 21:42:17 -0500: wmap: Execute the command: wmap judithmcnaughtforum.com
660
- 2018-11-05 21:42:21 -0500: wmap: Execute the command: wmap julietbook.com
661
- 2018-11-05 21:42:24 -0500: wmap: Execute the command: wmap justmercythebook.com
662
- 2018-11-05 21:42:32 -0500: wmap: Execute the command: wmap justwhenithoughtiddropped.com
663
- 2018-11-05 21:42:35 -0500: wmap: Execute the command: wmap kabulbeautyschool.net
664
- 2018-11-05 21:42:39 -0500: wmap: Execute the command: wmap kabulbeautyschoolbook.com
665
- 2018-11-05 21:42:40 -0500: wmap: Execute the command: wmap katz-dogs.com
666
- 2018-11-05 21:42:47 -0500: wmap: Execute the command: wmap khizrkhanbooks.com
667
- 2018-11-05 21:42:50 -0500: wmap: Execute the command: wmap kingdomironthrone.com
668
- 2018-11-05 21:42:53 -0500: wmap: Execute the command: wmap kingdomnarrowsea.com
669
- 2018-11-05 21:43:01 -0500: wmap: Execute the command: wmap kingdomoftheisles.com
670
- 2018-11-05 21:43:07 -0500: wmap: Execute the command: wmap kingdomtrident.com
671
- 2018-11-05 21:43:07 -0500: wmap: Execute the command: wmap kingscrapbook.com
672
- 2018-11-05 21:43:08 -0500: wmap: Execute the command: wmap kinsellaplaylist.com
673
- 2018-11-05 21:43:17 -0500: wmap: Execute the command: wmap kristinhannah.net
674
- 2018-11-05 21:43:32 -0500: wmap: Execute the command: wmap ladyelizabethbook.com
675
- 2018-11-05 21:43:32 -0500: wmap: Execute the command: wmap lamourfamilyheritagecelebration.com
676
- 2018-11-05 21:43:33 -0500: wmap: Execute the command: wmap landisrebate.com
677
- 2018-11-05 21:43:34 -0500: wmap: Execute the command: wmap lauramchughbooks.com
678
- 2018-11-05 21:43:42 -0500: wmap: Execute the command: wmap laurenowenbooks.com
679
- 2018-11-05 21:43:44 -0500: wmap: Execute the command: wmap lazaruschild.com
680
- 2018-11-05 21:43:45 -0500: wmap: Execute the command: wmap lenadunhambooks.com
681
- 2018-11-05 21:43:47 -0500: wmap: Execute the command: wmap lenguaviva.com
682
- 2018-11-05 21:43:49 -0500: wmap: Execute the command: wmap lessonsfromdads.com
683
- 2018-11-05 21:43:53 -0500: wmap: Execute the command: wmap letstakethelongwayhome.com
684
- 2018-11-05 21:43:53 -0500: wmap: Execute the command: wmap lettertomydaughterbook.com
685
- 2018-11-05 21:43:57 -0500: wmap: Execute the command: wmap lillysinghbook.com
686
- 2018-11-05 21:43:59 -0500: wmap: Execute the command: wmap literaryquotationoftheweek.com
687
- 2018-11-05 21:44:02 -0500: wmap: Execute the command: wmap literaryquoteoftheweek.com
688
- 2018-11-05 21:44:09 -0500: wmap: Execute the command: wmap literaryquoteoftheweek.net
689
- 2018-11-05 21:44:12 -0500: wmap: Execute the command: wmap litflash.com
690
- 2018-11-05 21:44:14 -0500: wmap: Execute the command: wmap littlerandom.com
691
- 2018-11-05 21:44:14 -0500: wmap: Execute the command: wmap loudestvoiceintheroom.com
692
- 2018-11-05 21:44:20 -0500: wmap: Execute the command: wmap louislamourebooks.com
693
- 2018-11-05 21:44:30 -0500: wmap: Execute the command: wmap lovesweptbooks.com
694
- 2018-11-05 21:44:30 -0500: wmap: Execute the command: wmap lovingfrank.com
695
- 2018-11-05 21:44:41 -0500: wmap: Execute the command: wmap luannerice.com
696
- 2018-11-05 21:44:44 -0500: wmap: Execute the command: wmap luckyorsmart.com
697
- 2018-11-05 21:44:44 -0500: wmap: Execute the command: wmap lullaby-book.com
698
- 2018-11-05 21:44:52 -0500: wmap: Execute the command: wmap lunchhourbookclub.com
699
- 2018-11-05 21:44:56 -0500: wmap: Execute the command: wmap malicemobile.com
700
- 2018-11-05 21:44:56 -0500: wmap: Execute the command: wmap marianneszegedymaszak.com
701
- 2018-11-05 21:44:57 -0500: wmap: Execute the command: wmap martywingate.com
702
- 2018-11-05 21:45:02 -0500: wmap: Execute the command: wmap mavensword.com
703
- 2018-11-05 21:45:08 -0500: wmap: Execute the command: wmap michaelpaterniti.com
704
- 2018-11-05 21:45:11 -0500: wmap: Execute the command: wmap michaelwalkerbooks.com
705
- 2018-11-05 21:45:12 -0500: wmap: Execute the command: wmap midnightbreedread.com
706
- 2018-11-05 21:45:16 -0500: wmap: Execute the command: wmap milkglassmoon.com
707
- 2018-11-05 21:45:30 -0500: wmap: Execute the command: wmap misterpip.com
708
- 2018-11-05 21:45:30 -0500: wmap: Execute the command: wmap mlpublicity.com
709
- 2018-11-05 21:45:38 -0500: wmap: Execute the command: wmap modernlibrary.com
710
- 2018-11-05 21:45:40 -0500: wmap: Execute the command: wmap modernlibrarypublicity.com
711
- 2018-11-05 21:45:51 -0500: wmap: Execute the command: wmap moneywash.net
712
- 2018-11-05 21:45:53 -0500: wmap: Execute the command: wmap morerizzoli.com
713
- 2018-11-05 21:46:01 -0500: wmap: Execute the command: wmap morganroadbooks.com
714
- 2018-11-05 21:46:02 -0500: wmap: Execute the command: wmap mortalis-books.com
715
- 2018-11-05 21:46:06 -0500: wmap: Execute the command: wmap mrstomthumb.com
716
- 2018-11-05 21:46:08 -0500: wmap: Execute the command: wmap mtaibbi.com
717
- 2018-11-05 21:46:13 -0500: wmap: Execute the command: wmap muchtoopromisedland.com
718
- 2018-11-05 21:46:13 -0500: wmap: Execute the command: wmap mygoldenplayhouse.com
719
- 2018-11-05 21:46:23 -0500: wmap: Execute the command: wmap mypromisedlandbook.com
720
- 2018-11-05 21:46:33 -0500: wmap: Execute the command: wmap mywifethinksimanidiot.com
721
- 2018-11-05 21:46:34 -0500: wmap: Execute the command: wmap nateberkusbooks.com
722
- 2018-11-05 21:46:38 -0500: wmap: Execute the command: wmap naturalsuspect.com
723
- 2018-11-05 21:46:42 -0500: wmap: Execute the command: wmap needtoknowbook.com
724
- 2018-11-05 21:46:53 -0500: wmap: Execute the command: wmap no1ladiesdetective.com
725
- 2018-11-05 21:46:55 -0500: wmap: Execute the command: wmap nortonthecat.com
726
- 2018-11-05 21:46:57 -0500: wmap: Execute the command: wmap notchicklit.com
727
- 2018-11-05 21:47:07 -0500: wmap: Execute the command: wmap notchiclit.com
728
- 2018-11-05 21:47:08 -0500: wmap: Execute the command: wmap ntkog.com
729
- 2018-11-05 21:47:09 -0500: wmap: Execute the command: wmap officialbookclubselection.com
730
- 2018-11-05 21:47:19 -0500: wmap: Execute the command: wmap offthepageevents.com
731
- 2018-11-05 21:47:22 -0500: wmap: Execute the command: wmap olofrudbeck.com
732
- 2018-11-05 21:47:22 -0500: wmap: Execute the command: wmap onefolgatestreet.com
733
- 2018-11-05 21:47:24 -0500: wmap: Execute the command: wmap oneworldbks.com
734
- 2018-11-05 21:47:24 -0500: wmap: Execute the command: wmap oneworldbooks.net
735
- 2018-11-05 21:47:32 -0500: wmap: Execute the command: wmap oneworldstriversrow.com
736
- 2018-11-05 21:47:35 -0500: wmap: Execute the command: wmap oneworldstriversrow.net
737
- 2018-11-05 21:47:37 -0500: wmap: Execute the command: wmap onlinebookclubbookfair.com
738
- 2018-11-05 21:47:41 -0500: wmap: Execute the command: wmap onmybedsidetable.com
739
- 2018-11-05 21:47:52 -0500: wmap: Execute the command: wmap onmynightstand.com
740
- 2018-11-05 21:47:55 -0500: wmap: Execute the command: wmap ourdogs.org
741
- 2018-11-05 21:47:57 -0500: wmap: Execute the command: wmap outcastsunitedepilogue.com
742
- 2018-11-05 21:48:00 -0500: wmap: Execute the command: wmap outlandersaga.com
743
- 2018-11-05 21:48:03 -0500: wmap: Execute the command: wmap outletbooks.com
744
- 2018-11-05 21:48:14 -0500: wmap: Execute the command: wmap parentsatrandom.com
745
- 2018-11-05 21:48:18 -0500: wmap: Execute the command: wmap pariswife.com
746
- 2018-11-05 21:48:19 -0500: wmap: Execute the command: wmap paulhardingbooks.com
747
- 2018-11-05 21:48:25 -0500: wmap: Execute the command: wmap perrioshaughnessy.com
748
- 2018-11-05 21:48:26 -0500: wmap: Execute the command: wmap piercebrownbooks.com
749
- 2018-11-05 21:48:28 -0500: wmap: Execute the command: wmap piratesdaughterbook.com
750
- 2018-11-05 21:48:29 -0500: wmap: Execute the command: wmap playmebooks.com
751
- 2018-11-05 21:48:33 -0500: wmap: Execute the command: wmap playmeseries.com
752
- 2018-11-05 21:48:44 -0500: wmap: Execute the command: wmap pleasebewithme.com
753
- 2018-11-05 21:48:47 -0500: wmap: Execute the command: wmap popeandmussolini.com
754
- 2018-11-05 21:48:47 -0500: wmap: Execute the command: wmap powerofapositiveno.com
755
- 2018-11-05 21:48:51 -0500: wmap: Execute the command: wmap presidiopress.com
756
- 2018-11-05 21:48:58 -0500: wmap: Execute the command: wmap promiseskeptthebook.com
757
- 2018-11-05 21:48:59 -0500: wmap: Execute the command: wmap puddinrecipe.com
758
- 2018-11-05 21:49:03 -0500: wmap: Execute the command: wmap queendomacrossthewater.com
759
- 2018-11-05 21:49:08 -0500: wmap: Execute the command: wmap questofthrones.com
760
- 2018-11-05 21:49:11 -0500: wmap: Execute the command: wmap racheljoycebooks.com
761
- 2018-11-05 21:49:14 -0500: wmap: Execute the command: wmap randomhouseadulttradegroup.com
762
- 2018-11-05 21:49:25 -0500: wmap: Execute the command: wmap randomhousebooks.com
763
- 2018-11-05 21:49:26 -0500: wmap: Execute the command: wmap randomhousepublicity.com
764
- 2018-11-05 21:49:30 -0500: wmap: Execute the command: wmap randomhousepublishinggroup.com
765
- 2018-11-05 21:49:37 -0500: wmap: Execute the command: wmap randomhousereaderscircle.com
766
- 2018-11-05 21:49:39 -0500: wmap: Execute the command: wmap randomhousereadinggroup.com
767
- 2018-11-05 21:49:41 -0500: wmap: Execute the command: wmap randomhousetrade.com
768
- 2018-11-05 21:49:46 -0500: wmap: Execute the command: wmap randomhousetradegroup.com
769
- 2018-11-05 21:50:06 -0500: wmap: Execute the command: wmap randomhousetradepaperbacks.com
770
- 2018-11-05 21:50:07 -0500: wmap: Execute the command: wmap randomhousetradepublicity.com
771
- 2018-11-05 21:50:09 -0500: wmap: Execute the command: wmap rcforbooksellers.com
772
- 2018-11-05 21:50:15 -0500: wmap: Execute the command: wmap readavatar.com
773
- 2018-11-05 21:50:17 -0500: wmap: Execute the command: wmap readavatarbooks.com
774
- 2018-11-05 21:50:21 -0500: wmap: Execute the command: wmap readberg.com
775
- 2018-11-05 21:50:33 -0500: wmap: Execute the command: wmap readbuyingin.com
776
- 2018-11-05 21:50:35 -0500: wmap: Execute the command: wmap readcityofmirrors.com
777
- 2018-11-05 21:50:36 -0500: wmap: Execute the command: wmap readeddie.com
778
- 2018-11-05 21:50:38 -0500: wmap: Execute the command: wmap readfinn.com
779
- 2018-11-05 21:50:45 -0500: wmap: Execute the command: wmap readleechild.com
780
- 2018-11-05 21:50:50 -0500: wmap: Execute the command: wmap readminecraft.com
781
- 2018-11-05 21:50:53 -0500: wmap: Execute the command: wmap readminecraftbooks.com
782
- 2018-11-05 21:51:05 -0500: wmap: Execute the command: wmap readshakespeare.com
783
- 2018-11-05 21:51:08 -0500: wmap: Execute the command: wmap readsophiekinsella.com
784
- 2018-11-05 21:51:08 -0500: wmap: Execute the command: wmap readstarwars.com
785
- 2018-11-05 21:51:09 -0500: wmap: Execute the command: wmap readstrangerthings.com
786
- 2018-11-05 21:51:11 -0500: wmap: Execute the command: wmap readthebigskinny.com
787
- 2018-11-05 21:51:19 -0500: wmap: Execute the command: wmap readthepassage.com
788
- 2018-11-05 21:51:20 -0500: wmap: Execute the command: wmap readthequick.com
789
- 2018-11-05 21:51:25 -0500: wmap: Execute the command: wmap readthesnowball.com
790
- 2018-11-05 21:51:29 -0500: wmap: Execute the command: wmap readthetools.com
791
- 2018-11-05 21:51:33 -0500: wmap: Execute the command: wmap readthetwelve.com
792
- 2018-11-05 21:51:34 -0500: wmap: Execute the command: wmap redrisingbook.com
793
- 2018-11-05 21:51:39 -0500: wmap: Execute the command: wmap redrisingew.com
794
- 2018-11-05 21:51:48 -0500: wmap: Execute the command: wmap redrisingtrilogy.com
795
- 2018-11-05 21:51:48 -0500: wmap: Execute the command: wmap rh-newsletters.com
796
- 2018-11-05 21:51:53 -0500: wmap: Execute the command: wmap rhacademic.com
797
- 2018-11-05 21:51:58 -0500: wmap: Execute the command: wmap rhadulttrade.com
798
- 2018-11-05 21:52:03 -0500: wmap: Execute the command: wmap rhadulttradegroup.com
799
- 2018-11-05 21:52:03 -0500: wmap: Execute the command: wmap rhpgnewsletters.com
800
- 2018-11-05 21:52:09 -0500: wmap: Execute the command: wmap rhpodcast.com
801
- 2018-11-05 21:52:13 -0500: wmap: Execute the command: wmap rhpublicity.com
802
- 2018-11-05 21:52:26 -0500: wmap: Execute the command: wmap rhpublishinggroup.com
803
- 2018-11-05 21:52:32 -0500: wmap: Execute the command: wmap rhreaderscircle.com
804
- 2018-11-05 21:52:39 -0500: wmap: Execute the command: wmap rhreadinggroup.com
805
- 2018-11-05 21:52:42 -0500: wmap: Execute the command: wmap rhtp.com
806
- 2018-11-05 21:52:45 -0500: wmap: Execute the command: wmap rhtpaperbacks.com
807
- 2018-11-05 21:52:47 -0500: wmap: Execute the command: wmap rhtppublicity.com
808
- 2018-11-05 21:52:52 -0500: wmap: Execute the command: wmap rhtrade.com
809
- 2018-11-05 21:52:55 -0500: wmap: Execute the command: wmap rhtradepaperbacks.com
810
- 2018-11-05 21:52:59 -0500: wmap: Execute the command: wmap rhtradepublicity.com
811
- 2018-11-05 21:53:02 -0500: wmap: Execute the command: wmap ridersflight.com
812
- 2018-11-05 21:53:05 -0500: wmap: Execute the command: wmap ridersmap.com
813
- 2018-11-05 21:53:11 -0500: wmap: Execute the command: wmap rightaddress-book.com
814
- 2018-11-05 21:53:13 -0500: wmap: Execute the command: wmap robertnewcomb.com
815
- 2018-11-05 21:53:23 -0500: wmap: Execute the command: wmap romanceatrandom.com
816
- 2018-11-05 21:53:30 -0500: wmap: Execute the command: wmap romanovprophecy.com
817
- 2018-11-05 21:53:33 -0500: wmap: Execute the command: wmap rosarygirls.com
818
- 2018-11-05 21:53:39 -0500: wmap: Execute the command: wmap rosewaterandsodabread.com
819
- 2018-11-05 21:53:39 -0500: wmap: Execute the command: wmap ruleoffour.com
820
- 2018-11-05 21:53:45 -0500: wmap: Execute the command: wmap ruleoffourbook.com
821
- 2018-11-05 21:53:51 -0500: wmap: Execute the command: wmap salman-rushdie.com
822
- 2018-11-05 21:53:56 -0500: wmap: Execute the command: wmap salmanrushdieauthor.com
823
- 2018-11-05 21:54:00 -0500: wmap: Execute the command: wmap sarahdunantbooks.com
824
- 2018-11-05 21:54:07 -0500: wmap: Execute the command: wmap scarletrules.com
825
- 2018-11-05 21:54:09 -0500: wmap: Execute the command: wmap scarlettrules.com
826
- 2018-11-05 21:54:14 -0500: wmap: Execute the command: wmap scottiesjournal.com
827
- 2018-11-05 21:54:15 -0500: wmap: Execute the command: wmap secretingredientsbook.com
828
- 2018-11-05 21:54:26 -0500: wmap: Execute the command: wmap secretnovel.com
829
- 2018-11-05 21:54:30 -0500: wmap: Execute the command: wmap secretnovels.com
830
- 2018-11-05 21:54:30 -0500: wmap: Execute the command: wmap seizethenight.com
831
- 2018-11-05 21:54:35 -0500: wmap: Execute the command: wmap shakespearecompleteworks.com
832
- 2018-11-05 21:54:40 -0500: wmap: Execute the command: wmap shamutaughtme.com
833
- 2018-11-05 21:54:41 -0500: wmap: Execute the command: wmap shannara.com
834
- 2018-11-05 21:54:42 -0500: wmap: Execute the command: wmap shareluckyus.com
835
- 2018-11-05 21:54:43 -0500: wmap: Execute the command: wmap sheehan-book.com
836
- 2018-11-05 21:54:44 -0500: wmap: Execute the command: wmap shelterofstone.com
837
- 2018-11-05 21:54:50 -0500: wmap: Execute the command: wmap sheltersofstone.com
838
- 2018-11-05 21:54:55 -0500: wmap: Execute the command: wmap shesnottherebook.com
839
- 2018-11-05 21:54:57 -0500: wmap: Execute the command: wmap shoresoffate.com
840
- 2018-11-05 21:54:59 -0500: wmap: Execute the command: wmap sixbadthings.com
841
- 2018-11-05 21:55:07 -0500: wmap: Execute the command: wmap smallgreatthings.com
842
- 2018-11-05 21:55:10 -0500: wmap: Execute the command: wmap smittenword.com
843
- 2018-11-05 21:55:20 -0500: wmap: Execute the command: wmap socialanimalbook.com
844
- 2018-11-05 21:55:28 -0500: wmap: Execute the command: wmap something-to-talk-about.com
845
- 2018-11-05 21:55:37 -0500: wmap: Execute the command: wmap sonofares.com
846
- 2018-11-05 21:55:40 -0500: wmap: Execute the command: wmap sonsofares.com
847
- 2018-11-05 21:55:43 -0500: wmap: Execute the command: wmap souvenirbook.com
848
- 2018-11-05 21:55:52 -0500: wmap: Execute the command: wmap spectrapulsebooks.com
849
- 2018-11-05 21:56:02 -0500: wmap: Execute the command: wmap speedofdarkreader.com
850
- 2018-11-05 21:56:02 -0500: wmap: Execute the command: wmap spiegelandgrau.com
851
- 2018-11-05 21:56:06 -0500: wmap: Execute the command: wmap standingintherainbow.com
852
- 2018-11-05 21:56:10 -0500: wmap: Execute the command: wmap starwarsdeathtroopers.com
853
- 2018-11-05 21:56:10 -0500: wmap: Execute the command: wmap steelheartbooks.com
854
- 2018-11-05 21:56:16 -0500: wmap: Execute the command: wmap strangerthingsbooks.com
855
- 2018-11-05 21:56:18 -0500: wmap: Execute the command: wmap striversrowbooks.com
856
- 2018-11-05 21:56:30 -0500: wmap: Execute the command: wmap strongesttribe.com
857
- 2018-11-05 21:56:33 -0500: wmap: Execute the command: wmap subject0.com
858
- 2018-11-05 21:56:40 -0500: wmap: Execute the command: wmap summer-share-reads-candy.com
859
- 2018-11-05 21:56:53 -0500: wmap: Execute the command: wmap summer-share-reads.com
860
- 2018-11-05 21:56:55 -0500: wmap: Execute the command: wmap summersharereads.com
861
- 2018-11-05 21:56:56 -0500: wmap: Execute the command: wmap supercrunchers.com
862
- 2018-11-05 21:57:02 -0500: wmap: Execute the command: wmap supercrunchers.net
863
- 2018-11-05 21:57:05 -0500: wmap: Execute the command: wmap supercruncherscovers.com
864
- 2018-11-05 21:57:09 -0500: wmap: Execute the command: wmap supercrunchersvote.com
865
- 2018-11-05 21:57:17 -0500: wmap: Execute the command: wmap supersadapp.com
866
- 2018-11-05 21:57:17 -0500: wmap: Execute the command: wmap takeyourbookclubtoguernsey.com
867
- 2018-11-05 21:57:26 -0500: wmap: Execute the command: wmap tearsofthedesert.com
868
- 2018-11-05 21:57:30 -0500: wmap: Execute the command: wmap tenhealthysecrets.com
869
- 2018-11-05 21:57:33 -0500: wmap: Execute the command: wmap tewoodsauthor.com
870
- 2018-11-05 21:57:40 -0500: wmap: Execute the command: wmap thanksgivingwithsam.com
871
- 2018-11-05 21:57:41 -0500: wmap: Execute the command: wmap thayerbook.com
872
- 2018-11-05 21:57:43 -0500: wmap: Execute the command: wmap thbigskinny.com
873
- 2018-11-05 21:57:45 -0500: wmap: Execute the command: wmap thebangbook.com
874
- 2018-11-05 21:57:48 -0500: wmap: Execute the command: wmap theblackswantheory.com
875
- 2018-11-05 21:57:49 -0500: wmap: Execute the command: wmap thecharlemagnepursuit.com
876
- 2018-11-05 21:57:55 -0500: wmap: Execute the command: wmap thechrysalisbook.com
877
- 2018-11-05 21:57:55 -0500: wmap: Execute the command: wmap thecityandthecity.com
878
- 2018-11-05 21:58:01 -0500: wmap: Execute the command: wmap thedarkvolume.com
879
- 2018-11-05 21:58:03 -0500: wmap: Execute the command: wmap thedeviousbookforcats.com
880
- 2018-11-05 21:58:06 -0500: wmap: Execute the command: wmap thedialpress.com
881
- 2018-11-05 21:58:13 -0500: wmap: Execute the command: wmap thedinnerchallenge.com
882
- 2018-11-05 21:58:18 -0500: wmap: Execute the command: wmap theeightbook.com
883
- 2018-11-05 21:58:21 -0500: wmap: Execute the command: wmap thefire-book.com
884
- 2018-11-05 21:58:26 -0500: wmap: Execute the command: wmap thefirenovel.com
885
- 2018-11-05 21:58:33 -0500: wmap: Execute the command: wmap thegirlbeforebook.com
886
- 2018-11-05 21:58:34 -0500: wmap: Execute the command: wmap thegoodguytrailercontest.com
887
- 2018-11-05 21:58:38 -0500: wmap: Execute the command: wmap theheadoverheelsbook.com
888
- 2018-11-05 21:58:41 -0500: wmap: Execute the command: wmap thelastbridgebook.com
889
- 2018-11-05 21:58:45 -0500: wmap: Execute the command: wmap thelostpainting.com
890
- 2018-11-05 21:58:51 -0500: wmap: Execute the command: wmap thelunchhourbookclub.com
891
- 2018-11-05 21:58:53 -0500: wmap: Execute the command: wmap themarchup.com
892
- 2018-11-05 21:58:54 -0500: wmap: Execute the command: wmap thenecklacebook.com
893
- 2018-11-05 21:58:56 -0500: wmap: Execute the command: wmap theorchidthief.com
894
- 2018-11-05 21:59:00 -0500: wmap: Execute the command: wmap thepassageawaits.com
895
- 2018-11-05 21:59:00 -0500: wmap: Execute the command: wmap thepassagebook.com
896
- 2018-11-05 21:59:06 -0500: wmap: Execute the command: wmap therandomhousereadinggroup.com
897
- 2018-11-05 21:59:13 -0500: wmap: Execute the command: wmap thereaderscircle.com
898
- 2018-11-05 21:59:15 -0500: wmap: Execute the command: wmap therightaddress-book.com
899
- 2018-11-05 21:59:15 -0500: wmap: Execute the command: wmap therscshakespeare.com
900
- 2018-11-05 21:59:15 -0500: wmap: Execute the command: wmap theshelterofstone.com
901
- 2018-11-05 21:59:28 -0500: wmap: Execute the command: wmap thesheltersofstone.com
902
- 2018-11-05 21:59:29 -0500: wmap: Execute the command: wmap theskinnyrulesbook.com
903
- 2018-11-05 21:59:30 -0500: wmap: Execute the command: wmap thesnowball-thebook.com
904
- 2018-11-05 21:59:39 -0500: wmap: Execute the command: wmap thesnowballthebook.com
905
- 2018-11-05 21:59:50 -0500: wmap: Execute the command: wmap thespectrumbook.com
906
- 2018-11-05 21:59:54 -0500: wmap: Execute the command: wmap thetellingroom.com
907
- 2018-11-05 21:59:55 -0500: wmap: Execute the command: wmap thethirdsecret.com
908
- 2018-11-05 21:59:58 -0500: wmap: Execute the command: wmap thethirdwish.com
909
- 2018-11-05 22:00:04 -0500: wmap: Execute the command: wmap thetoolsapp.com
910
- 2018-11-05 22:00:06 -0500: wmap: Execute the command: wmap thetranslator-book.com
911
- 2018-11-05 22:00:15 -0500: wmap: Execute the command: wmap thetruthaboutfox.com
912
- 2018-11-05 22:00:15 -0500: wmap: Execute the command: wmap thetwelve-book.com
913
- 2018-11-05 22:00:17 -0500: wmap: Execute the command: wmap theunlikelypilgrimageofharoldfry.com
914
- 2018-11-05 22:00:20 -0500: wmap: Execute the command: wmap thevastmachine.com
915
- 2018-11-05 22:00:32 -0500: wmap: Execute the command: wmap thevenetianbetrayal.com
916
- 2018-11-05 22:00:32 -0500: wmap: Execute the command: wmap thewardedman.com
917
- 2018-11-05 22:00:33 -0500: wmap: Execute the command: wmap thewishingyear.com
918
- 2018-11-05 22:00:41 -0500: wmap: Execute the command: wmap thewishworksfactory.biz
919
- 2018-11-05 22:00:45 -0500: wmap: Execute the command: wmap thewishworksfactory.com
920
- 2018-11-05 22:00:54 -0500: wmap: Execute the command: wmap thewordonfilm.com
921
- 2018-11-05 22:01:01 -0500: wmap: Execute the command: wmap thousandautumns.com
922
- 2018-11-05 22:01:03 -0500: wmap: Execute the command: wmap throughvioleteyes.com
923
- 2018-11-05 22:01:04 -0500: wmap: Execute the command: wmap tigerheartbook.com
924
- 2018-11-05 22:01:07 -0500: wmap: Execute the command: wmap timesbooks.com
925
- 2018-11-05 22:01:07 -0500: wmap: Execute the command: wmap tinbcomments.com
926
- 2018-11-05 22:01:09 -0500: wmap: Execute the command: wmap tolkienbooks.org
927
- 2018-11-05 22:01:10 -0500: wmap: Execute the command: wmap tracyisthenewblack.com
928
- 2018-11-05 22:01:21 -0500: wmap: Execute the command: wmap truthaboutfox.com
929
- 2018-11-05 22:01:27 -0500: wmap: Execute the command: wmap turningtablescontest.com
930
- 2018-11-05 22:01:36 -0500: wmap: Execute the command: wmap unlundun.com
931
- 2018-11-05 22:01:38 -0500: wmap: Execute the command: wmap valueofbooks.com
932
- 2018-11-05 22:01:40 -0500: wmap: Execute the command: wmap vastconspiracy.com
933
- 2018-11-05 22:01:47 -0500: wmap: Execute the command: wmap venetianbetrayal.com
934
- 2018-11-05 22:01:53 -0500: wmap: Execute the command: wmap verlagsgrupperandomhouse.com
935
- 2018-11-05 22:02:01 -0500: wmap: Execute the command: wmap verticalburn.com
936
- 2018-11-05 22:02:02 -0500: wmap: Execute the command: wmap villard.com
937
- 2018-11-05 22:02:05 -0500: wmap: Execute the command: wmap villardbooks.com
938
- 2018-11-05 22:02:09 -0500: wmap: Execute the command: wmap villardbookspublicity.com
939
- 2018-11-05 22:02:09 -0500: wmap: Execute the command: wmap villardpublicity.com
940
- 2018-11-05 22:02:09 -0500: wmap: Execute the command: wmap violet-eyes.com
941
- 2018-11-05 22:02:24 -0500: wmap: Execute the command: wmap violetkupersmith.com
942
- 2018-11-05 22:02:35 -0500: wmap: Execute the command: wmap virginofsmallplains.com
943
- 2018-11-05 22:02:37 -0500: wmap: Execute the command: wmap wakebyannahope.com
944
- 2018-11-05 22:02:39 -0500: wmap: Execute the command: wmap walterwalkerauthor.com
945
- 2018-11-05 22:02:39 -0500: wmap: Execute the command: wmap wardedman.com
946
- 2018-11-05 22:02:42 -0500: wmap: Execute the command: wmap watchmedisappear.com
947
- 2018-11-05 22:02:47 -0500: wmap: Execute the command: wmap wednesdaysistersbook.com
948
- 2018-11-05 22:02:53 -0500: wmap: Execute the command: wmap weheartheart.com
949
- 2018-11-05 22:02:53 -0500: wmap: Execute the command: wmap weheartlove.com
950
- 2018-11-05 22:02:59 -0500: wmap: Execute the command: wmap what-matters-most.net
951
- 2018-11-05 22:03:01 -0500: wmap: Execute the command: wmap whatisyourwork.com
952
- 2018-11-05 22:03:08 -0500: wmap: Execute the command: wmap whattoexpectwhenyoureexpected.com
953
- 2018-11-05 22:03:08 -0500: wmap: Execute the command: wmap whattoexpectwhenyourexpected.com
954
- 2018-11-05 22:03:12 -0500: wmap: Execute the command: wmap whatyouwantisinthelimo.com
955
- 2018-11-05 22:03:16 -0500: wmap: Execute the command: wmap whocontrolshillman.com
956
- 2018-11-05 22:03:16 -0500: wmap: Execute the command: wmap wishingyear.com
957
- 2018-11-05 22:03:21 -0500: wmap: Execute the command: wmap withoutwarningbook.com
958
- 2018-11-05 22:03:26 -0500: wmap: Execute the command: wmap wordsatrandom.com
959
- 2018-11-05 22:03:27 -0500: wmap: Execute the command: wmap worldofexpression.org
960
- 2018-11-05 22:03:28 -0500: wmap: Execute the command: wmap writteninpink.com
961
- 2018-11-05 22:03:32 -0500: wmap: Execute the command: wmap wsjfurst.com
962
- 2018-11-05 22:03:34 -0500: wmap: Execute the command: wmap yann-martel.com
963
- 2018-11-05 23:18:11 -0500: wmap: Execute the command: wmap 12-21book.com
964
- 2018-11-05 23:18:35 -0500: wmap: Execute the command: wmap 1968thebook.com
965
- 2018-11-05 23:19:32 -0500: wmap: Execute the command: wmap 20by20contest.com
966
- 2018-11-05 23:20:29 -0500: wmap: Execute the command: wmap 20by20essays.com
967
- 2018-11-05 23:21:14 -0500: wmap: Execute the command: wmap 20essays.com
968
- 2018-11-05 23:22:23 -0500: wmap: Execute the command: wmap 20sgirl.com
969
- 2018-11-05 23:23:14 -0500: wmap: Execute the command: wmap 20sgirlprize.com
970
- 2018-11-05 23:24:15 -0500: wmap: Execute the command: wmap 42words.com
971
- 2018-11-05 23:30:47 -0500: wmap: Execute the command: wmap 77shadowstreet.com
972
- 2018-11-05 23:31:04 -0500: wmap: Execute the command: wmap abiglittlelife.com
973
- 2018-11-05 23:31:18 -0500: wmap: Execute the command: wmap aegoliusclub.com
974
- 2018-11-05 23:31:31 -0500: wmap: Execute the command: wmap alexandrialink.com
975
- 2018-11-05 23:32:01 -0500: wmap: Execute the command: wmap aliceihavebeen.com
976
- 2018-11-05 23:32:39 -0500: wmap: Execute the command: wmap americancrimespree.com
977
- 2018-11-05 23:32:58 -0500: wmap: Execute the command: wmap americanempire.net
978
- 2018-11-05 23:33:49 -0500: wmap: Execute the command: wmap americanmadebook.com
979
- 2018-11-05 23:34:25 -0500: wmap: Execute the command: wmap americanwidowbook.com
980
- 2018-11-05 23:34:58 -0500: wmap: Execute the command: wmap andsonsbook.com
981
- 2018-11-05 23:35:47 -0500: wmap: Execute the command: wmap annahopebooks.com
982
- 2018-11-05 23:36:02 -0500: wmap: Execute the command: wmap arishavit.com
983
- 2018-11-05 23:36:16 -0500: wmap: Execute the command: wmap armageddonschildren.com
984
- 2018-11-05 23:37:12 -0500: wmap: Execute the command: wmap artiestoofat.com
985
- 2018-11-05 23:38:12 -0500: wmap: Execute the command: wmap artietoofat.com
986
- 2018-11-05 23:38:27 -0500: wmap: Execute the command: wmap artofbeingbook.com
987
- 2018-11-05 23:48:36 -0500: wmap: Execute the command: wmap ashleybell.info
988
- 2018-11-05 23:49:06 -0500: wmap: Execute the command: wmap ashleybell.net
989
- 2018-11-05 23:50:20 -0500: wmap: Execute the command: wmap athreadofgrace.com
990
- 2018-11-05 23:51:06 -0500: wmap: Execute the command: wmap atrandom.com
991
- 2018-11-05 23:51:17 -0500: wmap: Execute the command: wmap atrandombooks.com
992
- 2018-11-05 23:51:27 -0500: wmap: Execute the command: wmap auel.com
993
- 2018-11-05 23:51:33 -0500: wmap: Execute the command: wmap authorjeffsoloway.com
994
- 2018-11-05 23:51:44 -0500: wmap: Execute the command: wmap authorphonechat.com
995
- 2018-11-05 23:52:22 -0500: wmap: Execute the command: wmap babylonrisingbook.com
996
- 2018-11-05 23:53:35 -0500: wmap: Execute the command: wmap babylonrisingseries.com
997
- 2018-11-05 23:54:08 -0500: wmap: Execute the command: wmap babywhisperersecrets.com
998
- 2018-11-05 23:54:51 -0500: wmap: Execute the command: wmap bakingcakesoffer.com
999
- 2018-11-05 23:55:06 -0500: wmap: Execute the command: wmap ballantine.biz
1000
- 2018-11-05 23:56:50 -0500: wmap: Execute the command: wmap ballantinebook.com
1001
- 2018-11-05 23:57:23 -0500: wmap: Execute the command: wmap ballantinebooks.biz
1002
- 2018-11-05 23:59:13 -0500: wmap: Execute the command: wmap ballantinebooks.com
1003
- 2018-11-05 23:59:34 -0500: wmap: Execute the command: wmap ballantinereaderscircle.com
1004
- 2018-11-05 23:59:59 -0500: wmap: Execute the command: wmap ballantinereadingguides.com
1005
- 2018-11-06 00:00:53 -0500: wmap: Execute the command: wmap bangforyourbook.com
1006
- 2018-11-06 00:01:44 -0500: wmap: Execute the command: wmap bantam.com
1007
- 2018-11-06 00:02:35 -0500: wmap: Execute the command: wmap bantambooks.biz
1008
- 2018-11-06 00:04:20 -0500: wmap: Execute the command: wmap bantamclassic.com
1009
- 2018-11-06 00:05:08 -0500: wmap: Execute the command: wmap bantamclassics.com
1010
- 2018-11-06 00:05:33 -0500: wmap: Execute the command: wmap bantamdell.com
1011
- 2018-11-06 00:06:34 -0500: wmap: Execute the command: wmap bantamdellarc.com
1012
- 2018-11-06 00:07:11 -0500: wmap: Execute the command: wmap bantamdellpodcast.com
1013
- 2018-11-06 00:08:07 -0500: wmap: Execute the command: wmap bantamdellstories.com
1014
- 2018-11-06 00:09:01 -0500: wmap: Execute the command: wmap bantamdellsubrights.com
1015
- 2018-11-06 00:09:47 -0500: wmap: Execute the command: wmap bantamdiscovery.com
1016
- 2018-11-06 00:10:41 -0500: wmap: Execute the command: wmap bantamdiscoverybooks.com
1017
- 2018-11-06 00:11:36 -0500: wmap: Execute the command: wmap bantamshakespeare.com
1018
- 2018-11-06 00:12:14 -0500: wmap: Execute the command: wmap bantamspectra.net
1019
- 2018-11-06 00:12:52 -0500: wmap: Execute the command: wmap bdbooksellercafe.com
1020
- 2018-11-06 00:13:07 -0500: wmap: Execute the command: wmap beautyandthebookshow.com
1021
- 2018-11-06 00:15:06 -0500: wmap: Execute the command: wmap becomingmarie.com
1022
- 2018-11-06 00:15:39 -0500: wmap: Execute the command: wmap behindthebeautifulforevers.com
1023
- 2018-11-06 00:16:50 -0500: wmap: Execute the command: wmap belvaplain.com
1024
- 2018-11-06 00:17:39 -0500: wmap: Execute the command: wmap benop.life
1025
- 2018-11-06 00:17:53 -0500: wmap: Execute the command: wmap bestfirstsentence.com
1026
- 2018-11-06 00:18:08 -0500: wmap: Execute the command: wmap bewarethevastmachine.com
1027
- 2018-11-06 00:18:23 -0500: wmap: Execute the command: wmap blackbook35.com
1028
- 2018-11-06 00:19:11 -0500: wmap: Execute the command: wmap blackmirrorbooks.com
1029
- 2018-11-06 00:20:08 -0500: wmap: Execute the command: wmap blackswanthebook.com
1030
- 2018-11-06 00:20:43 -0500: wmap: Execute the command: wmap blackswantheory.com
1031
- 2018-11-06 00:21:32 -0500: wmap: Execute the command: wmap bloodandice.com
1032
- 2018-11-06 00:22:21 -0500: wmap: Execute the command: wmap bonappetitbooks.com
1033
- 2018-11-06 00:24:20 -0500: wmap: Execute the command: wmap boneclocks.com
1034
- 2018-11-06 00:24:34 -0500: wmap: Execute the command: wmap bookclubbookfair.com
1035
- 2018-11-06 00:25:12 -0500: wmap: Execute the command: wmap bookclubfest.com
1036
- 2018-11-06 00:25:40 -0500: wmap: Execute the command: wmap bookedforbreakfast.com
1037
- 2018-11-06 00:26:24 -0500: wmap: Execute the command: wmap booksoftortall.com
1038
- 2018-11-06 00:27:14 -0500: wmap: Execute the command: wmap booksus.com
1039
- 2018-11-06 00:27:28 -0500: wmap: Execute the command: wmap boom-brokaw.com
1040
- 2018-11-06 00:27:42 -0500: wmap: Execute the command: wmap boris-akunin.com
1041
- 2018-11-06 00:27:56 -0500: wmap: Execute the command: wmap boydvartybooks.com
1042
- 2018-11-06 00:28:07 -0500: wmap: Execute the command: wmap brc-phonechats.com
1043
- 2018-11-06 00:29:02 -0500: wmap: Execute the command: wmap brcforbooksellers.com
1044
- 2018-11-06 00:29:40 -0500: wmap: Execute the command: wmap brcphonechat.com
1045
- 2018-11-06 00:30:34 -0500: wmap: Execute the command: wmap brcphonechats.com
1046
- 2018-11-06 00:31:28 -0500: wmap: Execute the command: wmap breaking-and-entering.com
1047
- 2018-11-06 00:32:28 -0500: wmap: Execute the command: wmap brightsideofdisaster.com
1048
- 2018-11-06 00:33:29 -0500: wmap: Execute the command: wmap britneybooks.com
1049
- 2018-11-06 00:33:43 -0500: wmap: Execute the command: wmap britneysbook.com
1050
- 2018-11-06 00:34:00 -0500: wmap: Execute the command: wmap britneyspearsbook.com
1051
- 2018-11-06 00:34:14 -0500: wmap: Execute the command: wmap brockmannrebate.com
1052
- 2018-11-06 00:34:57 -0500: wmap: Execute the command: wmap brooklyn-dodgers-book.com
1053
- 2018-11-06 00:35:40 -0500: wmap: Execute the command: wmap brooklyndodgers-book.com
1054
- 2018-11-06 00:36:42 -0500: wmap: Execute the command: wmap bryanstevensonbooks.com
1055
- 2018-11-06 00:37:02 -0500: wmap: Execute the command: wmap bsireporting.com
1056
- 2018-11-06 00:38:59 -0500: wmap: Execute the command: wmap bushrhyme.com
1057
- 2018-11-06 00:39:37 -0500: wmap: Execute the command: wmap buyinginbook.com
1058
- 2018-11-06 00:39:51 -0500: wmap: Execute the command: wmap cathedralofthewild.com
1059
- 2018-11-06 00:40:02 -0500: wmap: Execute the command: wmap charlemagnepursuit.com
1060
- 2018-11-06 00:40:58 -0500: wmap: Execute the command: wmap chatwithlisasee.com
1061
- 2018-11-06 00:42:02 -0500: wmap: Execute the command: wmap cityofmirrorsbook.com
1062
- 2018-11-06 00:42:16 -0500: wmap: Execute the command: wmap cliopuddinrecipe.com
1063
- 2018-11-06 00:42:30 -0500: wmap: Execute the command: wmap colleenpatrickyoudream.com
1064
- 2018-11-06 00:43:24 -0500: wmap: Execute the command: wmap confessionsofadognapper.com
1065
- 2018-11-06 00:43:37 -0500: wmap: Execute the command: wmap conspiracyfools.com
1066
- 2018-11-06 00:44:23 -0500: wmap: Execute the command: wmap conspiracyoffools-book.com
1067
- 2018-11-06 00:45:25 -0500: wmap: Execute the command: wmap conspiracyoffools.com
1068
- 2018-11-06 00:46:03 -0500: wmap: Execute the command: wmap conspiracyoffoolsbook.com
1069
- 2018-11-06 00:47:02 -0500: wmap: Execute the command: wmap conspiracythriller.com
1070
- 2018-11-06 00:47:56 -0500: wmap: Execute the command: wmap conviction-book.com
1071
- 2018-11-06 00:48:37 -0500: wmap: Execute the command: wmap creativityincbook.com
1072
- 2018-11-06 00:49:38 -0500: wmap: Execute the command: wmap crescentbooks.com
1073
- 2018-11-06 00:50:11 -0500: wmap: Execute the command: wmap crimeofprivilege.com
1074
- 2018-11-06 00:51:06 -0500: wmap: Execute the command: wmap crossexaminationbooks.com
1075
- 2018-11-06 00:51:18 -0500: wmap: Execute the command: wmap crunchycon.net
1076
- 2018-11-06 00:51:41 -0500: wmap: Execute the command: wmap crystalskullbook.com
1077
- 2018-11-06 00:52:09 -0500: wmap: Execute the command: wmap cubiclesurvivalguide.com
1078
- 2018-11-06 00:52:23 -0500: wmap: Execute the command: wmap cultural-creatives.com
1079
- 2018-11-06 00:52:38 -0500: wmap: Execute the command: wmap curtisandjane.com
1080
- 2018-11-06 00:53:10 -0500: wmap: Execute the command: wmap curtisandjane.net
1081
- 2018-11-06 00:54:15 -0500: wmap: Execute the command: wmap curtisandjane.org
1082
- 2018-11-06 00:54:52 -0500: wmap: Execute the command: wmap daisyjonesandthesix.com
1083
- 2018-11-06 00:55:04 -0500: wmap: Execute the command: wmap dakotameyerbooks.com
1084
- 2018-11-06 00:55:50 -0500: wmap: Execute the command: wmap danielle-steel.com
1085
- 2018-11-06 00:56:28 -0500: wmap: Execute the command: wmap daniellesteel.com
1086
- 2018-11-06 00:56:41 -0500: wmap: Execute the command: wmap danyadunbar.com
1087
- 2018-11-06 00:56:55 -0500: wmap: Execute the command: wmap darkfeverpodcast.com
1088
- 2018-11-06 00:57:52 -0500: wmap: Execute the command: wmap darthwho.com
1089
- 2018-11-06 00:58:43 -0500: wmap: Execute the command: wmap davidgilbertbooks.com
1090
- 2018-11-06 00:59:31 -0500: wmap: Execute the command: wmap davidmitchellbooks.com
1091
- 2018-11-06 00:59:45 -0500: wmap: Execute the command: wmap deadendrebate.com
1092
- 2018-11-06 01:00:36 -0500: wmap: Execute the command: wmap deathtroopers.com
1093
- 2018-11-06 01:01:50 -0500: wmap: Execute the command: wmap deathtrooperstrailercontest.com
1094
- 2018-11-06 01:02:32 -0500: wmap: Execute the command: wmap dellbooks.com
1095
- 2018-11-06 01:03:15 -0500: wmap: Execute the command: wmap dellpublishing.biz
1096
- 2018-11-06 01:05:00 -0500: wmap: Execute the command: wmap delrey.xxx
1097
- 2018-11-06 01:06:46 -0500: wmap: Execute the command: wmap delreybooks.com
1098
- 2018-11-06 01:07:42 -0500: wmap: Execute the command: wmap delreycomics.com
1099
- 2018-11-06 01:08:44 -0500: wmap: Execute the command: wmap delreycomics.info
1100
- 2018-11-06 01:09:01 -0500: wmap: Execute the command: wmap delreycomics.net
1101
- 2018-11-06 01:09:16 -0500: wmap: Execute the command: wmap delreycomics.org
1102
- 2018-11-06 01:09:30 -0500: wmap: Execute the command: wmap delreydigital.com
1103
- 2018-11-06 01:10:23 -0500: wmap: Execute the command: wmap delreymanga.com
1104
- 2018-11-06 01:11:12 -0500: wmap: Execute the command: wmap deltabooks.com
1105
- 2018-11-06 01:11:51 -0500: wmap: Execute the command: wmap depositorybankofzurich.com
1106
- 2018-11-06 01:12:44 -0500: wmap: Execute the command: wmap deviousbookforcats.com
1107
- 2018-11-06 01:13:46 -0500: wmap: Execute the command: wmap dialpress.com
1108
- 2018-11-06 01:14:21 -0500: wmap: Execute the command: wmap dianestingley.com
1109
- 2018-11-06 01:14:34 -0500: wmap: Execute the command: wmap dinnerchallenge.com
1110
- 2018-11-06 01:15:05 -0500: wmap: Execute the command: wmap doatg.com
1111
- 2018-11-06 01:19:40 -0500: wmap: Execute the command: wmap donnakaranbook.com
1112
- 2018-11-06 01:20:19 -0500: wmap: Execute the command: wmap doubleknightbooks.com
1113
- 2018-11-06 01:22:04 -0500: wmap: Execute the command: wmap dpolicebook.com
1114
- 2018-11-06 01:22:17 -0500: wmap: Execute the command: wmap dreameaters.com
1115
- 2018-11-06 01:22:55 -0500: wmap: Execute the command: wmap droppedmylastegg.com
1116
- 2018-11-06 01:23:09 -0500: wmap: Execute the command: wmap dublin-book.com
1117
- 2018-11-06 01:23:23 -0500: wmap: Execute the command: wmap earthschildren.com
1118
- 2018-11-06 01:23:36 -0500: wmap: Execute the command: wmap earthschildren.net
1119
- 2018-11-06 01:23:50 -0500: wmap: Execute the command: wmap eatit2beatit.com
1120
- 2018-11-06 01:24:03 -0500: wmap: Execute the command: wmap ebadi-ecard.com
1121
- 2018-11-06 01:24:46 -0500: wmap: Execute the command: wmap edcatmull.com
1122
- 2018-11-06 01:25:42 -0500: wmap: Execute the command: wmap eddiehaungbooks.com
1123
- 2018-11-06 01:26:51 -0500: wmap: Execute the command: wmap eddiewritesbooks.com
1124
- 2018-11-06 01:27:42 -0500: wmap: Execute the command: wmap educatedbook.com
1125
- 2018-11-06 01:28:25 -0500: wmap: Execute the command: wmap egoandhubris.com
1126
- 2018-11-06 01:29:24 -0500: wmap: Execute the command: wmap elizabethstrout.com
1127
- 2018-11-06 01:30:44 -0500: wmap: Execute the command: wmap emilygiffinfans.com
1128
- 2018-11-06 01:32:52 -0500: wmap: Execute the command: wmap entercityofmirrors.com
1129
- 2018-11-06 01:33:06 -0500: wmap: Execute the command: wmap enterthepassage.com
1130
- 2018-11-06 01:33:19 -0500: wmap: Execute the command: wmap enterthetwelve.com
1131
- 2018-11-06 01:33:32 -0500: wmap: Execute the command: wmap ettabook.com
1132
- 2018-11-06 01:33:53 -0500: wmap: Execute the command: wmap exactlyasiam.net
1133
- 2018-11-06 01:34:07 -0500: wmap: Execute the command: wmap exactlyasiambook.com
1134
- 2018-11-06 01:34:21 -0500: wmap: Execute the command: wmap exorsith.com
1135
- 2018-11-06 01:34:35 -0500: wmap: Execute the command: wmap familycirclebooks.com
1136
- 2018-11-06 01:36:33 -0500: wmap: Execute the command: wmap fannie-flagg.com
1137
- 2018-11-06 01:36:47 -0500: wmap: Execute the command: wmap fateofthejedi.com
1138
- 2018-11-06 01:37:33 -0500: wmap: Execute the command: wmap faultlinebook.com
1139
- 2018-11-06 01:38:19 -0500: wmap: Execute the command: wmap fawcettbooks.com
1140
- 2018-11-06 01:39:10 -0500: wmap: Execute the command: wmap feverbornbook.com
1141
- 2018-11-06 01:39:42 -0500: wmap: Execute the command: wmap feverseries.com
1142
- 2018-11-06 01:40:26 -0500: wmap: Execute the command: wmap fifthsorceress.com
1143
- 2018-11-06 01:41:25 -0500: wmap: Execute the command: wmap fightthevastmachine.com
1144
- 2018-11-06 01:41:39 -0500: wmap: Execute the command: wmap findbillie.com
1145
- 2018-11-06 01:42:34 -0500: wmap: Execute the command: wmap finn-novel.com
1146
- 2018-11-06 01:42:47 -0500: wmap: Execute the command: wmap firstlit.com
1147
- 2018-11-06 01:43:00 -0500: wmap: Execute the command: wmap followthepassage.com
1148
- 2018-11-06 01:43:14 -0500: wmap: Execute the command: wmap fortheloveofadog.net
1149
- 2018-11-06 01:44:07 -0500: wmap: Execute the command: wmap foxnewstruestory.com
1150
- 2018-11-06 01:44:21 -0500: wmap: Execute the command: wmap fracescolejones.com
1151
- 2018-11-06 01:44:58 -0500: wmap: Execute the command: wmap fracturedcity.com
1152
- 2018-11-06 01:45:12 -0500: wmap: Execute the command: wmap fracturedcity.net
1153
- 2018-11-06 01:45:25 -0500: wmap: Execute the command: wmap fracturedcity.org
1154
- 2018-11-06 01:45:47 -0500: wmap: Execute the command: wmap fragipanihotel.com
1155
- 2018-11-06 01:46:01 -0500: wmap: Execute the command: wmap freepuddinrecipe.com
1156
- 2018-11-06 01:46:15 -0500: wmap: Execute the command: wmap freshofftheboatbook.com
1157
- 2018-11-06 01:46:37 -0500: wmap: Execute the command: wmap furstbook.com
1158
- 2018-11-06 01:46:48 -0500: wmap: Execute the command: wmap furythenovel.com
1159
- 2018-11-06 01:47:26 -0500: wmap: Execute the command: wmap gabrielshermanbooks.com
1160
- 2018-11-06 01:48:09 -0500: wmap: Execute the command: wmap garyshteyngart.com
1161
- 2018-11-06 01:48:22 -0500: wmap: Execute the command: wmap georgesaundersbooks.com
1162
- 2018-11-06 01:50:38 -0500: wmap: Execute the command: wmap getintoprep.com
1163
- 2018-11-06 01:53:32 -0500: wmap: Execute the command: wmap getoveryourself-book.com
1164
- 2018-11-06 01:54:24 -0500: wmap: Execute the command: wmap getpuddin.com
1165
- 2018-11-06 01:55:10 -0500: wmap: Execute the command: wmap giffordslastegg.com
1166
- 2018-11-06 01:55:25 -0500: wmap: Execute the command: wmap gilreavill.com
1167
- 2018-11-06 01:56:40 -0500: wmap: Execute the command: wmap givethebestadvice.com
1168
- 2018-11-06 01:57:43 -0500: wmap: Execute the command: wmap glassbooksofthedreameaters.com
1169
- 2018-11-06 01:58:05 -0500: wmap: Execute the command: wmap godfatherreturns.com
1170
- 2018-11-06 01:58:39 -0500: wmap: Execute the command: wmap gotosleepmethods.com
1171
- 2018-11-06 01:58:53 -0500: wmap: Execute the command: wmap gourmetbks.com
1172
- 2018-11-06 02:00:51 -0500: wmap: Execute the command: wmap gramercybooks.com
1173
- 2018-11-06 02:01:40 -0500: wmap: Execute the command: wmap greedwatch.net
1174
- 2018-11-06 02:02:30 -0500: wmap: Execute the command: wmap gregdinallo.com
1175
- 2018-11-06 02:03:04 -0500: wmap: Execute the command: wmap hanniballecter.com
1176
- 2018-11-06 02:03:33 -0500: wmap: Execute the command: wmap happynorooz.com
1177
- 2018-11-06 02:04:13 -0500: wmap: Execute the command: wmap harryturtledove.net
1178
- 2018-11-06 02:05:07 -0500: wmap: Execute the command: wmap hausfraubook.com
1179
- 2018-11-06 02:05:36 -0500: wmap: Execute the command: wmap hollypetersonthemanny.com
1180
- 2018-11-06 02:06:07 -0500: wmap: Execute the command: wmap homerepairishomicide.com
1181
- 2018-11-06 02:07:16 -0500: wmap: Execute the command: wmap hotelonthecornerofbitterandsweet.com
1182
- 2018-11-06 02:07:54 -0500: wmap: Execute the command: wmap houseatmidnight.com
1183
- 2018-11-06 02:08:24 -0500: wmap: Execute the command: wmap houseofcollectibles.com
1184
- 2018-11-06 02:08:54 -0500: wmap: Execute the command: wmap howgodchangesyourbrain.com
1185
- 2018-11-06 02:09:41 -0500: wmap: Execute the command: wmap howlerarmy.com
1186
- 2018-11-06 02:10:24 -0500: wmap: Execute the command: wmap howlerlegion.com
1187
- 2018-11-06 02:11:14 -0500: wmap: Execute the command: wmap howtowowbook.com
1188
- 2018-11-06 02:12:11 -0500: wmap: Execute the command: wmap iainlawrence.net
1189
- 2018-11-06 02:12:24 -0500: wmap: Execute the command: wmap iambabcock.com
1190
- 2018-11-06 02:12:38 -0500: wmap: Execute the command: wmap iknowwhytoo.com
1191
- 2018-11-06 02:12:52 -0500: wmap: Execute the command: wmap inlincolnshand.com
1192
- 2018-11-06 02:13:05 -0500: wmap: Execute the command: wmap intofire.com
1193
- 2018-11-06 02:13:19 -0500: wmap: Execute the command: wmap iranawakening.com
1194
- 2018-11-06 02:14:00 -0500: wmap: Execute the command: wmap irisjohansennovels.com
1195
- 2018-11-06 02:14:35 -0500: wmap: Execute the command: wmap isaacsstorm.com
1196
- 2018-11-06 02:15:11 -0500: wmap: Execute the command: wmap islandatthecenter.com
1197
- 2018-11-06 02:15:49 -0500: wmap: Execute the command: wmap islandatthecenteroftheworld.com
1198
- 2018-11-06 02:16:40 -0500: wmap: Execute the command: wmap ivybooks.com
1199
- 2018-11-06 02:17:39 -0500: wmap: Execute the command: wmap jamesleeburke.com
1200
- 2018-11-06 02:19:45 -0500: wmap: Execute the command: wmap janehawk.com
1201
- 2018-11-06 02:21:46 -0500: wmap: Execute the command: wmap jeanauel.com
1202
- 2018-11-06 02:22:00 -0500: wmap: Execute the command: wmap jeanauel.net
1203
- 2018-11-06 02:22:19 -0500: wmap: Execute the command: wmap jeanauel.org
1204
- 2018-11-06 02:23:31 -0500: wmap: Execute the command: wmap jeannenolan.com
1205
- 2018-11-06 02:24:20 -0500: wmap: Execute the command: wmap jeannenolanbooks.com
1206
- 2018-11-06 02:24:50 -0500: wmap: Execute the command: wmap jewelofmedina.com
1207
- 2018-11-06 02:25:53 -0500: wmap: Execute the command: wmap joanandersonbooks.com
1208
- 2018-11-06 02:26:06 -0500: wmap: Execute the command: wmap jodipicoultstory.com
1209
- 2018-11-06 02:27:11 -0500: wmap: Execute the command: wmap jonathankellerman.net
1210
- 2018-11-06 02:27:26 -0500: wmap: Execute the command: wmap josephgirzone.com
1211
- 2018-11-06 02:28:02 -0500: wmap: Execute the command: wmap judithmcnaughtforum.com
1212
- 2018-11-06 02:28:18 -0500: wmap: Execute the command: wmap julietbook.com
1213
- 2018-11-06 02:28:40 -0500: wmap: Execute the command: wmap justmercythebook.com
1214
- 2018-11-06 02:28:55 -0500: wmap: Execute the command: wmap justwhenithoughtiddropped.com
1215
- 2018-11-06 02:29:10 -0500: wmap: Execute the command: wmap kabulbeautyschool.net
1216
- 2018-11-06 02:29:24 -0500: wmap: Execute the command: wmap kabulbeautyschoolbook.com
1217
- 2018-11-06 02:30:32 -0500: wmap: Execute the command: wmap katz-dogs.com
1218
- 2018-11-06 02:31:15 -0500: wmap: Execute the command: wmap khizrkhanbooks.com
1219
- 2018-11-06 02:31:28 -0500: wmap: Execute the command: wmap kingdomironthrone.com
1220
- 2018-11-06 02:31:50 -0500: wmap: Execute the command: wmap kingdomnarrowsea.com
1221
- 2018-11-06 02:32:39 -0500: wmap: Execute the command: wmap kingdomoftheisles.com
1222
- 2018-11-06 02:33:08 -0500: wmap: Execute the command: wmap kingdomtrident.com
1223
- 2018-11-06 02:33:30 -0500: wmap: Execute the command: wmap kingscrapbook.com
1224
- 2018-11-06 02:33:44 -0500: wmap: Execute the command: wmap kinsellaplaylist.com
1225
- 2018-11-06 02:34:37 -0500: wmap: Execute the command: wmap kristinhannah.net
1226
- 2018-11-06 02:34:52 -0500: wmap: Execute the command: wmap ladyelizabethbook.com
1227
- 2018-11-06 02:35:06 -0500: wmap: Execute the command: wmap lamourfamilyheritagecelebration.com
1228
- 2018-11-06 02:35:39 -0500: wmap: Execute the command: wmap landisrebate.com
1229
- 2018-11-06 02:36:24 -0500: wmap: Execute the command: wmap lauramchughbooks.com
1230
- 2018-11-06 02:36:38 -0500: wmap: Execute the command: wmap laurenowenbooks.com
1231
- 2018-11-06 02:36:52 -0500: wmap: Execute the command: wmap lazaruschild.com
1232
- 2018-11-06 02:37:06 -0500: wmap: Execute the command: wmap lenadunhambooks.com
1233
- 2018-11-06 02:38:23 -0500: wmap: Execute the command: wmap lenguaviva.com
1234
- 2018-11-06 02:38:37 -0500: wmap: Execute the command: wmap lessonsfromdads.com
1235
- 2018-11-06 02:39:19 -0500: wmap: Execute the command: wmap letstakethelongwayhome.com
1236
- 2018-11-06 02:39:33 -0500: wmap: Execute the command: wmap lettertomydaughterbook.com
1237
- 2018-11-06 02:40:22 -0500: wmap: Execute the command: wmap lillysinghbook.com
1238
- 2018-11-06 02:40:35 -0500: wmap: Execute the command: wmap literaryquotationoftheweek.com
1239
- 2018-11-06 02:41:31 -0500: wmap: Execute the command: wmap literaryquoteoftheweek.com
1240
- 2018-11-06 02:42:19 -0500: wmap: Execute the command: wmap literaryquoteoftheweek.net
1241
- 2018-11-06 02:42:45 -0500: wmap: Execute the command: wmap litflash.com
1242
- 2018-11-06 02:42:58 -0500: wmap: Execute the command: wmap littlerandom.com
1243
- 2018-11-06 02:43:20 -0500: wmap: Execute the command: wmap loudestvoiceintheroom.com
1244
- 2018-11-06 02:43:57 -0500: wmap: Execute the command: wmap louislamourebooks.com
1245
- 2018-11-06 02:44:38 -0500: wmap: Execute the command: wmap lovesweptbooks.com
1246
- 2018-11-06 02:45:27 -0500: wmap: Execute the command: wmap lovingfrank.com
1247
- 2018-11-06 02:45:59 -0500: wmap: Execute the command: wmap luannerice.com
1248
- 2018-11-06 02:46:47 -0500: wmap: Execute the command: wmap luckyorsmart.com
1249
- 2018-11-06 02:47:21 -0500: wmap: Execute the command: wmap lullaby-book.com
1250
- 2018-11-06 02:48:04 -0500: wmap: Execute the command: wmap lunchhourbookclub.com
1251
- 2018-11-06 02:48:18 -0500: wmap: Execute the command: wmap malicemobile.com
1252
- 2018-11-06 02:48:32 -0500: wmap: Execute the command: wmap marianneszegedymaszak.com
1253
- 2018-11-06 02:48:45 -0500: wmap: Execute the command: wmap martywingate.com
1254
- 2018-11-06 02:49:22 -0500: wmap: Execute the command: wmap mavensword.com
1255
- 2018-11-06 02:50:28 -0500: wmap: Execute the command: wmap michaelpaterniti.com
1256
- 2018-11-06 02:51:14 -0500: wmap: Execute the command: wmap michaelwalkerbooks.com
1257
- 2018-11-06 02:52:32 -0500: wmap: Execute the command: wmap midnightbreedread.com
1258
- 2018-11-06 02:54:02 -0500: wmap: Execute the command: wmap milkglassmoon.com
1259
- 2018-11-06 02:54:40 -0500: wmap: Execute the command: wmap misterpip.com
1260
- 2018-11-06 02:55:25 -0500: wmap: Execute the command: wmap mlpublicity.com
1261
- 2018-11-06 02:55:55 -0500: wmap: Execute the command: wmap modernlibrary.com
1262
- 2018-11-06 02:57:41 -0500: wmap: Execute the command: wmap modernlibrarypublicity.com
1263
- 2018-11-06 02:58:02 -0500: wmap: Execute the command: wmap moneywash.net
1264
- 2018-11-06 02:58:48 -0500: wmap: Execute the command: wmap morerizzoli.com
1265
- 2018-11-06 03:00:45 -0500: wmap: Execute the command: wmap morganroadbooks.com
1266
- 2018-11-06 03:01:26 -0500: wmap: Execute the command: wmap mortalis-books.com
1267
- 2018-11-06 03:02:03 -0500: wmap: Execute the command: wmap mrstomthumb.com
1268
- 2018-11-06 03:02:49 -0500: wmap: Execute the command: wmap mtaibbi.com
1269
- 2018-11-06 03:03:03 -0500: wmap: Execute the command: wmap muchtoopromisedland.com
1270
- 2018-11-06 03:03:41 -0500: wmap: Execute the command: wmap mygoldenplayhouse.com
1271
- 2018-11-06 03:04:26 -0500: wmap: Execute the command: wmap mypromisedlandbook.com
1272
- 2018-11-06 03:04:40 -0500: wmap: Execute the command: wmap mywifethinksimanidiot.com
1273
- 2018-11-06 03:05:23 -0500: wmap: Execute the command: wmap nateberkusbooks.com
1274
- 2018-11-06 03:05:45 -0500: wmap: Execute the command: wmap naturalsuspect.com
1275
- 2018-11-06 03:07:18 -0500: wmap: Execute the command: wmap needtoknowbook.com
1276
- 2018-11-06 03:07:29 -0500: wmap: Execute the command: wmap no1ladiesdetective.com
1277
- 2018-11-06 03:08:07 -0500: wmap: Execute the command: wmap nortonthecat.com
1278
- 2018-11-06 03:08:54 -0500: wmap: Execute the command: wmap notchicklit.com
1279
- 2018-11-06 03:09:21 -0500: wmap: Execute the command: wmap notchiclit.com
1280
- 2018-11-06 03:09:35 -0500: wmap: Execute the command: wmap ntkog.com
1281
- 2018-11-06 03:10:43 -0500: wmap: Execute the command: wmap officialbookclubselection.com
1282
- 2018-11-06 03:11:28 -0500: wmap: Execute the command: wmap offthepageevents.com
1283
- 2018-11-06 03:11:41 -0500: wmap: Execute the command: wmap olofrudbeck.com
1284
- 2018-11-06 03:11:54 -0500: wmap: Execute the command: wmap onefolgatestreet.com
1285
- 2018-11-06 03:15:35 -0500: wmap: Execute the command: wmap oneworldbks.com
1286
- 2018-11-06 03:15:46 -0500: wmap: Execute the command: wmap oneworldbooks.net
1287
- 2018-11-06 03:16:24 -0500: wmap: Execute the command: wmap oneworldstriversrow.com
1288
- 2018-11-06 03:17:26 -0500: wmap: Execute the command: wmap oneworldstriversrow.net
1289
- 2018-11-06 03:18:20 -0500: wmap: Execute the command: wmap onlinebookclubbookfair.com
1290
- 2018-11-06 03:18:55 -0500: wmap: Execute the command: wmap onmybedsidetable.com
1291
- 2018-11-06 03:19:10 -0500: wmap: Execute the command: wmap onmynightstand.com
1292
- 2018-11-06 03:19:51 -0500: wmap: Execute the command: wmap ourdogs.org
1293
- 2018-11-06 03:20:18 -0500: wmap: Execute the command: wmap outcastsunitedepilogue.com
1294
- 2018-11-06 03:20:54 -0500: wmap: Execute the command: wmap outlandersaga.com
1295
- 2018-11-06 03:21:38 -0500: wmap: Execute the command: wmap outletbooks.com
1296
- 2018-11-06 03:22:23 -0500: wmap: Execute the command: wmap parentsatrandom.com
1297
- 2018-11-06 03:22:37 -0500: wmap: Execute the command: wmap pariswife.com
1298
- 2018-11-06 03:23:05 -0500: wmap: Execute the command: wmap paulhardingbooks.com
1299
- 2018-11-06 03:23:18 -0500: wmap: Execute the command: wmap perrioshaughnessy.com
1300
- 2018-11-06 03:23:54 -0500: wmap: Execute the command: wmap piercebrownbooks.com
1301
- 2018-11-06 03:26:38 -0500: wmap: Execute the command: wmap piratesdaughterbook.com
1302
- 2018-11-06 03:27:07 -0500: wmap: Execute the command: wmap playmebooks.com
1303
- 2018-11-06 03:27:20 -0500: wmap: Execute the command: wmap playmeseries.com
1304
- 2018-11-06 03:27:34 -0500: wmap: Execute the command: wmap pleasebewithme.com
1305
- 2018-11-06 03:28:11 -0500: wmap: Execute the command: wmap popeandmussolini.com
1306
- 2018-11-06 03:29:07 -0500: wmap: Execute the command: wmap powerofapositiveno.com
1307
- 2018-11-06 03:29:21 -0500: wmap: Execute the command: wmap presidiopress.com
1308
- 2018-11-06 03:30:11 -0500: wmap: Execute the command: wmap promiseskeptthebook.com
1309
- 2018-11-06 03:30:25 -0500: wmap: Execute the command: wmap puddinrecipe.com
1310
- 2018-11-06 03:30:55 -0500: wmap: Execute the command: wmap queendomacrossthewater.com
1311
- 2018-11-06 03:31:50 -0500: wmap: Execute the command: wmap questofthrones.com
1312
- 2018-11-06 03:32:26 -0500: wmap: Execute the command: wmap racheljoycebooks.com
1313
- 2018-11-06 03:32:39 -0500: wmap: Execute the command: wmap randomhouseadulttradegroup.com
1314
- 2018-11-06 03:32:53 -0500: wmap: Execute the command: wmap randomhousebooks.com
1315
- 2018-11-06 03:33:06 -0500: wmap: Execute the command: wmap randomhousepublicity.com
1316
- 2018-11-06 03:33:28 -0500: wmap: Execute the command: wmap randomhousepublishinggroup.com
1317
- 2018-11-06 03:34:23 -0500: wmap: Execute the command: wmap randomhousereaderscircle.com
1318
- 2018-11-06 03:35:17 -0500: wmap: Execute the command: wmap randomhousereadinggroup.com
1319
- 2018-11-06 03:35:47 -0500: wmap: Execute the command: wmap randomhousetrade.com
1320
- 2018-11-06 03:36:33 -0500: wmap: Execute the command: wmap randomhousetradegroup.com
1321
- 2018-11-06 03:37:11 -0500: wmap: Execute the command: wmap randomhousetradepaperbacks.com
1322
- 2018-11-06 03:38:00 -0500: wmap: Execute the command: wmap randomhousetradepublicity.com
1323
- 2018-11-06 03:38:38 -0500: wmap: Execute the command: wmap rcforbooksellers.com
1324
- 2018-11-06 03:39:14 -0500: wmap: Execute the command: wmap readavatar.com
1325
- 2018-11-06 03:39:26 -0500: wmap: Execute the command: wmap readavatarbooks.com
1326
- 2018-11-06 03:39:38 -0500: wmap: Execute the command: wmap readberg.com
1327
- 2018-11-06 03:40:29 -0500: wmap: Execute the command: wmap readbuyingin.com
1328
- 2018-11-06 03:41:15 -0500: wmap: Execute the command: wmap readcityofmirrors.com
1329
- 2018-11-06 03:42:01 -0500: wmap: Execute the command: wmap readeddie.com
1330
- 2018-11-06 03:43:08 -0500: wmap: Execute the command: wmap readfinn.com
1331
- 2018-11-06 03:44:05 -0500: wmap: Execute the command: wmap readleechild.com
1332
- 2018-11-06 03:44:56 -0500: wmap: Execute the command: wmap readminecraft.com
1333
- 2018-11-06 03:45:53 -0500: wmap: Execute the command: wmap readminecraftbooks.com
1334
- 2018-11-06 03:46:05 -0500: wmap: Execute the command: wmap readshakespeare.com
1335
- 2018-11-06 03:47:10 -0500: wmap: Execute the command: wmap readsophiekinsella.com
1336
- 2018-11-06 03:48:12 -0500: wmap: Execute the command: wmap readstarwars.com
1337
- 2018-11-06 03:48:54 -0500: wmap: Execute the command: wmap readstrangerthings.com
1338
- 2018-11-06 03:51:26 -0500: wmap: Execute the command: wmap readthebigskinny.com
1339
- 2018-11-06 03:52:10 -0500: wmap: Execute the command: wmap readthepassage.com
1340
- 2018-11-06 03:52:33 -0500: wmap: Execute the command: wmap readthequick.com
1341
- 2018-11-06 03:52:47 -0500: wmap: Execute the command: wmap readthesnowball.com
1342
- 2018-11-06 03:53:51 -0500: wmap: Execute the command: wmap readthetools.com
1343
- 2018-11-06 03:54:21 -0500: wmap: Execute the command: wmap readthetwelve.com
1344
- 2018-11-06 03:54:35 -0500: wmap: Execute the command: wmap redrisingbook.com
1345
- 2018-11-06 03:55:05 -0500: wmap: Execute the command: wmap redrisingew.com
1346
- 2018-11-06 03:55:36 -0500: wmap: Execute the command: wmap redrisingtrilogy.com
1347
- 2018-11-06 03:56:31 -0500: wmap: Execute the command: wmap rh-newsletters.com
1348
- 2018-11-06 03:57:05 -0500: wmap: Execute the command: wmap rhacademic.com
1349
- 2018-11-06 03:57:30 -0500: wmap: Execute the command: wmap rhadulttrade.com
1350
- 2018-11-06 03:58:13 -0500: wmap: Execute the command: wmap rhadulttradegroup.com
1351
- 2018-11-06 03:59:02 -0500: wmap: Execute the command: wmap rhpgnewsletters.com
1352
- 2018-11-06 04:00:00 -0500: wmap: Execute the command: wmap rhpodcast.com
1353
- 2018-11-06 04:00:14 -0500: wmap: Execute the command: wmap rhpublicity.com
1354
- 2018-11-06 04:00:38 -0500: wmap: Execute the command: wmap rhpublishinggroup.com
1355
- 2018-11-06 04:01:29 -0500: wmap: Execute the command: wmap rhreaderscircle.com
1356
- 2018-11-06 04:02:23 -0500: wmap: Execute the command: wmap rhreadinggroup.com
1357
- 2018-11-06 04:02:51 -0500: wmap: Execute the command: wmap rhtp.com
1358
- 2018-11-06 04:03:28 -0500: wmap: Execute the command: wmap rhtpaperbacks.com
1359
- 2018-11-06 04:04:22 -0500: wmap: Execute the command: wmap rhtppublicity.com
1360
- 2018-11-06 04:05:00 -0500: wmap: Execute the command: wmap rhtrade.com
1361
- 2018-11-06 04:06:11 -0500: wmap: Execute the command: wmap rhtradepaperbacks.com
1362
- 2018-11-06 04:07:07 -0500: wmap: Execute the command: wmap rhtradepublicity.com
1363
- 2018-11-06 04:07:32 -0500: wmap: Execute the command: wmap ridersflight.com
1364
- 2018-11-06 04:08:27 -0500: wmap: Execute the command: wmap ridersmap.com
1365
- 2018-11-06 04:09:00 -0500: wmap: Execute the command: wmap rightaddress-book.com
1366
- 2018-11-06 04:09:35 -0500: wmap: Execute the command: wmap robertnewcomb.com
1367
- 2018-11-06 04:11:29 -0500: wmap: Execute the command: wmap romanceatrandom.com
1368
- 2018-11-06 04:12:07 -0500: wmap: Execute the command: wmap romanovprophecy.com
1369
- 2018-11-06 04:12:55 -0500: wmap: Execute the command: wmap rosarygirls.com
1370
- 2018-11-06 04:13:55 -0500: wmap: Execute the command: wmap rosewaterandsodabread.com
1371
- 2018-11-06 04:14:48 -0500: wmap: Execute the command: wmap ruleoffour.com
1372
- 2018-11-06 04:15:02 -0500: wmap: Execute the command: wmap ruleoffourbook.com
1373
- 2018-11-06 04:15:26 -0500: wmap: Execute the command: wmap salman-rushdie.com
1374
- 2018-11-06 04:16:30 -0500: wmap: Execute the command: wmap salmanrushdieauthor.com
1375
- 2018-11-06 04:17:16 -0500: wmap: Execute the command: wmap sarahdunantbooks.com
1376
- 2018-11-06 04:17:57 -0500: wmap: Execute the command: wmap scarletrules.com
1377
- 2018-11-06 04:19:52 -0500: wmap: Execute the command: wmap scarlettrules.com
1378
- 2018-11-06 04:20:07 -0500: wmap: Execute the command: wmap scottiesjournal.com
1379
- 2018-11-06 04:20:54 -0500: wmap: Execute the command: wmap secretingredientsbook.com
1380
- 2018-11-06 04:21:34 -0500: wmap: Execute the command: wmap secretnovel.com
1381
- 2018-11-06 04:21:47 -0500: wmap: Execute the command: wmap secretnovels.com
1382
- 2018-11-06 04:22:00 -0500: wmap: Execute the command: wmap seizethenight.com
1383
- 2018-11-06 04:22:22 -0500: wmap: Execute the command: wmap shakespearecompleteworks.com
1384
- 2018-11-06 04:22:35 -0500: wmap: Execute the command: wmap shamutaughtme.com
1385
- 2018-11-06 04:22:48 -0500: wmap: Execute the command: wmap shannara.com
1386
- 2018-11-06 04:23:46 -0500: wmap: Execute the command: wmap shareluckyus.com
1387
- 2018-11-06 04:24:00 -0500: wmap: Execute the command: wmap sheehan-book.com
1388
- 2018-11-06 04:27:26 -0500: wmap: Execute the command: wmap shelterofstone.com
1389
- 2018-11-06 04:27:39 -0500: wmap: Execute the command: wmap sheltersofstone.com
1390
- 2018-11-06 04:28:23 -0500: wmap: Execute the command: wmap shesnottherebook.com
1391
- 2018-11-06 04:28:59 -0500: wmap: Execute the command: wmap shoresoffate.com
1392
- 2018-11-06 04:29:22 -0500: wmap: Execute the command: wmap sixbadthings.com
1393
- 2018-11-06 04:30:16 -0500: wmap: Execute the command: wmap smallgreatthings.com
1394
- 2018-11-06 04:32:28 -0500: wmap: Execute the command: wmap smittenword.com
1395
- 2018-11-06 04:33:01 -0500: wmap: Execute the command: wmap socialanimalbook.com
1396
- 2018-11-06 04:33:55 -0500: wmap: Execute the command: wmap something-to-talk-about.com
1397
- 2018-11-06 04:34:09 -0500: wmap: Execute the command: wmap sonofares.com
1398
- 2018-11-06 04:34:53 -0500: wmap: Execute the command: wmap sonsofares.com
1399
- 2018-11-06 04:37:55 -0500: wmap: Execute the command: wmap souvenirbook.com
1400
- 2018-11-06 04:38:26 -0500: wmap: Execute the command: wmap spectrapulsebooks.com
1401
- 2018-11-06 04:39:12 -0500: wmap: Execute the command: wmap speedofdarkreader.com
1402
- 2018-11-06 04:40:01 -0500: wmap: Execute the command: wmap spiegelandgrau.com
1403
- 2018-11-06 04:40:54 -0500: wmap: Execute the command: wmap standingintherainbow.com
1404
- 2018-11-06 04:41:38 -0500: wmap: Execute the command: wmap starwarsdeathtroopers.com
1405
- 2018-11-06 04:41:52 -0500: wmap: Execute the command: wmap steelheartbooks.com
1406
- 2018-11-06 04:42:36 -0500: wmap: Execute the command: wmap strangerthingsbooks.com
1407
- 2018-11-06 04:43:15 -0500: wmap: Execute the command: wmap striversrowbooks.com
1408
- 2018-11-06 04:44:18 -0500: wmap: Execute the command: wmap strongesttribe.com
1409
- 2018-11-06 04:44:48 -0500: wmap: Execute the command: wmap subject0.com
1410
- 2018-11-06 04:45:02 -0500: wmap: Execute the command: wmap summer-share-reads-candy.com
1411
- 2018-11-06 04:45:55 -0500: wmap: Execute the command: wmap summer-share-reads.com
1412
- 2018-11-06 04:46:47 -0500: wmap: Execute the command: wmap summersharereads.com
1413
- 2018-11-06 04:47:47 -0500: wmap: Execute the command: wmap supercrunchers.com
1414
- 2018-11-06 04:48:18 -0500: wmap: Execute the command: wmap supercrunchers.net
1415
- 2018-11-06 04:49:02 -0500: wmap: Execute the command: wmap supercruncherscovers.com
1416
- 2018-11-06 04:49:45 -0500: wmap: Execute the command: wmap supercrunchersvote.com
1417
- 2018-11-06 04:50:24 -0500: wmap: Execute the command: wmap supersadapp.com
1418
- 2018-11-06 04:50:41 -0500: wmap: Execute the command: wmap takeyourbookclubtoguernsey.com
1419
- 2018-11-06 04:51:11 -0500: wmap: Execute the command: wmap tearsofthedesert.com
1420
- 2018-11-06 04:52:02 -0500: wmap: Execute the command: wmap tenhealthysecrets.com
1421
- 2018-11-06 04:52:20 -0500: wmap: Execute the command: wmap tewoodsauthor.com
1422
- 2018-11-06 04:52:36 -0500: wmap: Execute the command: wmap thanksgivingwithsam.com
1423
- 2018-11-06 04:52:53 -0500: wmap: Execute the command: wmap thayerbook.com
1424
- 2018-11-06 04:53:23 -0500: wmap: Execute the command: wmap thbigskinny.com
1425
- 2018-11-06 04:53:54 -0500: wmap: Execute the command: wmap thebangbook.com
1426
- 2018-11-06 04:54:08 -0500: wmap: Execute the command: wmap theblackswantheory.com
1427
- 2018-11-06 04:55:04 -0500: wmap: Execute the command: wmap thecharlemagnepursuit.com
1428
- 2018-11-06 04:55:54 -0500: wmap: Execute the command: wmap thechrysalisbook.com
1429
- 2018-11-06 04:56:47 -0500: wmap: Execute the command: wmap thecityandthecity.com
1430
- 2018-11-06 04:57:25 -0500: wmap: Execute the command: wmap thedarkvolume.com
1431
- 2018-11-06 04:57:52 -0500: wmap: Execute the command: wmap thedeviousbookforcats.com
1432
- 2018-11-06 04:58:11 -0500: wmap: Execute the command: wmap thedialpress.com
1433
- 2018-11-06 04:59:11 -0500: wmap: Execute the command: wmap thedinnerchallenge.com
1434
- 2018-11-06 05:00:04 -0500: wmap: Execute the command: wmap theeightbook.com
1435
- 2018-11-06 05:00:56 -0500: wmap: Execute the command: wmap thefire-book.com
1436
- 2018-11-06 05:01:47 -0500: wmap: Execute the command: wmap thefirenovel.com
1437
- 2018-11-06 05:02:47 -0500: wmap: Execute the command: wmap thegirlbeforebook.com
1438
- 2018-11-06 05:05:12 -0500: wmap: Execute the command: wmap thegoodguytrailercontest.com
1439
- 2018-11-06 05:06:02 -0500: wmap: Execute the command: wmap theheadoverheelsbook.com
1440
- 2018-11-06 05:07:48 -0500: wmap: Execute the command: wmap thelastbridgebook.com
1441
- 2018-11-06 05:08:13 -0500: wmap: Execute the command: wmap thelostpainting.com
1442
- 2018-11-06 05:08:34 -0500: wmap: Execute the command: wmap thelunchhourbookclub.com
1443
- 2018-11-06 05:08:54 -0500: wmap: Execute the command: wmap themarchup.com
1444
- 2018-11-06 05:09:55 -0500: wmap: Execute the command: wmap thenecklacebook.com
1445
- 2018-11-06 05:10:42 -0500: wmap: Execute the command: wmap theorchidthief.com
1446
- 2018-11-06 05:11:38 -0500: wmap: Execute the command: wmap thepassageawaits.com
1447
- 2018-11-06 05:12:28 -0500: wmap: Execute the command: wmap thepassagebook.com
1448
- 2018-11-06 05:12:47 -0500: wmap: Execute the command: wmap therandomhousereadinggroup.com
1449
- 2018-11-06 05:13:29 -0500: wmap: Execute the command: wmap thereaderscircle.com
1450
- 2018-11-06 05:14:24 -0500: wmap: Execute the command: wmap therightaddress-book.com
1451
- 2018-11-06 05:14:43 -0500: wmap: Execute the command: wmap therscshakespeare.com
1452
- 2018-11-06 05:15:28 -0500: wmap: Execute the command: wmap theshelterofstone.com
1453
- 2018-11-06 05:15:48 -0500: wmap: Execute the command: wmap thesheltersofstone.com
1454
- 2018-11-06 05:16:26 -0500: wmap: Execute the command: wmap theskinnyrulesbook.com
1455
- 2018-11-06 05:17:17 -0500: wmap: Execute the command: wmap thesnowball-thebook.com
1456
- 2018-11-06 05:18:05 -0500: wmap: Execute the command: wmap thesnowballthebook.com
1457
- 2018-11-06 05:18:41 -0500: wmap: Execute the command: wmap thespectrumbook.com
1458
- 2018-11-06 05:19:21 -0500: wmap: Execute the command: wmap thetellingroom.com
1459
- 2018-11-06 05:20:39 -0500: wmap: Execute the command: wmap thethirdsecret.com
1460
- 2018-11-06 05:21:23 -0500: wmap: Execute the command: wmap thethirdwish.com
1461
- 2018-11-06 05:22:15 -0500: wmap: Execute the command: wmap thetoolsapp.com
1462
- 2018-11-06 05:22:35 -0500: wmap: Execute the command: wmap thetranslator-book.com
1463
- 2018-11-06 05:23:11 -0500: wmap: Execute the command: wmap thetruthaboutfox.com
1464
- 2018-11-06 05:24:01 -0500: wmap: Execute the command: wmap thetwelve-book.com
1465
- 2018-11-06 05:24:19 -0500: wmap: Execute the command: wmap theunlikelypilgrimageofharoldfry.com
1466
- 2018-11-06 05:24:37 -0500: wmap: Execute the command: wmap thevastmachine.com
1467
- 2018-11-06 05:25:25 -0500: wmap: Execute the command: wmap thevenetianbetrayal.com
1468
- 2018-11-06 05:26:10 -0500: wmap: Execute the command: wmap thewardedman.com
1469
- 2018-11-06 05:26:37 -0500: wmap: Execute the command: wmap thewishingyear.com
1470
- 2018-11-06 05:27:35 -0500: wmap: Execute the command: wmap thewishworksfactory.biz
1471
- 2018-11-06 05:29:10 -0500: wmap: Execute the command: wmap thewishworksfactory.com
1472
- 2018-11-06 05:29:25 -0500: wmap: Execute the command: wmap thewordonfilm.com
1473
- 2018-11-06 05:29:50 -0500: wmap: Execute the command: wmap thousandautumns.com
1474
- 2018-11-06 05:30:13 -0500: wmap: Execute the command: wmap throughvioleteyes.com
1475
- 2018-11-06 05:30:59 -0500: wmap: Execute the command: wmap tigerheartbook.com
1476
- 2018-11-06 05:31:47 -0500: wmap: Execute the command: wmap timesbooks.com
1477
- 2018-11-06 05:32:41 -0500: wmap: Execute the command: wmap tinbcomments.com
1478
- 2018-11-06 05:33:55 -0500: wmap: Execute the command: wmap tolkienbooks.org
1479
- 2018-11-06 05:34:31 -0500: wmap: Execute the command: wmap tracyisthenewblack.com
1480
- 2018-11-06 05:35:30 -0500: wmap: Execute the command: wmap truthaboutfox.com
1481
- 2018-11-06 05:36:38 -0500: wmap: Execute the command: wmap turningtablescontest.com
1482
- 2018-11-06 05:37:51 -0500: wmap: Execute the command: wmap unlundun.com
1483
- 2018-11-06 05:38:47 -0500: wmap: Execute the command: wmap valueofbooks.com
1484
- 2018-11-06 05:39:11 -0500: wmap: Execute the command: wmap vastconspiracy.com
1485
- 2018-11-06 05:40:07 -0500: wmap: Execute the command: wmap venetianbetrayal.com
1486
- 2018-11-06 05:40:52 -0500: wmap: Execute the command: wmap verlagsgrupperandomhouse.com
1487
- 2018-11-06 05:41:03 -0500: wmap: Execute the command: wmap verticalburn.com
1488
- 2018-11-06 05:41:51 -0500: wmap: Execute the command: wmap villard.com
1489
- 2018-11-06 05:42:51 -0500: wmap: Execute the command: wmap villardbooks.com
1490
- 2018-11-06 05:43:42 -0500: wmap: Execute the command: wmap villardbookspublicity.com
1491
- 2018-11-06 05:44:17 -0500: wmap: Execute the command: wmap villardpublicity.com
1492
- 2018-11-06 05:44:58 -0500: wmap: Execute the command: wmap violet-eyes.com
1493
- 2018-11-06 05:45:49 -0500: wmap: Execute the command: wmap violetkupersmith.com
1494
- 2018-11-06 05:47:00 -0500: wmap: Execute the command: wmap virginofsmallplains.com
1495
- 2018-11-06 05:47:44 -0500: wmap: Execute the command: wmap wakebyannahope.com
1496
- 2018-11-06 05:48:28 -0500: wmap: Execute the command: wmap walterwalkerauthor.com
1497
- 2018-11-06 05:48:55 -0500: wmap: Execute the command: wmap wardedman.com
1498
- 2018-11-06 05:49:35 -0500: wmap: Execute the command: wmap watchmedisappear.com
1499
- 2018-11-06 05:50:45 -0500: wmap: Execute the command: wmap wednesdaysistersbook.com
1500
- 2018-11-06 05:51:26 -0500: wmap: Execute the command: wmap weheartheart.com
1501
- 2018-11-06 05:51:41 -0500: wmap: Execute the command: wmap weheartlove.com
1502
- 2018-11-06 05:52:00 -0500: wmap: Execute the command: wmap what-matters-most.net
1503
- 2018-11-06 05:52:53 -0500: wmap: Execute the command: wmap whatisyourwork.com
1504
- 2018-11-06 05:53:08 -0500: wmap: Execute the command: wmap whattoexpectwhenyoureexpected.com
1505
- 2018-11-06 05:54:07 -0500: wmap: Execute the command: wmap whattoexpectwhenyourexpected.com
1506
- 2018-11-06 05:54:37 -0500: wmap: Execute the command: wmap whatyouwantisinthelimo.com
1507
- 2018-11-06 05:54:51 -0500: wmap: Execute the command: wmap whocontrolshillman.com
1508
- 2018-11-06 05:55:05 -0500: wmap: Execute the command: wmap wishingyear.com
1509
- 2018-11-06 05:56:18 -0500: wmap: Execute the command: wmap withoutwarningbook.com
1510
- 2018-11-06 05:57:09 -0500: wmap: Execute the command: wmap wordsatrandom.com
1511
- 2018-11-06 05:57:20 -0500: wmap: Execute the command: wmap worldofexpression.org
1512
- 2018-11-06 05:57:43 -0500: wmap: Execute the command: wmap writteninpink.com
1513
- 2018-11-06 05:58:30 -0500: wmap: Execute the command: wmap wsjfurst.com
1514
- 2018-11-06 05:58:47 -0500: wmap: Execute the command: wmap yann-martel.com
1515
- 2018-11-06 08:38:09 -0500: updateAll: Execute the command: updateAll
1516
- 2018-11-07 00:47:10 -0500: updateAll: Execute the command: updateAll
1517
- 2018-11-20 17:13:51 -0500: updateAll: Execute the command: updateAll
1518
- 2018-11-20 21:25:31 -0500: trust: Execute the command: trust 10.0.0.0/8
1519
- 2018-11-28 14:26:35 -0500: run_tests: Execute the command: run_tests
1520
- 2019-02-12 14:40:28 -0500: wmap: Execute the command: wmap -h
1521
- 2019-02-12 14:51:30 -0500: wmap: Execute the command: wmap shared/data/seed
1522
- 2019-02-12 16:53:35 -0500: wmap: Execute the command: wmap /Users/sli/prh_wmap/shared/data/seed
1523
- 2019-02-12 16:53:35 -0500: wmap: Execute the command: wmap /Users/sli/prh_wmap/shared/data/seed
1524
- 2019-02-12 16:53:35 -0500: wmap: Execute the command: wmap /Users/sli/prh_wmap/shared/data/seed
1525
- 2019-02-12 16:53:36 -0500: wmap: Execute the command: wmap /Users/sli/prh_wmap/shared/data/seed
1526
- 2019-02-12 16:53:36 -0500: wmap: Execute the command: wmap /Users/sli/prh_wmap/shared/data/seed
1527
- 2019-02-12 16:54:33 -0500: wmap: Execute the command: wmap /Users/sli/prh_wmap/shared/data/seed
1528
- 2019-02-12 16:54:33 -0500: wmap: Execute the command: wmap /Users/sli/prh_wmap/shared/data/seed
1529
- 2019-02-12 16:54:33 -0500: wmap: Execute the command: wmap /Users/sli/prh_wmap/shared/data/seed
1530
- 2019-02-12 16:54:33 -0500: wmap: Execute the command: wmap /Users/sli/prh_wmap/shared/data/seed
1531
- 2019-02-17 16:27:17 -0500: wmap: Execute the command: wmap -v
1532
- 2019-02-17 16:45:53 -0500: trust: Execute the command: trust penguinrandomhouse.com
1533
- 2019-02-17 16:46:10 -0500: wadd: Execute the command: wadd www.penguinradomhouse.com
1534
- 2019-02-17 16:51:50 -0500: wadd: Execute the command: wadd www.penguinradomhouse.com
1535
- 2019-02-17 16:52:54 -0500: wadd: Execute the command: wadd www.penguinradomhouse.com
1536
- 2019-02-17 17:01:17 -0500: wmap: Execute the command: wmap -v
1537
- 2019-02-17 17:03:09 -0500: wmap: Execute the command: wmap -v
1538
- 2019-02-17 18:20:26 -0500: run_tests: Execute the command: run_tests
1539
- 2019-02-17 18:22:38 -0500: run_tests: Execute the command: run_tests
1540
- 2019-02-17 18:23:31 -0500: run_tests: Execute the command: run_tests
1541
- 2019-02-17 21:45:07 -0500: trust: Execute the command: trust penguinrandomhouse.com
1542
- 2019-02-17 21:45:39 -0500: wmap: Execute the command: wmap penguinrandomhouse.com
1543
- 2019-02-17 21:48:54 -0500: wmap: Execute the command: wmap penguinrandomhouse.com
1544
- 2019-02-17 22:09:16 -0500: wmap: Execute the command: wmap penguinrandomhouse.com
1545
- 2019-02-17 22:11:57 -0500: wmap: Execute the command: wmap /tmp/test
1546
- 2019-02-17 22:50:46 -0500: wmap: Execute the command: wmap /tmp/test1
1547
- 2019-02-20 20:41:31 -0500: googleBot: Execute the command: googleBot
1548
- 2019-02-20 20:56:04 -0500: googleBot: Execute the command: googleBot
1549
- 2019-02-20 21:05:21 -0500: googleBot: Execute the command: googleBot
1550
- 2019-02-20 21:10:59 -0500: googleBot: Execute the command: googleBot
1551
- 2019-02-20 21:17:21 -0500: googleBot: Execute the command: googleBot
1552
- 2019-02-20 21:26:13 -0500: googleBot: Execute the command: googleBot
1553
- 2019-02-22 09:59:09 -0500: wmap: Execute the command: wmap /Users/sli/prh_wmap/shared/data/seed
1
+ A test
2
+ 2019-04-04 16:29:43 -0400: trust: Execute the command: trust -h
3
+ 2019-04-04 16:30:10 -0400: trust: Execute the command: trust /tmp/tests
4
+ 2019-04-04 16:31:15 -0400: trust: Execute the command: trust /tmp/tests
5
+ 2019-04-04 16:31:54 -0400: trust: Execute the command: trust /tmp/test
6
+ 2019-04-04 16:41:27 -0400: trust: Execute the command: trust /tmp/test
7
+ 2019-04-04 16:42:21 -0400: trust: Execute the command: trust penguinrh.gb.net
8
+ 2019-04-13 11:39:30 -0400: trust: Execute the command: trust /tmp/test
9
+ 2019-04-13 11:40:37 -0400: trust: Execute the command: trust /tmp/test
10
+ 2019-04-13 11:41:46 -0400: trust: Execute the command: trust /tmp/test
11
+ 2019-04-13 11:42:34 -0400: trust: Execute the command: trust /tmp/test
12
+ 2019-04-13 11:43:57 -0400: trust: Execute the command: trust /tmp/test
13
+ 2019-04-13 11:44:53 -0400: trust: Execute the command: trust /tmp/test
14
+ 2019-04-13 11:45:43 -0400: trust: Execute the command: trust /tmp/test
15
+ 2019-04-13 11:46:54 -0400: trust: Execute the command: trust /tmp/test
16
+ 2019-04-13 12:03:24 -0400: wmap: Execute the command: wmap www.lcbhome.com