Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre > Plugins

Notices

Reply
 
Thread Tools Search this Thread
Old 04-07-2014, 02:48 PM   #631
Rev. Bob
Wizard
Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.
 
Rev. Bob's Avatar
 
Posts: 1,760
Karma: 9918418
Join Date: Feb 2013
Location: Here on the perimeter, there are no stars
Device: Kobo H2O, iPad mini 3, Kindle Touch
Quote:
Originally Posted by Perkin View Post
Say you had
Code:
<i class="something">Here's</i><i> some text</i>
and removed the </i><i> then the ' some text' would also get the something class styling as well, which wasn't what was wanted.
Valid point. However, <i/> and <i></i> (ditto for any other inline element without content or attributes, such as B and SPAN) are not supposed to have any effect on the layout. The only situation I can think of where they would also applies to <span>X</span>, where there's a CSS rule involving them. For instance:

span { font-style: italic; }
i + span { text-decoration: underline; }

...are both completely legal. Kind of silly in how they obfuscate their effect on the code, but legal.
Rev. Bob is offline   Reply With Quote
Old 04-07-2014, 03:10 PM   #632
Perkin
Guru
Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.
 
Perkin's Avatar
 
Posts: 655
Karma: 64171
Join Date: Sep 2010
Location: Kent, England, Sol 3, ZZ9 plural Z Alpha
Device: Sony PRS-300, Kobo Aura HD, iPad (Marvin)
Yeah, I know the niggle I've got had something to do with, as you say, a css styled tag which caused the layout to be changed, I just can't remember what it was completely.

As it was a while ago when I saw it, then it can't be in widespread use, so you should add 'empty' tags to the cleanup.
Perkin is offline   Reply With Quote
Advert
Old 04-07-2014, 03:18 PM   #633
Rev. Bob
Wizard
Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.
 
Rev. Bob's Avatar
 
Posts: 1,760
Karma: 9918418
Join Date: Feb 2013
Location: Here on the perimeter, there are no stars
Device: Kobo H2O, iPad mini 3, Kindle Touch
Quote:
Originally Posted by Perkin View Post
Yeah, I know the niggle I've got had something to do with, as you say, a css styled tag which caused the layout to be changed, I just can't remember what it was completely.

As it was a while ago when I saw it, then it can't be in widespread use, so you should add 'empty' tags to the cleanup.
I can see how to do that with a self-closed empty container, just by adding an "if equals <i/>, <span/>, or <b/>" to the pair-routine processing. I just don't see how to do it with the container forms, because as far as I can tell, that code can't see both the open and close tags at the same time, or determine whether there's anything between them.
Rev. Bob is offline   Reply With Quote
Old 04-07-2014, 03:35 PM   #634
Perkin
Guru
Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.
 
Perkin's Avatar
 
Posts: 655
Karma: 64171
Join Date: Sep 2010
Location: Kent, England, Sol 3, ZZ9 plural Z Alpha
Device: Sony PRS-300, Kobo Aura HD, iPad (Marvin)
I suppose you could...
In the strip_span_for_page() add the line
Code:
html_text = re.sub(r'<([^>]+)></\1>', '', html_text)
OR
Code:
html_text = re.sub(r'(<(.*)[^>]+)></\2>', r'\1/>', html_text)
before the line

Code:
            entities = re.split(r'(<.+?>)', html_text)
The first will strip them completely, the second would turn them into self-closing tags, which you could then catch later, with your 'if equals...'

I'm trying to think if there's any tags which this would strip, that you shouldn't strip.
Are there any?
Perkin is offline   Reply With Quote
Old 04-07-2014, 04:13 PM   #635
Rev. Bob
Wizard
Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.
 
Rev. Bob's Avatar
 
Posts: 1,760
Karma: 9918418
Join Date: Feb 2013
Location: Here on the perimeter, there are no stars
Device: Kobo H2O, iPad mini 3, Kindle Touch
Quote:
Originally Posted by Perkin View Post
The first will strip them completely, the second would turn them into self-closing tags, which you could then catch later, with your 'if equals...'

I'm trying to think if there's any tags which this would strip, that you shouldn't strip.
Are there any?
The first would strip out all self-closing tags, including images...which is bad. Removing all elements without content could also be bad; the HEAD element must contain a TITLE, but the TITLE can be empty. The second looks promising, but I'm leery of the referencing and some of the matching seems to be off. I think this might be closer:

Code:
html_text = re.sub(r'<(\S+)([^>]*?)></\1>', r'<\1\2/>', html_text)
html_text = re.sub(r'<([^>]*?)(\s+?)/>', r'<\1/>', html_text)
html_text = re.sub(r'<(b|i|u|a|span)/>', r'', html_text)
That is, "find a tag that starts with at least one non-space character and may contain more than that, immediately followed by its closing tag" and do the replacement. The second line should delete any whitespace immediately before the '/>' mark - thus making it possible to search for and remove attributeless self-closed elements with the third line. Those would go right at the beginning of strip_span_for_page(), somewhere before the re.split line.

I think <a/>, <b/>, <i/>, <u/>, and <span/> should cover it; can anyone think of any other empty tags that would need to be stripped out?

Last edited by Rev. Bob; 04-07-2014 at 04:16 PM.
Rev. Bob is offline   Reply With Quote
Advert
Old 04-07-2014, 08:15 PM   #636
Perkin
Guru
Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.
 
Perkin's Avatar
 
Posts: 655
Karma: 64171
Join Date: Sep 2010
Location: Kent, England, Sol 3, ZZ9 plural Z Alpha
Device: Sony PRS-300, Kobo Aura HD, iPad (Marvin)
Quote:
Originally Posted by Rev. Bob View Post
I think <a/>, <b/>, <i/>, <u/>, and <span/> should cover it; can anyone think of any other empty tags that would need to be stripped out?
I think you might like to add <em/> and <strong/>, which I've also seen, not as much as the others, but still.
Perkin is offline   Reply With Quote
Old 04-08-2014, 01:34 PM   #637
Rev. Bob
Wizard
Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.
 
Rev. Bob's Avatar
 
Posts: 1,760
Karma: 9918418
Join Date: Feb 2013
Location: Here on the perimeter, there are no stars
Device: Kobo H2O, iPad mini 3, Kindle Touch
Quote:
Originally Posted by Perkin View Post
I think you might like to add <em/> and <strong/>, which I've also seen, not as much as the others, but still.
Those make sense; added.

Attached are two versions of the latest code. One is the latest version of the one you've seen, with the de-Kobo and strip-span functions combined. The other separates them into two functions, both of which perform the self-closing combination and removal. The GUI, batch, and help files contain the proper information, except that I have not updated the help file to document the self-closing feature, the empty-removal feature, or to remove the "hey, this is experimental" note. In short, consider this a late-stage beta.

Feedback and testing is, naturally, more than welcome.
Attached Files
File Type: zip Modify ePub - stripspans.zip (150.6 KB, 286 views)
File Type: zip Modify ePub - stripspans and stripkobo.zip (150.7 KB, 312 views)
Rev. Bob is offline   Reply With Quote
Old 04-11-2014, 03:29 PM   #638
Rev. Bob
Wizard
Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.
 
Rev. Bob's Avatar
 
Posts: 1,760
Karma: 9918418
Join Date: Feb 2013
Location: Here on the perimeter, there are no stars
Device: Kobo H2O, iPad mini 3, Kindle Touch
I haven't heard from anyone - is that a lack of interest, lack of bugs, or something else?

I'm particularly interested in hearing from people with older Kepubs, in case they've changed their filenames or insertion code. I've tested it on some of my own files, but I got a test file that was very different (using kobo-android.css rather than kobo.css, for one thing), and I'd like to make sure there are no other strange variants floating about.

In addition, would you rather see the one-routine version or the two-routine edition? If someone's doing both tasks, the combined routine is more efficient than both individual routines.
Rev. Bob is offline   Reply With Quote
Old 04-11-2014, 04:21 PM   #639
Terisa de morgan
Grand Sorcerer
Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.
 
Terisa de morgan's Avatar
 
Posts: 6,235
Karma: 11768331
Join Date: Jun 2009
Location: Madrid, Spain
Device: Kobo Clara/Aura One/Forma,XiaoMI 5, iPad, Huawei MediaPad, YotaPhone 2
I'm using it not for "real" kepub but striping spans and I'm very, very happy with it.
Terisa de morgan is online now   Reply With Quote
Old 04-11-2014, 05:31 PM   #640
PeterT
Grand Sorcerer
PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.
 
PeterT's Avatar
 
Posts: 12,172
Karma: 73448616
Join Date: Nov 2007
Location: Toronto
Device: Nexus 7, Clara, Touch, Tolino EPOS
I'll try to get a big sample of kepubs from my wife's PC this weekend and test em all out.
PeterT is offline   Reply With Quote
Old 04-12-2014, 08:44 AM   #641
Perkin
Guru
Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.Perkin calls his or her ebook reader Vera.
 
Perkin's Avatar
 
Posts: 655
Karma: 64171
Join Date: Sep 2010
Location: Kent, England, Sol 3, ZZ9 plural Z Alpha
Device: Sony PRS-300, Kobo Aura HD, iPad (Marvin)
Haven't got any original kepubs (don't know how to get them into calibre and strip drm? - I usually just dl the epub variety and go from there.), but the empty spans stripping has saved a fair bit of time on cleaning several epubs, and saves going through Sigil - soon there won't be a need to keep it installed.
Perkin is offline   Reply With Quote
Old 04-12-2014, 01:36 PM   #642
PeterT
Grand Sorcerer
PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.
 
PeterT's Avatar
 
Posts: 12,172
Karma: 73448616
Join Date: Nov 2007
Location: Toronto
Device: Nexus 7, Clara, Touch, Tolino EPOS
138 kEpubs acquired 3 of them fail in Modify ePub processing
Spoiler:

Code:
calibre, version 1.32.0
ERROR: Modify ePub failed: No ePub files were updated

Modify ePubs
Logfile for book ID 81 (Heat Seeker / Unknown)
81
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\72wbgu_modify_epub\81.epub
Parsing xml file: OPS/package.opf
Heat Seeker - ERROR: Traceback (most recent call last):
  File "calibre_plugins.modify_epub.modify", line 78, in process_book
  File "calibre_plugins.modify_epub.container", line 119, in __init__
  File "calibre_plugins.modify_epub.container", line 226, in get_parsed_etree
  File "calibre_plugins.modify_epub.container", line 248, in _parse_xhtml
  File "site-packages\calibre\ebooks\oeb\parse_utils.py", line 276, in parse_html
UnboundLocalError: local variable 'pre' referenced before assignment

ePub not changed after 0.26 seconds

Logfile for book ID 71 (Wild Card / Unknown)
71
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\72wbgu_modify_epub\71.epub
Parsing xml file: OPS/package.opf
Wild Card - ERROR: Traceback (most recent call last):
  File "calibre_plugins.modify_epub.modify", line 78, in process_book
  File "calibre_plugins.modify_epub.container", line 119, in __init__
  File "calibre_plugins.modify_epub.container", line 226, in get_parsed_etree
  File "calibre_plugins.modify_epub.container", line 248, in _parse_xhtml
  File "site-packages\calibre\ebooks\oeb\parse_utils.py", line 276, in parse_html
UnboundLocalError: local variable 'pre' referenced before assignment

ePub not changed after 0.31 seconds

Logfile for book ID 95 (Real Men Last All Night / Unknown)
95
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\72wbgu_modify_epub\95.epub
Parsing xml file: OPS/package.opf
Real Men Last All Night - ERROR: Traceback (most recent call last):
  File "calibre_plugins.modify_epub.modify", line 78, in process_book
  File "calibre_plugins.modify_epub.container", line 119, in __init__
  File "calibre_plugins.modify_epub.container", line 226, in get_parsed_etree
  File "calibre_plugins.modify_epub.container", line 248, in _parse_xhtml
  File "site-packages\calibre\ebooks\oeb\parse_utils.py", line 276, in parse_html
UnboundLocalError: local variable 'pre' referenced before assignment

ePub not changed after 0.25 seconds
PeterT is offline   Reply With Quote
Old 04-12-2014, 01:41 PM   #643
PeterT
Grand Sorcerer
PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.
 
PeterT's Avatar
 
Posts: 12,172
Karma: 73448616
Join Date: Nov 2007
Location: Toronto
Device: Nexus 7, Clara, Touch, Tolino EPOS
Remaining 135 went through OK

Spoiler:

Code:
Modify ePubs
Logfile for book ID 1 (Lover Revealed / J. R. Ward)
1
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\1.epub
Parsing xml file: OEBPS/loverrevealed.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/loverrevealed_re01.html
	  Removed script block from: OEBPS/loverrevealed_ch27.html
	  Removed script block from: OEBPS/loverrevealed_ch28.html
	  Removed script block from: OEBPS/loverrevealed_ch26.html
	  Removed script block from: OEBPS/loverrevealed_ch14.html
	  Removed script block from: OEBPS/loverrevealed_cop01.html
	  Removed script block from: OEBPS/loverrevealed_ch48.html
	  Removed script block from: OEBPS/loverrevealed_ch32.html
	  Removed script block from: OEBPS/loverrevealed_ch16.html
	  Removed script block from: OEBPS/loverrevealed_ch43.html
	  Removed script block from: OEBPS/loverrevealed_ch19.html
	  Removed script block from: OEBPS/loverrevealed_ad.html
	  Removed script block from: OEBPS/loverrevealed_ch41.html
	  Removed script block from: OEBPS/loverrevealed_ch02.html
	  Removed script block from: OEBPS/loverrevealed_ch24.html
	  Removed script block from: OEBPS/loverrevealed_ch06.html
	  Removed script block from: OEBPS/loverrevealed_ch49.html
	  Removed script block from: OEBPS/loverrevealed_ch46.html
	  Removed script block from: OEBPS/loverrevealed_ch09.html
	  Removed script block from: OEBPS/loverrevealed_ch40.html
	  Removed script block from: OEBPS/loverrevealed_ch10.html
	  Removed script block from: OEBPS/loverrevealed_ch37.html
	  Removed script block from: OEBPS/loverrevealed_ch12.html
	  Removed script block from: OEBPS/loverrevealed_ch44.html
	  Removed script block from: OEBPS/loverrevealed_ch45.html
	  Removed script block from: OEBPS/loverrevealed_ch20.html
	  Removed script block from: OEBPS/loverrevealed_ch21.html
	  Removed script block from: OEBPS/loverrevealed_ch04.html
	  Removed script block from: OEBPS/loverrevealed_ch18.html
	  Removed script block from: OEBPS/loverrevealed_ch29.html
	  Removed script block from: OEBPS/loverrevealed_ch13.html
	  Removed script block from: OEBPS/loverrevealed_ch07.html
	  Removed script block from: OEBPS/loverrevealed_ch33.html
	  Removed script block from: OEBPS/loverrevealed_con01.html
	  Removed script block from: OEBPS/loverrevealed_ch05.html
	  Removed script block from: OEBPS/loverrevealed_ch36.html
	  Removed script block from: OEBPS/loverrevealed_ch34.html
	  Removed script block from: OEBPS/loverrevealed_ch39.html
	  Removed script block from: OEBPS/loverrevealed_bm01.html
	  Removed script block from: OEBPS/loverrevealed_ch11.html
	  Removed script block from: OEBPS/loverrevealed_ch23.html
	  Removed script block from: OEBPS/loverrevealed_ch15.html
	  Removed script block from: OEBPS/loverrevealed_ch25.html
	  Removed script block from: OEBPS/loverrevealed_ch08.html
	  Removed script block from: OEBPS/loverrevealed_ch35.html
	  Removed script block from: OEBPS/loverrevealed_ch03.html
	  Removed script block from: OEBPS/loverrevealed_ch42.html
	  Removed script block from: OEBPS/loverrevealed_ch50.html
	  Removed script block from: OEBPS/loverrevealed_ch22.html
	  Removed script block from: OEBPS/loverrevealed_ch01.html
	  Removed script block from: OEBPS/loverrevealed_fm01.html
	  Removed script block from: OEBPS/loverrevealed_ch47.html
	  Removed script block from: OEBPS/loverrevealed_ch31.html
	  Removed script block from: OEBPS/loverrevealed_tp.html
	  Removed script block from: OEBPS/loverrevealed_ch30.html
	  Removed script block from: OEBPS/loverrevealed_ded01.html
	  Removed script block from: OEBPS/loverrevealed_cov.html
	  Removed script block from: OEBPS/loverrevealed_ch38.html
	  Removed script block from: OEBPS/loverrevealed_ch17.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_re01.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch27.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch28.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch26.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch14.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch48.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch32.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch16.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch43.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch19.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ad.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch41.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch02.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch24.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch06.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch49.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch46.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch09.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch40.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch10.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch37.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch12.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch44.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch45.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch20.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch21.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch04.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch18.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch29.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch13.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch07.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch33.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_con01.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch05.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch36.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch34.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch39.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_bm01.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch11.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch23.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch15.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch25.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch08.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch35.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch03.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch42.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch50.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch22.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch01.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_fm01.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch47.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch31.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_tp.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch30.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ded01.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_cov.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch38.html
	  Removed Kobo HEAD elements from: OEBPS/loverrevealed_ch17.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_re01.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch27.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch28.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch26.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch14.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_cop01.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch48.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch32.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch16.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch43.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch19.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ad.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch41.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch02.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch24.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch06.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch49.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch46.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch09.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch40.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch10.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch37.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch12.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch44.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch45.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch20.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch21.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch04.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch18.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch29.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch13.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch07.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch33.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_con01.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch05.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch36.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch34.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch39.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_bm01.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch11.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch23.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch15.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch25.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch08.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch35.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch03.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch42.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch50.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch22.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch01.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_fm01.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch47.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch31.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_tp.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch30.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ded01.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_cov.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch38.html
	  Stripped Kobo spans in: OEBPS/loverrevealed_ch17.html
ePub updated in 2.30 seconds

Logfile for book ID 5 (Lover Unleashed / Ward, J.R.)
5
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\5.epub
Parsing xml file: OEBPS/ward_9781101513477_oeb_opf_r1.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c21_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c25_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c51_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_als_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_cover_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c19_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c40_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c15_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c05_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c50_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c02_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c47_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c55_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_fm2_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_ded_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_gl1_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c32_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c31_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c44_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c01_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_tp_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_cop_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c27_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_toc_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c57_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c04_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c23_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c13_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c14_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c33_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c56_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c35_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c03_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c20_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c42_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c37_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_fm1_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c46_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c34_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c53_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c06_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c16_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_alsbm_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c43_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c11_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c38_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c48_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c18_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c58_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c52_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c49_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c26_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c12_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c39_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c22_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c59_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c30_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c36_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c08_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c45_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c17_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c41_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c29_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c07_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c24_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c09_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_ack_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c10_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c28_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101513477_oeb_c54_r1.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c21_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c25_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c51_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_als_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_cover_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c19_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c40_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c15_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c05_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c50_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c02_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c47_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c55_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_fm2_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_ded_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_gl1_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c32_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c31_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c44_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c01_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_tp_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_cop_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c27_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_toc_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c57_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c04_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c23_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c13_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c14_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c33_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c56_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c35_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c03_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c20_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c42_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c37_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_fm1_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c46_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c34_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c53_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c06_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c16_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_alsbm_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c43_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c11_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c38_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c48_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c18_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c58_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c52_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c49_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c26_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c12_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c39_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c22_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c59_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c30_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c36_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c08_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c45_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c17_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c41_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c29_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c07_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c24_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c09_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_ack_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c10_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c28_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101513477_oeb_c54_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c21_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c25_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c51_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_als_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_cover_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c19_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c40_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c15_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c05_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c50_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c02_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c47_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c55_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_fm2_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_ded_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_gl1_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c32_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c31_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c44_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c01_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_tp_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_cop_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c27_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c57_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c04_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c23_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c13_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c14_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c33_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c56_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c35_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c03_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c20_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c42_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c37_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_fm1_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c46_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c34_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c53_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c06_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c16_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_alsbm_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c43_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c11_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c38_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c48_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c18_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c58_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c52_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c49_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c26_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c12_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c39_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c22_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c59_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c30_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c36_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c08_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c45_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c17_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c41_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c29_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c07_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c24_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c09_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_ack_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c10_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c28_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101513477_oeb_c54_r1.xhtml
ePub updated in 1.97 seconds

Logfile for book ID 2 (A Quick Bite / Lynsay Sands)
2
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\2.epub
Parsing xml file: OPS/9780061750625.opf
Parsing xml file: OPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OPS/9780061750625_chapter_05.html
	  Removed script block from: OPS/9780061750625_chapter_20.html
	  Removed script block from: OPS/9780061750625_chapter_18.html
	  Removed script block from: OPS/9780061750625_contents.html
	  Removed script block from: OPS/9780061750625_chapter_02.html
	  Removed script block from: OPS/9780061750625_title.html
	  Removed script block from: OPS/9780061750625_chapter_15.html
	  Removed script block from: OPS/9780061750625_chapter_08.html
	  Removed script block from: OPS/9780061750625_chapter_19.html
	  Removed script block from: OPS/9780061750625_backmatterpage_02.html
	  Removed script block from: OPS/9780061750625_dedication.html
	  Removed script block from: OPS/9780061750625_chapter_01.html
	  Removed script block from: OPS/9780061750625_chapter_04.html
	  Removed script block from: OPS/9780061750625_chapter_10.html
	  Removed script block from: OPS/9780061750625_frontmatterpage.html
	  Removed script block from: OPS/9780061750625_chapter_09.html
	  Removed script block from: OPS/9780061750625_chapter_07.html
	  Removed script block from: OPS/9780061750625_aboutpublisher.html
	  Removed script block from: OPS/9780061750625_cover.html
	  Removed script block from: OPS/9780061750625_backmatterpage_03.html
	  Removed script block from: OPS/9780061750625_chapter_16.html
	  Removed script block from: OPS/9780061750625_chapter_14.html
	  Removed script block from: OPS/9780061750625_backmatterpage.html
	  Removed script block from: OPS/9780061750625_chapter_11.html
	  Removed script block from: OPS/9780061750625_chapter_06.html
	  Removed script block from: OPS/9780061750625_chapter_21.html
	  Removed script block from: OPS/9780061750625_chapter_12.html
	  Removed script block from: OPS/9780061750625_chapter_17.html
	  Removed script block from: OPS/9780061750625_chapter_03.html
	  Removed script block from: OPS/9780061750625_adcard.html
	  Removed script block from: OPS/9780061750625_copyright.html
	  Removed script block from: OPS/9780061750625_chapter_13.html
	  Removed script block from: OPS/9780061750625_chapter_22.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_05.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_20.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_18.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_contents.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_02.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_title.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_15.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_08.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_19.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_backmatterpage_02.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_dedication.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_01.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_04.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_10.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_frontmatterpage.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_09.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_07.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_aboutpublisher.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_cover.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_backmatterpage_03.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_16.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_14.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_backmatterpage.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_11.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_06.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_21.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_12.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_17.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_03.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_adcard.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_copyright.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_13.html
	  Removed Kobo HEAD elements from: OPS/9780061750625_chapter_22.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_05.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_20.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_18.html
	  Stripped Kobo spans in: OPS/9780061750625_contents.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_02.html
	  Stripped Kobo spans in: OPS/9780061750625_title.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_15.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_08.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_19.html
	  Stripped Kobo spans in: OPS/9780061750625_backmatterpage_02.html
	  Stripped Kobo spans in: OPS/9780061750625_dedication.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_01.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_04.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_10.html
	  Stripped Kobo spans in: OPS/9780061750625_frontmatterpage.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_09.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_07.html
	  Stripped Kobo spans in: OPS/9780061750625_aboutpublisher.html
	  Stripped Kobo spans in: OPS/9780061750625_cover.html
	  Stripped Kobo spans in: OPS/9780061750625_backmatterpage_03.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_16.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_14.html
	  Stripped Kobo spans in: OPS/9780061750625_backmatterpage.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_11.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_06.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_21.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_12.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_17.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_03.html
	  Stripped Kobo spans in: OPS/9780061750625_adcard.html
	  Stripped Kobo spans in: OPS/9780061750625_copyright.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_13.html
	  Stripped Kobo spans in: OPS/9780061750625_chapter_22.html
ePub updated in 1.51 seconds

Logfile for book ID 3 (The Beast in Him / Shelly Laurenston)
3
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\3.epub
Parsing xml file: OEBPS/beastinhimthe.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/beastinhimthe_bm04.html
	  Removed script block from: OEBPS/beastinhimthe_cop01.html
	  Removed script block from: OEBPS/beastinhimthe_tp01.html
	  Removed script block from: OEBPS/beastinhimthe_ch17.html
	  Removed script block from: OEBPS/beastinhimthe_ch28.html
	  Removed script block from: OEBPS/beastinhimthe_ch15.html
	  Removed script block from: OEBPS/beastinhimthe_ch18.html
	  Removed script block from: OEBPS/beastinhimthe_ch26.html
	  Removed script block from: OEBPS/beastinhimthe_htp02.html
	  Removed script block from: OEBPS/beastinhimthe_bm02.html
	  Removed script block from: OEBPS/beastinhimthe_ch12.html
	  Removed script block from: OEBPS/beastinhimthe_ch14.html
	  Removed script block from: OEBPS/beastinhimthe_ch05.html
	  Removed script block from: OEBPS/beastinhimthe_ch09.html
	  Removed script block from: OEBPS/beastinhimthe_ch29.html
	  Removed script block from: OEBPS/beastinhimthe_ch10.html
	  Removed script block from: OEBPS/beastinhimthe_bm07.html
	  Removed script block from: OEBPS/beastinhimthe_ch11.html
	  Removed script block from: OEBPS/beastinhimthe_bm01.html
	  Removed script block from: OEBPS/beastinhimthe_bm03.html
	  Removed script block from: OEBPS/beastinhimthe_fm01.html
	  Removed script block from: OEBPS/beastinhimthe_adc01.html
	  Removed script block from: OEBPS/beastinhimthe_ch22.html
	  Removed script block from: OEBPS/beastinhimthe_bm05.html
	  Removed script block from: OEBPS/beastinhimthe_cov.html
	  Removed script block from: OEBPS/beastinhimthe_htp01.html
	  Removed script block from: OEBPS/beastinhimthe_ch25.html
	  Removed script block from: OEBPS/beastinhimthe_ch13.html
	  Removed script block from: OEBPS/beastinhimthe_ch04.html
	  Removed script block from: OEBPS/beastinhimthe_ch06.html
	  Removed script block from: OEBPS/beastinhimthe_ch21.html
	  Removed script block from: OEBPS/beastinhimthe_ch32.html
	  Removed script block from: OEBPS/beastinhimthe_bm06.html
	  Removed script block from: OEBPS/beastinhimthe_ch24.html
	  Removed script block from: OEBPS/beastinhimthe_ch01.html
	  Removed script block from: OEBPS/beastinhimthe_ch19.html
	  Removed script block from: OEBPS/beastinhimthe_ch07.html
	  Removed script block from: OEBPS/beastinhimthe_ch30.html
	  Removed script block from: OEBPS/beastinhimthe_ch16.html
	  Removed script block from: OEBPS/beastinhimthe_ch31.html
	  Removed script block from: OEBPS/beastinhimthe_con01.html
	  Removed script block from: OEBPS/beastinhimthe_ch27.html
	  Removed script block from: OEBPS/beastinhimthe_ch03.html
	  Removed script block from: OEBPS/beastinhimthe_ch02.html
	  Removed script block from: OEBPS/beastinhimthe_ch08.html
	  Removed script block from: OEBPS/beastinhimthe_ch20.html
	  Removed script block from: OEBPS/beastinhimthe_ch23.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OEBPS/beastinhimthe_bm04.html
	  Stripped spans in: OEBPS/beastinhimthe_cop01.html
	  Stripped spans in: OEBPS/beastinhimthe_tp01.html
	  Stripped spans in: OEBPS/beastinhimthe_ch17.html
	  Stripped spans in: OEBPS/beastinhimthe_ch28.html
	  Stripped spans in: OEBPS/beastinhimthe_ch15.html
	  Stripped spans in: OEBPS/beastinhimthe_ch18.html
	  Stripped spans in: OEBPS/beastinhimthe_ch26.html
	  Stripped spans in: OEBPS/beastinhimthe_htp02.html
	  Stripped spans in: OEBPS/beastinhimthe_bm02.html
	  Stripped spans in: OEBPS/beastinhimthe_ch12.html
	  Stripped spans in: OEBPS/beastinhimthe_ch14.html
	  Stripped spans in: OEBPS/beastinhimthe_ch05.html
	  Stripped spans in: OEBPS/beastinhimthe_ch09.html
	  Stripped spans in: OEBPS/beastinhimthe_ch29.html
	  Stripped spans in: OEBPS/beastinhimthe_ch10.html
	  Stripped spans in: OEBPS/beastinhimthe_bm07.html
	  Stripped spans in: OEBPS/beastinhimthe_ch11.html
	  Stripped spans in: OEBPS/beastinhimthe_bm01.html
	  Stripped spans in: OEBPS/beastinhimthe_bm03.html
	  Stripped spans in: OEBPS/beastinhimthe_fm01.html
	  Stripped spans in: OEBPS/beastinhimthe_adc01.html
	  Stripped spans in: OEBPS/beastinhimthe_ch22.html
	  Stripped spans in: OEBPS/beastinhimthe_bm05.html
	  Stripped spans in: OEBPS/beastinhimthe_htp01.html
	  Stripped spans in: OEBPS/beastinhimthe_ch25.html
	  Stripped spans in: OEBPS/beastinhimthe_ch13.html
	  Stripped spans in: OEBPS/beastinhimthe_ch04.html
	  Stripped spans in: OEBPS/beastinhimthe_ch06.html
	  Stripped spans in: OEBPS/beastinhimthe_ch21.html
	  Stripped spans in: OEBPS/beastinhimthe_ch32.html
	  Stripped spans in: OEBPS/beastinhimthe_bm06.html
	  Stripped spans in: OEBPS/beastinhimthe_ch24.html
	  Stripped spans in: OEBPS/beastinhimthe_ch01.html
	  Stripped spans in: OEBPS/beastinhimthe_ch19.html
	  Stripped spans in: OEBPS/beastinhimthe_ch07.html
	  Stripped spans in: OEBPS/beastinhimthe_ch30.html
	  Stripped spans in: OEBPS/beastinhimthe_ch16.html
	  Stripped spans in: OEBPS/beastinhimthe_ch31.html
	  Stripped spans in: OEBPS/beastinhimthe_con01.html
	  Stripped spans in: OEBPS/beastinhimthe_ch27.html
	  Stripped spans in: OEBPS/beastinhimthe_ch03.html
	  Stripped spans in: OEBPS/beastinhimthe_ch02.html
	  Stripped spans in: OEBPS/beastinhimthe_ch08.html
	  Stripped spans in: OEBPS/beastinhimthe_ch20.html
	  Stripped spans in: OEBPS/beastinhimthe_ch23.html
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_bm04.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_tp01.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch17.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch28.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch15.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch18.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch26.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_htp02.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_bm02.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch12.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch14.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch05.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch09.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch29.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch10.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_bm07.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch11.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_bm01.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_bm03.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_fm01.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_adc01.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch22.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_bm05.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_cov.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_htp01.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch25.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch13.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch04.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch06.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch21.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch32.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_bm06.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch24.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch01.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch19.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch07.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch30.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch16.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch31.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_con01.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch27.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch03.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch02.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch08.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch20.html
	  Removed Kobo HEAD elements from: OEBPS/beastinhimthe_ch23.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_bm04.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_cop01.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_tp01.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch17.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch28.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch15.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch18.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch26.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_htp02.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_bm02.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch12.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch14.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch05.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch09.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch29.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch10.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_bm07.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch11.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_bm01.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_bm03.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_fm01.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_adc01.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch22.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_bm05.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_cov.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_htp01.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch25.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch13.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch04.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch06.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch21.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch32.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_bm06.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch24.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch01.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch19.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch07.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch30.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch16.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch31.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_con01.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch27.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch03.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch02.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch08.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch20.html
	  Stripped Kobo spans in: OEBPS/beastinhimthe_ch23.html
ePub updated in 2.33 seconds

Logfile for book ID 4 (The Bite Before Christmas / Lynsay Sands & Jeaniene Frost)
4
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\4.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/Chapter_31.xhtml
	  Removed script block from: OEBPS/About_the_Publisher.xhtml
	  Removed script block from: OEBPS/Chapter_7.xhtml
	  Removed script block from: OEBPS/Chapter_25.xhtml
	  Removed script block from: OEBPS/Contents.xhtml
	  Removed script block from: OEBPS/Credits.xhtml
	  Removed script block from: OEBPS/Chapter_26.xhtml
	  Removed script block from: OEBPS/Chapter_19.xhtml
	  Removed script block from: OEBPS/Also_by_Lynsay_Sands.xhtml
	  Removed script block from: OEBPS/Chapter_15.xhtml
	  Removed script block from: OEBPS/Cover.xhtml
	  Removed script block from: OEBPS/Chapter_29.xhtml
	  Removed script block from: OEBPS/Chapter_12.xhtml
	  Removed script block from: OEBPS/Part_2.xhtml
	  Removed script block from: OEBPS/Chapter_34.xhtml
	  Removed script block from: OEBPS/Chapter_17.xhtml
	  Removed script block from: OEBPS/Chapter_28.xhtml
	  Removed script block from: OEBPS/Chapter_30.xhtml
	  Removed script block from: OEBPS/Chapter_8.xhtml
	  Removed script block from: OEBPS/About_the_Author.xhtml
	  Removed script block from: OEBPS/Also_by_Jeaniene_Frost.xhtml
	  Removed script block from: OEBPS/Chapter_16.xhtml
	  Removed script block from: OEBPS/Chapter_21.xhtml
	  Removed script block from: OEBPS/Chapter_4.xhtml
	  Removed script block from: OEBPS/Chapter_22.xhtml
	  Removed script block from: OEBPS/Chapter_14.xhtml
	  Removed script block from: OEBPS/Chapter_20.xhtml
	  Removed script block from: OEBPS/Chapter_9.xhtml
	  Removed script block from: OEBPS/Chapter_33.xhtml
	  Removed script block from: OEBPS/Chapter_10.xhtml
	  Removed script block from: OEBPS/Chapter_5.xhtml
	  Removed script block from: OEBPS/Chapter_1.xhtml
	  Removed script block from: OEBPS/Copyright.xhtml
	  Removed script block from: OEBPS/Chapter_27.xhtml
	  Removed script block from: OEBPS/Chapter_11.xhtml
	  Removed script block from: OEBPS/Chapter_23.xhtml
	  Removed script block from: OEBPS/Part_1.xhtml
	  Removed script block from: OEBPS/Chapter_3.xhtml
	  Removed script block from: OEBPS/Chapter_6.xhtml
	  Removed script block from: OEBPS/Title_Page.xhtml
	  Removed script block from: OEBPS/Chapter_32.xhtml
	  Removed script block from: OEBPS/Chapter_13.xhtml
	  Removed script block from: OEBPS/Chapter_24.xhtml
	  Removed script block from: OEBPS/Chapter_2.xhtml
	  Removed script block from: OEBPS/Chapter_18.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_31.xhtml
	  Removed Kobo HEAD elements from: OEBPS/About_the_Publisher.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_7.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_25.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Contents.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Credits.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_26.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_19.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Also_by_Lynsay_Sands.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_15.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Cover.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_29.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_12.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Part_2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_34.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_17.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_28.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_30.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_8.xhtml
	  Removed Kobo HEAD elements from: OEBPS/About_the_Author.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Also_by_Jeaniene_Frost.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_16.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_21.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_4.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_22.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_14.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_20.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_9.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_33.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_10.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Copyright.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_27.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_11.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_23.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Part_1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Title_Page.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_32.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_13.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_24.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_18.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_31.xhtml
	  Stripped Kobo spans in: OEBPS/About_the_Publisher.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_7.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_25.xhtml
	  Stripped Kobo spans in: OEBPS/Contents.xhtml
	  Stripped Kobo spans in: OEBPS/Credits.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_26.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_19.xhtml
	  Stripped Kobo spans in: OEBPS/Also_by_Lynsay_Sands.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_15.xhtml
	  Stripped Kobo spans in: OEBPS/Cover.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_29.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_12.xhtml
	  Stripped Kobo spans in: OEBPS/Part_2.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_34.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_17.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_28.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_30.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_8.xhtml
	  Stripped Kobo spans in: OEBPS/About_the_Author.xhtml
	  Stripped Kobo spans in: OEBPS/Also_by_Jeaniene_Frost.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_16.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_21.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_4.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_22.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_14.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_20.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_9.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_33.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_10.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_5.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_1.xhtml
	  Stripped Kobo spans in: OEBPS/Copyright.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_27.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_11.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_23.xhtml
	  Stripped Kobo spans in: OEBPS/Part_1.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_3.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_6.xhtml
	  Stripped Kobo spans in: OEBPS/Title_Page.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_32.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_13.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_24.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_2.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_18.xhtml
ePub updated in 1.90 seconds

Logfile for book ID 138 (Tell Me / Olivia Cunning)
138
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\138.epub
Parsing xml file: content.opf
Parsing xml file: toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: Tell Me Final_split_006.htm
	  Removed script block from: Tell Me Final_split_005.htm
	  Removed script block from: Tell Me Final_split_021.htm
	  Removed script block from: Tell Me Final_split_028.htm
	  Removed script block from: Tell Me Final_split_007.htm
	  Removed script block from: Tell Me Final_split_022.htm
	  Removed script block from: Tell Me Final_split_009.htm
	  Removed script block from: Tell Me Final_split_026.htm
	  Removed script block from: Tell Me Final_split_024.htm
	  Removed script block from: Tell Me Final_split_032.htm
	  Removed script block from: Tell Me Final_split_010.htm
	  Removed script block from: Tell Me Final_split_031.htm
	  Removed script block from: Tell Me Final_split_030.htm
	  Removed script block from: Tell Me Final_split_017.htm
	  Removed script block from: Tell Me Final_split_015.htm
	  Removed script block from: Tell Me Final_split_003.htm
	  Removed script block from: Tell Me Final_split_012.htm
	  Removed script block from: Tell Me Final_split_004.htm
	  Removed script block from: Tell Me Final_split_019.htm
	  Removed script block from: titlepage.xhtml
	  Removed script block from: Tell Me Final_split_014.htm
	  Removed script block from: Tell Me Final_split_018.htm
	  Removed script block from: Tell Me Final_split_016.htm
	  Removed script block from: Tell Me Final_split_000.htm
	  Removed script block from: Tell Me Final_split_002.htm
	  Removed script block from: Tell Me Final_split_001.htm
	  Removed script block from: Tell Me Final_split_013.htm
	  Removed script block from: Tell Me Final_split_011.htm
	  Removed script block from: Tell Me Final_split_023.htm
	  Removed script block from: Tell Me Final_split_025.htm
	  Removed script block from: Tell Me Final_split_029.htm
	  Removed script block from: Tell Me Final_split_008.htm
	  Removed script block from: Tell Me Final_split_020.htm
	  Removed script block from: Tell Me Final_split_027.htm
	Looking for .js files to remove
	  Found .js file to remove: js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: Tell Me Final_split_006.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_005.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_021.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_028.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_007.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_022.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_009.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_026.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_024.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_032.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_010.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_031.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_030.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_017.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_015.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_003.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_012.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_004.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_019.htm
	  Removed Kobo HEAD elements from: titlepage.xhtml
	  Removed Kobo HEAD elements from: Tell Me Final_split_014.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_018.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_016.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_000.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_002.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_001.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_013.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_011.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_023.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_025.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_029.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_008.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_020.htm
	  Removed Kobo HEAD elements from: Tell Me Final_split_027.htm
	  Stripped Kobo spans in: Tell Me Final_split_006.htm
	  Stripped Kobo spans in: Tell Me Final_split_005.htm
	  Stripped Kobo spans in: Tell Me Final_split_021.htm
	  Stripped Kobo spans in: Tell Me Final_split_028.htm
	  Stripped Kobo spans in: Tell Me Final_split_007.htm
	  Stripped Kobo spans in: Tell Me Final_split_022.htm
	  Stripped Kobo spans in: Tell Me Final_split_009.htm
	  Stripped Kobo spans in: Tell Me Final_split_026.htm
	  Stripped Kobo spans in: Tell Me Final_split_024.htm
	  Stripped Kobo spans in: Tell Me Final_split_032.htm
	  Stripped Kobo spans in: Tell Me Final_split_010.htm
	  Stripped Kobo spans in: Tell Me Final_split_031.htm
	  Stripped Kobo spans in: Tell Me Final_split_030.htm
	  Stripped Kobo spans in: Tell Me Final_split_017.htm
	  Stripped Kobo spans in: Tell Me Final_split_015.htm
	  Stripped Kobo spans in: Tell Me Final_split_003.htm
	  Stripped Kobo spans in: Tell Me Final_split_012.htm
	  Stripped Kobo spans in: Tell Me Final_split_004.htm
	  Stripped Kobo spans in: Tell Me Final_split_019.htm
	  Stripped Kobo spans in: titlepage.xhtml
	  Stripped Kobo spans in: Tell Me Final_split_014.htm
	  Stripped Kobo spans in: Tell Me Final_split_018.htm
	  Stripped Kobo spans in: Tell Me Final_split_016.htm
	  Stripped Kobo spans in: Tell Me Final_split_000.htm
	  Stripped Kobo spans in: Tell Me Final_split_002.htm
	  Stripped Kobo spans in: Tell Me Final_split_001.htm
	  Stripped Kobo spans in: Tell Me Final_split_013.htm
	  Stripped Kobo spans in: Tell Me Final_split_011.htm
	  Stripped Kobo spans in: Tell Me Final_split_023.htm
	  Stripped Kobo spans in: Tell Me Final_split_025.htm
	  Stripped Kobo spans in: Tell Me Final_split_029.htm
	  Stripped Kobo spans in: Tell Me Final_split_008.htm
	  Stripped Kobo spans in: Tell Me Final_split_020.htm
	  Stripped Kobo spans in: Tell Me Final_split_027.htm
ePub updated in 2.12 seconds

Logfile for book ID 136 (Sweet Dreams: Halle Pumas, Book Two / Bell, Dana Marie)
136
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\136.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/toc.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/toc.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 1.21 seconds

Logfile for book ID 137 (Tall, Dark & Hungry / Lynsay Sands)
137
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\137.epub
Parsing xml file: OEBPS/talldarkhungry.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/028-reviewpage.html
	  Removed script block from: OEBPS/016-chapter11.html
	  Removed script block from: OEBPS/012-chapter07.html
	  Removed script block from: OEBPS/005-frontmatterpage.html
	  Removed script block from: OEBPS/029-adcardpage.html
	  Removed script block from: OEBPS/010-chapter05.html
	  Removed script block from: OEBPS/001-coverpage.html
	  Removed script block from: OEBPS/027-aboutauthorpage.html
	  Removed script block from: OEBPS/025-chapter20.html
	  Removed script block from: OEBPS/002-titlepage.html
	  Removed script block from: OEBPS/019-chapter14.html
	  Removed script block from: OEBPS/030-copyrightpage.html
	  Removed script block from: OEBPS/022-chapter17.html
	  Removed script block from: OEBPS/011-chapter06.html
	  Removed script block from: OEBPS/009-chapter04.html
	  Removed script block from: OEBPS/015-chapter10.html
	  Removed script block from: OEBPS/023-chapter18.html
	  Removed script block from: OEBPS/013-chapter08.html
	  Removed script block from: OEBPS/021-chapter16.html
	  Removed script block from: OEBPS/008-chapter03.html
	  Removed script block from: OEBPS/031-aboutpublisherpage.html
	  Removed script block from: OEBPS/006-chapter01.html
	  Removed script block from: OEBPS/024-chapter19.html
	  Removed script block from: OEBPS/007-chapter02.html
	  Removed script block from: OEBPS/017-chapter12.html
	  Removed script block from: OEBPS/026-backmatterpage01.html
	  Removed script block from: OEBPS/004-TOC.html
	  Removed script block from: OEBPS/020-chapter15.html
	  Removed script block from: OEBPS/014-chapter09.html
	  Removed script block from: OEBPS/018-chapter13.html
	  Removed script block from: OEBPS/003-dedicationpage.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/028-reviewpage.html
	  Removed Kobo HEAD elements from: OEBPS/016-chapter11.html
	  Removed Kobo HEAD elements from: OEBPS/012-chapter07.html
	  Removed Kobo HEAD elements from: OEBPS/005-frontmatterpage.html
	  Removed Kobo HEAD elements from: OEBPS/029-adcardpage.html
	  Removed Kobo HEAD elements from: OEBPS/010-chapter05.html
	  Removed Kobo HEAD elements from: OEBPS/001-coverpage.html
	  Removed Kobo HEAD elements from: OEBPS/027-aboutauthorpage.html
	  Removed Kobo HEAD elements from: OEBPS/025-chapter20.html
	  Removed Kobo HEAD elements from: OEBPS/002-titlepage.html
	  Removed Kobo HEAD elements from: OEBPS/019-chapter14.html
	  Removed Kobo HEAD elements from: OEBPS/030-copyrightpage.html
	  Removed Kobo HEAD elements from: OEBPS/022-chapter17.html
	  Removed Kobo HEAD elements from: OEBPS/011-chapter06.html
	  Removed Kobo HEAD elements from: OEBPS/009-chapter04.html
	  Removed Kobo HEAD elements from: OEBPS/015-chapter10.html
	  Removed Kobo HEAD elements from: OEBPS/023-chapter18.html
	  Removed Kobo HEAD elements from: OEBPS/013-chapter08.html
	  Removed Kobo HEAD elements from: OEBPS/021-chapter16.html
	  Removed Kobo HEAD elements from: OEBPS/008-chapter03.html
	  Removed Kobo HEAD elements from: OEBPS/031-aboutpublisherpage.html
	  Removed Kobo HEAD elements from: OEBPS/006-chapter01.html
	  Removed Kobo HEAD elements from: OEBPS/024-chapter19.html
	  Removed Kobo HEAD elements from: OEBPS/007-chapter02.html
	  Removed Kobo HEAD elements from: OEBPS/017-chapter12.html
	  Removed Kobo HEAD elements from: OEBPS/026-backmatterpage01.html
	  Removed Kobo HEAD elements from: OEBPS/004-TOC.html
	  Removed Kobo HEAD elements from: OEBPS/020-chapter15.html
	  Removed Kobo HEAD elements from: OEBPS/014-chapter09.html
	  Removed Kobo HEAD elements from: OEBPS/018-chapter13.html
	  Removed Kobo HEAD elements from: OEBPS/003-dedicationpage.html
	  Stripped Kobo spans in: OEBPS/028-reviewpage.html
	  Stripped Kobo spans in: OEBPS/016-chapter11.html
	  Stripped Kobo spans in: OEBPS/012-chapter07.html
	  Stripped Kobo spans in: OEBPS/005-frontmatterpage.html
	  Stripped Kobo spans in: OEBPS/029-adcardpage.html
	  Stripped Kobo spans in: OEBPS/010-chapter05.html
	  Stripped Kobo spans in: OEBPS/001-coverpage.html
	  Stripped Kobo spans in: OEBPS/027-aboutauthorpage.html
	  Stripped Kobo spans in: OEBPS/025-chapter20.html
	  Stripped Kobo spans in: OEBPS/002-titlepage.html
	  Stripped Kobo spans in: OEBPS/019-chapter14.html
	  Stripped Kobo spans in: OEBPS/030-copyrightpage.html
	  Stripped Kobo spans in: OEBPS/022-chapter17.html
	  Stripped Kobo spans in: OEBPS/011-chapter06.html
	  Stripped Kobo spans in: OEBPS/009-chapter04.html
	  Stripped Kobo spans in: OEBPS/015-chapter10.html
	  Stripped Kobo spans in: OEBPS/023-chapter18.html
	  Stripped Kobo spans in: OEBPS/013-chapter08.html
	  Stripped Kobo spans in: OEBPS/021-chapter16.html
	  Stripped Kobo spans in: OEBPS/008-chapter03.html
	  Stripped Kobo spans in: OEBPS/031-aboutpublisherpage.html
	  Stripped Kobo spans in: OEBPS/006-chapter01.html
	  Stripped Kobo spans in: OEBPS/024-chapter19.html
	  Stripped Kobo spans in: OEBPS/007-chapter02.html
	  Stripped Kobo spans in: OEBPS/017-chapter12.html
	  Stripped Kobo spans in: OEBPS/026-backmatterpage01.html
	  Stripped Kobo spans in: OEBPS/004-TOC.html
	  Stripped Kobo spans in: OEBPS/020-chapter15.html
	  Stripped Kobo spans in: OEBPS/014-chapter09.html
	  Stripped Kobo spans in: OEBPS/018-chapter13.html
	  Stripped Kobo spans in: OEBPS/003-dedicationpage.html
ePub updated in 1.85 seconds

Logfile for book ID 134 (SweetCaress / Bonnie Rose Leigh & Tianna Xander)
134
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\134.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part7.xhtml
	  Removed script block from: OEBPS/part11.xhtml
	  Removed script block from: OEBPS/part8.xhtml
	  Removed script block from: OEBPS/part6.xhtml
	  Removed script block from: OEBPS/part3.xhtml
	  Removed script block from: OEBPS/part12.xhtml
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part10.xhtml
	  Removed script block from: OEBPS/part4.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/part9.xhtml
	  Removed script block from: OEBPS/part5.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part7.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part11.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part8.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part12.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part10.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part4.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part9.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part7.xhtml
	  Stripped Kobo spans in: OEBPS/part11.xhtml
	  Stripped Kobo spans in: OEBPS/part8.xhtml
	  Stripped Kobo spans in: OEBPS/part6.xhtml
	  Stripped Kobo spans in: OEBPS/part3.xhtml
	  Stripped Kobo spans in: OEBPS/part12.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part10.xhtml
	  Stripped Kobo spans in: OEBPS/part4.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/part9.xhtml
	  Stripped Kobo spans in: OEBPS/part5.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 0.53 seconds

Logfile for book ID 135 (Lover Mine / Ward, J.R.)
135
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\135.epub
Parsing xml file: OEBPS/ward_9781101187098_oeb_opf_r1.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c54_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c64_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c50_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_toc_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_tp_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c16_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c52_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c30_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c04_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c25_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c14_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c69_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c73_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_ack_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c11_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c20_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c35_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c23_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_cover_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c55_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c45_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c17_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c32_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c36_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c24_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c12_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c70_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c40_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c71_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c34_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c68_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c03_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c60_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c74_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c47_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c59_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c43_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c08_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c27_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c06_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c29_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c05_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c41_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c33_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c10_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c57_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_fm1_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c09_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c28_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c02_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c15_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c39_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c65_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c13_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c46_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_fm2_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c42_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c01_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c18_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c67_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_gl1_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c66_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c72_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c26_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c51_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c31_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c21_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c63_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_cop_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c61_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c56_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c22_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c44_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c38_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c19_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c49_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c53_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_fm3_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c62_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c48_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c58_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_ded_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c37_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101187098_oeb_c07_r1.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c54_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c64_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c50_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_toc_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_tp_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c16_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c52_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c30_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c04_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c25_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c14_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c69_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c73_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_ack_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c11_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c20_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c35_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c23_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_cover_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c55_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c45_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c17_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c32_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c36_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c24_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c12_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c70_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c40_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c71_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c34_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c68_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c03_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c60_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c74_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c47_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c59_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c43_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c08_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c27_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c06_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c29_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c05_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c41_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c33_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c10_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c57_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_fm1_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c09_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c28_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c02_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c15_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c39_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c65_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c13_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c46_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_fm2_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c42_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c01_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c18_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c67_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_gl1_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c66_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c72_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c26_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c51_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c31_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c21_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c63_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_cop_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c61_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c56_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c22_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c44_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c38_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c19_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c49_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c53_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_fm3_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c62_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c48_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c58_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_ded_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c37_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101187098_oeb_c07_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c54_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c64_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c50_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_tp_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c16_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c52_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c30_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c04_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c25_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c14_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c69_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c73_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_ack_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c11_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c20_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c35_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c23_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_cover_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c55_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c45_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c17_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c32_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c36_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c24_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c12_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c70_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c40_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c71_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c34_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c68_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c03_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c60_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c74_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c47_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c59_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c43_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c08_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c27_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c06_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c29_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c05_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c41_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c33_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c10_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c57_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_fm1_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c09_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c28_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c02_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c15_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c39_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c65_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c13_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c46_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_fm2_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c42_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c01_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c18_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c67_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_gl1_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c66_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c72_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c26_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c51_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c31_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c21_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c63_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_cop_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c61_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c56_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c22_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c44_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c38_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c19_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c49_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c53_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_fm3_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c62_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c48_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c58_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_ded_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c37_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101187098_oeb_c07_r1.xhtml
ePub updated in 3.72 seconds

Logfile for book ID 133 (Stygian’s Honor / Lora Leigh)
133
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\133.epub
Parsing xml file: OPS/package.opf
Parsing xml file: OPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OPS/xhtml/chapter021.html
	  Removed script block from: OPS/xhtml/chapter004.html
	  Removed script block from: OPS/xhtml/chapter016.html
	  Removed script block from: OPS/xhtml/frontmatter001.html
	  Removed script block from: OPS/xhtml/chapter006.html
	  Removed script block from: OPS/xhtml/frontmatter002.html
	  Removed script block from: OPS/xhtml/chapter007.html
	  Removed script block from: OPS/xhtml/toc.html
	  Removed script block from: OPS/xhtml/chapter012.html
	  Removed script block from: OPS/xhtml/chapter010.html
	  Removed script block from: OPS/xhtml/title.html
	  Removed script block from: OPS/xhtml/chapter005.html
	  Removed script block from: OPS/xhtml/chapter022.html
	  Removed script block from: OPS/xhtml/chapter013.html
	  Removed script block from: OPS/xhtml/dedication.html
	  Removed script block from: OPS/xhtml/chapter011.html
	  Removed script block from: OPS/xhtml/chapter015.html
	  Removed script block from: OPS/xhtml/chapter024.html
	  Removed script block from: OPS/xhtml/chapter020.html
	  Removed script block from: OPS/xhtml/prologue.html
	  Removed script block from: OPS/xhtml/chapter017.html
	  Removed script block from: OPS/xhtml/chapter018.html
	  Removed script block from: OPS/xhtml/copyright.html
	  Removed script block from: OPS/xhtml/chapter008.html
	  Removed script block from: OPS/xhtml/chapter014.html
	  Removed script block from: OPS/xhtml/chapter023.html
	  Removed script block from: OPS/xhtml/chapter001.html
	  Removed script block from: OPS/xhtml/chapter003.html
	  Removed script block from: OPS/xhtml/cover.html
	  Removed script block from: OPS/xhtml/chapter009.html
	  Removed script block from: OPS/xhtml/chapter002.html
	  Removed script block from: OPS/xhtml/chapter019.html
	  Removed script block from: OPS/GlobalBackad.html
	Looking for .js files to remove
	  Found .js file to remove: OPS/js/kobo.js
	  Found .js file to remove: OPS/xhtml/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OPS/xhtml/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed kobo.css file: OPS/css/kobo.css
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter021.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter004.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter016.html
	  Removed Kobo HEAD elements from: OPS/xhtml/frontmatter001.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter006.html
	  Removed Kobo HEAD elements from: OPS/xhtml/frontmatter002.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter007.html
	  Removed Kobo HEAD elements from: OPS/xhtml/toc.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter012.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter010.html
	  Removed Kobo HEAD elements from: OPS/xhtml/title.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter005.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter022.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter013.html
	  Removed Kobo HEAD elements from: OPS/xhtml/dedication.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter011.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter015.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter024.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter020.html
	  Removed Kobo HEAD elements from: OPS/xhtml/prologue.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter017.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter018.html
	  Removed Kobo HEAD elements from: OPS/xhtml/copyright.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter008.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter014.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter023.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter001.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter003.html
	  Removed Kobo HEAD elements from: OPS/xhtml/cover.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter009.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter002.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter019.html
	  Removed Kobo HEAD elements from: OPS/GlobalBackad.html
	  Stripped Kobo spans in: OPS/xhtml/chapter021.html
	  Stripped Kobo spans in: OPS/xhtml/chapter004.html
	  Stripped Kobo spans in: OPS/xhtml/chapter016.html
	  Stripped Kobo spans in: OPS/xhtml/frontmatter001.html
	  Stripped Kobo spans in: OPS/xhtml/chapter006.html
	  Stripped Kobo spans in: OPS/xhtml/frontmatter002.html
	  Stripped Kobo spans in: OPS/xhtml/chapter007.html
	  Stripped Kobo spans in: OPS/xhtml/toc.html
	  Stripped Kobo spans in: OPS/xhtml/chapter012.html
	  Stripped Kobo spans in: OPS/xhtml/chapter010.html
	  Stripped Kobo spans in: OPS/xhtml/title.html
	  Stripped Kobo spans in: OPS/xhtml/chapter005.html
	  Stripped Kobo spans in: OPS/xhtml/chapter022.html
	  Stripped Kobo spans in: OPS/xhtml/chapter013.html
	  Stripped Kobo spans in: OPS/xhtml/dedication.html
	  Stripped Kobo spans in: OPS/xhtml/chapter011.html
	  Stripped Kobo spans in: OPS/xhtml/chapter015.html
	  Stripped Kobo spans in: OPS/xhtml/chapter024.html
	  Stripped Kobo spans in: OPS/xhtml/chapter020.html
	  Stripped Kobo spans in: OPS/xhtml/prologue.html
	  Stripped Kobo spans in: OPS/xhtml/chapter017.html
	  Stripped Kobo spans in: OPS/xhtml/chapter018.html
	  Stripped Kobo spans in: OPS/xhtml/copyright.html
	  Stripped Kobo spans in: OPS/xhtml/chapter008.html
	  Stripped Kobo spans in: OPS/xhtml/chapter014.html
	  Stripped Kobo spans in: OPS/xhtml/chapter023.html
	  Stripped Kobo spans in: OPS/xhtml/chapter001.html
	  Stripped Kobo spans in: OPS/xhtml/chapter003.html
	  Stripped Kobo spans in: OPS/xhtml/cover.html
	  Stripped Kobo spans in: OPS/xhtml/chapter009.html
	  Stripped Kobo spans in: OPS/xhtml/chapter002.html
	  Stripped Kobo spans in: OPS/xhtml/chapter019.html
	  Stripped Kobo spans in: OPS/GlobalBackad.html
ePub updated in 1.74 seconds

Logfile for book ID 131 (Steel Beauty: Halle Pumas, Book Four / Bell, Dana Marie)
131
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\131.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/toc.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/toc.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 1.59 seconds

Logfile for book ID 132 (Lover Eternal / J. R. Ward)
132
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\132.epub
Parsing xml file: OEBPS/lovereternal.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/lovereternal_ch14.html
	  Removed script block from: OEBPS/lovereternal_ch12.html
	  Removed script block from: OEBPS/lovereternal_ch25.html
	  Removed script block from: OEBPS/lovereternal_ch34.html
	  Removed script block from: OEBPS/lovereternal_ch20.html
	  Removed script block from: OEBPS/lovereternal_ch03.html
	  Removed script block from: OEBPS/lovereternal_ch18.html
	  Removed script block from: OEBPS/lovereternal_ch29.html
	  Removed script block from: OEBPS/lovereternal_ch16.html
	  Removed script block from: OEBPS/lovereternal_ch17.html
	  Removed script block from: OEBPS/lovereternal_ch32.html
	  Removed script block from: OEBPS/lovereternal_ch39.html
	  Removed script block from: OEBPS/lovereternal_cop01.html
	  Removed script block from: OEBPS/lovereternal_ch27.html
	  Removed script block from: OEBPS/lovereternal_ch37.html
	  Removed script block from: OEBPS/lovereternal_ch44.html
	  Removed script block from: OEBPS/lovereternal_ch40.html
	  Removed script block from: OEBPS/lovereternal_ch26.html
	  Removed script block from: OEBPS/lovereternal_ch43.html
	  Removed script block from: OEBPS/lovereternal_ch36.html
	  Removed script block from: OEBPS/lovereternal_ch15.html
	  Removed script block from: OEBPS/lovereternal_ch05.html
	  Removed script block from: OEBPS/lovereternal_ch24.html
	  Removed script block from: OEBPS/lovereternal_ded01.html
	  Removed script block from: OEBPS/lovereternal_ch33.html
	  Removed script block from: OEBPS/lovereternal_ch19.html
	  Removed script block from: OEBPS/lovereternal_ch01.html
	  Removed script block from: OEBPS/lovereternal_ch51.html
	  Removed script block from: OEBPS/lovereternal_ch49.html
	  Removed script block from: OEBPS/lovereternal_ch04.html
	  Removed script block from: OEBPS/lovereternal_ch42.html
	  Removed script block from: OEBPS/lovereternal_ch35.html
	  Removed script block from: OEBPS/lovereternal_cov.html
	  Removed script block from: OEBPS/lovereternal_ch21.html
	  Removed script block from: OEBPS/lovereternal_ch13.html
	  Removed script block from: OEBPS/lovereternal_ch30.html
	  Removed script block from: OEBPS/lovereternal_ch10.html
	  Removed script block from: OEBPS/lovereternal_ch31.html
	  Removed script block from: OEBPS/lovereternal_ack01.html
	  Removed script block from: OEBPS/lovereternal_ch48.html
	  Removed script block from: OEBPS/lovereternal_ch07.html
	  Removed script block from: OEBPS/lovereternal_ch09.html
	  Removed script block from: OEBPS/lovereternal_ch08.html
	  Removed script block from: OEBPS/lovereternal_ch47.html
	  Removed script block from: OEBPS/lovereternal_ch02.html
	  Removed script block from: OEBPS/lovereternal_ch41.html
	  Removed script block from: OEBPS/lovereternal_ch38.html
	  Removed script block from: OEBPS/lovereternal_con01.html
	  Removed script block from: OEBPS/lovereternal_fmp01.html
	  Removed script block from: OEBPS/lovereternal_rp01.html
	  Removed script block from: OEBPS/lovereternal_ch45.html
	  Removed script block from: OEBPS/lovereternal_ch23.html
	  Removed script block from: OEBPS/lovereternal_ch22.html
	  Removed script block from: OEBPS/lovereternal_ch11.html
	  Removed script block from: OEBPS/lovereternal_ch50.html
	  Removed script block from: OEBPS/lovereternal_ch06.html
	  Removed script block from: OEBPS/lovereternal_ch28.html
	  Removed script block from: OEBPS/lovereternal_ch46.html
	  Removed script block from: OEBPS/lovereternal_tp01.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch14.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch12.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch25.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch34.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch20.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch03.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch18.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch29.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch16.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch17.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch32.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch39.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch27.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch37.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch44.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch40.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch26.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch43.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch36.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch15.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch05.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch24.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ded01.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch33.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch19.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch01.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch51.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch49.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch04.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch42.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch35.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_cov.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch21.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch13.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch30.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch10.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch31.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ack01.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch48.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch07.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch09.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch08.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch47.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch02.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch41.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch38.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_con01.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_fmp01.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_rp01.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch45.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch23.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch22.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch11.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch50.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch06.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch28.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_ch46.html
	  Removed Kobo HEAD elements from: OEBPS/lovereternal_tp01.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch14.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch12.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch25.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch34.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch20.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch03.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch18.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch29.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch16.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch17.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch32.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch39.html
	  Stripped Kobo spans in: OEBPS/lovereternal_cop01.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch27.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch37.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch44.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch40.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch26.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch43.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch36.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch15.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch05.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch24.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ded01.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch33.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch19.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch01.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch51.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch49.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch04.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch42.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch35.html
	  Stripped Kobo spans in: OEBPS/lovereternal_cov.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch21.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch13.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch30.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch10.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch31.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ack01.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch48.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch07.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch09.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch08.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch47.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch02.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch41.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch38.html
	  Stripped Kobo spans in: OEBPS/lovereternal_con01.html
	  Stripped Kobo spans in: OEBPS/lovereternal_fmp01.html
	  Stripped Kobo spans in: OEBPS/lovereternal_rp01.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch45.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch23.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch22.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch11.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch50.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch06.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch28.html
	  Stripped Kobo spans in: OEBPS/lovereternal_ch46.html
	  Stripped Kobo spans in: OEBPS/lovereternal_tp01.html
ePub updated in 2.07 seconds

Logfile for book ID 130 (Single White Vampire / Lynsay Sands)
130
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\130.epub
Parsing xml file: OEBPS/singlewhitevampire.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/028-reviewpage.html
	  Removed script block from: OEBPS/016-chapter11.html
	  Removed script block from: OEBPS/012-chapter07.html
	  Removed script block from: OEBPS/005-frontmatterpage.html
	  Removed script block from: OEBPS/029-adcardpage.html
	  Removed script block from: OEBPS/010-chapter05.html
	  Removed script block from: OEBPS/001-coverpage.html
	  Removed script block from: OEBPS/027-aboutauthorpage.html
	  Removed script block from: OEBPS/025-chapter20.html
	  Removed script block from: OEBPS/002-titlepage.html
	  Removed script block from: OEBPS/019-chapter14.html
	  Removed script block from: OEBPS/030-copyrightpage.html
	  Removed script block from: OEBPS/022-chapter17.html
	  Removed script block from: OEBPS/011-chapter06.html
	  Removed script block from: OEBPS/009-chapter04.html
	  Removed script block from: OEBPS/015-chapter10.html
	  Removed script block from: OEBPS/023-chapter18.html
	  Removed script block from: OEBPS/026-backmatterpage.html
	  Removed script block from: OEBPS/013-chapter08.html
	  Removed script block from: OEBPS/021-chapter16.html
	  Removed script block from: OEBPS/008-chapter03.html
	  Removed script block from: OEBPS/031-aboutpublisherpage.html
	  Removed script block from: OEBPS/006-chapter01.html
	  Removed script block from: OEBPS/024-chapter19.html
	  Removed script block from: OEBPS/007-chapter02.html
	  Removed script block from: OEBPS/017-chapter12.html
	  Removed script block from: OEBPS/004-TOC.html
	  Removed script block from: OEBPS/020-chapter15.html
	  Removed script block from: OEBPS/014-chapter09.html
	  Removed script block from: OEBPS/018-chapter13.html
	  Removed script block from: OEBPS/003-dedicationpage.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/028-reviewpage.html
	  Removed Kobo HEAD elements from: OEBPS/016-chapter11.html
	  Removed Kobo HEAD elements from: OEBPS/012-chapter07.html
	  Removed Kobo HEAD elements from: OEBPS/005-frontmatterpage.html
	  Removed Kobo HEAD elements from: OEBPS/029-adcardpage.html
	  Removed Kobo HEAD elements from: OEBPS/010-chapter05.html
	  Removed Kobo HEAD elements from: OEBPS/001-coverpage.html
	  Removed Kobo HEAD elements from: OEBPS/027-aboutauthorpage.html
	  Removed Kobo HEAD elements from: OEBPS/025-chapter20.html
	  Removed Kobo HEAD elements from: OEBPS/002-titlepage.html
	  Removed Kobo HEAD elements from: OEBPS/019-chapter14.html
	  Removed Kobo HEAD elements from: OEBPS/030-copyrightpage.html
	  Removed Kobo HEAD elements from: OEBPS/022-chapter17.html
	  Removed Kobo HEAD elements from: OEBPS/011-chapter06.html
	  Removed Kobo HEAD elements from: OEBPS/009-chapter04.html
	  Removed Kobo HEAD elements from: OEBPS/015-chapter10.html
	  Removed Kobo HEAD elements from: OEBPS/023-chapter18.html
	  Removed Kobo HEAD elements from: OEBPS/026-backmatterpage.html
	  Removed Kobo HEAD elements from: OEBPS/013-chapter08.html
	  Removed Kobo HEAD elements from: OEBPS/021-chapter16.html
	  Removed Kobo HEAD elements from: OEBPS/008-chapter03.html
	  Removed Kobo HEAD elements from: OEBPS/031-aboutpublisherpage.html
	  Removed Kobo HEAD elements from: OEBPS/006-chapter01.html
	  Removed Kobo HEAD elements from: OEBPS/024-chapter19.html
	  Removed Kobo HEAD elements from: OEBPS/007-chapter02.html
	  Removed Kobo HEAD elements from: OEBPS/017-chapter12.html
	  Removed Kobo HEAD elements from: OEBPS/004-TOC.html
	  Removed Kobo HEAD elements from: OEBPS/020-chapter15.html
	  Removed Kobo HEAD elements from: OEBPS/014-chapter09.html
	  Removed Kobo HEAD elements from: OEBPS/018-chapter13.html
	  Removed Kobo HEAD elements from: OEBPS/003-dedicationpage.html
	  Stripped Kobo spans in: OEBPS/028-reviewpage.html
	  Stripped Kobo spans in: OEBPS/016-chapter11.html
	  Stripped Kobo spans in: OEBPS/012-chapter07.html
	  Stripped Kobo spans in: OEBPS/005-frontmatterpage.html
	  Stripped Kobo spans in: OEBPS/029-adcardpage.html
	  Stripped Kobo spans in: OEBPS/010-chapter05.html
	  Stripped Kobo spans in: OEBPS/001-coverpage.html
	  Stripped Kobo spans in: OEBPS/027-aboutauthorpage.html
	  Stripped Kobo spans in: OEBPS/025-chapter20.html
	  Stripped Kobo spans in: OEBPS/002-titlepage.html
	  Stripped Kobo spans in: OEBPS/019-chapter14.html
	  Stripped Kobo spans in: OEBPS/030-copyrightpage.html
	  Stripped Kobo spans in: OEBPS/022-chapter17.html
	  Stripped Kobo spans in: OEBPS/011-chapter06.html
	  Stripped Kobo spans in: OEBPS/009-chapter04.html
	  Stripped Kobo spans in: OEBPS/015-chapter10.html
	  Stripped Kobo spans in: OEBPS/023-chapter18.html
	  Stripped Kobo spans in: OEBPS/026-backmatterpage.html
	  Stripped Kobo spans in: OEBPS/013-chapter08.html
	  Stripped Kobo spans in: OEBPS/021-chapter16.html
	  Stripped Kobo spans in: OEBPS/008-chapter03.html
	  Stripped Kobo spans in: OEBPS/031-aboutpublisherpage.html
	  Stripped Kobo spans in: OEBPS/006-chapter01.html
	  Stripped Kobo spans in: OEBPS/024-chapter19.html
	  Stripped Kobo spans in: OEBPS/007-chapter02.html
	  Stripped Kobo spans in: OEBPS/017-chapter12.html
	  Stripped Kobo spans in: OEBPS/004-TOC.html
	  Stripped Kobo spans in: OEBPS/020-chapter15.html
	  Stripped Kobo spans in: OEBPS/014-chapter09.html
	  Stripped Kobo spans in: OEBPS/018-chapter13.html
	  Stripped Kobo spans in: OEBPS/003-dedicationpage.html
ePub updated in 1.91 seconds

Logfile for book ID 127 (SexMeUp / Tianna Xander & Bonnie Rose Leigh)
127
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\127.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part3.xhtml
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part3.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 0.48 seconds

Logfile for book ID 128 (Sex Piston / Jamie Begley)
128
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\128.epub
Parsing xml file: content.opf
Parsing xml file: toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: index_split_011.xhtml
	  Removed script block from: index_split_005.xhtml
	  Removed script block from: index_split_013.xhtml
	  Removed script block from: index_split_006.xhtml
	  Removed script block from: index_split_021.xhtml
	  Removed script block from: index_split_009.xhtml
	  Removed script block from: index_split_008.xhtml
	  Removed script block from: index_split_014.xhtml
	  Removed script block from: index_split_010.xhtml
	  Removed script block from: index_split_023.xhtml
	  Removed script block from: index_split_017.xhtml
	  Removed script block from: index_split_001.xhtml
	  Removed script block from: index_split_002.xhtml
	  Removed script block from: titlepage.xhtml
	  Removed script block from: index_split_016.xhtml
	  Removed script block from: index_split_000.xhtml
	  Removed script block from: index_split_015.xhtml
	  Removed script block from: index_split_022.xhtml
	  Removed script block from: index_split_018.xhtml
	  Removed script block from: index_split_020.xhtml
	  Removed script block from: index_split_007.xhtml
	  Removed script block from: index_split_003.xhtml
	  Removed script block from: index_split_004.xhtml
	  Removed script block from: index_split_019.xhtml
	  Removed script block from: index_split_012.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo.js
	  Manifest item removed: js/kobo.js (js-kobo.js)
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: css/kobo.css
	  Manifest item removed: css/kobo.css (css-kobo.css)
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: index_split_011.xhtml
	  Removed Kobo HEAD elements from: index_split_005.xhtml
	  Removed Kobo HEAD elements from: index_split_013.xhtml
	  Removed Kobo HEAD elements from: index_split_006.xhtml
	  Removed Kobo HEAD elements from: index_split_021.xhtml
	  Removed Kobo HEAD elements from: index_split_009.xhtml
	  Removed Kobo HEAD elements from: index_split_008.xhtml
	  Removed Kobo HEAD elements from: index_split_014.xhtml
	  Removed Kobo HEAD elements from: index_split_010.xhtml
	  Removed Kobo HEAD elements from: index_split_023.xhtml
	  Removed Kobo HEAD elements from: index_split_017.xhtml
	  Removed Kobo HEAD elements from: index_split_001.xhtml
	  Removed Kobo HEAD elements from: index_split_002.xhtml
	  Removed Kobo HEAD elements from: titlepage.xhtml
	  Removed Kobo HEAD elements from: index_split_016.xhtml
	  Removed Kobo HEAD elements from: index_split_000.xhtml
	  Removed Kobo HEAD elements from: index_split_015.xhtml
	  Removed Kobo HEAD elements from: index_split_022.xhtml
	  Removed Kobo HEAD elements from: index_split_018.xhtml
	  Removed Kobo HEAD elements from: index_split_020.xhtml
	  Removed Kobo HEAD elements from: index_split_007.xhtml
	  Removed Kobo HEAD elements from: index_split_003.xhtml
	  Removed Kobo HEAD elements from: index_split_004.xhtml
	  Removed Kobo HEAD elements from: index_split_019.xhtml
	  Removed Kobo HEAD elements from: index_split_012.xhtml
	  Stripped Kobo spans in: index_split_011.xhtml
	  Stripped Kobo spans in: index_split_005.xhtml
	  Stripped Kobo spans in: index_split_013.xhtml
	  Stripped Kobo spans in: index_split_006.xhtml
	  Stripped Kobo spans in: index_split_021.xhtml
	  Stripped Kobo spans in: index_split_009.xhtml
	  Stripped Kobo spans in: index_split_008.xhtml
	  Stripped Kobo spans in: index_split_014.xhtml
	  Stripped Kobo spans in: index_split_010.xhtml
	  Stripped Kobo spans in: index_split_023.xhtml
	  Stripped Kobo spans in: index_split_017.xhtml
	  Stripped Kobo spans in: index_split_001.xhtml
	  Stripped Kobo spans in: index_split_002.xhtml
	  Stripped Kobo spans in: titlepage.xhtml
	  Stripped Kobo spans in: index_split_016.xhtml
	  Stripped Kobo spans in: index_split_000.xhtml
	  Stripped Kobo spans in: index_split_015.xhtml
	  Stripped Kobo spans in: index_split_022.xhtml
	  Stripped Kobo spans in: index_split_018.xhtml
	  Stripped Kobo spans in: index_split_020.xhtml
	  Stripped Kobo spans in: index_split_007.xhtml
	  Stripped Kobo spans in: index_split_003.xhtml
	  Stripped Kobo spans in: index_split_004.xhtml
	  Stripped Kobo spans in: index_split_019.xhtml
	  Stripped Kobo spans in: index_split_012.xhtml
ePub updated in 1.41 seconds

Logfile for book ID 129 (Share Me Touch Me Tie Me / Olivia Cunning)
129
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\129.epub
Parsing xml file: content.opf
Parsing xml file: toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_038.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_031.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_018.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_009.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_019.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_015.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_021.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_023.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_026.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_017.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_032.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_010.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_012.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_022.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_043.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_011.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_041.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_027.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_014.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_016.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_033.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_013.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_020.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_008.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_025.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_042.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_030.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_024.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_006.htm
	  Removed script block from: titlepage.xhtml
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_028.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_036.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_034.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_044.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_004.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_003.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_001.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_035.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_002.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_039.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_007.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_005.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_040.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_029.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_037.htm
	  Removed script block from: revised Share Me Touch Me Tie Me ebook version_split_000.htm
	Looking for .js files to remove
	  Found .js file to remove: js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_038.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_031.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_018.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_009.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_019.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_015.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_021.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_023.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_026.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_017.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_032.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_010.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_012.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_022.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_043.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_011.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_041.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_027.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_014.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_016.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_033.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_013.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_020.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_008.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_025.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_042.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_030.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_024.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_006.htm
	  Removed Kobo HEAD elements from: titlepage.xhtml
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_028.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_036.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_034.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_044.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_004.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_003.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_001.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_035.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_002.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_039.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_007.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_005.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_040.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_029.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_037.htm
	  Removed Kobo HEAD elements from: revised Share Me Touch Me Tie Me ebook version_split_000.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_038.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_031.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_018.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_009.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_019.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_015.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_021.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_023.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_026.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_017.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_032.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_010.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_012.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_022.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_043.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_011.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_041.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_027.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_014.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_016.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_033.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_013.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_020.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_008.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_025.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_042.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_030.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_024.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_006.htm
	  Stripped Kobo spans in: titlepage.xhtml
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_028.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_036.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_034.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_044.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_004.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_003.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_001.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_035.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_002.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_039.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_007.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_005.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_040.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_029.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_037.htm
	  Stripped Kobo spans in: revised Share Me Touch Me Tie Me ebook version_split_000.htm
ePub updated in 2.59 seconds

Logfile for book ID 126 (Lover Awakened / J. R. Ward)
126
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\126.epub
Parsing xml file: OEBPS/loverawakened.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/loverawakened_ch45.html
	  Removed script block from: OEBPS/loverawakened_ch04.html
	  Removed script block from: OEBPS/loverawakened_ch20.html
	  Removed script block from: OEBPS/loverawakened_ch02.html
	  Removed script block from: OEBPS/loverawakened_ch35.html
	  Removed script block from: OEBPS/loverawakened_ch47.html
	  Removed script block from: OEBPS/loverawakened_ch13.html
	  Removed script block from: OEBPS/loverawakened_ch22.html
	  Removed script block from: OEBPS/loverawakened_ch08.html
	  Removed script block from: OEBPS/loverawakened_ch23.html
	  Removed script block from: OEBPS/loverawakened_ch06.html
	  Removed script block from: OEBPS/loverawakened_ch40.html
	  Removed script block from: OEBPS/loverawakened_ch07.html
	  Removed script block from: OEBPS/loverawakened_ch46.html
	  Removed script block from: OEBPS/loverawakened_ch44.html
	  Removed script block from: OEBPS/loverawakened_ch24.html
	  Removed script block from: OEBPS/loverawakened_ch29.html
	  Removed script block from: OEBPS/loverawakened_ded01.html
	  Removed script block from: OEBPS/loverawakened_ch42.html
	  Removed script block from: OEBPS/loverawakened_acp01.html
	  Removed script block from: OEBPS/loverawakened_ch49.html
	  Removed script block from: OEBPS/loverawakened_epi.html
	  Removed script block from: OEBPS/loverawakened_ch27.html
	  Removed script block from: OEBPS/loverawakened_con01.html
	  Removed script block from: OEBPS/loverawakened_ch15.html
	  Removed script block from: OEBPS/loverawakened_ch05.html
	  Removed script block from: OEBPS/loverawakened_ch34.html
	  Removed script block from: OEBPS/loverawakened_ch36.html
	  Removed script block from: OEBPS/loverawakened_ch11.html
	  Removed script block from: OEBPS/loverawakened_ch09.html
	  Removed script block from: OEBPS/loverawakened_ch39.html
	  Removed script block from: OEBPS/loverawakened_ch32.html
	  Removed script block from: OEBPS/loverawakened_ch14.html
	  Removed script block from: OEBPS/loverawakened_fmp01.html
	  Removed script block from: OEBPS/loverawakened_ch31.html
	  Removed script block from: OEBPS/loverawakened_ch33.html
	  Removed script block from: OEBPS/loverawakened_ch26.html
	  Removed script block from: OEBPS/loverawakened_ch50.html
	  Removed script block from: OEBPS/loverawakened_ch25.html
	  Removed script block from: OEBPS/loverawakened_ch17.html
	  Removed script block from: OEBPS/loverawakened_ch19.html
	  Removed script block from: OEBPS/loverawakened_rp01.html
	  Removed script block from: OEBPS/loverawakened_ch18.html
	  Removed script block from: OEBPS/loverawakened_ch12.html
	  Removed script block from: OEBPS/loverawakened_cov.html
	  Removed script block from: OEBPS/loverawakened_cop01.html
	  Removed script block from: OEBPS/loverawakened_ch48.html
	  Removed script block from: OEBPS/loverawakened_ch10.html
	  Removed script block from: OEBPS/loverawakened_tp01.html
	  Removed script block from: OEBPS/loverawakened_ch37.html
	  Removed script block from: OEBPS/loverawakened_ch43.html
	  Removed script block from: OEBPS/loverawakened_ch30.html
	  Removed script block from: OEBPS/loverawakened_ch41.html
	  Removed script block from: OEBPS/loverawakened_ch01.html
	  Removed script block from: OEBPS/loverawakened_ch21.html
	  Removed script block from: OEBPS/loverawakened_ack01.html
	  Removed script block from: OEBPS/loverawakened_ch03.html
	  Removed script block from: OEBPS/loverawakened_ch28.html
	  Removed script block from: OEBPS/loverawakened_ch16.html
	  Removed script block from: OEBPS/loverawakened_ch38.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch45.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch04.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch20.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch02.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch35.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch47.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch13.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch22.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch08.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch23.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch06.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch40.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch07.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch46.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch44.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch24.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch29.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ded01.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch42.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_acp01.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch49.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_epi.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch27.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_con01.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch15.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch05.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch34.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch36.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch11.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch09.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch39.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch32.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch14.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_fmp01.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch31.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch33.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch26.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch50.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch25.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch17.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch19.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_rp01.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch18.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch12.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_cov.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch48.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch10.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_tp01.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch37.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch43.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch30.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch41.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch01.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch21.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ack01.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch03.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch28.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch16.html
	  Removed Kobo HEAD elements from: OEBPS/loverawakened_ch38.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch45.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch04.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch20.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch02.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch35.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch47.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch13.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch22.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch08.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch23.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch06.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch40.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch07.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch46.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch44.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch24.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch29.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ded01.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch42.html
	  Stripped Kobo spans in: OEBPS/loverawakened_acp01.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch49.html
	  Stripped Kobo spans in: OEBPS/loverawakened_epi.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch27.html
	  Stripped Kobo spans in: OEBPS/loverawakened_con01.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch15.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch05.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch34.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch36.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch11.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch09.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch39.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch32.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch14.html
	  Stripped Kobo spans in: OEBPS/loverawakened_fmp01.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch31.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch33.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch26.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch50.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch25.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch17.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch19.html
	  Stripped Kobo spans in: OEBPS/loverawakened_rp01.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch18.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch12.html
	  Stripped Kobo spans in: OEBPS/loverawakened_cov.html
	  Stripped Kobo spans in: OEBPS/loverawakened_cop01.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch48.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch10.html
	  Stripped Kobo spans in: OEBPS/loverawakened_tp01.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch37.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch43.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch30.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch41.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch01.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch21.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ack01.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch03.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch28.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch16.html
	  Stripped Kobo spans in: OEBPS/loverawakened_ch38.html
ePub updated in 1.98 seconds

Logfile for book ID 124 (SexMeTender / Tianna Xander & Bonnie Rose Leigh)
124
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\124.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 1.11 seconds

Logfile for book ID 122 (SexMeSweet / Tianna Xander & Bonnie Rose Leigh)
122
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\122.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 0.40 seconds

Logfile for book ID 121 (SexMeSlow / Tianna Xander & Bonnie Rose Leigh)
121
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\121.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part3.xhtml
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part3.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 0.37 seconds

Logfile for book ID 125 (Lover Avenged / J. R. Ward)
125
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\125.epub
Parsing xml file: OEBPS/loveravenged.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/loveravenged_ch12.html
	  Removed script block from: OEBPS/loveravenged_ch47.html
	  Removed script block from: OEBPS/loveravenged_ch64.html
	  Removed script block from: OEBPS/loveravenged_ch68.html
	  Removed script block from: OEBPS/loveravenged_ch16.html
	  Removed script block from: OEBPS/loveravenged_ch36.html
	  Removed script block from: OEBPS/loveravenged_ch44.html
	  Removed script block from: OEBPS/loveravenged_ch34.html
	  Removed script block from: OEBPS/loveravenged_ch65.html
	  Removed script block from: OEBPS/loveravenged_ch15.html
	  Removed script block from: OEBPS/loveravenged_ch56.html
	  Removed script block from: OEBPS/loveravenged_ch62.html
	  Removed script block from: OEBPS/loveravenged_ch10.html
	  Removed script block from: OEBPS/loveravenged_ch40.html
	  Removed script block from: OEBPS/loveravenged_ch21.html
	  Removed script block from: OEBPS/loveravenged_cop.html
	  Removed script block from: OEBPS/loveravenged_ch05.html
	  Removed script block from: OEBPS/loveravenged_ch29.html
	  Removed script block from: OEBPS/loveravenged_ch70.html
	  Removed script block from: OEBPS/loveravenged_ch06.html
	  Removed script block from: OEBPS/loveravenged_ch55.html
	  Removed script block from: OEBPS/loveravenged_tit.html
	  Removed script block from: OEBPS/loveravenged_ch09.html
	  Removed script block from: OEBPS/loveravenged_ch74.html
	  Removed script block from: OEBPS/loveravenged_ded.html
	  Removed script block from: OEBPS/loveravenged_ch14.html
	  Removed script block from: OEBPS/loveravenged_gls.html
	  Removed script block from: OEBPS/loveravenged_ch17.html
	  Removed script block from: OEBPS/loveravenged_ack.html
	  Removed script block from: OEBPS/loveravenged_ch46.html
	  Removed script block from: OEBPS/loveravenged_ch27.html
	  Removed script block from: OEBPS/loveravenged_ch54.html
	  Removed script block from: OEBPS/loveravenged_ch30.html
	  Removed script block from: OEBPS/loveravenged_ch63.html
	  Removed script block from: OEBPS/loveravenged_ch07.html
	  Removed script block from: OEBPS/loveravenged_fm01.html
	  Removed script block from: OEBPS/loveravenged_ch57.html
	  Removed script block from: OEBPS/loveravenged_ch61.html
	  Removed script block from: OEBPS/loveravenged_ch72.html
	  Removed script block from: OEBPS/loveravenged_ch48.html
	  Removed script block from: OEBPS/loveravenged_ch33.html
	  Removed script block from: OEBPS/loveravenged_ch51.html
	  Removed script block from: OEBPS/loveravenged_ch71.html
	  Removed script block from: OEBPS/loveravenged_adc.html
	  Removed script block from: OEBPS/loveravenged_ch25.html
	  Removed script block from: OEBPS/loveravenged_ch53.html
	  Removed script block from: OEBPS/loveravenged_ch08.html
	  Removed script block from: OEBPS/loveravenged_htl01.html
	  Removed script block from: OEBPS/loveravenged_ch59.html
	  Removed script block from: OEBPS/loveravenged_ch42.html
	  Removed script block from: OEBPS/loveravenged_ch39.html
	  Removed script block from: OEBPS/loveravenged_ch01.html
	  Removed script block from: OEBPS/loveravenged_ch60.html
	  Removed script block from: OEBPS/loveravenged_ch32.html
	  Removed script block from: OEBPS/loveravenged_ch66.html
	  Removed script block from: OEBPS/loveravenged_ch69.html
	  Removed script block from: OEBPS/loveravenged_con01.html
	  Removed script block from: OEBPS/loveravenged_ch49.html
	  Removed script block from: OEBPS/loveravenged_ch31.html
	  Removed script block from: OEBPS/loveravenged_ch24.html
	  Removed script block from: OEBPS/loveravenged_ch22.html
	  Removed script block from: OEBPS/loveravenged_ch19.html
	  Removed script block from: OEBPS/loveravenged_ch37.html
	  Removed script block from: OEBPS/loveravenged_ch26.html
	  Removed script block from: OEBPS/loveravenged_ch38.html
	  Removed script block from: OEBPS/loveravenged_htl02.html
	  Removed script block from: OEBPS/loveravenged_ch45.html
	  Removed script block from: OEBPS/loveravenged_cov.html
	  Removed script block from: OEBPS/loveravenged_ch03.html
	  Removed script block from: OEBPS/loveravenged_ch35.html
	  Removed script block from: OEBPS/loveravenged_ch58.html
	  Removed script block from: OEBPS/loveravenged_ch50.html
	  Removed script block from: OEBPS/loveravenged_ch52.html
	  Removed script block from: OEBPS/loveravenged_ch11.html
	  Removed script block from: OEBPS/loveravenged_ch67.html
	  Removed script block from: OEBPS/loveravenged_ch28.html
	  Removed script block from: OEBPS/loveravenged_ch13.html
	  Removed script block from: OEBPS/loveravenged_ch18.html
	  Removed script block from: OEBPS/loveravenged_ch73.html
	  Removed script block from: OEBPS/loveravenged_ch23.html
	  Removed script block from: OEBPS/loveravenged_ch43.html
	  Removed script block from: OEBPS/loveravenged_ch41.html
	  Removed script block from: OEBPS/loveravenged_ch02.html
	  Removed script block from: OEBPS/loveravenged_ch04.html
	  Removed script block from: OEBPS/loveravenged_ch20.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch12.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch47.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch64.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch68.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch16.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch36.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch44.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch34.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch65.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch15.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch56.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch62.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch10.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch40.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch21.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_cop.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch05.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch29.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch70.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch06.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch55.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_tit.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch09.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch74.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ded.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch14.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_gls.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch17.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ack.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch46.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch27.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch54.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch30.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch63.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch07.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_fm01.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch57.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch61.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch72.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch48.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch33.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch51.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch71.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_adc.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch25.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch53.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch08.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_htl01.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch59.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch42.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch39.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch01.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch60.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch32.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch66.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch69.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_con01.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch49.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch31.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch24.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch22.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch19.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch37.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch26.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch38.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_htl02.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch45.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_cov.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch03.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch35.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch58.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch50.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch52.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch11.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch67.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch28.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch13.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch18.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch73.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch23.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch43.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch41.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch02.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch04.html
	  Removed Kobo HEAD elements from: OEBPS/loveravenged_ch20.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch12.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch47.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch64.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch68.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch16.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch36.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch44.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch34.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch65.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch15.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch56.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch62.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch10.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch40.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch21.html
	  Stripped Kobo spans in: OEBPS/loveravenged_cop.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch05.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch29.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch70.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch06.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch55.html
	  Stripped Kobo spans in: OEBPS/loveravenged_tit.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch09.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch74.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ded.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch14.html
	  Stripped Kobo spans in: OEBPS/loveravenged_gls.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch17.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ack.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch46.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch27.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch54.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch30.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch63.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch07.html
	  Stripped Kobo spans in: OEBPS/loveravenged_fm01.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch57.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch61.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch72.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch48.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch33.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch51.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch71.html
	  Stripped Kobo spans in: OEBPS/loveravenged_adc.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch25.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch53.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch08.html
	  Stripped Kobo spans in: OEBPS/loveravenged_htl01.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch59.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch42.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch39.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch01.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch60.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch32.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch66.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch69.html
	  Stripped Kobo spans in: OEBPS/loveravenged_con01.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch49.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch31.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch24.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch22.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch19.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch37.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch26.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch38.html
	  Stripped Kobo spans in: OEBPS/loveravenged_htl02.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch45.html
	  Stripped Kobo spans in: OEBPS/loveravenged_cov.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch03.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch35.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch58.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch50.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch52.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch11.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch67.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch28.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch13.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch18.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch73.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch23.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch43.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch41.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch02.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch04.html
	  Stripped Kobo spans in: OEBPS/loveravenged_ch20.html
ePub updated in 4.18 seconds

Logfile for book ID 123 (Lover at Last: A Novel of the Black Dagger Brotherhood / J. R. Ward)
123
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\123.epub
Parsing xml file: OPS/package.opf
Parsing xml file: OPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OPS/xhtml/chapter071.xhtml
	  Removed script block from: OPS/xhtml/chapter073.xhtml
	  Removed script block from: OPS/xhtml/chapter009.xhtml
	  Removed script block from: OPS/xhtml/chapter044.xhtml
	  Removed script block from: OPS/xhtml/dedication.xhtml
	  Removed script block from: OPS/xhtml/chapter031.xhtml
	  Removed script block from: OPS/xhtml/chapter061.xhtml
	  Removed script block from: OPS/xhtml/chapter010.xhtml
	  Removed script block from: OPS/xhtml/backmatter001.xhtml
	  Removed script block from: OPS/xhtml/chapter022.xhtml
	  Removed script block from: OPS/xhtml/chapter081.xhtml
	  Removed script block from: OPS/xhtml/chapter005.xhtml
	  Removed script block from: OPS/xhtml/frontmatter002.xhtml
	  Removed script block from: OPS/xhtml/chapter039.xhtml
	  Removed script block from: OPS/xhtml/chapter011.xhtml
	  Removed script block from: OPS/xhtml/copyright.xhtml
	  Removed script block from: OPS/xhtml/chapter028.xhtml
	  Removed script block from: OPS/xhtml/chapter030.xhtml
	  Removed script block from: OPS/xhtml/chapter046.xhtml
	  Removed script block from: OPS/xhtml/chapter078.xhtml
	  Removed script block from: OPS/xhtml/chapter054.xhtml
	  Removed script block from: OPS/xhtml/chapter068.xhtml
	  Removed script block from: OPS/xhtml/chapter048.xhtml
	  Removed script block from: OPS/xhtml/chapter045.xhtml
	  Removed script block from: OPS/xhtml/chapter017.xhtml
	  Removed script block from: OPS/xhtml/chapter001.xhtml
	  Removed script block from: OPS/xhtml/chapter041.xhtml
	  Removed script block from: OPS/xhtml/chapter015.xhtml
	  Removed script block from: OPS/xhtml/chapter027.xhtml
	  Removed script block from: OPS/xhtml/chapter062.xhtml
	  Removed script block from: OPS/xhtml/chapter023.xhtml
	  Removed script block from: OPS/xhtml/chapter072.xhtml
	  Removed script block from: OPS/xhtml/chapter042.xhtml
	  Removed script block from: OPS/xhtml/chapter070.xhtml
	  Removed script block from: OPS/xhtml/chapter004.xhtml
	  Removed script block from: OPS/xhtml/chapter074.xhtml
	  Removed script block from: OPS/xhtml/chapter060.xhtml
	  Removed script block from: OPS/xhtml/chapter053.xhtml
	  Removed script block from: OPS/xhtml/chapter008.xhtml
	  Removed script block from: OPS/xhtml/chapter079.xhtml
	  Removed script block from: OPS/xhtml/chapter025.xhtml
	  Removed script block from: OPS/xhtml/chapter063.xhtml
	  Removed script block from: OPS/xhtml/chapter067.xhtml
	  Removed script block from: OPS/xhtml/chapter058.xhtml
	  Removed script block from: OPS/xhtml/chapter055.xhtml
	  Removed script block from: OPS/xhtml/chapter040.xhtml
	  Removed script block from: OPS/xhtml/chapter050.xhtml
	  Removed script block from: OPS/xhtml/title.xhtml
	  Removed script block from: OPS/xhtml/chapter014.xhtml
	  Removed script block from: OPS/xhtml/chapter064.xhtml
	  Removed script block from: OPS/xhtml/chapter019.xhtml
	  Removed script block from: OPS/xhtml/chapter018.xhtml
	  Removed script block from: OPS/xhtml/chapter075.xhtml
	  Removed script block from: OPS/xhtml/chapter056.xhtml
	  Removed script block from: OPS/xhtml/chapter012.xhtml
	  Removed script block from: OPS/xhtml/toc.xhtml
	  Removed script block from: OPS/xhtml/chapter052.xhtml
	  Removed script block from: OPS/xhtml/part001.xhtml
	  Removed script block from: OPS/xhtml/epilogue.xhtml
	  Removed script block from: OPS/xhtml/chapter069.xhtml
	  Removed script block from: OPS/xhtml/chapter034.xhtml
	  Removed script block from: OPS/xhtml/chapter043.xhtml
	  Removed script block from: OPS/xhtml/chapter026.xhtml
	  Removed script block from: OPS/xhtml/chapter007.xhtml
	  Removed script block from: OPS/xhtml/chapter051.xhtml
	  Removed script block from: OPS/xhtml/chapter003.xhtml
	  Removed script block from: OPS/xhtml/chapter037.xhtml
	  Removed script block from: OPS/GlobalBackad.html
	  Removed script block from: OPS/xhtml/chapter059.xhtml
	  Removed script block from: OPS/xhtml/chapter002.xhtml
	  Removed script block from: OPS/xhtml/chapter082.xhtml
	  Removed script block from: OPS/xhtml/acknowledgments.xhtml
	  Removed script block from: OPS/xhtml/chapter066.xhtml
	  Removed script block from: OPS/xhtml/chapter047.xhtml
	  Removed script block from: OPS/xhtml/chapter076.xhtml
	  Removed script block from: OPS/xhtml/chapter033.xhtml
	  Removed script block from: OPS/xhtml/chapter036.xhtml
	  Removed script block from: OPS/xhtml/chapter032.xhtml
	  Removed script block from: OPS/xhtml/chapter020.xhtml
	  Removed script block from: OPS/xhtml/chapter013.xhtml
	  Removed script block from: OPS/xhtml/chapter077.xhtml
	  Removed script block from: OPS/xhtml/chapter038.xhtml
	  Removed script block from: OPS/xhtml/frontmatter001.xhtml
	  Removed script block from: OPS/xhtml/chapter006.xhtml
	  Removed script block from: OPS/xhtml/chapter057.xhtml
	  Removed script block from: OPS/xhtml/halftitle.xhtml
	  Removed script block from: OPS/xhtml/cover.xhtml
	  Removed script block from: OPS/xhtml/chapter065.xhtml
	  Removed script block from: OPS/xhtml/chapter049.xhtml
	  Removed script block from: OPS/xhtml/chapter029.xhtml
	  Removed script block from: OPS/xhtml/chapter024.xhtml
	  Removed script block from: OPS/xhtml/chapter035.xhtml
	  Removed script block from: OPS/xhtml/chapter021.xhtml
	  Removed script block from: OPS/xhtml/chapter016.xhtml
	  Removed script block from: OPS/xhtml/chapter080.xhtml
	Looking for .js files to remove
	  Found .js file to remove: OPS/xhtml/js/kobo.js
	  Found .js file to remove: OPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed kobo.css file: OPS/css/kobo.css
	  Removed kobo.css file: OPS/xhtml/css/kobo.css
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter071.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter073.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter009.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter044.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/dedication.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter031.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter061.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter010.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/backmatter001.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter022.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter081.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter005.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/frontmatter002.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter039.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter011.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/copyright.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter028.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter030.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter046.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter078.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter054.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter068.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter048.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter045.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter017.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter001.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter041.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter015.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter027.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter062.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter023.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter072.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter042.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter070.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter004.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter074.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter060.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter053.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter008.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter079.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter025.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter063.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter067.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter058.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter055.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter040.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter050.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/title.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter014.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter064.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter019.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter018.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter075.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter056.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter012.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/toc.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter052.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/part001.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/epilogue.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter069.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter034.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter043.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter026.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter007.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter051.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter003.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter037.xhtml
	  Removed Kobo HEAD elements from: OPS/GlobalBackad.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter059.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter002.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter082.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/acknowledgments.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter066.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter047.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter076.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter033.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter036.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter032.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter020.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter013.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter077.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter038.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/frontmatter001.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter006.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter057.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/halftitle.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/cover.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter065.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter049.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter029.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter024.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter035.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter021.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter016.xhtml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter080.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter071.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter073.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter009.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter044.xhtml
	  Stripped Kobo spans in: OPS/xhtml/dedication.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter031.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter061.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter010.xhtml
	  Stripped Kobo spans in: OPS/xhtml/backmatter001.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter022.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter081.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter005.xhtml
	  Stripped Kobo spans in: OPS/xhtml/frontmatter002.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter039.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter011.xhtml
	  Stripped Kobo spans in: OPS/xhtml/copyright.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter028.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter030.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter046.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter078.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter054.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter068.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter048.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter045.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter017.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter001.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter041.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter015.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter027.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter062.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter023.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter072.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter042.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter070.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter004.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter074.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter060.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter053.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter008.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter079.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter025.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter063.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter067.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter058.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter055.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter040.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter050.xhtml
	  Stripped Kobo spans in: OPS/xhtml/title.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter014.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter064.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter019.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter018.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter075.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter056.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter012.xhtml
	  Stripped Kobo spans in: OPS/xhtml/toc.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter052.xhtml
	  Stripped Kobo spans in: OPS/xhtml/part001.xhtml
	  Stripped Kobo spans in: OPS/xhtml/epilogue.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter069.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter034.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter043.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter026.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter007.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter051.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter003.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter037.xhtml
	  Stripped Kobo spans in: OPS/GlobalBackad.html
	  Stripped Kobo spans in: OPS/xhtml/chapter059.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter002.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter082.xhtml
	  Stripped Kobo spans in: OPS/xhtml/acknowledgments.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter066.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter047.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter076.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter033.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter036.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter032.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter020.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter013.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter077.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter038.xhtml
	  Stripped Kobo spans in: OPS/xhtml/frontmatter001.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter006.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter057.xhtml
	  Stripped Kobo spans in: OPS/xhtml/halftitle.xhtml
	  Stripped Kobo spans in: OPS/xhtml/cover.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter065.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter049.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter029.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter024.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter035.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter021.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter016.xhtml
	  Stripped Kobo spans in: OPS/xhtml/chapter080.xhtml
ePub updated in 3.77 seconds

Logfile for book ID 119 (Look What Santa Brought / McKenna, Annmarie)
119
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\119.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/toc.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/toc.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 0.87 seconds

Logfile for book ID 120 (Love Bites / Christine Warren)
120
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\120.epub
Parsing xml file: OPS/package.opf
Parsing xml file: OPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OPS/xhtml/9781429982603_bm06.html
	  Removed script block from: OPS/xhtml/9781429982603_ch24.html
	  Removed script block from: OPS/xhtml/9781429982603_ch21.html
	  Removed script block from: OPS/xhtml/chapter03.html
	  Removed script block from: OPS/xhtml/chapter08.html
	  Removed script block from: OPS/xhtml/9781429982603_ch06.html
	  Removed script block from: OPS/xhtml/abouttheauthor.html
	  Removed script block from: OPS/xhtml/9781429982603_ch04.html
	  Removed script block from: OPS/xhtml/9781429982603_ch25.html
	  Removed script block from: OPS/xhtml/9781429982603_ch13.html
	  Removed script block from: OPS/xhtml/9781429982603_con.html
	  Removed script block from: OPS/xhtml/chapter02.html
	  Removed script block from: OPS/xhtml/9781429982603_ch11.html
	  Removed script block from: OPS/xhtml/9781429982603_bm05.html
	  Removed script block from: OPS/xhtml/chapter05.html
	  Removed script block from: OPS/xhtml/9781429982603_ch26.html
	  Removed script block from: OPS/xhtml/9781429982603_ded01.html
	  Removed script block from: OPS/xhtml/chapter06.html
	  Removed script block from: OPS/xhtml/9781429982603_ch19.html
	  Removed script block from: OPS/xhtml/9781429982603_adc01.html
	  Removed script block from: OPS/xhtml/chapter13.html
	  Removed script block from: OPS/xhtml/9781429982603_ch23.html
	  Removed script block from: OPS/xhtml/9781429982603_ch10.html
	  Removed script block from: OPS/xhtml/chapter09.html
	  Removed script block from: OPS/xhtml/9781429982603_bm07.html
	  Removed script block from: OPS/xhtml/frontmatter01.html
	  Removed script block from: OPS/xhtml/9781429982603_bm08.html
	  Removed script block from: OPS/xhtml/title.html
	  Removed script block from: OPS/xhtml/chapter12.html
	  Removed script block from: OPS/xhtml/9781429982603_ch14.html
	  Removed script block from: OPS/xhtml/9781429982603_ch05.html
	  Removed script block from: OPS/xhtml/9781429982603_rev01.html
	  Removed script block from: OPS/xhtml/chapter17.html
	  Removed script block from: OPS/xhtml/9781429982603_ch12.html
	  Removed script block from: OPS/xhtml/chapter11.html
	  Removed script block from: OPS/xhtml/9781429982603_tit01.html
	  Removed script block from: OPS/xhtml/9781429982603_ch18.html
	  Removed script block from: OPS/xhtml/9781429982603_ch15.html
	  Removed script block from: OPS/xhtml/9781429982603_ch17.html
	  Removed script block from: OPS/xhtml/chapter14.html
	  Removed script block from: OPS/xhtml/9781429982603_cop01.html
	  Removed script block from: OPS/xhtml/9781429982603_cov.html
	  Removed script block from: OPS/xhtml/chapter01.html
	  Removed script block from: OPS/xhtml/chapter16.html
	  Removed script block from: OPS/xhtml/9781429982603_bm04.html
	  Removed script block from: OPS/xhtml/chapter07.html
	  Removed script block from: OPS/xhtml/chapter15.html
	  Removed script block from: OPS/xhtml/copyright.html
	  Removed script block from: OPS/xhtml/9781429982603_ch08.html
	  Removed script block from: OPS/xhtml/9781429982603_ch20.html
	  Removed script block from: OPS/xhtml/9781429982603_ch03.html
	  Removed script block from: OPS/xhtml/9781429982603_ch02.html
	  Removed script block from: OPS/xhtml/9781429982603_bm01.html
	  Removed script block from: OPS/xhtml/9781429982603_tp01.html
	  Removed script block from: OPS/xhtml/9781429982603_ch22.html
	  Removed script block from: OPS/xhtml/9781429982603_ch07.html
	  Removed script block from: OPS/xhtml/9781429982603_ch16.html
	  Removed script block from: OPS/xhtml/chapter10.html
	  Removed script block from: OPS/xhtml/chapter04.html
	  Removed script block from: OPS/xhtml/9781429982603_ch01.html
	  Removed script block from: OPS/xhtml/9781429982603_ch09.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_bm06.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch24.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch21.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter03.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter08.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch06.html
	  Removed Kobo HEAD elements from: OPS/xhtml/abouttheauthor.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch04.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch25.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch13.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_con.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter02.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch11.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_bm05.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter05.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch26.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ded01.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter06.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch19.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_adc01.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter13.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch23.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch10.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter09.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_bm07.html
	  Removed Kobo HEAD elements from: OPS/xhtml/frontmatter01.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_bm08.html
	  Removed Kobo HEAD elements from: OPS/xhtml/title.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter12.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch14.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch05.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_rev01.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter17.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch12.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter11.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_tit01.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch18.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch15.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch17.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter14.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_cop01.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_cov.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter01.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter16.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_bm04.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter07.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter15.html
	  Removed Kobo HEAD elements from: OPS/xhtml/copyright.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch08.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch20.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch03.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch02.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_bm01.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_tp01.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch22.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch07.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch16.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter10.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter04.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch01.html
	  Removed Kobo HEAD elements from: OPS/xhtml/9781429982603_ch09.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_bm06.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch24.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch21.html
	  Stripped Kobo spans in: OPS/xhtml/chapter03.html
	  Stripped Kobo spans in: OPS/xhtml/chapter08.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch06.html
	  Stripped Kobo spans in: OPS/xhtml/abouttheauthor.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch04.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch25.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch13.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_con.html
	  Stripped Kobo spans in: OPS/xhtml/chapter02.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch11.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_bm05.html
	  Stripped Kobo spans in: OPS/xhtml/chapter05.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch26.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ded01.html
	  Stripped Kobo spans in: OPS/xhtml/chapter06.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch19.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_adc01.html
	  Stripped Kobo spans in: OPS/xhtml/chapter13.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch23.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch10.html
	  Stripped Kobo spans in: OPS/xhtml/chapter09.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_bm07.html
	  Stripped Kobo spans in: OPS/xhtml/frontmatter01.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_bm08.html
	  Stripped Kobo spans in: OPS/xhtml/title.html
	  Stripped Kobo spans in: OPS/xhtml/chapter12.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch14.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch05.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_rev01.html
	  Stripped Kobo spans in: OPS/xhtml/chapter17.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch12.html
	  Stripped Kobo spans in: OPS/xhtml/chapter11.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_tit01.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch18.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch15.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch17.html
	  Stripped Kobo spans in: OPS/xhtml/chapter14.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_cop01.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_cov.html
	  Stripped Kobo spans in: OPS/xhtml/chapter01.html
	  Stripped Kobo spans in: OPS/xhtml/chapter16.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_bm04.html
	  Stripped Kobo spans in: OPS/xhtml/chapter07.html
	  Stripped Kobo spans in: OPS/xhtml/chapter15.html
	  Stripped Kobo spans in: OPS/xhtml/copyright.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch08.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch20.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch03.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch02.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_bm01.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_tp01.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch22.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch07.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch16.html
	  Stripped Kobo spans in: OPS/xhtml/chapter10.html
	  Stripped Kobo spans in: OPS/xhtml/chapter04.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch01.html
	  Stripped Kobo spans in: OPS/xhtml/9781429982603_ch09.html
ePub updated in 2.10 seconds

Logfile for book ID 118 (SexMeReplete / Tianna Xander & Bonnie Rose Leigh)
118
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\118.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 0.36 seconds

Logfile for book ID 117 (SexMeIn / Tianna Xander & Bonnie Rose Leigh)
117
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\117.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part3.xhtml
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part3.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 0.97 seconds

Logfile for book ID 114 (SexMeDown / Tianna Xander & Bonnie Rose Leigh)
114
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\114.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part3.xhtml
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part3.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 0.35 seconds

Logfile for book ID 115 (SexMeFast / Tianna Xander & Bonnie Rose Leigh)
115
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\115.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 0.32 seconds

Logfile for book ID 116 (Live Wire / Lora Leigh)
116
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\116.epub
Parsing xml file: OEBPS/package.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/xhtml/chapter12.html
	  Removed script block from: OEBPS/xhtml/chapter1.html
	  Removed script block from: OEBPS/xhtml/copyright.html
	  Removed script block from: OEBPS/xhtml/chapter19.html
	  Removed script block from: OEBPS/xhtml/chapter13.html
	  Removed script block from: OEBPS/xhtml/chapter16.html
	  Removed script block from: OEBPS/xhtml/dedication.html
	  Removed script block from: OEBPS/xhtml/contents.html
	  Removed script block from: OEBPS/xhtml/chapter7.html
	  Removed script block from: OEBPS/xhtml/chapter10.html
	  Removed script block from: OEBPS/xhtml/chapter15.html
	  Removed script block from: OEBPS/xhtml/specialthanks.html
	  Removed script block from: OEBPS/xhtml/chapter6.html
	  Removed script block from: OEBPS/xhtml/chapter17.html
	  Removed script block from: OEBPS/xhtml/chapter20.html
	  Removed script block from: OEBPS/xhtml/praise.html
	  Removed script block from: OEBPS/xhtml/chapter9.html
	  Removed script block from: OEBPS/xhtml/chapter18.html
	  Removed script block from: OEBPS/xhtml/chapter5.html
	  Removed script block from: OEBPS/xhtml/title.html
	  Removed script block from: OEBPS/xhtml/adcard.html
	  Removed script block from: OEBPS/xhtml/epilogue.html
	  Removed script block from: OEBPS/xhtml/chapter11.html
	  Removed script block from: OEBPS/xhtml/chapter2.html
	  Removed script block from: OEBPS/xhtml/teaser.html
	  Removed script block from: OEBPS/xhtml/chapter3.html
	  Removed script block from: OEBPS/xhtml/chapter14.html
	  Removed script block from: OEBPS/xhtml/prologue.html
	  Removed script block from: OEBPS/xhtml/chapter8.html
	  Removed script block from: OEBPS/xhtml/chapter4.html
	  Removed script block from: OEBPS/xhtml/cover.xml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter12.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter1.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/copyright.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter19.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter13.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter16.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/dedication.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/contents.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter7.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter10.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter15.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/specialthanks.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter6.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter17.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter20.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/praise.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter9.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter18.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter5.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/title.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/adcard.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/epilogue.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter11.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter2.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/teaser.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter3.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter14.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/prologue.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter8.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter4.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/cover.xml
	  Stripped Kobo spans in: OEBPS/xhtml/chapter12.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter1.html
	  Stripped Kobo spans in: OEBPS/xhtml/copyright.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter19.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter13.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter16.html
	  Stripped Kobo spans in: OEBPS/xhtml/dedication.html
	  Stripped Kobo spans in: OEBPS/xhtml/contents.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter7.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter10.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter15.html
	  Stripped Kobo spans in: OEBPS/xhtml/specialthanks.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter6.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter17.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter20.html
	  Stripped Kobo spans in: OEBPS/xhtml/praise.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter9.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter18.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter5.html
	  Stripped Kobo spans in: OEBPS/xhtml/title.html
	  Stripped Kobo spans in: OEBPS/xhtml/adcard.html
	  Stripped Kobo spans in: OEBPS/xhtml/epilogue.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter11.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter2.html
	  Stripped Kobo spans in: OEBPS/xhtml/teaser.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter3.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter14.html
	  Stripped Kobo spans in: OEBPS/xhtml/prologue.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter8.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter4.html
	  Stripped Kobo spans in: OEBPS/xhtml/cover.xml
ePub updated in 1.73 seconds

Logfile for book ID 113 (Knox's Stand / Jamie Begley)
113
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\113.epub
Parsing xml file: content.opf
Parsing xml file: toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: index_split_011.xhtml
	  Removed script block from: index_split_025.xhtml
	  Removed script block from: index_split_005.xhtml
	  Removed script block from: index_split_013.xhtml
	  Removed script block from: index_split_024.xhtml
	  Removed script block from: index_split_006.xhtml
	  Removed script block from: index_split_021.xhtml
	  Removed script block from: index_split_009.xhtml
	  Removed script block from: index_split_026.xhtml
	  Removed script block from: index_split_008.xhtml
	  Removed script block from: index_split_014.xhtml
	  Removed script block from: index_split_010.xhtml
	  Removed script block from: index_split_023.xhtml
	  Removed script block from: index_split_017.xhtml
	  Removed script block from: index_split_001.xhtml
	  Removed script block from: index_split_002.xhtml
	  Removed script block from: titlepage.xhtml
	  Removed script block from: index_split_016.xhtml
	  Removed script block from: index_split_000.xhtml
	  Removed script block from: index_split_015.xhtml
	  Removed script block from: index_split_022.xhtml
	  Removed script block from: index_split_018.xhtml
	  Removed script block from: index_split_020.xhtml
	  Removed script block from: index_split_007.xhtml
	  Removed script block from: index_split_003.xhtml
	  Removed script block from: index_split_027.xhtml
	  Removed script block from: index_split_004.xhtml
	  Removed script block from: index_split_019.xhtml
	  Removed script block from: index_split_012.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: index_split_011.xhtml
	  Removed Kobo HEAD elements from: index_split_025.xhtml
	  Removed Kobo HEAD elements from: index_split_005.xhtml
	  Removed Kobo HEAD elements from: index_split_013.xhtml
	  Removed Kobo HEAD elements from: index_split_024.xhtml
	  Removed Kobo HEAD elements from: index_split_006.xhtml
	  Removed Kobo HEAD elements from: index_split_021.xhtml
	  Removed Kobo HEAD elements from: index_split_009.xhtml
	  Removed Kobo HEAD elements from: index_split_026.xhtml
	  Removed Kobo HEAD elements from: index_split_008.xhtml
	  Removed Kobo HEAD elements from: index_split_014.xhtml
	  Removed Kobo HEAD elements from: index_split_010.xhtml
	  Removed Kobo HEAD elements from: index_split_023.xhtml
	  Removed Kobo HEAD elements from: index_split_017.xhtml
	  Removed Kobo HEAD elements from: index_split_001.xhtml
	  Removed Kobo HEAD elements from: index_split_002.xhtml
	  Removed Kobo HEAD elements from: titlepage.xhtml
	  Removed Kobo HEAD elements from: index_split_016.xhtml
	  Removed Kobo HEAD elements from: index_split_000.xhtml
	  Removed Kobo HEAD elements from: index_split_015.xhtml
	  Removed Kobo HEAD elements from: index_split_022.xhtml
	  Removed Kobo HEAD elements from: index_split_018.xhtml
	  Removed Kobo HEAD elements from: index_split_020.xhtml
	  Removed Kobo HEAD elements from: index_split_007.xhtml
	  Removed Kobo HEAD elements from: index_split_003.xhtml
	  Removed Kobo HEAD elements from: index_split_027.xhtml
	  Removed Kobo HEAD elements from: index_split_004.xhtml
	  Removed Kobo HEAD elements from: index_split_019.xhtml
	  Removed Kobo HEAD elements from: index_split_012.xhtml
	  Stripped Kobo spans in: index_split_011.xhtml
	  Stripped Kobo spans in: index_split_025.xhtml
	  Stripped Kobo spans in: index_split_005.xhtml
	  Stripped Kobo spans in: index_split_013.xhtml
	  Stripped Kobo spans in: index_split_024.xhtml
	  Stripped Kobo spans in: index_split_006.xhtml
	  Stripped Kobo spans in: index_split_021.xhtml
	  Stripped Kobo spans in: index_split_009.xhtml
	  Stripped Kobo spans in: index_split_026.xhtml
	  Stripped Kobo spans in: index_split_008.xhtml
	  Stripped Kobo spans in: index_split_014.xhtml
	  Stripped Kobo spans in: index_split_010.xhtml
	  Stripped Kobo spans in: index_split_023.xhtml
	  Stripped Kobo spans in: index_split_017.xhtml
	  Stripped Kobo spans in: index_split_001.xhtml
	  Stripped Kobo spans in: index_split_002.xhtml
	  Stripped Kobo spans in: titlepage.xhtml
	  Stripped Kobo spans in: index_split_016.xhtml
	  Stripped Kobo spans in: index_split_000.xhtml
	  Stripped Kobo spans in: index_split_015.xhtml
	  Stripped Kobo spans in: index_split_022.xhtml
	  Stripped Kobo spans in: index_split_018.xhtml
	  Stripped Kobo spans in: index_split_020.xhtml
	  Stripped Kobo spans in: index_split_007.xhtml
	  Stripped Kobo spans in: index_split_003.xhtml
	  Stripped Kobo spans in: index_split_027.xhtml
	  Stripped Kobo spans in: index_split_004.xhtml
	  Stripped Kobo spans in: index_split_019.xhtml
	  Stripped Kobo spans in: index_split_012.xhtml
ePub updated in 1.06 seconds

Logfile for book ID 112 (SexMeAtLast / Tianna Xander & Bonnie Rose Leigh)
112
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\112.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part3.xhtml
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part3.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 0.78 seconds

Logfile for book ID 111 (SexMeAllAround / Tianna Xander & Bonnie Rose Leigh)
111
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\111.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part3.xhtml
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part3.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 0.31 seconds

Logfile for book ID 110 (Seeing Eye Mate / McKenna, Annmarie)
110
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\110.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/toc.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section18.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section20.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section19.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/toc.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section18.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section20.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section19.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section18.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section20.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section19.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 1.40 seconds

Logfile for book ID 109 (Saving Dallas / Kim Jones)
109
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\109.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/202bf60e-b355-4a1f-a918-597c08de6154.xhtml
	  Removed script block from: OEBPS/20fea1a1-ab88-4bdb-bd37-fcf83b987205.xhtml
	  Removed script block from: OEBPS/6007cc79-085d-4539-b417-7a8a2c431e8c.xhtml
	  Removed script block from: OEBPS/09a5a515-14f8-4401-9e24-7fac4df14a40.xhtml
Forcing OEBPS/982f87dc-0491-4ac1-be35-a4e84092b155.xhtml into XHTML namespace
	  Removed script block from: OEBPS/982f87dc-0491-4ac1-be35-a4e84092b155.xhtml
	  Removed script block from: OEBPS/90cdb7e6-a551-4567-8ad9-a4bc773b53b5.xhtml
	  Removed script block from: OEBPS/cbbddc87-d76b-4db3-aa6c-1242278abe4b.xhtml
	  Removed script block from: OEBPS/b82678c1-8dda-48ca-b827-b01f8893b4e0.xhtml
	  Removed script block from: OEBPS/2ac2071e-fbc0-49c5-b051-76eb700d8277.xhtml
	  Removed script block from: OEBPS/1c8b8740-f7ab-4443-8ac4-a8e1f9f860ed.xhtml
	  Removed script block from: OEBPS/f824855a-8cfb-4b7a-b893-724f29b98975.xhtml
	  Removed script block from: OEBPS/84a154de-22ba-469d-96a5-a846eb39dabf.xhtml
	  Removed script block from: OEBPS/1c58c304-f790-49af-9565-f257ff849c12.xhtml
	  Removed script block from: OEBPS/a35db98b-b37e-42e5-913f-34b923939eb2.xhtml
	  Removed script block from: OEBPS/e99f7fda-7d4f-466e-ad40-d948f1a1ea9c.xhtml
	  Removed script block from: OEBPS/3cc54d8a-9c0b-43e0-8637-2e3929de0ab3.xhtml
	  Removed script block from: OEBPS/fd183683-1b57-469a-9cf3-2d91e8a8e573.xhtml
	  Removed script block from: OEBPS/3267eb45-1b7d-4176-a769-75acfb407ad7.xhtml
	  Removed script block from: OEBPS/c104b71f-a654-429c-9c66-9f98eead9c22.xhtml
	  Removed script block from: OEBPS/8ad408fb-92cb-4f62-97c6-f050eb6b77e5.xhtml
	  Removed script block from: OEBPS/81ba2321-5d5e-4cc7-9d21-f4d9dd49f6ad.xhtml
	  Removed script block from: OEBPS/0f644c58-5caa-42ba-b7eb-89917685d823.xhtml
	  Removed script block from: OEBPS/6e79ba18-8b54-43ce-aa97-8a79bf4cdc3b.xhtml
	  Removed script block from: OEBPS/c107c3f6-9f69-45ca-bbe3-e9eaece7b5f8.xhtml
	  Removed script block from: OEBPS/eaa4e11f-fb4d-4d36-9d35-335e151320df.xhtml
	  Removed script block from: OEBPS/2f16b765-4e72-4435-bfd4-e2225dcd3264.xhtml
	  Removed script block from: OEBPS/9facb941-4400-4ea1-9b8d-1537dca761d9.xhtml
	  Removed script block from: OEBPS/9ea048af-7665-44e2-b20c-93205140cf77.xhtml
	  Removed script block from: OEBPS/6e6f9ff7-e17c-4844-bc43-fc4e888703d8.xhtml
	  Removed script block from: OEBPS/76121426-697a-480a-8676-0263113d4a4c.xhtml
	  Removed script block from: OEBPS/97f69eb3-da28-408a-beb8-50d59250ddd3.xhtml
	  Removed script block from: OEBPS/72d207b3-3f85-4c7a-8a84-8155e10871cd.xhtml
	  Removed script block from: OEBPS/180d4cc4-e756-439c-afce-ce52ad4934fa.xhtml
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/202bf60e-b355-4a1f-a918-597c08de6154.xhtml
	  Removed Kobo HEAD elements from: OEBPS/20fea1a1-ab88-4bdb-bd37-fcf83b987205.xhtml
	  Removed Kobo HEAD elements from: OEBPS/6007cc79-085d-4539-b417-7a8a2c431e8c.xhtml
	  Removed Kobo HEAD elements from: OEBPS/09a5a515-14f8-4401-9e24-7fac4df14a40.xhtml
	  Removed Kobo HEAD elements from: OEBPS/982f87dc-0491-4ac1-be35-a4e84092b155.xhtml
	  Removed Kobo HEAD elements from: OEBPS/90cdb7e6-a551-4567-8ad9-a4bc773b53b5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/cbbddc87-d76b-4db3-aa6c-1242278abe4b.xhtml
	  Removed Kobo HEAD elements from: OEBPS/b82678c1-8dda-48ca-b827-b01f8893b4e0.xhtml
	  Removed Kobo HEAD elements from: OEBPS/2ac2071e-fbc0-49c5-b051-76eb700d8277.xhtml
	  Removed Kobo HEAD elements from: OEBPS/1c8b8740-f7ab-4443-8ac4-a8e1f9f860ed.xhtml
	  Removed Kobo HEAD elements from: OEBPS/f824855a-8cfb-4b7a-b893-724f29b98975.xhtml
	  Removed Kobo HEAD elements from: OEBPS/84a154de-22ba-469d-96a5-a846eb39dabf.xhtml
	  Removed Kobo HEAD elements from: OEBPS/1c58c304-f790-49af-9565-f257ff849c12.xhtml
	  Removed Kobo HEAD elements from: OEBPS/a35db98b-b37e-42e5-913f-34b923939eb2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/e99f7fda-7d4f-466e-ad40-d948f1a1ea9c.xhtml
	  Removed Kobo HEAD elements from: OEBPS/3cc54d8a-9c0b-43e0-8637-2e3929de0ab3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/fd183683-1b57-469a-9cf3-2d91e8a8e573.xhtml
	  Removed Kobo HEAD elements from: OEBPS/3267eb45-1b7d-4176-a769-75acfb407ad7.xhtml
	  Removed Kobo HEAD elements from: OEBPS/c104b71f-a654-429c-9c66-9f98eead9c22.xhtml
	  Removed Kobo HEAD elements from: OEBPS/8ad408fb-92cb-4f62-97c6-f050eb6b77e5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/81ba2321-5d5e-4cc7-9d21-f4d9dd49f6ad.xhtml
	  Removed Kobo HEAD elements from: OEBPS/0f644c58-5caa-42ba-b7eb-89917685d823.xhtml
	  Removed Kobo HEAD elements from: OEBPS/6e79ba18-8b54-43ce-aa97-8a79bf4cdc3b.xhtml
	  Removed Kobo HEAD elements from: OEBPS/c107c3f6-9f69-45ca-bbe3-e9eaece7b5f8.xhtml
	  Removed Kobo HEAD elements from: OEBPS/eaa4e11f-fb4d-4d36-9d35-335e151320df.xhtml
	  Removed Kobo HEAD elements from: OEBPS/2f16b765-4e72-4435-bfd4-e2225dcd3264.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9facb941-4400-4ea1-9b8d-1537dca761d9.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9ea048af-7665-44e2-b20c-93205140cf77.xhtml
	  Removed Kobo HEAD elements from: OEBPS/6e6f9ff7-e17c-4844-bc43-fc4e888703d8.xhtml
	  Removed Kobo HEAD elements from: OEBPS/76121426-697a-480a-8676-0263113d4a4c.xhtml
	  Removed Kobo HEAD elements from: OEBPS/97f69eb3-da28-408a-beb8-50d59250ddd3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/72d207b3-3f85-4c7a-8a84-8155e10871cd.xhtml
	  Removed Kobo HEAD elements from: OEBPS/180d4cc4-e756-439c-afce-ce52ad4934fa.xhtml
	  Stripped Kobo spans in: OEBPS/202bf60e-b355-4a1f-a918-597c08de6154.xhtml
	  Stripped Kobo spans in: OEBPS/20fea1a1-ab88-4bdb-bd37-fcf83b987205.xhtml
	  Stripped Kobo spans in: OEBPS/6007cc79-085d-4539-b417-7a8a2c431e8c.xhtml
	  Stripped Kobo spans in: OEBPS/09a5a515-14f8-4401-9e24-7fac4df14a40.xhtml
	  Stripped Kobo spans in: OEBPS/90cdb7e6-a551-4567-8ad9-a4bc773b53b5.xhtml
	  Stripped Kobo spans in: OEBPS/cbbddc87-d76b-4db3-aa6c-1242278abe4b.xhtml
	  Stripped Kobo spans in: OEBPS/b82678c1-8dda-48ca-b827-b01f8893b4e0.xhtml
	  Stripped Kobo spans in: OEBPS/2ac2071e-fbc0-49c5-b051-76eb700d8277.xhtml
	  Stripped Kobo spans in: OEBPS/1c8b8740-f7ab-4443-8ac4-a8e1f9f860ed.xhtml
	  Stripped Kobo spans in: OEBPS/f824855a-8cfb-4b7a-b893-724f29b98975.xhtml
	  Stripped Kobo spans in: OEBPS/84a154de-22ba-469d-96a5-a846eb39dabf.xhtml
	  Stripped Kobo spans in: OEBPS/1c58c304-f790-49af-9565-f257ff849c12.xhtml
	  Stripped Kobo spans in: OEBPS/a35db98b-b37e-42e5-913f-34b923939eb2.xhtml
	  Stripped Kobo spans in: OEBPS/e99f7fda-7d4f-466e-ad40-d948f1a1ea9c.xhtml
	  Stripped Kobo spans in: OEBPS/3cc54d8a-9c0b-43e0-8637-2e3929de0ab3.xhtml
	  Stripped Kobo spans in: OEBPS/fd183683-1b57-469a-9cf3-2d91e8a8e573.xhtml
	  Stripped Kobo spans in: OEBPS/3267eb45-1b7d-4176-a769-75acfb407ad7.xhtml
	  Stripped Kobo spans in: OEBPS/c104b71f-a654-429c-9c66-9f98eead9c22.xhtml
	  Stripped Kobo spans in: OEBPS/8ad408fb-92cb-4f62-97c6-f050eb6b77e5.xhtml
	  Stripped Kobo spans in: OEBPS/81ba2321-5d5e-4cc7-9d21-f4d9dd49f6ad.xhtml
	  Stripped Kobo spans in: OEBPS/0f644c58-5caa-42ba-b7eb-89917685d823.xhtml
	  Stripped Kobo spans in: OEBPS/6e79ba18-8b54-43ce-aa97-8a79bf4cdc3b.xhtml
	  Stripped Kobo spans in: OEBPS/c107c3f6-9f69-45ca-bbe3-e9eaece7b5f8.xhtml
	  Stripped Kobo spans in: OEBPS/eaa4e11f-fb4d-4d36-9d35-335e151320df.xhtml
	  Stripped Kobo spans in: OEBPS/2f16b765-4e72-4435-bfd4-e2225dcd3264.xhtml
	  Stripped Kobo spans in: OEBPS/9facb941-4400-4ea1-9b8d-1537dca761d9.xhtml
	  Stripped Kobo spans in: OEBPS/9ea048af-7665-44e2-b20c-93205140cf77.xhtml
	  Stripped Kobo spans in: OEBPS/6e6f9ff7-e17c-4844-bc43-fc4e888703d8.xhtml
	  Stripped Kobo spans in: OEBPS/76121426-697a-480a-8676-0263113d4a4c.xhtml
	  Stripped Kobo spans in: OEBPS/97f69eb3-da28-408a-beb8-50d59250ddd3.xhtml
	  Stripped Kobo spans in: OEBPS/72d207b3-3f85-4c7a-8a84-8155e10871cd.xhtml
	  Stripped Kobo spans in: OEBPS/180d4cc4-e756-439c-afce-ce52ad4934fa.xhtml
ePub updated in 1.67 seconds

Logfile for book ID 108 (Kayla's Gift: Powertools, Book 3 / Jayne Rylon)
108
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\108.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/toc.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/toc.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 0.74 seconds

Logfile for book ID 107 (Saving Dallas Making the Cut / Kim Jones)
107
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\107.epub
Parsing xml file: content.opf
Parsing xml file: toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: Making_the_Cut_Final_Createspac_split_001.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_005.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_007.html
	  Removed script block from: titlepage.xhtml
	  Removed script block from: Making_the_Cut_Final_Createspac_split_004.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_006.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_026.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_018.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_024.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_030.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_028.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_034.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_032.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_013.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_025.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_002.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_010.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_023.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_019.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_012.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_016.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_014.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_009.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_027.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_017.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_015.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_021.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_033.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_031.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_000.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_011.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_003.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_008.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_020.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_022.html
	  Removed script block from: Making_the_Cut_Final_Createspac_split_029.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo.js
	Stripping spans
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_001.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_005.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_007.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_004.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_006.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_026.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_018.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_024.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_030.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_028.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_032.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_013.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_025.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_002.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_010.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_023.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_019.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_012.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_016.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_014.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_009.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_027.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_017.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_015.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_021.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_033.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_031.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_000.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_011.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_003.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_008.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_020.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_022.html
	  Stripped spans in: Making_the_Cut_Final_Createspac_split_029.html
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed kobo.css file: css/kobo.css
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_001.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_005.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_007.html
	  Removed Kobo HEAD elements from: titlepage.xhtml
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_004.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_006.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_026.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_018.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_024.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_030.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_028.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_034.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_032.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_013.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_025.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_002.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_010.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_023.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_019.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_012.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_016.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_014.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_009.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_027.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_017.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_015.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_021.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_033.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_031.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_000.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_011.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_003.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_008.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_020.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_022.html
	  Removed Kobo HEAD elements from: Making_the_Cut_Final_Createspac_split_029.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_001.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_005.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_007.html
	  Stripped Kobo spans in: titlepage.xhtml
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_004.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_006.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_026.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_018.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_024.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_030.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_028.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_034.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_032.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_013.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_025.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_002.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_010.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_023.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_019.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_012.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_016.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_014.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_009.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_027.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_017.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_015.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_021.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_033.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_031.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_000.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_011.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_003.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_008.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_020.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_022.html
	  Stripped Kobo spans in: Making_the_Cut_Final_Createspac_split_029.html
ePub updated in 1.46 seconds

Logfile for book ID 106 (Samson's Lovely Mortal / Tina Folsom)
106
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\106.epub
Parsing xml file: OPS/content.opf
Parsing xml file: OPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OPS/section-0018.html
	  Removed script block from: OPS/section-0007.html
	  Removed script block from: OPS/section-0001.html
	  Removed script block from: OPS/section-0014.html
	  Removed script block from: OPS/CoverPage.html
	  Removed script block from: OPS/section-0005.html
	  Removed script block from: OPS/section-0004.html
	  Removed script block from: OPS/section-0020.html
	  Removed script block from: OPS/section-0006.html
	  Removed script block from: OPS/section-0022.html
	  Removed script block from: OPS/section-0019.html
	  Removed script block from: OPS/section-0015.html
	  Removed script block from: OPS/section-0017.html
	  Removed script block from: OPS/section-0021.html
	  Removed script block from: OPS/section-0010.html
	  Removed script block from: OPS/section-0016.html
	  Removed script block from: OPS/section-0003.html
	  Removed script block from: OPS/section-0012.html
	  Removed script block from: OPS/section-0013.html
	  Removed script block from: OPS/section-0009.html
	  Removed script block from: OPS/section-0011.html
	  Removed script block from: OPS/TableOfContents.html
	  Removed script block from: OPS/section-0008.html
	  Removed script block from: OPS/section-0002.html
	Looking for .js files to remove
	  Found .js file to remove: OPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OPS/section-0018.html
	  Stripped spans in: OPS/section-0007.html
	  Stripped spans in: OPS/section-0001.html
	  Stripped spans in: OPS/section-0014.html
	  Stripped spans in: OPS/section-0005.html
	  Stripped spans in: OPS/section-0004.html
	  Stripped spans in: OPS/section-0020.html
	  Stripped spans in: OPS/section-0006.html
	  Stripped spans in: OPS/section-0022.html
	  Stripped spans in: OPS/section-0019.html
	  Stripped spans in: OPS/section-0015.html
	  Stripped spans in: OPS/section-0017.html
	  Stripped spans in: OPS/section-0021.html
	  Stripped spans in: OPS/section-0010.html
	  Stripped spans in: OPS/section-0016.html
	  Stripped spans in: OPS/section-0003.html
	  Stripped spans in: OPS/section-0012.html
	  Stripped spans in: OPS/section-0013.html
	  Stripped spans in: OPS/section-0009.html
	  Stripped spans in: OPS/section-0011.html
	  Stripped spans in: OPS/section-0008.html
	  Stripped spans in: OPS/section-0002.html
	Stripping Kobo remnants
	  Removed kobo.css file: OPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OPS/section-0018.html
	  Removed Kobo HEAD elements from: OPS/section-0007.html
	  Removed Kobo HEAD elements from: OPS/section-0001.html
	  Removed Kobo HEAD elements from: OPS/section-0014.html
	  Removed Kobo HEAD elements from: OPS/CoverPage.html
	  Removed Kobo HEAD elements from: OPS/section-0005.html
	  Removed Kobo HEAD elements from: OPS/section-0004.html
	  Removed Kobo HEAD elements from: OPS/section-0020.html
	  Removed Kobo HEAD elements from: OPS/section-0006.html
	  Removed Kobo HEAD elements from: OPS/section-0022.html
	  Removed Kobo HEAD elements from: OPS/section-0019.html
	  Removed Kobo HEAD elements from: OPS/section-0015.html
	  Removed Kobo HEAD elements from: OPS/section-0017.html
	  Removed Kobo HEAD elements from: OPS/section-0021.html
	  Removed Kobo HEAD elements from: OPS/section-0010.html
	  Removed Kobo HEAD elements from: OPS/section-0016.html
	  Removed Kobo HEAD elements from: OPS/section-0003.html
	  Removed Kobo HEAD elements from: OPS/section-0012.html
	  Removed Kobo HEAD elements from: OPS/section-0013.html
	  Removed Kobo HEAD elements from: OPS/section-0009.html
	  Removed Kobo HEAD elements from: OPS/section-0011.html
	  Removed Kobo HEAD elements from: OPS/TableOfContents.html
	  Removed Kobo HEAD elements from: OPS/section-0008.html
	  Removed Kobo HEAD elements from: OPS/section-0002.html
	  Stripped Kobo spans in: OPS/section-0018.html
	  Stripped Kobo spans in: OPS/section-0007.html
	  Stripped Kobo spans in: OPS/section-0001.html
	  Stripped Kobo spans in: OPS/section-0014.html
	  Stripped Kobo spans in: OPS/CoverPage.html
	  Stripped Kobo spans in: OPS/section-0005.html
	  Stripped Kobo spans in: OPS/section-0004.html
	  Stripped Kobo spans in: OPS/section-0020.html
	  Stripped Kobo spans in: OPS/section-0006.html
	  Stripped Kobo spans in: OPS/section-0022.html
	  Stripped Kobo spans in: OPS/section-0019.html
	  Stripped Kobo spans in: OPS/section-0015.html
	  Stripped Kobo spans in: OPS/section-0017.html
	  Stripped Kobo spans in: OPS/section-0021.html
	  Stripped Kobo spans in: OPS/section-0010.html
	  Stripped Kobo spans in: OPS/section-0016.html
	  Stripped Kobo spans in: OPS/section-0003.html
	  Stripped Kobo spans in: OPS/section-0012.html
	  Stripped Kobo spans in: OPS/section-0013.html
	  Stripped Kobo spans in: OPS/section-0009.html
	  Stripped Kobo spans in: OPS/section-0011.html
	  Stripped Kobo spans in: OPS/TableOfContents.html
	  Stripped Kobo spans in: OPS/section-0008.html
	  Stripped Kobo spans in: OPS/section-0002.html
ePub updated in 1.79 seconds

Logfile for book ID 105 (ReturntoParadise / Tianna Xander)
105
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\105.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part7.xhtml
	  Removed script block from: OEBPS/part5.xhtml
	  Removed script block from: OEBPS/part8.xhtml
	  Removed script block from: OEBPS/part6.xhtml
	  Removed script block from: OEBPS/part3.xhtml
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part4.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part7.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part8.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part4.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part7.xhtml
	  Stripped Kobo spans in: OEBPS/part5.xhtml
	  Stripped Kobo spans in: OEBPS/part8.xhtml
	  Stripped Kobo spans in: OEBPS/part6.xhtml
	  Stripped Kobo spans in: OEBPS/part3.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part4.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 0.65 seconds

Logfile for book ID 104 (Kate's Crew / Rylon, Jayne)
104
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\104.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/toc.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/toc.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 0.38 seconds

Logfile for book ID 103 (Innocent Ink / Ranae Rose)
103
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\103.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section3.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section3.html
ePub updated in 0.77 seconds

Logfile for book ID 101 (Reno’s Chance / Lora Leigh)
101
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\101.epub
Parsing xml file: OEBPS/9780312945831.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/9780312945831_ch05.html
	  Removed script block from: OEBPS/9780312945831_con01.html
	  Removed script block from: OEBPS/9780312945831_ch08.html
	  Removed script block from: OEBPS/9780312945831_ch03.html
	  Removed script block from: OEBPS/9780312945831_cop01.html
	  Removed script block from: OEBPS/9780312945831_bm04.html
	  Removed script block from: OEBPS/9780312945831_ch01.html
	  Removed script block from: OEBPS/9780312945831_adc01.html
	  Removed script block from: OEBPS/9780312945831_ch09.html
	  Removed script block from: OEBPS/9780312945831_ch06.html
	  Removed script block from: OEBPS/9780312945831_ch02.html
	  Removed script block from: OEBPS/9780312945831_ch04.html
	  Removed script block from: OEBPS/9780312945831_bm01.html
	  Removed script block from: OEBPS/9780312945831_fm01.html
	  Removed script block from: OEBPS/9780312945831_ch07.html
	  Removed script block from: OEBPS/9780312945831_tp01.html
	  Removed script block from: OEBPS/9780312945831_bm02.html
	  Removed script block from: OEBPS/9780312945831_bm03.html
	  Removed script block from: OEBPS/9780312945831_cov.html
	  Removed script block from: OEBPS/9780312945831_ata01.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_ch05.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_con01.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_ch08.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_ch03.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_bm04.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_ch01.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_adc01.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_ch09.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_ch06.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_ch02.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_ch04.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_bm01.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_fm01.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_ch07.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_tp01.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_bm02.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_bm03.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_cov.html
	  Removed Kobo HEAD elements from: OEBPS/9780312945831_ata01.html
	  Stripped Kobo spans in: OEBPS/9780312945831_ch05.html
	  Stripped Kobo spans in: OEBPS/9780312945831_con01.html
	  Stripped Kobo spans in: OEBPS/9780312945831_ch08.html
	  Stripped Kobo spans in: OEBPS/9780312945831_ch03.html
	  Stripped Kobo spans in: OEBPS/9780312945831_cop01.html
	  Stripped Kobo spans in: OEBPS/9780312945831_bm04.html
	  Stripped Kobo spans in: OEBPS/9780312945831_ch01.html
	  Stripped Kobo spans in: OEBPS/9780312945831_adc01.html
	  Stripped Kobo spans in: OEBPS/9780312945831_ch09.html
	  Stripped Kobo spans in: OEBPS/9780312945831_ch06.html
	  Stripped Kobo spans in: OEBPS/9780312945831_ch02.html
	  Stripped Kobo spans in: OEBPS/9780312945831_ch04.html
	  Stripped Kobo spans in: OEBPS/9780312945831_bm01.html
	  Stripped Kobo spans in: OEBPS/9780312945831_fm01.html
	  Stripped Kobo spans in: OEBPS/9780312945831_ch07.html
	  Stripped Kobo spans in: OEBPS/9780312945831_tp01.html
	  Stripped Kobo spans in: OEBPS/9780312945831_bm02.html
	  Stripped Kobo spans in: OEBPS/9780312945831_bm03.html
	  Stripped Kobo spans in: OEBPS/9780312945831_cov.html
	  Stripped Kobo spans in: OEBPS/9780312945831_ata01.html
ePub updated in 0.90 seconds

Logfile for book ID 102 (Immortal Ever After / Lynsay Sands)
102
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\102.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/About_the_Publisher.xhtml
	  Removed script block from: OEBPS/Contents.xhtml
	  Removed script block from: OEBPS/Chapter_7.xhtml
	  Removed script block from: OEBPS/Chapter_19.xhtml
	  Removed script block from: OEBPS/Chapter_15.xhtml
	  Removed script block from: OEBPS/Cover.xhtml
	  Removed script block from: OEBPS/BoB_Ad.xhtml
	  Removed script block from: OEBPS/Peek_into_the_Argeneau_World.xhtml
	  Removed script block from: OEBPS/Chapter_12.xhtml
	  Removed script block from: OEBPS/Chapter_17.xhtml
	  Removed script block from: OEBPS/Chapter_6.xhtml
	  Removed script block from: OEBPS/Chapter_8.xhtml
	  Removed script block from: OEBPS/About_the_Author.xhtml
	  Removed script block from: OEBPS/Chapter_16.xhtml
	  Removed script block from: OEBPS/Chapter_14.xhtml
	  Removed script block from: OEBPS/Also_by_the_Author.xhtml
	  Removed script block from: OEBPS/Chapter_9.xhtml
	  Removed script block from: OEBPS/Chapter_10.xhtml
	  Removed script block from: OEBPS/Chapter_5.xhtml
	  Removed script block from: OEBPS/Chapter_1.xhtml
	  Removed script block from: OEBPS/Chapter_11.xhtml
	  Removed script block from: OEBPS/Chapter_3.xhtml
	  Removed script block from: OEBPS/Title_Page.xhtml
	  Removed script block from: OEBPS/Chapter_18.xhtml
	  Removed script block from: OEBPS/Chapter_13.xhtml
	  Removed script block from: OEBPS/Copyright.xhtml
	  Removed script block from: OEBPS/Chapter_2.xhtml
	  Removed script block from: OEBPS/Chapter_4.xhtml
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/About_the_Publisher.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Contents.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_7.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_19.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_15.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Cover.xhtml
	  Removed Kobo HEAD elements from: OEBPS/BoB_Ad.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Peek_into_the_Argeneau_World.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_12.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_17.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_8.xhtml
	  Removed Kobo HEAD elements from: OEBPS/About_the_Author.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_16.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_14.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Also_by_the_Author.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_9.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_10.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_11.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Title_Page.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_18.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_13.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Copyright.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_4.xhtml
	  Stripped Kobo spans in: OEBPS/About_the_Publisher.xhtml
	  Stripped Kobo spans in: OEBPS/Contents.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_7.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_19.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_15.xhtml
	  Stripped Kobo spans in: OEBPS/Cover.xhtml
	  Stripped Kobo spans in: OEBPS/BoB_Ad.xhtml
	  Stripped Kobo spans in: OEBPS/Peek_into_the_Argeneau_World.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_12.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_17.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_6.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_8.xhtml
	  Stripped Kobo spans in: OEBPS/About_the_Author.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_16.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_14.xhtml
	  Stripped Kobo spans in: OEBPS/Also_by_the_Author.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_9.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_10.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_5.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_1.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_11.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_3.xhtml
	  Stripped Kobo spans in: OEBPS/Title_Page.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_18.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_13.xhtml
	  Stripped Kobo spans in: OEBPS/Copyright.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_2.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_4.xhtml
ePub updated in 2.34 seconds

Logfile for book ID 100 (Hungry Like a Wolf / Christine Warren)
100
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\100.epub
Parsing xml file: OEBPS/package.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/xhtml/chapter12.html
	  Removed script block from: OEBPS/xhtml/chapter1.html
	  Removed script block from: OEBPS/xhtml/chapter13.html
	  Removed script block from: OEBPS/xhtml/praise.html
	  Removed script block from: OEBPS/xhtml/chapter16.html
	  Removed script block from: OEBPS/xhtml/dedication.html
	  Removed script block from: OEBPS/xhtml/contents.html
	  Removed script block from: OEBPS/xhtml/chapter7.html
	  Removed script block from: OEBPS/xhtml/chapter10.html
	  Removed script block from: OEBPS/xhtml/chapter15.html
	  Removed script block from: OEBPS/xhtml/copyrightnotice.html
	  Removed script block from: OEBPS/xhtml/chapter6.html
	  Removed script block from: OEBPS/xhtml/chapter3.html
	  Removed script block from: OEBPS/xhtml/chapter9.html
	  Removed script block from: OEBPS/xhtml/chapter5.html
	  Removed script block from: OEBPS/xhtml/title.html
	  Removed script block from: OEBPS/xhtml/adcard.html
	  Removed script block from: OEBPS/xhtml/copyright.html
	  Removed script block from: OEBPS/xhtml/chapter11.html
	  Removed script block from: OEBPS/xhtml/chapter2.html
	  Removed script block from: OEBPS/xhtml/teaser.html
	  Removed script block from: OEBPS/xhtml/chapter14.html
	  Removed script block from: OEBPS/xhtml/aboutauthor.html
	  Removed script block from: OEBPS/xhtml/chapter8.html
	  Removed script block from: OEBPS/xhtml/chapter4.html
	  Removed script block from: OEBPS/xhtml/cover.xml
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/xhtml/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/xhtml/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter12.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter1.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter13.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/praise.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter16.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/dedication.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/contents.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter7.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter10.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter15.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/copyrightnotice.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter6.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter3.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter9.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter5.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/title.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/adcard.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/copyright.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter11.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter2.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/teaser.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter14.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/aboutauthor.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter8.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter4.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/cover.xml
	  Stripped Kobo spans in: OEBPS/xhtml/chapter12.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter1.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter13.html
	  Stripped Kobo spans in: OEBPS/xhtml/praise.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter16.html
	  Stripped Kobo spans in: OEBPS/xhtml/dedication.html
	  Stripped Kobo spans in: OEBPS/xhtml/contents.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter7.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter10.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter15.html
	  Stripped Kobo spans in: OEBPS/xhtml/copyrightnotice.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter6.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter3.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter9.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter5.html
	  Stripped Kobo spans in: OEBPS/xhtml/title.html
	  Stripped Kobo spans in: OEBPS/xhtml/adcard.html
	  Stripped Kobo spans in: OEBPS/xhtml/copyright.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter11.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter2.html
	  Stripped Kobo spans in: OEBPS/xhtml/teaser.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter14.html
	  Stripped Kobo spans in: OEBPS/xhtml/aboutauthor.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter8.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter4.html
	  Stripped Kobo spans in: OEBPS/xhtml/cover.xml
ePub updated in 1.12 seconds

Logfile for book ID 99 (Howl for It / Laurenston, Shelly; Eden, Cynthia)
99
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\99.epub
Parsing xml file: OEBPS/e9780758278555_content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/e9780758278555_c14.html
	  Removed script block from: OEBPS/e9780758278555_c06.html
	  Removed script block from: OEBPS/e9780758278555_cop01.html
	  Removed script block from: OEBPS/e9780758278555_c20.html
	  Removed script block from: OEBPS/e9780758278555_c21.html
	  Removed script block from: OEBPS/e9780758278555_c17.html
	  Removed script block from: OEBPS/e9780758278555_c26.html
	  Removed script block from: OEBPS/e9780758278555_c02.html
	  Removed script block from: OEBPS/e9780758278555_c08.html
	  Removed script block from: OEBPS/e9780758278555_c16.html
	  Removed script block from: OEBPS/e9780758278555_bm03.html
	  Removed script block from: OEBPS/e9780758278555_c05.html
	  Removed script block from: OEBPS/e9780758278555_c03.html
	  Removed script block from: OEBPS/e9780758278555_c01.html
	  Removed script block from: OEBPS/e9780758278555_tp01.html
	  Removed script block from: OEBPS/e9780758278555_c29.html
	  Removed script block from: OEBPS/e9780758278555_c30.html
	  Removed script block from: OEBPS/e9780758278555_bm02.html
	  Removed script block from: OEBPS/e9780758278555_p01.html
	  Removed script block from: OEBPS/e9780758278555_c07.html
	  Removed script block from: OEBPS/e9780758278555_c15.html
	  Removed script block from: OEBPS/e9780758278555_c12.html
	  Removed script block from: OEBPS/e9780758278555_c24.html
	  Removed script block from: OEBPS/e9780758278555_bm01.html
	  Removed script block from: OEBPS/e9780758278555_p02.html
	  Removed script block from: OEBPS/e9780758278555_cov01.html
	  Removed script block from: OEBPS/e9780758278555_toc01.html
	  Removed script block from: OEBPS/e9780758278555_bm04.html
	  Removed script block from: OEBPS/e9780758278555_c18.html
	  Removed script block from: OEBPS/e9780758278555_c04.html
	  Removed script block from: OEBPS/e9780758278555_c13.html
	  Removed script block from: OEBPS/e9780758278555_c11.html
	  Removed script block from: OEBPS/e9780758278555_c25.html
	  Removed script block from: OEBPS/e9780758278555_c28.html
	  Removed script block from: OEBPS/e9780758278555_c19.html
	  Removed script block from: OEBPS/e9780758278555_tea01.html
	  Removed script block from: OEBPS/e9780758278555_c10.html
	  Removed script block from: OEBPS/e9780758278555_c23.html
	  Removed script block from: OEBPS/e9780758278555_c22.html
	  Removed script block from: OEBPS/e9780758278555_c27.html
	  Removed script block from: OEBPS/e9780758278555_c09.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OEBPS/e9780758278555_c14.html
	  Stripped spans in: OEBPS/e9780758278555_c06.html
	  Stripped spans in: OEBPS/e9780758278555_cop01.html
	  Stripped spans in: OEBPS/e9780758278555_c20.html
	  Stripped spans in: OEBPS/e9780758278555_c21.html
	  Stripped spans in: OEBPS/e9780758278555_c17.html
	  Stripped spans in: OEBPS/e9780758278555_c26.html
	  Stripped spans in: OEBPS/e9780758278555_c02.html
	  Stripped spans in: OEBPS/e9780758278555_c08.html
	  Stripped spans in: OEBPS/e9780758278555_c16.html
	  Stripped spans in: OEBPS/e9780758278555_bm03.html
	  Stripped spans in: OEBPS/e9780758278555_c05.html
	  Stripped spans in: OEBPS/e9780758278555_c03.html
	  Stripped spans in: OEBPS/e9780758278555_c01.html
	  Stripped spans in: OEBPS/e9780758278555_tp01.html
	  Stripped spans in: OEBPS/e9780758278555_c29.html
	  Stripped spans in: OEBPS/e9780758278555_c30.html
	  Stripped spans in: OEBPS/e9780758278555_bm02.html
	  Stripped spans in: OEBPS/e9780758278555_p01.html
	  Stripped spans in: OEBPS/e9780758278555_c07.html
	  Stripped spans in: OEBPS/e9780758278555_c15.html
	  Stripped spans in: OEBPS/e9780758278555_c12.html
	  Stripped spans in: OEBPS/e9780758278555_c24.html
	  Stripped spans in: OEBPS/e9780758278555_bm01.html
	  Stripped spans in: OEBPS/e9780758278555_p02.html
	  Stripped spans in: OEBPS/e9780758278555_cov01.html
	  Stripped spans in: OEBPS/e9780758278555_toc01.html
	  Stripped spans in: OEBPS/e9780758278555_bm04.html
	  Stripped spans in: OEBPS/e9780758278555_c18.html
	  Stripped spans in: OEBPS/e9780758278555_c04.html
	  Stripped spans in: OEBPS/e9780758278555_c13.html
	  Stripped spans in: OEBPS/e9780758278555_c11.html
	  Stripped spans in: OEBPS/e9780758278555_c25.html
	  Stripped spans in: OEBPS/e9780758278555_c28.html
	  Stripped spans in: OEBPS/e9780758278555_c19.html
	  Stripped spans in: OEBPS/e9780758278555_tea01.html
	  Stripped spans in: OEBPS/e9780758278555_c10.html
	  Stripped spans in: OEBPS/e9780758278555_c23.html
	  Stripped spans in: OEBPS/e9780758278555_c22.html
	  Stripped spans in: OEBPS/e9780758278555_c27.html
	  Stripped spans in: OEBPS/e9780758278555_c09.html
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c14.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c06.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c20.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c21.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c17.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c26.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c02.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c08.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c16.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_bm03.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c05.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c03.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_tp01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c29.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c30.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_bm02.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_p01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c07.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c15.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c12.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c24.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_bm01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_p02.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_cov01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_toc01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_bm04.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c18.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c04.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c13.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c11.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c25.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c28.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c19.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_tea01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c10.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c23.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c22.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c27.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758278555_c09.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c14.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c06.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_cop01.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c20.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c21.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c17.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c26.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c02.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c08.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c16.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_bm03.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c05.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c03.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c01.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_tp01.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c29.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c30.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_bm02.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_p01.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c07.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c15.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c12.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c24.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_bm01.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_p02.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_cov01.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_toc01.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_bm04.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c18.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c04.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c13.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c11.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c25.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c28.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c19.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_tea01.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c10.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c23.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c22.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c27.html
	  Stripped Kobo spans in: OEBPS/e9780758278555_c09.html
ePub updated in 2.77 seconds

Logfile for book ID 98 (Hot Ticket / Olivia Cunning)
98
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\98.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/HotTicket-3.xhtml
	  Removed script block from: OEBPS/HotTicket-9.xhtml
	  Removed script block from: OEBPS/HotTicket-49.xhtml
	  Removed script block from: OEBPS/HotTicket-40.xhtml
	  Removed script block from: OEBPS/HotTicket-8.xhtml
	  Removed script block from: OEBPS/HotTicket-45.xhtml
	  Removed script block from: OEBPS/HotTicket-41.xhtml
	  Removed script block from: OEBPS/HotTicket-34.xhtml
	  Removed script block from: OEBPS/HotTicket-7.xhtml
	  Removed script block from: OEBPS/HotTicket-30.xhtml
	  Removed script block from: OEBPS/HotTicket-13.xhtml
	  Removed script block from: OEBPS/HotTicket-16.xhtml
	  Removed script block from: OEBPS/HotTicket-36.xhtml
	  Removed script block from: OEBPS/HotTicket.xhtml
	  Removed script block from: OEBPS/HotTicket-39.xhtml
	  Removed script block from: OEBPS/HotTicket-20.xhtml
	  Removed script block from: OEBPS/HotTicket-6.xhtml
	  Removed script block from: OEBPS/HotTicket-43.xhtml
	  Removed script block from: OEBPS/HotTicket-37.xhtml
	  Removed script block from: OEBPS/HotTicket-31.xhtml
	  Removed script block from: OEBPS/HotTicket-18.xhtml
	  Removed script block from: OEBPS/HotTicket-4.xhtml
	  Removed script block from: OEBPS/HotTicket-32.xhtml
	  Removed script block from: OEBPS/HotTicket-10.xhtml
	  Removed script block from: OEBPS/HotTicket-26.xhtml
	  Removed script block from: OEBPS/HotTicket-14.xhtml
	  Removed script block from: OEBPS/HotTicket-46.xhtml
	  Removed script block from: OEBPS/HotTicket-11.xhtml
	  Removed script block from: OEBPS/HotTicket-28.xhtml
	  Removed script block from: OEBPS/HotTicket-47.xhtml
	  Removed script block from: OEBPS/HotTicket-2.xhtml
	  Removed script block from: OEBPS/HotTicket-48.xhtml
	  Removed script block from: OEBPS/HotTicket-27.xhtml
	  Removed script block from: OEBPS/HotTicket-44.xhtml
	  Removed script block from: OEBPS/HotTicket-15.xhtml
	  Removed script block from: OEBPS/HotTicket-23.xhtml
	  Removed script block from: OEBPS/HotTicket-33.xhtml
	  Removed script block from: OEBPS/HotTicket-25.xhtml
	  Removed script block from: OEBPS/HotTicket-5.xhtml
	  Removed script block from: OEBPS/HotTicket-12.xhtml
	  Removed script block from: OEBPS/HotTicket-19.xhtml
	  Removed script block from: OEBPS/HotTicket-17.xhtml
	  Removed script block from: OEBPS/HotTicket-42.xhtml
	  Removed script block from: OEBPS/HotTicket-24.xhtml
	  Removed script block from: OEBPS/HotTicket-22.xhtml
	  Removed script block from: OEBPS/HotTicket-21.xhtml
	  Removed script block from: OEBPS/HotTicket-38.xhtml
	  Removed script block from: OEBPS/HotTicket-29.xhtml
	  Removed script block from: OEBPS/HotTicket-1.xhtml
	  Removed script block from: OEBPS/HotTicket-35.xhtml
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-9.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-49.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-40.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-8.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-45.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-41.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-34.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-7.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-30.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-13.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-16.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-36.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-39.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-20.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-43.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-37.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-31.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-18.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-4.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-32.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-10.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-26.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-14.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-46.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-11.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-28.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-47.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-48.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-27.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-44.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-15.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-23.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-33.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-25.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-12.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-19.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-17.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-42.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-24.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-22.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-21.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-38.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-29.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/HotTicket-35.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-3.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-9.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-49.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-40.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-8.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-45.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-41.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-34.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-7.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-30.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-13.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-16.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-36.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-39.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-20.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-6.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-43.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-37.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-31.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-18.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-4.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-32.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-10.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-26.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-14.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-46.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-11.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-28.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-47.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-2.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-48.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-27.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-44.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-15.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-23.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-33.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-25.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-5.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-12.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-19.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-17.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-42.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-24.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-22.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-21.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-38.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-29.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-1.xhtml
	  Stripped Kobo spans in: OEBPS/HotTicket-35.xhtml
ePub updated in 2.27 seconds

Logfile for book ID 97 (Renegade / Lora Leigh)
97
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\97.epub
Parsing xml file: OPS/package.opf
Parsing xml file: OPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OPS/xhtml/chapter08.html
	  Removed script block from: OPS/xhtml/chapter19.html
	  Removed script block from: OPS/xhtml/chapter02.html
	  Removed script block from: OPS/xhtml/chapter07.html
	  Removed script block from: OPS/xhtml/chapter24.html
	  Removed script block from: OPS/xhtml/chapter20.html
	  Removed script block from: OPS/xhtml/chapter05.html
	  Removed script block from: OPS/xhtml/title.html
	  Removed script block from: OPS/xhtml/chapter22.html
	  Removed script block from: OPS/xhtml/frontmatter01.html
	  Removed script block from: OPS/xhtml/chapter13.html
	  Removed script block from: OPS/xhtml/frontmatter.html
	  Removed script block from: OPS/xhtml/chapter09.html
	  Removed script block from: OPS/xhtml/dedication.html
	  Removed script block from: OPS/xhtml/chapter18.html
	  Removed script block from: OPS/xhtml/chapter21.html
	  Removed script block from: OPS/xhtml/chapter12.html
	  Removed script block from: OPS/xhtml/chapter03.html
	  Removed script block from: OPS/xhtml/chapter17.html
	  Removed script block from: OPS/xhtml/chapter11.html
	  Removed script block from: OPS/xhtml/copyright.html
	  Removed script block from: OPS/xhtml/chapter06.html
	  Removed script block from: OPS/xhtml/chapter14.html
	  Removed script block from: OPS/xhtml/backmatter01.html
	  Removed script block from: OPS/xhtml/chapter15.html
	  Removed script block from: OPS/xhtml/cover.xml
	  Removed script block from: OPS/xhtml/chapter16.html
	  Removed script block from: OPS/xhtml/chapter23.html
	  Removed script block from: OPS/xhtml/frontmattera.html
	  Removed script block from: OPS/xhtml/chapter01.html
	  Removed script block from: OPS/xhtml/contents.html
	  Removed script block from: OPS/xhtml/chapter10.html
	  Removed script block from: OPS/xhtml/chapter04.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter08.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter19.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter02.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter07.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter24.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter20.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter05.html
	  Removed Kobo HEAD elements from: OPS/xhtml/title.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter22.html
	  Removed Kobo HEAD elements from: OPS/xhtml/frontmatter01.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter13.html
	  Removed Kobo HEAD elements from: OPS/xhtml/frontmatter.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter09.html
	  Removed Kobo HEAD elements from: OPS/xhtml/dedication.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter18.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter21.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter12.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter03.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter17.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter11.html
	  Removed Kobo HEAD elements from: OPS/xhtml/copyright.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter06.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter14.html
	  Removed Kobo HEAD elements from: OPS/xhtml/backmatter01.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter15.html
	  Removed Kobo HEAD elements from: OPS/xhtml/cover.xml
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter16.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter23.html
	  Removed Kobo HEAD elements from: OPS/xhtml/frontmattera.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter01.html
	  Removed Kobo HEAD elements from: OPS/xhtml/contents.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter10.html
	  Removed Kobo HEAD elements from: OPS/xhtml/chapter04.html
	  Stripped Kobo spans in: OPS/xhtml/chapter08.html
	  Stripped Kobo spans in: OPS/xhtml/chapter19.html
	  Stripped Kobo spans in: OPS/xhtml/chapter02.html
	  Stripped Kobo spans in: OPS/xhtml/chapter07.html
	  Stripped Kobo spans in: OPS/xhtml/chapter24.html
	  Stripped Kobo spans in: OPS/xhtml/chapter20.html
	  Stripped Kobo spans in: OPS/xhtml/chapter05.html
	  Stripped Kobo spans in: OPS/xhtml/title.html
	  Stripped Kobo spans in: OPS/xhtml/chapter22.html
	  Stripped Kobo spans in: OPS/xhtml/frontmatter01.html
	  Stripped Kobo spans in: OPS/xhtml/chapter13.html
	  Stripped Kobo spans in: OPS/xhtml/frontmatter.html
	  Stripped Kobo spans in: OPS/xhtml/chapter09.html
	  Stripped Kobo spans in: OPS/xhtml/dedication.html
	  Stripped Kobo spans in: OPS/xhtml/chapter18.html
	  Stripped Kobo spans in: OPS/xhtml/chapter21.html
	  Stripped Kobo spans in: OPS/xhtml/chapter12.html
	  Stripped Kobo spans in: OPS/xhtml/chapter03.html
	  Stripped Kobo spans in: OPS/xhtml/chapter17.html
	  Stripped Kobo spans in: OPS/xhtml/chapter11.html
	  Stripped Kobo spans in: OPS/xhtml/copyright.html
	  Stripped Kobo spans in: OPS/xhtml/chapter06.html
	  Stripped Kobo spans in: OPS/xhtml/chapter14.html
	  Stripped Kobo spans in: OPS/xhtml/backmatter01.html
	  Stripped Kobo spans in: OPS/xhtml/chapter15.html
	  Stripped Kobo spans in: OPS/xhtml/cover.xml
	  Stripped Kobo spans in: OPS/xhtml/chapter16.html
	  Stripped Kobo spans in: OPS/xhtml/chapter23.html
	  Stripped Kobo spans in: OPS/xhtml/frontmattera.html
	  Stripped Kobo spans in: OPS/xhtml/chapter01.html
	  Stripped Kobo spans in: OPS/xhtml/contents.html
	  Stripped Kobo spans in: OPS/xhtml/chapter10.html
	  Stripped Kobo spans in: OPS/xhtml/chapter04.html
ePub updated in 1.59 seconds

Logfile for book ID 96 (Hot for the Holidays / Leigh, Lora)
96
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\96.epub
Parsing xml file: OEBPS/leig_9781101140390_oeb_opf_r1.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c19_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c41_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c08_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c20_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c01_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_cop_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c39_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c23_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c15_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c37_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c25_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c04_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c16_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c28_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c10_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c33_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c07_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_p03_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c05_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c13_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_toc_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_fm1_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c30_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c12_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_p01_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c29_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c21_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c17_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c36_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c40_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_p02_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c03_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c02_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c18_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c38_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c14_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_p04_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c35_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_tp_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_cover_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c34_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c24_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c06_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c31_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c26_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c27_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c11_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c09_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c32_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101140390_oeb_c22_r1.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c19_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c41_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c08_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c20_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c01_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_cop_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c39_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c23_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c15_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c37_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c25_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c04_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c16_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c28_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c10_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c33_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c07_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_p03_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c05_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c13_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_toc_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_fm1_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c30_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c12_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_p01_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c29_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c21_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c17_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c36_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c40_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_p02_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c03_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c02_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c18_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c38_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c14_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_p04_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c35_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_tp_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_cover_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c34_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c24_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c06_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c31_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c26_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c27_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c11_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c09_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c32_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101140390_oeb_c22_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c19_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c41_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c08_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c20_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c01_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_cop_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c39_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c23_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c15_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c37_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c25_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c04_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c16_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c28_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c10_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c33_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c07_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_p03_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c05_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c13_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_fm1_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c30_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c12_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_p01_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c29_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c21_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c17_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c36_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c40_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_p02_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c03_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c02_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c18_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c38_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c14_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_p04_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c35_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_tp_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_cover_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c34_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c24_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c06_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c31_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c26_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c27_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c11_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c09_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c32_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101140390_oeb_c22_r1.xhtml
ePub updated in 2.79 seconds

Logfile for book ID 94 (Here Kitty, Kitty: Magnus Pack, Book 2 / Shelly Laurenston)
94
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\94.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/section27.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section23.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section26.html
	  Removed script block from: OEBPS/section28.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section25.html
	  Removed script block from: OEBPS/section29.html
	  Removed script block from: OEBPS/section18.html
	  Removed script block from: OEBPS/section22.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section20.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section24.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section19.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section21.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/section27.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section23.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section26.html
	  Removed Kobo HEAD elements from: OEBPS/section28.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section25.html
	  Removed Kobo HEAD elements from: OEBPS/section29.html
	  Removed Kobo HEAD elements from: OEBPS/section18.html
	  Removed Kobo HEAD elements from: OEBPS/section22.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section20.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section24.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section19.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section21.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section27.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section23.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section26.html
	  Stripped Kobo spans in: OEBPS/section28.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section25.html
	  Stripped Kobo spans in: OEBPS/section29.html
	  Stripped Kobo spans in: OEBPS/section18.html
	  Stripped Kobo spans in: OEBPS/section22.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section20.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section24.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section19.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section21.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 1.95 seconds

Logfile for book ID 93 (Razer's Ride / Jamie Begley)
93
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\93.epub
Parsing xml file: content.opf
Parsing xml file: toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: titlepage.xhtml
	  Removed script block from: index_split_000.xhtml
	  Removed script block from: index_split_001.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: titlepage.xhtml
	  Removed Kobo HEAD elements from: index_split_000.xhtml
	  Removed Kobo HEAD elements from: index_split_001.xhtml
	  Stripped Kobo spans in: titlepage.xhtml
	  Stripped Kobo spans in: index_split_000.xhtml
	  Stripped Kobo spans in: index_split_001.xhtml
ePub updated in 1.09 seconds

Logfile for book ID 92 (Her Mates / Suzanne Thomas)
92
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\92.epub
Parsing xml file: content.opf
Parsing xml file: toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: Her_Mates_split_014.html
	  Removed script block from: Her_Mates_split_008.html
	  Removed script block from: Her_Mates_split_016.html
	  Removed script block from: Her_Mates_split_004.html
	  Removed script block from: Her_Mates_split_015.html
	  Removed script block from: Her_Mates_split_017.html
	  Removed script block from: Her_Mates_split_013.html
	  Removed script block from: Her_Mates_split_011.html
	  Removed script block from: Her_Mates_split_002.html
	  Removed script block from: Her_Mates_split_009.html
	  Removed script block from: Her_Mates_split_012.html
	  Removed script block from: Her_Mates_split_003.html
	  Removed script block from: Her_Mates_split_006.html
	  Removed script block from: titlepage.xhtml
	  Removed script block from: Her_Mates_split_000.html
	  Removed script block from: Her_Mates_split_005.html
	  Removed script block from: Her_Mates_split_007.html
	  Removed script block from: Her_Mates_split_010.html
	  Removed script block from: Her_Mates_split_001.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
	  Stripped spans in: Her_Mates_split_014.html
	  Stripped spans in: Her_Mates_split_008.html
	  Stripped spans in: Her_Mates_split_016.html
	  Stripped spans in: Her_Mates_split_004.html
	  Stripped spans in: Her_Mates_split_015.html
	  Stripped spans in: Her_Mates_split_017.html
	  Stripped spans in: Her_Mates_split_013.html
	  Stripped spans in: Her_Mates_split_011.html
	  Stripped spans in: Her_Mates_split_002.html
	  Stripped spans in: Her_Mates_split_009.html
	  Stripped spans in: Her_Mates_split_012.html
	  Stripped spans in: Her_Mates_split_003.html
	  Stripped spans in: Her_Mates_split_006.html
	  Stripped spans in: Her_Mates_split_000.html
	  Stripped spans in: Her_Mates_split_005.html
	  Stripped spans in: Her_Mates_split_007.html
	  Stripped spans in: Her_Mates_split_010.html
	  Stripped spans in: Her_Mates_split_001.html
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: Her_Mates_split_014.html
	  Removed Kobo HEAD elements from: Her_Mates_split_008.html
	  Removed Kobo HEAD elements from: Her_Mates_split_016.html
	  Removed Kobo HEAD elements from: Her_Mates_split_004.html
	  Removed Kobo HEAD elements from: Her_Mates_split_015.html
	  Removed Kobo HEAD elements from: Her_Mates_split_017.html
	  Removed Kobo HEAD elements from: Her_Mates_split_013.html
	  Removed Kobo HEAD elements from: Her_Mates_split_011.html
	  Removed Kobo HEAD elements from: Her_Mates_split_002.html
	  Removed Kobo HEAD elements from: Her_Mates_split_009.html
	  Removed Kobo HEAD elements from: Her_Mates_split_012.html
	  Removed Kobo HEAD elements from: Her_Mates_split_003.html
	  Removed Kobo HEAD elements from: Her_Mates_split_006.html
	  Removed Kobo HEAD elements from: titlepage.xhtml
	  Removed Kobo HEAD elements from: Her_Mates_split_000.html
	  Removed Kobo HEAD elements from: Her_Mates_split_005.html
	  Removed Kobo HEAD elements from: Her_Mates_split_007.html
	  Removed Kobo HEAD elements from: Her_Mates_split_010.html
	  Removed Kobo HEAD elements from: Her_Mates_split_001.html
	  Stripped Kobo spans in: Her_Mates_split_014.html
	  Stripped Kobo spans in: Her_Mates_split_008.html
	  Stripped Kobo spans in: Her_Mates_split_016.html
	  Stripped Kobo spans in: Her_Mates_split_004.html
	  Stripped Kobo spans in: Her_Mates_split_015.html
	  Stripped Kobo spans in: Her_Mates_split_017.html
	  Stripped Kobo spans in: Her_Mates_split_013.html
	  Stripped Kobo spans in: Her_Mates_split_011.html
	  Stripped Kobo spans in: Her_Mates_split_002.html
	  Stripped Kobo spans in: Her_Mates_split_009.html
	  Stripped Kobo spans in: Her_Mates_split_012.html
	  Stripped Kobo spans in: Her_Mates_split_003.html
	  Stripped Kobo spans in: Her_Mates_split_006.html
	  Stripped Kobo spans in: titlepage.xhtml
	  Stripped Kobo spans in: Her_Mates_split_000.html
	  Stripped Kobo spans in: Her_Mates_split_005.html
	  Stripped Kobo spans in: Her_Mates_split_007.html
	  Stripped Kobo spans in: Her_Mates_split_010.html
	  Stripped Kobo spans in: Her_Mates_split_001.html
ePub updated in 0.48 seconds

Logfile for book ID 90 (Van, Becca - Her Ex-Marines [Slick Rock 3] (Siren Publishing Ménage Everlasting) / Becca Van)
90
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\90.epub
Parsing xml file: content.opf
Parsing xml file: toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_022.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_017.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_002.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_012.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_016.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_006.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_004.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_009.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_003.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_010.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_008.html
	  Removed script block from: titlepage.xhtml
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_020.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_000.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_015.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_005.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_019.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_001.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_011.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_013.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_021.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_018.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_014.html
	  Removed script block from: Van_Becca_-_-ge_Everlasting_split_007.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo.js
	Stripping spans
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_022.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_017.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_002.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_012.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_016.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_006.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_004.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_009.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_003.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_010.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_008.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_020.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_000.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_015.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_005.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_019.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_001.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_011.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_013.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_021.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_018.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_014.html
	  Stripped spans in: Van_Becca_-_-ge_Everlasting_split_007.html
	Stripping Kobo remnants
	  Removed kobo.css file: css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_022.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_017.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_002.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_012.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_016.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_006.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_004.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_009.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_003.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_010.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_008.html
	  Removed Kobo HEAD elements from: titlepage.xhtml
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_020.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_000.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_015.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_005.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_019.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_001.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_011.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_013.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_021.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_018.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_014.html
	  Removed Kobo HEAD elements from: Van_Becca_-_-ge_Everlasting_split_007.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_022.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_017.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_002.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_012.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_016.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_006.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_004.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_009.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_003.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_010.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_008.html
	  Stripped Kobo spans in: titlepage.xhtml
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_020.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_000.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_015.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_005.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_019.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_001.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_011.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_013.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_021.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_018.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_014.html
	  Stripped Kobo spans in: Van_Becca_-_-ge_Everlasting_split_007.html
ePub updated in 0.69 seconds

Logfile for book ID 91 (Quinn's Undying Rose / Tina Folsom)
91
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\91.epub
Parsing xml file: OPS/content.opf
Parsing xml file: OPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OPS/section-0018.html
	  Removed script block from: OPS/section-0035.html
	  Removed script block from: OPS/section-0041.html
	  Removed script block from: OPS/section-0007.html
	  Removed script block from: OPS/section-0032.html
	  Removed script block from: OPS/section-0001.html
	  Removed script block from: OPS/section-0037.html
	  Removed script block from: OPS/section-0014.html
	  Removed script block from: OPS/CoverPage.html
	  Removed script block from: OPS/section-0040.html
	  Removed script block from: OPS/section-0005.html
	  Removed script block from: OPS/section-0004.html
	  Removed script block from: OPS/section-0034.html
	  Removed script block from: OPS/section-0020.html
	  Removed script block from: OPS/section-0006.html
	  Removed script block from: OPS/section-0022.html
	  Removed script block from: OPS/section-0028.html
	  Removed script block from: OPS/section-0025.html
	  Removed script block from: OPS/section-0019.html
	  Removed script block from: OPS/section-0036.html
	  Removed script block from: OPS/section-0015.html
	  Removed script block from: OPS/section-0029.html
	  Removed script block from: OPS/section-0017.html
	  Removed script block from: OPS/section-0026.html
	  Removed script block from: OPS/section-0021.html
	  Removed script block from: OPS/section-0010.html
	  Removed script block from: OPS/section-0016.html
	  Removed script block from: OPS/section-0024.html
	  Removed script block from: OPS/section-0003.html
	  Removed script block from: OPS/section-0042.html
	  Removed script block from: OPS/section-0030.html
	  Removed script block from: OPS/section-0012.html
	  Removed script block from: OPS/section-0013.html
	  Removed script block from: OPS/section-0023.html
	  Removed script block from: OPS/section-0027.html
	  Removed script block from: OPS/section-0033.html
	  Removed script block from: OPS/section-0009.html
	  Removed script block from: OPS/section-0011.html
	  Removed script block from: OPS/section-0031.html
	  Removed script block from: OPS/section-0039.html
	  Removed script block from: OPS/TableOfContents.html
	  Removed script block from: OPS/section-0008.html
	  Removed script block from: OPS/section-0002.html
	  Removed script block from: OPS/section-0038.html
	Looking for .js files to remove
	  Found .js file to remove: OPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OPS/section-0018.html
	  Stripped spans in: OPS/section-0035.html
	  Stripped spans in: OPS/section-0041.html
	  Stripped spans in: OPS/section-0007.html
	  Stripped spans in: OPS/section-0032.html
	  Stripped spans in: OPS/section-0001.html
	  Stripped spans in: OPS/section-0037.html
	  Stripped spans in: OPS/section-0014.html
	  Stripped spans in: OPS/section-0040.html
	  Stripped spans in: OPS/section-0005.html
	  Stripped spans in: OPS/section-0004.html
	  Stripped spans in: OPS/section-0034.html
	  Stripped spans in: OPS/section-0020.html
	  Stripped spans in: OPS/section-0006.html
	  Stripped spans in: OPS/section-0022.html
	  Stripped spans in: OPS/section-0028.html
	  Stripped spans in: OPS/section-0025.html
	  Stripped spans in: OPS/section-0019.html
	  Stripped spans in: OPS/section-0036.html
	  Stripped spans in: OPS/section-0015.html
	  Stripped spans in: OPS/section-0029.html
	  Stripped spans in: OPS/section-0017.html
	  Stripped spans in: OPS/section-0026.html
	  Stripped spans in: OPS/section-0021.html
	  Stripped spans in: OPS/section-0010.html
	  Stripped spans in: OPS/section-0016.html
	  Stripped spans in: OPS/section-0024.html
	  Stripped spans in: OPS/section-0003.html
	  Stripped spans in: OPS/section-0042.html
	  Stripped spans in: OPS/section-0030.html
	  Stripped spans in: OPS/section-0012.html
	  Stripped spans in: OPS/section-0013.html
	  Stripped spans in: OPS/section-0023.html
	  Stripped spans in: OPS/section-0027.html
	  Stripped spans in: OPS/section-0033.html
	  Stripped spans in: OPS/section-0009.html
	  Stripped spans in: OPS/section-0011.html
	  Stripped spans in: OPS/section-0031.html
	  Stripped spans in: OPS/section-0039.html
	  Stripped spans in: OPS/section-0008.html
	  Stripped spans in: OPS/section-0002.html
	  Stripped spans in: OPS/section-0038.html
	Stripping Kobo remnants
	  Removed kobo.css file: OPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OPS/section-0018.html
	  Removed Kobo HEAD elements from: OPS/section-0035.html
	  Removed Kobo HEAD elements from: OPS/section-0041.html
	  Removed Kobo HEAD elements from: OPS/section-0007.html
	  Removed Kobo HEAD elements from: OPS/section-0032.html
	  Removed Kobo HEAD elements from: OPS/section-0001.html
	  Removed Kobo HEAD elements from: OPS/section-0037.html
	  Removed Kobo HEAD elements from: OPS/section-0014.html
	  Removed Kobo HEAD elements from: OPS/CoverPage.html
	  Removed Kobo HEAD elements from: OPS/section-0040.html
	  Removed Kobo HEAD elements from: OPS/section-0005.html
	  Removed Kobo HEAD elements from: OPS/section-0004.html
	  Removed Kobo HEAD elements from: OPS/section-0034.html
	  Removed Kobo HEAD elements from: OPS/section-0020.html
	  Removed Kobo HEAD elements from: OPS/section-0006.html
	  Removed Kobo HEAD elements from: OPS/section-0022.html
	  Removed Kobo HEAD elements from: OPS/section-0028.html
	  Removed Kobo HEAD elements from: OPS/section-0025.html
	  Removed Kobo HEAD elements from: OPS/section-0019.html
	  Removed Kobo HEAD elements from: OPS/section-0036.html
	  Removed Kobo HEAD elements from: OPS/section-0015.html
	  Removed Kobo HEAD elements from: OPS/section-0029.html
	  Removed Kobo HEAD elements from: OPS/section-0017.html
	  Removed Kobo HEAD elements from: OPS/section-0026.html
	  Removed Kobo HEAD elements from: OPS/section-0021.html
	  Removed Kobo HEAD elements from: OPS/section-0010.html
	  Removed Kobo HEAD elements from: OPS/section-0016.html
	  Removed Kobo HEAD elements from: OPS/section-0024.html
	  Removed Kobo HEAD elements from: OPS/section-0003.html
	  Removed Kobo HEAD elements from: OPS/section-0042.html
	  Removed Kobo HEAD elements from: OPS/section-0030.html
	  Removed Kobo HEAD elements from: OPS/section-0012.html
	  Removed Kobo HEAD elements from: OPS/section-0013.html
	  Removed Kobo HEAD elements from: OPS/section-0023.html
	  Removed Kobo HEAD elements from: OPS/section-0027.html
	  Removed Kobo HEAD elements from: OPS/section-0033.html
	  Removed Kobo HEAD elements from: OPS/section-0009.html
	  Removed Kobo HEAD elements from: OPS/section-0011.html
	  Removed Kobo HEAD elements from: OPS/section-0031.html
	  Removed Kobo HEAD elements from: OPS/section-0039.html
	  Removed Kobo HEAD elements from: OPS/TableOfContents.html
	  Removed Kobo HEAD elements from: OPS/section-0008.html
	  Removed Kobo HEAD elements from: OPS/section-0002.html
	  Removed Kobo HEAD elements from: OPS/section-0038.html
	  Stripped Kobo spans in: OPS/section-0018.html
	  Stripped Kobo spans in: OPS/section-0035.html
	  Stripped Kobo spans in: OPS/section-0041.html
	  Stripped Kobo spans in: OPS/section-0007.html
	  Stripped Kobo spans in: OPS/section-0032.html
	  Stripped Kobo spans in: OPS/section-0001.html
	  Stripped Kobo spans in: OPS/section-0037.html
	  Stripped Kobo spans in: OPS/section-0014.html
	  Stripped Kobo spans in: OPS/CoverPage.html
	  Stripped Kobo spans in: OPS/section-0040.html
	  Stripped Kobo spans in: OPS/section-0005.html
	  Stripped Kobo spans in: OPS/section-0004.html
	  Stripped Kobo spans in: OPS/section-0034.html
	  Stripped Kobo spans in: OPS/section-0020.html
	  Stripped Kobo spans in: OPS/section-0006.html
	  Stripped Kobo spans in: OPS/section-0022.html
	  Stripped Kobo spans in: OPS/section-0028.html
	  Stripped Kobo spans in: OPS/section-0025.html
	  Stripped Kobo spans in: OPS/section-0019.html
	  Stripped Kobo spans in: OPS/section-0036.html
	  Stripped Kobo spans in: OPS/section-0015.html
	  Stripped Kobo spans in: OPS/section-0029.html
	  Stripped Kobo spans in: OPS/section-0017.html
	  Stripped Kobo spans in: OPS/section-0026.html
	  Stripped Kobo spans in: OPS/section-0021.html
	  Stripped Kobo spans in: OPS/section-0010.html
	  Stripped Kobo spans in: OPS/section-0016.html
	  Stripped Kobo spans in: OPS/section-0024.html
	  Stripped Kobo spans in: OPS/section-0003.html
	  Stripped Kobo spans in: OPS/section-0042.html
	  Stripped Kobo spans in: OPS/section-0030.html
	  Stripped Kobo spans in: OPS/section-0012.html
	  Stripped Kobo spans in: OPS/section-0013.html
	  Stripped Kobo spans in: OPS/section-0023.html
	  Stripped Kobo spans in: OPS/section-0027.html
	  Stripped Kobo spans in: OPS/section-0033.html
	  Stripped Kobo spans in: OPS/section-0009.html
	  Stripped Kobo spans in: OPS/section-0011.html
	  Stripped Kobo spans in: OPS/section-0031.html
	  Stripped Kobo spans in: OPS/section-0039.html
	  Stripped Kobo spans in: OPS/TableOfContents.html
	  Stripped Kobo spans in: OPS/section-0008.html
	  Stripped Kobo spans in: OPS/section-0002.html
	  Stripped Kobo spans in: OPS/section-0038.html
ePub updated in 1.89 seconds

Logfile for book ID 89 (Pride Mates / Ashley, Jennifer)
89
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\89.epub
Parsing xml file: OEBPS/ashl_9781101532577_oeb_opf_r1.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c08_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c03_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c23_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c14_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_cop_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c24_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_fm1_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c02_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c22_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c11_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c09_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_tea_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_cover_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c18_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c06_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_tp_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c10_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c05_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c17_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c01_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_ack_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c21_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_toc_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c04_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c15_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_als_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c12_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c16_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c07_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c20_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c19_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_alsbm_r1.xhtml
	  Removed script block from: OEBPS/ashl_9781101532577_oeb_c13_r1.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c08_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c03_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c23_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c14_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_cop_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c24_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_fm1_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c02_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c22_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c11_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c09_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_tea_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_cover_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c18_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c06_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_tp_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c10_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c05_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c17_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c01_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_ack_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c21_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_toc_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c04_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c15_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_als_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c12_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c16_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c07_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c20_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c19_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_alsbm_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ashl_9781101532577_oeb_c13_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c08_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c03_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c23_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c14_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_cop_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c24_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_fm1_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c02_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c22_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c11_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c09_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_tea_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_cover_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c18_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c06_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_tp_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c10_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c05_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c17_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c01_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_ack_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c21_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_toc_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c04_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c15_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_als_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c12_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c16_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c07_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c20_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c19_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_alsbm_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ashl_9781101532577_oeb_c13_r1.xhtml
ePub updated in 1.43 seconds

Logfile for book ID 85 (YouKnowYouMakeMeBlue / Evelyn Starr)
85
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\85.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 0.28 seconds

Logfile for book ID 88 (Zane's Redemption / Tina Folsom)
88
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\88.epub
Parsing xml file: OPS/content.opf
Parsing xml file: OPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OPS/section-0018.html
	  Removed script block from: OPS/section-0035.html
	  Removed script block from: OPS/section-0041.html
	  Removed script block from: OPS/section-0007.html
	  Removed script block from: OPS/section-0032.html
	  Removed script block from: OPS/section-0001.html
	  Removed script block from: OPS/section-0037.html
	  Removed script block from: OPS/section-0014.html
	  Removed script block from: OPS/CoverPage.html
	  Removed script block from: OPS/section-0040.html
	  Removed script block from: OPS/section-0005.html
	  Removed script block from: OPS/section-0004.html
	  Removed script block from: OPS/section-0034.html
	  Removed script block from: OPS/section-0020.html
	  Removed script block from: OPS/section-0045.html
	  Removed script block from: OPS/section-0006.html
	  Removed script block from: OPS/section-0022.html
	  Removed script block from: OPS/section-0028.html
	  Removed script block from: OPS/section-0025.html
	  Removed script block from: OPS/section-0019.html
	  Removed script block from: OPS/section-0036.html
	  Removed script block from: OPS/section-0015.html
	  Removed script block from: OPS/section-0029.html
	  Removed script block from: OPS/section-0017.html
	  Removed script block from: OPS/section-0026.html
	  Removed script block from: OPS/section-0021.html
	  Removed script block from: OPS/section-0010.html
	  Removed script block from: OPS/section-0016.html
	  Removed script block from: OPS/section-0024.html
	  Removed script block from: OPS/section-0003.html
	  Removed script block from: OPS/section-0042.html
	  Removed script block from: OPS/section-0043.html
	  Removed script block from: OPS/section-0030.html
	  Removed script block from: OPS/section-0047.html
	  Removed script block from: OPS/section-0012.html
	  Removed script block from: OPS/section-0013.html
	  Removed script block from: OPS/section-0023.html
	  Removed script block from: OPS/section-0027.html
	  Removed script block from: OPS/section-0033.html
	  Removed script block from: OPS/section-0009.html
	  Removed script block from: OPS/section-0011.html
	  Removed script block from: OPS/section-0031.html
	  Removed script block from: OPS/section-0044.html
	  Removed script block from: OPS/section-0039.html
	  Removed script block from: OPS/section-0046.html
	  Removed script block from: OPS/TableOfContents.html
	  Removed script block from: OPS/section-0008.html
	  Removed script block from: OPS/section-0002.html
	  Removed script block from: OPS/section-0038.html
	Looking for .js files to remove
	  Found .js file to remove: OPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OPS/section-0018.html
	  Stripped spans in: OPS/section-0035.html
	  Stripped spans in: OPS/section-0041.html
	  Stripped spans in: OPS/section-0007.html
	  Stripped spans in: OPS/section-0032.html
	  Stripped spans in: OPS/section-0001.html
	  Stripped spans in: OPS/section-0037.html
	  Stripped spans in: OPS/section-0014.html
	  Stripped spans in: OPS/section-0040.html
	  Stripped spans in: OPS/section-0005.html
	  Stripped spans in: OPS/section-0004.html
	  Stripped spans in: OPS/section-0034.html
	  Stripped spans in: OPS/section-0020.html
	  Stripped spans in: OPS/section-0045.html
	  Stripped spans in: OPS/section-0006.html
	  Stripped spans in: OPS/section-0022.html
	  Stripped spans in: OPS/section-0028.html
	  Stripped spans in: OPS/section-0025.html
	  Stripped spans in: OPS/section-0019.html
	  Stripped spans in: OPS/section-0036.html
	  Stripped spans in: OPS/section-0015.html
	  Stripped spans in: OPS/section-0029.html
	  Stripped spans in: OPS/section-0017.html
	  Stripped spans in: OPS/section-0026.html
	  Stripped spans in: OPS/section-0021.html
	  Stripped spans in: OPS/section-0010.html
	  Stripped spans in: OPS/section-0016.html
	  Stripped spans in: OPS/section-0024.html
	  Stripped spans in: OPS/section-0003.html
	  Stripped spans in: OPS/section-0042.html
	  Stripped spans in: OPS/section-0043.html
	  Stripped spans in: OPS/section-0030.html
	  Stripped spans in: OPS/section-0047.html
	  Stripped spans in: OPS/section-0012.html
	  Stripped spans in: OPS/section-0013.html
	  Stripped spans in: OPS/section-0023.html
	  Stripped spans in: OPS/section-0027.html
	  Stripped spans in: OPS/section-0033.html
	  Stripped spans in: OPS/section-0009.html
	  Stripped spans in: OPS/section-0011.html
	  Stripped spans in: OPS/section-0031.html
	  Stripped spans in: OPS/section-0044.html
	  Stripped spans in: OPS/section-0039.html
	  Stripped spans in: OPS/section-0046.html
	  Stripped spans in: OPS/section-0008.html
	  Stripped spans in: OPS/section-0002.html
	  Stripped spans in: OPS/section-0038.html
	Stripping Kobo remnants
	  Removed kobo.css file: OPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OPS/section-0018.html
	  Removed Kobo HEAD elements from: OPS/section-0035.html
	  Removed Kobo HEAD elements from: OPS/section-0041.html
	  Removed Kobo HEAD elements from: OPS/section-0007.html
	  Removed Kobo HEAD elements from: OPS/section-0032.html
	  Removed Kobo HEAD elements from: OPS/section-0001.html
	  Removed Kobo HEAD elements from: OPS/section-0037.html
	  Removed Kobo HEAD elements from: OPS/section-0014.html
	  Removed Kobo HEAD elements from: OPS/CoverPage.html
	  Removed Kobo HEAD elements from: OPS/section-0040.html
	  Removed Kobo HEAD elements from: OPS/section-0005.html
	  Removed Kobo HEAD elements from: OPS/section-0004.html
	  Removed Kobo HEAD elements from: OPS/section-0034.html
	  Removed Kobo HEAD elements from: OPS/section-0020.html
	  Removed Kobo HEAD elements from: OPS/section-0045.html
	  Removed Kobo HEAD elements from: OPS/section-0006.html
	  Removed Kobo HEAD elements from: OPS/section-0022.html
	  Removed Kobo HEAD elements from: OPS/section-0028.html
	  Removed Kobo HEAD elements from: OPS/section-0025.html
	  Removed Kobo HEAD elements from: OPS/section-0019.html
	  Removed Kobo HEAD elements from: OPS/section-0036.html
	  Removed Kobo HEAD elements from: OPS/section-0015.html
	  Removed Kobo HEAD elements from: OPS/section-0029.html
	  Removed Kobo HEAD elements from: OPS/section-0017.html
	  Removed Kobo HEAD elements from: OPS/section-0026.html
	  Removed Kobo HEAD elements from: OPS/section-0021.html
	  Removed Kobo HEAD elements from: OPS/section-0010.html
	  Removed Kobo HEAD elements from: OPS/section-0016.html
	  Removed Kobo HEAD elements from: OPS/section-0024.html
	  Removed Kobo HEAD elements from: OPS/section-0003.html
	  Removed Kobo HEAD elements from: OPS/section-0042.html
	  Removed Kobo HEAD elements from: OPS/section-0043.html
	  Removed Kobo HEAD elements from: OPS/section-0030.html
	  Removed Kobo HEAD elements from: OPS/section-0047.html
	  Removed Kobo HEAD elements from: OPS/section-0012.html
	  Removed Kobo HEAD elements from: OPS/section-0013.html
	  Removed Kobo HEAD elements from: OPS/section-0023.html
	  Removed Kobo HEAD elements from: OPS/section-0027.html
	  Removed Kobo HEAD elements from: OPS/section-0033.html
	  Removed Kobo HEAD elements from: OPS/section-0009.html
	  Removed Kobo HEAD elements from: OPS/section-0011.html
	  Removed Kobo HEAD elements from: OPS/section-0031.html
	  Removed Kobo HEAD elements from: OPS/section-0044.html
	  Removed Kobo HEAD elements from: OPS/section-0039.html
	  Removed Kobo HEAD elements from: OPS/section-0046.html
	  Removed Kobo HEAD elements from: OPS/TableOfContents.html
	  Removed Kobo HEAD elements from: OPS/section-0008.html
	  Removed Kobo HEAD elements from: OPS/section-0002.html
	  Removed Kobo HEAD elements from: OPS/section-0038.html
	  Stripped Kobo spans in: OPS/section-0018.html
	  Stripped Kobo spans in: OPS/section-0035.html
	  Stripped Kobo spans in: OPS/section-0041.html
	  Stripped Kobo spans in: OPS/section-0007.html
	  Stripped Kobo spans in: OPS/section-0032.html
	  Stripped Kobo spans in: OPS/section-0001.html
	  Stripped Kobo spans in: OPS/section-0037.html
	  Stripped Kobo spans in: OPS/section-0014.html
	  Stripped Kobo spans in: OPS/CoverPage.html
	  Stripped Kobo spans in: OPS/section-0040.html
	  Stripped Kobo spans in: OPS/section-0005.html
	  Stripped Kobo spans in: OPS/section-0004.html
	  Stripped Kobo spans in: OPS/section-0034.html
	  Stripped Kobo spans in: OPS/section-0020.html
	  Stripped Kobo spans in: OPS/section-0045.html
	  Stripped Kobo spans in: OPS/section-0006.html
	  Stripped Kobo spans in: OPS/section-0022.html
	  Stripped Kobo spans in: OPS/section-0028.html
	  Stripped Kobo spans in: OPS/section-0025.html
	  Stripped Kobo spans in: OPS/section-0019.html
	  Stripped Kobo spans in: OPS/section-0036.html
	  Stripped Kobo spans in: OPS/section-0015.html
	  Stripped Kobo spans in: OPS/section-0029.html
	  Stripped Kobo spans in: OPS/section-0017.html
	  Stripped Kobo spans in: OPS/section-0026.html
	  Stripped Kobo spans in: OPS/section-0021.html
	  Stripped Kobo spans in: OPS/section-0010.html
	  Stripped Kobo spans in: OPS/section-0016.html
	  Stripped Kobo spans in: OPS/section-0024.html
	  Stripped Kobo spans in: OPS/section-0003.html
	  Stripped Kobo spans in: OPS/section-0042.html
	  Stripped Kobo spans in: OPS/section-0043.html
	  Stripped Kobo spans in: OPS/section-0030.html
	  Stripped Kobo spans in: OPS/section-0047.html
	  Stripped Kobo spans in: OPS/section-0012.html
	  Stripped Kobo spans in: OPS/section-0013.html
	  Stripped Kobo spans in: OPS/section-0023.html
	  Stripped Kobo spans in: OPS/section-0027.html
	  Stripped Kobo spans in: OPS/section-0033.html
	  Stripped Kobo spans in: OPS/section-0009.html
	  Stripped Kobo spans in: OPS/section-0011.html
	  Stripped Kobo spans in: OPS/section-0031.html
	  Stripped Kobo spans in: OPS/section-0044.html
	  Stripped Kobo spans in: OPS/section-0039.html
	  Stripped Kobo spans in: OPS/section-0046.html
	  Stripped Kobo spans in: OPS/TableOfContents.html
	  Stripped Kobo spans in: OPS/section-0008.html
	  Stripped Kobo spans in: OPS/section-0002.html
	  Stripped Kobo spans in: OPS/section-0038.html
ePub updated in 2.37 seconds

Logfile for book ID 86 (Pack Challenge: Magnus Pack / Shelly Laurenston)
86
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\86.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/section27.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section23.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section26.html
	  Removed script block from: OEBPS/section28.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section25.html
	  Removed script block from: OEBPS/section29.html
	  Removed script block from: OEBPS/section18.html
	  Removed script block from: OEBPS/section22.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section20.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section24.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section19.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section21.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/section27.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section23.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section26.html
	  Removed Kobo HEAD elements from: OEBPS/section28.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section25.html
	  Removed Kobo HEAD elements from: OEBPS/section29.html
	  Removed Kobo HEAD elements from: OEBPS/section18.html
	  Removed Kobo HEAD elements from: OEBPS/section22.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section20.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section24.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section19.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section21.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section27.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section23.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section26.html
	  Stripped Kobo spans in: OEBPS/section28.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section25.html
	  Stripped Kobo spans in: OEBPS/section29.html
	  Stripped Kobo spans in: OEBPS/section18.html
	  Stripped Kobo spans in: OEBPS/section22.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section20.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section24.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section19.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section21.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 1.65 seconds

Logfile for book ID 87 (Yvette's Haven / Tina Folsom)
87
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\87.epub
Parsing xml file: OPS/content.opf
Parsing xml file: OPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OPS/section-0018.html
	  Removed script block from: OPS/section-0035.html
	  Removed script block from: OPS/section-0041.html
	  Removed script block from: OPS/section-0007.html
	  Removed script block from: OPS/section-0032.html
	  Removed script block from: OPS/section-0001.html
	  Removed script block from: OPS/section-0037.html
	  Removed script block from: OPS/section-0014.html
	  Removed script block from: OPS/CoverPage.html
	  Removed script block from: OPS/section-0040.html
	  Removed script block from: OPS/section-0005.html
	  Removed script block from: OPS/section-0004.html
	  Removed script block from: OPS/section-0034.html
	  Removed script block from: OPS/section-0020.html
	  Removed script block from: OPS/section-0006.html
	  Removed script block from: OPS/section-0022.html
	  Removed script block from: OPS/section-0028.html
	  Removed script block from: OPS/section-0025.html
	  Removed script block from: OPS/section-0019.html
	  Removed script block from: OPS/section-0036.html
	  Removed script block from: OPS/section-0015.html
	  Removed script block from: OPS/section-0029.html
	  Removed script block from: OPS/section-0017.html
	  Removed script block from: OPS/section-0026.html
	  Removed script block from: OPS/section-0021.html
	  Removed script block from: OPS/section-0010.html
	  Removed script block from: OPS/section-0016.html
	  Removed script block from: OPS/section-0024.html
	  Removed script block from: OPS/section-0003.html
	  Removed script block from: OPS/section-0042.html
	  Removed script block from: OPS/section-0030.html
	  Removed script block from: OPS/section-0012.html
	  Removed script block from: OPS/section-0013.html
	  Removed script block from: OPS/section-0023.html
	  Removed script block from: OPS/section-0027.html
	  Removed script block from: OPS/section-0033.html
	  Removed script block from: OPS/section-0009.html
	  Removed script block from: OPS/section-0011.html
	  Removed script block from: OPS/section-0031.html
	  Removed script block from: OPS/section-0039.html
	  Removed script block from: OPS/TableOfContents.html
	  Removed script block from: OPS/section-0008.html
	  Removed script block from: OPS/section-0002.html
	  Removed script block from: OPS/section-0038.html
	Looking for .js files to remove
	  Found .js file to remove: OPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OPS/section-0018.html
	  Stripped spans in: OPS/section-0035.html
	  Stripped spans in: OPS/section-0041.html
	  Stripped spans in: OPS/section-0007.html
	  Stripped spans in: OPS/section-0032.html
	  Stripped spans in: OPS/section-0001.html
	  Stripped spans in: OPS/section-0037.html
	  Stripped spans in: OPS/section-0014.html
	  Stripped spans in: OPS/section-0040.html
	  Stripped spans in: OPS/section-0005.html
	  Stripped spans in: OPS/section-0004.html
	  Stripped spans in: OPS/section-0034.html
	  Stripped spans in: OPS/section-0020.html
	  Stripped spans in: OPS/section-0006.html
	  Stripped spans in: OPS/section-0022.html
	  Stripped spans in: OPS/section-0028.html
	  Stripped spans in: OPS/section-0025.html
	  Stripped spans in: OPS/section-0019.html
	  Stripped spans in: OPS/section-0036.html
	  Stripped spans in: OPS/section-0015.html
	  Stripped spans in: OPS/section-0029.html
	  Stripped spans in: OPS/section-0017.html
	  Stripped spans in: OPS/section-0026.html
	  Stripped spans in: OPS/section-0021.html
	  Stripped spans in: OPS/section-0010.html
	  Stripped spans in: OPS/section-0016.html
	  Stripped spans in: OPS/section-0024.html
	  Stripped spans in: OPS/section-0003.html
	  Stripped spans in: OPS/section-0042.html
	  Stripped spans in: OPS/section-0030.html
	  Stripped spans in: OPS/section-0012.html
	  Stripped spans in: OPS/section-0013.html
	  Stripped spans in: OPS/section-0023.html
	  Stripped spans in: OPS/section-0027.html
	  Stripped spans in: OPS/section-0033.html
	  Stripped spans in: OPS/section-0009.html
	  Stripped spans in: OPS/section-0011.html
	  Stripped spans in: OPS/section-0031.html
	  Stripped spans in: OPS/section-0039.html
	  Stripped spans in: OPS/section-0008.html
	  Stripped spans in: OPS/section-0002.html
	  Stripped spans in: OPS/section-0038.html
	Stripping Kobo remnants
	  Removed kobo.css file: OPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OPS/section-0018.html
	  Removed Kobo HEAD elements from: OPS/section-0035.html
	  Removed Kobo HEAD elements from: OPS/section-0041.html
	  Removed Kobo HEAD elements from: OPS/section-0007.html
	  Removed Kobo HEAD elements from: OPS/section-0032.html
	  Removed Kobo HEAD elements from: OPS/section-0001.html
	  Removed Kobo HEAD elements from: OPS/section-0037.html
	  Removed Kobo HEAD elements from: OPS/section-0014.html
	  Removed Kobo HEAD elements from: OPS/CoverPage.html
	  Removed Kobo HEAD elements from: OPS/section-0040.html
	  Removed Kobo HEAD elements from: OPS/section-0005.html
	  Removed Kobo HEAD elements from: OPS/section-0004.html
	  Removed Kobo HEAD elements from: OPS/section-0034.html
	  Removed Kobo HEAD elements from: OPS/section-0020.html
	  Removed Kobo HEAD elements from: OPS/section-0006.html
	  Removed Kobo HEAD elements from: OPS/section-0022.html
	  Removed Kobo HEAD elements from: OPS/section-0028.html
	  Removed Kobo HEAD elements from: OPS/section-0025.html
	  Removed Kobo HEAD elements from: OPS/section-0019.html
	  Removed Kobo HEAD elements from: OPS/section-0036.html
	  Removed Kobo HEAD elements from: OPS/section-0015.html
	  Removed Kobo HEAD elements from: OPS/section-0029.html
	  Removed Kobo HEAD elements from: OPS/section-0017.html
	  Removed Kobo HEAD elements from: OPS/section-0026.html
	  Removed Kobo HEAD elements from: OPS/section-0021.html
	  Removed Kobo HEAD elements from: OPS/section-0010.html
	  Removed Kobo HEAD elements from: OPS/section-0016.html
	  Removed Kobo HEAD elements from: OPS/section-0024.html
	  Removed Kobo HEAD elements from: OPS/section-0003.html
	  Removed Kobo HEAD elements from: OPS/section-0042.html
	  Removed Kobo HEAD elements from: OPS/section-0030.html
	  Removed Kobo HEAD elements from: OPS/section-0012.html
	  Removed Kobo HEAD elements from: OPS/section-0013.html
	  Removed Kobo HEAD elements from: OPS/section-0023.html
	  Removed Kobo HEAD elements from: OPS/section-0027.html
	  Removed Kobo HEAD elements from: OPS/section-0033.html
	  Removed Kobo HEAD elements from: OPS/section-0009.html
	  Removed Kobo HEAD elements from: OPS/section-0011.html
	  Removed Kobo HEAD elements from: OPS/section-0031.html
	  Removed Kobo HEAD elements from: OPS/section-0039.html
	  Removed Kobo HEAD elements from: OPS/TableOfContents.html
	  Removed Kobo HEAD elements from: OPS/section-0008.html
	  Removed Kobo HEAD elements from: OPS/section-0002.html
	  Removed Kobo HEAD elements from: OPS/section-0038.html
	  Stripped Kobo spans in: OPS/section-0018.html
	  Stripped Kobo spans in: OPS/section-0035.html
	  Stripped Kobo spans in: OPS/section-0041.html
	  Stripped Kobo spans in: OPS/section-0007.html
	  Stripped Kobo spans in: OPS/section-0032.html
	  Stripped Kobo spans in: OPS/section-0001.html
	  Stripped Kobo spans in: OPS/section-0037.html
	  Stripped Kobo spans in: OPS/section-0014.html
	  Stripped Kobo spans in: OPS/CoverPage.html
	  Stripped Kobo spans in: OPS/section-0040.html
	  Stripped Kobo spans in: OPS/section-0005.html
	  Stripped Kobo spans in: OPS/section-0004.html
	  Stripped Kobo spans in: OPS/section-0034.html
	  Stripped Kobo spans in: OPS/section-0020.html
	  Stripped Kobo spans in: OPS/section-0006.html
	  Stripped Kobo spans in: OPS/section-0022.html
	  Stripped Kobo spans in: OPS/section-0028.html
	  Stripped Kobo spans in: OPS/section-0025.html
	  Stripped Kobo spans in: OPS/section-0019.html
	  Stripped Kobo spans in: OPS/section-0036.html
	  Stripped Kobo spans in: OPS/section-0015.html
	  Stripped Kobo spans in: OPS/section-0029.html
	  Stripped Kobo spans in: OPS/section-0017.html
	  Stripped Kobo spans in: OPS/section-0026.html
	  Stripped Kobo spans in: OPS/section-0021.html
	  Stripped Kobo spans in: OPS/section-0010.html
	  Stripped Kobo spans in: OPS/section-0016.html
	  Stripped Kobo spans in: OPS/section-0024.html
	  Stripped Kobo spans in: OPS/section-0003.html
	  Stripped Kobo spans in: OPS/section-0042.html
	  Stripped Kobo spans in: OPS/section-0030.html
	  Stripped Kobo spans in: OPS/section-0012.html
	  Stripped Kobo spans in: OPS/section-0013.html
	  Stripped Kobo spans in: OPS/section-0023.html
	  Stripped Kobo spans in: OPS/section-0027.html
	  Stripped Kobo spans in: OPS/section-0033.html
	  Stripped Kobo spans in: OPS/section-0009.html
	  Stripped Kobo spans in: OPS/section-0011.html
	  Stripped Kobo spans in: OPS/section-0031.html
	  Stripped Kobo spans in: OPS/section-0039.html
	  Stripped Kobo spans in: OPS/TableOfContents.html
	  Stripped Kobo spans in: OPS/section-0008.html
	  Stripped Kobo spans in: OPS/section-0002.html
	  Stripped Kobo spans in: OPS/section-0038.html
ePub updated in 2.64 seconds

Logfile for book ID 84 (Out of the Blue / Jan Wong)
84
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\84.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/nameoftocfile.html
	  Removed script block from: OEBPS/chapter014.html
	  Removed script block from: OEBPS/copyright.html
	  Removed script block from: OEBPS/chapter025.html
	  Removed script block from: OEBPS/chapter006.html
	  Removed script block from: OEBPS/chapter018.html
	  Removed script block from: OEBPS/chapter004.html
	  Removed script block from: OEBPS/chapter022.html
	  Removed script block from: OEBPS/chapter003.html
	  Removed script block from: OEBPS/chapter005.html
	  Removed script block from: OEBPS/chapter020.html
	  Removed script block from: OEBPS/chapter007.html
	  Removed script block from: OEBPS/chapter008.html
	  Removed script block from: OEBPS/chapter012.html
	  Removed script block from: OEBPS/chapter028.html
	  Removed script block from: OEBPS/chapter001.html
	  Removed script block from: OEBPS/afterword.html
	  Removed script block from: OEBPS/chapter016.html
	  Removed script block from: OEBPS/chapter024.html
	  Removed script block from: OEBPS/chapter002.html
	  Removed script block from: OEBPS/chapter013.html
	  Removed script block from: OEBPS/chapter019.html
	  Removed script block from: OEBPS/part005.html
	  Removed script block from: OEBPS/part003.html
	  Removed script block from: OEBPS/alsobyauthor.html
	  Removed script block from: OEBPS/chapter009.html
	  Removed script block from: OEBPS/chapter021.html
	  Removed script block from: OEBPS/chapter010.html
	  Removed script block from: OEBPS/chapter026.html
	  Removed script block from: OEBPS/acknowlegments.html
	  Removed script block from: OEBPS/part001.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/chapter017.html
	  Removed script block from: OEBPS/dedication.html
	  Removed script block from: OEBPS/chapter015.html
	  Removed script block from: OEBPS/bibliography.html
	  Removed script block from: OEBPS/chapter027.html
	  Removed script block from: OEBPS/part002.html
	  Removed script block from: OEBPS/part004.html
	  Removed script block from: OEBPS/chapter023.html
	  Removed script block from: OEBPS/chapter011.html
	  Removed script block from: OEBPS/title.html
	  Removed script block from: OEBPS/abouttheauthor.html
	  Removed script block from: OEBPS/preface.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/nameoftocfile.html
	  Removed Kobo HEAD elements from: OEBPS/chapter014.html
	  Removed Kobo HEAD elements from: OEBPS/copyright.html
	  Removed Kobo HEAD elements from: OEBPS/chapter025.html
	  Removed Kobo HEAD elements from: OEBPS/chapter006.html
	  Removed Kobo HEAD elements from: OEBPS/chapter018.html
	  Removed Kobo HEAD elements from: OEBPS/chapter004.html
	  Removed Kobo HEAD elements from: OEBPS/chapter022.html
	  Removed Kobo HEAD elements from: OEBPS/chapter003.html
	  Removed Kobo HEAD elements from: OEBPS/chapter005.html
	  Removed Kobo HEAD elements from: OEBPS/chapter020.html
	  Removed Kobo HEAD elements from: OEBPS/chapter007.html
	  Removed Kobo HEAD elements from: OEBPS/chapter008.html
	  Removed Kobo HEAD elements from: OEBPS/chapter012.html
	  Removed Kobo HEAD elements from: OEBPS/chapter028.html
	  Removed Kobo HEAD elements from: OEBPS/chapter001.html
	  Removed Kobo HEAD elements from: OEBPS/afterword.html
	  Removed Kobo HEAD elements from: OEBPS/chapter016.html
	  Removed Kobo HEAD elements from: OEBPS/chapter024.html
	  Removed Kobo HEAD elements from: OEBPS/chapter002.html
	  Removed Kobo HEAD elements from: OEBPS/chapter013.html
	  Removed Kobo HEAD elements from: OEBPS/chapter019.html
	  Removed Kobo HEAD elements from: OEBPS/part005.html
	  Removed Kobo HEAD elements from: OEBPS/part003.html
	  Removed Kobo HEAD elements from: OEBPS/alsobyauthor.html
	  Removed Kobo HEAD elements from: OEBPS/chapter009.html
	  Removed Kobo HEAD elements from: OEBPS/chapter021.html
	  Removed Kobo HEAD elements from: OEBPS/chapter010.html
	  Removed Kobo HEAD elements from: OEBPS/chapter026.html
	  Removed Kobo HEAD elements from: OEBPS/acknowlegments.html
	  Removed Kobo HEAD elements from: OEBPS/part001.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/chapter017.html
	  Removed Kobo HEAD elements from: OEBPS/dedication.html
	  Removed Kobo HEAD elements from: OEBPS/chapter015.html
	  Removed Kobo HEAD elements from: OEBPS/bibliography.html
	  Removed Kobo HEAD elements from: OEBPS/chapter027.html
	  Removed Kobo HEAD elements from: OEBPS/part002.html
	  Removed Kobo HEAD elements from: OEBPS/part004.html
	  Removed Kobo HEAD elements from: OEBPS/chapter023.html
	  Removed Kobo HEAD elements from: OEBPS/chapter011.html
	  Removed Kobo HEAD elements from: OEBPS/title.html
	  Removed Kobo HEAD elements from: OEBPS/abouttheauthor.html
	  Removed Kobo HEAD elements from: OEBPS/preface.html
	  Stripped Kobo spans in: OEBPS/nameoftocfile.html
	  Stripped Kobo spans in: OEBPS/chapter014.html
	  Stripped Kobo spans in: OEBPS/copyright.html
	  Stripped Kobo spans in: OEBPS/chapter025.html
	  Stripped Kobo spans in: OEBPS/chapter006.html
	  Stripped Kobo spans in: OEBPS/chapter018.html
	  Stripped Kobo spans in: OEBPS/chapter004.html
	  Stripped Kobo spans in: OEBPS/chapter022.html
	  Stripped Kobo spans in: OEBPS/chapter003.html
	  Stripped Kobo spans in: OEBPS/chapter005.html
	  Stripped Kobo spans in: OEBPS/chapter020.html
	  Stripped Kobo spans in: OEBPS/chapter007.html
	  Stripped Kobo spans in: OEBPS/chapter008.html
	  Stripped Kobo spans in: OEBPS/chapter012.html
	  Stripped Kobo spans in: OEBPS/chapter028.html
	  Stripped Kobo spans in: OEBPS/chapter001.html
	  Stripped Kobo spans in: OEBPS/afterword.html
	  Stripped Kobo spans in: OEBPS/chapter016.html
	  Stripped Kobo spans in: OEBPS/chapter024.html
	  Stripped Kobo spans in: OEBPS/chapter002.html
	  Stripped Kobo spans in: OEBPS/chapter013.html
	  Stripped Kobo spans in: OEBPS/chapter019.html
	  Stripped Kobo spans in: OEBPS/part005.html
	  Stripped Kobo spans in: OEBPS/part003.html
	  Stripped Kobo spans in: OEBPS/alsobyauthor.html
	  Stripped Kobo spans in: OEBPS/chapter009.html
	  Stripped Kobo spans in: OEBPS/chapter021.html
	  Stripped Kobo spans in: OEBPS/chapter010.html
	  Stripped Kobo spans in: OEBPS/chapter026.html
	  Stripped Kobo spans in: OEBPS/acknowlegments.html
	  Stripped Kobo spans in: OEBPS/part001.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/chapter017.html
	  Stripped Kobo spans in: OEBPS/dedication.html
	  Stripped Kobo spans in: OEBPS/chapter015.html
	  Stripped Kobo spans in: OEBPS/bibliography.html
	  Stripped Kobo spans in: OEBPS/chapter027.html
	  Stripped Kobo spans in: OEBPS/part002.html
	  Stripped Kobo spans in: OEBPS/part004.html
	  Stripped Kobo spans in: OEBPS/chapter023.html
	  Stripped Kobo spans in: OEBPS/chapter011.html
	  Stripped Kobo spans in: OEBPS/title.html
	  Stripped Kobo spans in: OEBPS/abouttheauthor.html
	  Stripped Kobo spans in: OEBPS/preface.html
ePub updated in 1.98 seconds

Logfile for book ID 80 (Only in My Dreams: Halle Pumas, Book Five / Bell, Dana Marie)
80
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\80.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/toc.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section18.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/toc.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section18.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section18.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 1.16 seconds

Logfile for book ID 83 (Wolf with Benefits / Laurenston, Shelly)
83
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\83.epub
Parsing xml file: OEBPS/e9780758265227_content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/e9780758265227_c31.html
	  Removed script block from: OEBPS/e9780758265227_c16.html
	  Removed script block from: OEBPS/e9780758265227_c24.html
	  Removed script block from: OEBPS/e9780758265227_cov01.html
	  Removed script block from: OEBPS/e9780758265227_c02.html
	  Removed script block from: OEBPS/e9780758265227_bm01.html
	  Removed script block from: OEBPS/e9780758265227_c29.html
	  Removed script block from: OEBPS/e9780758265227_tp01.html
	  Removed script block from: OEBPS/e9780758265227_c14.html
	  Removed script block from: OEBPS/e9780758265227_c32.html
	  Removed script block from: OEBPS/e9780758265227_c10.html
	  Removed script block from: OEBPS/e9780758265227_c20.html
	  Removed script block from: OEBPS/e9780758265227_c07.html
	  Removed script block from: OEBPS/e9780758265227_c22.html
	  Removed script block from: OEBPS/e9780758265227_cop01.html
	  Removed script block from: OEBPS/e9780758265227_c30.html
	  Removed script block from: OEBPS/e9780758265227_fm01.html
	  Removed script block from: OEBPS/e9780758265227_c12.html
	  Removed script block from: OEBPS/e9780758265227_c28.html
	  Removed script block from: OEBPS/e9780758265227_c19.html
	  Removed script block from: OEBPS/e9780758265227_c23.html
	  Removed script block from: OEBPS/e9780758265227_c11.html
	  Removed script block from: OEBPS/e9780758265227_c13.html
	  Removed script block from: OEBPS/e9780758265227_c06.html
	  Removed script block from: OEBPS/e9780758265227_c18.html
	  Removed script block from: OEBPS/e9780758265227_c04.html
	  Removed script block from: OEBPS/e9780758265227_c09.html
	  Removed script block from: OEBPS/e9780758265227_c21.html
	  Removed script block from: OEBPS/e9780758265227_c26.html
	  Removed script block from: OEBPS/e9780758265227_toc01.html
	  Removed script block from: OEBPS/e9780758265227_c25.html
	  Removed script block from: OEBPS/e9780758265227_c33.html
	  Removed script block from: OEBPS/e9780758265227_c03.html
	  Removed script block from: OEBPS/e9780758265227_c05.html
	  Removed script block from: OEBPS/e9780758265227_c15.html
	  Removed script block from: OEBPS/e9780758265227_c34.html
	  Removed script block from: OEBPS/e9780758265227_c17.html
	  Removed script block from: OEBPS/e9780758265227_c01.html
	  Removed script block from: OEBPS/e9780758265227_c08.html
	  Removed script block from: OEBPS/e9780758265227_c27.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c31.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c16.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c24.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_cov01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c02.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_bm01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c29.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_tp01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c14.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c32.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c10.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c20.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c07.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c22.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c30.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_fm01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c12.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c28.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c19.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c23.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c11.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c13.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c06.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c18.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c04.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c09.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c21.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c26.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_toc01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c25.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c33.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c03.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c05.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c15.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c34.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c17.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c08.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758265227_c27.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c31.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c16.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c24.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_cov01.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c02.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_bm01.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c29.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_tp01.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c14.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c32.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c10.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c20.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c07.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c22.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_cop01.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c30.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_fm01.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c12.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c28.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c19.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c23.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c11.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c13.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c06.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c18.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c04.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c09.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c21.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c26.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_toc01.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c25.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c33.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c03.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c05.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c15.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c34.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c17.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c01.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c08.html
	  Stripped Kobo spans in: OEBPS/e9780758265227_c27.html
ePub updated in 2.90 seconds

Logfile for book ID 82 (Hell's Knights / Bella Jewel)
82
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\82.epub
Parsing xml file: content.opf
Parsing xml file: toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: index_split_041.xhtml
	  Removed script block from: index_split_011.xhtml
	  Removed script block from: index_split_025.xhtml
	  Removed script block from: index_split_032.xhtml
	  Removed script block from: index_split_005.xhtml
	  Removed script block from: index_split_013.xhtml
	  Removed script block from: index_split_024.xhtml
	  Removed script block from: index_split_006.xhtml
	  Removed script block from: index_split_021.xhtml
	  Removed script block from: index_split_035.xhtml
	  Removed script block from: index_split_009.xhtml
	  Removed script block from: index_split_039.xhtml
	  Removed script block from: index_split_026.xhtml
	  Removed script block from: index_split_008.xhtml
	  Removed script block from: index_split_037.xhtml
	  Removed script block from: index_split_014.xhtml
	  Removed script block from: index_split_010.xhtml
	  Removed script block from: index_split_023.xhtml
	  Removed script block from: index_split_017.xhtml
	  Removed script block from: index_split_046.xhtml
	  Removed script block from: index_split_045.xhtml
	  Removed script block from: index_split_001.xhtml
	  Removed script block from: index_split_036.xhtml
	  Removed script block from: index_split_034.xhtml
	  Removed script block from: index_split_002.xhtml
	  Removed script block from: titlepage.xhtml
	  Removed script block from: index_split_016.xhtml
	  Removed script block from: index_split_000.xhtml
	  Removed script block from: index_split_015.xhtml
	  Removed script block from: index_split_040.xhtml
	  Removed script block from: index_split_022.xhtml
	  Removed script block from: index_split_018.xhtml
	  Removed script block from: index_split_020.xhtml
	  Removed script block from: index_split_044.xhtml
	  Removed script block from: index_split_033.xhtml
	  Removed script block from: index_split_030.xhtml
	  Removed script block from: index_split_047.xhtml
	  Removed script block from: index_split_031.xhtml
	  Removed script block from: index_split_042.xhtml
	  Removed script block from: index_split_028.xhtml
	  Removed script block from: index_split_007.xhtml
	  Removed script block from: index_split_003.xhtml
	  Removed script block from: index_split_027.xhtml
	  Removed script block from: index_split_038.xhtml
	  Removed script block from: index_split_004.xhtml
	  Removed script block from: index_split_019.xhtml
	  Removed script block from: index_split_043.xhtml
	  Removed script block from: index_split_012.xhtml
	  Removed script block from: index_split_029.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: index_split_025.xhtml
	  Stripped spans in: index_split_032.xhtml
	  Stripped spans in: index_split_005.xhtml
	  Stripped spans in: index_split_013.xhtml
	  Stripped spans in: index_split_024.xhtml
	  Stripped spans in: index_split_021.xhtml
	  Stripped spans in: index_split_037.xhtml
	  Stripped spans in: index_split_023.xhtml
	  Stripped spans in: index_split_045.xhtml
	  Stripped spans in: index_split_016.xhtml
	  Stripped spans in: index_split_015.xhtml
	  Stripped spans in: index_split_040.xhtml
	  Stripped spans in: index_split_018.xhtml
	  Stripped spans in: index_split_044.xhtml
	  Stripped spans in: index_split_033.xhtml
	  Stripped spans in: index_split_030.xhtml
	  Stripped spans in: index_split_028.xhtml
	  Stripped spans in: index_split_007.xhtml
	  Stripped spans in: index_split_027.xhtml
	Stripping Kobo remnants
	  Removed kobo.css file: css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: index_split_041.xhtml
	  Removed Kobo HEAD elements from: index_split_011.xhtml
	  Removed Kobo HEAD elements from: index_split_025.xhtml
	  Removed Kobo HEAD elements from: index_split_032.xhtml
	  Removed Kobo HEAD elements from: index_split_005.xhtml
	  Removed Kobo HEAD elements from: index_split_013.xhtml
	  Removed Kobo HEAD elements from: index_split_024.xhtml
	  Removed Kobo HEAD elements from: index_split_006.xhtml
	  Removed Kobo HEAD elements from: index_split_021.xhtml
	  Removed Kobo HEAD elements from: index_split_035.xhtml
	  Removed Kobo HEAD elements from: index_split_009.xhtml
	  Removed Kobo HEAD elements from: index_split_039.xhtml
	  Removed Kobo HEAD elements from: index_split_026.xhtml
	  Removed Kobo HEAD elements from: index_split_008.xhtml
	  Removed Kobo HEAD elements from: index_split_037.xhtml
	  Removed Kobo HEAD elements from: index_split_014.xhtml
	  Removed Kobo HEAD elements from: index_split_010.xhtml
	  Removed Kobo HEAD elements from: index_split_023.xhtml
	  Removed Kobo HEAD elements from: index_split_017.xhtml
	  Removed Kobo HEAD elements from: index_split_046.xhtml
	  Removed Kobo HEAD elements from: index_split_045.xhtml
	  Removed Kobo HEAD elements from: index_split_001.xhtml
	  Removed Kobo HEAD elements from: index_split_036.xhtml
	  Removed Kobo HEAD elements from: index_split_034.xhtml
	  Removed Kobo HEAD elements from: index_split_002.xhtml
	  Removed Kobo HEAD elements from: titlepage.xhtml
	  Removed Kobo HEAD elements from: index_split_016.xhtml
	  Removed Kobo HEAD elements from: index_split_000.xhtml
	  Removed Kobo HEAD elements from: index_split_015.xhtml
	  Removed Kobo HEAD elements from: index_split_040.xhtml
	  Removed Kobo HEAD elements from: index_split_022.xhtml
	  Removed Kobo HEAD elements from: index_split_018.xhtml
	  Removed Kobo HEAD elements from: index_split_020.xhtml
	  Removed Kobo HEAD elements from: index_split_044.xhtml
	  Removed Kobo HEAD elements from: index_split_033.xhtml
	  Removed Kobo HEAD elements from: index_split_030.xhtml
	  Removed Kobo HEAD elements from: index_split_047.xhtml
	  Removed Kobo HEAD elements from: index_split_031.xhtml
	  Removed Kobo HEAD elements from: index_split_042.xhtml
	  Removed Kobo HEAD elements from: index_split_028.xhtml
	  Removed Kobo HEAD elements from: index_split_007.xhtml
	  Removed Kobo HEAD elements from: index_split_003.xhtml
	  Removed Kobo HEAD elements from: index_split_027.xhtml
	  Removed Kobo HEAD elements from: index_split_038.xhtml
	  Removed Kobo HEAD elements from: index_split_004.xhtml
	  Removed Kobo HEAD elements from: index_split_019.xhtml
	  Removed Kobo HEAD elements from: index_split_043.xhtml
	  Removed Kobo HEAD elements from: index_split_012.xhtml
	  Removed Kobo HEAD elements from: index_split_029.xhtml
	  Stripped Kobo spans in: index_split_041.xhtml
	  Stripped Kobo spans in: index_split_011.xhtml
	  Stripped Kobo spans in: index_split_025.xhtml
	  Stripped Kobo spans in: index_split_032.xhtml
	  Stripped Kobo spans in: index_split_005.xhtml
	  Stripped Kobo spans in: index_split_013.xhtml
	  Stripped Kobo spans in: index_split_024.xhtml
	  Stripped Kobo spans in: index_split_006.xhtml
	  Stripped Kobo spans in: index_split_021.xhtml
	  Stripped Kobo spans in: index_split_035.xhtml
	  Stripped Kobo spans in: index_split_009.xhtml
	  Stripped Kobo spans in: index_split_039.xhtml
	  Stripped Kobo spans in: index_split_026.xhtml
	  Stripped Kobo spans in: index_split_008.xhtml
	  Stripped Kobo spans in: index_split_037.xhtml
	  Stripped Kobo spans in: index_split_014.xhtml
	  Stripped Kobo spans in: index_split_010.xhtml
	  Stripped Kobo spans in: index_split_023.xhtml
	  Stripped Kobo spans in: index_split_017.xhtml
	  Stripped Kobo spans in: index_split_046.xhtml
	  Stripped Kobo spans in: index_split_045.xhtml
	  Stripped Kobo spans in: index_split_001.xhtml
	  Stripped Kobo spans in: index_split_036.xhtml
	  Stripped Kobo spans in: index_split_034.xhtml
	  Stripped Kobo spans in: index_split_002.xhtml
	  Stripped Kobo spans in: titlepage.xhtml
	  Stripped Kobo spans in: index_split_016.xhtml
	  Stripped Kobo spans in: index_split_000.xhtml
	  Stripped Kobo spans in: index_split_015.xhtml
	  Stripped Kobo spans in: index_split_040.xhtml
	  Stripped Kobo spans in: index_split_022.xhtml
	  Stripped Kobo spans in: index_split_018.xhtml
	  Stripped Kobo spans in: index_split_020.xhtml
	  Stripped Kobo spans in: index_split_044.xhtml
	  Stripped Kobo spans in: index_split_033.xhtml
	  Stripped Kobo spans in: index_split_030.xhtml
	  Stripped Kobo spans in: index_split_047.xhtml
	  Stripped Kobo spans in: index_split_031.xhtml
	  Stripped Kobo spans in: index_split_042.xhtml
	  Stripped Kobo spans in: index_split_028.xhtml
	  Stripped Kobo spans in: index_split_007.xhtml
	  Stripped Kobo spans in: index_split_003.xhtml
	  Stripped Kobo spans in: index_split_027.xhtml
	  Stripped Kobo spans in: index_split_038.xhtml
	  Stripped Kobo spans in: index_split_004.xhtml
	  Stripped Kobo spans in: index_split_019.xhtml
	  Stripped Kobo spans in: index_split_043.xhtml
	  Stripped Kobo spans in: index_split_012.xhtml
	  Stripped Kobo spans in: index_split_029.xhtml
ePub updated in 2.10 seconds

Logfile for book ID 79 (Wolf Whisperer / Karen Whiddon)
79
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\79.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/Chapter Six.xhtml
	  Removed script block from: OEBPS/Contents.xhtml
	  Removed script block from: OEBPS/Chapter Seven.xhtml
	  Removed script block from: OEBPS/Chapter Eight.xhtml
	  Removed script block from: OEBPS/Dear Reader.xhtml
	  Removed script block from: OEBPS/Title Page.xhtml
	  Removed script block from: OEBPS/Cover.xhtml
	  Removed script block from: OEBPS/Introduction.xhtml
	  Removed script block from: OEBPS/Chapter One.xhtml
	  Removed script block from: OEBPS/Chapter Ten.xhtml
	  Removed script block from: OEBPS/About the Author.xhtml
	  Removed script block from: OEBPS/Chapter Two.xhtml
	  Removed script block from: OEBPS/Chapter Four.xhtml
	  Removed script block from: OEBPS/Back Cover Text.xhtml
	  Removed script block from: OEBPS/Chapter Five.xhtml
	  Removed script block from: OEBPS/Chapter Sixteen.xhtml
	  Removed script block from: OEBPS/Chapter Fifteen.xhtml
	  Removed script block from: OEBPS/Chapter Eleven.xhtml
	  Removed script block from: OEBPS/Chapter Fourteen.xhtml
	  Removed script block from: OEBPS/Acknowledgments.xhtml
	  Removed script block from: OEBPS/Chapter Twelve.xhtml
	  Removed script block from: OEBPS/Chapter Three.xhtml
	  Removed script block from: OEBPS/Chapter Nine.xhtml
	  Removed script block from: OEBPS/Chapter Thirteen.xhtml
	  Removed script block from: OEBPS/Copyright.xhtml
	  Removed script block from: OEBPS/Epilogue.xhtml
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/Chapter Six.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Contents.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter Seven.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter Eight.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Dear Reader.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Title Page.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Cover.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Introduction.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter One.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter Ten.xhtml
	  Removed Kobo HEAD elements from: OEBPS/About the Author.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter Two.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter Four.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Back Cover Text.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter Five.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter Sixteen.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter Fifteen.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter Eleven.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter Fourteen.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Acknowledgments.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter Twelve.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter Three.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter Nine.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter Thirteen.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Copyright.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Epilogue.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter Six.xhtml
	  Stripped Kobo spans in: OEBPS/Contents.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter Seven.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter Eight.xhtml
	  Stripped Kobo spans in: OEBPS/Dear Reader.xhtml
	  Stripped Kobo spans in: OEBPS/Title Page.xhtml
	  Stripped Kobo spans in: OEBPS/Cover.xhtml
	  Stripped Kobo spans in: OEBPS/Introduction.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter One.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter Ten.xhtml
	  Stripped Kobo spans in: OEBPS/About the Author.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter Two.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter Four.xhtml
	  Stripped Kobo spans in: OEBPS/Back Cover Text.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter Five.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter Sixteen.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter Fifteen.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter Eleven.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter Fourteen.xhtml
	  Stripped Kobo spans in: OEBPS/Acknowledgments.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter Twelve.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter Three.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter Nine.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter Thirteen.xhtml
	  Stripped Kobo spans in: OEBPS/Copyright.xhtml
	  Stripped Kobo spans in: OEBPS/Epilogue.xhtml
ePub updated in 1.97 seconds

Logfile for book ID 78 (Harmony's Way / Leigh, Lora)
78
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\78.epub
Parsing xml file: OEBPS/leig_9780425213056_oeb_opf_r1.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
Forcing OEBPS/leig_9780425213056_oeb_c15_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c15_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c17_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c17_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c01_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c01_r1.html
Forcing OEBPS/leig_9780425213056_oeb_toc_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_toc_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c14_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c14_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c09_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c09_r1.html
Forcing OEBPS/leig_9780425213056_oeb_cop_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_cop_r1.html
Forcing OEBPS/leig_9780425213056_oeb_fm1_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_fm1_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c06_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c06_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c12_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c12_r1.html
Forcing OEBPS/leig_9780425213056_oeb_tp_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_tp_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c23_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c23_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c07_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c07_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c18_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c18_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c04_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c04_r1.html
Forcing OEBPS/leig_9780425213056_oeb_fm2_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_fm2_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c24_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c24_r1.html
Forcing OEBPS/leig_9780425213056_oeb_fm3_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_fm3_r1.html
Forcing OEBPS/leig_9780425213056_oeb_ata_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_ata_r1.html
Forcing OEBPS/leig_9780425213056_oeb_bm2_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_bm2_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c25_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c25_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c02_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c02_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c21_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c21_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c16_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c16_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c03_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c03_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c08_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c08_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c11_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c11_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c05_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c05_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c22_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c22_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c20_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c20_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c19_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c19_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c10_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c10_r1.html
Forcing OEBPS/leig_9780425213056_oeb_c13_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_c13_r1.html
Forcing OEBPS/leig_9780425213056_oeb_cover_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_cover_r1.html
Forcing OEBPS/leig_9780425213056_oeb_bm1_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425213056_oeb_bm1_r1.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c15_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c17_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c01_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_toc_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c14_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c09_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_cop_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_fm1_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c06_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c12_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_tp_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c23_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c07_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c18_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c04_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_fm2_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c24_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_fm3_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_ata_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_bm2_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c25_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c02_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c21_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c16_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c03_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c08_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c11_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c05_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c22_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c20_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c19_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c10_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_c13_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_cover_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425213056_oeb_bm1_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c15_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c17_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c01_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c14_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c09_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_cop_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_fm1_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c06_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c12_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_tp_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c23_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c07_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c18_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c04_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_fm2_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c24_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_fm3_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_ata_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_bm2_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c25_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c02_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c21_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c16_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c03_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c08_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c11_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c05_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c22_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c20_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c19_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c10_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_c13_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_cover_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425213056_oeb_bm1_r1.html
ePub updated in 1.70 seconds

Logfile for book ID 77 (Wolf Quest: Brotherhood of Blood, Book 7 / Bianca D'Arc)
77
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\77.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section18.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section20.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section19.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section21.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section18.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section20.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section19.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section21.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section18.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section20.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section19.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section21.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 1.50 seconds

Logfile for book ID 76 (Hammer It Home: Powertools, Book 6 / Jayne Rylon)
76
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\76.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 1.24 seconds

Logfile for book ID 75 (With or Without God / Gretta Vosper)
75
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\75.epub
Parsing xml file: OPS/content.opf
Parsing xml file: OPS/Toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OPS/004-toc.html
	  Removed script block from: OPS/022-footnote4.html
	  Removed script block from: OPS/016-acknowledgements.html
	  Removed script block from: OPS/028-footnote10.html
	  Removed script block from: OPS/018-aboutthepublisher.html
	  Removed script block from: OPS/014-notes.html
	  Removed script block from: OPS/002-titlepage.html
	  Removed script block from: OPS/027-footnote9.html
	  Removed script block from: OPS/006-chapter1.html
	  Removed script block from: OPS/003-dedication.html
	  Removed script block from: OPS/024-footnote6.html
	  Removed script block from: OPS/007-chapter2.html
	  Removed script block from: OPS/033-footnote15.html
	  Removed script block from: OPS/009-chapter4.html
	  Removed script block from: OPS/011-chapter6.html
	  Removed script block from: OPS/030-footnote12.html
	  Removed script block from: OPS/021-footnote3.html
	  Removed script block from: OPS/015-index.html
	  Removed script block from: OPS/031-footnote13.html
	  Removed script block from: OPS/023-footnote5.html
	  Removed script block from: OPS/034-footnote16.html
	  Removed script block from: OPS/038-footnote20.html
	  Removed script block from: OPS/008-chapter3.html
	  Removed script block from: OPS/019-footnote1.html
	  Removed script block from: OPS/036-footnote18.html
	  Removed script block from: OPS/005-foreword.html
	  Removed script block from: OPS/035-footnote17.html
	  Removed script block from: OPS/001-coverpage.html
	  Removed script block from: OPS/013-appendix.html
	  Removed script block from: OPS/032-footnote14.html
	  Removed script block from: OPS/025-footnote7.html
	  Removed script block from: OPS/039-footnote21.html
	  Removed script block from: OPS/042-footnote24.html
	  Removed script block from: OPS/026-footnote8.html
	  Removed script block from: OPS/040-footnote22.html
	  Removed script block from: OPS/037-footnote19.html
	  Removed script block from: OPS/029-footnote11.html
	  Removed script block from: OPS/041-footnote23.html
	  Removed script block from: OPS/020-footnote2.html
	  Removed script block from: OPS/017-copyright.html
	  Removed script block from: OPS/010-chapter5.html
	  Removed script block from: OPS/012-chapter7.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OPS/004-toc.html
	  Removed Kobo HEAD elements from: OPS/022-footnote4.html
	  Removed Kobo HEAD elements from: OPS/016-acknowledgements.html
	  Removed Kobo HEAD elements from: OPS/028-footnote10.html
	  Removed Kobo HEAD elements from: OPS/018-aboutthepublisher.html
	  Removed Kobo HEAD elements from: OPS/014-notes.html
	  Removed Kobo HEAD elements from: OPS/002-titlepage.html
	  Removed Kobo HEAD elements from: OPS/027-footnote9.html
	  Removed Kobo HEAD elements from: OPS/006-chapter1.html
	  Removed Kobo HEAD elements from: OPS/003-dedication.html
	  Removed Kobo HEAD elements from: OPS/024-footnote6.html
	  Removed Kobo HEAD elements from: OPS/007-chapter2.html
	  Removed Kobo HEAD elements from: OPS/033-footnote15.html
	  Removed Kobo HEAD elements from: OPS/009-chapter4.html
	  Removed Kobo HEAD elements from: OPS/011-chapter6.html
	  Removed Kobo HEAD elements from: OPS/030-footnote12.html
	  Removed Kobo HEAD elements from: OPS/021-footnote3.html
	  Removed Kobo HEAD elements from: OPS/015-index.html
	  Removed Kobo HEAD elements from: OPS/031-footnote13.html
	  Removed Kobo HEAD elements from: OPS/023-footnote5.html
	  Removed Kobo HEAD elements from: OPS/034-footnote16.html
	  Removed Kobo HEAD elements from: OPS/038-footnote20.html
	  Removed Kobo HEAD elements from: OPS/008-chapter3.html
	  Removed Kobo HEAD elements from: OPS/019-footnote1.html
	  Removed Kobo HEAD elements from: OPS/036-footnote18.html
	  Removed Kobo HEAD elements from: OPS/005-foreword.html
	  Removed Kobo HEAD elements from: OPS/035-footnote17.html
	  Removed Kobo HEAD elements from: OPS/001-coverpage.html
	  Removed Kobo HEAD elements from: OPS/013-appendix.html
	  Removed Kobo HEAD elements from: OPS/032-footnote14.html
	  Removed Kobo HEAD elements from: OPS/025-footnote7.html
	  Removed Kobo HEAD elements from: OPS/039-footnote21.html
	  Removed Kobo HEAD elements from: OPS/042-footnote24.html
	  Removed Kobo HEAD elements from: OPS/026-footnote8.html
	  Removed Kobo HEAD elements from: OPS/040-footnote22.html
	  Removed Kobo HEAD elements from: OPS/037-footnote19.html
	  Removed Kobo HEAD elements from: OPS/029-footnote11.html
	  Removed Kobo HEAD elements from: OPS/041-footnote23.html
	  Removed Kobo HEAD elements from: OPS/020-footnote2.html
	  Removed Kobo HEAD elements from: OPS/017-copyright.html
	  Removed Kobo HEAD elements from: OPS/010-chapter5.html
	  Removed Kobo HEAD elements from: OPS/012-chapter7.html
	  Stripped Kobo spans in: OPS/004-toc.html
	  Stripped Kobo spans in: OPS/022-footnote4.html
	  Stripped Kobo spans in: OPS/016-acknowledgements.html
	  Stripped Kobo spans in: OPS/028-footnote10.html
	  Stripped Kobo spans in: OPS/018-aboutthepublisher.html
	  Stripped Kobo spans in: OPS/014-notes.html
	  Stripped Kobo spans in: OPS/002-titlepage.html
	  Stripped Kobo spans in: OPS/027-footnote9.html
	  Stripped Kobo spans in: OPS/006-chapter1.html
	  Stripped Kobo spans in: OPS/003-dedication.html
	  Stripped Kobo spans in: OPS/024-footnote6.html
	  Stripped Kobo spans in: OPS/007-chapter2.html
	  Stripped Kobo spans in: OPS/033-footnote15.html
	  Stripped Kobo spans in: OPS/009-chapter4.html
	  Stripped Kobo spans in: OPS/011-chapter6.html
	  Stripped Kobo spans in: OPS/030-footnote12.html
	  Stripped Kobo spans in: OPS/021-footnote3.html
	  Stripped Kobo spans in: OPS/015-index.html
	  Stripped Kobo spans in: OPS/031-footnote13.html
	  Stripped Kobo spans in: OPS/023-footnote5.html
	  Stripped Kobo spans in: OPS/034-footnote16.html
	  Stripped Kobo spans in: OPS/038-footnote20.html
	  Stripped Kobo spans in: OPS/008-chapter3.html
	  Stripped Kobo spans in: OPS/019-footnote1.html
	  Stripped Kobo spans in: OPS/036-footnote18.html
	  Stripped Kobo spans in: OPS/005-foreword.html
	  Stripped Kobo spans in: OPS/035-footnote17.html
	  Stripped Kobo spans in: OPS/001-coverpage.html
	  Stripped Kobo spans in: OPS/013-appendix.html
	  Stripped Kobo spans in: OPS/032-footnote14.html
	  Stripped Kobo spans in: OPS/025-footnote7.html
	  Stripped Kobo spans in: OPS/039-footnote21.html
	  Stripped Kobo spans in: OPS/042-footnote24.html
	  Stripped Kobo spans in: OPS/026-footnote8.html
	  Stripped Kobo spans in: OPS/040-footnote22.html
	  Stripped Kobo spans in: OPS/037-footnote19.html
	  Stripped Kobo spans in: OPS/029-footnote11.html
	  Stripped Kobo spans in: OPS/041-footnote23.html
	  Stripped Kobo spans in: OPS/020-footnote2.html
	  Stripped Kobo spans in: OPS/017-copyright.html
	  Stripped Kobo spans in: OPS/010-chapter5.html
	  Stripped Kobo spans in: OPS/012-chapter7.html
ePub updated in 1.98 seconds

Logfile for book ID 74 (Go Fetch: Magnus Pack, Book 1 / Shelly Laurenston)
74
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\74.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/section27.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section23.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section26.html
	  Removed script block from: OEBPS/section28.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section25.html
	  Removed script block from: OEBPS/section29.html
	  Removed script block from: OEBPS/section18.html
	  Removed script block from: OEBPS/section22.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section20.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section24.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section32.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section19.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section21.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section30.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section31.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/section27.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section23.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section26.html
	  Removed Kobo HEAD elements from: OEBPS/section28.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section25.html
	  Removed Kobo HEAD elements from: OEBPS/section29.html
	  Removed Kobo HEAD elements from: OEBPS/section18.html
	  Removed Kobo HEAD elements from: OEBPS/section22.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section20.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section24.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section32.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section19.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section21.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section30.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section31.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section27.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section23.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section26.html
	  Stripped Kobo spans in: OEBPS/section28.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section25.html
	  Stripped Kobo spans in: OEBPS/section29.html
	  Stripped Kobo spans in: OEBPS/section18.html
	  Stripped Kobo spans in: OEBPS/section22.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section20.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section24.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section32.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section19.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section21.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section30.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section31.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 2.06 seconds

Logfile for book ID 72 (One Lucky Vampire / Lynsay Sands)
72
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\72.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/About_the_Publisher.xhtml
	  Removed script block from: OEBPS/Contents.xhtml
	  Removed script block from: OEBPS/Chapter_15.xhtml
	  Removed script block from: OEBPS/Cover.xhtml
	  Removed script block from: OEBPS/Chapter_13.xhtml
	  Removed script block from: OEBPS/Chapter_12.xhtml
	  Removed script block from: OEBPS/Chapter_17.xhtml
	  Removed script block from: OEBPS/Chapter_6.xhtml
	  Removed script block from: OEBPS/Teaser_Chapter.xhtml
	  Removed script block from: OEBPS/Chapter_8.xhtml
	  Removed script block from: OEBPS/About_the_Author.xhtml
	  Removed script block from: OEBPS/Chapter_16.xhtml
	  Removed script block from: OEBPS/Chapter_14.xhtml
	  Removed script block from: OEBPS/Also_by_the_Author.xhtml
	  Removed script block from: OEBPS/Chapter_9.xhtml
	  Removed script block from: OEBPS/Chapter_10.xhtml
	  Removed script block from: OEBPS/Chapter_5.xhtml
	  Removed script block from: OEBPS/Chapter_1.xhtml
	  Removed script block from: OEBPS/Chapter_11.xhtml
	  Removed script block from: OEBPS/Teaser_Opener.xhtml
	  Removed script block from: OEBPS/Chapter_3.xhtml
	  Removed script block from: OEBPS/BoB_Ads.xhtml
	  Removed script block from: OEBPS/Title_Page.xhtml
	  Removed script block from: OEBPS/Chapter_7.xhtml
	  Removed script block from: OEBPS/Copyright.xhtml
	  Removed script block from: OEBPS/Chapter_2.xhtml
	  Removed script block from: OEBPS/Chapter_4.xhtml
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/About_the_Publisher.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Contents.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_15.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Cover.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_13.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_12.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_17.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Teaser_Chapter.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_8.xhtml
	  Removed Kobo HEAD elements from: OEBPS/About_the_Author.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_16.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_14.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Also_by_the_Author.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_9.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_10.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_11.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Teaser_Opener.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/BoB_Ads.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Title_Page.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_7.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Copyright.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_4.xhtml
	  Stripped Kobo spans in: OEBPS/About_the_Publisher.xhtml
	  Stripped Kobo spans in: OEBPS/Contents.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_15.xhtml
	  Stripped Kobo spans in: OEBPS/Cover.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_13.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_12.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_17.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_6.xhtml
	  Stripped Kobo spans in: OEBPS/Teaser_Chapter.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_8.xhtml
	  Stripped Kobo spans in: OEBPS/About_the_Author.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_16.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_14.xhtml
	  Stripped Kobo spans in: OEBPS/Also_by_the_Author.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_9.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_10.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_5.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_1.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_11.xhtml
	  Stripped Kobo spans in: OEBPS/Teaser_Opener.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_3.xhtml
	  Stripped Kobo spans in: OEBPS/BoB_Ads.xhtml
	  Stripped Kobo spans in: OEBPS/Title_Page.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_7.xhtml
	  Stripped Kobo spans in: OEBPS/Copyright.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_2.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_4.xhtml
ePub updated in 1.71 seconds

Logfile for book ID 73 (Gabriel's Mate / Tina Folsom)
73
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\73.epub
Parsing xml file: OPS/content.opf
Parsing xml file: OPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OPS/section-0018.html
	  Removed script block from: OPS/section-0035.html
	  Removed script block from: OPS/section-0041.html
	  Removed script block from: OPS/section-0007.html
	  Removed script block from: OPS/section-0032.html
	  Removed script block from: OPS/section-0001.html
	  Removed script block from: OPS/section-0037.html
	  Removed script block from: OPS/section-0014.html
	  Removed script block from: OPS/CoverPage.html
	  Removed script block from: OPS/section-0040.html
	  Removed script block from: OPS/section-0005.html
	  Removed script block from: OPS/section-0004.html
	  Removed script block from: OPS/section-0034.html
	  Removed script block from: OPS/section-0020.html
	  Removed script block from: OPS/section-0006.html
	  Removed script block from: OPS/section-0022.html
	  Removed script block from: OPS/section-0028.html
	  Removed script block from: OPS/section-0025.html
	  Removed script block from: OPS/section-0019.html
	  Removed script block from: OPS/section-0036.html
	  Removed script block from: OPS/section-0015.html
	  Removed script block from: OPS/section-0029.html
	  Removed script block from: OPS/section-0017.html
	  Removed script block from: OPS/section-0026.html
	  Removed script block from: OPS/section-0021.html
	  Removed script block from: OPS/section-0010.html
	  Removed script block from: OPS/section-0016.html
	  Removed script block from: OPS/section-0024.html
	  Removed script block from: OPS/section-0003.html
	  Removed script block from: OPS/section-0030.html
	  Removed script block from: OPS/section-0012.html
	  Removed script block from: OPS/section-0013.html
	  Removed script block from: OPS/section-0023.html
	  Removed script block from: OPS/section-0027.html
	  Removed script block from: OPS/section-0033.html
	  Removed script block from: OPS/section-0009.html
	  Removed script block from: OPS/section-0011.html
	  Removed script block from: OPS/section-0031.html
	  Removed script block from: OPS/section-0039.html
	  Removed script block from: OPS/TableOfContents.html
	  Removed script block from: OPS/section-0008.html
	  Removed script block from: OPS/section-0002.html
	  Removed script block from: OPS/section-0038.html
	Looking for .js files to remove
	  Found .js file to remove: OPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OPS/section-0018.html
	  Stripped spans in: OPS/section-0035.html
	  Stripped spans in: OPS/section-0041.html
	  Stripped spans in: OPS/section-0007.html
	  Stripped spans in: OPS/section-0032.html
	  Stripped spans in: OPS/section-0001.html
	  Stripped spans in: OPS/section-0037.html
	  Stripped spans in: OPS/section-0014.html
	  Stripped spans in: OPS/section-0040.html
	  Stripped spans in: OPS/section-0005.html
	  Stripped spans in: OPS/section-0004.html
	  Stripped spans in: OPS/section-0034.html
	  Stripped spans in: OPS/section-0020.html
	  Stripped spans in: OPS/section-0006.html
	  Stripped spans in: OPS/section-0022.html
	  Stripped spans in: OPS/section-0028.html
	  Stripped spans in: OPS/section-0025.html
	  Stripped spans in: OPS/section-0019.html
	  Stripped spans in: OPS/section-0036.html
	  Stripped spans in: OPS/section-0015.html
	  Stripped spans in: OPS/section-0029.html
	  Stripped spans in: OPS/section-0017.html
	  Stripped spans in: OPS/section-0026.html
	  Stripped spans in: OPS/section-0021.html
	  Stripped spans in: OPS/section-0010.html
	  Stripped spans in: OPS/section-0016.html
	  Stripped spans in: OPS/section-0024.html
	  Stripped spans in: OPS/section-0003.html
	  Stripped spans in: OPS/section-0030.html
	  Stripped spans in: OPS/section-0012.html
	  Stripped spans in: OPS/section-0013.html
	  Stripped spans in: OPS/section-0023.html
	  Stripped spans in: OPS/section-0027.html
	  Stripped spans in: OPS/section-0033.html
	  Stripped spans in: OPS/section-0009.html
	  Stripped spans in: OPS/section-0011.html
	  Stripped spans in: OPS/section-0031.html
	  Stripped spans in: OPS/section-0039.html
	  Stripped spans in: OPS/section-0008.html
	  Stripped spans in: OPS/section-0002.html
	  Stripped spans in: OPS/section-0038.html
	Stripping Kobo remnants
	  Removed kobo.css file: OPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OPS/section-0018.html
	  Removed Kobo HEAD elements from: OPS/section-0035.html
	  Removed Kobo HEAD elements from: OPS/section-0041.html
	  Removed Kobo HEAD elements from: OPS/section-0007.html
	  Removed Kobo HEAD elements from: OPS/section-0032.html
	  Removed Kobo HEAD elements from: OPS/section-0001.html
	  Removed Kobo HEAD elements from: OPS/section-0037.html
	  Removed Kobo HEAD elements from: OPS/section-0014.html
	  Removed Kobo HEAD elements from: OPS/CoverPage.html
	  Removed Kobo HEAD elements from: OPS/section-0040.html
	  Removed Kobo HEAD elements from: OPS/section-0005.html
	  Removed Kobo HEAD elements from: OPS/section-0004.html
	  Removed Kobo HEAD elements from: OPS/section-0034.html
	  Removed Kobo HEAD elements from: OPS/section-0020.html
	  Removed Kobo HEAD elements from: OPS/section-0006.html
	  Removed Kobo HEAD elements from: OPS/section-0022.html
	  Removed Kobo HEAD elements from: OPS/section-0028.html
	  Removed Kobo HEAD elements from: OPS/section-0025.html
	  Removed Kobo HEAD elements from: OPS/section-0019.html
	  Removed Kobo HEAD elements from: OPS/section-0036.html
	  Removed Kobo HEAD elements from: OPS/section-0015.html
	  Removed Kobo HEAD elements from: OPS/section-0029.html
	  Removed Kobo HEAD elements from: OPS/section-0017.html
	  Removed Kobo HEAD elements from: OPS/section-0026.html
	  Removed Kobo HEAD elements from: OPS/section-0021.html
	  Removed Kobo HEAD elements from: OPS/section-0010.html
	  Removed Kobo HEAD elements from: OPS/section-0016.html
	  Removed Kobo HEAD elements from: OPS/section-0024.html
	  Removed Kobo HEAD elements from: OPS/section-0003.html
	  Removed Kobo HEAD elements from: OPS/section-0030.html
	  Removed Kobo HEAD elements from: OPS/section-0012.html
	  Removed Kobo HEAD elements from: OPS/section-0013.html
	  Removed Kobo HEAD elements from: OPS/section-0023.html
	  Removed Kobo HEAD elements from: OPS/section-0027.html
	  Removed Kobo HEAD elements from: OPS/section-0033.html
	  Removed Kobo HEAD elements from: OPS/section-0009.html
	  Removed Kobo HEAD elements from: OPS/section-0011.html
	  Removed Kobo HEAD elements from: OPS/section-0031.html
	  Removed Kobo HEAD elements from: OPS/section-0039.html
	  Removed Kobo HEAD elements from: OPS/TableOfContents.html
	  Removed Kobo HEAD elements from: OPS/section-0008.html
	  Removed Kobo HEAD elements from: OPS/section-0002.html
	  Removed Kobo HEAD elements from: OPS/section-0038.html
	  Stripped Kobo spans in: OPS/section-0018.html
	  Stripped Kobo spans in: OPS/section-0035.html
	  Stripped Kobo spans in: OPS/section-0041.html
	  Stripped Kobo spans in: OPS/section-0007.html
	  Stripped Kobo spans in: OPS/section-0032.html
	  Stripped Kobo spans in: OPS/section-0001.html
	  Stripped Kobo spans in: OPS/section-0037.html
	  Stripped Kobo spans in: OPS/section-0014.html
	  Stripped Kobo spans in: OPS/CoverPage.html
	  Stripped Kobo spans in: OPS/section-0040.html
	  Stripped Kobo spans in: OPS/section-0005.html
	  Stripped Kobo spans in: OPS/section-0004.html
	  Stripped Kobo spans in: OPS/section-0034.html
	  Stripped Kobo spans in: OPS/section-0020.html
	  Stripped Kobo spans in: OPS/section-0006.html
	  Stripped Kobo spans in: OPS/section-0022.html
	  Stripped Kobo spans in: OPS/section-0028.html
	  Stripped Kobo spans in: OPS/section-0025.html
	  Stripped Kobo spans in: OPS/section-0019.html
	  Stripped Kobo spans in: OPS/section-0036.html
	  Stripped Kobo spans in: OPS/section-0015.html
	  Stripped Kobo spans in: OPS/section-0029.html
	  Stripped Kobo spans in: OPS/section-0017.html
	  Stripped Kobo spans in: OPS/section-0026.html
	  Stripped Kobo spans in: OPS/section-0021.html
	  Stripped Kobo spans in: OPS/section-0010.html
	  Stripped Kobo spans in: OPS/section-0016.html
	  Stripped Kobo spans in: OPS/section-0024.html
	  Stripped Kobo spans in: OPS/section-0003.html
	  Stripped Kobo spans in: OPS/section-0030.html
	  Stripped Kobo spans in: OPS/section-0012.html
	  Stripped Kobo spans in: OPS/section-0013.html
	  Stripped Kobo spans in: OPS/section-0023.html
	  Stripped Kobo spans in: OPS/section-0027.html
	  Stripped Kobo spans in: OPS/section-0033.html
	  Stripped Kobo spans in: OPS/section-0009.html
	  Stripped Kobo spans in: OPS/section-0011.html
	  Stripped Kobo spans in: OPS/section-0031.html
	  Stripped Kobo spans in: OPS/section-0039.html
	  Stripped Kobo spans in: OPS/TableOfContents.html
	  Stripped Kobo spans in: OPS/section-0008.html
	  Stripped Kobo spans in: OPS/section-0002.html
	  Stripped Kobo spans in: OPS/section-0038.html
ePub updated in 2.26 seconds

Logfile for book ID 70 (On the Prowl / Christine Warren)
70
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\70.epub
Parsing xml file: OEBPS/package.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/xhtml/chapter1.html
	  Removed script block from: OEBPS/xhtml/copyright.html
	  Removed script block from: OEBPS/xhtml/praise.html
	  Removed script block from: OEBPS/xhtml/dedication.html
	  Removed script block from: OEBPS/xhtml/contents.html
	  Removed script block from: OEBPS/xhtml/chapter7.html
	  Removed script block from: OEBPS/xhtml/chapter10.html
	  Removed script block from: OEBPS/xhtml/chapter6.html
	  Removed script block from: OEBPS/xhtml/chapter3.html
	  Removed script block from: OEBPS/xhtml/chapter9.html
	  Removed script block from: OEBPS/xhtml/chapter5.html
	  Removed script block from: OEBPS/xhtml/adcard.html
	  Removed script block from: OEBPS/xhtml/epilogue.html
	  Removed script block from: OEBPS/xhtml/atauthor.html
	  Removed script block from: OEBPS/xhtml/chapter11.html
	  Removed script block from: OEBPS/xhtml/chapter2.html
	  Removed script block from: OEBPS/xhtml/teaser.html
	  Removed script block from: OEBPS/xhtml/chapter8.html
	  Removed script block from: OEBPS/xhtml/title.html
	  Removed script block from: OEBPS/xhtml/chapter4.html
	  Removed script block from: OEBPS/xhtml/cover.xml
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/xhtml/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/xhtml/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter1.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/copyright.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/praise.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/dedication.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/contents.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter7.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter10.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter6.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter3.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter9.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter5.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/adcard.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/epilogue.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/atauthor.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter11.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter2.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/teaser.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter8.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/title.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter4.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/cover.xml
	  Stripped Kobo spans in: OEBPS/xhtml/chapter1.html
	  Stripped Kobo spans in: OEBPS/xhtml/copyright.html
	  Stripped Kobo spans in: OEBPS/xhtml/praise.html
	  Stripped Kobo spans in: OEBPS/xhtml/dedication.html
	  Stripped Kobo spans in: OEBPS/xhtml/contents.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter7.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter10.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter6.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter3.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter9.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter5.html
	  Stripped Kobo spans in: OEBPS/xhtml/adcard.html
	  Stripped Kobo spans in: OEBPS/xhtml/epilogue.html
	  Stripped Kobo spans in: OEBPS/xhtml/atauthor.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter11.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter2.html
	  Stripped Kobo spans in: OEBPS/xhtml/teaser.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter8.html
	  Stripped Kobo spans in: OEBPS/xhtml/title.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter4.html
	  Stripped Kobo spans in: OEBPS/xhtml/cover.xml
ePub updated in 1.48 seconds

Logfile for book ID 69 (WickedProposal / Tierney OMalley)
69
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\69.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part7.xhtml
	  Removed script block from: OEBPS/part5.xhtml
	  Removed script block from: OEBPS/part8.xhtml
	  Removed script block from: OEBPS/part6.xhtml
	  Removed script block from: OEBPS/part3.xhtml
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part4.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/part9.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part7.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part8.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part4.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part9.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part7.xhtml
	  Stripped Kobo spans in: OEBPS/part5.xhtml
	  Stripped Kobo spans in: OEBPS/part8.xhtml
	  Stripped Kobo spans in: OEBPS/part6.xhtml
	  Stripped Kobo spans in: OEBPS/part3.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part4.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/part9.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 0.79 seconds

Logfile for book ID 67 (Wicked Beat / Olivia Cunning)
67
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\67.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/WickedBeat-29.xhtml
	  Removed script block from: OEBPS/WickedBeat-34.xhtml
	  Removed script block from: OEBPS/WickedBeat-31.xhtml
	  Removed script block from: OEBPS/WickedBeat-19.xhtml
	  Removed script block from: OEBPS/WickedBeat-44.xhtml
	  Removed script block from: OEBPS/WickedBeat-41.xhtml
	  Removed script block from: OEBPS/WickedBeat-28.xhtml
	  Removed script block from: OEBPS/WickedBeat-10.xhtml
	  Removed script block from: OEBPS/WickedBeat-45.xhtml
	  Removed script block from: OEBPS/WickedBeat-9.xhtml
	  Removed script block from: OEBPS/WickedBeat-4.xhtml
	  Removed script block from: OEBPS/WickedBeat-25.xhtml
	  Removed script block from: OEBPS/WickedBeat-1.xhtml
	  Removed script block from: OEBPS/WickedBeat-11.xhtml
	  Removed script block from: OEBPS/WickedBeat-21.xhtml
	  Removed script block from: OEBPS/WickedBeat-24.xhtml
	  Removed script block from: OEBPS/WickedBeat-13.xhtml
	  Removed script block from: OEBPS/WickedBeat-42.xhtml
	  Removed script block from: OEBPS/WickedBeat-39.xhtml
	  Removed script block from: OEBPS/WickedBeat-38.xhtml
	  Removed script block from: OEBPS/WickedBeat-20.xhtml
	  Removed script block from: OEBPS/WickedBeat-43.xhtml
	  Removed script block from: OEBPS/WickedBeat-35.xhtml
	  Removed script block from: OEBPS/WickedBeat-7.xhtml
	  Removed script block from: OEBPS/WickedBeat-30.xhtml
	  Removed script block from: OEBPS/WickedBeat-27.xhtml
	  Removed script block from: OEBPS/WickedBeat-22.xhtml
	  Removed script block from: OEBPS/WickedBeat-12.xhtml
	  Removed script block from: OEBPS/WickedBeat-3.xhtml
	  Removed script block from: OEBPS/WickedBeat-16.xhtml
	  Removed script block from: OEBPS/WickedBeat-5.xhtml
	  Removed script block from: OEBPS/WickedBeat.xhtml
	  Removed script block from: OEBPS/WickedBeat-6.xhtml
	  Removed script block from: OEBPS/WickedBeat-15.xhtml
	  Removed script block from: OEBPS/WickedBeat-40.xhtml
	  Removed script block from: OEBPS/WickedBeat-2.xhtml
	  Removed script block from: OEBPS/WickedBeat-36.xhtml
	  Removed script block from: OEBPS/WickedBeat-17.xhtml
	  Removed script block from: OEBPS/WickedBeat-14.xhtml
	  Removed script block from: OEBPS/WickedBeat-32.xhtml
	  Removed script block from: OEBPS/WickedBeat-37.xhtml
	  Removed script block from: OEBPS/WickedBeat-33.xhtml
	  Removed script block from: OEBPS/WickedBeat-18.xhtml
	  Removed script block from: OEBPS/WickedBeat-26.xhtml
	  Removed script block from: OEBPS/WickedBeat-8.xhtml
	  Removed script block from: OEBPS/WickedBeat-46.xhtml
	  Removed script block from: OEBPS/WickedBeat-23.xhtml
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OEBPS/WickedBeat-44.xhtml
	  Stripped spans in: OEBPS/WickedBeat-43.xhtml
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-29.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-34.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-31.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-19.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-44.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-41.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-28.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-10.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-45.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-9.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-4.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-25.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-11.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-21.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-24.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-13.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-42.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-39.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-38.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-20.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-43.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-35.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-7.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-30.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-27.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-22.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-12.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-16.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-15.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-40.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-36.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-17.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-14.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-32.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-37.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-33.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-18.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-26.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-8.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-46.xhtml
	  Removed Kobo HEAD elements from: OEBPS/WickedBeat-23.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-29.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-34.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-31.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-19.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-44.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-41.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-28.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-10.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-45.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-9.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-4.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-25.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-1.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-11.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-21.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-24.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-13.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-42.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-39.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-38.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-20.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-43.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-35.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-7.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-30.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-27.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-22.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-12.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-3.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-16.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-5.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-6.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-15.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-40.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-2.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-36.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-17.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-14.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-32.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-37.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-33.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-18.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-26.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-8.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-46.xhtml
	  Stripped Kobo spans in: OEBPS/WickedBeat-23.xhtml
ePub updated in 3.24 seconds

Logfile for book ID 66 (Firstborn / Lindsay McKenna)
66
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\66.epub
Parsing xml file: content.opf
Parsing xml file: toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part12.html
	  Removed script block from: OEBPS/part6.html
	  Removed script block from: OEBPS/part14.html
	  Removed script block from: OEBPS/coverPage.html
	  Removed script block from: OEBPS/part15.html
	  Removed script block from: OEBPS/part10.html
	  Removed script block from: OEBPS/part5.html
	  Removed script block from: OEBPS/part16.html
	  Removed script block from: OEBPS/part0.html
	  Removed script block from: OEBPS/part4.html
	  Removed script block from: OEBPS/part1.html
	  Removed script block from: OEBPS/part11.html
	  Removed script block from: OEBPS/part13.html
	  Removed script block from: OEBPS/part18.html
	  Removed script block from: OEBPS/part19.html
	  Removed script block from: OEBPS/part7.html
	  Removed script block from: OEBPS/part3.html
	  Removed script block from: OEBPS/part20.html
	  Removed script block from: OEBPS/part17.html
	  Removed script block from: OEBPS/part2.html
	  Removed script block from: OEBPS/part9.html
	  Removed script block from: OEBPS/part8.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OEBPS/part12.html
	  Stripped spans in: OEBPS/part6.html
	  Stripped spans in: OEBPS/part14.html
	  Stripped spans in: OEBPS/part15.html
	  Stripped spans in: OEBPS/part10.html
	  Stripped spans in: OEBPS/part5.html
	  Stripped spans in: OEBPS/part16.html
	  Stripped spans in: OEBPS/part0.html
	  Stripped spans in: OEBPS/part4.html
	  Stripped spans in: OEBPS/part1.html
	  Stripped spans in: OEBPS/part11.html
	  Stripped spans in: OEBPS/part13.html
	  Stripped spans in: OEBPS/part18.html
	  Stripped spans in: OEBPS/part19.html
	  Stripped spans in: OEBPS/part7.html
	  Stripped spans in: OEBPS/part3.html
	  Stripped spans in: OEBPS/part20.html
	  Stripped spans in: OEBPS/part17.html
	  Stripped spans in: OEBPS/part2.html
	  Stripped spans in: OEBPS/part9.html
	  Stripped spans in: OEBPS/part8.html
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part12.html
	  Removed Kobo HEAD elements from: OEBPS/part6.html
	  Removed Kobo HEAD elements from: OEBPS/part14.html
	  Removed Kobo HEAD elements from: OEBPS/coverPage.html
	  Removed Kobo HEAD elements from: OEBPS/part15.html
	  Removed Kobo HEAD elements from: OEBPS/part10.html
	  Removed Kobo HEAD elements from: OEBPS/part5.html
	  Removed Kobo HEAD elements from: OEBPS/part16.html
	  Removed Kobo HEAD elements from: OEBPS/part0.html
	  Removed Kobo HEAD elements from: OEBPS/part4.html
	  Removed Kobo HEAD elements from: OEBPS/part1.html
	  Removed Kobo HEAD elements from: OEBPS/part11.html
	  Removed Kobo HEAD elements from: OEBPS/part13.html
	  Removed Kobo HEAD elements from: OEBPS/part18.html
	  Removed Kobo HEAD elements from: OEBPS/part19.html
	  Removed Kobo HEAD elements from: OEBPS/part7.html
	  Removed Kobo HEAD elements from: OEBPS/part3.html
	  Removed Kobo HEAD elements from: OEBPS/part20.html
	  Removed Kobo HEAD elements from: OEBPS/part17.html
	  Removed Kobo HEAD elements from: OEBPS/part2.html
	  Removed Kobo HEAD elements from: OEBPS/part9.html
	  Removed Kobo HEAD elements from: OEBPS/part8.html
	  Stripped Kobo spans in: OEBPS/part12.html
	  Stripped Kobo spans in: OEBPS/part6.html
	  Stripped Kobo spans in: OEBPS/part14.html
	  Stripped Kobo spans in: OEBPS/coverPage.html
	  Stripped Kobo spans in: OEBPS/part15.html
	  Stripped Kobo spans in: OEBPS/part10.html
	  Stripped Kobo spans in: OEBPS/part5.html
	  Stripped Kobo spans in: OEBPS/part16.html
	  Stripped Kobo spans in: OEBPS/part0.html
	  Stripped Kobo spans in: OEBPS/part4.html
	  Stripped Kobo spans in: OEBPS/part1.html
	  Stripped Kobo spans in: OEBPS/part11.html
	  Stripped Kobo spans in: OEBPS/part13.html
	  Stripped Kobo spans in: OEBPS/part18.html
	  Stripped Kobo spans in: OEBPS/part19.html
	  Stripped Kobo spans in: OEBPS/part7.html
	  Stripped Kobo spans in: OEBPS/part3.html
	  Stripped Kobo spans in: OEBPS/part20.html
	  Stripped Kobo spans in: OEBPS/part17.html
	  Stripped Kobo spans in: OEBPS/part2.html
	  Stripped Kobo spans in: OEBPS/part9.html
	  Stripped Kobo spans in: OEBPS/part8.html
ePub updated in 2.47 seconds

Logfile for book ID 64 (Father Mine: Zsadist and Bella's Story / Ward, J.R.)
64
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\64.epub
Parsing xml file: OEBPS/ward_9781440641619_oeb_opf_r1.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
Forcing OEBPS/ward_9781440641619_oeb_tp_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_tp_r1.html
Forcing OEBPS/ward_9781440641619_oeb_cop_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_cop_r1.html
Forcing OEBPS/ward_9781440641619_oeb_c07_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_c07_r1.html
Forcing OEBPS/ward_9781440641619_oeb_c04_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_c04_r1.html
Forcing OEBPS/ward_9781440641619_oeb_c06_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_c06_r1.html
Forcing OEBPS/ward_9781440641619_oeb_bm1_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_bm1_r1.html
Forcing OEBPS/ward_9781440641619_oeb_c03_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_c03_r1.html
Forcing OEBPS/ward_9781440641619_oeb_toc_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_toc_r1.html
Forcing OEBPS/ward_9781440641619_oeb_c02_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_c02_r1.html
Forcing OEBPS/ward_9781440641619_oeb_ack_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_ack_r1.html
Forcing OEBPS/ward_9781440641619_oeb_c09_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_c09_r1.html
Forcing OEBPS/ward_9781440641619_oeb_fm1_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_fm1_r1.html
Forcing OEBPS/ward_9781440641619_oeb_c08_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_c08_r1.html
Forcing OEBPS/ward_9781440641619_oeb_c05_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_c05_r1.html
Forcing OEBPS/ward_9781440641619_oeb_cover_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_cover_r1.html
Forcing OEBPS/ward_9781440641619_oeb_ded_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_ded_r1.html
Forcing OEBPS/ward_9781440641619_oeb_c10_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_c10_r1.html
Forcing OEBPS/ward_9781440641619_oeb_c11_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_c11_r1.html
Forcing OEBPS/ward_9781440641619_oeb_c01_r1.html into XHTML namespace
	  Removed script block from: OEBPS/ward_9781440641619_oeb_c01_r1.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_tp_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_cop_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_c07_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_c04_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_c06_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_bm1_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_c03_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_toc_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_c02_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_ack_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_c09_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_fm1_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_c08_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_c05_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_cover_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_ded_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_c10_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_c11_r1.html
	  Removed Kobo HEAD elements from: OEBPS/ward_9781440641619_oeb_c01_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_tp_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_cop_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_c07_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_c04_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_c06_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_bm1_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_c03_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_c02_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_ack_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_c09_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_fm1_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_c08_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_c05_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_cover_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_ded_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_c10_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_c11_r1.html
	  Stripped Kobo spans in: OEBPS/ward_9781440641619_oeb_c01_r1.html
ePub updated in 1.42 seconds

Logfile for book ID 68 (Nora Roberts Three Sisters Island Trilogy / Nora Roberts)
68
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\68.epub
Parsing xml file: OEBPS/OPF.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/danceupontheair_TOCREF-15.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-20.html
	  Removed script block from: OEBPS/facethefire_TOCREF-13.html
	  Removed script block from: OEBPS/heavenearth_chapter_06.html
	  Removed script block from: OEBPS/facethefire_TOCREF-3.html
	  Removed script block from: OEBPS/Toc.html
	  Removed script block from: OEBPS/facethefire_TOCREF-23.html
	  Removed script block from: OEBPS/heavenearth_chapter_03.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-18.html
	  Removed script block from: OEBPS/facethefire_TOCREF-1.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-21.html
	  Removed script block from: OEBPS/heavenearth_chapter_11.html
	  Removed script block from: OEBPS/facethefire_con01.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-16.html
	  Removed script block from: OEBPS/heavenearth_chapter_04.html
	  Removed script block from: OEBPS/danceupontheair_con01.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-7.html
	  Removed script block from: OEBPS/heavenearth_chapter_12.html
	  Removed script block from: OEBPS/danceupontheair_epi01.html
	  Removed script block from: OEBPS/heavenearth_chapter_09.html
	  Removed script block from: OEBPS/heavenearth_chapter_20.html
	  Removed script block from: OEBPS/heavenearth_chapter_02.html
	  Removed script block from: OEBPS/heavenearth_con01.html
	  Removed script block from: OEBPS/heavenearth_adCardPage_01.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-3.html
	  Removed script block from: OEBPS/heavenearth_chapter_19.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-19.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-6.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-4.html
	  Removed script block from: OEBPS/facethefire_TOCREF-25.html
	  Removed script block from: OEBPS/facethefire_ded01.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-13.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-14.html
	  Removed script block from: OEBPS/heavenearth_chapter_15.html
	  Removed script block from: OEBPS/facethefire_TOCREF-8.html
	  Removed script block from: OEBPS/facethefire_TOCREF-2.html
	  Removed script block from: OEBPS/facethefire_TOCREF-17.html
	  Removed script block from: OEBPS/heavenearth_chapter_13.html
	  Removed script block from: OEBPS/danceupontheair_cop01.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-1.html
	  Removed script block from: OEBPS/facethefire_TOCREF-6.html
	  Removed script block from: OEBPS/facethefire_TOCREF-4.html
	  Removed script block from: OEBPS/facethefire_TOCREF-15.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-10.html
	  Removed script block from: OEBPS/heavenearth_chapter_10.html
	  Removed script block from: OEBPS/facethefire_TOCREF-19.html
	  Removed script block from: OEBPS/danceupontheair_cov.html
	  Removed script block from: OEBPS/heavenearth_dedicationPage_01.html
	  Removed script block from: OEBPS/facethefire_TOCREF-7.html
	  Removed script block from: OEBPS/Titlepage.html
	  Removed script block from: OEBPS/heavenearth_chapter_17.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-11.html
	  Removed script block from: OEBPS/heavenearth_copyrightPage_01.html
	  Removed script block from: OEBPS/danceupontheair_ded01.html
	  Removed script block from: OEBPS/heavenearth_chapter_08.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-8.html
	  Removed script block from: OEBPS/facethefire_epi01.html
	  Removed script block from: OEBPS/heavenearth_chapter_21.html
	  Removed script block from: OEBPS/heavenearth_titlePage_01.html
	  Removed script block from: OEBPS/heavenearth_chapter_18.html
	  Removed script block from: OEBPS/facethefire_TOCREF-12.html
	  Removed script block from: OEBPS/heavenearth_epigraphPage_01.html
	  Removed script block from: OEBPS/facethefire_TOCREF-10.html
	  Removed script block from: OEBPS/facethefire_TOCREF-16.html
	  Removed script block from: OEBPS/facethefire_TOCREF-22.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-12.html
	  Removed script block from: OEBPS/facethefire_TOCREF-5.html
	  Removed script block from: OEBPS/facethefire_TOCREF-27.html
	  Removed script block from: OEBPS/facethefire_TOCREF-18.html
	  Removed script block from: OEBPS/heavenearth_chapter_16.html
	  Removed script block from: OEBPS/heavenearth_chapter_14.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-9.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-2.html
	  Removed script block from: OEBPS/heavenearth_chapter_01.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-17.html
	  Removed script block from: OEBPS/Titlepage1.html
	  Removed script block from: OEBPS/facethefire_cop01.html
	  Removed script block from: OEBPS/facethefire_TOCREF-21.html
	  Removed script block from: OEBPS/heavenearth_chapter_05.html
	  Removed script block from: OEBPS/heavenearth_chapter_07.html
	  Removed script block from: OEBPS/danceupontheair_TOCREF-5.html
	  Removed script block from: OEBPS/Titlepage2.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-15.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-20.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-13.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_06.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-3.html
	  Removed Kobo HEAD elements from: OEBPS/Toc.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-23.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_03.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-18.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-1.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-21.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_11.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_con01.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-16.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_04.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_con01.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-7.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_12.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_epi01.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_09.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_20.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_02.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_con01.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_adCardPage_01.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-3.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_19.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-19.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-6.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-4.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-25.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_ded01.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-13.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-14.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_15.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-8.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-2.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-17.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_13.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-1.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-6.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-4.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-15.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-10.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_10.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-19.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_cov.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_dedicationPage_01.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-7.html
	  Removed Kobo HEAD elements from: OEBPS/Titlepage.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_17.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-11.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_copyrightPage_01.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_ded01.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_08.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-8.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_epi01.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_21.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_titlePage_01.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_18.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-12.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_epigraphPage_01.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-10.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-16.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-22.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-12.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-5.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-27.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-18.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_16.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_14.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-9.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-2.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_01.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-17.html
	  Removed Kobo HEAD elements from: OEBPS/Titlepage1.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/facethefire_TOCREF-21.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_05.html
	  Removed Kobo HEAD elements from: OEBPS/heavenearth_chapter_07.html
	  Removed Kobo HEAD elements from: OEBPS/danceupontheair_TOCREF-5.html
	  Removed Kobo HEAD elements from: OEBPS/Titlepage2.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-15.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-20.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-13.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_06.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-3.html
	  Stripped Kobo spans in: OEBPS/Toc.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-23.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_03.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-18.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-1.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-21.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_11.html
	  Stripped Kobo spans in: OEBPS/facethefire_con01.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-16.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_04.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_con01.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-7.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_12.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_epi01.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_09.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_20.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_02.html
	  Stripped Kobo spans in: OEBPS/heavenearth_con01.html
	  Stripped Kobo spans in: OEBPS/heavenearth_adCardPage_01.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-3.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_19.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-19.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-6.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-4.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-25.html
	  Stripped Kobo spans in: OEBPS/facethefire_ded01.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-13.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-14.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_15.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-8.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-2.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-17.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_13.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_cop01.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-1.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-6.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-4.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-15.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-10.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_10.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-19.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_cov.html
	  Stripped Kobo spans in: OEBPS/heavenearth_dedicationPage_01.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-7.html
	  Stripped Kobo spans in: OEBPS/Titlepage.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_17.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-11.html
	  Stripped Kobo spans in: OEBPS/heavenearth_copyrightPage_01.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_ded01.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_08.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-8.html
	  Stripped Kobo spans in: OEBPS/facethefire_epi01.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_21.html
	  Stripped Kobo spans in: OEBPS/heavenearth_titlePage_01.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_18.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-12.html
	  Stripped Kobo spans in: OEBPS/heavenearth_epigraphPage_01.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-10.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-16.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-22.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-12.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-5.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-27.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-18.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_16.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_14.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-9.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-2.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_01.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-17.html
	  Stripped Kobo spans in: OEBPS/Titlepage1.html
	  Stripped Kobo spans in: OEBPS/facethefire_cop01.html
	  Stripped Kobo spans in: OEBPS/facethefire_TOCREF-21.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_05.html
	  Stripped Kobo spans in: OEBPS/heavenearth_chapter_07.html
	  Stripped Kobo spans in: OEBPS/danceupontheair_TOCREF-5.html
	  Stripped Kobo spans in: OEBPS/Titlepage2.html
ePub updated in 5.74 seconds

Logfile for book ID 65 (What Your Doctor May Not Tell You About Fibromyalgia (Revised Edition): The Revolutionary Treatment That Can Reverse the Disease / R. Paul St. Amand, M.D. & Claudia Craig Marek)
65
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\65.epub
Parsing xml file: OEBPS/WhatYourDoctor_opf.opf
Parsing xml file: OEBPS/WhatYourDoctor.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/WhatYourDoctor_part-2.html
	  Removed script block from: OEBPS/WhatYourDoctor_chap-3.html
	  Removed script block from: OEBPS/WhatYourDoctor_chap-13.html
	  Removed script block from: OEBPS/WhatYourDoctor_chap-11.html
	  Removed script block from: OEBPS/WhatYourDoctor_bibl-1.html
	  Removed script block from: OEBPS/WhatYourDoctor_chap-15.html
	  Removed script block from: OEBPS/WhatYourDoctor_auth-1.html
	  Removed script block from: OEBPS/WhatYourDoctor_fron-1.html
	  Removed script block from: OEBPS/WhatYourDoctor_fore-1.html
	  Removed script block from: OEBPS/WhatYourDoctor_chap-12.html
	  Removed script block from: OEBPS/WhatYourDoctor_chap-10.html
	  Removed script block from: OEBPS/WhatYourDoctor_chap-4.html
	  Removed script block from: OEBPS/WhatYourDoctor_note-1.html
	  Removed script block from: OEBPS/WhatYourDoctor_dedi-1.html
	  Removed script block from: OEBPS/WhatYourDoctor_chap-5.html
	  Removed script block from: OEBPS/WhatYourDoctor_chap-7.html
	  Removed script block from: OEBPS/WhatYourDoctor_pref-1.html
	  Removed script block from: OEBPS/WhatYourDoctor_part-1.html
	  Removed script block from: OEBPS/WhatYourDoctor_chap-2.html
	  Removed script block from: OEBPS/WhatYourDoctor_copy.html
	  Removed script block from: OEBPS/WhatYourDoctor_chap-8.html
	  Removed script block from: OEBPS/WhatYourDoctor_chap-16.html
	  Removed script block from: OEBPS/WhatYourDoctor_chap-1.html
	  Removed script block from: OEBPS/WhatYourDoctor_ackn-1.html
	  Removed script block from: OEBPS/WhatYourDoctor_chap-9.html
	  Removed script block from: OEBPS/WhatYourDoctor_toc.html
	  Removed script block from: OEBPS/WhatYourDoctor_chap-14.html
	  Removed script block from: OEBPS/WhatYourDoctor_appe-1.html
	  Removed script block from: OEBPS/WhatYourDoctor_chap-6.html
	  Removed script block from: OEBPS/WhatYourDoctor_part-3.html
	  Removed script block from: OEBPS/cover.xml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_part-2.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_chap-3.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_chap-13.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_chap-11.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_bibl-1.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_chap-15.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_auth-1.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_fron-1.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_fore-1.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_chap-12.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_chap-10.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_chap-4.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_note-1.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_dedi-1.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_chap-5.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_chap-7.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_pref-1.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_part-1.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_chap-2.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_copy.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_chap-8.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_chap-16.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_chap-1.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_ackn-1.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_chap-9.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_toc.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_chap-14.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_appe-1.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_chap-6.html
	  Removed Kobo HEAD elements from: OEBPS/WhatYourDoctor_part-3.html
	  Removed Kobo HEAD elements from: OEBPS/cover.xml
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_part-2.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_chap-3.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_chap-13.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_chap-11.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_bibl-1.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_chap-15.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_auth-1.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_fron-1.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_fore-1.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_chap-12.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_chap-10.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_chap-4.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_note-1.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_dedi-1.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_chap-5.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_chap-7.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_pref-1.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_part-1.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_chap-2.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_copy.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_chap-8.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_chap-16.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_chap-1.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_ackn-1.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_chap-9.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_toc.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_chap-14.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_appe-1.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_chap-6.html
	  Stripped Kobo spans in: OEBPS/WhatYourDoctor_part-3.html
	  Stripped Kobo spans in: OEBPS/cover.xml
ePub updated in 3.10 seconds

Logfile for book ID 63 (VirginsBlood / Tianna Xander)
63
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\63.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part5.xhtml
	  Removed script block from: OEBPS/part17.xhtml
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/title.xhtml
	  Removed script block from: OEBPS/part6.xhtml
	  Removed script block from: OEBPS/part3.xhtml
	  Removed script block from: OEBPS/part16.xhtml
	  Removed script block from: OEBPS/part13.xhtml
	  Removed script block from: OEBPS/part19.xhtml
	  Removed script block from: OEBPS/part11.xhtml
	  Removed script block from: OEBPS/part12.xhtml
	  Removed script block from: OEBPS/part7.xhtml
	  Removed script block from: OEBPS/part15.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/part20.xhtml
	  Removed script block from: OEBPS/part18.xhtml
	  Removed script block from: OEBPS/part14.xhtml
	  Removed script block from: OEBPS/part8.xhtml
	  Removed script block from: OEBPS/part21.xhtml
	  Removed script block from: OEBPS/part10.xhtml
	  Removed script block from: OEBPS/part4.xhtml
	  Removed script block from: OEBPS/part9.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part17.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part16.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part13.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part19.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part11.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part12.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part7.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part15.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part20.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part18.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part14.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part8.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part21.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part10.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part4.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part9.xhtml
	  Stripped Kobo spans in: OEBPS/part5.xhtml
	  Stripped Kobo spans in: OEBPS/part17.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part6.xhtml
	  Stripped Kobo spans in: OEBPS/part3.xhtml
	  Stripped Kobo spans in: OEBPS/part16.xhtml
	  Stripped Kobo spans in: OEBPS/part13.xhtml
	  Stripped Kobo spans in: OEBPS/part19.xhtml
	  Stripped Kobo spans in: OEBPS/part11.xhtml
	  Stripped Kobo spans in: OEBPS/part12.xhtml
	  Stripped Kobo spans in: OEBPS/part7.xhtml
	  Stripped Kobo spans in: OEBPS/part15.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/part20.xhtml
	  Stripped Kobo spans in: OEBPS/part18.xhtml
	  Stripped Kobo spans in: OEBPS/part14.xhtml
	  Stripped Kobo spans in: OEBPS/part8.xhtml
	  Stripped Kobo spans in: OEBPS/part21.xhtml
	  Stripped Kobo spans in: OEBPS/part10.xhtml
	  Stripped Kobo spans in: OEBPS/part4.xhtml
	  Stripped Kobo spans in: OEBPS/part9.xhtml
ePub updated in 1.70 seconds

Logfile for book ID 62 (Fantasmagorical / McKenna, Annmarie)
62
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\62.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section23.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section18.html
	  Removed script block from: OEBPS/section22.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section20.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section19.html
	  Removed script block from: OEBPS/section21.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section23.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section18.html
	  Removed Kobo HEAD elements from: OEBPS/section22.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section20.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section19.html
	  Removed Kobo HEAD elements from: OEBPS/section21.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section23.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section18.html
	  Stripped Kobo spans in: OEBPS/section22.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section20.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section19.html
	  Stripped Kobo spans in: OEBPS/section21.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 0.59 seconds

Logfile for book ID 60 (Viper's Run / Jamie Begley)
60
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\60.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
Forcing OEBPS/8f4243fd-a038-4b61-9faa-40345a7d34ea.xhtml into XHTML namespace
	  Removed script block from: OEBPS/8f4243fd-a038-4b61-9faa-40345a7d34ea.xhtml
	  Removed script block from: OEBPS/760f515c-f258-46b3-8031-4c48fc5ef994.xhtml
	  Removed script block from: OEBPS/9521a299-dc16-46ce-9fc0-be577d8f9b7d.xhtml
	  Removed script block from: OEBPS/cf5a13e2-9d52-4c7e-bbaa-37f7eed7580e.xhtml
	  Removed script block from: OEBPS/dcbe9a6d-1eca-48ec-b9e3-6b18e9bcba5f.xhtml
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/8f4243fd-a038-4b61-9faa-40345a7d34ea.xhtml
	  Removed Kobo HEAD elements from: OEBPS/760f515c-f258-46b3-8031-4c48fc5ef994.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9521a299-dc16-46ce-9fc0-be577d8f9b7d.xhtml
	  Removed Kobo HEAD elements from: OEBPS/cf5a13e2-9d52-4c7e-bbaa-37f7eed7580e.xhtml
	  Removed Kobo HEAD elements from: OEBPS/dcbe9a6d-1eca-48ec-b9e3-6b18e9bcba5f.xhtml
	  Stripped Kobo spans in: OEBPS/760f515c-f258-46b3-8031-4c48fc5ef994.xhtml
	  Stripped Kobo spans in: OEBPS/9521a299-dc16-46ce-9fc0-be577d8f9b7d.xhtml
	  Stripped Kobo spans in: OEBPS/cf5a13e2-9d52-4c7e-bbaa-37f7eed7580e.xhtml
	  Stripped Kobo spans in: OEBPS/dcbe9a6d-1eca-48ec-b9e3-6b18e9bcba5f.xhtml
ePub updated in 1.71 seconds

Logfile for book ID 59 (Under a Vampire Moon / Lynsay Sands)
59
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\59.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/About_the_Publisher.xhtml
	  Removed script block from: OEBPS/Contents.xhtml
	  Removed script block from: OEBPS/Chapter_7.xhtml
	  Removed script block from: OEBPS/Chapter_19.xhtml
	  Removed script block from: OEBPS/Chapter_15.xhtml
	  Removed script block from: OEBPS/Cover.xhtml
	  Removed script block from: OEBPS/BoB_Ad.xhtml
	  Removed script block from: OEBPS/Chapter_12.xhtml
	  Removed script block from: OEBPS/Chapter_17.xhtml
	  Removed script block from: OEBPS/Chapter_6.xhtml
	  Removed script block from: OEBPS/Teaser_Chapter.xhtml
	  Removed script block from: OEBPS/Chapter_8.xhtml
	  Removed script block from: OEBPS/About_the_Author.xhtml
	  Removed script block from: OEBPS/Prologue.xhtml
	  Removed script block from: OEBPS/Chapter_16.xhtml
	  Removed script block from: OEBPS/Chapter_14.xhtml
	  Removed script block from: OEBPS/Also_by_the_Author.xhtml
	  Removed script block from: OEBPS/Chapter_20.xhtml
	  Removed script block from: OEBPS/Chapter_9.xhtml
	  Removed script block from: OEBPS/Chapter_10.xhtml
	  Removed script block from: OEBPS/Chapter_5.xhtml
	  Removed script block from: OEBPS/Chapter_1.xhtml
	  Removed script block from: OEBPS/Chapter_11.xhtml
	  Removed script block from: OEBPS/Chapter_3.xhtml
	  Removed script block from: OEBPS/Title_Page.xhtml
	  Removed script block from: OEBPS/Chapter_18.xhtml
	  Removed script block from: OEBPS/Chapter_13.xhtml
	  Removed script block from: OEBPS/Copyright.xhtml
	  Removed script block from: OEBPS/Chapter_2.xhtml
	  Removed script block from: OEBPS/Chapter_4.xhtml
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/About_the_Publisher.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Contents.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_7.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_19.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_15.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Cover.xhtml
	  Removed Kobo HEAD elements from: OEBPS/BoB_Ad.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_12.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_17.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Teaser_Chapter.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_8.xhtml
	  Removed Kobo HEAD elements from: OEBPS/About_the_Author.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Prologue.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_16.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_14.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Also_by_the_Author.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_20.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_9.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_10.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_11.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Title_Page.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_18.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_13.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Copyright.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_4.xhtml
	  Stripped Kobo spans in: OEBPS/About_the_Publisher.xhtml
	  Stripped Kobo spans in: OEBPS/Contents.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_7.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_19.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_15.xhtml
	  Stripped Kobo spans in: OEBPS/Cover.xhtml
	  Stripped Kobo spans in: OEBPS/BoB_Ad.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_12.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_17.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_6.xhtml
	  Stripped Kobo spans in: OEBPS/Teaser_Chapter.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_8.xhtml
	  Stripped Kobo spans in: OEBPS/About_the_Author.xhtml
	  Stripped Kobo spans in: OEBPS/Prologue.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_16.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_14.xhtml
	  Stripped Kobo spans in: OEBPS/Also_by_the_Author.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_20.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_9.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_10.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_5.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_1.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_11.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_3.xhtml
	  Stripped Kobo spans in: OEBPS/Title_Page.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_18.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_13.xhtml
	  Stripped Kobo spans in: OEBPS/Copyright.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_2.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_4.xhtml
ePub updated in 2.43 seconds

Logfile for book ID 61 (Envy / Ward, J.R.)
61
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\61.epub
Parsing xml file: OEBPS/ward_9781101529423_oeb_opf_r1.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c07_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_fm1_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c49_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_bm6_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_bm5_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c51_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_bm2_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c10_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c19_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c28_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c27_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_ded_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c11_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c16_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c18_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c05_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_tea_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_cop_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c21_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c38_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c42_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c08_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c32_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_toc_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c22_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c37_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c04_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c14_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_elg_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c09_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c50_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c30_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_tp_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_bm1_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_cover_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c47_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c40_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_bm4_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_als_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_ack_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c20_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c36_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c15_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_bm3_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c48_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c06_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c01_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c43_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c12_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c33_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c26_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c35_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c13_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c45_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c31_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c25_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c24_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c41_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c17_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c03_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c29_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c34_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c23_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c46_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c02_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c39_r1.xhtml
	  Removed script block from: OEBPS/ward_9781101529423_oeb_c44_r1.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c07_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_fm1_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c49_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_bm6_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_bm5_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c51_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_bm2_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c10_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c19_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c28_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c27_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_ded_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c11_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c16_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c18_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c05_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_tea_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_cop_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c21_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c38_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c42_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c08_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c32_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_toc_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c22_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c37_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c04_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c14_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_elg_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c09_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c50_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c30_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_tp_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_bm1_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_cover_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c47_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c40_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_bm4_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_als_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_ack_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c20_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c36_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c15_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_bm3_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c48_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c06_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c01_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c43_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c12_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c33_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c26_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c35_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c13_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c45_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c31_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c25_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c24_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c41_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c17_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c03_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c29_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c34_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c23_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c46_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c02_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c39_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ward_9781101529423_oeb_c44_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c07_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_fm1_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c49_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_bm6_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_bm5_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c51_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_bm2_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c10_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c19_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c28_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c27_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_ded_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c11_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c16_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c18_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c05_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_tea_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_cop_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c21_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c38_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c42_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c08_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c32_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_toc_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c22_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c37_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c04_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c14_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_elg_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c09_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c50_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c30_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_tp_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_bm1_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_cover_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c47_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c40_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_bm4_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_als_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_ack_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c20_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c36_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c15_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_bm3_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c48_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c06_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c01_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c43_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c12_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c33_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c26_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c35_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c13_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c45_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c31_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c25_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c24_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c41_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c17_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c03_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c29_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c34_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c23_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c46_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c02_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c39_r1.xhtml
	  Stripped Kobo spans in: OEBPS/ward_9781101529423_oeb_c44_r1.xhtml
ePub updated in 3.61 seconds

Logfile for book ID 58 (New Light on Depression / David B. Biebel, D. Min. & Harold G. Koenig, M.D.)
58
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\58.epub
Parsing xml file: OPS/content.opf
Parsing xml file: OPS/Toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OPS/013-chapter1.html
	  Removed script block from: OPS/002b-abouttheauthors.html
	  Removed script block from: OPS/015-chapter3.html
	  Removed script block from: OPS/020-chapter7.html
	  Removed script block from: OPS/034-aboutthepublisher.html
	  Removed script block from: OPS/005b-letters.html
	  Removed script block from: OPS/028-notes.html
	  Removed script block from: OPS/033-acknowledgments.html
	  Removed script block from: OPS/011-foreword.html
	  Removed script block from: OPS/022-chapter9.html
	  Removed script block from: OPS/018-chapter5.html
	  Removed script block from: OPS/032-christianmedicalassociationresources.html
	  Removed script block from: OPS/024-part3.html
	  Removed script block from: OPS/017-part2.html
	  Removed script block from: OPS/025-chapter11.html
	  Removed script block from: OPS/001-coverpage.html
	  Removed script block from: OPS/004-copyright.html
	  Removed script block from: OPS/005a-dedication.html
	  Removed script block from: OPS/023-chapter10.html
	  Removed script block from: OPS/035-consumerengagement.html
	  Removed script block from: OPS/005c-disclaimer.html
	  Removed script block from: OPS/021-chapter8.html
	  Removed script block from: OPS/019-chapter6.html
	  Removed script block from: OPS/027-chapter13.html
	  Removed script block from: OPS/026-chapter12.html
	  Removed script block from: OPS/014-chapter2.html
	  Removed script block from: OPS/029-bibliography.html
	  Removed script block from: OPS/012-part1.html
	  Removed script block from: OPS/006-toc.html
	  Removed script block from: OPS/003-titlepage.html
	  Removed script block from: OPS/016-chapter4.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OPS/013-chapter1.html
	  Removed Kobo HEAD elements from: OPS/002b-abouttheauthors.html
	  Removed Kobo HEAD elements from: OPS/015-chapter3.html
	  Removed Kobo HEAD elements from: OPS/020-chapter7.html
	  Removed Kobo HEAD elements from: OPS/034-aboutthepublisher.html
	  Removed Kobo HEAD elements from: OPS/005b-letters.html
	  Removed Kobo HEAD elements from: OPS/028-notes.html
	  Removed Kobo HEAD elements from: OPS/033-acknowledgments.html
	  Removed Kobo HEAD elements from: OPS/011-foreword.html
	  Removed Kobo HEAD elements from: OPS/022-chapter9.html
	  Removed Kobo HEAD elements from: OPS/018-chapter5.html
	  Removed Kobo HEAD elements from: OPS/032-christianmedicalassociationresources.html
	  Removed Kobo HEAD elements from: OPS/024-part3.html
	  Removed Kobo HEAD elements from: OPS/017-part2.html
	  Removed Kobo HEAD elements from: OPS/025-chapter11.html
	  Removed Kobo HEAD elements from: OPS/001-coverpage.html
	  Removed Kobo HEAD elements from: OPS/004-copyright.html
	  Removed Kobo HEAD elements from: OPS/005a-dedication.html
	  Removed Kobo HEAD elements from: OPS/023-chapter10.html
	  Removed Kobo HEAD elements from: OPS/035-consumerengagement.html
	  Removed Kobo HEAD elements from: OPS/005c-disclaimer.html
	  Removed Kobo HEAD elements from: OPS/021-chapter8.html
	  Removed Kobo HEAD elements from: OPS/019-chapter6.html
	  Removed Kobo HEAD elements from: OPS/027-chapter13.html
	  Removed Kobo HEAD elements from: OPS/026-chapter12.html
	  Removed Kobo HEAD elements from: OPS/014-chapter2.html
	  Removed Kobo HEAD elements from: OPS/029-bibliography.html
	  Removed Kobo HEAD elements from: OPS/012-part1.html
	  Removed Kobo HEAD elements from: OPS/006-toc.html
	  Removed Kobo HEAD elements from: OPS/003-titlepage.html
	  Removed Kobo HEAD elements from: OPS/016-chapter4.html
	  Stripped Kobo spans in: OPS/013-chapter1.html
	  Stripped Kobo spans in: OPS/002b-abouttheauthors.html
	  Stripped Kobo spans in: OPS/015-chapter3.html
	  Stripped Kobo spans in: OPS/020-chapter7.html
	  Stripped Kobo spans in: OPS/034-aboutthepublisher.html
	  Stripped Kobo spans in: OPS/005b-letters.html
	  Stripped Kobo spans in: OPS/028-notes.html
	  Stripped Kobo spans in: OPS/033-acknowledgments.html
	  Stripped Kobo spans in: OPS/011-foreword.html
	  Stripped Kobo spans in: OPS/022-chapter9.html
	  Stripped Kobo spans in: OPS/018-chapter5.html
	  Stripped Kobo spans in: OPS/032-christianmedicalassociationresources.html
	  Stripped Kobo spans in: OPS/024-part3.html
	  Stripped Kobo spans in: OPS/017-part2.html
	  Stripped Kobo spans in: OPS/025-chapter11.html
	  Stripped Kobo spans in: OPS/001-coverpage.html
	  Stripped Kobo spans in: OPS/004-copyright.html
	  Stripped Kobo spans in: OPS/005a-dedication.html
	  Stripped Kobo spans in: OPS/023-chapter10.html
	  Stripped Kobo spans in: OPS/035-consumerengagement.html
	  Stripped Kobo spans in: OPS/005c-disclaimer.html
	  Stripped Kobo spans in: OPS/021-chapter8.html
	  Stripped Kobo spans in: OPS/019-chapter6.html
	  Stripped Kobo spans in: OPS/027-chapter13.html
	  Stripped Kobo spans in: OPS/026-chapter12.html
	  Stripped Kobo spans in: OPS/014-chapter2.html
	  Stripped Kobo spans in: OPS/029-bibliography.html
	  Stripped Kobo spans in: OPS/012-part1.html
	  Stripped Kobo spans in: OPS/006-toc.html
	  Stripped Kobo spans in: OPS/003-titlepage.html
	  Stripped Kobo spans in: OPS/016-chapter4.html
ePub updated in 1.87 seconds

Logfile for book ID 57 (Dragonsblood / Todd McCaffrey)
57
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\57.epub
Parsing xml file: OPS/Mcca_9780345481931_epub_opf_r1.opf
Parsing xml file: OPS/Mcca_9780345481931_epub_ncx_r1.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OPS/Mcca_9780345481931_epub_c02_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c16_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c07_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c20_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c13_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c14_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_cvi_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c17_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c10_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c11_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c05_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_ack_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c18_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_cop_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c23_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c06_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_itr_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c04_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c15_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_fm_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c03_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c09_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_tp_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_adc_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c21_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c01_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_toc_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c22_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c25_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c24_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c19_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c12_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_c08_r1.htm
	  Removed script block from: OPS/Mcca_9780345481931_epub_ded_r1.htm
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c02_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c16_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c07_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c20_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c13_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c14_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_cvi_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c17_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c10_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c11_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c05_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_ack_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c18_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_cop_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c23_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c06_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_itr_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c04_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c15_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_fm_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c03_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c09_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_tp_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_adc_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c21_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c01_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_toc_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c22_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c25_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c24_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c19_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c12_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_c08_r1.htm
	  Removed Kobo HEAD elements from: OPS/Mcca_9780345481931_epub_ded_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c02_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c16_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c07_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c20_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c13_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c14_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_cvi_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c17_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c10_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c11_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c05_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_ack_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c18_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_cop_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c23_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c06_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_itr_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c04_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c15_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_fm_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c03_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c09_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_tp_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_adc_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c21_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c01_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_toc_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c22_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c25_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c24_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c19_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c12_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_c08_r1.htm
	  Stripped Kobo spans in: OPS/Mcca_9780345481931_epub_ded_r1.htm
ePub updated in 2.11 seconds

Logfile for book ID 56 (Unconditional: Cascadia Wolves, Book 8 / Lauren Dane)
56
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\56.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section23.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section25.html
	  Removed script block from: OEBPS/section18.html
	  Removed script block from: OEBPS/section22.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section20.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section24.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section19.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section21.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section23.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section25.html
	  Removed Kobo HEAD elements from: OEBPS/section18.html
	  Removed Kobo HEAD elements from: OEBPS/section22.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section20.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section24.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section19.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section21.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section23.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section25.html
	  Stripped Kobo spans in: OEBPS/section18.html
	  Stripped Kobo spans in: OEBPS/section22.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section20.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section24.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section19.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section21.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 1.99 seconds

Logfile for book ID 55 (Two Sighted / McKenna, Annmarie)
55
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\55.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/toc.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section18.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section19.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/toc.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section18.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section19.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section18.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section19.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 1.05 seconds

Logfile for book ID 52 (Devon's Pair: Powertools, Book 4 / Jayne Rylon)
52
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\52.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/toc.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/toc.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 1.32 seconds

Logfile for book ID 53 (Double Time / Olivia Cunning)
53
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\53.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/DoubleTime-31.html
	  Removed script block from: OEBPS/DoubleTime-33.html
	  Removed script block from: OEBPS/DoubleTime-3.html
	  Removed script block from: OEBPS/DoubleTime-37.html
	  Removed script block from: OEBPS/DoubleTime-17.html
	  Removed script block from: OEBPS/DoubleTime-36.html
	  Removed script block from: OEBPS/DoubleTime-15.html
	  Removed script block from: OEBPS/DoubleTime-38.html
	  Removed script block from: OEBPS/DoubleTime-30.html
	  Removed script block from: OEBPS/DoubleTime-7.html
	  Removed script block from: OEBPS/DoubleTime-32.html
	  Removed script block from: OEBPS/DoubleTime-2.html
	  Removed script block from: OEBPS/DoubleTime-43.html
	  Removed script block from: OEBPS/DoubleTime-18.html
	  Removed script block from: OEBPS/DoubleTime-46.html
	  Removed script block from: OEBPS/DoubleTime-29.html
	  Removed script block from: OEBPS/DoubleTime-11.html
	  Removed script block from: OEBPS/DoubleTime-42.html
	  Removed script block from: OEBPS/DoubleTime-8.html
	  Removed script block from: OEBPS/DoubleTime-1.html
	  Removed script block from: OEBPS/DoubleTime-34.html
	  Removed script block from: OEBPS/DoubleTime-26.html
	  Removed script block from: OEBPS/DoubleTime-13.html
	  Removed script block from: OEBPS/DoubleTime-6.html
	  Removed script block from: OEBPS/DoubleTime-44.html
	  Removed script block from: OEBPS/DoubleTime-19.html
	  Removed script block from: OEBPS/DoubleTime-39.html
	  Removed script block from: OEBPS/DoubleTime-4.html
	  Removed script block from: OEBPS/DoubleTime-22.html
	  Removed script block from: OEBPS/DoubleTime-20.html
	  Removed script block from: OEBPS/DoubleTime-47.html
	  Removed script block from: OEBPS/DoubleTime-28.html
	  Removed script block from: OEBPS/DoubleTime-12.html
	  Removed script block from: OEBPS/DoubleTime.html
	  Removed script block from: OEBPS/DoubleTime-23.html
	  Removed script block from: OEBPS/DoubleTime-21.html
	  Removed script block from: OEBPS/DoubleTime-25.html
	  Removed script block from: OEBPS/DoubleTime-14.html
	  Removed script block from: OEBPS/DoubleTime-10.html
	  Removed script block from: OEBPS/DoubleTime-5.html
	  Removed script block from: OEBPS/DoubleTime-27.html
	  Removed script block from: OEBPS/DoubleTime-35.html
	  Removed script block from: OEBPS/DoubleTime-45.html
	  Removed script block from: OEBPS/DoubleTime-41.html
	  Removed script block from: OEBPS/DoubleTime-9.html
	  Removed script block from: OEBPS/DoubleTime-40.html
	  Removed script block from: OEBPS/DoubleTime-24.html
	  Removed script block from: OEBPS/DoubleTime-16.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-31.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-33.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-3.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-37.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-17.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-36.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-15.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-38.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-30.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-7.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-32.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-2.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-43.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-18.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-46.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-29.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-11.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-42.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-8.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-1.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-34.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-26.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-13.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-6.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-44.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-19.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-39.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-4.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-22.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-20.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-47.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-28.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-12.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-23.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-21.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-25.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-14.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-10.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-5.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-27.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-35.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-45.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-41.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-9.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-40.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-24.html
	  Removed Kobo HEAD elements from: OEBPS/DoubleTime-16.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-31.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-33.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-3.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-37.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-17.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-36.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-15.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-38.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-30.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-7.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-32.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-2.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-43.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-18.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-46.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-29.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-11.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-42.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-8.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-1.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-34.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-26.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-13.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-6.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-44.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-19.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-39.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-4.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-22.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-20.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-47.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-28.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-12.html
	  Stripped Kobo spans in: OEBPS/DoubleTime.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-23.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-21.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-25.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-14.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-10.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-5.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-27.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-35.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-45.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-41.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-9.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-40.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-24.html
	  Stripped Kobo spans in: OEBPS/DoubleTime-16.html
ePub updated in 3.09 seconds

Logfile for book ID 51 (Try Me, Tempt Me, Take Me / Olivia Cunning)
51
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\51.epub
Parsing xml file: content.opf
Parsing xml file: toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: Try_Me_Tempt_Me_Take_Me_split_000.html
	  Removed script block from: Try_Me_Tempt_Me_Take_Me_split_003.html
	  Removed script block from: Try_Me_Tempt_Me_Take_Me_split_008.html
	  Removed script block from: Try_Me_Tempt_Me_Take_Me_split_001.html
	  Removed script block from: Try_Me_Tempt_Me_Take_Me_split_005.html
	  Removed script block from: Try_Me_Tempt_Me_Take_Me_split_007.html
	  Removed script block from: Try_Me_Tempt_Me_Take_Me_split_004.html
	  Removed script block from: Try_Me_Tempt_Me_Take_Me_split_006.html
	  Removed script block from: titlepage.xhtml
	  Removed script block from: Try_Me_Tempt_Me_Take_Me_split_002.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo.js
	Stripping spans
	  Stripped spans in: Try_Me_Tempt_Me_Take_Me_split_000.html
	  Stripped spans in: Try_Me_Tempt_Me_Take_Me_split_003.html
	  Stripped spans in: Try_Me_Tempt_Me_Take_Me_split_008.html
	  Stripped spans in: Try_Me_Tempt_Me_Take_Me_split_001.html
	  Stripped spans in: Try_Me_Tempt_Me_Take_Me_split_005.html
	  Stripped spans in: Try_Me_Tempt_Me_Take_Me_split_007.html
	  Stripped spans in: Try_Me_Tempt_Me_Take_Me_split_004.html
	  Stripped spans in: Try_Me_Tempt_Me_Take_Me_split_006.html
	  Stripped spans in: Try_Me_Tempt_Me_Take_Me_split_002.html
	Stripping Kobo remnants
	  Removed kobo.css file: css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: Try_Me_Tempt_Me_Take_Me_split_000.html
	  Removed Kobo HEAD elements from: Try_Me_Tempt_Me_Take_Me_split_003.html
	  Removed Kobo HEAD elements from: Try_Me_Tempt_Me_Take_Me_split_008.html
	  Removed Kobo HEAD elements from: Try_Me_Tempt_Me_Take_Me_split_001.html
	  Removed Kobo HEAD elements from: Try_Me_Tempt_Me_Take_Me_split_005.html
	  Removed Kobo HEAD elements from: Try_Me_Tempt_Me_Take_Me_split_007.html
	  Removed Kobo HEAD elements from: Try_Me_Tempt_Me_Take_Me_split_004.html
	  Removed Kobo HEAD elements from: Try_Me_Tempt_Me_Take_Me_split_006.html
	  Removed Kobo HEAD elements from: titlepage.xhtml
	  Removed Kobo HEAD elements from: Try_Me_Tempt_Me_Take_Me_split_002.html
	  Stripped Kobo spans in: Try_Me_Tempt_Me_Take_Me_split_000.html
	  Stripped Kobo spans in: Try_Me_Tempt_Me_Take_Me_split_003.html
	  Stripped Kobo spans in: Try_Me_Tempt_Me_Take_Me_split_008.html
	  Stripped Kobo spans in: Try_Me_Tempt_Me_Take_Me_split_001.html
	  Stripped Kobo spans in: Try_Me_Tempt_Me_Take_Me_split_005.html
	  Stripped Kobo spans in: Try_Me_Tempt_Me_Take_Me_split_007.html
	  Stripped Kobo spans in: Try_Me_Tempt_Me_Take_Me_split_004.html
	  Stripped Kobo spans in: Try_Me_Tempt_Me_Take_Me_split_006.html
	  Stripped Kobo spans in: titlepage.xhtml
	  Stripped Kobo spans in: Try_Me_Tempt_Me_Take_Me_split_002.html
ePub updated in 2.64 seconds

Logfile for book ID 50 (Dedicated Ink / Ranae Rose)
50
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\50.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/Text/Section0005.xhtml
	  Removed script block from: OEBPS/Text/Section0015.xhtml
	  Removed script block from: OEBPS/Text/Section0001.xhtml
	  Removed script block from: OEBPS/Text/Section0003.xhtml
	  Removed script block from: OEBPS/Text/Section0017.xhtml
	  Removed script block from: OEBPS/Text/Section0006.xhtml
	  Removed script block from: OEBPS/Text/Section0013.xhtml
	  Removed script block from: OEBPS/Text/Section0016.xhtml
	  Removed script block from: OEBPS/Text/Section0010.xhtml
	  Removed script block from: OEBPS/Text/Section0009.xhtml
	  Removed script block from: OEBPS/Text/Cover.xhtml
	  Removed script block from: OEBPS/Text/Titlepage.xhtml
	  Removed script block from: OEBPS/Text/Section0008.xhtml
	  Removed script block from: OEBPS/Text/Section0002.xhtml
	  Removed script block from: OEBPS/Text/Section0007.xhtml
	  Removed script block from: OEBPS/Text/Section0012.xhtml
	  Removed script block from: OEBPS/Text/Copyright.xhtml
	  Removed script block from: OEBPS/Text/Summary.xhtml
	  Removed script block from: OEBPS/Text/Section0004.xhtml
	  Removed script block from: OEBPS/Text/Section0014.xhtml
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/Text/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/Text/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/Text/Section0005.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Section0015.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Section0001.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Section0003.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Section0017.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Section0006.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Section0013.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Section0016.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Section0010.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Section0009.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Cover.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Titlepage.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Section0008.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Section0002.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Section0007.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Section0012.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Copyright.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Summary.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Section0004.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Text/Section0014.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Section0005.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Section0015.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Section0001.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Section0003.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Section0017.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Section0006.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Section0013.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Section0016.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Section0010.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Section0009.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Cover.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Titlepage.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Section0008.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Section0002.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Section0007.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Section0012.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Copyright.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Summary.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Section0004.xhtml
	  Stripped Kobo spans in: OEBPS/Text/Section0014.xhtml
ePub updated in 1.29 seconds

Logfile for book ID 49 (TroubleinParadise / Tianna Xander)
49
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\49.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part7.xhtml
	  Removed script block from: OEBPS/part5.xhtml
	  Removed script block from: OEBPS/part6.xhtml
	  Removed script block from: OEBPS/part3.xhtml
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part4.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part7.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part4.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part7.xhtml
	  Stripped Kobo spans in: OEBPS/part5.xhtml
	  Stripped Kobo spans in: OEBPS/part6.xhtml
	  Stripped Kobo spans in: OEBPS/part3.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part4.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 0.48 seconds

Logfile for book ID 48 (NakedinParadise / Tianna Xander)
48
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\48.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part7.xhtml
	  Removed script block from: OEBPS/part5.xhtml
	  Removed script block from: OEBPS/part8.xhtml
	  Removed script block from: OEBPS/part6.xhtml
	  Removed script block from: OEBPS/part3.xhtml
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part4.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part7.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part8.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part4.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part7.xhtml
	  Stripped Kobo spans in: OEBPS/part5.xhtml
	  Stripped Kobo spans in: OEBPS/part8.xhtml
	  Stripped Kobo spans in: OEBPS/part6.xhtml
	  Stripped Kobo spans in: OEBPS/part3.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part4.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 0.82 seconds

Logfile for book ID 47 (Tooth and Claw / McKenna, Annmarie)
47
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\47.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/toc.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/toc.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 3.46 seconds

Logfile for book ID 54 (The Nauti Boys Collection / Lora Leigh)
54
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\54.epub
Parsing xml file: OEBPS/nautiboy.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/leig_9780425219515_oeb_fm2_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_bm1_r1.html
	  Removed script block from: OEBPS/nautinights_tit.html
	  Removed script block from: OEBPS/nautiboy_ch22.html
	  Removed script block from: OEBPS/nautiboy_ch20.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c06_r1.html
	  Removed script block from: OEBPS/nautinights_ch03.html
	  Removed script block from: OEBPS/nautiboy_ch17.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_tp_r1.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_ded_r1.xhtml
	  Removed script block from: OEBPS/nautinights_ch01.html
	  Removed script block from: OEBPS/nautinights_ch24.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c20_r1.html
	  Removed script block from: OEBPS/nautiboy_rev.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c10_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c09_r1.xhtml
	  Removed script block from: OEBPS/nautiboy_ch19.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c20_r1.html
	  Removed script block from: OEBPS/nautiboy_cop.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_fm2_r1.xhtml
	  Removed script block from: OEBPS/nautiboy_ch13.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c03_r1.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c09_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c12_r1.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c07_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c18_r1.xhtml
	  Removed script block from: OEBPS/leig_9780425219515_oeb_fm4_r1.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c10_r1.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c06_r1.xhtml
	  Removed script block from: OEBPS/nautinights_ch11.html
	  Removed script block from: OEBPS/TOC.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c25_r1.html
	  Removed script block from: OEBPS/nautinights_ch17.html
	  Removed script block from: OEBPS/nautiboy_ch07.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c03_r1.xhtml
	  Removed script block from: OEBPS/nautinights_ch19.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c15_r1.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c08_r1.html
	  Removed script block from: OEBPS/nautiboy_ch05.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c21_r1.xhtml
	  Removed script block from: OEBPS/nautinights_ch21.html
	  Removed script block from: OEBPS/nautinights_ch10.html
	  Removed script block from: OEBPS/nautinights_pro.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c11_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c23_r1.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c18_r1.html
	  Removed script block from: OEBPS/nautiboy_ack01.html
	  Removed script block from: OEBPS/nautiboy_con01.html
	  Removed script block from: OEBPS/nautiboy_tit.html
	  Removed script block from: OEBPS/nautinights_ch04.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c01_r1.xhtml
	  Removed script block from: OEBPS/nautiboy_ch10.html
	  Removed script block from: OEBPS/nautinights_ch08.html
	  Removed script block from: OEBPS/nautinights_cop.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_fm3_r1.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c12_r1.html
	  Removed script block from: OEBPS/nautinights_ch06.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c21_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c08_r1.html
	  Removed script block from: OEBPS/nautiboy_ch24.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_fm3_r1.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c11_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_fm1_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_ded_r1.html
	  Removed script block from: OEBPS/nautiboy_ch23.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c13_r1.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_cop_r1.xhtml
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c14_r1.html
	  Removed script block from: OEBPS/nautinights_con01.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c17_r1.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c16_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101032459_oeb_tp_r1.html
	  Removed script block from: OEBPS/nautiboy_ch18.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c05_r1.html
	  Removed script block from: OEBPS/nautiboy_ch02.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c05_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c24_r1.xhtml
	  Removed script block from: OEBPS/nautiboy_ch06.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_fm1_r1.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c14_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101185193_oeb_tp_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101185193_oeb_toc_r1.xhtml
	  Removed script block from: OEBPS/nautinights_ch14.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c04_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_toc_r1.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c15_r1.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c15_r1.xhtml
	  Removed script block from: OEBPS/Titlepage.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c24_r1.html
	  Removed script block from: OEBPS/nautinights_ch16.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c13_r1.html
	  Removed script block from: OEBPS/nautiboy_ch16.html
	  Removed script block from: OEBPS/nautiboy_cov.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c03_r1.html
	  Removed script block from: OEBPS/nautinights_ch22.html
	  Removed script block from: OEBPS/nautiboy_ch15.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c21_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c17_r1.html
	  Removed script block from: OEBPS/nautinights_ch20.html
	  Removed script block from: OEBPS/nautinights_ch07.html
	  Removed script block from: OEBPS/nautiboy_ch11.html
	  Removed script block from: OEBPS/nautiboy_ch09.html
	  Removed script block from: OEBPS/nautinights_ch15.html
	  Removed script block from: OEBPS/nautinights_ch05.html
	  Removed script block from: OEBPS/nautiboy_ch14.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c18_r1.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c22_r1.xhtml
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c02_r1.html
	  Removed script block from: OEBPS/nautiboy_ch21.html
	  Removed script block from: OEBPS/nautinights_ch09.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c04_r1.html
	  Removed script block from: OEBPS/nautiboy_ch01.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c12_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c11_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c17_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101185193_oeb_fm3_r1.xhtml
	  Removed script block from: OEBPS/nautinights_rev.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c20_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c13_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c16_r1.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_cop_r1.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_ded_r1.html
	  Removed script block from: OEBPS/nautiboy_ch12.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c19_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c05_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c10_r1.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_fm1_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101185193_oeb_bm1_r1.xhtml
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c07_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_cop_r1.html
	  Removed script block from: OEBPS/nautinights_ch02.html
	  Removed script block from: OEBPS/nautiboy_ch03.html
	  Removed script block from: OEBPS/nautinights_adc.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c02_r1.xhtml
	  Removed script block from: OEBPS/nautinights_ch13.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c23_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c19_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c26_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c02_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c01_r1.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c16_r1.html
	  Removed script block from: OEBPS/nautinights_ch18.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c06_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_ata_r1.html
	  Removed script block from: OEBPS/nautinights_ch23.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c22_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c19_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c07_r1.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c08_r1.xhtml
	  Removed script block from: OEBPS/nautiboy_ch08.html
	  Removed script block from: OEBPS/nautinights_ded.html
	  Removed script block from: OEBPS/nautiboy_fm01.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_fm2_r1.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_c01_r1.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_toc_r1.html
	  Removed script block from: OEBPS/nautinights_ch12.html
	  Removed script block from: OEBPS/leig_9781101185193_oeb_c04_r1.xhtml
	  Removed script block from: OEBPS/nautiboy_ch04.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c14_r1.html
	  Removed script block from: OEBPS/leig_9781101032459_oeb_c09_r1.html
	  Removed script block from: OEBPS/leig_9780425219515_oeb_bm1_r1.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_fm2_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_bm1_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_tit.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch22.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch20.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c06_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch03.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch17.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_tp_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_ded_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch01.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch24.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c20_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_rev.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c10_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c09_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch19.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c20_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_cop.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_fm2_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch13.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c03_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c09_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c12_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c07_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c18_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_fm4_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c10_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c06_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch11.html
	  Removed Kobo HEAD elements from: OEBPS/TOC.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c25_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch17.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch07.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c03_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch19.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c15_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c08_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch05.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c21_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch21.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch10.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_pro.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c11_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c23_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c18_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ack01.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_con01.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_tit.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch04.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c01_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch10.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch08.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_cop.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_fm3_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c12_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch06.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c21_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c08_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch24.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_fm3_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c11_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_fm1_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_ded_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch23.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c13_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_cop_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c14_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_con01.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c17_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c16_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_tp_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch18.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c05_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch02.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c05_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c24_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch06.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_fm1_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c14_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_tp_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_toc_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch14.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c04_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_toc_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c15_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c15_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Titlepage.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c24_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch16.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c13_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch16.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_cov.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c03_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch22.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch15.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c21_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c17_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch20.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch07.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch11.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch09.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch15.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch05.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch14.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c18_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c22_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c02_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch21.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch09.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c04_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch01.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c12_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c11_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c17_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_fm3_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/nautinights_rev.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c20_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c13_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c16_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_cop_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_ded_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch12.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c19_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c05_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c10_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_fm1_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_bm1_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c07_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_cop_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch02.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch03.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_adc.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c02_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch13.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c23_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c19_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c26_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c02_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c01_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c16_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch18.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c06_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_ata_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch23.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c22_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c19_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c07_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c08_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch08.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ded.html
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_fm01.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_fm2_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_c01_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_toc_r1.html
	  Removed Kobo HEAD elements from: OEBPS/nautinights_ch12.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101185193_oeb_c04_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/nautiboy_ch04.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c14_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101032459_oeb_c09_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425219515_oeb_bm1_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_fm2_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_bm1_r1.html
	  Stripped Kobo spans in: OEBPS/nautinights_tit.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch22.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch20.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c06_r1.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch03.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch17.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_tp_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_ded_r1.xhtml
	  Stripped Kobo spans in: OEBPS/nautinights_ch01.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch24.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c20_r1.html
	  Stripped Kobo spans in: OEBPS/nautiboy_rev.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c10_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c09_r1.xhtml
	  Stripped Kobo spans in: OEBPS/nautiboy_ch19.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c20_r1.html
	  Stripped Kobo spans in: OEBPS/nautiboy_cop.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_fm2_r1.xhtml
	  Stripped Kobo spans in: OEBPS/nautiboy_ch13.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c03_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c09_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c12_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c07_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c18_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_fm4_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c10_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c06_r1.xhtml
	  Stripped Kobo spans in: OEBPS/nautinights_ch11.html
	  Stripped Kobo spans in: OEBPS/TOC.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c25_r1.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch17.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch07.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c03_r1.xhtml
	  Stripped Kobo spans in: OEBPS/nautinights_ch19.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c15_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c08_r1.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch05.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c21_r1.xhtml
	  Stripped Kobo spans in: OEBPS/nautinights_ch21.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch10.html
	  Stripped Kobo spans in: OEBPS/nautinights_pro.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c11_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c23_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c18_r1.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ack01.html
	  Stripped Kobo spans in: OEBPS/nautiboy_con01.html
	  Stripped Kobo spans in: OEBPS/nautiboy_tit.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch04.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c01_r1.xhtml
	  Stripped Kobo spans in: OEBPS/nautiboy_ch10.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch08.html
	  Stripped Kobo spans in: OEBPS/nautinights_cop.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_fm3_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c12_r1.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch06.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c21_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c08_r1.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch24.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_fm3_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c11_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_fm1_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_ded_r1.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch23.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c13_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_cop_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c14_r1.html
	  Stripped Kobo spans in: OEBPS/nautinights_con01.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c17_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c16_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_tp_r1.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch18.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c05_r1.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch02.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c05_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c24_r1.xhtml
	  Stripped Kobo spans in: OEBPS/nautiboy_ch06.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_fm1_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c14_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_tp_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_toc_r1.xhtml
	  Stripped Kobo spans in: OEBPS/nautinights_ch14.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c04_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_toc_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c15_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c15_r1.xhtml
	  Stripped Kobo spans in: OEBPS/Titlepage.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c24_r1.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch16.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c13_r1.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch16.html
	  Stripped Kobo spans in: OEBPS/nautiboy_cov.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c03_r1.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch22.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch15.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c21_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c17_r1.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch20.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch07.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch11.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch09.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch15.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch05.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch14.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c18_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c22_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c02_r1.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch21.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch09.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c04_r1.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch01.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c12_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c11_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c17_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_fm3_r1.xhtml
	  Stripped Kobo spans in: OEBPS/nautinights_rev.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c20_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c13_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c16_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_cop_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_ded_r1.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch12.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c19_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c05_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c10_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_fm1_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_bm1_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c07_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_cop_r1.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch02.html
	  Stripped Kobo spans in: OEBPS/nautiboy_ch03.html
	  Stripped Kobo spans in: OEBPS/nautinights_adc.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c02_r1.xhtml
	  Stripped Kobo spans in: OEBPS/nautinights_ch13.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c23_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c19_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c26_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c02_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c01_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c16_r1.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch18.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c06_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_ata_r1.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch23.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c22_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c19_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c07_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c08_r1.xhtml
	  Stripped Kobo spans in: OEBPS/nautiboy_ch08.html
	  Stripped Kobo spans in: OEBPS/nautinights_ded.html
	  Stripped Kobo spans in: OEBPS/nautiboy_fm01.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_fm2_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_c01_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_toc_r1.html
	  Stripped Kobo spans in: OEBPS/nautinights_ch12.html
	  Stripped Kobo spans in: OEBPS/leig_9781101185193_oeb_c04_r1.xhtml
	  Stripped Kobo spans in: OEBPS/nautiboy_ch04.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c14_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781101032459_oeb_c09_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425219515_oeb_bm1_r1.html
ePub updated in 10.27 seconds

Logfile for book ID 45 (Dark Truth / Lindsay McKenna)
45
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\45.epub
Parsing xml file: content.opf
Parsing xml file: toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part12.html
	  Removed script block from: OEBPS/part6.html
	  Removed script block from: OEBPS/part14.html
	  Removed script block from: OEBPS/coverPage.html
	  Removed script block from: OEBPS/part15.html
	  Removed script block from: OEBPS/part10.html
	  Removed script block from: OEBPS/part5.html
	  Removed script block from: OEBPS/part16.html
	  Removed script block from: OEBPS/part0.html
	  Removed script block from: OEBPS/part4.html
	  Removed script block from: OEBPS/part1.html
	  Removed script block from: OEBPS/part11.html
	  Removed script block from: OEBPS/part13.html
	  Removed script block from: OEBPS/part7.html
	  Removed script block from: OEBPS/part3.html
	  Removed script block from: OEBPS/part2.html
	  Removed script block from: OEBPS/part9.html
	  Removed script block from: OEBPS/part8.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OEBPS/part12.html
	  Stripped spans in: OEBPS/part6.html
	  Stripped spans in: OEBPS/part14.html
	  Stripped spans in: OEBPS/part15.html
	  Stripped spans in: OEBPS/part10.html
	  Stripped spans in: OEBPS/part5.html
	  Stripped spans in: OEBPS/part16.html
	  Stripped spans in: OEBPS/part0.html
	  Stripped spans in: OEBPS/part4.html
	  Stripped spans in: OEBPS/part1.html
	  Stripped spans in: OEBPS/part11.html
	  Stripped spans in: OEBPS/part13.html
	  Stripped spans in: OEBPS/part7.html
	  Stripped spans in: OEBPS/part3.html
	  Stripped spans in: OEBPS/part2.html
	  Stripped spans in: OEBPS/part9.html
	  Stripped spans in: OEBPS/part8.html
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part12.html
	  Removed Kobo HEAD elements from: OEBPS/part6.html
	  Removed Kobo HEAD elements from: OEBPS/part14.html
	  Removed Kobo HEAD elements from: OEBPS/coverPage.html
	  Removed Kobo HEAD elements from: OEBPS/part15.html
	  Removed Kobo HEAD elements from: OEBPS/part10.html
	  Removed Kobo HEAD elements from: OEBPS/part5.html
	  Removed Kobo HEAD elements from: OEBPS/part16.html
	  Removed Kobo HEAD elements from: OEBPS/part0.html
	  Removed Kobo HEAD elements from: OEBPS/part4.html
	  Removed Kobo HEAD elements from: OEBPS/part1.html
	  Removed Kobo HEAD elements from: OEBPS/part11.html
	  Removed Kobo HEAD elements from: OEBPS/part13.html
	  Removed Kobo HEAD elements from: OEBPS/part7.html
	  Removed Kobo HEAD elements from: OEBPS/part3.html
	  Removed Kobo HEAD elements from: OEBPS/part2.html
	  Removed Kobo HEAD elements from: OEBPS/part9.html
	  Removed Kobo HEAD elements from: OEBPS/part8.html
	  Stripped Kobo spans in: OEBPS/part12.html
	  Stripped Kobo spans in: OEBPS/part6.html
	  Stripped Kobo spans in: OEBPS/part14.html
	  Stripped Kobo spans in: OEBPS/coverPage.html
	  Stripped Kobo spans in: OEBPS/part15.html
	  Stripped Kobo spans in: OEBPS/part10.html
	  Stripped Kobo spans in: OEBPS/part5.html
	  Stripped Kobo spans in: OEBPS/part16.html
	  Stripped Kobo spans in: OEBPS/part0.html
	  Stripped Kobo spans in: OEBPS/part4.html
	  Stripped Kobo spans in: OEBPS/part1.html
	  Stripped Kobo spans in: OEBPS/part11.html
	  Stripped Kobo spans in: OEBPS/part13.html
	  Stripped Kobo spans in: OEBPS/part7.html
	  Stripped Kobo spans in: OEBPS/part3.html
	  Stripped Kobo spans in: OEBPS/part2.html
	  Stripped Kobo spans in: OEBPS/part9.html
	  Stripped Kobo spans in: OEBPS/part8.html
ePub updated in 2.07 seconds

Logfile for book ID 44 (Tiger / Tash Aw)
44
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\44.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/9780993648410-_Tiger-6.xhtml
	  Removed script block from: OEBPS/9780993648410-_Tiger-5.xhtml
	  Removed script block from: OEBPS/9780993648410-_Tiger-3.xhtml
	  Removed script block from: OEBPS/9780993648410-_Tiger-2.xhtml
	  Removed script block from: OEBPS/9780993648410-_Tiger-1.xhtml
	  Removed script block from: OEBPS/9780993648410-_Tiger.xhtml
	  Removed script block from: OEBPS/CoverImage.xhtml
	  Removed script block from: OEBPS/9780993648410-_Tiger-4.xhtml
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	  Manifest item removed: js/kobo.js (js-kobo.js)
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OEBPS/9780993648410-_Tiger-3.xhtml
	  Stripped spans in: OEBPS/9780993648410-_Tiger.xhtml
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Manifest item removed: css/kobo.css (css-kobo.css)
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/9780993648410-_Tiger-6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9780993648410-_Tiger-5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9780993648410-_Tiger-3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9780993648410-_Tiger-2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9780993648410-_Tiger-1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9780993648410-_Tiger.xhtml
	  Removed Kobo HEAD elements from: OEBPS/CoverImage.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9780993648410-_Tiger-4.xhtml
	  Stripped Kobo spans in: OEBPS/9780993648410-_Tiger-6.xhtml
	  Stripped Kobo spans in: OEBPS/9780993648410-_Tiger-5.xhtml
	  Stripped Kobo spans in: OEBPS/9780993648410-_Tiger-3.xhtml
	  Stripped Kobo spans in: OEBPS/9780993648410-_Tiger-2.xhtml
	  Stripped Kobo spans in: OEBPS/9780993648410-_Tiger-1.xhtml
	  Stripped Kobo spans in: OEBPS/9780993648410-_Tiger.xhtml
	  Stripped Kobo spans in: OEBPS/CoverImage.xhtml
	  Stripped Kobo spans in: OEBPS/9780993648410-_Tiger-4.xhtml
ePub updated in 0.70 seconds

Logfile for book ID 46 (Nailed to the Wall: Powertools, Book 5 / Jayne Rylon)
46
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\46.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 4.52 seconds

Logfile for book ID 42 (Dangerous Pleasure / Lora Leigh)
42
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\42.epub
Parsing xml file: OEBPS/package.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/xhtml/chapter12.html
	  Removed script block from: OEBPS/xhtml/chapter1.html
	  Removed script block from: OEBPS/xhtml/chapter13.html
	  Removed script block from: OEBPS/xhtml/chapter16.html
	  Removed script block from: OEBPS/xhtml/contents.html
	  Removed script block from: OEBPS/xhtml/chapter7.html
	  Removed script block from: OEBPS/xhtml/chapter10.html
	  Removed script block from: OEBPS/xhtml/chapter15.html
	  Removed script block from: OEBPS/xhtml/authorsnote.html
	  Removed script block from: OEBPS/xhtml/chapter3.html
	  Removed script block from: OEBPS/xhtml/chapter9.html
	  Removed script block from: OEBPS/xhtml/chapter5.html
	  Removed script block from: OEBPS/xhtml/adcard.html
	  Removed script block from: OEBPS/xhtml/epilogue.html
	  Removed script block from: OEBPS/xhtml/copyright.html
	  Removed script block from: OEBPS/xhtml/chapter11.html
	  Removed script block from: OEBPS/xhtml/chapter2.html
	  Removed script block from: OEBPS/xhtml/chapter6.html
	  Removed script block from: OEBPS/xhtml/chapter8.html
	  Removed script block from: OEBPS/xhtml/epigraph.html
	  Removed script block from: OEBPS/xhtml/chapter14.html
	  Removed script block from: OEBPS/xhtml/prologue.html
	  Removed script block from: OEBPS/xhtml/title.html
	  Removed script block from: OEBPS/xhtml/chapter4.html
	  Removed script block from: OEBPS/xhtml/cover.xml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter12.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter1.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter13.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter16.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/contents.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter7.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter10.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter15.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/authorsnote.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter3.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter9.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter5.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/adcard.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/epilogue.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/copyright.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter11.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter2.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter6.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter8.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/epigraph.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter14.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/prologue.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/title.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter4.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/cover.xml
	  Stripped Kobo spans in: OEBPS/xhtml/chapter12.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter1.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter13.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter16.html
	  Stripped Kobo spans in: OEBPS/xhtml/contents.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter7.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter10.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter15.html
	  Stripped Kobo spans in: OEBPS/xhtml/authorsnote.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter3.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter9.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter5.html
	  Stripped Kobo spans in: OEBPS/xhtml/adcard.html
	  Stripped Kobo spans in: OEBPS/xhtml/epilogue.html
	  Stripped Kobo spans in: OEBPS/xhtml/copyright.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter11.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter2.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter6.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter8.html
	  Stripped Kobo spans in: OEBPS/xhtml/epigraph.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter14.html
	  Stripped Kobo spans in: OEBPS/xhtml/prologue.html
	  Stripped Kobo spans in: OEBPS/xhtml/title.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter4.html
	  Stripped Kobo spans in: OEBPS/xhtml/cover.xml
ePub updated in 1.47 seconds

Logfile for book ID 43 (Tiger Magic / Jennifer Ashley)
43
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\43.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/9781101623404_EPUB-13.xhtml
	  Removed script block from: OEBPS/toc.html
	  Removed script block from: OEBPS/9781101623404_EPUB-20.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-35.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-33.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-30.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-8.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-34.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-26.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-28.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-32.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-9.xhtml
	  Removed script block from: OEBPS/GlobalBackad.html
	  Removed script block from: OEBPS/9781101623404_EPUB-4.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-2.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-1.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-15.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-36.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-17.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-5.xhtml
	  Removed script block from: OEBPS/CoverImage.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-16.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-3.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-22.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-24.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-27.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-7.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-12.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-23.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-19.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-31.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-25.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-29.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-10.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-6.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-21.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-11.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-18.xhtml
	  Removed script block from: OEBPS/9781101623404_EPUB-14.xhtml
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OEBPS/9781101623404_EPUB-3.xhtml
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-13.xhtml
	  Removed Kobo HEAD elements from: OEBPS/toc.html
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-20.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-35.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-33.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-30.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-8.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-34.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-26.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-28.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-32.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-9.xhtml
	  Removed Kobo HEAD elements from: OEBPS/GlobalBackad.html
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-4.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-15.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-36.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-17.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/CoverImage.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-16.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-22.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-24.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-27.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-7.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-12.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-23.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-19.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-31.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-25.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-29.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-10.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-21.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-11.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-18.xhtml
	  Removed Kobo HEAD elements from: OEBPS/9781101623404_EPUB-14.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-13.xhtml
	  Stripped Kobo spans in: OEBPS/toc.html
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-20.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-35.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-33.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-30.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-8.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-34.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-26.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-28.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-32.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-9.xhtml
	  Stripped Kobo spans in: OEBPS/GlobalBackad.html
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-4.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-2.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-1.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-15.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-36.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-17.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-5.xhtml
	  Stripped Kobo spans in: OEBPS/CoverImage.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-16.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-3.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-22.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-24.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-27.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-7.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-12.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-23.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-19.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-31.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-25.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-29.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-10.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-6.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-21.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-11.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-18.xhtml
	  Stripped Kobo spans in: OEBPS/9781101623404_EPUB-14.xhtml
ePub updated in 2.05 seconds

Logfile for book ID 40 (The Wallflower: Halle Pumas, Book One / Bell, Dana Marie)
40
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\40.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/toc.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section18.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section20.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section19.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/toc.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section18.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section20.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section19.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section18.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section20.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section19.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 0.83 seconds

Logfile for book ID 39 (Strength of Three / Annmarie McKenna)
39
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\39.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part5.html
	  Removed script block from: OEBPS/part3.html
	  Removed script block from: OEBPS/part4.html
	  Removed script block from: OEBPS/title.html
	  Removed script block from: OEBPS/part7.html
	  Removed script block from: OEBPS/part6.html
	  Removed script block from: OEBPS/part1.html
	  Removed script block from: OEBPS/part2.html
	  Removed script block from: OEBPS/part9.html
	  Removed script block from: OEBPS/part8.html
	  Removed script block from: OEBPS/toc.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part5.html
	  Removed Kobo HEAD elements from: OEBPS/part3.html
	  Removed Kobo HEAD elements from: OEBPS/part4.html
	  Removed Kobo HEAD elements from: OEBPS/title.html
	  Removed Kobo HEAD elements from: OEBPS/part7.html
	  Removed Kobo HEAD elements from: OEBPS/part6.html
	  Removed Kobo HEAD elements from: OEBPS/part1.html
	  Removed Kobo HEAD elements from: OEBPS/part2.html
	  Removed Kobo HEAD elements from: OEBPS/part9.html
	  Removed Kobo HEAD elements from: OEBPS/part8.html
	  Removed Kobo HEAD elements from: OEBPS/toc.html
	  Stripped Kobo spans in: OEBPS/part5.html
	  Stripped Kobo spans in: OEBPS/part3.html
	  Stripped Kobo spans in: OEBPS/part4.html
	  Stripped Kobo spans in: OEBPS/title.html
	  Stripped Kobo spans in: OEBPS/part7.html
	  Stripped Kobo spans in: OEBPS/part6.html
	  Stripped Kobo spans in: OEBPS/part1.html
	  Stripped Kobo spans in: OEBPS/part2.html
	  Stripped Kobo spans in: OEBPS/part9.html
	  Stripped Kobo spans in: OEBPS/part8.html
	  Stripped Kobo spans in: OEBPS/toc.html
ePub updated in 0.86 seconds

Logfile for book ID 41 (WickedNightBeforeChristmas / Tierney O'Malley)
41
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\41.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part5.xhtml
	  Removed script block from: OEBPS/part6.xhtml
	  Removed script block from: OEBPS/part3.xhtml
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/part4.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/title.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part4.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part5.xhtml
	  Stripped Kobo spans in: OEBPS/part6.xhtml
	  Stripped Kobo spans in: OEBPS/part3.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/part4.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
ePub updated in 1.94 seconds

Logfile for book ID 38 (Morgan's Surprise: Powertools, Book 2 / Jayne Rylon)
38
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\38.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 0.77 seconds

Logfile for book ID 37 (Morgan’s Mercenaries: Man Of Passion / Lindsay McKenna)
37
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\37.epub
Parsing xml file: content.opf
Parsing xml file: toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part5.html
	  Removed script block from: OEBPS/part4.html
	  Removed script block from: OEBPS/part11.html
	  Removed script block from: OEBPS/coverPage.html
	  Removed script block from: OEBPS/part9.html
	  Removed script block from: OEBPS/part7.html
	  Removed script block from: OEBPS/part10.html
	  Removed script block from: OEBPS/part0.html
	  Removed script block from: OEBPS/part2.html
	  Removed script block from: OEBPS/part6.html
	  Removed script block from: OEBPS/part3.html
	  Removed script block from: OEBPS/part8.html
	  Removed script block from: OEBPS/part1.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OEBPS/part5.html
	  Stripped spans in: OEBPS/part4.html
	  Stripped spans in: OEBPS/part11.html
	  Stripped spans in: OEBPS/part9.html
	  Stripped spans in: OEBPS/part7.html
	  Stripped spans in: OEBPS/part10.html
	  Stripped spans in: OEBPS/part0.html
	  Stripped spans in: OEBPS/part2.html
	  Stripped spans in: OEBPS/part6.html
	  Stripped spans in: OEBPS/part3.html
	  Stripped spans in: OEBPS/part8.html
	  Stripped spans in: OEBPS/part1.html
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part5.html
	  Removed Kobo HEAD elements from: OEBPS/part4.html
	  Removed Kobo HEAD elements from: OEBPS/part11.html
	  Removed Kobo HEAD elements from: OEBPS/coverPage.html
	  Removed Kobo HEAD elements from: OEBPS/part9.html
	  Removed Kobo HEAD elements from: OEBPS/part7.html
	  Removed Kobo HEAD elements from: OEBPS/part10.html
	  Removed Kobo HEAD elements from: OEBPS/part0.html
	  Removed Kobo HEAD elements from: OEBPS/part2.html
	  Removed Kobo HEAD elements from: OEBPS/part6.html
	  Removed Kobo HEAD elements from: OEBPS/part3.html
	  Removed Kobo HEAD elements from: OEBPS/part8.html
	  Removed Kobo HEAD elements from: OEBPS/part1.html
	  Stripped Kobo spans in: OEBPS/part5.html
	  Stripped Kobo spans in: OEBPS/part4.html
	  Stripped Kobo spans in: OEBPS/part11.html
	  Stripped Kobo spans in: OEBPS/coverPage.html
	  Stripped Kobo spans in: OEBPS/part9.html
	  Stripped Kobo spans in: OEBPS/part7.html
	  Stripped Kobo spans in: OEBPS/part10.html
	  Stripped Kobo spans in: OEBPS/part0.html
	  Stripped Kobo spans in: OEBPS/part2.html
	  Stripped Kobo spans in: OEBPS/part6.html
	  Stripped Kobo spans in: OEBPS/part3.html
	  Stripped Kobo spans in: OEBPS/part8.html
	  Stripped Kobo spans in: OEBPS/part1.html
ePub updated in 1.40 seconds

Logfile for book ID 36 (Coyote's Mate / Leigh, Lora)
36
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\36.epub
Parsing xml file: OEBPS/leig_9781440698200_oeb_opf_r1.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/leig_9781440698200_oeb_fm1_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_bm2_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c11_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c03_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_bm3_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c19_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c13_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_cover_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c04_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c14_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c12_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c26_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c05_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_fm3_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c06_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c08_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c24_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c09_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_tp_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c25_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c02_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_bm1_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c20_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c23_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c01_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c10_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c18_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c21_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c16_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c17_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c07_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_cop_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_fm2_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_toc_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c15_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_tea_r1.html
	  Removed script block from: OEBPS/leig_9781440698200_oeb_c22_r1.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_fm1_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_bm2_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c11_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c03_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_bm3_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c19_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c13_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_cover_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c04_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c14_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c12_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c26_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c05_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_fm3_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c06_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c08_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c24_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c09_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_tp_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c25_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c02_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_bm1_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c20_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c23_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c01_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c10_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c18_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c21_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c16_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c17_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c07_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_cop_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_fm2_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_toc_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c15_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_tea_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9781440698200_oeb_c22_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_fm1_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_bm2_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c11_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c03_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_bm3_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c19_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c13_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_cover_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c04_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c14_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c12_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c26_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c05_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_fm3_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c06_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c08_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c24_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c09_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_tp_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c25_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c02_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_bm1_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c20_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c23_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c01_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c10_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c18_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c21_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c16_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c17_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c07_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_cop_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_fm2_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c15_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_tea_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9781440698200_oeb_c22_r1.html
ePub updated in 2.54 seconds

Logfile for book ID 35 (The Shadow Wolf / Bonnie Vanak)
35
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\35.epub
Parsing xml file: OEBPS/9781459212459.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/9781459212459_dm01.html
	  Removed script block from: OEBPS/9781459212459_ch08.html
	  Removed script block from: OEBPS/9781459212459_ch14.html
	  Removed script block from: OEBPS/9781459212459_ch03.html
	  Removed script block from: OEBPS/9781459212459_ch33.html
	  Removed script block from: OEBPS/9781459212459_ch01.html
	  Removed script block from: OEBPS/9781459212459_ch22.html
	  Removed script block from: OEBPS/9781459212459_ch18.html
	  Removed script block from: OEBPS/9781459212459_ch09.html
	  Removed script block from: OEBPS/9781459212459_ded01.html
	  Removed script block from: OEBPS/9781459212459_ch06.html
	  Removed script block from: OEBPS/9781459212459_ch11.html
	  Removed script block from: OEBPS/9781459212459_cov.html
	  Removed script block from: OEBPS/9781459212459_ch29.html
	  Removed script block from: OEBPS/9781459212459_ch24.html
	  Removed script block from: OEBPS/9781459212459_ch04.html
	  Removed script block from: OEBPS/9781459212459_ch15.html
	  Removed script block from: OEBPS/9781459212459_ch05.html
	  Removed script block from: OEBPS/9781459212459_ch21.html
	  Removed script block from: OEBPS/9781459212459_ch23.html
	  Removed script block from: OEBPS/9781459212459_tp01.html
	  Removed script block from: OEBPS/9781459212459_ch26.html
	  Removed script block from: OEBPS/9781459212459_ch28.html
	  Removed script block from: OEBPS/9781459212459_ch31.html
	  Removed script block from: OEBPS/9781459212459_ch07.html
	  Removed script block from: OEBPS/9781459212459_ch10.html
	  Removed script block from: OEBPS/9781459212459_cop01.html
	  Removed script block from: OEBPS/9781459212459_ch27.html
	  Removed script block from: OEBPS/9781459212459_ch12.html
	  Removed script block from: OEBPS/9781459212459_ch35.html
	  Removed script block from: OEBPS/9781459212459_ch25.html
	  Removed script block from: OEBPS/9781459212459_fm02.html
	  Removed script block from: OEBPS/9781459212459_con01.html
	  Removed script block from: OEBPS/9781459212459_ch30.html
	  Removed script block from: OEBPS/9781459212459_ch32.html
	  Removed script block from: OEBPS/9781459212459_ch34.html
	  Removed script block from: OEBPS/9781459212459_ch13.html
	  Removed script block from: OEBPS/9781459212459_ch02.html
	  Removed script block from: OEBPS/9781459212459_ata01.html
	  Removed script block from: OEBPS/9781459212459_ch20.html
	  Removed script block from: OEBPS/9781459212459_ch19.html
	  Removed script block from: OEBPS/9781459212459_ch17.html
	  Removed script block from: OEBPS/9781459212459_ch16.html
	  Removed script block from: OEBPS/9781459212459_fm01.html
	  Removed script block from: OEBPS/9781459212459_adc01.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_dm01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch08.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch14.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch03.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch33.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch22.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch18.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch09.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ded01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch06.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch11.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_cov.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch29.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch24.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch04.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch15.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch05.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch21.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch23.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_tp01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch26.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch28.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch31.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch07.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch10.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch27.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch12.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch35.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch25.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_fm02.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_con01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch30.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch32.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch34.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch13.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch02.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ata01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch20.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch19.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch17.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_ch16.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_fm01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459212459_adc01.html
	  Stripped Kobo spans in: OEBPS/9781459212459_dm01.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch08.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch14.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch03.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch33.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch01.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch22.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch18.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch09.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ded01.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch06.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch11.html
	  Stripped Kobo spans in: OEBPS/9781459212459_cov.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch29.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch24.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch04.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch15.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch05.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch21.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch23.html
	  Stripped Kobo spans in: OEBPS/9781459212459_tp01.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch26.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch28.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch31.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch07.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch10.html
	  Stripped Kobo spans in: OEBPS/9781459212459_cop01.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch27.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch12.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch35.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch25.html
	  Stripped Kobo spans in: OEBPS/9781459212459_fm02.html
	  Stripped Kobo spans in: OEBPS/9781459212459_con01.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch30.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch32.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch34.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch13.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch02.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ata01.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch20.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch19.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch17.html
	  Stripped Kobo spans in: OEBPS/9781459212459_ch16.html
	  Stripped Kobo spans in: OEBPS/9781459212459_fm01.html
	  Stripped Kobo spans in: OEBPS/9781459212459_adc01.html
ePub updated in 2.70 seconds

Logfile for book ID 34 (Morgan’s Mercenaries: Heart Of The Jaguar / Lindsay McKenna)
34
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\34.epub
Parsing xml file: content.opf
Parsing xml file: toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part12.html
	  Removed script block from: OEBPS/part6.html
	  Removed script block from: OEBPS/part14.html
	  Removed script block from: OEBPS/coverPage.html
	  Removed script block from: OEBPS/part15.html
	  Removed script block from: OEBPS/part10.html
	  Removed script block from: OEBPS/part5.html
	  Removed script block from: OEBPS/part16.html
	  Removed script block from: OEBPS/part0.html
	  Removed script block from: OEBPS/part4.html
	  Removed script block from: OEBPS/part1.html
	  Removed script block from: OEBPS/part11.html
	  Removed script block from: OEBPS/part13.html
	  Removed script block from: OEBPS/part7.html
	  Removed script block from: OEBPS/part3.html
	  Removed script block from: OEBPS/part17.html
	  Removed script block from: OEBPS/part2.html
	  Removed script block from: OEBPS/part9.html
	  Removed script block from: OEBPS/part8.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OEBPS/part12.html
	  Stripped spans in: OEBPS/part6.html
	  Stripped spans in: OEBPS/part14.html
	  Stripped spans in: OEBPS/part15.html
	  Stripped spans in: OEBPS/part10.html
	  Stripped spans in: OEBPS/part5.html
	  Stripped spans in: OEBPS/part16.html
	  Stripped spans in: OEBPS/part0.html
	  Stripped spans in: OEBPS/part4.html
	  Stripped spans in: OEBPS/part1.html
	  Stripped spans in: OEBPS/part11.html
	  Stripped spans in: OEBPS/part13.html
	  Stripped spans in: OEBPS/part7.html
	  Stripped spans in: OEBPS/part3.html
	  Stripped spans in: OEBPS/part17.html
	  Stripped spans in: OEBPS/part2.html
	  Stripped spans in: OEBPS/part9.html
	  Stripped spans in: OEBPS/part8.html
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part12.html
	  Removed Kobo HEAD elements from: OEBPS/part6.html
	  Removed Kobo HEAD elements from: OEBPS/part14.html
	  Removed Kobo HEAD elements from: OEBPS/coverPage.html
	  Removed Kobo HEAD elements from: OEBPS/part15.html
	  Removed Kobo HEAD elements from: OEBPS/part10.html
	  Removed Kobo HEAD elements from: OEBPS/part5.html
	  Removed Kobo HEAD elements from: OEBPS/part16.html
	  Removed Kobo HEAD elements from: OEBPS/part0.html
	  Removed Kobo HEAD elements from: OEBPS/part4.html
	  Removed Kobo HEAD elements from: OEBPS/part1.html
	  Removed Kobo HEAD elements from: OEBPS/part11.html
	  Removed Kobo HEAD elements from: OEBPS/part13.html
	  Removed Kobo HEAD elements from: OEBPS/part7.html
	  Removed Kobo HEAD elements from: OEBPS/part3.html
	  Removed Kobo HEAD elements from: OEBPS/part17.html
	  Removed Kobo HEAD elements from: OEBPS/part2.html
	  Removed Kobo HEAD elements from: OEBPS/part9.html
	  Removed Kobo HEAD elements from: OEBPS/part8.html
	  Stripped Kobo spans in: OEBPS/part12.html
	  Stripped Kobo spans in: OEBPS/part6.html
	  Stripped Kobo spans in: OEBPS/part14.html
	  Stripped Kobo spans in: OEBPS/coverPage.html
	  Stripped Kobo spans in: OEBPS/part15.html
	  Stripped Kobo spans in: OEBPS/part10.html
	  Stripped Kobo spans in: OEBPS/part5.html
	  Stripped Kobo spans in: OEBPS/part16.html
	  Stripped Kobo spans in: OEBPS/part0.html
	  Stripped Kobo spans in: OEBPS/part4.html
	  Stripped Kobo spans in: OEBPS/part1.html
	  Stripped Kobo spans in: OEBPS/part11.html
	  Stripped Kobo spans in: OEBPS/part13.html
	  Stripped Kobo spans in: OEBPS/part7.html
	  Stripped Kobo spans in: OEBPS/part3.html
	  Stripped Kobo spans in: OEBPS/part17.html
	  Stripped Kobo spans in: OEBPS/part2.html
	  Stripped Kobo spans in: OEBPS/part9.html
	  Stripped Kobo spans in: OEBPS/part8.html
ePub updated in 2.33 seconds

Logfile for book ID 33 (Checkmate / McKenna, Annmarie)
33
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\33.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/section27.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section23.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section26.html
	  Removed script block from: OEBPS/section28.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section25.html
	  Removed script block from: OEBPS/section18.html
	  Removed script block from: OEBPS/section22.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section20.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section24.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section19.html
	  Removed script block from: OEBPS/section21.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/section27.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section23.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section26.html
	  Removed Kobo HEAD elements from: OEBPS/section28.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section25.html
	  Removed Kobo HEAD elements from: OEBPS/section18.html
	  Removed Kobo HEAD elements from: OEBPS/section22.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section20.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section24.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section19.html
	  Removed Kobo HEAD elements from: OEBPS/section21.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section27.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section23.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section26.html
	  Stripped Kobo spans in: OEBPS/section28.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section25.html
	  Stripped Kobo spans in: OEBPS/section18.html
	  Stripped Kobo spans in: OEBPS/section22.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section20.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section24.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section19.html
	  Stripped Kobo spans in: OEBPS/section21.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 1.59 seconds

Logfile for book ID 32 (The Rock Star And The Girl From The Coffee Shop / Terry Towers)
32
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\32.epub
Parsing xml file: content.opf
Parsing xml file: toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: index_split_011.xhtml
	  Removed script block from: index_split_005.xhtml
	  Removed script block from: index_split_013.xhtml
	  Removed script block from: index_split_006.xhtml
	  Removed script block from: index_split_009.xhtml
	  Removed script block from: index_split_008.xhtml
	  Removed script block from: index_split_014.xhtml
	  Removed script block from: index_split_010.xhtml
	  Removed script block from: index_split_017.xhtml
	  Removed script block from: index_split_001.xhtml
	  Removed script block from: index_split_002.xhtml
	  Removed script block from: titlepage.xhtml
	  Removed script block from: index_split_016.xhtml
	  Removed script block from: index_split_000.xhtml
	  Removed script block from: index_split_015.xhtml
	  Removed script block from: index_split_018.xhtml
	  Removed script block from: index_split_007.xhtml
	  Removed script block from: index_split_003.xhtml
	  Removed script block from: index_split_004.xhtml
	  Removed script block from: index_split_012.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: index_split_011.xhtml
	  Removed Kobo HEAD elements from: index_split_005.xhtml
	  Removed Kobo HEAD elements from: index_split_013.xhtml
	  Removed Kobo HEAD elements from: index_split_006.xhtml
	  Removed Kobo HEAD elements from: index_split_009.xhtml
	  Removed Kobo HEAD elements from: index_split_008.xhtml
	  Removed Kobo HEAD elements from: index_split_014.xhtml
	  Removed Kobo HEAD elements from: index_split_010.xhtml
	  Removed Kobo HEAD elements from: index_split_017.xhtml
	  Removed Kobo HEAD elements from: index_split_001.xhtml
	  Removed Kobo HEAD elements from: index_split_002.xhtml
	  Removed Kobo HEAD elements from: titlepage.xhtml
	  Removed Kobo HEAD elements from: index_split_016.xhtml
	  Removed Kobo HEAD elements from: index_split_000.xhtml
	  Removed Kobo HEAD elements from: index_split_015.xhtml
	  Removed Kobo HEAD elements from: index_split_018.xhtml
	  Removed Kobo HEAD elements from: index_split_007.xhtml
	  Removed Kobo HEAD elements from: index_split_003.xhtml
	  Removed Kobo HEAD elements from: index_split_004.xhtml
	  Removed Kobo HEAD elements from: index_split_012.xhtml
	  Stripped Kobo spans in: index_split_011.xhtml
	  Stripped Kobo spans in: index_split_005.xhtml
	  Stripped Kobo spans in: index_split_013.xhtml
	  Stripped Kobo spans in: index_split_006.xhtml
	  Stripped Kobo spans in: index_split_009.xhtml
	  Stripped Kobo spans in: index_split_008.xhtml
	  Stripped Kobo spans in: index_split_014.xhtml
	  Stripped Kobo spans in: index_split_010.xhtml
	  Stripped Kobo spans in: index_split_017.xhtml
	  Stripped Kobo spans in: index_split_001.xhtml
	  Stripped Kobo spans in: index_split_002.xhtml
	  Stripped Kobo spans in: titlepage.xhtml
	  Stripped Kobo spans in: index_split_016.xhtml
	  Stripped Kobo spans in: index_split_000.xhtml
	  Stripped Kobo spans in: index_split_015.xhtml
	  Stripped Kobo spans in: index_split_018.xhtml
	  Stripped Kobo spans in: index_split_007.xhtml
	  Stripped Kobo spans in: index_split_003.xhtml
	  Stripped Kobo spans in: index_split_004.xhtml
	  Stripped Kobo spans in: index_split_012.xhtml
ePub updated in 1.24 seconds

Logfile for book ID 31 (Cat of A Different Color: Halle Pumas, Book Three / Bell, Dana Marie)
31
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\31.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 0.89 seconds

Logfile for book ID 30 (Black Magic Woman / Christine Warren)
30
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\30.epub
Parsing xml file: OEBPS/package.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/xhtml/frontsales.html
	  Removed script block from: OEBPS/xhtml/chapter12.html
	  Removed script block from: OEBPS/xhtml/chapter1.html
	  Removed script block from: OEBPS/xhtml/chapter21.html
	  Removed script block from: OEBPS/xhtml/chapter19.html
	  Removed script block from: OEBPS/xhtml/chapter13.html
	  Removed script block from: OEBPS/xhtml/chapter16.html
	  Removed script block from: OEBPS/xhtml/dedication.html
	  Removed script block from: OEBPS/xhtml/contents.html
	  Removed script block from: OEBPS/xhtml/chapter7.html
	  Removed script block from: OEBPS/xhtml/chapter10.html
	  Removed script block from: OEBPS/xhtml/chapter15.html
	  Removed script block from: OEBPS/xhtml/backad.html
	  Removed script block from: OEBPS/xhtml/reader.html
	  Removed script block from: OEBPS/xhtml/chapter24.html
	  Removed script block from: OEBPS/xhtml/chapter23.html
	  Removed script block from: OEBPS/xhtml/chapter17.html
	  Removed script block from: OEBPS/xhtml/chapter20.html
	  Removed script block from: OEBPS/xhtml/chapter9.html
	  Removed script block from: OEBPS/xhtml/chapter18.html
	  Removed script block from: OEBPS/xhtml/chapter5.html
	  Removed script block from: OEBPS/xhtml/title.html
	  Removed script block from: OEBPS/xhtml/adcard.html
	  Removed script block from: OEBPS/xhtml/footnote.html
	  Removed script block from: OEBPS/xhtml/epilogue.html
	  Removed script block from: OEBPS/xhtml/copyright.html
	  Removed script block from: OEBPS/xhtml/chapter11.html
	  Removed script block from: OEBPS/xhtml/chapter2.html
	  Removed script block from: OEBPS/xhtml/chapter6.html
	  Removed script block from: OEBPS/xhtml/chapter25.html
	  Removed script block from: OEBPS/xhtml/chapter14.html
	  Removed script block from: OEBPS/xhtml/chapter3.html
	  Removed script block from: OEBPS/xhtml/chapter8.html
	  Removed script block from: OEBPS/xhtml/chapter22.html
	  Removed script block from: OEBPS/xhtml/chapter4.html
	  Removed script block from: OEBPS/xhtml/cover.xml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/xhtml/frontsales.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter12.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter1.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter21.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter19.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter13.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter16.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/dedication.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/contents.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter7.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter10.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter15.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/backad.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/reader.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter24.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter23.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter17.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter20.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter9.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter18.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter5.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/title.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/adcard.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/footnote.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/epilogue.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/copyright.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter11.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter2.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter6.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter25.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter14.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter3.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter8.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter22.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter4.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/cover.xml
	  Stripped Kobo spans in: OEBPS/xhtml/frontsales.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter12.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter1.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter21.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter19.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter13.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter16.html
	  Stripped Kobo spans in: OEBPS/xhtml/dedication.html
	  Stripped Kobo spans in: OEBPS/xhtml/contents.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter7.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter10.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter15.html
	  Stripped Kobo spans in: OEBPS/xhtml/backad.html
	  Stripped Kobo spans in: OEBPS/xhtml/reader.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter24.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter23.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter17.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter20.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter9.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter18.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter5.html
	  Stripped Kobo spans in: OEBPS/xhtml/title.html
	  Stripped Kobo spans in: OEBPS/xhtml/adcard.html
	  Stripped Kobo spans in: OEBPS/xhtml/footnote.html
	  Stripped Kobo spans in: OEBPS/xhtml/epilogue.html
	  Stripped Kobo spans in: OEBPS/xhtml/copyright.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter11.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter2.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter6.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter25.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter14.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter3.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter8.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter22.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter4.html
	  Stripped Kobo spans in: OEBPS/xhtml/cover.xml
ePub updated in 1.71 seconds

Logfile for book ID 29 (The Reluctant Vampire / Lynsay Sands)
29
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\29.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/ch13.xhtml
	  Removed script block from: OEBPS/ch16.xhtml
	  Removed script block from: OEBPS/alsoby01.xhtml
	  Removed script block from: OEBPS/abtauthor01.xhtml
	  Removed script block from: OEBPS/ch12.xhtml
	  Removed script block from: OEBPS/ch03.xhtml
	  Removed script block from: OEBPS/ch06.xhtml
	  Removed script block from: OEBPS/copy01.xhtml
	  Removed script block from: OEBPS/ch15.xhtml
	  Removed script block from: OEBPS/ch10.xhtml
	  Removed script block from: OEBPS/praise01.xhtml
	  Removed script block from: OEBPS/ch18.xhtml
	  Removed script block from: OEBPS/teaserpart01.xhtml
	  Removed script block from: OEBPS/ch08.xhtml
	  Removed script block from: OEBPS/ch04.xhtml
	  Removed script block from: OEBPS/ch01.xhtml
	  Removed script block from: OEBPS/ch05.xhtml
	  Removed script block from: OEBPS/ch14.xhtml
	  Removed script block from: OEBPS/ch11.xhtml
	  Removed script block from: OEBPS/teaserch01.xhtml
	  Removed script block from: OEBPS/atp01.xhtml
	  Removed script block from: OEBPS/ch02.xhtml
	  Removed script block from: OEBPS/contents.xhtml
	  Removed script block from: OEBPS/ch09.xhtml
	  Removed script block from: OEBPS/ch07.xhtml
	  Removed script block from: OEBPS/title_page.xhtml
	  Removed script block from: OEBPS/ch17.xhtml
	  Removed script block from: OEBPS/cover.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/ch13.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch16.xhtml
	  Removed Kobo HEAD elements from: OEBPS/alsoby01.xhtml
	  Removed Kobo HEAD elements from: OEBPS/abtauthor01.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch12.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch03.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch06.xhtml
	  Removed Kobo HEAD elements from: OEBPS/copy01.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch15.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch10.xhtml
	  Removed Kobo HEAD elements from: OEBPS/praise01.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch18.xhtml
	  Removed Kobo HEAD elements from: OEBPS/teaserpart01.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch08.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch04.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch01.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch05.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch14.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch11.xhtml
	  Removed Kobo HEAD elements from: OEBPS/teaserch01.xhtml
	  Removed Kobo HEAD elements from: OEBPS/atp01.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch02.xhtml
	  Removed Kobo HEAD elements from: OEBPS/contents.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch09.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch07.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title_page.xhtml
	  Removed Kobo HEAD elements from: OEBPS/ch17.xhtml
	  Removed Kobo HEAD elements from: OEBPS/cover.xhtml
	  Stripped Kobo spans in: OEBPS/ch13.xhtml
	  Stripped Kobo spans in: OEBPS/ch16.xhtml
	  Stripped Kobo spans in: OEBPS/alsoby01.xhtml
	  Stripped Kobo spans in: OEBPS/abtauthor01.xhtml
	  Stripped Kobo spans in: OEBPS/ch12.xhtml
	  Stripped Kobo spans in: OEBPS/ch03.xhtml
	  Stripped Kobo spans in: OEBPS/ch06.xhtml
	  Stripped Kobo spans in: OEBPS/copy01.xhtml
	  Stripped Kobo spans in: OEBPS/ch15.xhtml
	  Stripped Kobo spans in: OEBPS/ch10.xhtml
	  Stripped Kobo spans in: OEBPS/praise01.xhtml
	  Stripped Kobo spans in: OEBPS/ch18.xhtml
	  Stripped Kobo spans in: OEBPS/teaserpart01.xhtml
	  Stripped Kobo spans in: OEBPS/ch08.xhtml
	  Stripped Kobo spans in: OEBPS/ch04.xhtml
	  Stripped Kobo spans in: OEBPS/ch01.xhtml
	  Stripped Kobo spans in: OEBPS/ch05.xhtml
	  Stripped Kobo spans in: OEBPS/ch14.xhtml
	  Stripped Kobo spans in: OEBPS/ch11.xhtml
	  Stripped Kobo spans in: OEBPS/teaserch01.xhtml
	  Stripped Kobo spans in: OEBPS/atp01.xhtml
	  Stripped Kobo spans in: OEBPS/ch02.xhtml
	  Stripped Kobo spans in: OEBPS/contents.xhtml
	  Stripped Kobo spans in: OEBPS/ch09.xhtml
	  Stripped Kobo spans in: OEBPS/ch07.xhtml
	  Stripped Kobo spans in: OEBPS/title_page.xhtml
	  Stripped Kobo spans in: OEBPS/ch17.xhtml
	  Stripped Kobo spans in: OEBPS/cover.xhtml
ePub updated in 2.18 seconds

Logfile for book ID 28 (Black Jack / Lora Leigh)
28
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\28.epub
Parsing xml file: OEBPS/package.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/chapter08.html
	  Removed script block from: OEBPS/chapter14.html
	  Removed script block from: OEBPS/prologue.html
	  Removed script block from: OEBPS/chapter04.html
	  Removed script block from: OEBPS/chapter10.html
	  Removed script block from: OEBPS/ack01.html
	  Removed script block from: OEBPS/title_page.html
	  Removed script block from: OEBPS/chapter15.html
	  Removed script block from: OEBPS/copyright.html
	  Removed script block from: OEBPS/chapter01.html
	  Removed script block from: OEBPS/chapter16.html
	  Removed script block from: OEBPS/chapter11.html
	  Removed script block from: OEBPS/chapter18.html
	  Removed script block from: OEBPS/chapter13.html
	  Removed script block from: OEBPS/chapter07.html
	  Removed script block from: OEBPS/epilogue.html
	  Removed script block from: OEBPS/dedication.html
	  Removed script block from: OEBPS/chapter17.html
	  Removed script block from: OEBPS/chapter03.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/front-matter2.html
	  Removed script block from: OEBPS/chapter06.html
	  Removed script block from: OEBPS/chapter12.html
	  Removed script block from: OEBPS/chapter05.html
	  Removed script block from: OEBPS/chapter09.html
	  Removed script block from: OEBPS/chapter02.html
	  Removed script block from: OEBPS/front-matter1.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/chapter08.html
	  Removed Kobo HEAD elements from: OEBPS/chapter14.html
	  Removed Kobo HEAD elements from: OEBPS/prologue.html
	  Removed Kobo HEAD elements from: OEBPS/chapter04.html
	  Removed Kobo HEAD elements from: OEBPS/chapter10.html
	  Removed Kobo HEAD elements from: OEBPS/ack01.html
	  Removed Kobo HEAD elements from: OEBPS/title_page.html
	  Removed Kobo HEAD elements from: OEBPS/chapter15.html
	  Removed Kobo HEAD elements from: OEBPS/copyright.html
	  Removed Kobo HEAD elements from: OEBPS/chapter01.html
	  Removed Kobo HEAD elements from: OEBPS/chapter16.html
	  Removed Kobo HEAD elements from: OEBPS/chapter11.html
	  Removed Kobo HEAD elements from: OEBPS/chapter18.html
	  Removed Kobo HEAD elements from: OEBPS/chapter13.html
	  Removed Kobo HEAD elements from: OEBPS/chapter07.html
	  Removed Kobo HEAD elements from: OEBPS/epilogue.html
	  Removed Kobo HEAD elements from: OEBPS/dedication.html
	  Removed Kobo HEAD elements from: OEBPS/chapter17.html
	  Removed Kobo HEAD elements from: OEBPS/chapter03.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/front-matter2.html
	  Removed Kobo HEAD elements from: OEBPS/chapter06.html
	  Removed Kobo HEAD elements from: OEBPS/chapter12.html
	  Removed Kobo HEAD elements from: OEBPS/chapter05.html
	  Removed Kobo HEAD elements from: OEBPS/chapter09.html
	  Removed Kobo HEAD elements from: OEBPS/chapter02.html
	  Removed Kobo HEAD elements from: OEBPS/front-matter1.html
	  Stripped Kobo spans in: OEBPS/chapter08.html
	  Stripped Kobo spans in: OEBPS/chapter14.html
	  Stripped Kobo spans in: OEBPS/prologue.html
	  Stripped Kobo spans in: OEBPS/chapter04.html
	  Stripped Kobo spans in: OEBPS/chapter10.html
	  Stripped Kobo spans in: OEBPS/ack01.html
	  Stripped Kobo spans in: OEBPS/title_page.html
	  Stripped Kobo spans in: OEBPS/chapter15.html
	  Stripped Kobo spans in: OEBPS/copyright.html
	  Stripped Kobo spans in: OEBPS/chapter01.html
	  Stripped Kobo spans in: OEBPS/chapter16.html
	  Stripped Kobo spans in: OEBPS/chapter11.html
	  Stripped Kobo spans in: OEBPS/chapter18.html
	  Stripped Kobo spans in: OEBPS/chapter13.html
	  Stripped Kobo spans in: OEBPS/chapter07.html
	  Stripped Kobo spans in: OEBPS/epilogue.html
	  Stripped Kobo spans in: OEBPS/dedication.html
	  Stripped Kobo spans in: OEBPS/chapter17.html
	  Stripped Kobo spans in: OEBPS/chapter03.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/front-matter2.html
	  Stripped Kobo spans in: OEBPS/chapter06.html
	  Stripped Kobo spans in: OEBPS/chapter12.html
	  Stripped Kobo spans in: OEBPS/chapter05.html
	  Stripped Kobo spans in: OEBPS/chapter09.html
	  Stripped Kobo spans in: OEBPS/chapter02.html
	  Stripped Kobo spans in: OEBPS/front-matter1.html
ePub updated in 2.03 seconds

Logfile for book ID 27 (The Rebel / J.R. Ward)
27
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\27.epub
Parsing xml file: OEBPS/9781459207738.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/9781459207738_ch10.html
	  Removed script block from: OEBPS/9781459207738_ded01.html
	  Removed script block from: OEBPS/9781459207738_con01.html
	  Removed script block from: OEBPS/9781459207738_tp01.html
	  Removed script block from: OEBPS/9781459207738_ch01.html
	  Removed script block from: OEBPS/9781459207738_fm01.html
	  Removed script block from: OEBPS/9781459207738_ch16.html
	  Removed script block from: OEBPS/9781459207738_ch08.html
	  Removed script block from: OEBPS/9781459207738_ch14.html
	  Removed script block from: OEBPS/9781459207738_ch04.html
	  Removed script block from: OEBPS/9781459207738_cov.html
	  Removed script block from: OEBPS/9781459207738_cop01.html
	  Removed script block from: OEBPS/9781459207738_ch13.html
	  Removed script block from: OEBPS/9781459207738_ch15.html
	  Removed script block from: OEBPS/9781459207738_ch11.html
	  Removed script block from: OEBPS/9781459207738_ch02.html
	  Removed script block from: OEBPS/9781459207738_ch09.html
	  Removed script block from: OEBPS/9781459207738_adc01.html
	  Removed script block from: OEBPS/9781459207738_htp01.html
	  Removed script block from: OEBPS/9781459207738_ch06.html
	  Removed script block from: OEBPS/9781459207738_ch12.html
	  Removed script block from: OEBPS/9781459207738_ch03.html
	  Removed script block from: OEBPS/9781459207738_rev01.html
	  Removed script block from: OEBPS/9781459207738_ch05.html
	  Removed script block from: OEBPS/9781459207738_ch07.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ch10.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ded01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_con01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_tp01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ch01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_fm01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ch16.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ch08.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ch14.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ch04.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_cov.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ch13.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ch15.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ch11.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ch02.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ch09.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_adc01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_htp01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ch06.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ch12.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ch03.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_rev01.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ch05.html
	  Removed Kobo HEAD elements from: OEBPS/9781459207738_ch07.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ch10.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ded01.html
	  Stripped Kobo spans in: OEBPS/9781459207738_con01.html
	  Stripped Kobo spans in: OEBPS/9781459207738_tp01.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ch01.html
	  Stripped Kobo spans in: OEBPS/9781459207738_fm01.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ch16.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ch08.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ch14.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ch04.html
	  Stripped Kobo spans in: OEBPS/9781459207738_cov.html
	  Stripped Kobo spans in: OEBPS/9781459207738_cop01.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ch13.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ch15.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ch11.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ch02.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ch09.html
	  Stripped Kobo spans in: OEBPS/9781459207738_adc01.html
	  Stripped Kobo spans in: OEBPS/9781459207738_htp01.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ch06.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ch12.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ch03.html
	  Stripped Kobo spans in: OEBPS/9781459207738_rev01.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ch05.html
	  Stripped Kobo spans in: OEBPS/9781459207738_ch07.html
ePub updated in 2.02 seconds

Logfile for book ID 26 (Snow, Jenika - Bittersweet: A Story of Dominance and Submission (Siren Publishing Ménage Amour) / Jenika Snow)
26
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\26.epub
Parsing xml file: content.opf
Parsing xml file: toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_014.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_008.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_016.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_019.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_009.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_003.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_001.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_002.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_017.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_020.html
	  Removed script block from: titlepage.xhtml
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_000.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_004.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_012.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_006.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_010.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_011.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_018.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_005.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_015.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_013.html
	  Removed script block from: Snow_Jenika_-g_Menage_Amour_split_007.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo.js
	Stripping spans
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_014.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_008.html
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_016.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_019.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_009.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_003.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_001.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_002.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_017.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_020.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_000.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_004.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_012.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_006.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_010.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_011.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_018.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_005.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_015.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_013.html
	  Stripped spans in: Snow_Jenika_-g_Menage_Amour_split_007.html
	Stripping Kobo remnants
	  Removed kobo.css file: css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_014.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_008.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_016.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_019.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_009.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_003.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_001.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_002.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_017.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_020.html
	  Removed Kobo HEAD elements from: titlepage.xhtml
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_000.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_004.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_012.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_006.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_010.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_011.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_018.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_005.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_015.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_013.html
	  Removed Kobo HEAD elements from: Snow_Jenika_-g_Menage_Amour_split_007.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_014.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_008.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_016.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_019.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_009.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_003.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_001.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_002.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_017.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_020.html
	  Stripped Kobo spans in: titlepage.xhtml
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_000.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_004.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_012.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_006.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_010.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_011.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_018.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_005.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_015.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_013.html
	  Stripped Kobo spans in: Snow_Jenika_-g_Menage_Amour_split_007.html
ePub updated in 1.66 seconds

Logfile for book ID 25 (The Mane Squeeze / Shelly Laurenston)
25
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\25.epub
Parsing xml file: OEBPS/manesqueezethe.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/manesqueezethe_ch09.html
	  Removed script block from: OEBPS/manesqueezethe_bm02.html
	  Removed script block from: OEBPS/manesqueezethe_contents.html
	  Removed script block from: OEBPS/manesqueezethe_ch01.html
	  Removed script block from: OEBPS/manesqueezethe_ch03.html
	  Removed script block from: OEBPS/manesqueezethe_ch16.html
	  Removed script block from: OEBPS/manesqueezethe_ch14.html
	  Removed script block from: OEBPS/manesqueezethe_ch08.html
	  Removed script block from: OEBPS/manesqueezethe_ch22.html
	  Removed script block from: OEBPS/manesqueezethe_ch19.html
	  Removed script block from: OEBPS/manesqueezethe_tp01.html
	  Removed script block from: OEBPS/manesqueezethe_ch13.html
	  Removed script block from: OEBPS/manesqueezethe_ch28.html
	  Removed script block from: OEBPS/manesqueezethe_cop01.html
	  Removed script block from: OEBPS/manesqueezethe_ch05.html
	  Removed script block from: OEBPS/manesqueezethe_ch15.html
	  Removed script block from: OEBPS/manesqueezethe_ch07.html
	  Removed script block from: OEBPS/manesqueezethe_ch10.html
	  Removed script block from: OEBPS/manesqueezethe_fm01.html
	  Removed script block from: OEBPS/manesqueezethe_bm03.html
	  Removed script block from: OEBPS/manesqueezethe_ch11.html
	  Removed script block from: OEBPS/manesqueezethe_bm01.html
	  Removed script block from: OEBPS/manesqueezethe_ch18.html
	  Removed script block from: OEBPS/manesqueezethe_ch27.html
	  Removed script block from: OEBPS/manesqueezethe_ch23.html
	  Removed script block from: OEBPS/manesqueezethe_bm06.html
	  Removed script block from: OEBPS/manesqueezethe_ch20.html
	  Removed script block from: OEBPS/manesqueezethe_ch25.html
	  Removed script block from: OEBPS/manesqueezethe_ch06.html
	  Removed script block from: OEBPS/manesqueezethe_ch12.html
	  Removed script block from: OEBPS/manesqueezethe_bm05.html
	  Removed script block from: OEBPS/manesqueezethe_bm04.html
	  Removed script block from: OEBPS/manesqueezethe_half01.html
	  Removed script block from: OEBPS/manesqueezethe_ch04.html
	  Removed script block from: OEBPS/manesqueezethe_ch26.html
	  Removed script block from: OEBPS/manesqueezethe_cov.html
	  Removed script block from: OEBPS/manesqueezethe_ch29.html
	  Removed script block from: OEBPS/manesqueezethe_ch17.html
	  Removed script block from: OEBPS/manesqueezethe_ch30.html
	  Removed script block from: OEBPS/manesqueezethe_bm07.html
	  Removed script block from: OEBPS/manesqueezethe_ch21.html
	  Removed script block from: OEBPS/manesqueezethe_ch24.html
	  Removed script block from: OEBPS/manesqueezethe_ch02.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OEBPS/manesqueezethe_ch09.html
	  Stripped spans in: OEBPS/manesqueezethe_bm02.html
	  Stripped spans in: OEBPS/manesqueezethe_contents.html
	  Stripped spans in: OEBPS/manesqueezethe_ch01.html
	  Stripped spans in: OEBPS/manesqueezethe_ch03.html
	  Stripped spans in: OEBPS/manesqueezethe_ch16.html
	  Stripped spans in: OEBPS/manesqueezethe_ch14.html
	  Stripped spans in: OEBPS/manesqueezethe_ch08.html
	  Stripped spans in: OEBPS/manesqueezethe_ch22.html
	  Stripped spans in: OEBPS/manesqueezethe_ch19.html
	  Stripped spans in: OEBPS/manesqueezethe_tp01.html
	  Stripped spans in: OEBPS/manesqueezethe_ch13.html
	  Stripped spans in: OEBPS/manesqueezethe_ch28.html
	  Stripped spans in: OEBPS/manesqueezethe_cop01.html
	  Stripped spans in: OEBPS/manesqueezethe_ch05.html
	  Stripped spans in: OEBPS/manesqueezethe_ch15.html
	  Stripped spans in: OEBPS/manesqueezethe_ch07.html
	  Stripped spans in: OEBPS/manesqueezethe_ch10.html
	  Stripped spans in: OEBPS/manesqueezethe_fm01.html
	  Stripped spans in: OEBPS/manesqueezethe_bm03.html
	  Stripped spans in: OEBPS/manesqueezethe_ch11.html
	  Stripped spans in: OEBPS/manesqueezethe_bm01.html
	  Stripped spans in: OEBPS/manesqueezethe_ch18.html
	  Stripped spans in: OEBPS/manesqueezethe_ch27.html
	  Stripped spans in: OEBPS/manesqueezethe_ch23.html
	  Stripped spans in: OEBPS/manesqueezethe_bm06.html
	  Stripped spans in: OEBPS/manesqueezethe_ch20.html
	  Stripped spans in: OEBPS/manesqueezethe_ch25.html
	  Stripped spans in: OEBPS/manesqueezethe_ch06.html
	  Stripped spans in: OEBPS/manesqueezethe_ch12.html
	  Stripped spans in: OEBPS/manesqueezethe_bm05.html
	  Stripped spans in: OEBPS/manesqueezethe_bm04.html
	  Stripped spans in: OEBPS/manesqueezethe_half01.html
	  Stripped spans in: OEBPS/manesqueezethe_ch04.html
	  Stripped spans in: OEBPS/manesqueezethe_ch26.html
	  Stripped spans in: OEBPS/manesqueezethe_ch29.html
	  Stripped spans in: OEBPS/manesqueezethe_ch17.html
	  Stripped spans in: OEBPS/manesqueezethe_ch30.html
	  Stripped spans in: OEBPS/manesqueezethe_bm07.html
	  Stripped spans in: OEBPS/manesqueezethe_ch21.html
	  Stripped spans in: OEBPS/manesqueezethe_ch24.html
	  Stripped spans in: OEBPS/manesqueezethe_ch02.html
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch09.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_bm02.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_contents.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch01.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch03.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch16.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch14.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch08.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch22.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch19.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_tp01.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch13.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch28.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch05.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch15.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch07.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch10.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_fm01.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_bm03.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch11.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_bm01.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch18.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch27.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch23.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_bm06.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch20.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch25.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch06.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch12.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_bm05.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_bm04.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_half01.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch04.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch26.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_cov.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch29.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch17.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch30.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_bm07.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch21.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch24.html
	  Removed Kobo HEAD elements from: OEBPS/manesqueezethe_ch02.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch09.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_bm02.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_contents.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch01.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch03.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch16.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch14.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch08.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch22.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch19.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_tp01.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch13.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch28.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_cop01.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch05.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch15.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch07.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch10.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_fm01.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_bm03.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch11.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_bm01.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch18.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch27.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch23.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_bm06.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch20.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch25.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch06.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch12.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_bm05.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_bm04.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_half01.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch04.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch26.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_cov.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch29.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch17.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch30.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_bm07.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch21.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch24.html
	  Stripped Kobo spans in: OEBPS/manesqueezethe_ch02.html
ePub updated in 2.91 seconds

Logfile for book ID 23 (Midnight Sins / Lora Leigh)
23
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\23.epub
Parsing xml file: OEBPS/package.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/xhtml/frontsales.html
	  Removed script block from: OEBPS/xhtml/chapter12.html
	  Removed script block from: OEBPS/xhtml/chapter1.html
	  Removed script block from: OEBPS/xhtml/chapter21.html
	  Removed script block from: OEBPS/xhtml/chapter19.html
	  Removed script block from: OEBPS/xhtml/chapter13.html
	  Removed script block from: OEBPS/xhtml/chapter16.html
	  Removed script block from: OEBPS/xhtml/contents.html
	  Removed script block from: OEBPS/xhtml/chapter7.html
	  Removed script block from: OEBPS/xhtml/chapter10.html
	  Removed script block from: OEBPS/xhtml/chapter15.html
	  Removed script block from: OEBPS/xhtml/backad.html
	  Removed script block from: OEBPS/xhtml/chapter24.html
	  Removed script block from: OEBPS/xhtml/chapter23.html
	  Removed script block from: OEBPS/xhtml/chapter17.html
	  Removed script block from: OEBPS/xhtml/chapter20.html
	  Removed script block from: OEBPS/xhtml/chapter9.html
	  Removed script block from: OEBPS/xhtml/chapter18.html
	  Removed script block from: OEBPS/xhtml/chapter5.html
	  Removed script block from: OEBPS/xhtml/title.html
	  Removed script block from: OEBPS/xhtml/adcard.html
	  Removed script block from: OEBPS/xhtml/copyright.html
	  Removed script block from: OEBPS/xhtml/chapter11.html
	  Removed script block from: OEBPS/xhtml/chapter2.html
	  Removed script block from: OEBPS/xhtml/chapter6.html
	  Removed script block from: OEBPS/xhtml/chapter25.html
	  Removed script block from: OEBPS/xhtml/chapter14.html
	  Removed script block from: OEBPS/xhtml/chapter3.html
	  Removed script block from: OEBPS/xhtml/chapter8.html
	  Removed script block from: OEBPS/xhtml/chapter22.html
	  Removed script block from: OEBPS/xhtml/chapter4.html
	  Removed script block from: OEBPS/xhtml/cover.xml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/xhtml/frontsales.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter12.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter1.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter21.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter19.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter13.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter16.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/contents.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter7.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter10.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter15.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/backad.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter24.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter23.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter17.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter20.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter9.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter18.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter5.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/title.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/adcard.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/copyright.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter11.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter2.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter6.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter25.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter14.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter3.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter8.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter22.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter4.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/cover.xml
	  Stripped Kobo spans in: OEBPS/xhtml/frontsales.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter12.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter1.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter21.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter19.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter13.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter16.html
	  Stripped Kobo spans in: OEBPS/xhtml/contents.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter7.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter10.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter15.html
	  Stripped Kobo spans in: OEBPS/xhtml/backad.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter24.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter23.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter17.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter20.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter9.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter18.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter5.html
	  Stripped Kobo spans in: OEBPS/xhtml/title.html
	  Stripped Kobo spans in: OEBPS/xhtml/adcard.html
	  Stripped Kobo spans in: OEBPS/xhtml/copyright.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter11.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter2.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter6.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter25.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter14.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter3.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter8.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter22.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter4.html
	  Stripped Kobo spans in: OEBPS/xhtml/cover.xml
ePub updated in 2.00 seconds

Logfile for book ID 22 (Bitten by Cupid / Lynsay Sands, Pamela Palmer & Jaime Rush)
22
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\22.epub
Parsing xml file: OEBPS/bittenbycupid.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/029-aboutauthorpage02.html
	  Removed script block from: OEBPS/003-TOC.html
	  Removed script block from: OEBPS/030-part03.html
	  Removed script block from: OEBPS/019-chapter13.html
	  Removed script block from: OEBPS/042-adcardpage.html
	  Removed script block from: OEBPS/041-aboutauthorpage03.html
	  Removed script block from: OEBPS/008-chapter04.html
	  Removed script block from: OEBPS/024-chapter18.html
	  Removed script block from: OEBPS/036-chapter28.html
	  Removed script block from: OEBPS/026-chapter20.html
	  Removed script block from: OEBPS/033-chapter25.html
	  Removed script block from: OEBPS/001-coverpage.html
	  Removed script block from: OEBPS/022-chapter16.html
	  Removed script block from: OEBPS/035-chapter27.html
	  Removed script block from: OEBPS/020-chapter14.html
	  Removed script block from: OEBPS/015-chapter11.html
	  Removed script block from: OEBPS/002-titlepage.html
	  Removed script block from: OEBPS/034-chapter26.html
	  Removed script block from: OEBPS/012-chapter08.html
	  Removed script block from: OEBPS/028-chapter22.html
	  Removed script block from: OEBPS/009-chapter05.html
	  Removed script block from: OEBPS/021-chapter15.html
	  Removed script block from: OEBPS/044-aboutpublisherpage.html
	  Removed script block from: OEBPS/017-part02.html
	  Removed script block from: OEBPS/006-chapter02.html
	  Removed script block from: OEBPS/010-chapter06.html
	  Removed script block from: OEBPS/014-chapter10.html
	  Removed script block from: OEBPS/018-chapter12.html
	  Removed script block from: OEBPS/011-chapter07.html
	  Removed script block from: OEBPS/005-chapter01.html
	  Removed script block from: OEBPS/032-chapter24.html
	  Removed script block from: OEBPS/023-chapter17.html
	  Removed script block from: OEBPS/013-chapter09.html
	  Removed script block from: OEBPS/037-chapter29.html
	  Removed script block from: OEBPS/016-aboutauthorpage01.html
	  Removed script block from: OEBPS/031-chapter23.html
	  Removed script block from: OEBPS/004-part01.html
	  Removed script block from: OEBPS/025-chapter19.html
	  Removed script block from: OEBPS/027-chapter21.html
	  Removed script block from: OEBPS/038-chapter30.html
	  Removed script block from: OEBPS/007-chapter03.html
	  Removed script block from: OEBPS/040-epilogue.html
	  Removed script block from: OEBPS/039-chapter31.html
	  Removed script block from: OEBPS/043-copyrightpage.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/029-aboutauthorpage02.html
	  Removed Kobo HEAD elements from: OEBPS/003-TOC.html
	  Removed Kobo HEAD elements from: OEBPS/030-part03.html
	  Removed Kobo HEAD elements from: OEBPS/019-chapter13.html
	  Removed Kobo HEAD elements from: OEBPS/042-adcardpage.html
	  Removed Kobo HEAD elements from: OEBPS/041-aboutauthorpage03.html
	  Removed Kobo HEAD elements from: OEBPS/008-chapter04.html
	  Removed Kobo HEAD elements from: OEBPS/024-chapter18.html
	  Removed Kobo HEAD elements from: OEBPS/036-chapter28.html
	  Removed Kobo HEAD elements from: OEBPS/026-chapter20.html
	  Removed Kobo HEAD elements from: OEBPS/033-chapter25.html
	  Removed Kobo HEAD elements from: OEBPS/001-coverpage.html
	  Removed Kobo HEAD elements from: OEBPS/022-chapter16.html
	  Removed Kobo HEAD elements from: OEBPS/035-chapter27.html
	  Removed Kobo HEAD elements from: OEBPS/020-chapter14.html
	  Removed Kobo HEAD elements from: OEBPS/015-chapter11.html
	  Removed Kobo HEAD elements from: OEBPS/002-titlepage.html
	  Removed Kobo HEAD elements from: OEBPS/034-chapter26.html
	  Removed Kobo HEAD elements from: OEBPS/012-chapter08.html
	  Removed Kobo HEAD elements from: OEBPS/028-chapter22.html
	  Removed Kobo HEAD elements from: OEBPS/009-chapter05.html
	  Removed Kobo HEAD elements from: OEBPS/021-chapter15.html
	  Removed Kobo HEAD elements from: OEBPS/044-aboutpublisherpage.html
	  Removed Kobo HEAD elements from: OEBPS/017-part02.html
	  Removed Kobo HEAD elements from: OEBPS/006-chapter02.html
	  Removed Kobo HEAD elements from: OEBPS/010-chapter06.html
	  Removed Kobo HEAD elements from: OEBPS/014-chapter10.html
	  Removed Kobo HEAD elements from: OEBPS/018-chapter12.html
	  Removed Kobo HEAD elements from: OEBPS/011-chapter07.html
	  Removed Kobo HEAD elements from: OEBPS/005-chapter01.html
	  Removed Kobo HEAD elements from: OEBPS/032-chapter24.html
	  Removed Kobo HEAD elements from: OEBPS/023-chapter17.html
	  Removed Kobo HEAD elements from: OEBPS/013-chapter09.html
	  Removed Kobo HEAD elements from: OEBPS/037-chapter29.html
	  Removed Kobo HEAD elements from: OEBPS/016-aboutauthorpage01.html
	  Removed Kobo HEAD elements from: OEBPS/031-chapter23.html
	  Removed Kobo HEAD elements from: OEBPS/004-part01.html
	  Removed Kobo HEAD elements from: OEBPS/025-chapter19.html
	  Removed Kobo HEAD elements from: OEBPS/027-chapter21.html
	  Removed Kobo HEAD elements from: OEBPS/038-chapter30.html
	  Removed Kobo HEAD elements from: OEBPS/007-chapter03.html
	  Removed Kobo HEAD elements from: OEBPS/040-epilogue.html
	  Removed Kobo HEAD elements from: OEBPS/039-chapter31.html
	  Removed Kobo HEAD elements from: OEBPS/043-copyrightpage.html
	  Stripped Kobo spans in: OEBPS/029-aboutauthorpage02.html
	  Stripped Kobo spans in: OEBPS/003-TOC.html
	  Stripped Kobo spans in: OEBPS/030-part03.html
	  Stripped Kobo spans in: OEBPS/019-chapter13.html
	  Stripped Kobo spans in: OEBPS/042-adcardpage.html
	  Stripped Kobo spans in: OEBPS/041-aboutauthorpage03.html
	  Stripped Kobo spans in: OEBPS/008-chapter04.html
	  Stripped Kobo spans in: OEBPS/024-chapter18.html
	  Stripped Kobo spans in: OEBPS/036-chapter28.html
	  Stripped Kobo spans in: OEBPS/026-chapter20.html
	  Stripped Kobo spans in: OEBPS/033-chapter25.html
	  Stripped Kobo spans in: OEBPS/001-coverpage.html
	  Stripped Kobo spans in: OEBPS/022-chapter16.html
	  Stripped Kobo spans in: OEBPS/035-chapter27.html
	  Stripped Kobo spans in: OEBPS/020-chapter14.html
	  Stripped Kobo spans in: OEBPS/015-chapter11.html
	  Stripped Kobo spans in: OEBPS/002-titlepage.html
	  Stripped Kobo spans in: OEBPS/034-chapter26.html
	  Stripped Kobo spans in: OEBPS/012-chapter08.html
	  Stripped Kobo spans in: OEBPS/028-chapter22.html
	  Stripped Kobo spans in: OEBPS/009-chapter05.html
	  Stripped Kobo spans in: OEBPS/021-chapter15.html
	  Stripped Kobo spans in: OEBPS/044-aboutpublisherpage.html
	  Stripped Kobo spans in: OEBPS/017-part02.html
	  Stripped Kobo spans in: OEBPS/006-chapter02.html
	  Stripped Kobo spans in: OEBPS/010-chapter06.html
	  Stripped Kobo spans in: OEBPS/014-chapter10.html
	  Stripped Kobo spans in: OEBPS/018-chapter12.html
	  Stripped Kobo spans in: OEBPS/011-chapter07.html
	  Stripped Kobo spans in: OEBPS/005-chapter01.html
	  Stripped Kobo spans in: OEBPS/032-chapter24.html
	  Stripped Kobo spans in: OEBPS/023-chapter17.html
	  Stripped Kobo spans in: OEBPS/013-chapter09.html
	  Stripped Kobo spans in: OEBPS/037-chapter29.html
	  Stripped Kobo spans in: OEBPS/016-aboutauthorpage01.html
	  Stripped Kobo spans in: OEBPS/031-chapter23.html
	  Stripped Kobo spans in: OEBPS/004-part01.html
	  Stripped Kobo spans in: OEBPS/025-chapter19.html
	  Stripped Kobo spans in: OEBPS/027-chapter21.html
	  Stripped Kobo spans in: OEBPS/038-chapter30.html
	  Stripped Kobo spans in: OEBPS/007-chapter03.html
	  Stripped Kobo spans in: OEBPS/040-epilogue.html
	  Stripped Kobo spans in: OEBPS/039-chapter31.html
	  Stripped Kobo spans in: OEBPS/043-copyrightpage.html
ePub updated in 1.93 seconds

Logfile for book ID 24 (The Mane Event / Shelly Laurenston)
24
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\24.epub
Parsing xml file: OEBPS/maneeventthe.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/maneeventthe_ch25.html
	  Removed script block from: OEBPS/maneeventthe_p02.html
	  Removed script block from: OEBPS/maneeventthe_ch30.html
	  Removed script block from: OEBPS/maneeventthe_ch01.html
	  Removed script block from: OEBPS/maneeventthe_ch03.html
	  Removed script block from: OEBPS/maneeventthe_ch21.html
	  Removed script block from: OEBPS/maneeventthe_ch16.html
	  Removed script block from: OEBPS/maneeventthe_bm04.html
	  Removed script block from: OEBPS/maneeventthe_ch08.html
	  Removed script block from: OEBPS/maneeventthe_ada01.html
	  Removed script block from: OEBPS/maneeventthe_ch20.html
	  Removed script block from: OEBPS/maneeventthe_bm01.html
	  Removed script block from: OEBPS/maneeventthe_ch04.html
	  Removed script block from: OEBPS/maneeventthe_ch28.html
	  Removed script block from: OEBPS/maneeventthe_ch02.html
	  Removed script block from: OEBPS/maneeventthe_ch19.html
	  Removed script block from: OEBPS/maneeventthe_ch13.html
	  Removed script block from: OEBPS/maneeventthe_ch18.html
	  Removed script block from: OEBPS/maneeventthe_bm02.html
	  Removed script block from: OEBPS/maneeventthe_ch06.html
	  Removed script block from: OEBPS/maneeventthe_ch07.html
	  Removed script block from: OEBPS/maneeventthe_cov.html
	  Removed script block from: OEBPS/maneeventthe_bm05.html
	  Removed script block from: OEBPS/maneeventthe_ded01.html
	  Removed script block from: OEBPS/maneeventthe_p01.html
	  Removed script block from: OEBPS/maneeventthe_ch23.html
	  Removed script block from: OEBPS/maneeventthe_ch05.html
	  Removed script block from: OEBPS/maneeventthe_ch15.html
	  Removed script block from: OEBPS/maneeventthe_fm01.html
	  Removed script block from: OEBPS/maneeventthe_ch22.html
	  Removed script block from: OEBPS/maneeventthe_ch09.html
	  Removed script block from: OEBPS/maneeventthe_ch11.html
	  Removed script block from: OEBPS/maneeventthe_cop01.html
	  Removed script block from: OEBPS/maneeventthe_ch29.html
	  Removed script block from: OEBPS/maneeventthe_ch14.html
	  Removed script block from: OEBPS/maneeventthe_ch24.html
	  Removed script block from: OEBPS/maneeventthe_ch27.html
	  Removed script block from: OEBPS/maneeventthe_con01.html
	  Removed script block from: OEBPS/maneeventthe_ch26.html
	  Removed script block from: OEBPS/maneeventthe_bm03.html
	  Removed script block from: OEBPS/maneeventthe_ch17.html
	  Removed script block from: OEBPS/maneeventthe_ch12.html
	  Removed script block from: OEBPS/maneeventthe_ch10.html
	  Removed script block from: OEBPS/maneeventthe_tp01.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch25.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_p02.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch30.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch01.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch03.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch21.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch16.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_bm04.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch08.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ada01.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch20.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_bm01.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch04.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch28.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch02.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch19.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch13.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch18.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_bm02.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch06.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch07.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_cov.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_bm05.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ded01.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_p01.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch23.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch05.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch15.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_fm01.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch22.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch09.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch11.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch29.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch14.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch24.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch27.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_con01.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch26.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_bm03.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch17.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch12.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_ch10.html
	  Removed Kobo HEAD elements from: OEBPS/maneeventthe_tp01.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch25.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_p02.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch30.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch01.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch03.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch21.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch16.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_bm04.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch08.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ada01.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch20.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_bm01.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch04.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch28.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch02.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch19.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch13.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch18.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_bm02.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch06.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch07.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_cov.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_bm05.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ded01.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_p01.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch23.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch05.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch15.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_fm01.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch22.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch09.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch11.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_cop01.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch29.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch14.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch24.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch27.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_con01.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch26.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_bm03.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch17.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch12.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_ch10.html
	  Stripped Kobo spans in: OEBPS/maneeventthe_tp01.html
ePub updated in 4.18 seconds

Logfile for book ID 21 (The Mane Attraction / Laurenston, Shelly)
21
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\21.epub
Parsing xml file: OEBPS/e9780758277671_content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/e9780758277671_c03.html
	  Removed script block from: OEBPS/e9780758277671_c17.html
	  Removed script block from: OEBPS/e9780758277671_c15.html
	  Removed script block from: OEBPS/e9780758277671_c26.html
	  Removed script block from: OEBPS/e9780758277671_c24.html
	  Removed script block from: OEBPS/e9780758277671_c29.html
	  Removed script block from: OEBPS/e9780758277671_c01.html
	  Removed script block from: OEBPS/e9780758277671_c05.html
	  Removed script block from: OEBPS/e9780758277671_cop01.html
	  Removed script block from: OEBPS/e9780758277671_c18.html
	  Removed script block from: OEBPS/e9780758277671_c23.html
	  Removed script block from: OEBPS/e9780758277671_c25.html
	  Removed script block from: OEBPS/e9780758277671_c13.html
	  Removed script block from: OEBPS/e9780758277671_c11.html
	  Removed script block from: OEBPS/e9780758277671_fm01.html
	  Removed script block from: OEBPS/e9780758277671_c21.html
	  Removed script block from: OEBPS/e9780758277671_c20.html
	  Removed script block from: OEBPS/e9780758277671_ded01.html
	  Removed script block from: OEBPS/e9780758277671_c30.html
	  Removed script block from: OEBPS/e9780758277671_c31.html
	  Removed script block from: OEBPS/e9780758277671_c28.html
	  Removed script block from: OEBPS/e9780758277671_c07.html
	  Removed script block from: OEBPS/e9780758277671_cov01.html
	  Removed script block from: OEBPS/e9780758277671_c10.html
	  Removed script block from: OEBPS/e9780758277671_c04.html
	  Removed script block from: OEBPS/e9780758277671_c22.html
	  Removed script block from: OEBPS/e9780758277671_c06.html
	  Removed script block from: OEBPS/e9780758277671_c09.html
	  Removed script block from: OEBPS/e9780758277671_toc01.html
	  Removed script block from: OEBPS/e9780758277671_fm02.html
	  Removed script block from: OEBPS/e9780758277671_c12.html
	  Removed script block from: OEBPS/e9780758277671_c16.html
	  Removed script block from: OEBPS/e9780758277671_bm01.html
	  Removed script block from: OEBPS/e9780758277671_c19.html
	  Removed script block from: OEBPS/e9780758277671_c27.html
	  Removed script block from: OEBPS/e9780758277671_tp01.html
	  Removed script block from: OEBPS/e9780758277671_c02.html
	  Removed script block from: OEBPS/e9780758277671_c14.html
	  Removed script block from: OEBPS/e9780758277671_c08.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OEBPS/e9780758277671_c03.html
	  Stripped spans in: OEBPS/e9780758277671_c17.html
	  Stripped spans in: OEBPS/e9780758277671_c15.html
	  Stripped spans in: OEBPS/e9780758277671_c26.html
	  Stripped spans in: OEBPS/e9780758277671_c24.html
	  Stripped spans in: OEBPS/e9780758277671_c29.html
	  Stripped spans in: OEBPS/e9780758277671_c01.html
	  Stripped spans in: OEBPS/e9780758277671_c05.html
	  Stripped spans in: OEBPS/e9780758277671_cop01.html
	  Stripped spans in: OEBPS/e9780758277671_c18.html
	  Stripped spans in: OEBPS/e9780758277671_c23.html
	  Stripped spans in: OEBPS/e9780758277671_c25.html
	  Stripped spans in: OEBPS/e9780758277671_c13.html
	  Stripped spans in: OEBPS/e9780758277671_c11.html
	  Stripped spans in: OEBPS/e9780758277671_fm01.html
	  Stripped spans in: OEBPS/e9780758277671_c21.html
	  Stripped spans in: OEBPS/e9780758277671_c20.html
	  Stripped spans in: OEBPS/e9780758277671_ded01.html
	  Stripped spans in: OEBPS/e9780758277671_c30.html
	  Stripped spans in: OEBPS/e9780758277671_c31.html
	  Stripped spans in: OEBPS/e9780758277671_c28.html
	  Stripped spans in: OEBPS/e9780758277671_c07.html
	  Stripped spans in: OEBPS/e9780758277671_cov01.html
	  Stripped spans in: OEBPS/e9780758277671_c10.html
	  Stripped spans in: OEBPS/e9780758277671_c04.html
	  Stripped spans in: OEBPS/e9780758277671_c22.html
	  Stripped spans in: OEBPS/e9780758277671_c06.html
	  Stripped spans in: OEBPS/e9780758277671_c09.html
	  Stripped spans in: OEBPS/e9780758277671_toc01.html
	  Stripped spans in: OEBPS/e9780758277671_fm02.html
	  Stripped spans in: OEBPS/e9780758277671_c12.html
	  Stripped spans in: OEBPS/e9780758277671_c16.html
	  Stripped spans in: OEBPS/e9780758277671_bm01.html
	  Stripped spans in: OEBPS/e9780758277671_c19.html
	  Stripped spans in: OEBPS/e9780758277671_c27.html
	  Stripped spans in: OEBPS/e9780758277671_tp01.html
	  Stripped spans in: OEBPS/e9780758277671_c02.html
	  Stripped spans in: OEBPS/e9780758277671_c14.html
	  Stripped spans in: OEBPS/e9780758277671_c08.html
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c03.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c17.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c15.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c26.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c24.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c29.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c05.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c18.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c23.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c25.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c13.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c11.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_fm01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c21.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c20.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_ded01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c30.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c31.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c28.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c07.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_cov01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c10.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c04.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c22.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c06.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c09.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_toc01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_fm02.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c12.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c16.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_bm01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c19.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c27.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_tp01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c02.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c14.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277671_c08.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c03.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c17.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c15.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c26.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c24.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c29.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c01.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c05.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_cop01.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c18.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c23.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c25.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c13.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c11.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_fm01.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c21.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c20.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_ded01.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c30.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c31.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c28.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c07.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_cov01.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c10.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c04.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c22.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c06.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c09.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_toc01.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_fm02.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c12.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c16.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_bm01.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c19.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c27.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_tp01.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c02.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c14.html
	  Stripped Kobo spans in: OEBPS/e9780758277671_c08.html
ePub updated in 4.37 seconds

Logfile for book ID 18 (TheLoveCharm / Evelyn Starr)
18
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\18.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/part5.xhtml
	  Removed script block from: OEBPS/part17.xhtml
	  Removed script block from: OEBPS/part1.xhtml
	  Removed script block from: OEBPS/title.xhtml
	  Removed script block from: OEBPS/part6.xhtml
	  Removed script block from: OEBPS/part3.xhtml
	  Removed script block from: OEBPS/part16.xhtml
	  Removed script block from: OEBPS/part13.xhtml
	  Removed script block from: OEBPS/part19.xhtml
	  Removed script block from: OEBPS/part11.xhtml
	  Removed script block from: OEBPS/part12.xhtml
	  Removed script block from: OEBPS/part7.xhtml
	  Removed script block from: OEBPS/part15.xhtml
	  Removed script block from: OEBPS/part2.xhtml
	  Removed script block from: OEBPS/part20.xhtml
	  Removed script block from: OEBPS/part18.xhtml
	  Removed script block from: OEBPS/part14.xhtml
	  Removed script block from: OEBPS/part8.xhtml
	  Removed script block from: OEBPS/part10.xhtml
	  Removed script block from: OEBPS/part4.xhtml
	  Removed script block from: OEBPS/part9.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/part5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part17.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/title.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part16.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part13.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part19.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part11.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part12.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part7.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part15.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part20.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part18.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part14.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part8.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part10.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part4.xhtml
	  Removed Kobo HEAD elements from: OEBPS/part9.xhtml
	  Stripped Kobo spans in: OEBPS/part5.xhtml
	  Stripped Kobo spans in: OEBPS/part17.xhtml
	  Stripped Kobo spans in: OEBPS/part1.xhtml
	  Stripped Kobo spans in: OEBPS/title.xhtml
	  Stripped Kobo spans in: OEBPS/part6.xhtml
	  Stripped Kobo spans in: OEBPS/part3.xhtml
	  Stripped Kobo spans in: OEBPS/part16.xhtml
	  Stripped Kobo spans in: OEBPS/part13.xhtml
	  Stripped Kobo spans in: OEBPS/part19.xhtml
	  Stripped Kobo spans in: OEBPS/part11.xhtml
	  Stripped Kobo spans in: OEBPS/part12.xhtml
	  Stripped Kobo spans in: OEBPS/part7.xhtml
	  Stripped Kobo spans in: OEBPS/part15.xhtml
	  Stripped Kobo spans in: OEBPS/part2.xhtml
	  Stripped Kobo spans in: OEBPS/part20.xhtml
	  Stripped Kobo spans in: OEBPS/part18.xhtml
	  Stripped Kobo spans in: OEBPS/part14.xhtml
	  Stripped Kobo spans in: OEBPS/part8.xhtml
	  Stripped Kobo spans in: OEBPS/part10.xhtml
	  Stripped Kobo spans in: OEBPS/part4.xhtml
	  Stripped Kobo spans in: OEBPS/part9.xhtml
ePub updated in 1.43 seconds

Logfile for book ID 20 (The Magical Christmas Cat / Lora Leigh, Erin McCarthy, Nalini Singh & Linda Winstead Jones)
20
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\20.epub
Parsing xml file: OEBPS/magicalchristmascatthe.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/magicalchristmascatthe_ch14.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch11.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch26.html
	  Removed script block from: OEBPS/magicalchristmascatthe_pt02.html
	  Removed script block from: OEBPS/magicalchristmascatthe_pt04.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch19.html
	  Removed script block from: OEBPS/magicalchristmascatthe_htp01.html
	  Removed script block from: OEBPS/magicalchristmascatthe_con01.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch10.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch33.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch02.html
	  Removed script block from: OEBPS/magicalchristmascatthe_pt01.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch25.html
	  Removed script block from: OEBPS/magicalchristmascatthe_pt03.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch06.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch38.html
	  Removed script block from: OEBPS/magicalchristmascatthe_htp02.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch27.html
	  Removed script block from: OEBPS/magicalchristmascatthe_tp01.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch23.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch04.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch21.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch16.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch28.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch01.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch22.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch20.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch13.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch07.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch31.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch29.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch08.html
	  Removed script block from: OEBPS/magicalchristmascatthe_bm01.html
	  Removed script block from: OEBPS/magicalchristmascatthe_dm01.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch03.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch24.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch32.html
	  Removed script block from: OEBPS/magicalchristmascatthe_cov.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch15.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch30.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch34.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch17.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch36.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch05.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch12.html
	  Removed script block from: OEBPS/magicalchristmascatthe_cop01.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch35.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch37.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch09.html
	  Removed script block from: OEBPS/magicalchristmascatthe_ch18.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch14.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch11.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch26.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_pt02.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_pt04.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch19.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_htp01.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_con01.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch10.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch33.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch02.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_pt01.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch25.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_pt03.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch06.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch38.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_htp02.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch27.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_tp01.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch23.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch04.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch21.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch16.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch28.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch01.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch22.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch20.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch13.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch07.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch31.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch29.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch08.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_bm01.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_dm01.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch03.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch24.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch32.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_cov.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch15.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch30.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch34.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch17.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch36.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch05.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch12.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch35.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch37.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch09.html
	  Removed Kobo HEAD elements from: OEBPS/magicalchristmascatthe_ch18.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch14.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch11.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch26.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_pt02.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_pt04.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch19.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_htp01.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_con01.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch10.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch33.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch02.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_pt01.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch25.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_pt03.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch06.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch38.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_htp02.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch27.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_tp01.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch23.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch04.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch21.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch16.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch28.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch01.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch22.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch20.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch13.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch07.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch31.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch29.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch08.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_bm01.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_dm01.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch03.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch24.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch32.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_cov.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch15.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch30.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch34.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch17.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch36.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch05.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch12.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_cop01.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch35.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch37.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch09.html
	  Stripped Kobo spans in: OEBPS/magicalchristmascatthe_ch18.html
ePub updated in 2.67 seconds

Logfile for book ID 19 (Bengal's Heart / Leigh, Lora)
19
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\19.epub
Parsing xml file: OEBPS/leig_9781101108932_oeb_opf_r1.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/leig_9781101108932_oeb_cop_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_fm3_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c09_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c01_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c08_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c26_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c15_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_bm3_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_ack_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c19_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_bm2_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c10_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c07_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c27_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c21_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c17_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_toc_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c22_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c23_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c18_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c12_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c02_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_bm5_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c05_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c11_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_fm2_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_bm4_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_tea_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c06_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_fm1_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_tp_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c24_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_bm1_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c16_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_cover_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c25_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c03_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c20_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c14_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c13_r1.xhtml
	  Removed script block from: OEBPS/leig_9781101108932_oeb_c04_r1.xhtml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_cop_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_fm3_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c09_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c01_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c08_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c26_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c15_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_bm3_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_ack_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c19_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_bm2_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c10_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c07_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c27_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c21_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c17_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_toc_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c22_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c23_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c18_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c12_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c02_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_bm5_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c05_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c11_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_fm2_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_bm4_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_tea_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c06_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_fm1_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_tp_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c24_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_bm1_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c16_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_cover_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c25_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c03_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c20_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c14_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c13_r1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/leig_9781101108932_oeb_c04_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_cop_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_fm3_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c09_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c01_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c08_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c26_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c15_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_bm3_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_ack_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c19_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_bm2_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c10_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c07_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c27_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c21_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c17_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c22_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c23_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c18_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c12_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c02_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_bm5_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c05_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c11_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_fm2_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_bm4_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_tea_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c06_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_fm1_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_tp_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c24_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_bm1_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c16_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_cover_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c25_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c03_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c20_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c14_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c13_r1.xhtml
	  Stripped Kobo spans in: OEBPS/leig_9781101108932_oeb_c04_r1.xhtml
ePub updated in 2.72 seconds

Logfile for book ID 17 (Mercury's War / Leigh, Lora)
17
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\17.epub
Parsing xml file: OEBPS/leig_9780425224182_oeb_opf_r1.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
Forcing OEBPS/leig_9780425224182_oeb_bm2_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_bm2_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c02_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c02_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c21_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c21_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c16_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c16_r1.html
Forcing OEBPS/leig_9780425224182_oeb_cop_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_cop_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c03_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c03_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c08_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c08_r1.html
Forcing OEBPS/leig_9780425224182_oeb_fm3_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_fm3_r1.html
Forcing OEBPS/leig_9780425224182_oeb_fm1_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_fm1_r1.html
Forcing OEBPS/leig_9780425224182_oeb_fm4_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_fm4_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c11_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c11_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c05_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c05_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c22_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c22_r1.html
Forcing OEBPS/leig_9780425224182_oeb_cover_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_cover_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c19_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c19_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c10_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c10_r1.html
Forcing OEBPS/leig_9780425224182_oeb_ded_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_ded_r1.html
Forcing OEBPS/leig_9780425224182_oeb_epi_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_epi_r1.html
Forcing OEBPS/leig_9780425224182_oeb_fm2_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_fm2_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c23_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c23_r1.html
Forcing OEBPS/leig_9780425224182_oeb_bm1_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_bm1_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c26_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c26_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c15_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c15_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c17_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c17_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c01_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c01_r1.html
Forcing OEBPS/leig_9780425224182_oeb_toc_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_toc_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c14_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c14_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c09_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c09_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c27_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c27_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c06_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c06_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c12_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c12_r1.html
Forcing OEBPS/leig_9780425224182_oeb_tp_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_tp_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c20_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c20_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c07_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c07_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c18_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c18_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c04_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c04_r1.html
Forcing OEBPS/leig_9780425224182_oeb_tea_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_tea_r1.html
Forcing OEBPS/leig_9780425224182_oeb_fm5_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_fm5_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c24_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c24_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c13_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c13_r1.html
Forcing OEBPS/leig_9780425224182_oeb_c25_r1.html into XHTML namespace
	  Removed script block from: OEBPS/leig_9780425224182_oeb_c25_r1.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_bm2_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c02_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c21_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c16_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_cop_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c03_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c08_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_fm3_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_fm1_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_fm4_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c11_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c05_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c22_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_cover_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c19_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c10_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_ded_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_epi_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_fm2_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c23_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_bm1_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c26_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c15_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c17_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c01_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_toc_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c14_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c09_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c27_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c06_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c12_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_tp_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c20_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c07_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c18_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c04_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_tea_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_fm5_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c24_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c13_r1.html
	  Removed Kobo HEAD elements from: OEBPS/leig_9780425224182_oeb_c25_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_bm2_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c02_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c21_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c16_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_cop_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c03_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c08_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_fm3_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_fm1_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_fm4_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c11_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c05_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c22_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_cover_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c19_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c10_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_ded_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_epi_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_fm2_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c23_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_bm1_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c26_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c15_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c17_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c01_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c14_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c09_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c27_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c06_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c12_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_tp_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c20_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c07_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c18_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c04_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_tea_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_fm5_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c24_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c13_r1.html
	  Stripped Kobo spans in: OEBPS/leig_9780425224182_oeb_c25_r1.html
ePub updated in 2.90 seconds

Logfile for book ID 16 (Bear Necessities / Dana Marie Bell)
16
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\16.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 1.98 seconds

Logfile for book ID 14 (Megan’s Mark / Lora Leigh)
14
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\14.epub
Parsing xml file: OEBPS/megansmark.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/megansmark_ch19.html
	  Removed script block from: OEBPS/megansmark_ch13.html
	  Removed script block from: OEBPS/megansmark_ch16.html
	  Removed script block from: OEBPS/megansmark_ch14.html
	  Removed script block from: OEBPS/megansmark_fm01.html
	  Removed script block from: OEBPS/megansmark_ch06.html
	  Removed script block from: OEBPS/megansmark_ch21.html
	  Removed script block from: OEBPS/megansmark_tit01.html
	  Removed script block from: OEBPS/megansmark_cov.html
	  Removed script block from: OEBPS/megansmark_ch07.html
	  Removed script block from: OEBPS/megansmark_ch12.html
	  Removed script block from: OEBPS/megansmark_ch02.html
	  Removed script block from: OEBPS/megansmark_fm02.html
	  Removed script block from: OEBPS/megansmark_ch20.html
	  Removed script block from: OEBPS/megansmark_ch08.html
	  Removed script block from: OEBPS/megansmark_ded01.html
	  Removed script block from: OEBPS/megansmark_ch04.html
	  Removed script block from: OEBPS/megansmark_ch17.html
	  Removed script block from: OEBPS/megansmark_ch01.html
	  Removed script block from: OEBPS/megansmark_con01.html
	  Removed script block from: OEBPS/megansmark_cop01.html
	  Removed script block from: OEBPS/megansmark_ch03.html
	  Removed script block from: OEBPS/megansmark_ch09.html
	  Removed script block from: OEBPS/megansmark_ch11.html
	  Removed script block from: OEBPS/megansmark_ch18.html
	  Removed script block from: OEBPS/megansmark_ch10.html
	  Removed script block from: OEBPS/megansmark_ch05.html
	  Removed script block from: OEBPS/megansmark_ch15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch19.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch13.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch16.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch14.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_fm01.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch06.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch21.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_tit01.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_cov.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch07.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch12.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch02.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_fm02.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch20.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch08.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ded01.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch04.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch17.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch01.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_con01.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch03.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch09.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch11.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch18.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch10.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch05.html
	  Removed Kobo HEAD elements from: OEBPS/megansmark_ch15.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch19.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch13.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch16.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch14.html
	  Stripped Kobo spans in: OEBPS/megansmark_fm01.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch06.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch21.html
	  Stripped Kobo spans in: OEBPS/megansmark_tit01.html
	  Stripped Kobo spans in: OEBPS/megansmark_cov.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch07.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch12.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch02.html
	  Stripped Kobo spans in: OEBPS/megansmark_fm02.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch20.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch08.html
	  Stripped Kobo spans in: OEBPS/megansmark_ded01.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch04.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch17.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch01.html
	  Stripped Kobo spans in: OEBPS/megansmark_con01.html
	  Stripped Kobo spans in: OEBPS/megansmark_cop01.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch03.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch09.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch11.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch18.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch10.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch05.html
	  Stripped Kobo spans in: OEBPS/megansmark_ch15.html
ePub updated in 1.93 seconds

Logfile for book ID 13 (Maverick / Lora Leigh)
13
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\13.epub
Parsing xml file: OEBPS/maverick.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/maverick_cov.html
	  Removed script block from: OEBPS/maverick_pt02.html
	  Removed script block from: OEBPS/maverick_fm01.html
	  Removed script block from: OEBPS/maverick_adc01.html
	  Removed script block from: OEBPS/maverick_fm02.html
	  Removed script block from: OEBPS/maverick_pt03.html
	  Removed script block from: OEBPS/maverick_pt01.html
	  Removed script block from: OEBPS/maverick_tit01.html
	  Removed script block from: OEBPS/maverick_pra01.html
	  Removed script block from: OEBPS/maverick_cop01.html
	  Removed script block from: OEBPS/maverick_atn01.html
	  Removed script block from: OEBPS/maverick_con.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/maverick_cov.html
	  Removed Kobo HEAD elements from: OEBPS/maverick_pt02.html
	  Removed Kobo HEAD elements from: OEBPS/maverick_fm01.html
	  Removed Kobo HEAD elements from: OEBPS/maverick_adc01.html
	  Removed Kobo HEAD elements from: OEBPS/maverick_fm02.html
	  Removed Kobo HEAD elements from: OEBPS/maverick_pt03.html
	  Removed Kobo HEAD elements from: OEBPS/maverick_pt01.html
	  Removed Kobo HEAD elements from: OEBPS/maverick_tit01.html
	  Removed Kobo HEAD elements from: OEBPS/maverick_pra01.html
	  Removed Kobo HEAD elements from: OEBPS/maverick_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/maverick_atn01.html
	  Removed Kobo HEAD elements from: OEBPS/maverick_con.html
	  Stripped Kobo spans in: OEBPS/maverick_cov.html
	  Stripped Kobo spans in: OEBPS/maverick_pt02.html
	  Stripped Kobo spans in: OEBPS/maverick_fm01.html
	  Stripped Kobo spans in: OEBPS/maverick_adc01.html
	  Stripped Kobo spans in: OEBPS/maverick_fm02.html
	  Stripped Kobo spans in: OEBPS/maverick_pt03.html
	  Stripped Kobo spans in: OEBPS/maverick_pt01.html
	  Stripped Kobo spans in: OEBPS/maverick_tit01.html
	  Stripped Kobo spans in: OEBPS/maverick_pra01.html
	  Stripped Kobo spans in: OEBPS/maverick_cop01.html
	  Stripped Kobo spans in: OEBPS/maverick_atn01.html
	  Stripped Kobo spans in: OEBPS/maverick_con.html
ePub updated in 2.24 seconds

Logfile for book ID 15 (Bear Meets Girl / Laurenston, Shelly)
15
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\15.epub
Parsing xml file: OEBPS/e9780758277947_content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/e9780758277947_c20.html
	  Removed script block from: OEBPS/e9780758277947_c07.html
	  Removed script block from: OEBPS/e9780758277947_c30.html
	  Removed script block from: OEBPS/e9780758277947_c31.html
	  Removed script block from: OEBPS/e9780758277947_c03.html
	  Removed script block from: OEBPS/e9780758277947_c17.html
	  Removed script block from: OEBPS/e9780758277947_c06.html
	  Removed script block from: OEBPS/e9780758277947_c26.html
	  Removed script block from: OEBPS/e9780758277947_c09.html
	  Removed script block from: OEBPS/e9780758277947_cov01.html
	  Removed script block from: OEBPS/e9780758277947_c24.html
	  Removed script block from: OEBPS/e9780758277947_c12.html
	  Removed script block from: OEBPS/e9780758277947_c05.html
	  Removed script block from: OEBPS/e9780758277947_ack01.html
	  Removed script block from: OEBPS/e9780758277947_c23.html
	  Removed script block from: OEBPS/e9780758277947_c25.html
	  Removed script block from: OEBPS/e9780758277947_c27.html
	  Removed script block from: OEBPS/e9780758277947_c02.html
	  Removed script block from: OEBPS/e9780758277947_c35.html
	  Removed script block from: OEBPS/e9780758277947_c21.html
	  Removed script block from: OEBPS/e9780758277947_c33.html
	  Removed script block from: OEBPS/e9780758277947_toc01.html
	  Removed script block from: OEBPS/e9780758277947_c32.html
	  Removed script block from: OEBPS/e9780758277947_c28.html
	  Removed script block from: OEBPS/e9780758277947_c14.html
	  Removed script block from: OEBPS/e9780758277947_c08.html
	  Removed script block from: OEBPS/e9780758277947_cop01.html
	  Removed script block from: OEBPS/e9780758277947_fm01.html
	  Removed script block from: OEBPS/e9780758277947_c10.html
	  Removed script block from: OEBPS/e9780758277947_c04.html
	  Removed script block from: OEBPS/e9780758277947_c22.html
	  Removed script block from: OEBPS/e9780758277947_c15.html
	  Removed script block from: OEBPS/e9780758277947_c29.html
	  Removed script block from: OEBPS/e9780758277947_c01.html
	  Removed script block from: OEBPS/e9780758277947_tp01.html
	  Removed script block from: OEBPS/e9780758277947_c16.html
	  Removed script block from: OEBPS/e9780758277947_c18.html
	  Removed script block from: OEBPS/e9780758277947_c19.html
	  Removed script block from: OEBPS/e9780758277947_c13.html
	  Removed script block from: OEBPS/e9780758277947_c11.html
	  Removed script block from: OEBPS/e9780758277947_c34.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OEBPS/e9780758277947_c20.html
	  Stripped spans in: OEBPS/e9780758277947_c07.html
	  Stripped spans in: OEBPS/e9780758277947_c30.html
	  Stripped spans in: OEBPS/e9780758277947_c31.html
	  Stripped spans in: OEBPS/e9780758277947_c03.html
	  Stripped spans in: OEBPS/e9780758277947_c17.html
	  Stripped spans in: OEBPS/e9780758277947_c06.html
	  Stripped spans in: OEBPS/e9780758277947_c26.html
	  Stripped spans in: OEBPS/e9780758277947_c09.html
	  Stripped spans in: OEBPS/e9780758277947_cov01.html
	  Stripped spans in: OEBPS/e9780758277947_c24.html
	  Stripped spans in: OEBPS/e9780758277947_c12.html
	  Stripped spans in: OEBPS/e9780758277947_c05.html
	  Stripped spans in: OEBPS/e9780758277947_ack01.html
	  Stripped spans in: OEBPS/e9780758277947_c23.html
	  Stripped spans in: OEBPS/e9780758277947_c25.html
	  Stripped spans in: OEBPS/e9780758277947_c27.html
	  Stripped spans in: OEBPS/e9780758277947_c02.html
	  Stripped spans in: OEBPS/e9780758277947_c35.html
	  Stripped spans in: OEBPS/e9780758277947_c21.html
	  Stripped spans in: OEBPS/e9780758277947_c33.html
	  Stripped spans in: OEBPS/e9780758277947_toc01.html
	  Stripped spans in: OEBPS/e9780758277947_c32.html
	  Stripped spans in: OEBPS/e9780758277947_c28.html
	  Stripped spans in: OEBPS/e9780758277947_c14.html
	  Stripped spans in: OEBPS/e9780758277947_c08.html
	  Stripped spans in: OEBPS/e9780758277947_cop01.html
	  Stripped spans in: OEBPS/e9780758277947_c10.html
	  Stripped spans in: OEBPS/e9780758277947_c04.html
	  Stripped spans in: OEBPS/e9780758277947_c22.html
	  Stripped spans in: OEBPS/e9780758277947_c15.html
	  Stripped spans in: OEBPS/e9780758277947_c29.html
	  Stripped spans in: OEBPS/e9780758277947_c01.html
	  Stripped spans in: OEBPS/e9780758277947_tp01.html
	  Stripped spans in: OEBPS/e9780758277947_c16.html
	  Stripped spans in: OEBPS/e9780758277947_c18.html
	  Stripped spans in: OEBPS/e9780758277947_c19.html
	  Stripped spans in: OEBPS/e9780758277947_c13.html
	  Stripped spans in: OEBPS/e9780758277947_c11.html
	  Stripped spans in: OEBPS/e9780758277947_c34.html
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c20.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c07.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c30.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c31.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c03.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c17.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c06.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c26.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c09.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_cov01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c24.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c12.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c05.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_ack01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c23.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c25.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c27.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c02.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c35.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c21.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c33.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_toc01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c32.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c28.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c14.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c08.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_fm01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c10.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c04.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c22.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c15.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c29.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_tp01.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c16.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c18.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c19.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c13.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c11.html
	  Removed Kobo HEAD elements from: OEBPS/e9780758277947_c34.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c20.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c07.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c30.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c31.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c03.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c17.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c06.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c26.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c09.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_cov01.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c24.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c12.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c05.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_ack01.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c23.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c25.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c27.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c02.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c35.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c21.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c33.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_toc01.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c32.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c28.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c14.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c08.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_cop01.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_fm01.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c10.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c04.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c22.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c15.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c29.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c01.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_tp01.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c16.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c18.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c19.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c13.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c11.html
	  Stripped Kobo spans in: OEBPS/e9780758277947_c34.html
ePub updated in 3.95 seconds

Logfile for book ID 12 (Make Mine Midnight / McKenna, Annmarie)
12
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\12.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/toc.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section18.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/toc.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section18.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section18.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 0.65 seconds

Logfile for book ID 11 (The Lady Is a Vamp / Lynsay Sands)
11
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\11.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/About_the_Publisher.xhtml
	  Removed script block from: OEBPS/Contents.xhtml
	  Removed script block from: OEBPS/Chapter_7.xhtml
	  Removed script block from: OEBPS/Chapter_19.xhtml
	  Removed script block from: OEBPS/Chapter_15.xhtml
	  Removed script block from: OEBPS/Cover.xhtml
	  Removed script block from: OEBPS/BoB_Ad.xhtml
	  Removed script block from: OEBPS/Chapter_12.xhtml
	  Removed script block from: OEBPS/Chapter_17.xhtml
	  Removed script block from: OEBPS/Chapter_6.xhtml
	  Removed script block from: OEBPS/Teaser_Chapter.xhtml
	  Removed script block from: OEBPS/Chapter_8.xhtml
	  Removed script block from: OEBPS/About_the_Author.xhtml
	  Removed script block from: OEBPS/Chapter_16.xhtml
	  Removed script block from: OEBPS/Chapter_14.xhtml
	  Removed script block from: OEBPS/Also_by_the_Author.xhtml
	  Removed script block from: OEBPS/Chapter_9.xhtml
	  Removed script block from: OEBPS/Chapter_10.xhtml
	  Removed script block from: OEBPS/Chapter_5.xhtml
	  Removed script block from: OEBPS/Chapter_1.xhtml
	  Removed script block from: OEBPS/Chapter_11.xhtml
	  Removed script block from: OEBPS/Chapter_3.xhtml
	  Removed script block from: OEBPS/Title_Page.xhtml
	  Removed script block from: OEBPS/Chapter_18.xhtml
	  Removed script block from: OEBPS/Chapter_13.xhtml
	  Removed script block from: OEBPS/Copyright.xhtml
	  Removed script block from: OEBPS/Chapter_2.xhtml
	  Removed script block from: OEBPS/Chapter_4.xhtml
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/About_the_Publisher.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Contents.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_7.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_19.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_15.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Cover.xhtml
	  Removed Kobo HEAD elements from: OEBPS/BoB_Ad.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_12.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_17.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_6.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Teaser_Chapter.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_8.xhtml
	  Removed Kobo HEAD elements from: OEBPS/About_the_Author.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_16.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_14.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Also_by_the_Author.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_9.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_10.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_5.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_1.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_11.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_3.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Title_Page.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_18.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_13.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Copyright.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_2.xhtml
	  Removed Kobo HEAD elements from: OEBPS/Chapter_4.xhtml
	  Stripped Kobo spans in: OEBPS/About_the_Publisher.xhtml
	  Stripped Kobo spans in: OEBPS/Contents.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_7.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_19.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_15.xhtml
	  Stripped Kobo spans in: OEBPS/Cover.xhtml
	  Stripped Kobo spans in: OEBPS/BoB_Ad.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_12.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_17.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_6.xhtml
	  Stripped Kobo spans in: OEBPS/Teaser_Chapter.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_8.xhtml
	  Stripped Kobo spans in: OEBPS/About_the_Author.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_16.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_14.xhtml
	  Stripped Kobo spans in: OEBPS/Also_by_the_Author.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_9.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_10.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_5.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_1.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_11.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_3.xhtml
	  Stripped Kobo spans in: OEBPS/Title_Page.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_18.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_13.xhtml
	  Stripped Kobo spans in: OEBPS/Copyright.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_2.xhtml
	  Stripped Kobo spans in: OEBPS/Chapter_4.xhtml
ePub updated in 1.79 seconds

Logfile for book ID 10 (The Complete Guide to Healing Fibromyalgia / Deborah Mitchell)
10
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\10.epub
Parsing xml file: OEBPS/package.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/xhtml/part1.html
	  Removed script block from: OEBPS/xhtml/chapter1.html
	  Removed script block from: OEBPS/xhtml/sourcenote.html
	  Removed script block from: OEBPS/xhtml/part2.html
	  Removed script block from: OEBPS/xhtml/furtherreading.html
	  Removed script block from: OEBPS/xhtml/contents.html
	  Removed script block from: OEBPS/xhtml/chapter7.html
	  Removed script block from: OEBPS/xhtml/chapter10.html
	  Removed script block from: OEBPS/xhtml/chapter6.html
	  Removed script block from: OEBPS/xhtml/chapter3.html
	  Removed script block from: OEBPS/xhtml/introduction.html
	  Removed script block from: OEBPS/xhtml/chapter9.html
	  Removed script block from: OEBPS/xhtml/chapter5.html
	  Removed script block from: OEBPS/xhtml/resources.html
	  Removed script block from: OEBPS/xhtml/adcard.html
	  Removed script block from: OEBPS/xhtml/copyright.html
	  Removed script block from: OEBPS/xhtml/chapter11.html
	  Removed script block from: OEBPS/xhtml/chapter2.html
	  Removed script block from: OEBPS/xhtml/chapter8.html
	  Removed script block from: OEBPS/xhtml/title.html
	  Removed script block from: OEBPS/xhtml/chapter4.html
	  Removed script block from: OEBPS/xhtml/cover.xml
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/xhtml/part1.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter1.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/sourcenote.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/part2.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/furtherreading.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/contents.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter7.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter10.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter6.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter3.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/introduction.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter9.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter5.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/resources.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/adcard.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/copyright.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter11.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter2.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter8.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/title.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/chapter4.html
	  Removed Kobo HEAD elements from: OEBPS/xhtml/cover.xml
	  Stripped Kobo spans in: OEBPS/xhtml/part1.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter1.html
	  Stripped Kobo spans in: OEBPS/xhtml/sourcenote.html
	  Stripped Kobo spans in: OEBPS/xhtml/part2.html
	  Stripped Kobo spans in: OEBPS/xhtml/furtherreading.html
	  Stripped Kobo spans in: OEBPS/xhtml/contents.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter7.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter10.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter6.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter3.html
	  Stripped Kobo spans in: OEBPS/xhtml/introduction.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter9.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter5.html
	  Stripped Kobo spans in: OEBPS/xhtml/resources.html
	  Stripped Kobo spans in: OEBPS/xhtml/adcard.html
	  Stripped Kobo spans in: OEBPS/xhtml/copyright.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter11.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter2.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter8.html
	  Stripped Kobo spans in: OEBPS/xhtml/title.html
	  Stripped Kobo spans in: OEBPS/xhtml/chapter4.html
	  Stripped Kobo spans in: OEBPS/xhtml/cover.xml
ePub updated in 1.57 seconds

Logfile for book ID 8 (AbidingInk / Ranae Rose)
8
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\8.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section18.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: OEBPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed kobo.css file: OEBPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section18.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section18.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 1.22 seconds

Logfile for book ID 6 (The Breed Next Door / Lora Leigh)
6
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\6.epub
Parsing xml file: OEBPS/breednextdoorthe.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/breednextdoorthe_ada01.html
	  Removed script block from: OEBPS/breednextdoorthe_ch07.html
	  Removed script block from: OEBPS/breednextdoorthe_tp01.html
	  Removed script block from: OEBPS/breednextdoorthe_con01.html
	  Removed script block from: OEBPS/breednextdoorthe_ch03.html
	  Removed script block from: OEBPS/breednextdoorthe_cov.html
	  Removed script block from: OEBPS/breednextdoorthe_ch08.html
	  Removed script block from: OEBPS/breednextdoorthe_ch09.html
	  Removed script block from: OEBPS/breednextdoorthe_ch06.html
	  Removed script block from: OEBPS/breednextdoorthe_cop01.html
	  Removed script block from: OEBPS/breednextdoorthe_rev01.html
	  Removed script block from: OEBPS/breednextdoorthe_ch05.html
	  Removed script block from: OEBPS/breednextdoorthe_ch04.html
	  Removed script block from: OEBPS/breednextdoorthe_abt01.html
	  Removed script block from: OEBPS/breednextdoorthe_fm01.html
	  Removed script block from: OEBPS/breednextdoorthe_ch01.html
	  Removed script block from: OEBPS/breednextdoorthe_ch10.html
	  Removed script block from: OEBPS/breednextdoorthe_ch02.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_ada01.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_ch07.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_tp01.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_con01.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_ch03.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_cov.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_ch08.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_ch09.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_ch06.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_cop01.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_rev01.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_ch05.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_ch04.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_abt01.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_fm01.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_ch01.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_ch10.html
	  Removed Kobo HEAD elements from: OEBPS/breednextdoorthe_ch02.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_ada01.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_ch07.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_tp01.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_con01.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_ch03.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_cov.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_ch08.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_ch09.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_ch06.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_cop01.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_rev01.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_ch05.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_ch04.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_abt01.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_fm01.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_ch01.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_ch10.html
	  Stripped Kobo spans in: OEBPS/breednextdoorthe_ch02.html
ePub updated in 0.64 seconds

Logfile for book ID 7 (A Table for Three: New York, Book One / Reese, Lainey)
7
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\7.epub
Parsing xml file: OEBPS/content.opf
Parsing xml file: OEBPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OEBPS/section5.html
	  Removed script block from: OEBPS/section27.html
	  Removed script block from: OEBPS/section9.html
	  Removed script block from: OEBPS/section11.html
	  Removed script block from: OEBPS/section23.html
	  Removed script block from: OEBPS/section2.html
	  Removed script block from: OEBPS/section26.html
	  Removed script block from: OEBPS/section28.html
	  Removed script block from: OEBPS/toc.html
	  Removed script block from: OEBPS/section14.html
	  Removed script block from: OEBPS/section25.html
	  Removed script block from: OEBPS/section29.html
	  Removed script block from: OEBPS/section18.html
	  Removed script block from: OEBPS/section22.html
	  Removed script block from: OEBPS/section4.html
	  Removed script block from: OEBPS/section20.html
	  Removed script block from: OEBPS/section1.html
	  Removed script block from: OEBPS/section12.html
	  Removed script block from: OEBPS/section7.html
	  Removed script block from: OEBPS/section24.html
	  Removed script block from: OEBPS/section16.html
	  Removed script block from: OEBPS/cover.html
	  Removed script block from: OEBPS/section8.html
	  Removed script block from: OEBPS/section13.html
	  Removed script block from: OEBPS/section19.html
	  Removed script block from: OEBPS/section21.html
	  Removed script block from: OEBPS/section10.html
	  Removed script block from: OEBPS/section30.html
	  Removed script block from: OEBPS/section3.html
	  Removed script block from: OEBPS/section6.html
	  Removed script block from: OEBPS/section17.html
	  Removed script block from: OEBPS/section15.html
	Looking for .js files to remove
	  Found .js file to remove: js/kobo-android.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	Stripping Kobo remnants
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OEBPS/section5.html
	  Removed Kobo HEAD elements from: OEBPS/section27.html
	  Removed Kobo HEAD elements from: OEBPS/section9.html
	  Removed Kobo HEAD elements from: OEBPS/section11.html
	  Removed Kobo HEAD elements from: OEBPS/section23.html
	  Removed Kobo HEAD elements from: OEBPS/section2.html
	  Removed Kobo HEAD elements from: OEBPS/section26.html
	  Removed Kobo HEAD elements from: OEBPS/section28.html
	  Removed Kobo HEAD elements from: OEBPS/toc.html
	  Removed Kobo HEAD elements from: OEBPS/section14.html
	  Removed Kobo HEAD elements from: OEBPS/section25.html
	  Removed Kobo HEAD elements from: OEBPS/section29.html
	  Removed Kobo HEAD elements from: OEBPS/section18.html
	  Removed Kobo HEAD elements from: OEBPS/section22.html
	  Removed Kobo HEAD elements from: OEBPS/section4.html
	  Removed Kobo HEAD elements from: OEBPS/section20.html
	  Removed Kobo HEAD elements from: OEBPS/section1.html
	  Removed Kobo HEAD elements from: OEBPS/section12.html
	  Removed Kobo HEAD elements from: OEBPS/section7.html
	  Removed Kobo HEAD elements from: OEBPS/section24.html
	  Removed Kobo HEAD elements from: OEBPS/section16.html
	  Removed Kobo HEAD elements from: OEBPS/cover.html
	  Removed Kobo HEAD elements from: OEBPS/section8.html
	  Removed Kobo HEAD elements from: OEBPS/section13.html
	  Removed Kobo HEAD elements from: OEBPS/section19.html
	  Removed Kobo HEAD elements from: OEBPS/section21.html
	  Removed Kobo HEAD elements from: OEBPS/section10.html
	  Removed Kobo HEAD elements from: OEBPS/section30.html
	  Removed Kobo HEAD elements from: OEBPS/section3.html
	  Removed Kobo HEAD elements from: OEBPS/section6.html
	  Removed Kobo HEAD elements from: OEBPS/section17.html
	  Removed Kobo HEAD elements from: OEBPS/section15.html
	  Stripped Kobo spans in: OEBPS/section5.html
	  Stripped Kobo spans in: OEBPS/section27.html
	  Stripped Kobo spans in: OEBPS/section9.html
	  Stripped Kobo spans in: OEBPS/section11.html
	  Stripped Kobo spans in: OEBPS/section23.html
	  Stripped Kobo spans in: OEBPS/section2.html
	  Stripped Kobo spans in: OEBPS/section26.html
	  Stripped Kobo spans in: OEBPS/section28.html
	  Stripped Kobo spans in: OEBPS/section14.html
	  Stripped Kobo spans in: OEBPS/section25.html
	  Stripped Kobo spans in: OEBPS/section29.html
	  Stripped Kobo spans in: OEBPS/section18.html
	  Stripped Kobo spans in: OEBPS/section22.html
	  Stripped Kobo spans in: OEBPS/section4.html
	  Stripped Kobo spans in: OEBPS/section20.html
	  Stripped Kobo spans in: OEBPS/section1.html
	  Stripped Kobo spans in: OEBPS/section12.html
	  Stripped Kobo spans in: OEBPS/section7.html
	  Stripped Kobo spans in: OEBPS/section24.html
	  Stripped Kobo spans in: OEBPS/section16.html
	  Stripped Kobo spans in: OEBPS/cover.html
	  Stripped Kobo spans in: OEBPS/section8.html
	  Stripped Kobo spans in: OEBPS/section13.html
	  Stripped Kobo spans in: OEBPS/section19.html
	  Stripped Kobo spans in: OEBPS/section21.html
	  Stripped Kobo spans in: OEBPS/section10.html
	  Stripped Kobo spans in: OEBPS/section30.html
	  Stripped Kobo spans in: OEBPS/section3.html
	  Stripped Kobo spans in: OEBPS/section6.html
	  Stripped Kobo spans in: OEBPS/section17.html
	  Stripped Kobo spans in: OEBPS/section15.html
ePub updated in 1.06 seconds

Logfile for book ID 9 (Amaury's Hellion / Tina Folsom)
9
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\8y9kbg_modify_epub\9.epub
Parsing xml file: OPS/content.opf
Parsing xml file: OPS/toc.ncx
	Looking for inline javascript blocks to remove
	  Removed script block from: OPS/section-0018.html
	  Removed script block from: OPS/section-0035.html
	  Removed script block from: OPS/section-0041.html
	  Removed script block from: OPS/section-0007.html
	  Removed script block from: OPS/section-0032.html
	  Removed script block from: OPS/section-0001.html
	  Removed script block from: OPS/section-0037.html
	  Removed script block from: OPS/section-0014.html
	  Removed script block from: OPS/CoverPage.html
	  Removed script block from: OPS/section-0040.html
	  Removed script block from: OPS/section-0005.html
	  Removed script block from: OPS/section-0004.html
	  Removed script block from: OPS/section-0034.html
	  Removed script block from: OPS/section-0020.html
	  Removed script block from: OPS/section-0006.html
	  Removed script block from: OPS/section-0022.html
	  Removed script block from: OPS/section-0028.html
	  Removed script block from: OPS/section-0025.html
	  Removed script block from: OPS/section-0019.html
	  Removed script block from: OPS/section-0036.html
	  Removed script block from: OPS/section-0015.html
	  Removed script block from: OPS/section-0029.html
	  Removed script block from: OPS/section-0017.html
	  Removed script block from: OPS/section-0026.html
	  Removed script block from: OPS/section-0021.html
	  Removed script block from: OPS/section-0010.html
	  Removed script block from: OPS/section-0016.html
	  Removed script block from: OPS/section-0024.html
	  Removed script block from: OPS/section-0003.html
	  Removed script block from: OPS/section-0042.html
	  Removed script block from: OPS/section-0043.html
	  Removed script block from: OPS/section-0030.html
	  Removed script block from: OPS/section-0012.html
	  Removed script block from: OPS/section-0013.html
	  Removed script block from: OPS/section-0023.html
	  Removed script block from: OPS/section-0027.html
	  Removed script block from: OPS/section-0033.html
	  Removed script block from: OPS/section-0009.html
	  Removed script block from: OPS/section-0011.html
	  Removed script block from: OPS/section-0031.html
	  Removed script block from: OPS/section-0044.html
	  Removed script block from: OPS/section-0039.html
	  Removed script block from: OPS/TableOfContents.html
	  Removed script block from: OPS/section-0008.html
	  Removed script block from: OPS/section-0002.html
	  Removed script block from: OPS/section-0038.html
	Looking for .js files to remove
	  Found .js file to remove: OPS/js/kobo.js
	Stripping spans
calibre_plugins.modify_epub.modify:542: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
	  Stripped spans in: OPS/section-0018.html
	  Stripped spans in: OPS/section-0035.html
	  Stripped spans in: OPS/section-0041.html
	  Stripped spans in: OPS/section-0007.html
	  Stripped spans in: OPS/section-0032.html
	  Stripped spans in: OPS/section-0001.html
	  Stripped spans in: OPS/section-0037.html
	  Stripped spans in: OPS/section-0014.html
	  Stripped spans in: OPS/section-0040.html
	  Stripped spans in: OPS/section-0005.html
	  Stripped spans in: OPS/section-0004.html
	  Stripped spans in: OPS/section-0034.html
	  Stripped spans in: OPS/section-0020.html
	  Stripped spans in: OPS/section-0006.html
	  Stripped spans in: OPS/section-0022.html
	  Stripped spans in: OPS/section-0028.html
	  Stripped spans in: OPS/section-0025.html
	  Stripped spans in: OPS/section-0019.html
	  Stripped spans in: OPS/section-0036.html
	  Stripped spans in: OPS/section-0015.html
	  Stripped spans in: OPS/section-0029.html
	  Stripped spans in: OPS/section-0017.html
	  Stripped spans in: OPS/section-0026.html
	  Stripped spans in: OPS/section-0021.html
	  Stripped spans in: OPS/section-0010.html
	  Stripped spans in: OPS/section-0016.html
	  Stripped spans in: OPS/section-0024.html
	  Stripped spans in: OPS/section-0003.html
	  Stripped spans in: OPS/section-0042.html
	  Stripped spans in: OPS/section-0043.html
	  Stripped spans in: OPS/section-0030.html
	  Stripped spans in: OPS/section-0012.html
	  Stripped spans in: OPS/section-0013.html
	  Stripped spans in: OPS/section-0023.html
	  Stripped spans in: OPS/section-0027.html
	  Stripped spans in: OPS/section-0033.html
	  Stripped spans in: OPS/section-0009.html
	  Stripped spans in: OPS/section-0011.html
	  Stripped spans in: OPS/section-0031.html
	  Stripped spans in: OPS/section-0044.html
	  Stripped spans in: OPS/section-0039.html
	  Stripped spans in: OPS/section-0008.html
	  Stripped spans in: OPS/section-0002.html
	  Stripped spans in: OPS/section-0038.html
	Stripping Kobo remnants
	  Removed kobo.css file: OPS/css/kobo.css
	  Removed rights.xml file: rights.xml
	  Removed Kobo HEAD elements from: OPS/section-0018.html
	  Removed Kobo HEAD elements from: OPS/section-0035.html
	  Removed Kobo HEAD elements from: OPS/section-0041.html
	  Removed Kobo HEAD elements from: OPS/section-0007.html
	  Removed Kobo HEAD elements from: OPS/section-0032.html
	  Removed Kobo HEAD elements from: OPS/section-0001.html
	  Removed Kobo HEAD elements from: OPS/section-0037.html
	  Removed Kobo HEAD elements from: OPS/section-0014.html
	  Removed Kobo HEAD elements from: OPS/CoverPage.html
	  Removed Kobo HEAD elements from: OPS/section-0040.html
	  Removed Kobo HEAD elements from: OPS/section-0005.html
	  Removed Kobo HEAD elements from: OPS/section-0004.html
	  Removed Kobo HEAD elements from: OPS/section-0034.html
	  Removed Kobo HEAD elements from: OPS/section-0020.html
	  Removed Kobo HEAD elements from: OPS/section-0006.html
	  Removed Kobo HEAD elements from: OPS/section-0022.html
	  Removed Kobo HEAD elements from: OPS/section-0028.html
	  Removed Kobo HEAD elements from: OPS/section-0025.html
	  Removed Kobo HEAD elements from: OPS/section-0019.html
	  Removed Kobo HEAD elements from: OPS/section-0036.html
	  Removed Kobo HEAD elements from: OPS/section-0015.html
	  Removed Kobo HEAD elements from: OPS/section-0029.html
	  Removed Kobo HEAD elements from: OPS/section-0017.html
	  Removed Kobo HEAD elements from: OPS/section-0026.html
	  Removed Kobo HEAD elements from: OPS/section-0021.html
	  Removed Kobo HEAD elements from: OPS/section-0010.html
	  Removed Kobo HEAD elements from: OPS/section-0016.html
	  Removed Kobo HEAD elements from: OPS/section-0024.html
	  Removed Kobo HEAD elements from: OPS/section-0003.html
	  Removed Kobo HEAD elements from: OPS/section-0042.html
	  Removed Kobo HEAD elements from: OPS/section-0043.html
	  Removed Kobo HEAD elements from: OPS/section-0030.html
	  Removed Kobo HEAD elements from: OPS/section-0012.html
	  Removed Kobo HEAD elements from: OPS/section-0013.html
	  Removed Kobo HEAD elements from: OPS/section-0023.html
	  Removed Kobo HEAD elements from: OPS/section-0027.html
	  Removed Kobo HEAD elements from: OPS/section-0033.html
	  Removed Kobo HEAD elements from: OPS/section-0009.html
	  Removed Kobo HEAD elements from: OPS/section-0011.html
	  Removed Kobo HEAD elements from: OPS/section-0031.html
	  Removed Kobo HEAD elements from: OPS/section-0044.html
	  Removed Kobo HEAD elements from: OPS/section-0039.html
	  Removed Kobo HEAD elements from: OPS/TableOfContents.html
	  Removed Kobo HEAD elements from: OPS/section-0008.html
	  Removed Kobo HEAD elements from: OPS/section-0002.html
	  Removed Kobo HEAD elements from: OPS/section-0038.html
	  Stripped Kobo spans in: OPS/section-0018.html
	  Stripped Kobo spans in: OPS/section-0035.html
	  Stripped Kobo spans in: OPS/section-0041.html
	  Stripped Kobo spans in: OPS/section-0007.html
	  Stripped Kobo spans in: OPS/section-0032.html
	  Stripped Kobo spans in: OPS/section-0001.html
	  Stripped Kobo spans in: OPS/section-0037.html
	  Stripped Kobo spans in: OPS/section-0014.html
	  Stripped Kobo spans in: OPS/CoverPage.html
	  Stripped Kobo spans in: OPS/section-0040.html
	  Stripped Kobo spans in: OPS/section-0005.html
	  Stripped Kobo spans in: OPS/section-0004.html
	  Stripped Kobo spans in: OPS/section-0034.html
	  Stripped Kobo spans in: OPS/section-0020.html
	  Stripped Kobo spans in: OPS/section-0006.html
	  Stripped Kobo spans in: OPS/section-0022.html
	  Stripped Kobo spans in: OPS/section-0028.html
	  Stripped Kobo spans in: OPS/section-0025.html
	  Stripped Kobo spans in: OPS/section-0019.html
	  Stripped Kobo spans in: OPS/section-0036.html
	  Stripped Kobo spans in: OPS/section-0015.html
	  Stripped Kobo spans in: OPS/section-0029.html
	  Stripped Kobo spans in: OPS/section-0017.html
	  Stripped Kobo spans in: OPS/section-0026.html
	  Stripped Kobo spans in: OPS/section-0021.html
	  Stripped Kobo spans in: OPS/section-0010.html
	  Stripped Kobo spans in: OPS/section-0016.html
	  Stripped Kobo spans in: OPS/section-0024.html
	  Stripped Kobo spans in: OPS/section-0003.html
	  Stripped Kobo spans in: OPS/section-0042.html
	  Stripped Kobo spans in: OPS/section-0043.html
	  Stripped Kobo spans in: OPS/section-0030.html
	  Stripped Kobo spans in: OPS/section-0012.html
	  Stripped Kobo spans in: OPS/section-0013.html
	  Stripped Kobo spans in: OPS/section-0023.html
	  Stripped Kobo spans in: OPS/section-0027.html
	  Stripped Kobo spans in: OPS/section-0033.html
	  Stripped Kobo spans in: OPS/section-0009.html
	  Stripped Kobo spans in: OPS/section-0011.html
	  Stripped Kobo spans in: OPS/section-0031.html
	  Stripped Kobo spans in: OPS/section-0044.html
	  Stripped Kobo spans in: OPS/section-0039.html
	  Stripped Kobo spans in: OPS/TableOfContents.html
	  Stripped Kobo spans in: OPS/section-0008.html
	  Stripped Kobo spans in: OPS/section-0002.html
	  Stripped Kobo spans in: OPS/section-0038.html
ePub updated in 2.75 seconds
PeterT is offline   Reply With Quote
Old 04-13-2014, 07:16 AM   #644
Rev. Bob
Wizard
Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.
 
Rev. Bob's Avatar
 
Posts: 1,760
Karma: 9918418
Join Date: Feb 2013
Location: Here on the perimeter, there are no stars
Device: Kobo H2O, iPad mini 3, Kindle Touch
Quote:
Originally Posted by PeterT View Post
138 kEpubs acquired 3 of them fail in Modify ePub processing
Code:
calibre, version 1.32.0
ERROR: Modify ePub failed: No ePub files were updated

Modify ePubs
Logfile for book ID 81 (Heat Seeker / Unknown)
81
  Modifying:  C:\Users\Peter\AppData\Local\Temp\calibre_v1urgl\72wbgu_modify_epub\81.epub
Parsing xml file: OPS/package.opf
Heat Seeker - ERROR: Traceback (most recent call last):
  File "calibre_plugins.modify_epub.modify", line 78, in process_book
  File "calibre_plugins.modify_epub.container", line 119, in __init__
  File "calibre_plugins.modify_epub.container", line 226, in get_parsed_etree
  File "calibre_plugins.modify_epub.container", line 248, in _parse_xhtml
  File "site-packages\calibre\ebooks\oeb\parse_utils.py", line 276, in parse_html
UnboundLocalError: local variable 'pre' referenced before assignment

ePub not changed after 0.26 seconds
None of that code is close to what I've changed; I don't think it's even getting to the new routines. My first instinct is that the OPF file may not be formatted properly, or perhaps the first file in the spine has a similar issue.

Could you try the following steps and see what happens?

1. Try the validator at http://validator.idpf.org/ and see if that shows a syntax error somewhere in the book. If so, GIGO applies.

2. Try parsing one of those problematic books without invoking the new routines - say, maybe just applying the "remove ADEPT remnants" tweak - and see if you get the same error. If you do, see if that remains the case with the current release version of the plugin. If both of those are true, it's definitely not my error, but it bears further inspection. If one or both of those is false, then it's my bug, but it's manifesting in a bizarre way.

It's certainly a bug, but my question is whose bug it is - mine, Grant's, calibre's, or the book formatter's.
Rev. Bob is offline   Reply With Quote
Old 04-13-2014, 07:17 AM   #645
Rev. Bob
Wizard
Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.Rev. Bob ought to be getting tired of karma fortunes by now.
 
Rev. Bob's Avatar
 
Posts: 1,760
Karma: 9918418
Join Date: Feb 2013
Location: Here on the perimeter, there are no stars
Device: Kobo H2O, iPad mini 3, Kindle Touch
Quote:
Originally Posted by Perkin View Post
Haven't got any original kepubs (don't know how to get them into calibre and strip drm? - I usually just dl the epub variety and go from there.)
Googling "Apprentice Alf" may help you with that issue, but I can't go into further detail.

Last edited by pdurrant; 10-28-2014 at 05:08 AM. Reason: changed search term to permitted value
Rev. Bob is offline   Reply With Quote
Reply

Tags
modify epub


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
[GUI Plugin] Quality Check kiwidude Plugins 1184 04-17-2024 06:17 PM
[GUI Plugin] Open With kiwidude Plugins 403 04-01-2024 08:39 AM
[GUI Plugin] Manage Series kiwidude Plugins 166 02-13-2024 11:31 AM
Modify ePub plugin dev thread kiwidude Development 346 09-02-2013 05:14 PM
[GUI Plugin] Plugin Updater **Deprecated** kiwidude Plugins 159 06-19-2011 12:27 PM


All times are GMT -4. The time now is 08:28 AM.


MobileRead.com is a privately owned, operated and funded community.