diff --git a/.eleventy.js b/.eleventy.js index 9b9c9ad..a678107 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -5,6 +5,7 @@ const dateFilters = require('./config/filters/date.js') const postFilters = require('./config/filters/posts.js') const fs = require('fs') const moment = require("moment") +// const { eleventyImageTransformPlugin } = require('@11ty/eleventy-img'); module.exports = function (eleventyConfig) { @@ -45,11 +46,27 @@ module.exports = function (eleventyConfig) { plugins.forEach(plugin => { eleventyConfig.addPlugin(require(plugin.name), { ...plugin.options }) }) + // eleventyConfig.addPlugin(eleventyImageTransformPlugin, { + // extensions: "html", + // outputDir: "/assets/images/", + // cacheOptions: { + // duration: "*", + // directory: ".cache", + // removeUrlQueryParams: false, + // }, + // formats: ["webp", "jpeg"], + // widths: [300, 600, 900, 1200], + // defaultAttributes: { + // loading: "lazy", + // sizes: "100vw", + // decoding: "async", + // }, + // }) // collections Object.keys(collections).forEach(collectionName => { eleventyConfig.addCollection(collectionName, collections[collectionName]) -}) + }) // Shortcodes Object.keys(shortcodes).forEach(shortcodeName => { diff --git a/config/plugins.js b/config/plugins.js index 48af9cc..d03d282 100644 --- a/config/plugins.js +++ b/config/plugins.js @@ -1,6 +1,6 @@ module.exports = [ { - name: '@11ty/eleventy-navigation', + name: '@11ty/eleventy-navigation', }, { name: '@11ty/eleventy-plugin-rss' diff --git a/package-lock.json b/package-lock.json index b6bae87..fd3c3d7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -28,6 +28,7 @@ "slugify": "^1.6.6" }, "devDependencies": { + "@11ty/eleventy-img": "^6.0.0", "@11ty/eleventy-plugin-rss": "^1.2.0", "npm-run-all": "^4.1.5" } @@ -138,6 +139,90 @@ "url": "https://opencollective.com/11ty" } }, + "node_modules/@11ty/eleventy-img": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@11ty/eleventy-img/-/eleventy-img-6.0.0.tgz", + "integrity": "sha512-5vQj6NMxaRwI/rkRkrDajUvNy4p4xJz2DJrlgk0JpvYegkC8OxAoLE+sXqd5Ij5IgqfoPHiepf/3FbTHAnYXzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@11ty/eleventy-fetch": "^5.0.2", + "@11ty/eleventy-utils": "^2.0.0", + "brotli-size": "^4.0.0", + "debug": "^4.4.0", + "entities": "^6.0.0", + "image-size": "^1.2.0", + "p-queue": "^6.6.2", + "sharp": "^0.33.5" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/11ty" + } + }, + "node_modules/@11ty/eleventy-img/node_modules/@11ty/eleventy-fetch": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@11ty/eleventy-fetch/-/eleventy-fetch-5.0.2.tgz", + "integrity": "sha512-yu7oZ5iv7zvFDawSYcN19cz7ddJB7OXPGZ47z/MzYmLa2LkpJm0KnZW2xGwpKvVrXd+tyb96ts6AqlkJT/ibwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rgrove/parse-xml": "^4.2.0", + "debug": "^4.3.7", + "flat-cache": "^6.1.1", + "graceful-fs": "^4.2.11", + "p-queue": "6.6.2" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/11ty" + } + }, + "node_modules/@11ty/eleventy-img/node_modules/@11ty/eleventy-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@11ty/eleventy-utils/-/eleventy-utils-2.0.0.tgz", + "integrity": "sha512-rKny6X7+ARuke0TaA6FwNv2PWJCNSdPQqbqDgaZgi+bPXwnPRTEi3CWzvr6vVgh/1XpO1G4FhRPreLhtcwHUyg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/11ty" + } + }, + "node_modules/@11ty/eleventy-img/node_modules/entities": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.0.tgz", + "integrity": "sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/@11ty/eleventy-img/node_modules/flat-cache": { + "version": "6.1.5", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.5.tgz", + "integrity": "sha512-QR+2kN38f8nMfiIQ1LHYjuDEmZNZVjxuxY+HufbS3BW0EX01Q5OnH7iduOYRutmgiXb797HAKcXUeXrvRjjgSQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "cacheable": "^1.8.7", + "flatted": "^3.3.2", + "hookified": "^1.6.0" + } + }, "node_modules/@11ty/eleventy-navigation": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/@11ty/eleventy-navigation/-/eleventy-navigation-0.3.5.tgz", @@ -298,11 +383,412 @@ "node": ">=6.9.0" } }, + "node_modules/@emnapi/runtime": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz", + "integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, "node_modules/@iarna/toml": { "version": "2.2.5", "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz", "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==" }, + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz", + "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.0.4" + } + }, + "node_modules/@img/sharp-darwin-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz", + "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.0.4" + } + }, + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz", + "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz", + "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz", + "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz", + "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz", + "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz", + "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz", + "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz", + "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz", + "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.0.5" + } + }, + "node_modules/@img/sharp-linux-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz", + "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.0.4" + } + }, + "node_modules/@img/sharp-linux-s390x": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz", + "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.0.4" + } + }, + "node_modules/@img/sharp-linux-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz", + "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.0.4" + } + }, + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz", + "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.0.4" + } + }, + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz", + "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.0.4" + } + }, + "node_modules/@img/sharp-wasm32": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz", + "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, + "dependencies": { + "@emnapi/runtime": "^1.2.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz", + "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz", + "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@keyv/serialize": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.0.2.tgz", + "integrity": "sha512-+E/LyaAeuABniD/RvUezWVXKpeuvwLEA9//nE9952zBaOdBd2mQ3pPoM8cUe2X6IcMByfuSLzmYqnYshG60+HQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer": "^6.0.3" + } + }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -362,6 +848,16 @@ "url": "https://opencollective.com/popperjs" } }, + "node_modules/@rgrove/parse-xml": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@rgrove/parse-xml/-/parse-xml-4.2.0.tgz", + "integrity": "sha512-UuBOt7BOsKVOkFXRe4Ypd/lADuNIfqJXv8GvHqtXaTYXPPKkj2nS2zPllVsrtRjcomDhIJVBnZwfmlI222WH8g==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14.0.0" + } + }, "node_modules/@rknightuk/eleventy-plugin-post-graph": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/@rknightuk/eleventy-plugin-post-graph/-/eleventy-plugin-post-graph-1.0.8.tgz", @@ -605,6 +1101,27 @@ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, "node_modules/bcp-47": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/bcp-47/-/bcp-47-1.0.8.tgz", @@ -690,6 +1207,19 @@ "node": ">=8" } }, + "node_modules/brotli-size": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/brotli-size/-/brotli-size-4.0.0.tgz", + "integrity": "sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==", + "dev": true, + "license": "MIT", + "dependencies": { + "duplexer": "0.1.1" + }, + "engines": { + "node": ">= 10.16.0" + } + }, "node_modules/browserslist": { "version": "4.23.1", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", @@ -721,6 +1251,52 @@ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/cacheable": { + "version": "1.8.7", + "resolved": "https://registry.npmjs.org/cacheable/-/cacheable-1.8.7.tgz", + "integrity": "sha512-AbfG7dAuYNjYxFUtL1lAqmlWdxczCJ47w7cFjhGcnGnUdwSo6VgmSojfoW3tUI12HUkgTJ5kqj78yyq6TsFtlg==", + "dev": true, + "license": "MIT", + "dependencies": { + "hookified": "^1.6.0", + "keyv": "^5.2.3" + } + }, + "node_modules/cacheable/node_modules/keyv": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-5.2.3.tgz", + "integrity": "sha512-AGKecUfzrowabUv0bH1RIR5Vf7w+l4S3xtQAypKaUpTdIR1EbrAcTxHCrpo9Q+IWeUlFE2palRtgIQcgm+PQJw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@keyv/serialize": "^1.0.2" + } + }, "node_modules/call-bind": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", @@ -804,6 +1380,20 @@ "fsevents": "~2.3.2" } }, + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" + } + }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -820,6 +1410,17 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, "node_modules/commander": { "version": "10.0.1", "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", @@ -922,11 +1523,12 @@ } }, "node_modules/debug": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", - "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "license": "MIT", "dependencies": { - "ms": "2.1.2" + "ms": "^2.1.3" }, "engines": { "node": ">=6.0" @@ -1072,6 +1674,12 @@ "resolved": "https://registry.npmjs.org/dracula-prism/-/dracula-prism-2.1.16.tgz", "integrity": "sha512-fNZU8sMYOFYq/K8WFtsVUJEHemYlQJy7E3wm+Lndp3hTWG+Hp3+sCcbQdWVvQTfw+xIJeI+mIrjfUWHb9Q/s2Q==" }, + "node_modules/duplexer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", + "integrity": "sha512-sxNZ+ljy+RA1maXoUReeqBBpBC6RLKmg5ewzV+x+mSETmWNoKdZN6vcQjpFROemza23hGFskJtFNoUWUaQ+R4Q==", + "dev": true + }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -1411,9 +2019,10 @@ } }, "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==" + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", + "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", + "license": "ISC" }, "node_modules/for-each": { "version": "0.3.3", @@ -1709,6 +2318,13 @@ "node": ">= 0.4" } }, + "node_modules/hookified": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/hookified/-/hookified-1.6.0.tgz", + "integrity": "sha512-se7cpwTA+iA/eY548Bu03JJqBiEZAqU2jnyKdj5B5qurtBg64CZGHTgqCv4Yh7NWu6FGI09W61MCq+NoPj9GXA==", + "dev": true, + "license": "MIT" + }, "node_modules/hosted-git-info": { "version": "2.8.9", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", @@ -1752,6 +2368,43 @@ "node": ">= 0.10" } }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/image-size": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.2.0.tgz", + "integrity": "sha512-4S8fwbO6w3GeCVN6OPtA9I5IGKkcDMPcKndtUlpJuCwu7JLjtj7JZpwqLuyY2nrmQT3AWsCJLSKPsc2mPBSl3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "queue": "6.0.2" + }, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=16.x" + } + }, "node_modules/immutable": { "version": "4.3.6", "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.6.tgz", @@ -2676,9 +3329,10 @@ "integrity": "sha512-rvGK92GxSuPEZLY8D/JH07cG3BxyA+/F0Bxg32OoGAEFFhGWA3OqVpqPZlOgZTCR52clXrmz+z2pYSJ6gOig1w==" }, "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" }, "node_modules/multimatch": { "version": "5.0.0", @@ -3383,6 +4037,16 @@ "node": ">=6" } }, + "node_modules/queue": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", + "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "~2.0.3" + } + }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -3607,9 +4271,10 @@ } }, "node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -3653,6 +4318,56 @@ "node": ">= 0.4" } }, + "node_modules/sharp": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz", + "integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==", + "dev": true, + "hasInstallScript": true, + "license": "Apache-2.0", + "dependencies": { + "color": "^4.2.3", + "detect-libc": "^2.0.3", + "semver": "^7.6.3" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.33.5", + "@img/sharp-darwin-x64": "0.33.5", + "@img/sharp-libvips-darwin-arm64": "1.0.4", + "@img/sharp-libvips-darwin-x64": "1.0.4", + "@img/sharp-libvips-linux-arm": "1.0.5", + "@img/sharp-libvips-linux-arm64": "1.0.4", + "@img/sharp-libvips-linux-s390x": "1.0.4", + "@img/sharp-libvips-linux-x64": "1.0.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.0.4", + "@img/sharp-libvips-linuxmusl-x64": "1.0.4", + "@img/sharp-linux-arm": "0.33.5", + "@img/sharp-linux-arm64": "0.33.5", + "@img/sharp-linux-s390x": "0.33.5", + "@img/sharp-linux-x64": "0.33.5", + "@img/sharp-linuxmusl-arm64": "0.33.5", + "@img/sharp-linuxmusl-x64": "0.33.5", + "@img/sharp-wasm32": "0.33.5", + "@img/sharp-win32-ia32": "0.33.5", + "@img/sharp-win32-x64": "0.33.5" + } + }, + "node_modules/sharp/node_modules/detect-libc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -3699,6 +4414,23 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "dev": true, + "license": "MIT" + }, "node_modules/slash": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", @@ -3922,6 +4654,14 @@ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD", + "optional": true + }, "node_modules/typed-array-buffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", @@ -4313,6 +5053,60 @@ "p-queue": "^6.6.2" } }, + "@11ty/eleventy-img": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@11ty/eleventy-img/-/eleventy-img-6.0.0.tgz", + "integrity": "sha512-5vQj6NMxaRwI/rkRkrDajUvNy4p4xJz2DJrlgk0JpvYegkC8OxAoLE+sXqd5Ij5IgqfoPHiepf/3FbTHAnYXzg==", + "dev": true, + "requires": { + "@11ty/eleventy-fetch": "^5.0.2", + "@11ty/eleventy-utils": "^2.0.0", + "brotli-size": "^4.0.0", + "debug": "^4.4.0", + "entities": "^6.0.0", + "image-size": "^1.2.0", + "p-queue": "^6.6.2", + "sharp": "^0.33.5" + }, + "dependencies": { + "@11ty/eleventy-fetch": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@11ty/eleventy-fetch/-/eleventy-fetch-5.0.2.tgz", + "integrity": "sha512-yu7oZ5iv7zvFDawSYcN19cz7ddJB7OXPGZ47z/MzYmLa2LkpJm0KnZW2xGwpKvVrXd+tyb96ts6AqlkJT/ibwQ==", + "dev": true, + "requires": { + "@rgrove/parse-xml": "^4.2.0", + "debug": "^4.3.7", + "flat-cache": "^6.1.1", + "graceful-fs": "^4.2.11", + "p-queue": "6.6.2" + } + }, + "@11ty/eleventy-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@11ty/eleventy-utils/-/eleventy-utils-2.0.0.tgz", + "integrity": "sha512-rKny6X7+ARuke0TaA6FwNv2PWJCNSdPQqbqDgaZgi+bPXwnPRTEi3CWzvr6vVgh/1XpO1G4FhRPreLhtcwHUyg==", + "dev": true + }, + "entities": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.0.tgz", + "integrity": "sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==", + "dev": true + }, + "flat-cache": { + "version": "6.1.5", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.5.tgz", + "integrity": "sha512-QR+2kN38f8nMfiIQ1LHYjuDEmZNZVjxuxY+HufbS3BW0EX01Q5OnH7iduOYRutmgiXb797HAKcXUeXrvRjjgSQ==", + "dev": true, + "requires": { + "cacheable": "^1.8.7", + "flatted": "^3.3.2", + "hookified": "^1.6.0" + } + } + } + }, "@11ty/eleventy-navigation": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/@11ty/eleventy-navigation/-/eleventy-navigation-0.3.5.tgz", @@ -4388,11 +5182,190 @@ "to-fast-properties": "^2.0.0" } }, + "@emnapi/runtime": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz", + "integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==", + "dev": true, + "optional": true, + "requires": { + "tslib": "^2.4.0" + } + }, "@iarna/toml": { "version": "2.2.5", "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz", "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==" }, + "@img/sharp-darwin-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz", + "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==", + "dev": true, + "optional": true, + "requires": { + "@img/sharp-libvips-darwin-arm64": "1.0.4" + } + }, + "@img/sharp-darwin-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz", + "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==", + "dev": true, + "optional": true, + "requires": { + "@img/sharp-libvips-darwin-x64": "1.0.4" + } + }, + "@img/sharp-libvips-darwin-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz", + "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==", + "dev": true, + "optional": true + }, + "@img/sharp-libvips-darwin-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz", + "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==", + "dev": true, + "optional": true + }, + "@img/sharp-libvips-linux-arm": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz", + "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==", + "dev": true, + "optional": true + }, + "@img/sharp-libvips-linux-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz", + "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==", + "dev": true, + "optional": true + }, + "@img/sharp-libvips-linux-s390x": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz", + "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==", + "dev": true, + "optional": true + }, + "@img/sharp-libvips-linux-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz", + "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==", + "dev": true, + "optional": true + }, + "@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz", + "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==", + "dev": true, + "optional": true + }, + "@img/sharp-libvips-linuxmusl-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz", + "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==", + "dev": true, + "optional": true + }, + "@img/sharp-linux-arm": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz", + "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==", + "dev": true, + "optional": true, + "requires": { + "@img/sharp-libvips-linux-arm": "1.0.5" + } + }, + "@img/sharp-linux-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz", + "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==", + "dev": true, + "optional": true, + "requires": { + "@img/sharp-libvips-linux-arm64": "1.0.4" + } + }, + "@img/sharp-linux-s390x": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz", + "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==", + "dev": true, + "optional": true, + "requires": { + "@img/sharp-libvips-linux-s390x": "1.0.4" + } + }, + "@img/sharp-linux-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz", + "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==", + "dev": true, + "optional": true, + "requires": { + "@img/sharp-libvips-linux-x64": "1.0.4" + } + }, + "@img/sharp-linuxmusl-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz", + "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==", + "dev": true, + "optional": true, + "requires": { + "@img/sharp-libvips-linuxmusl-arm64": "1.0.4" + } + }, + "@img/sharp-linuxmusl-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz", + "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==", + "dev": true, + "optional": true, + "requires": { + "@img/sharp-libvips-linuxmusl-x64": "1.0.4" + } + }, + "@img/sharp-wasm32": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz", + "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==", + "dev": true, + "optional": true, + "requires": { + "@emnapi/runtime": "^1.2.0" + } + }, + "@img/sharp-win32-ia32": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz", + "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==", + "dev": true, + "optional": true + }, + "@img/sharp-win32-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz", + "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==", + "dev": true, + "optional": true + }, + "@keyv/serialize": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.0.2.tgz", + "integrity": "sha512-+E/LyaAeuABniD/RvUezWVXKpeuvwLEA9//nE9952zBaOdBd2mQ3pPoM8cUe2X6IcMByfuSLzmYqnYshG60+HQ==", + "dev": true, + "requires": { + "buffer": "^6.0.3" + } + }, "@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -4439,6 +5412,12 @@ "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==" }, + "@rgrove/parse-xml": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@rgrove/parse-xml/-/parse-xml-4.2.0.tgz", + "integrity": "sha512-UuBOt7BOsKVOkFXRe4Ypd/lADuNIfqJXv8GvHqtXaTYXPPKkj2nS2zPllVsrtRjcomDhIJVBnZwfmlI222WH8g==", + "dev": true + }, "@rknightuk/eleventy-plugin-post-graph": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/@rknightuk/eleventy-plugin-post-graph/-/eleventy-plugin-post-graph-1.0.8.tgz", @@ -4620,6 +5599,12 @@ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, "bcp-47": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/bcp-47/-/bcp-47-1.0.8.tgz", @@ -4672,6 +5657,15 @@ "fill-range": "^7.1.1" } }, + "brotli-size": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/brotli-size/-/brotli-size-4.0.0.tgz", + "integrity": "sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==", + "dev": true, + "requires": { + "duplexer": "0.1.1" + } + }, "browserslist": { "version": "4.23.1", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", @@ -4683,6 +5677,37 @@ "update-browserslist-db": "^1.0.16" } }, + "buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "cacheable": { + "version": "1.8.7", + "resolved": "https://registry.npmjs.org/cacheable/-/cacheable-1.8.7.tgz", + "integrity": "sha512-AbfG7dAuYNjYxFUtL1lAqmlWdxczCJ47w7cFjhGcnGnUdwSo6VgmSojfoW3tUI12HUkgTJ5kqj78yyq6TsFtlg==", + "dev": true, + "requires": { + "hookified": "^1.6.0", + "keyv": "^5.2.3" + }, + "dependencies": { + "keyv": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-5.2.3.tgz", + "integrity": "sha512-AGKecUfzrowabUv0bH1RIR5Vf7w+l4S3xtQAypKaUpTdIR1EbrAcTxHCrpo9Q+IWeUlFE2palRtgIQcgm+PQJw==", + "dev": true, + "requires": { + "@keyv/serialize": "^1.0.2" + } + } + } + }, "call-bind": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", @@ -4732,6 +5757,16 @@ "readdirp": "~3.6.0" } }, + "color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "dev": true, + "requires": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + } + }, "color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -4745,6 +5780,16 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, + "color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dev": true, + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, "commander": { "version": "10.0.1", "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", @@ -4816,11 +5861,11 @@ } }, "debug": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", - "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", "requires": { - "ms": "2.1.2" + "ms": "^2.1.3" } }, "define-data-property": { @@ -4907,6 +5952,12 @@ "resolved": "https://registry.npmjs.org/dracula-prism/-/dracula-prism-2.1.16.tgz", "integrity": "sha512-fNZU8sMYOFYq/K8WFtsVUJEHemYlQJy7E3wm+Lndp3hTWG+Hp3+sCcbQdWVvQTfw+xIJeI+mIrjfUWHb9Q/s2Q==" }, + "duplexer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", + "integrity": "sha512-sxNZ+ljy+RA1maXoUReeqBBpBC6RLKmg5ewzV+x+mSETmWNoKdZN6vcQjpFROemza23hGFskJtFNoUWUaQ+R4Q==", + "dev": true + }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -5177,9 +6228,9 @@ } }, "flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==" + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", + "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==" }, "for-each": { "version": "0.3.3", @@ -5383,6 +6434,12 @@ "function-bind": "^1.1.2" } }, + "hookified": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/hookified/-/hookified-1.6.0.tgz", + "integrity": "sha512-se7cpwTA+iA/eY548Bu03JJqBiEZAqU2jnyKdj5B5qurtBg64CZGHTgqCv4Yh7NWu6FGI09W61MCq+NoPj9GXA==", + "dev": true + }, "hosted-git-info": { "version": "2.8.9", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", @@ -5412,6 +6469,21 @@ "resolved": "https://registry.npmjs.org/http-equiv-refresh/-/http-equiv-refresh-1.0.0.tgz", "integrity": "sha512-TScO04soylRN9i/QdOdgZyhydXg9z6XdaGzEyOgDKycePeDeTT4KvigjBcI+tgfTlieLWauGORMq5F1eIDa+1w==" }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, + "image-size": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.2.0.tgz", + "integrity": "sha512-4S8fwbO6w3GeCVN6OPtA9I5IGKkcDMPcKndtUlpJuCwu7JLjtj7JZpwqLuyY2nrmQT3AWsCJLSKPsc2mPBSl3w==", + "dev": true, + "requires": { + "queue": "6.0.2" + } + }, "immutable": { "version": "4.3.6", "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.6.tgz", @@ -6001,9 +7073,9 @@ "integrity": "sha512-rvGK92GxSuPEZLY8D/JH07cG3BxyA+/F0Bxg32OoGAEFFhGWA3OqVpqPZlOgZTCR52clXrmz+z2pYSJ6gOig1w==" }, "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "multimatch": { "version": "5.0.0", @@ -6544,6 +7616,15 @@ "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", "peer": true }, + "queue": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", + "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==", + "dev": true, + "requires": { + "inherits": "~2.0.3" + } + }, "queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -6685,9 +7766,9 @@ } }, "semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==" + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==" }, "semver-compare": { "version": "1.0.0", @@ -6719,6 +7800,44 @@ "has-property-descriptors": "^1.0.2" } }, + "sharp": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz", + "integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==", + "dev": true, + "requires": { + "@img/sharp-darwin-arm64": "0.33.5", + "@img/sharp-darwin-x64": "0.33.5", + "@img/sharp-libvips-darwin-arm64": "1.0.4", + "@img/sharp-libvips-darwin-x64": "1.0.4", + "@img/sharp-libvips-linux-arm": "1.0.5", + "@img/sharp-libvips-linux-arm64": "1.0.4", + "@img/sharp-libvips-linux-s390x": "1.0.4", + "@img/sharp-libvips-linux-x64": "1.0.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.0.4", + "@img/sharp-libvips-linuxmusl-x64": "1.0.4", + "@img/sharp-linux-arm": "0.33.5", + "@img/sharp-linux-arm64": "0.33.5", + "@img/sharp-linux-s390x": "0.33.5", + "@img/sharp-linux-x64": "0.33.5", + "@img/sharp-linuxmusl-arm64": "0.33.5", + "@img/sharp-linuxmusl-x64": "0.33.5", + "@img/sharp-wasm32": "0.33.5", + "@img/sharp-win32-ia32": "0.33.5", + "@img/sharp-win32-x64": "0.33.5", + "color": "^4.2.3", + "detect-libc": "^2.0.3", + "semver": "^7.6.3" + }, + "dependencies": { + "detect-libc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "dev": true + } + } + }, "shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -6750,6 +7869,23 @@ "object-inspect": "^1.13.1" } }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "dev": true, + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "dev": true + } + } + }, "slash": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", @@ -6913,6 +8049,13 @@ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, + "tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "optional": true + }, "typed-array-buffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", diff --git a/package.json b/package.json index 29a8db0..45ced7c 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "slugify": "^1.6.6" }, "devDependencies": { + "@11ty/eleventy-img": "^6.0.0", "@11ty/eleventy-plugin-rss": "^1.2.0", "npm-run-all": "^4.1.5" }, diff --git a/src/_data/backlogs/books.json b/src/_data/backlogs/books.json index b60073e..54f4180 100644 --- a/src/_data/backlogs/books.json +++ b/src/_data/backlogs/books.json @@ -1 +1,20639 @@ -[{"title":"Rivers of London","authorFirst":"Ben","authorLast":"Aaronovitch","genre":"Fantasy/Mystery","series":"Rivers of London 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"400"},{"title":"Moon Over Soho","authorFirst":"Ben","authorLast":"Aaronovitch","genre":"Fantasy/Mystery","series":"Rivers of London 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"332"},{"title":"Whispers Under Ground","authorFirst":"Ben","authorLast":"Aaronovitch","genre":"Fantasy/Mystery","series":"Rivers of London 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"445"},{"title":"Broken Homes","authorFirst":"Ben","authorLast":"Aaronovitch","genre":"Fantasy/Mystery","series":"Rivers of London 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"324"},{"title":"Foxglove Summer","authorFirst":"Ben","authorLast":"Aaronovitch","genre":"Fantasy/Mystery","series":"Rivers of London 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Hanging Tree","authorFirst":"Ben","authorLast":"Aaronovitch","genre":"Fantasy/Mystery","series":"Rivers of London 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"360"},{"title":"Lies Sleeping","authorFirst":"Ben","authorLast":"Aaronovitch","genre":"Fantasy/Mystery","series":"Rivers of London 7","owned":"","read":"","compDate":"","status":"","information":"","pages":"328"},{"title":"False Value","authorFirst":"Ben","authorLast":"Aaronovitch","genre":"Fantasy/Mystery","series":"Rivers of London 8","owned":"","read":"","compDate":"","status":"","information":"","pages":"320"},{"title":"The Stardust Thief","authorFirst":"Chelsea","authorLast":"Abdullah","genre":"Fantasy","series":"The Sandsea Trilogy 1","owned":"Kindle","read":"","compDate":"","status":"2 Ready","information":"","pages":"400"},{"title":"The Ashfire King","authorFirst":"Chelsea","authorLast":"Abdullah","genre":"Fantasy","series":"The Sandsea Trilogy 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Half a King","authorFirst":"Joe","authorLast":"Abercrombie","genre":"Fantasy","series":"Shattered Sea 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"365"},{"title":"Half the World","authorFirst":"Joe","authorLast":"Abercrombie","genre":"Fantasy","series":"Shattered Sea 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"392"},{"title":"Half a War","authorFirst":"Joe","authorLast":"Abercrombie","genre":"Fantasy","series":"Shattered Sea 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"375"},{"title":"The Blade Itself","authorFirst":"Joe","authorLast":"Abercrombie","genre":"Fantasy","series":"The First Law 1","owned":"","read":"X","compDate":"10/13/21","status":"","information":"","pages":"531"},{"title":"Before They Are Hanged","authorFirst":"Joe","authorLast":"Abercrombie","genre":"Fantasy","series":"The First Law 2","owned":"EPUB","read":"","compDate":"","status":"2 Ready","information":"","pages":"576"},{"title":"Last Argument of Kings","authorFirst":"Joe","authorLast":"Abercrombie","genre":"Fantasy","series":"The First Law 3","owned":"EPUB","read":"","compDate":"","status":"2 Ready","information":"","pages":"669"},{"title":"Best Served Cold","authorFirst":"Joe","authorLast":"Abercrombie","genre":"Fantasy","series":"The First Law 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"652"},{"title":"The Heroes","authorFirst":"Joe","authorLast":"Abercrombie","genre":"Fantasy","series":"The First Law 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"672"},{"title":"Red Country","authorFirst":"Joe","authorLast":"Abercrombie","genre":"Fantasy","series":"The First Law 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"472"},{"title":"A Little Hatred","authorFirst":"Joe","authorLast":"Abercrombie","genre":"Fantasy","series":"The First Law 7","owned":"","read":"","compDate":"","status":"","information":"","pages":"496"},{"title":"The Trouble with Peace","authorFirst":"Joe","authorLast":"Abercrombie","genre":"Fantasy","series":"The First Law 8","owned":"","read":"","compDate":"","status":"","information":"","pages":"512"},{"title":"The Wisdom of Crowds","authorFirst":"Joe","authorLast":"Abercrombie","genre":"Fantasy","series":"The First Law 9","owned":"","read":"","compDate":"","status":"","information":"","pages":"584"},{"title":"Age of Ash","authorFirst":"Daniel","authorLast":"Abraham","genre":"Fantasy","series":"Kithamar 1","owned":"","read":"X","compDate":"4/12/22","status":"","information":"","pages":"281"},{"title":"The Hitchhiker's Guide to the Galaxy","authorFirst":"Douglas","authorLast":"Adams","genre":"Sci-Fi/Classic","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"832"},{"title":"Watership Down","authorFirst":"Richard","authorLast":"Adams","genre":"Fantasy/Classic","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"478"},{"title":"The Goblin Emperor","authorFirst":"Katherine","authorLast":"Addison","genre":"Fantasy","series":"The Goblin Emperor 1","owned":"","read":"X","compDate":"1/20/22","status":"","information":"","pages":"496"},{"title":"Lora Selezh","authorFirst":"Katherine","authorLast":"Addison","genre":"Fantasy","series":"The Goblin Emperor 1.5, The Cemeteries of Amalo 0.5","owned":"","read":"X","compDate":"7/17/22","status":"","information":"","pages":"13"},{"title":"The Witness for the Dead","authorFirst":"Katherine","authorLast":"Addison","genre":"Fantasy","series":"The Goblin Emperor 2, The Cemeteries of Amalo 1","owned":"","read":"X","compDate":"7/17/22","status":"","information":"","pages":"208"},{"title":"The Grief of Stones","authorFirst":"Katherine","authorLast":"Addison","genre":"Fantasy","series":"The Goblin Emperor 3, The Cemeteries of Amalo 2","owned":"EPUB","read":"","compDate":"","status":"2 Ready","information":"","pages":"Manual"},{"title":"The Angel of the Crows","authorFirst":"Katherine","authorLast":"Addison","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"448"},{"title":"Children of Blood and Bone","authorFirst":"Tomi","authorLast":"Adeyemi","genre":"Fantasy","series":"Legacy of Orisha 1","owned":"","read":"X","compDate":"12/30/20","status":"","information":"","pages":"552"},{"title":"Children of Virtue and Vengeance","authorFirst":"Tomi","authorLast":"Adeyemi","genre":"Fantasy","series":"Legacy of Orisha 2","owned":"","read":"X","compDate":"1/11/21","status":"","information":"","pages":"448"},{"title":"Throne of the Crescent Moon","authorFirst":"Saladin","authorLast":"Ahmed","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"336"},{"title":"Gunmetal Gods","authorFirst":"Zamil","authorLast":"Akhtar","genre":"Fantasy","series":"Gunmetal Gods 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"Kindle Unlimited","pages":"Manual"},{"title":"Conqueror's Blood","authorFirst":"Zamil","authorLast":"Akhtar","genre":"Fantasy","series":"Gunmetal Gods 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Future","authorFirst":"Naomi","authorLast":"Alderman","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"2023 Sci-Fi Finalist","pages":"416"},{"title":"The New Jim Crow","authorFirst":"Michelle","authorLast":"Alexander","genre":"Nonfiction","series":"","owned":"Physical","read":"","compDate":"","status":"","information":"","pages":"336"},{"title":"Daughters of Nri","authorFirst":"Reni K.","authorLast":"Amayo","genre":"Fantasy","series":"Return of the Earth Mother 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"333"},{"title":"Descendants of the First","authorFirst":"Reni K.","authorLast":"Amayo","genre":"Fantasy","series":"Return of the Earth Mother 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"All the Birds in the Sky","authorFirst":"Charlie Jane","authorLast":"Anders","genre":"Fantasy","series":"","owned":"Kindle","read":"","compDate":"7/9/20","status":"7 Abandoned","information":"Poorly written","pages":"316"},{"title":"The City in the Middle of the Night","authorFirst":"Charlie Jane","authorLast":"Anders","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"368"},{"title":"Hidden Empire","authorFirst":"Kevin J.","authorLast":"Anderson","genre":"Sci-Fi/Space Opera","series":"The Saga of the Seven Suns 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"672"},{"title":"A Forest of Stars","authorFirst":"Kevin J.","authorLast":"Anderson","genre":"Sci-Fi/Space Opera","series":"The Saga of the Seven Suns 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"721"},{"title":"Horizon Storms","authorFirst":"Kevin J.","authorLast":"Anderson","genre":"Sci-Fi/Space Opera","series":"The Saga of the Seven Suns 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"650"},{"title":"Scattered Suns","authorFirst":"Kevin J.","authorLast":"Anderson","genre":"Sci-Fi/Space Opera","series":"The Saga of the Seven Suns 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"736"},{"title":"Of Fire and Night","authorFirst":"Kevin J.","authorLast":"Anderson","genre":"Sci-Fi/Space Opera","series":"The Saga of the Seven Suns 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"625"},{"title":"Metal Swarm","authorFirst":"Kevin J.","authorLast":"Anderson","genre":"Sci-Fi/Space Opera","series":"The Saga of the Seven Suns 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"678"},{"title":"The Ashes of Worlds","authorFirst":"Kevin J.","authorLast":"Anderson","genre":"Sci-Fi/Space Opera","series":"The Saga of the Seven Suns 7","owned":"","read":"","compDate":"","status":"","information":"","pages":"672"},{"title":"Spine of the Dragon","authorFirst":"Kevin J.","authorLast":"Anderson","genre":"Fantasy","series":"Wake the Dragon 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"528"},{"title":"Vengewar","authorFirst":"Kevin J.","authorLast":"Anderson","genre":"Fantasy","series":"Wake the Dragon 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"480"},{"title":"Gods and Dragons","authorFirst":"Kevin J.","authorLast":"Anderson","genre":"Fantasy","series":"Wake the Dragon 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"512"},{"title":"Assemblers of Infinity","authorFirst":"Kevin J.","authorLast":"Anderson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"466"},{"title":"Light From Uncommon Stars","authorFirst":"Ryka","authorLast":"Aoki","genre":"Fantasy","series":"","owned":"EPUB","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"384"},{"title":"The Invasion","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 01","owned":"EPUB","read":"","compDate":"","status":"2 Ready","information":"","pages":"192"},{"title":"The Visitor","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 02","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"192"},{"title":"The Encounter","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 03","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"157"},{"title":"The Message","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 04","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"160"},{"title":"The Predator","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 05","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"155"},{"title":"The Capture","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 06","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"159"},{"title":"The Stranger","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 07","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"176"},{"title":"Megamorphs #1: The Andalite's Gift","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 07.5","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Alien","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 08","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"168"},{"title":"The Secret","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 09","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"160"},{"title":"The Android","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 10","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"170"},{"title":"The Forgotten","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 11","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"162"},{"title":"The Reaction","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 12","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"158"},{"title":"The Andalite Chronicles","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 12.5","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"326"},{"title":"The Change","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 13","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"162"},{"title":"The Unknown","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 14","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"169"},{"title":"The Escape","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 15","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"170"},{"title":"The Warning","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 16","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"151"},{"title":"The Underground","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 17","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"164"},{"title":"The Decision","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 18","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"159"},{"title":"Megamorphs #2: In The Time of the Dinosaurs","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 18.5","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Departure","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 19","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"159"},{"title":"The Discovery","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 20","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"153"},{"title":"The Threat","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 21","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"159"},{"title":"The Solution","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 22","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"152"},{"title":"The Hork-Bajir Chronicles","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 22.5","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"215"},{"title":"The Pretender","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 23","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"160"},{"title":"The Suspicion","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 24","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"156"},{"title":"The Extreme","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 25","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"160"},{"title":"The Attack","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 26","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"160"},{"title":"The Exposed","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 27","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"168"},{"title":"The Experiment","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 28","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"160"},{"title":"The Sickness","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 29","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"166"},{"title":"Megamorphs #3: Elfangor's Secret","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 29.5","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Alternamorphs #1: The First Journey","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 29.75","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Reunion","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 30","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"166"},{"title":"The Cinspiracy","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 31","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Separation","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 32","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"158"},{"title":"The Illusion","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 33","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"170"},{"title":"The Prophecy","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 34","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"141"},{"title":"The Proposal","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 35","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"147"},{"title":"Visser","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 35.5","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"200"},{"title":"The Mutation","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 36","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"160"},{"title":"The Weakness","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 37","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"129"},{"title":"The Arrival","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 38","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"148"},{"title":"The Hidden Palace","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 39","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Other","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 40","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"130"},{"title":"Alternamorphs #2: The Next Passage","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 40.5","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Megamorphs #4: Back to Before","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 40.75","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Familiar","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 41","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"143"},{"title":"The Journey","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 42","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"150"},{"title":"The Test","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 43","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"135"},{"title":"The Unexpected","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 44","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"164"},{"title":"The Revelation","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 45","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"136"},{"title":"The Deception","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 46","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"118"},{"title":"The Resistance","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 47","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"141"},{"title":"The Ellimist Chronicles","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 47.5","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"200"},{"title":"The Return","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 48","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"169"},{"title":"The Diversion","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 49","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"164"},{"title":"The Ultimate","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 50","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"139"},{"title":"The Absolute","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 51","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"154"},{"title":"The Sacrifice","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 52","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"177"},{"title":"The Answer","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 53","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"183"},{"title":"The Beginning","authorFirst":"Katherine","authorLast":"Applegate","genre":"Sci-Fi","series":"Animorphs 54","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"159"},{"title":"Ghoster","authorFirst":"Jason","authorLast":"Arnopp","genre":"Thriller","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"488"},{"title":"Mickey7","authorFirst":"Edward","authorLast":"Ashton","genre":"Sci-Fi","series":"Mickey7 1","owned":"Want","read":"X","compDate":"8/20/22","status":"","information":"","pages":"320"},{"title":"Foundation","authorFirst":"Isaac","authorLast":"Asimov","genre":"Sci-Fi/Classic","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"249"},{"title":"I, Robot","authorFirst":"Isaac","authorLast":"Asimov","genre":"Sci-Fi/Classic","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"224"},{"title":"The Handmaid's Tale","authorFirst":"Margaret","authorLast":"Atwood","genre":"Near Future","series":"Handmaid 1","owned":"Physical","read":"X","compDate":"2/3/21","status":"","information":"","pages":"350"},{"title":"The Testaments","authorFirst":"Margaret","authorLast":"Atwood","genre":"Near Future","series":"Handmaid 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"476"},{"title":"The Windup Girl","authorFirst":"Paolo","authorLast":"Bacigalupi","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"369"},{"title":"Bookshops & Bonedust","authorFirst":"Travis","authorLast":"Baldree","genre":"Fantasy","series":"Legends & Lattes 0","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Pages to Fill","authorFirst":"Travis","authorLast":"Baldree","genre":"Fantasy","series":"Legends & Lattes 0.5","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Legends & Lattes","authorFirst":"Travis","authorLast":"Baldree","genre":"Fantasy","series":"Legends & Lattes 1","owned":"","read":"","compDate":"","status":"2 Ready","information":"","pages":"304"},{"title":"Senlin Ascends","authorFirst":"Josiah","authorLast":"Bancroft","genre":"Fantasy","series":"The Books of Babel 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"365"},{"title":"Arm of the Sphinx","authorFirst":"Josiah","authorLast":"Bancroft","genre":"Fantasy","series":"The Books of Babel 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"408"},{"title":"The Hod King","authorFirst":"Josiah","authorLast":"Bancroft","genre":"Fantasy","series":"The Books of Babel 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Fall of Babel","authorFirst":"Josiah","authorLast":"Bancroft","genre":"Fantasy","series":"The Books of Babel 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"528"},{"title":"Consider Phlebas","authorFirst":"Iain","authorLast":"Banks","genre":"Sci-Fi","series":"Culture 1","owned":"Kindle","read":"","compDate":"","status":"5 Attempted","information":"","pages":"471"},{"title":"The Player of Games","authorFirst":"Iain","authorLast":"Banks","genre":"Sci-Fi","series":"Culture 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"320"},{"title":"Use of Weapons","authorFirst":"Iain","authorLast":"Banks","genre":"Sci-Fi","series":"Culture 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"400"},{"title":"Excession","authorFirst":"Iain","authorLast":"Banks","genre":"Sci-Fi","series":"Culture 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"460"},{"title":"Inversions","authorFirst":"Iain","authorLast":"Banks","genre":"Sci-Fi","series":"Culture 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"393"},{"title":"Look to Windward","authorFirst":"Iain","authorLast":"Banks","genre":"Sci-Fi","series":"Culture 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"369"},{"title":"Matter","authorFirst":"Iain","authorLast":"Banks","genre":"Sci-Fi","series":"Culture 7","owned":"","read":"","compDate":"","status":"","information":"","pages":"593"},{"title":"Surface Detail","authorFirst":"Iain","authorLast":"Banks","genre":"Sci-Fi","series":"Culture 8","owned":"","read":"","compDate":"","status":"","information":"","pages":"640"},{"title":"The Hydrogen Sonata","authorFirst":"Iain","authorLast":"Banks","genre":"Sci-Fi","series":"Culture 9","owned":"","read":"","compDate":"","status":"","information":"","pages":"517"},{"title":"Against a Dark Background","authorFirst":"Iain","authorLast":"Banks","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"515"},{"title":"Feersum Endjinn","authorFirst":"Iain","authorLast":"Banks","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"284"},{"title":"The Algebraist","authorFirst":"Iain","authorLast":"Banks","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"480"},{"title":"Transition","authorFirst":"Iain","authorLast":"Banks","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"404"},{"title":"The Fourth Monkey","authorFirst":"J. D.","authorLast":"Barker","genre":"Mystery","series":"4MK 1","owned":"Kindle","read":"X","compDate":"7/10/20","status":"","information":"","pages":"404"},{"title":"The Fifth to Die","authorFirst":"J. D.","authorLast":"Barker","genre":"Mystery","series":"4MK 2","owned":"","read":"X","compDate":"11/9/20","status":"","information":"","pages":"526"},{"title":"The Sixth Wicked Child","authorFirst":"J. D.","authorLast":"Barker","genre":"Mystery","series":"4MK 3","owned":"","read":"X","compDate":"11/10/20","status":"","information":"","pages":"532"},{"title":"The Silence of the Girls","authorFirst":"Pat","authorLast":"Barker","genre":"Fantasy/Greek","series":"Women of Troy 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"304"},{"title":"The Women of Troy","authorFirst":"Pat","authorLast":"Barker","genre":"Fantasy/Greek","series":"Women of Troy 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"383"},{"title":"The Bone Ships","authorFirst":"RJ","authorLast":"Barker","genre":"Fantasy","series":"The Tide Child Trilogy 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"257"},{"title":"Call of the Bone Ships","authorFirst":"RJ","authorLast":"Barker","genre":"Fantasy","series":"The Tide Child Trilogy 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Bone Ship's Wake","authorFirst":"RJ","authorLast":"Barker","genre":"Fantasy","series":"The Tide Child Trilogy 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Age of Assassins","authorFirst":"RJ","authorLast":"Barker","genre":"Fantasy","series":"The Wounded Kingdom 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Blood of Assassins","authorFirst":"RJ","authorLast":"Barker","genre":"Fantasy","series":"The Wounded Kingdom 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"King of Assassins","authorFirst":"RJ","authorLast":"Barker","genre":"Fantasy","series":"The Wounded Kingdom 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Dead Silence","authorFirst":"S.A.","authorLast":"Barnes","genre":"Sci-Fi/Horror","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The City Inside","authorFirst":"Samit","authorLast":"Basu","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Bound","authorFirst":"Alan","authorLast":"Baxter","genre":"Thriller","series":"Alex Caine 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"333"},{"title":"Obsidian","authorFirst":"Alan","authorLast":"Baxter","genre":"Thriller","series":"Alex Caine 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Abduction","authorFirst":"Alan","authorLast":"Baxter","genre":"Thriller","series":"Alex Caine 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"388"},{"title":"Realmshift","authorFirst":"Alan","authorLast":"Baxter","genre":"Thriller","series":"Balance Duology 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"460"},{"title":"Magesign","authorFirst":"Alan","authorLast":"Baxter","genre":"Thriller","series":"Balance Duology 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"286"},{"title":"Devouring Dark","authorFirst":"Alan","authorLast":"Baxter","genre":"Thriller","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"320"},{"title":"Hidden City","authorFirst":"Alan","authorLast":"Baxter","genre":"Thriller","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"264"},{"title":"Foundryside","authorFirst":"Robert Jackson","authorLast":"Bennett","genre":"Fantasy","series":"Founders Trilogy 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"503"},{"title":"Shorefall","authorFirst":"Robert Jackson","authorLast":"Bennett","genre":"Fantasy","series":"Founders Trilogy 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"456"},{"title":"The Cruel Stars","authorFirst":"John","authorLast":"Birmingham","genre":"Sci-Fi","series":"Cruel Stars 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"512"},{"title":"The Shattered Skies","authorFirst":"John","authorLast":"Birmingham","genre":"Sci-Fi","series":"Cruel Stars 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Empty Heavens","authorFirst":"John","authorLast":"Birmingham","genre":"Sci-Fi","series":"Cruel Stars 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"FantasticLand","authorFirst":"Mike","authorLast":"Bockoven","genre":"Horror","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"272"},{"title":"Kitchen Confidential","authorFirst":"Anthony","authorLast":"Bourdain","genre":"Nonfiction","series":"","owned":"Physical","read":"X","compDate":"10/25/20","status":"","information":"","pages":"320"},{"title":"Medium Raw","authorFirst":"Anthony","authorLast":"Bourdain","genre":"Nonfiction","series":"","owned":"Physical","read":"X","compDate":"7/26/20","status":"","information":"","pages":"288"},{"title":"No Reservations","authorFirst":"Anthony","authorLast":"Bourdain","genre":"Nonfiction","series":"","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"288"},{"title":"Wake of Vultures","authorFirst":"Lila","authorLast":"Bowen","genre":"Fantasy","series":"The Shadow 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Conspiracy of Ravens","authorFirst":"Lila","authorLast":"Bowen","genre":"Fantasy","series":"The Shadow 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"359"},{"title":"Malice of Crows","authorFirst":"Lila","authorLast":"Bowen","genre":"Fantasy","series":"The Shadow 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"368"},{"title":"Treason of Hawks","authorFirst":"Lila","authorLast":"Bowen","genre":"Fantasy","series":"The Shadow 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"371"},{"title":"The Infinity Courts","authorFirst":"Akemi Dawn","authorLast":"Bowman","genre":"Sci-Fi/Fantasy","series":"Infinity Courts 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Fahrenheit 451","authorFirst":"Ray","authorLast":"Bradbury","genre":"Sci-Fi/Classic","series":"","owned":"Physical","read":"","compDate":"","status":"4 Priority","information":"","pages":"190"},{"title":"The Martian Chronicles","authorFirst":"Ray","authorLast":"Bradbury","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"256"},{"title":"The Warded Man","authorFirst":"Peter V.","authorLast":"Brett","genre":"Fantasy","series":"Demon Cycle 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"416"},{"title":"The Desert Spear","authorFirst":"Peter V.","authorLast":"Brett","genre":"Fantasy","series":"Demon Cycle 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"712"},{"title":"The Daylight War","authorFirst":"Peter V.","authorLast":"Brett","genre":"Fantasy","series":"Demon Cycle 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"632"},{"title":"The Skull Throne","authorFirst":"Peter V.","authorLast":"Brett","genre":"Fantasy","series":"Demon Cycle 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"760"},{"title":"The Core","authorFirst":"Peter V.","authorLast":"Brett","genre":"Fantasy","series":"Demon Cycle 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"848"},{"title":"World War Z","authorFirst":"Max","authorLast":"Brooks","genre":"Horror","series":"","owned":"Physical","read":"","compDate":"","status":"4 Priority","information":"","pages":"399"},{"title":"The Sword of Shannara","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 01","owned":"EPUB + Physical","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"726"},{"title":"The Elfstones of Shannara","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 02","owned":"EPUB + Physical","read":"","compDate":"","status":"","information":"","pages":"608"},{"title":"The Wishsong of Shannara","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 03","owned":"EPUB + Physical","read":"","compDate":"","status":"","information":"","pages":"512"},{"title":"The Scions of Shannara","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 04, Heritage of Shannara 1","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"507"},{"title":"The Druid of Shannara","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 05, Heritage of Shannara 2","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"464"},{"title":"The Elf Queen of Shannara","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 06, Heritage of Shannara 3","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"403"},{"title":"The Talismans of Shannara","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 07, Heritage of Shannara 4","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"453"},{"title":"The First King of Shannara","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 08","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"485"},{"title":"Running with the Demon","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 09, Word & Void 1","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"448"},{"title":"A Knight of the Word","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 10, Word & Void 2","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"397"},{"title":"Angel Fire East","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 11, Word & Void 3","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"368"},{"title":"Ilse Witch","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 12, Voyage of the Jerle Shannara 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"576"},{"title":"Antrax","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 13, Voyage of the Jerle Shannara 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"Morgawr","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 14, Voyage of the Jerle Shannara 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"417"},{"title":"Jarka Ruus","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 15, High Druid of Shannara 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Tanequil","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 16, High Druid of Shannara 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"392"},{"title":"Straken","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 17, High Druid of Shannara 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"368"},{"title":"Armageddon's Children","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 18, Genesis of Shannara 1","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"404"},{"title":"The Elves of Cintra","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 19, Genesis of Shannara 2","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Gypsy Morph","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 20, Genesis of Shannara 3","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"402"},{"title":"Bearers of the Black Staff","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 21, Legends of Shannara 1","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"512"},{"title":"The Measure of the Magic","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 22, Legends of Shannara 2","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"574"},{"title":"Allanon's Quest","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 23, Paladins of Shannara 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Weapon Master's Choice","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 24, Paladins of Shannara 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Black Irix","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 25, Paladins of Shannara 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Wards of Faerie","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 26, Dark Legacy of Shannara 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"647"},{"title":"Bloodfire Quest","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 27, Dark Legacy of Shannara 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"517"},{"title":"Witch Wraith","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 28, Dark Legacy of Shannara 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"415"},{"title":"The High Druid's Blade","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 29, Defenders of Shannara 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"320"},{"title":"The Darkling Child","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 30, Defenders of Shannara 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"384"},{"title":"The Sorcerer's Daughter","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 31, Defenders of Shannara 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"334"},{"title":"The Black Elfstone","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 32, Fall of Shannara 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"424"},{"title":"The Skaar Invasion","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 33, Fall of Shannara 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"480"},{"title":"The Stiehl Assassin","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 34, Fall of Shannara 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"335"},{"title":"The Last Druid","authorFirst":"Terry","authorLast":"Brooks","genre":"High Fantasy","series":"Shannara 35, Fall of Shannara 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"544"},{"title":"Angels and Demons","authorFirst":"Dan","authorLast":"Brown","genre":"Thriller","series":"Robert Langdon 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"274"},{"title":"The Da Vinci Code","authorFirst":"Dan","authorLast":"Brown","genre":"Thriller","series":"Robert Langdon 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"494"},{"title":"The Lost Symbol","authorFirst":"Dan","authorLast":"Brown","genre":"Thriller","series":"Robert Langdon 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"604"},{"title":"Inferno","authorFirst":"Dan","authorLast":"Brown","genre":"Thriller","series":"Robert Langdon 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"592"},{"title":"Origin","authorFirst":"Dan","authorLast":"Brown","genre":"Thriller","series":"Robert Langdon 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"637"},{"title":"Deception Point","authorFirst":"Dan","authorLast":"Brown","genre":"Thriller","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"559"},{"title":"Digital Fortress","authorFirst":"Dan","authorLast":"Brown","genre":"Thriller","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"447"},{"title":"Red Rising","authorFirst":"Pierce","authorLast":"Brown","genre":"Sci-Fi","series":"Red Rising 1","owned":"","read":"X","compDate":"7/6/24","status":"","information":"","pages":"480"},{"title":"Golden Son","authorFirst":"Pierce","authorLast":"Brown","genre":"Sci-Fi","series":"Red Rising 2","owned":"","read":"X","compDate":"7/10/24","status":"","information":"","pages":"456"},{"title":"Morning Star","authorFirst":"Pierce","authorLast":"Brown","genre":"Sci-Fi","series":"Red Rising 3","owned":"","read":"X","compDate":"7/30/24","status":"","information":"","pages":"672"},{"title":"Iron Gold","authorFirst":"Pierce","authorLast":"Brown","genre":"Sci-Fi","series":"Red Rising 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"672"},{"title":"Dark Age","authorFirst":"Pierce","authorLast":"Brown","genre":"Sci-Fi","series":"Red Rising 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"800"},{"title":"Light Bringer","authorFirst":"Pierce","authorLast":"Brown","genre":"Sci-Fi","series":"Red Rising 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Blacktongue Thief","authorFirst":"Christopher","authorLast":"Buehlman","genre":"Fantasy","series":"Blacktongue 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"The Curse of Chalion","authorFirst":"Lois McMaster","authorLast":"Bujold","genre":"Fantasy","series":"Chalion 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"442"},{"title":"Paladin of Souls","authorFirst":"Lois McMaster","authorLast":"Bujold","genre":"Fantasy","series":"Chalion 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"436"},{"title":"The Hallowed Hunt","authorFirst":"Lois McMaster","authorLast":"Bujold","genre":"Fantasy","series":"Chalion 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"436"},{"title":"A Clockwork Orange","authorFirst":"Anthony","authorLast":"Burgess","genre":"Sci-Fi/Classic","series":"","owned":"Physical","read":"X","compDate":"10/23/20","status":"","information":"","pages":"192"},{"title":"Storm Front","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 01","owned":"","read":"","compDate":"","status":"","information":"","pages":"339"},{"title":"Fool Moon","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 02","owned":"","read":"","compDate":"","status":"","information":"","pages":"355"},{"title":"Grave Peril","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 03","owned":"","read":"","compDate":"","status":"","information":"","pages":"432"},{"title":"Summer Knight","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 04","owned":"","read":"","compDate":"","status":"","information":"","pages":"394"},{"title":"Death Masks","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 05","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"Blood Rites","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 06","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Dead Beat","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 07","owned":"","read":"","compDate":"","status":"","information":"","pages":"480"},{"title":"Proven Guilty","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 08","owned":"","read":"","compDate":"","status":"","information":"","pages":"496"},{"title":"White Night","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 09","owned":"","read":"","compDate":"","status":"","information":"","pages":"480"},{"title":"Small Favor","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 10","owned":"","read":"","compDate":"","status":"","information":"","pages":"423"},{"title":"Turn Coat","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 11","owned":"","read":"","compDate":"","status":"","information":"","pages":"499"},{"title":"Changes","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 12","owned":"","read":"","compDate":"","status":"","information":"","pages":"441"},{"title":"Ghost Story","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 13","owned":"","read":"","compDate":"","status":"","information":"","pages":"481"},{"title":"Cold Days","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 14","owned":"","read":"","compDate":"","status":"","information":"","pages":"578"},{"title":"Skin Game","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 15","owned":"","read":"","compDate":"","status":"","information":"","pages":"234"},{"title":"Peace Talks","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 16","owned":"","read":"","compDate":"","status":"","information":"","pages":"384"},{"title":"Battle Ground","authorFirst":"Jim","authorLast":"Butcher","genre":"Fantasy/Mystery","series":"The Dresden Files 17","owned":"","read":"","compDate":"","status":"","information":"","pages":"432"},{"title":"Of Blood and Fire","authorFirst":"Ryan","authorLast":"Cahill","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"518"},{"title":"Queen of the Conquered","authorFirst":"Kacen","authorLast":"Callender","genre":"Fantasy","series":"Isnalds of Blood and Storm 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"King of the Rising","authorFirst":"Kacen","authorLast":"Callender","genre":"Fantasy","series":"Isnalds of Blood and Storm 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"480"},{"title":"Cold Iron","authorFirst":"Miles","authorLast":"Cameron","genre":"Fantasy","series":"Masters and Mages 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"472"},{"title":"Dark Forge","authorFirst":"Miles","authorLast":"Cameron","genre":"Fantasy","series":"Masters and Mages 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"Bright Steel","authorFirst":"Miles","authorLast":"Cameron","genre":"Fantasy","series":"Masters and Mages 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"432"},{"title":"Sunshine Patriots","authorFirst":"Bill","authorLast":"Campbell","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Thief's Magic","authorFirst":"Trudi","authorLast":"Canavan","genre":"Fantasy","series":"The Millennium's Rule 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"560"},{"title":"Angel of Storms","authorFirst":"Trudi","authorLast":"Canavan","genre":"Fantasy","series":"The Millennium's Rule 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"576"},{"title":"Successor's Promise","authorFirst":"Trudi","authorLast":"Canavan","genre":"Fantasy","series":"The Millennium's Rule 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"539"},{"title":"Maker's Curse","authorFirst":"Trudi","authorLast":"Canavan","genre":"Fantasy","series":"The Millennium's Rule 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"544"},{"title":"Ender's Game","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 01 (7)","owned":"EPUB","read":"X","compDate":"","status":"","information":"Priority 2024","pages":"330"},{"title":"Speaker for the Dead","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 02 (17)","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"Xenocide","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 03 (18)","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"562"},{"title":"Children of the Mind","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 04 (19)","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"384"},{"title":"Ender's Shadow","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 05 (8)","owned":"EPUB","read":"X","compDate":"","status":"","information":"","pages":"454"},{"title":"Shadow of the Hegemon","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 06 (10)","owned":"EPUB","read":"X","compDate":"","status":"","information":"","pages":"444"},{"title":"Shadow Puppets","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 07 (12)","owned":"EPUB","read":"X","compDate":"","status":"","information":"","pages":"352"},{"title":"First Meetings","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 08 (16)","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"218"},{"title":"Shadow of the Giant","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 09 (13)","owned":"EPUB","read":"X","compDate":"","status":"","information":"","pages":"368"},{"title":"A War of Gifts","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 10 (9)","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"128"},{"title":"Ender in Exile","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 11 (14)","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"400"},{"title":"Shadows in Flight","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 12 (15)","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"224"},{"title":"Earth Unaware","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 13 (1)","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"392"},{"title":"Earth Afire","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 14 (2)","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"400"},{"title":"Earth Awakens","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 15 (3)","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"424"},{"title":"The Swarm","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 16 (4)","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"528"},{"title":"Children of the Fleet","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 17 (11)","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"304"},{"title":"The Hive","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 18 (5)","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"400"},{"title":"The Queens","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 19 (6)","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Last Shadow","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi/Military","series":"Ender's Game 20 (20)","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"288"},{"title":"Pathfinder","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi","series":"Pathfinder 1","owned":"","read":"X","compDate":"","status":"","information":"","pages":"512"},{"title":"Ruins","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi","series":"Pathfinder 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"544"},{"title":"Visitors","authorFirst":"Orson Scott","authorLast":"Card","genre":"Sci-Fi","series":"Pathfinder 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"608"},{"title":"The Book of Koli","authorFirst":"M. R.","authorLast":"Carey","genre":"Sci-fi","series":"The Rampart 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"1"},{"title":"The Trials of Koli","authorFirst":"M. R.","authorLast":"Carey","genre":"Sci-fi","series":"The Rampart 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"249"},{"title":"The Fall of Koli","authorFirst":"M. R.","authorLast":"Carey","genre":"Sci-fi","series":"The Rampart 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"289"},{"title":"Day Zero","authorFirst":"C. Robert","authorLast":"Cargill","genre":"Sci-Fi","series":"Sea of Rust 0.5","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"304"},{"title":"Sea of Rust","authorFirst":"C. Robert","authorLast":"Cargill","genre":"Sci-Fi","series":"Sea of Rust 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"365"},{"title":"The Tethered Mage","authorFirst":"Melissa","authorLast":"Caruso","genre":"Fantasy","series":"Swords and Fire 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"475"},{"title":"The Defiant Heir","authorFirst":"Melissa","authorLast":"Caruso","genre":"Fantasy","series":"Swords and Fire 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"513"},{"title":"The Unbound Empire","authorFirst":"Melissa","authorLast":"Caruso","genre":"Fantasy","series":"Swords and Fire 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"560"},{"title":"The Defense","authorFirst":"Steven","authorLast":"Cavanagh","genre":"Thriller","series":"Eddie Flynn 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Plea","authorFirst":"Steven","authorLast":"Cavanagh","genre":"Thriller","series":"Eddie Flynn 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Liar","authorFirst":"Steven","authorLast":"Cavanagh","genre":"Thriller","series":"Eddie Flynn 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Thirteen","authorFirst":"Steven","authorLast":"Cavanagh","genre":"Thriller","series":"Eddie Flynn 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Fifty-Fifty","authorFirst":"Steven","authorLast":"Cavanagh","genre":"Thriller","series":"Eddie Flynn 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"3zekiel","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"","information":"","pages":"407"},{"title":"Alien Space Tentacle Porn","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"","information":"","pages":"164"},{"title":"Anomaly","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"","information":"","pages":"374"},{"title":"But The Stars","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Deja Vu","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Feedback","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"","information":"","pages":"460"},{"title":"Galactic Exploration","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"","information":"","pages":"364"},{"title":"Hello World","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"","information":"","pages":"659"},{"title":"Jury Duty","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"","information":"","pages":"388"},{"title":"Little Green Men","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"","information":"","pages":"188"},{"title":"Losing Mars","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Maelstrom","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"","information":"","pages":"278"},{"title":"My Sweet Satan","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"","information":"","pages":"482"},{"title":"Starship Mine","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"","information":"","pages":"112"},{"title":"Welcome to the Occupied States of America","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"","information":"","pages":"276"},{"title":"Wherever Seeds May Fall","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"Manual"},{"title":"Xenophobia","authorFirst":"Peter","authorLast":"Cawdron","genre":"Sci-Fi","series":"First Contact","owned":"","read":"","compDate":"","status":"","information":"","pages":"394"},{"title":"The Rule of Luck","authorFirst":"Catherine","authorLast":"Cerveny","genre":"Sci-Fi","series":"Felicia Sevigny 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"391"},{"title":"The Chaos of Luck","authorFirst":"Catherine","authorLast":"Cerveny","genre":"Sci-Fi","series":"Felicia Sevigny 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"432"},{"title":"The Game of Luck","authorFirst":"Catherine","authorLast":"Cerveny","genre":"Sci-Fi","series":"Felicia Sevigny 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"468"},{"title":"The Amazing Adventures of Kavalier and Clay","authorFirst":"Michael","authorLast":"Chabon","genre":"Historical Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Yiddish Policeman's Union","authorFirst":"Michael","authorLast":"Chabon","genre":"Mystery","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The City of Brass","authorFirst":"S.A.","authorLast":"Chakraborty","genre":"Fantasy","series":"Middle Eastern 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"Prime Reading","pages":"Manual"},{"title":"The Kingdom of Copper","authorFirst":"S.A.","authorLast":"Chakraborty","genre":"Fantasy","series":"Middle Eastern 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Empire of Gold","authorFirst":"S.A.","authorLast":"Chakraborty","genre":"Fantasy","series":"Middle Eastern 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"A Psalm for the Wild-Built","authorFirst":"Becky","authorLast":"Chambers","genre":"Sci-Fi","series":"Monk & Robot 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"160"},{"title":"A Good Heretic","authorFirst":"Becky","authorLast":"Chambers","genre":"Sci-Fi","series":"Wayfarers 0.5","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Long Way to a Small, Angry Planet","authorFirst":"Becky","authorLast":"Chambers","genre":"Sci-Fi","series":"Wayfarers 1","owned":"","read":"","compDate":"","status":"","information":"Prime Reading","pages":"441"},{"title":"A Closed and Common Orbit","authorFirst":"Becky","authorLast":"Chambers","genre":"Sci-Fi","series":"Wayfarers 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"Record of a Spaceborn Few","authorFirst":"Becky","authorLast":"Chambers","genre":"Sci-Fi","series":"Wayfarers 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"359"},{"title":"The Galaxy, and the Ground Within","authorFirst":"Becky","authorLast":"Chambers","genre":"Sci-Fi","series":"Wayfarers 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"368"},{"title":"Eat a Peach - A Memoir","authorFirst":"David","authorLast":"Chang","genre":"Autobiography","series":"","owned":"","read":"X","compDate":"1/22/22","status":"","information":"","pages":"288"},{"title":"The Reader","authorFirst":"Traci","authorLast":"Chee","genre":"Fantasy","series":"The Reader Trilogy 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"453"},{"title":"The Speaker","authorFirst":"Traci","authorLast":"Chee","genre":"Fantasy","series":"The Reader Trilogy 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"500"},{"title":"The Storyteller","authorFirst":"Traci","authorLast":"Chee","genre":"Fantasy","series":"The Reader Trilogy 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"535"},{"title":"Here and Now and Then","authorFirst":"Mike","authorLast":"Chen","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"344"},{"title":"The Widow Queen","authorFirst":"Elzbieta","authorLast":"Cherezinska","genre":"Fantasy","series":"The Bold 1","owned":"Kindle","read":"","compDate":"","status":"2 Ready","information":"","pages":"512"},{"title":"Famous Men Who Never Lived","authorFirst":"K.","authorLast":"Chess","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"323"},{"title":"Stories of your Life and Others","authorFirst":"Ted","authorLast":"Chiang","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"288"},{"title":"The Lifecycle of Software Objects","authorFirst":"Ted","authorLast":"Chiang","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"150"},{"title":"Black Water Sister","authorFirst":"Zen","authorLast":"Cho","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"384"},{"title":"The Last Namsara","authorFirst":"Kristen","authorLast":"Ciccarelli","genre":"Fantasy","series":"Iskari 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"Series Priority","pages":"440"},{"title":"The Caged Queen","authorFirst":"Kristen","authorLast":"Ciccarelli","genre":"Fantasy","series":"Iskari 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"400"},{"title":"The Sky Weaver","authorFirst":"Kristen","authorLast":"Ciccarelli","genre":"Fantasy","series":"Iskari 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Three-Body Problem","authorFirst":"Liu","authorLast":"Cixin","genre":"Sci-Fi","series":"Remembrance of Earth's Past 1","owned":"","read":"X","compDate":"10/6/21","status":"","information":"","pages":"674"},{"title":"The Dark Forest","authorFirst":"Liu","authorLast":"Cixin","genre":"Sci-Fi","series":"Remembrance of Earth's Past 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"550"},{"title":"Death's End","authorFirst":"Liu","authorLast":"Cixin","genre":"Sci-Fi","series":"Remembrance of Earth's Past 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"674"},{"title":"Ball Lightning","authorFirst":"Liu","authorLast":"Cixin","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"China 2185","authorFirst":"Liu","authorLast":"Cixin","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Supernova Era","authorFirst":"Liu","authorLast":"Cixin","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Devil's Bricks","authorFirst":"Liu","authorLast":"Cixin","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Hunt for Red October","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 01","owned":"","read":"X","compDate":"","status":"","information":"","pages":"479"},{"title":"Patriot Games","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 02","owned":"","read":"X","compDate":"","status":"","information":"","pages":"541"},{"title":"The Cardinal of the Kremlin","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 03","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Clear and Present Danger","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 04","owned":"","read":"X","compDate":"","status":"","information":"","pages":"696"},{"title":"The Sum of All Fears","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 05","owned":"","read":"","compDate":"","status":"","information":"","pages":"914"},{"title":"Without Remorse","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 06","owned":"","read":"","compDate":"","status":"","information":"","pages":"768"},{"title":"Debt of Honor","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 07","owned":"","read":"","compDate":"","status":"","information":"","pages":"828"},{"title":"Executive Orders","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 08","owned":"","read":"","compDate":"","status":"","information":"","pages":"1101"},{"title":"Rainbow Six","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 09","owned":"","read":"X","compDate":"","status":"","information":"","pages":"897"},{"title":"The Bear and the Dragon","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 10","owned":"","read":"","compDate":"","status":"","information":"","pages":"1028"},{"title":"Red Rabbit","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 11","owned":"","read":"","compDate":"","status":"","information":"","pages":"720"},{"title":"The Teeth of the Tiger","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 12","owned":"","read":"","compDate":"","status":"","information":"","pages":"431"},{"title":"Dead or Alive","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 13","owned":"","read":"","compDate":"","status":"","information":"","pages":"848"},{"title":"Locked On","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 14","owned":"","read":"","compDate":"","status":"","information":"","pages":"853"},{"title":"Threat Vector","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 15","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Command Authority","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 16","owned":"","read":"","compDate":"","status":"","information":"","pages":"739"},{"title":"Support and Defend","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 17","owned":"","read":"","compDate":"","status":"","information":"","pages":"12"},{"title":"Full Force and Effect","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 18","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Under Fire","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 19","owned":"","read":"","compDate":"","status":"","information":"","pages":"512"},{"title":"Commander in Chief","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 20","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Duty and Honor","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 21","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"True Faith and Allegiance","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 22","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Point of Contact","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 23","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Power and Empire","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 24","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Line of Sight","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 25","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Oath of Office","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 26","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Enemy Contact","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"Ryanverse 27","owned":"","read":"","compDate":"","status":"","information":"","pages":"480"},{"title":"Against All Enemies","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"756"},{"title":"Red Storm Rising","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"859"},{"title":"SSN","authorFirst":"Tom","authorLast":"Clancy","genre":"Military","series":"","owned":"","read":"X","compDate":"","status":"","information":"","pages":"352"},{"title":"The Unbroken","authorFirst":"C.L.","authorLast":"Clark","genre":"Fantasy","series":"Magic of the Lost 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Forsaken Skies","authorFirst":"D. Nolan","authorLast":"Clark","genre":"Sci-Fi","series":"The Silence 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"597"},{"title":"Forgotten Worlds","authorFirst":"D. Nolan","authorLast":"Clark","genre":"Sci-Fi","series":"The Silence 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"617"},{"title":"Forbidden Suns","authorFirst":"D. Nolan","authorLast":"Clark","genre":"Sci-Fi","series":"The Silence 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"547"},{"title":"A Dead Djinn in Cairo","authorFirst":"P. Djeli","authorLast":"Clark","genre":"Fantasy","series":"Dead Djinn Universe 0.1","owned":"","read":"X","compDate":"8/7/22","status":"","information":"","pages":"46"},{"title":"The Angel of Khan el-Khalili","authorFirst":"P. Djeli","authorLast":"Clark","genre":"Fantasy","series":"Dead Djinn Universe 0.2","owned":"","read":"X","compDate":"8/7/22","status":"","information":"","pages":"32"},{"title":"The Haunting of Tram Car 015","authorFirst":"P. Djeli","authorLast":"Clark","genre":"Fantasy","series":"Dead Djinn Universe 0.3","owned":"","read":"X","compDate":"8/16/22","status":"","information":"","pages":"1"},{"title":"A Master of Djinn","authorFirst":"P. Djeli","authorLast":"Clark","genre":"Fantasy","series":"Dead Djinn Universe 01","owned":"Want","read":"X","compDate":"8/7/22","status":"","information":"","pages":"440"},{"title":"Ring Shout","authorFirst":"P. Djeli","authorLast":"Clark","genre":"Horror","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"High priority","pages":"168"},{"title":"Jonathan Strange and Mr. Norrell","authorFirst":"Susanna","authorLast":"Clarke","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"864"},{"title":"Piranesi","authorFirst":"Susanna","authorLast":"Clarke","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"272"},{"title":"Ready Player One","authorFirst":"Ernest","authorLast":"Cline","genre":"Sci-Fi/Classic","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"462"},{"title":"Seeds of Earth","authorFirst":"Michael","authorLast":"Cobley","genre":"Sci-Fi","series":"Humanity's Fire 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"632"},{"title":"The Orphaned Worlds","authorFirst":"Michael","authorLast":"Cobley","genre":"Sci-Fi","series":"Humanity's Fire 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Ascendant Stars","authorFirst":"Michael","authorLast":"Cobley","genre":"Sci-Fi","series":"Humanity's Fire 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"400"},{"title":"Ancestral Machines","authorFirst":"Michael","authorLast":"Cobley","genre":"Sci-Fi","series":"Humanity's Fire 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"656"},{"title":"Splintered Suns","authorFirst":"Michael","authorLast":"Cobley","genre":"Sci-Fi","series":"Humanity's Fire 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"528"},{"title":"Control Point","authorFirst":"Myke","authorLast":"Cole","genre":"Military","series":"Shadow Ops 1","owned":"","read":"","compDate":"","status":"7 Abandoned","information":"","pages":"Manual"},{"title":"Fortress Frontier","authorFirst":"Myke","authorLast":"Cole","genre":"Military","series":"Shadow Ops 2","owned":"","read":"","compDate":"","status":"7 Abandoned","information":"","pages":"Manual"},{"title":"Breach Zone","authorFirst":"Myke","authorLast":"Cole","genre":"Military","series":"Shadow Ops 3","owned":"","read":"","compDate":"","status":"7 Abandoned","information":"","pages":"Manual"},{"title":"Gemini Cell","authorFirst":"Myke","authorLast":"Cole","genre":"Military","series":"The Reawakening 1","owned":"","read":"","compDate":"","status":"7 Abandoned","information":"","pages":"Manual"},{"title":"Javelin Rain","authorFirst":"Myke","authorLast":"Cole","genre":"Military","series":"The Reawakening 2","owned":"","read":"","compDate":"","status":"7 Abandoned","information":"","pages":"352"},{"title":"Siege Line","authorFirst":"Myke","authorLast":"Cole","genre":"Military","series":"The Reawakening 3","owned":"","read":"","compDate":"","status":"7 Abandoned","information":"","pages":"368"},{"title":"Armored Saint","authorFirst":"Myke","authorLast":"Cole","genre":"Epic Fantasy","series":"The Sacred Throne 1","owned":"Physical","read":"X","compDate":"4/6/19","status":"","information":"","pages":"208"},{"title":"The Queen of Crows","authorFirst":"Myke","authorLast":"Cole","genre":"Epic Fantasy","series":"The Sacred Throne 2","owned":"","read":"","compDate":"","status":"7 Abandoned","information":"","pages":"254"},{"title":"The Killing Light","authorFirst":"Myke","authorLast":"Cole","genre":"Epic Fantasy","series":"The Sacred Throne 3","owned":"","read":"","compDate":"","status":"7 Abandoned","information":"","pages":"240"},{"title":"Sixteenth Watch","authorFirst":"Myke","authorLast":"Cole","genre":"Sci-Fi/Military","series":"","owned":"","read":"","compDate":"","status":"7 Abandoned","information":"","pages":"432"},{"title":"The Hunger Games","authorFirst":"Susanne","authorLast":"Collins","genre":"Sci-Fi","series":"Hunger Games 1","owned":"","read":"X","compDate":"11/26/20","status":"","information":"","pages":"374"},{"title":"Catching Fire","authorFirst":"Susanne","authorLast":"Collins","genre":"Sci-Fi","series":"Hunger Games 2","owned":"","read":"X","compDate":"11/27/20","status":"","information":"","pages":"391"},{"title":"Mockingjay","authorFirst":"Susanne","authorLast":"Collins","genre":"Sci-Fi","series":"Hunger Games 3","owned":"","read":"X","compDate":"11/30/20","status":"","information":"","pages":"390"},{"title":"The Mercy of Gods","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"Captive's War 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"Manual"},{"title":"Book 2","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"Captive's War 2","owned":"","read":"","compDate":"","status":"","information":"Not Released","pages":"Manual"},{"title":"Book 3","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"Captive's War 3","owned":"","read":"","compDate":"","status":"","information":"Not Released","pages":"Manual"},{"title":"Memory's Legion","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 0","owned":"Want","read":"X","compDate":"","status":"","information":"","pages":"472"},{"title":"Drive","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 0.1","owned":"","read":"X","compDate":"7/12/21","status":"","information":"","pages":"30"},{"title":"The Churn","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 0.3","owned":"","read":"X","compDate":"7/12/21","status":"","information":"","pages":"86"},{"title":"The Butcher of Anderson Station","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 0.5","owned":"","read":"X","compDate":"7/12/21","status":"","information":"","pages":"33"},{"title":"Leviathan Wakes","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 1","owned":"Kindle (Want)","read":"X","compDate":"7/14/20","status":"","information":"Priority 2024","pages":"592"},{"title":"The Last Flight of the Cassandra","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 1.1","owned":"","read":"X","compDate":"7/12/21","status":"","information":"","pages":"30"},{"title":"Caliban's War","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 2","owned":"Want","read":"X","compDate":"1/21/21","status":"","information":"","pages":"605"},{"title":"Gods of Risk","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 2.5","owned":"","read":"X","compDate":"7/13/21","status":"","information":"","pages":"68"},{"title":"Abaddon's Gate","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 3","owned":"Want","read":"X","compDate":"2/10/21","status":"","information":"","pages":"566"},{"title":"The Vital Abyss","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 3.5","owned":"","read":"X","compDate":"7/18/21","status":"","information":"","pages":"75"},{"title":"Cibola Burn","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 4","owned":"Want","read":"X","compDate":"3/4/21","status":"","information":"","pages":"607"},{"title":"Nemesis Games","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 5","owned":"Want","read":"X","compDate":"4/10/21","status":"","information":"","pages":"536"},{"title":"Babylon's Ashes","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 6","owned":"Want","read":"X","compDate":"7/7/21","status":"","information":"","pages":"544"},{"title":"Strange Dogs","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 6.5","owned":"","read":"X","compDate":"7/20/21","status":"","information":"","pages":"80"},{"title":"Persepolis Rising","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 7","owned":"Want","read":"X","compDate":"7/25/21","status":"","information":"","pages":"560"},{"title":"Auberon","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 7.5","owned":"","read":"X","compDate":"7/25/21","status":"","information":"","pages":"63"},{"title":"Tiamat's Wrath","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 8","owned":"Want","read":"X","compDate":"8/11/21","status":"","information":"","pages":"544"},{"title":"Leviathan Falls","authorFirst":"James S. A.","authorLast":"Corey","genre":"Sci-Fi/Space Opera","series":"The Expanse 9","owned":"Kindle (Want)","read":"X","compDate":"12/3/21","status":"","information":"","pages":"560"},{"title":"Jurassic Park","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"Jurassic Park 1","owned":"Want","read":"X","compDate":"","status":"","information":"","pages":"450"},{"title":"The Lost World","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"Jurassic Park 2","owned":"Want","read":"X","compDate":"","status":"","information":"","pages":"400"},{"title":"Airframe","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"","owned":"Want","read":"X","compDate":"","status":"","information":"","pages":"352"},{"title":"Congo","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"","owned":"","read":"X","compDate":"","status":"","information":"","pages":"348"},{"title":"Disclosure","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"430"},{"title":"Dragon Teeth","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"336"},{"title":"Eaters of the Dead","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"","owned":"","read":"X","compDate":"","status":"","information":"","pages":"219"},{"title":"Micro","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"496"},{"title":"Next","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"","owned":"","read":"X","compDate":"","status":"","information":"","pages":"495"},{"title":"Pirate Latitudes","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"341"},{"title":"Prey","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"","owned":"","read":"X","compDate":"","status":"","information":"","pages":"464"},{"title":"Rising Sun","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"399"},{"title":"Sphere","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"","owned":"Want","read":"X","compDate":"","status":"","information":"","pages":"385"},{"title":"State of Fear","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"","owned":"","read":"X","compDate":"","status":"","information":"","pages":"684"},{"title":"The Andromeda Strain","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"","owned":"Want","read":"X","compDate":"","status":"","information":"","pages":"708"},{"title":"The Great Train Robbery","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"319"},{"title":"The Terminal Man","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"282"},{"title":"Timeline","authorFirst":"Michael","authorLast":"Crichton","genre":"Sci-Fi","series":"","owned":"Want","read":"X","compDate":"","status":"","information":"","pages":"512"},{"title":"The Ferryman","authorFirst":"Justin","authorLast":"Cronin","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"2023 Sci-Fi Finalist","pages":"Manual"},{"title":"Dark Matter","authorFirst":"Blake","authorLast":"Crouch","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"368"},{"title":"Recursion","authorFirst":"Blake","authorLast":"Crouch","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"336"},{"title":"Skyborn","authorFirst":"David","authorLast":"Dalglish","genre":"Fantasy","series":"Seraphim 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"468"},{"title":"Fireborn","authorFirst":"David","authorLast":"Dalglish","genre":"Fantasy","series":"Seraphim 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"487"},{"title":"Shadowborn","authorFirst":"David","authorLast":"Dalglish","genre":"Fantasy","series":"Seraphim 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"491"},{"title":"A Dance of Cloaks","authorFirst":"David","authorLast":"Dalglish","genre":"Fantasy","series":"Shadow Dance 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"429"},{"title":"A Dance of Blades","authorFirst":"David","authorLast":"Dalglish","genre":"Fantasy","series":"Shadow Dance 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"412"},{"title":"A Dance of Mirrors","authorFirst":"David","authorLast":"Dalglish","genre":"Fantasy","series":"Shadow Dance 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"390"},{"title":"A Dance of Shadows","authorFirst":"David","authorLast":"Dalglish","genre":"Fantasy","series":"Shadow Dance 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"A Dance of Ghosts","authorFirst":"David","authorLast":"Dalglish","genre":"Fantasy","series":"Shadow Dance 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"512"},{"title":"A Dance of Chaos","authorFirst":"David","authorLast":"Dalglish","genre":"Fantasy","series":"Shadow Dance 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Soul Keeper","authorFirst":"David","authorLast":"Dalglish","genre":"Fantasy","series":"The Keepers 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Raven Caller","authorFirst":"David","authorLast":"Dalglish","genre":"Fantasy","series":"The Keepers 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Void Breaker","authorFirst":"David","authorLast":"Dalglish","genre":"Fantasy","series":"The Keepers 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Princess Beard","authorFirst":"Delilah S.","authorLast":"Dawson","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"382"},{"title":"Spellslinger","authorFirst":"Sebastien","authorLast":"de Castell","genre":"Fantasy","series":"Spellslinger 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"233"},{"title":"Shadowblack","authorFirst":"Sebastien","authorLast":"de Castell","genre":"Fantasy","series":"Spellslinger 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"370"},{"title":"Charmcaster","authorFirst":"Sebastien","authorLast":"de Castell","genre":"Fantasy","series":"Spellslinger 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"456"},{"title":"Soulbinder","authorFirst":"Sebastien","authorLast":"de Castell","genre":"Fantasy","series":"Spellslinger 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"456"},{"title":"Queenslayer","authorFirst":"Sebastien","authorLast":"de Castell","genre":"Fantasy","series":"Spellslinger 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Crownbreaker","authorFirst":"Sebastien","authorLast":"de Castell","genre":"Fantasy","series":"Spellslinger 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"480"},{"title":"Black: The Birth of Evil","authorFirst":"Ted","authorLast":"Dekker","genre":"Sci-Fi","series":"Circle Series 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Red: The Heroic Rescue","authorFirst":"Ted","authorLast":"Dekker","genre":"Sci-Fi","series":"Circle Series 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"White: The Great Pursuit","authorFirst":"Ted","authorLast":"Dekker","genre":"Sci-Fi","series":"Circle Series 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Green: The Beginning and the End","authorFirst":"Ted","authorLast":"Dekker","genre":"Sci-Fi","series":"Circle Series 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Last Watch","authorFirst":"J.S.","authorLast":"Dewes","genre":"Sci-Fi","series":"The Divide 1","owned":"EPUB","read":"X","compDate":"9/3/23","status":"","information":"","pages":"480"},{"title":"The Exiled Fleet","authorFirst":"J.S.","authorLast":"Dewes","genre":"Sci-Fi","series":"The Divide 2","owned":"EPUB","read":"X","compDate":"10/24/23","status":"","information":"","pages":"432"},{"title":"Rubicon","authorFirst":"J.S.","authorLast":"Dewes","genre":"Sci-Fi","series":"","owned":"EPUB","read":"X","compDate":"12/21/23","status":"","information":"","pages":"469"},{"title":"Do Androids Dream of Electric Sheep?","authorFirst":"Phillip K.","authorLast":"Dick","genre":"Sci-Fi","series":"Blade Runner 1","owned":"","read":"X","compDate":"5/9/21","status":"","information":"","pages":"258"},{"title":"The Edge of Human","authorFirst":"Phillip K.","authorLast":"Dick","genre":"Sci-Fi","series":"Blade Runner 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Replicant Night","authorFirst":"Phillip K.","authorLast":"Dick","genre":"Sci-Fi","series":"Blade Runner 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Eye and Talon","authorFirst":"Phillip K.","authorLast":"Dick","genre":"Sci-Fi","series":"Blade Runner 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Machinehood","authorFirst":"S.B.","authorLast":"Divya","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"Manual"},{"title":"The Prey of Gods","authorFirst":"Nicky","authorLast":"Drayden","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"1"},{"title":"Kings of the Wyld","authorFirst":"Nicholas","authorLast":"Eames","genre":"Fantasy","series":"The Band 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"529"},{"title":"Bloody Rose","authorFirst":"Nicholas","authorLast":"Eames","genre":"Fantasy","series":"The Band 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"How Rory Thorne Destroyed the Multiverse","authorFirst":"K.","authorLast":"Eason","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"392"},{"title":"Teenage Mutant Ninja Turtles: The Last Ronin","authorFirst":"Kevin","authorLast":"Eastman","genre":"Sci-Fi","series":"","owned":"Physical","read":"X","compDate":"4/12/24","status":"","information":"","pages":"224"},{"title":"American War","authorFirst":"Omar","authorLast":"El Akkad","genre":"Dystopia","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"352"},{"title":"This Is How You Lose The Time War","authorFirst":"Amal","authorLast":"El-Mohtar","genre":"Sci-Fi","series":"","owned":"Physical","read":"X","compDate":"10/2/23","status":"","information":"","pages":"208"},{"title":"Axiom's End","authorFirst":"Lindsay","authorLast":"Ellis","genre":"Sci-Fi","series":"Noumena 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"384"},{"title":"Soul Searching","authorFirst":"Stephen","authorLast":"Embleton","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"A Half-Built Garden","authorFirst":"Ruthanna","authorLast":"Emrys","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Gardens of the Moon","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 01","owned":"EPUB","read":"","compDate":"","status":"1 In Progress","information":"Priority 2024","pages":"635"},{"title":"Deadhouse Gates","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 02","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"619"},{"title":"Memories of Ice","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 03","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"912"},{"title":"House of Chains","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 04","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"732"},{"title":"Midnight Tides","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 05","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"637"},{"title":"The Bonehunters","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 07","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Blood Follows","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 08.1, The Tales of Bauchelain and Korbal Broach, Vol 1","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"108"},{"title":"The Healthy Dead","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 08.2, The Tales of Bauchelain and Korbal Broach, Vol 1","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"100"},{"title":"The Lees of Laughter's End","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 08.3, The Tales of Bauchelain and Korbal Broach, Vol 1","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"128"},{"title":"Reaper's Gale","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 09","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"928"},{"title":"Toll the Hounds","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 11","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"1280"},{"title":"Dust of Dreams","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 12","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"1083"},{"title":"The Crippled God","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 14","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"1049"},{"title":"Forge of Darkness","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 17, Kharkanas 1","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"760"},{"title":"Fall of Light","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 19, Kharkanas 2","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"837"},{"title":"Crack'd Pot Trail","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 21.1, The Tales of Bauchelain and Korbal Broach, Vol 2","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"181"},{"title":"The Wurms of Blearmouth","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 21.2, The Tales of Bauchelain and Korbal Broach, Vol 2","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"208"},{"title":"The Fiends of Nightmaria","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 21.3, The Tales of Bauchelain and Korbal Broach, Vol 2","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"112"},{"title":"Upon a Dark of Evil Overlords","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 24, The Tales of Bauchelain and Korbal Broach 7","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Walk in Shadow","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 25, Kharkanas 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The God is Not Willing","authorFirst":"Steven","authorLast":"Erikson","genre":"Fantasy","series":"Malazan 25, The Witness 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"688"},{"title":"Night of Knives","authorFirst":"Ian Cameron","authorLast":"Esslemont","genre":"Fantasy","series":"Malazan 06, Novels of the Malazan Empire 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"285"},{"title":"Return of the Crimson Guard","authorFirst":"Ian Cameron","authorLast":"Esslemont","genre":"Fantasy","series":"Malazan 10, Novels of the Malazan Empire 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Stonewielder","authorFirst":"Ian Cameron","authorLast":"Esslemont","genre":"Fantasy","series":"Malazan 13, Novels of the Malazan Empire 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"620"},{"title":"Orb Sceptre Throne","authorFirst":"Ian Cameron","authorLast":"Esslemont","genre":"Fantasy","series":"Malazan 15, Novels of the Malazan Empire 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Blood and Bone","authorFirst":"Ian Cameron","authorLast":"Esslemont","genre":"Fantasy","series":"Malazan 16, Novels of the Malazan Empire 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Assail","authorFirst":"Ian Cameron","authorLast":"Esslemont","genre":"Fantasy","series":"Malazan 18, Novels of the Malazan Empire 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Dancer's Lament","authorFirst":"Ian Cameron","authorLast":"Esslemont","genre":"Fantasy","series":"Malazan 20, Path to Ascendancy 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Deadhouse Landing","authorFirst":"Ian Cameron","authorLast":"Esslemont","genre":"Fantasy","series":"Malazan 22, Path to Ascendancy 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Kellanved's Reach","authorFirst":"Ian Cameron","authorLast":"Esslemont","genre":"Fantasy","series":"Malazan 23, Path to Ascendancy 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Forge of the High Mage","authorFirst":"Ian Cameron","authorLast":"Esslemont","genre":"Fantasy","series":"Malazan 26, Path to Ascendancy 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Blonde Roots","authorFirst":"Bernardine","authorLast":"Evaristo","genre":"Alternate History","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"Tom Recommends","pages":"Manual"},{"title":"Magician: Apprentice","authorFirst":"Raymond E.","authorLast":"Feist","genre":"Fantasy","series":"Riftwar Saga 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"323"},{"title":"Magician: Master","authorFirst":"Raymond E.","authorLast":"Feist","genre":"Fantasy","series":"Riftwar Saga 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Silverthorn","authorFirst":"Raymond E.","authorLast":"Feist","genre":"Fantasy","series":"Riftwar Saga 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"369"},{"title":"A Darkness at Sethanon","authorFirst":"Raymond E.","authorLast":"Feist","genre":"Fantasy","series":"Riftwar Saga 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"527"},{"title":"Dead Souls","authorFirst":"J. Lincoln","authorLast":"Fenn","genre":"Horror","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"347"},{"title":"Early Riser","authorFirst":"Jasper","authorLast":"Fforde","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"A Boy and his Dog at the End of the World","authorFirst":"C.A.","authorLast":"Fletcher","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Norylska Jroans","authorFirst":"Michael R.","authorLast":"Fletcher","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Fall of Giants","authorFirst":"Ken","authorLast":"Follett","genre":"Historical Fiction","series":"Century Trilogy 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"991"},{"title":"Winter of the World","authorFirst":"Ken","authorLast":"Follett","genre":"Historical Fiction","series":"Century Trilogy 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"957"},{"title":"Edge of Eternity","authorFirst":"Ken","authorLast":"Follett","genre":"Historical Fiction","series":"Century Trilogy 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"1136"},{"title":"The Pillars of the Earth","authorFirst":"Ken","authorLast":"Follett","genre":"Historical Fiction","series":"Kingsbridge 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"1019"},{"title":"World Without End","authorFirst":"Ken","authorLast":"Follett","genre":"Historical Fiction","series":"Kingsbridge 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"1178"},{"title":"A Column of Fire","authorFirst":"Ken","authorLast":"Follett","genre":"Historical Fiction","series":"Kingsbridge 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"934"},{"title":"The Girl Who Could Move Sh*t with Her Mind","authorFirst":"Jackson","authorLast":"Ford","genre":"Sci-Fi","series":"Frost Files 1","owned":"Physical","read":"X","compDate":"4/22/20","status":"","information":"","pages":"482"},{"title":"Random Sh*t Flying Through The Air","authorFirst":"Jackson","authorLast":"Ford","genre":"Sci-Fi","series":"Frost Files 2","owned":"Physical","read":"X","compDate":"7/28/20","status":"","information":"","pages":"544"},{"title":"Eye of the Sh*t Storm","authorFirst":"Jackson","authorLast":"Ford","genre":"Sci-Fi","series":"Frost Files 3","owned":"EPUB + Physical","read":"X","compDate":"9/4/21","status":"","information":"","pages":"512"},{"title":"A Sh*tload of Crazy Powers","authorFirst":"Jackson","authorLast":"Ford","genre":"Sci-Fi","series":"Frost Files 4","owned":"EPUB + Physical","read":"X","compDate":"5/13/22","status":"","information":"","pages":"480"},{"title":"Engines of Empire","authorFirst":"R.S.","authorLast":"Ford","genre":"Fantasy/Steampunk","series":"The Age of Uprising 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Gilded Ones","authorFirst":"Namina","authorLast":"Forna","genre":"Fantasy","series":"Deathless 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"432"},{"title":"The Merciless Ones","authorFirst":"Namina","authorLast":"Forna","genre":"Fantasy","series":"Deathless 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"One Second After","authorFirst":"William R.","authorLast":"Forstchen","genre":"Sci-Fi","series":"John Matherson 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"352"},{"title":"One Year After","authorFirst":"William R.","authorLast":"Forstchen","genre":"Sci-Fi","series":"John Matherson 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"303"},{"title":"The Final Day","authorFirst":"William R.","authorLast":"Forstchen","genre":"Sci-Fi","series":"John Matherson 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"349"},{"title":"Black Sun Rising","authorFirst":"C.S.","authorLast":"Friedman","genre":"Fantasy","series":"Coldfire Trilogy 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"When True Night Falls","authorFirst":"C.S.","authorLast":"Friedman","genre":"Fantasy","series":"Coldfire Trilogy 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Crown of Shadows","authorFirst":"C.S.","authorLast":"Friedman","genre":"Fantasy","series":"Coldfire Trilogy 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Echo Wife","authorFirst":"Sarah","authorLast":"Gailey","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"256"},{"title":"Upright Women Wanted","authorFirst":"Sarah","authorLast":"Gailey","genre":"Fantasy","series":"","owned":"Kindle","read":"","compDate":"","status":"2 Ready","information":"","pages":"176"},{"title":"American Gods","authorFirst":"Neil","authorLast":"Gaiman","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"576"},{"title":"Neverwhere","authorFirst":"Neil","authorLast":"Gaiman","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"388"},{"title":"Norse Mythology","authorFirst":"Neil","authorLast":"Gaiman","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"304"},{"title":"Stardust","authorFirst":"Neil","authorLast":"Gaiman","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"238"},{"title":"The Ocean at the End of the Lane","authorFirst":"Neil","authorLast":"Gaiman","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"224"},{"title":"Pattern Recognition","authorFirst":"William","authorLast":"Gibson","genre":"Sci-Fi","series":"Blue Ant 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"368"},{"title":"Spook Country","authorFirst":"William","authorLast":"Gibson","genre":"Sci-Fi","series":"Blue Ant 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"384"},{"title":"Zero History","authorFirst":"William","authorLast":"Gibson","genre":"Sci-Fi","series":"Blue Ant 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"466"},{"title":"Virtual Light","authorFirst":"William","authorLast":"Gibson","genre":"Sci-Fi","series":"Bridge 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"320"},{"title":"Idoru","authorFirst":"William","authorLast":"Gibson","genre":"Sci-Fi","series":"Bridge 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"307"},{"title":"All Tomorrow's Parties","authorFirst":"William","authorLast":"Gibson","genre":"Sci-Fi","series":"Bridge 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"288"},{"title":"Neuromancer","authorFirst":"William","authorLast":"Gibson","genre":"Sci-Fi","series":"Sprawl 1","owned":"Physical","read":"X","compDate":"2/21/21","status":"","information":"","pages":"318"},{"title":"Count Zero","authorFirst":"William","authorLast":"Gibson","genre":"Sci-Fi","series":"Sprawl 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"278"},{"title":"Mona Lisa Overdrive","authorFirst":"William","authorLast":"Gibson","genre":"Sci-Fi","series":"Sprawl 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"320"},{"title":"Agency","authorFirst":"William","authorLast":"Gibson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"The Difference Engine","authorFirst":"William","authorLast":"Gibson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"395"},{"title":"The Peripheral","authorFirst":"William","authorLast":"Gibson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"496"},{"title":"Women's War","authorFirst":"Jenna","authorLast":"Glass","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"568"},{"title":"The Princess Bride","authorFirst":"William","authorLast":"Goldman","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"399"},{"title":"Wizard's First Rule","authorFirst":"Terry","authorLast":"Goodkind","genre":"Fantasy","series":"Sword of Truth 01","owned":"","read":"","compDate":"","status":"","information":"","pages":"611"},{"title":"Stone of Tears","authorFirst":"Terry","authorLast":"Goodkind","genre":"Fantasy","series":"Sword of Truth 02","owned":"","read":"","compDate":"","status":"","information":"","pages":"768"},{"title":"Blood of the Fold","authorFirst":"Terry","authorLast":"Goodkind","genre":"Fantasy","series":"Sword of Truth 03","owned":"","read":"","compDate":"","status":"","information":"","pages":"576"},{"title":"Temple of the Winds","authorFirst":"Terry","authorLast":"Goodkind","genre":"Fantasy","series":"Sword of Truth 04","owned":"","read":"","compDate":"","status":"","information":"","pages":"786"},{"title":"Soul of the Fire","authorFirst":"Terry","authorLast":"Goodkind","genre":"Fantasy","series":"Sword of Truth 05","owned":"","read":"","compDate":"","status":"","information":"","pages":"624"},{"title":"Faith of the Fallen","authorFirst":"Terry","authorLast":"Goodkind","genre":"Fantasy","series":"Sword of Truth 06","owned":"","read":"","compDate":"","status":"","information":"","pages":"704"},{"title":"The Pillars of Creation","authorFirst":"Terry","authorLast":"Goodkind","genre":"Fantasy","series":"Sword of Truth 07","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Naked Empire","authorFirst":"Terry","authorLast":"Goodkind","genre":"Fantasy","series":"Sword of Truth 08","owned":"","read":"","compDate":"","status":"","information":"","pages":"670"},{"title":"Chainfire","authorFirst":"Terry","authorLast":"Goodkind","genre":"Fantasy","series":"Sword of Truth 09","owned":"","read":"","compDate":"","status":"","information":"","pages":"672"},{"title":"Phantom","authorFirst":"Terry","authorLast":"Goodkind","genre":"Fantasy","series":"Sword of Truth 10","owned":"","read":"","compDate":"","status":"","information":"","pages":"589"},{"title":"Confessor","authorFirst":"Terry","authorLast":"Goodkind","genre":"Fantasy","series":"Sword of Truth 11","owned":"","read":"","compDate":"","status":"","information":"","pages":"608"},{"title":"The Witch's Heart","authorFirst":"Genevieve","authorLast":"Gornichec","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Feed","authorFirst":"Mira","authorLast":"Grant","genre":"Sci-Fi","series":"Newsflesh 1","owned":"Physical / EPUB","read":"X","compDate":"9/18/23","status":"","information":"","pages":"596"},{"title":"Deadline","authorFirst":"Mira","authorLast":"Grant","genre":"Sci-Fi","series":"Newsflesh 2","owned":"Physical / EPUB","read":"X","compDate":"9/20/23","status":"","information":"","pages":"584"},{"title":"Blackout","authorFirst":"Mira","authorLast":"Grant","genre":"Sci-Fi","series":"Newsflesh 3","owned":"Physical / EPUB","read":"X","compDate":"9/22/23","status":"","information":"","pages":"512"},{"title":"Feedback","authorFirst":"Mira","authorLast":"Grant","genre":"Sci-Fi","series":"Newsflesh 4","owned":"EPUB","read":"X","compDate":"10/20/23","status":"","information":"","pages":"489"},{"title":"Parasite","authorFirst":"Mira","authorLast":"Grant","genre":"Sci-Fi","series":"Parasitology 1","owned":"EPUB","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"512"},{"title":"Symbiont","authorFirst":"Mira","authorLast":"Grant","genre":"Sci-Fi","series":"Parasitology 2","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"518"},{"title":"Chimera","authorFirst":"Mira","authorLast":"Grant","genre":"Sci-Fi","series":"Parasitology 3","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"496"},{"title":"Master & Apprentice","authorFirst":"Claudia","authorLast":"Gray","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"360"},{"title":"The Hand of the Sun King","authorFirst":"J.T.","authorLast":"Greathouse","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Grimm's Complete Fairy Tales","authorFirst":"Jacob","authorLast":"Grimm","genre":"Fantasy/Classic","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"646"},{"title":"The Magicians","authorFirst":"Lev","authorLast":"Grossman","genre":"Fantasy","series":"The Magicians 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"456"},{"title":"The Magician King","authorFirst":"Lev","authorLast":"Grossman","genre":"Fantasy","series":"The Magicians 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Magician's Land","authorFirst":"Lev","authorLast":"Grossman","genre":"Fantasy","series":"The Magicians 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"The Shadow of the Gods","authorFirst":"John","authorLast":"Gwynne","genre":"Fantasy","series":"Bloodsworn Saga 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"265"},{"title":"A Time of Dread","authorFirst":"John","authorLast":"Gwynne","genre":"Fantasy","series":"Of Blood and Bone 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"640"},{"title":"A Time of Blood","authorFirst":"John","authorLast":"Gwynne","genre":"Fantasy","series":"Of Blood and Bone 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"512"},{"title":"A Time of Courage","authorFirst":"John","authorLast":"Gwynne","genre":"Fantasy","series":"Of Blood and Bone 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"720"},{"title":"Malice","authorFirst":"John","authorLast":"Gwynne","genre":"Fantasy","series":"The Faithful and the Fallen 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"641"},{"title":"Valor","authorFirst":"John","authorLast":"Gwynne","genre":"Fantasy","series":"The Faithful and the Fallen 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"673"},{"title":"Ruin","authorFirst":"John","authorLast":"Gwynne","genre":"Fantasy","series":"The Faithful and the Fallen 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"672"},{"title":"Wrath","authorFirst":"John","authorLast":"Gwynne","genre":"Fantasy","series":"The Faithful and the Fallen 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"713"},{"title":"The Midnight Library","authorFirst":"Matt","authorLast":"Haig","genre":"Sci-Fi","series":"","owned":"","read":"X","compDate":"4/23/21","status":"","information":"","pages":"304"},{"title":"The Forever War","authorFirst":"Jon","authorLast":"Haldeman","genre":"Sci-Fi","series":"Forever War 1","owned":"Want","read":"X","compDate":"1/3/19","status":"4 Priority","information":"","pages":"278"},{"title":"Forever Free","authorFirst":"Jon","authorLast":"Haldeman","genre":"Sci-Fi","series":"Forever War 2","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Forever Peace","authorFirst":"Jon","authorLast":"Haldeman","genre":"Sci-Fi","series":"Forever War 3","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Supermarket","authorFirst":"Bobby","authorLast":"Hall","genre":"Thriller","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"288"},{"title":"Dragonslayer","authorFirst":"Duncan M.","authorLast":"Hamilton","genre":"Fantasy","series":"Dragonslayer 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"304"},{"title":"Knight of the Silver Circle","authorFirst":"Duncan M.","authorLast":"Hamilton","genre":"Fantasy","series":"Dragonslayer 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"328"},{"title":"Servant of the Crown","authorFirst":"Duncan M.","authorLast":"Hamilton","genre":"Fantasy","series":"Dragonslayer 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"336"},{"title":"Misspent Youth","authorFirst":"Peter F.","authorLast":"Hamilton","genre":"Sci-Fi","series":"Commonwealth 1: Saga 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"386"},{"title":"Pandora's Star","authorFirst":"Peter F.","authorLast":"Hamilton","genre":"Sci-Fi","series":"Commonwealth 1: Saga 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"988"},{"title":"Judas Unchained","authorFirst":"Peter F.","authorLast":"Hamilton","genre":"Sci-Fi","series":"Commonwealth 1: Saga 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"827"},{"title":"The Dreaming Void","authorFirst":"Peter F.","authorLast":"Hamilton","genre":"Sci-Fi","series":"Commonwealth 2: Void 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"646"},{"title":"The Temporal Void","authorFirst":"Peter F.","authorLast":"Hamilton","genre":"Sci-Fi","series":"Commonwealth 2: Void 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"745"},{"title":"The Evolutionary Void","authorFirst":"Peter F.","authorLast":"Hamilton","genre":"Sci-Fi","series":"Commonwealth 2: Void 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"672"},{"title":"The Abyss Beyond Dreams","authorFirst":"Peter F.","authorLast":"Hamilton","genre":"Sci-Fi","series":"Commonwealth 3: Chronicle of the Fallers 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"614"},{"title":"Night Without Smars","authorFirst":"Peter F.","authorLast":"Hamilton","genre":"Sci-Fi","series":"Commonwealth 3: Chronicle of the Fallers 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Reality Dysfunction","authorFirst":"Peter F.","authorLast":"Hamilton","genre":"Sci-Fi","series":"Confederation: The Night's Dawn Trilogy 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"848"},{"title":"The Neutronium Alchemist","authorFirst":"Peter F.","authorLast":"Hamilton","genre":"Sci-Fi","series":"Confederation: The Night's Dawn Trilogy 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"594"},{"title":"The Naked God","authorFirst":"Peter F.","authorLast":"Hamilton","genre":"Sci-Fi","series":"Confederation: The Night's Dawn Trilogy 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"1184"},{"title":"Fallen Dragon","authorFirst":"Peter F.","authorLast":"Hamilton","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"650"},{"title":"Nophek Gloss","authorFirst":"Essa","authorLast":"Hansen","genre":"Sci-Fi","series":"The Graven 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"480"},{"title":"Azura Ghost","authorFirst":"Essa","authorLast":"Hansen","genre":"Sci-Fi","series":"The Graven 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"504"},{"title":"Tell Me an Ending","authorFirst":"Jo","authorLast":"Harkin","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"448"},{"title":"A Discovery of Witches","authorFirst":"Deborah","authorLast":"Harkness","genre":"Fantasy","series":"All Souls 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"664"},{"title":"Shadow of Night","authorFirst":"Deborah","authorLast":"Harkness","genre":"Fantasy","series":"All Souls 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"592"},{"title":"The Book of Life","authorFirst":"Deborah","authorLast":"Harkness","genre":"Fantasy","series":"All Souls 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"656"},{"title":"The Warehouse","authorFirst":"Rob","authorLast":"Hart","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"A Thousand Ships","authorFirst":"Natalie","authorLast":"Haynes","genre":"Fantasy/Greek","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"368"},{"title":"Starship Troopers","authorFirst":"Robert A.","authorLast":"Heinlein","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"233"},{"title":"The Final Girl Support Club","authorFirst":"Grady","authorLast":"Hendrix","genre":"Horror","series":"","owned":"","read":"X","compDate":"12/9/21","status":"","information":"","pages":"352"},{"title":"Dune","authorFirst":"Frank","authorLast":"Herbert","genre":"Sci-Fi","series":"Dune 1","owned":"Physical","read":"X","compDate":"9/27/20","status":"","information":"","pages":"554"},{"title":"Dune Messiah","authorFirst":"Frank","authorLast":"Herbert","genre":"Sci-Fi","series":"Dune 2","owned":"","read":"","compDate":"","status":"4 Priority","information":"Series priority","pages":"267"},{"title":"Children of Dune","authorFirst":"Frank","authorLast":"Herbert","genre":"Sci-Fi","series":"Dune 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"444"},{"title":"God Emperor of Dune","authorFirst":"Frank","authorLast":"Herbert","genre":"Sci-Fi","series":"Dune 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"450"},{"title":"Heretics of Dune","authorFirst":"Frank","authorLast":"Herbert","genre":"Sci-Fi","series":"Dune 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"504"},{"title":"Chapterhouse: Dune","authorFirst":"Frank","authorLast":"Herbert","genre":"Sci-Fi","series":"Dune 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"464"},{"title":"Assassin's Apprentice","authorFirst":"Robin","authorLast":"Hobb","genre":"Fantasy","series":"Realm of the Elderlings 01","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"428"},{"title":"Royal Assassin","authorFirst":"Robin","authorLast":"Hobb","genre":"Fantasy","series":"Realm of the Elderlings 02","owned":"","read":"","compDate":"","status":"","information":"","pages":"704"},{"title":"Assassin's Quest","authorFirst":"Robin","authorLast":"Hobb","genre":"Fantasy","series":"Realm of the Elderlings 03","owned":"","read":"","compDate":"","status":"","information":"","pages":"757"},{"title":"Ship of Magic","authorFirst":"Robin","authorLast":"Hobb","genre":"Fantasy","series":"Realm of the Elderlings 04","owned":"","read":"","compDate":"","status":"","information":"","pages":"685"},{"title":"The Mad Ship","authorFirst":"Robin","authorLast":"Hobb","genre":"Fantasy","series":"Realm of the Elderlings 05","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Ship of Destiny","authorFirst":"Robin","authorLast":"Hobb","genre":"Fantasy","series":"Realm of the Elderlings 06","owned":"","read":"","compDate":"","status":"","information":"","pages":"683"},{"title":"Fool's Errand","authorFirst":"Robin","authorLast":"Hobb","genre":"Fantasy","series":"Realm of the Elderlings 07","owned":"","read":"","compDate":"","status":"","information":"","pages":"584"},{"title":"The Golden Fool","authorFirst":"Robin","authorLast":"Hobb","genre":"Fantasy","series":"Realm of the Elderlings 08","owned":"","read":"","compDate":"","status":"","information":"","pages":"723"},{"title":"Fool's Fate","authorFirst":"Robin","authorLast":"Hobb","genre":"Fantasy","series":"Realm of the Elderlings 09","owned":"","read":"","compDate":"","status":"","information":"","pages":"805"},{"title":"Dragon Keeper","authorFirst":"Robin","authorLast":"Hobb","genre":"Fantasy","series":"Realm of the Elderlings 10","owned":"","read":"","compDate":"","status":"","information":"","pages":"53"},{"title":"Dragon Haven","authorFirst":"Robin","authorLast":"Hobb","genre":"Fantasy","series":"Realm of the Elderlings 11","owned":"","read":"","compDate":"","status":"","information":"","pages":"570"},{"title":"City of Dragons","authorFirst":"Robin","authorLast":"Hobb","genre":"Fantasy","series":"Realm of the Elderlings 12","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Blood of Dragons","authorFirst":"Robin","authorLast":"Hobb","genre":"Fantasy","series":"Realm of the Elderlings 13","owned":"","read":"","compDate":"","status":"","information":"","pages":"425"},{"title":"Fool's Assassin","authorFirst":"Robin","authorLast":"Hobb","genre":"Fantasy","series":"Realm of the Elderlings 14","owned":"","read":"","compDate":"","status":"","information":"","pages":"640"},{"title":"Fool's Quest","authorFirst":"Robin","authorLast":"Hobb","genre":"Fantasy","series":"Realm of the Elderlings 15","owned":"","read":"","compDate":"","status":"","information":"","pages":"35"},{"title":"Assassin's Fate","authorFirst":"Robin","authorLast":"Hobb","genre":"Fantasy","series":"Realm of the Elderlings 16","owned":"","read":"","compDate":"","status":"","information":"","pages":"952"},{"title":"The Belt of the Buried Gods","authorFirst":"Hugh","authorLast":"Howey","genre":"Sci-Fi","series":"Sand 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Out of No Man's Land","authorFirst":"Hugh","authorLast":"Howey","genre":"Sci-Fi","series":"Sand 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Return to Danvar","authorFirst":"Hugh","authorLast":"Howey","genre":"Sci-Fi","series":"Sand 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Thunder Due East","authorFirst":"Hugh","authorLast":"Howey","genre":"Sci-Fi","series":"Sand 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"A Rap Upon Heaven's Gate","authorFirst":"Hugh","authorLast":"Howey","genre":"Sci-Fi","series":"Sand 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Wool","authorFirst":"Hugh","authorLast":"Howey","genre":"Sci-Fi","series":"Silo 1","owned":"Kindle","read":"X","compDate":"6/29/23","status":"","information":"","pages":"569"},{"title":"Shift","authorFirst":"Hugh","authorLast":"Howey","genre":"Sci-Fi","series":"Silo 2","owned":"Kindle","read":"X","compDate":"7/11/23","status":"","information":"","pages":"576"},{"title":"Dust","authorFirst":"Hugh","authorLast":"Howey","genre":"Sci-Fi","series":"Silo 3","owned":"Kindle","read":"X","compDate":"7/25/23","status":"","information":"","pages":"416"},{"title":"Beacon 23","authorFirst":"Hugh","authorLast":"Howey","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"252"},{"title":"Library of the Dead","authorFirst":"T.L.","authorLast":"Huchu","genre":"Fantasy","series":"Edinburgh Nights 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Point of Impact","authorFirst":"Stephen","authorLast":"Hunter","genre":"Thriller","series":"Bob Lee Swagger 01","owned":"","read":"","compDate":"","status":"","information":"","pages":"526"},{"title":"Black Light","authorFirst":"Stephen","authorLast":"Hunter","genre":"Thriller","series":"Bob Lee Swagger 02","owned":"","read":"","compDate":"","status":"","information":"","pages":"464"},{"title":"Time to Hunt","authorFirst":"Stephen","authorLast":"Hunter","genre":"Thriller","series":"Bob Lee Swagger 03","owned":"","read":"","compDate":"","status":"","information":"","pages":"608"},{"title":"The 47th Samurai","authorFirst":"Stephen","authorLast":"Hunter","genre":"Thriller","series":"Bob Lee Swagger 04","owned":"","read":"","compDate":"","status":"","information":"","pages":"456"},{"title":"Night of Thunder","authorFirst":"Stephen","authorLast":"Hunter","genre":"Thriller","series":"Bob Lee Swagger 05","owned":"","read":"","compDate":"","status":"","information":"","pages":"440"},{"title":"I, Sniper","authorFirst":"Stephen","authorLast":"Hunter","genre":"Thriller","series":"Bob Lee Swagger 06","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Dead Zero","authorFirst":"Stephen","authorLast":"Hunter","genre":"Thriller","series":"Bob Lee Swagger 07","owned":"","read":"","compDate":"","status":"","information":"","pages":"528"},{"title":"The Third Bullet","authorFirst":"Stephen","authorLast":"Hunter","genre":"Thriller","series":"Bob Lee Swagger 08","owned":"","read":"","compDate":"","status":"","information":"","pages":"485"},{"title":"Sniper's Honor","authorFirst":"Stephen","authorLast":"Hunter","genre":"Thriller","series":"Bob Lee Swagger 09","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"G-Man","authorFirst":"Stephen","authorLast":"Hunter","genre":"Thriller","series":"Bob Lee Swagger 10","owned":"","read":"","compDate":"","status":"","information":"","pages":"544"},{"title":"Hot Springs","authorFirst":"Stephen","authorLast":"Hunter","genre":"Thriller","series":"Bob Lee Swagger 11","owned":"","read":"","compDate":"","status":"","information":"","pages":"546"},{"title":"Pale Horse Coming","authorFirst":"Stephen","authorLast":"Hunter","genre":"Thriller","series":"Bob Lee Swagger 12","owned":"","read":"","compDate":"","status":"","information":"","pages":"594"},{"title":"Havana","authorFirst":"Stephen","authorLast":"Hunter","genre":"Thriller","series":"Bob Lee Swagger 13","owned":"","read":"","compDate":"","status":"","information":"","pages":"443"},{"title":"Soft Target","authorFirst":"Stephen","authorLast":"Hunter","genre":"Thriller","series":"Bob Lee Swagger 14","owned":"","read":"","compDate":"","status":"","information":"","pages":"272"},{"title":"God's War","authorFirst":"Kameron","authorLast":"Hurley","genre":"Sci-Fi","series":"The Bel Dame Apocrypha 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"360"},{"title":"Infidel","authorFirst":"Kameron","authorLast":"Hurley","genre":"Sci-Fi","series":"The Bel Dame Apocrypha 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"392"},{"title":"Rapture","authorFirst":"Kameron","authorLast":"Hurley","genre":"Sci-Fi","series":"The Bel Dame Apocrypha 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"460"},{"title":"The Mirror Empire","authorFirst":"Kameron","authorLast":"Hurley","genre":"Sci-Fi","series":"Worldbreaker Saga 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"512"},{"title":"Empire Ascendant","authorFirst":"Kameron","authorLast":"Hurley","genre":"Sci-Fi","series":"Worldbreaker Saga 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"502"},{"title":"The Broken Heavens","authorFirst":"Kameron","authorLast":"Hurley","genre":"Sci-Fi","series":"Worldbreaker Saga 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Light Brigade","authorFirst":"Kameron","authorLast":"Hurley","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"360"},{"title":"The Stars Are Legion","authorFirst":"Kameron","authorLast":"Hurley","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"400"},{"title":"Brave New World","authorFirst":"Aldous","authorLast":"Huxley","genre":"Sci-Fi/Classic","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"254"},{"title":"Klara and the Sun","authorFirst":"Kazuo","authorLast":"Ishiguro","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"330"},{"title":"A River In Darkness","authorFirst":"Masaji","authorLast":"Ishikawa","genre":"Nonfiction","series":"","owned":"","read":"X","compDate":"11/30/20","status":"","information":"","pages":"159"},{"title":"The Shadow of What Was Lost","authorFirst":"James","authorLast":"Islington","genre":"Fantasy","series":"The Licanius 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"602"},{"title":"An Echo of Things to Come","authorFirst":"James","authorLast":"Islington","genre":"Fantasy","series":"The Licanius 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Light of All that Falls","authorFirst":"James","authorLast":"Islington","genre":"Fantasy","series":"The Licanius 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"864"},{"title":"Lord Brocktree","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 01","owned":"Physical","read":"X","compDate":"","status":"","information":"","pages":"384"},{"title":"Martin the Warrior","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 02","owned":"Physical","read":"X","compDate":"","status":"","information":"","pages":"376"},{"title":"Mossflower","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 03","owned":"Physical","read":"X","compDate":"","status":"","information":"","pages":"431"},{"title":"The Legend of Luke","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 04","owned":"Physical","read":"X","compDate":"","status":"","information":"","pages":"374"},{"title":"Outcast of Redwall","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 05","owned":"Physical","read":"X","compDate":"","status":"","information":"","pages":"367"},{"title":"Mariel of Redwall","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 06","owned":"Physical","read":"X","compDate":"","status":"","information":"","pages":"387"},{"title":"The Bellmaker","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 07","owned":"Physical","read":"X","compDate":"","status":"","information":"","pages":"352"},{"title":"Salamandastron","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 08","owned":"Physical","read":"X","compDate":"","status":"","information":"","pages":"391"},{"title":"Redwall","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 09","owned":"Physical","read":"X","compDate":"","status":"","information":"","pages":"352"},{"title":"Mattimeo","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 10","owned":"Physical","read":"X","compDate":"","status":"","information":"","pages":"446"},{"title":"The Pearls of Lutra","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 11","owned":"Physical","read":"X","compDate":"","status":"","information":"","pages":"408"},{"title":"The Long Patrol","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 12","owned":"Physical","read":"X","compDate":"","status":"","information":"","pages":"368"},{"title":"Marlfox","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 13","owned":"Physical","read":"X","compDate":"","status":"","information":"","pages":"386"},{"title":"The Taggerung","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 14","owned":"Physical","read":"X","compDate":"","status":"","information":"","pages":"438"},{"title":"Triss","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 15","owned":"Physical","read":"","compDate":"","status":"","information":"","pages":"400"},{"title":"Loamhedge","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 16","owned":"Physical","read":"","compDate":"","status":"","information":"","pages":"408"},{"title":"Rakkety Tam","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 17","owned":"","read":"","compDate":"","status":"","information":"","pages":"378"},{"title":"High Rhulain","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 18","owned":"Physical","read":"","compDate":"","status":"","information":"","pages":"340"},{"title":"Eulalia!","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 19","owned":"Physical","read":"","compDate":"","status":"","information":"","pages":"389"},{"title":"Doomwyte","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 20","owned":"","read":"","compDate":"","status":"","information":"","pages":"376"},{"title":"The Sable Quean","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 21","owned":"","read":"","compDate":"","status":"","information":"","pages":"392"},{"title":"The Rogue Crew","authorFirst":"Brian","authorLast":"Jacques","genre":"Fantasy","series":"Redwall 22","owned":"","read":"","compDate":"","status":"","information":"","pages":"387"},{"title":"Black Leopard, Red Wolf","authorFirst":"Marlon","authorLast":"James","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"7 Abandoned","information":"DO NOT READ","pages":"640"},{"title":"The Fifth Season","authorFirst":"N.K.","authorLast":"Jemisin","genre":"Fantasy","series":"Broken Earth 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"Manual"},{"title":"The Obelisk Gate","authorFirst":"N.K.","authorLast":"Jemisin","genre":"Fantasy","series":"Broken Earth 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Stone Sky","authorFirst":"N.K.","authorLast":"Jemisin","genre":"Fantasy","series":"Broken Earth 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Killing Moon","authorFirst":"N.K.","authorLast":"Jemisin","genre":"Fantasy","series":"Dreamblood 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"Manual"},{"title":"The Shadowed Sun","authorFirst":"N.K.","authorLast":"Jemisin","genre":"Fantasy","series":"Dreamblood 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The City We Became","authorFirst":"N.K.","authorLast":"Jemisin","genre":"Fantasy","series":"Great Cities 1","owned":"Physical","read":"X","compDate":"6/13/21","status":"","information":"","pages":"436"},{"title":"The World We Make","authorFirst":"N.K.","authorLast":"Jemisin","genre":"Fantasy","series":"Great Cities 2","owned":"EPUB","read":"","compDate":"","status":"2 Ready","information":"","pages":"Manual"},{"title":"The Hundred Thousand Kingdoms","authorFirst":"N.K.","authorLast":"Jemisin","genre":"Fantasy","series":"Inheritance Trilogy 1","owned":"","read":"X","compDate":"3/5/23","status":"","information":"","pages":"416"},{"title":"The Broken Kingdoms","authorFirst":"N.K.","authorLast":"Jemisin","genre":"Fantasy","series":"Inheritance Trilogy 2","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"Manual"},{"title":"The Kingdom of Gods","authorFirst":"N.K.","authorLast":"Jemisin","genre":"Fantasy","series":"Inheritance Trilogy 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Vagabonds","authorFirst":"Hao","authorLast":"Jingfang","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"608"},{"title":"I Have No Secrets","authorFirst":"Penny","authorLast":"Joelson","genre":"Mystery","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"328"},{"title":"Trouble the Saints","authorFirst":"Alaya Dawn","authorLast":"Johnson","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"Best Fantasy 2020","pages":"352"},{"title":"The Eye of the World","authorFirst":"Robert","authorLast":"Jordan","genre":"High Fantasy","series":"Wheel of Time 01","owned":"Physical","read":"X","compDate":"9/5/19","status":"","information":"Priority 2024","pages":"782"},{"title":"The Great Hunt","authorFirst":"Robert","authorLast":"Jordan","genre":"High Fantasy","series":"Wheel of Time 02","owned":"Physical","read":"","compDate":"","status":"2 Ready","information":"","pages":"678"},{"title":"The Dragon Reborn","authorFirst":"Robert","authorLast":"Jordan","genre":"High Fantasy","series":"Wheel of Time 03","owned":"","read":"","compDate":"","status":"","information":"","pages":"672"},{"title":"The Shadow Rising","authorFirst":"Robert","authorLast":"Jordan","genre":"High Fantasy","series":"Wheel of Time 04","owned":"","read":"","compDate":"","status":"","information":"","pages":"984"},{"title":"The Fires of Heaven","authorFirst":"Robert","authorLast":"Jordan","genre":"High Fantasy","series":"Wheel of Time 05","owned":"","read":"","compDate":"","status":"","information":"","pages":"911"},{"title":"Lord of Chaos","authorFirst":"Robert","authorLast":"Jordan","genre":"High Fantasy","series":"Wheel of Time 06","owned":"","read":"","compDate":"","status":"","information":"","pages":"940"},{"title":"A Crown of Swords","authorFirst":"Robert","authorLast":"Jordan","genre":"High Fantasy","series":"Wheel of Time 07","owned":"","read":"","compDate":"","status":"","information":"","pages":"773"},{"title":"The Path of Daggers","authorFirst":"Robert","authorLast":"Jordan","genre":"High Fantasy","series":"Wheel of Time 08","owned":"","read":"","compDate":"","status":"","information":"","pages":"608"},{"title":"Winter's Heart","authorFirst":"Robert","authorLast":"Jordan","genre":"High Fantasy","series":"Wheel of Time 09","owned":"","read":"","compDate":"","status":"","information":"","pages":"668"},{"title":"Crossroads of Twilight","authorFirst":"Robert","authorLast":"Jordan","genre":"High Fantasy","series":"Wheel of Time 10","owned":"","read":"","compDate":"","status":"","information":"","pages":"704"},{"title":"New Spring","authorFirst":"Robert","authorLast":"Jordan","genre":"High Fantasy","series":"Wheel of Time 11","owned":"","read":"","compDate":"","status":"","information":"","pages":"336"},{"title":"Knife of Dreams","authorFirst":"Robert","authorLast":"Jordan","genre":"High Fantasy","series":"Wheel of Time 12","owned":"","read":"","compDate":"","status":"","information":"","pages":"832"},{"title":"The Gathering Storm","authorFirst":"Robert","authorLast":"Jordan","genre":"High Fantasy","series":"Wheel of Time 13","owned":"","read":"","compDate":"","status":"","information":"","pages":"828"},{"title":"Towers of Midnight","authorFirst":"Robert","authorLast":"Jordan","genre":"High Fantasy","series":"Wheel of Time 14","owned":"","read":"","compDate":"","status":"","information":"","pages":"944"},{"title":"A Memory of Light","authorFirst":"Robert","authorLast":"Jordan","genre":"High Fantasy","series":"Wheel of Time 15","owned":"","read":"","compDate":"","status":"","information":"","pages":"928"},{"title":"A Wizard of Earthsea","authorFirst":"Ursula","authorLast":"K. Le Guin","genre":"Fantasy","series":"Earthsea Cycle 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"205"},{"title":"The Tombs of Atuan","authorFirst":"Ursula","authorLast":"K. Le Guin","genre":"Fantasy","series":"Earthsea Cycle 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"173"},{"title":"The Farthest Shore","authorFirst":"Ursula","authorLast":"K. Le Guin","genre":"Fantasy","series":"Earthsea Cycle 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"223"},{"title":"Tehanu","authorFirst":"Ursula","authorLast":"K. Le Guin","genre":"Fantasy","series":"Earthsea Cycle 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"260"},{"title":"Tales from Earthsea","authorFirst":"Ursula","authorLast":"K. Le Guin","genre":"Fantasy","series":"Earthsea Cycle 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"328"},{"title":"The Other Wind","authorFirst":"Ursula","authorLast":"K. Le Guin","genre":"Fantasy","series":"Earthsea Cycle 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"272"},{"title":"Rocannon's World","authorFirst":"Ursula","authorLast":"K. Le Guin","genre":"Sci-Fi","series":"Hainish Cycle 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"138"},{"title":"Planet of Exile","authorFirst":"Ursula","authorLast":"K. Le Guin","genre":"Sci-Fi","series":"Hainish Cycle 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"140"},{"title":"City of Illusions","authorFirst":"Ursula","authorLast":"K. Le Guin","genre":"Sci-Fi","series":"Hainish Cycle 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"207"},{"title":"The Left Hand of Darkness","authorFirst":"Ursula","authorLast":"K. Le Guin","genre":"Sci-Fi","series":"Hainish Cycle 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"304"},{"title":"The Word for World is Forest","authorFirst":"Ursula","authorLast":"K. Le Guin","genre":"Sci-Fi","series":"Hainish Cycle 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"169"},{"title":"The Dispossessed","authorFirst":"Ursula","authorLast":"K. Le Guin","genre":"Sci-Fi","series":"Hainish Cycle 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"350"},{"title":"Four Ways to Forgiveness","authorFirst":"Ursula","authorLast":"K. Le Guin","genre":"Sci-Fi","series":"Hainish Cycle 7","owned":"","read":"","compDate":"","status":"","information":"","pages":"304"},{"title":"The Telling","authorFirst":"Ursula","authorLast":"K. Le Guin","genre":"Sci-Fi","series":"Hainish Cycle 8","owned":"","read":"","compDate":"","status":"","information":"","pages":"264"},{"title":"The Birthday of the World and Other Stories","authorFirst":"Ursula","authorLast":"K. Le Guin","genre":"Sci-Fi","series":"Hainish Cycle 9","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Tigana","authorFirst":"Guy Gavriel","authorLast":"Kay","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"688"},{"title":"Flowers for Algernon","authorFirst":"Daniel","authorLast":"Keyes","genre":"Sci-Fi/Classic","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"259"},{"title":"The All-Consuming World","authorFirst":"Cassandra","authorLast":"Khaw","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"288"},{"title":"Miracle Creek","authorFirst":"Angie","authorLast":"Kim","genre":"Mystery","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"368"},{"title":"Mr. Mercedes","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"Bill Hodges Trilogy 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"484"},{"title":"Finders Keepers","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"Bill Hodges Trilogy 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"448"},{"title":"End of Watch","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"Bill Hodges Trilogy 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"448"},{"title":"The Dark Tower: The Gunslinger","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"Dark Tower 1","owned":"Physical","read":"X","compDate":"9/13/20","status":"","information":"","pages":"860"},{"title":"The Dark Tower II: The Drawing of the Three","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"Dark Tower 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Dark Tower III: The Waste Lands","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"Dark Tower 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Dark Tower IV: Wizard and Glass","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"Dark Tower 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Dark Tower: The Wind Through the Keyhole","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"Dark Tower 4.5","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Dark Tower V: Wolves of the Calla","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"Dark Tower 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Dark Tower VI: Song of Susannah","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"Dark Tower 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Dark Tower VII: The Dark Tower","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"Dark Tower 7","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Desperation","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"Desperation 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"629"},{"title":"The Eyes of the Dragon","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"Desperation 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"382"},{"title":"The Shining","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"The Shining 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"512"},{"title":"Doctor Sleep","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"The Shining 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"560"},{"title":"11/22/63","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"859"},{"title":"Bag of Bones","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"608"},{"title":"Black House","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"1456"},{"title":"Carrie","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"X","compDate":"7/2/22","status":"","information":"","pages":"256"},{"title":"Cell","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"X","compDate":"","status":"","information":"","pages":"464"},{"title":"Christine","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"503"},{"title":"Cujo","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"Want","read":"X","compDate":"","status":"","information":"","pages":"352"},{"title":"Dolores Claiborne","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"320"},{"title":"Dreamcatcher","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"736"},{"title":"Duma Key","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"688"},{"title":"Elevation","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"168"},{"title":"Firestarter","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"428"},{"title":"From a Buick 8","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"X","compDate":"","status":"","information":"","pages":"465"},{"title":"Gerald's Game","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"401"},{"title":"Gwendy's Button Box","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"176"},{"title":"Insomnia","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"740"},{"title":"It","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"1176"},{"title":"Joyland","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"318"},{"title":"Lisey's Story","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"608"},{"title":"Misery","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"384"},{"title":"Needful Things","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"736"},{"title":"On Writing: A Memoir of the Craft","authorFirst":"Stephen","authorLast":"King","genre":"Nonfiction","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"Manual"},{"title":"Pet Sematary","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"420"},{"title":"Rage","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"880"},{"title":"Revival","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"459"},{"title":"Roadwork","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"880"},{"title":"Rose Madder","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"496"},{"title":"Salem's Lot","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"513"},{"title":"Sleeping Beauties","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"917"},{"title":"The Dark Half","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"484"},{"title":"The Dead Zone","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"426"},{"title":"The Girl who Loved Tom Gordon","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"256"},{"title":"The Green Mile","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"465"},{"title":"The Long Walk","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"X","compDate":"","status":"","information":"","pages":"358"},{"title":"The Outsider","authorFirst":"Stephen","authorLast":"King","genre":"Mystery","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"587"},{"title":"The Regulators","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"448"},{"title":"The Running Man","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"X","compDate":"","status":"","information":"","pages":"256"},{"title":"The Stand","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"Want","read":"X","compDate":"","status":"","information":"","pages":"1153"},{"title":"The Talisman","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"769"},{"title":"The Tommyknockers","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"747"},{"title":"Thinner","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"318"},{"title":"Under the Dome","authorFirst":"Stephen","authorLast":"King","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"1074"},{"title":"Terms of Enlistment","authorFirst":"Marko","authorLast":"Kloos","genre":"Sci-Fi","series":"Frontlines 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"171"},{"title":"Lines of Departure","authorFirst":"Marko","authorLast":"Kloos","genre":"Sci-Fi","series":"Frontlines 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"315"},{"title":"Angles of Attack","authorFirst":"Marko","authorLast":"Kloos","genre":"Sci-Fi","series":"Frontlines 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"338"},{"title":"Chains of Command","authorFirst":"Marko","authorLast":"Kloos","genre":"Sci-Fi","series":"Frontlines 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"384"},{"title":"Fields of Fire","authorFirst":"Marko","authorLast":"Kloos","genre":"Sci-Fi","series":"Frontlines 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"302"},{"title":"Points of Impact","authorFirst":"Marko","authorLast":"Kloos","genre":"Sci-Fi","series":"Frontlines 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"300"},{"title":"Orders of Battle","authorFirst":"Marko","authorLast":"Kloos","genre":"Sci-Fi","series":"Frontlines 7","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Aftershocks","authorFirst":"Marko","authorLast":"Kloos","genre":"Sci-Fi","series":"The Palladium Wars 1","owned":"Kindle","read":"","compDate":"","status":"4 Priority","information":"Prime Reading","pages":"288"},{"title":"Ballistic","authorFirst":"Marko","authorLast":"Kloos","genre":"Sci-Fi","series":"The Palladium Wars 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"318"},{"title":"Citadel","authorFirst":"Marko","authorLast":"Kloos","genre":"Sci-Fi","series":"The Palladium Wars 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"331"},{"title":"The House in the Cerulean Sea","authorFirst":"T.J.","authorLast":"Klune","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"408"},{"title":"Firebreak","authorFirst":"Nicole","authorLast":"Kornher-Stace","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"Manual"},{"title":"The Calculating Stars","authorFirst":"Mary Robinette","authorLast":"Kowal","genre":"Sci-Fi","series":"Lady Astronaut 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"408"},{"title":"The Fated Sky","authorFirst":"Mary Robinette","authorLast":"Kowal","genre":"Sci-Fi","series":"Lady Astronaut 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"460"},{"title":"The Relentless Moon","authorFirst":"Mary Robinette","authorLast":"Kowal","genre":"Sci-Fi","series":"Lady Astronaut 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"544"},{"title":"The Derivative Base","authorFirst":"Mary Robinette","authorLast":"Kowal","genre":"Sci-Fi","series":"Lady Astronaut 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Last Night at the Nightshade Lounge","authorFirst":"Paul","authorLast":"Krueger","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"7 Abandoned","information":"","pages":"Manual"},{"title":"Steel Crow Saga","authorFirst":"Paul","authorLast":"Krueger","genre":"Fantasy","series":"","owned":"Physical","read":"X","compDate":"10/12/19","status":"","information":"","pages":"528"},{"title":"The Poppy War","authorFirst":"R.F.","authorLast":"Kuang","genre":"Fantasy","series":"The Poppy War 1","owned":"Physical","read":"X","compDate":"4/19/23","status":"","information":"","pages":"545"},{"title":"The Dragon Republic","authorFirst":"R.F.","authorLast":"Kuang","genre":"Fantasy","series":"The Poppy War 2","owned":"Physical","read":"X","compDate":"4/24/23","status":"","information":"","pages":"658"},{"title":"The Burning God","authorFirst":"R.F.","authorLast":"Kuang","genre":"Fantasy","series":"The Poppy War 3","owned":"Physical","read":"X","compDate":"5/7/23","status":"","information":"","pages":"622"},{"title":"Babel","authorFirst":"R.F.","authorLast":"Kuang","genre":"Fantasy","series":"","owned":"Physical","read":"X","compDate":"11/6/22","status":"","information":"","pages":"544"},{"title":"Yellowface","authorFirst":"R.F.","authorLast":"Kuang","genre":"Fiction","series":"","owned":"Want","read":"X","compDate":"6/15/23","status":"","information":"","pages":"336"},{"title":"A Wrinkle in Time","authorFirst":"Madeleine","authorLast":"L'Engle","genre":"Fantasy","series":"Time Quintet 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"212"},{"title":"A Wind in the Door","authorFirst":"Madeleine","authorLast":"L'Engle","genre":"Fantasy","series":"Time Quintet 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"211"},{"title":"A Swiftly Tilting Planet","authorFirst":"Madeleine","authorLast":"L'Engle","genre":"Fantasy","series":"Time Quintet 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"278"},{"title":"Many Waters","authorFirst":"Madeleine","authorLast":"L'Engle","genre":"Fantasy","series":"Time Quintet 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"310"},{"title":"An Acceptable Time","authorFirst":"Madeleine","authorLast":"L'Engle","genre":"Fantasy","series":"Time Quintet 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"343"},{"title":"The Girl in the Spider's Web","authorFirst":"David","authorLast":"Lagercrantz","genre":"Crime","series":"Millennium 4 (Stieg Larsson)","owned":"","read":"","compDate":"","status":"","information":"","pages":"399"},{"title":"The Girl Who Takes an Eye for an Eye","authorFirst":"David","authorLast":"Lagercrantz","genre":"Crime","series":"Millennium 5 (Stieg Larsson)","owned":"","read":"","compDate":"","status":"","information":"","pages":"448"},{"title":"The Girl with the Dragon Tattoo","authorFirst":"Stieg","authorLast":"Larsson","genre":"Crime","series":"Millennium 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"465"},{"title":"The Girl Who Played with Fire","authorFirst":"Stieg","authorLast":"Larsson","genre":"Crime","series":"Millennium 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"752"},{"title":"The Girl Who Kicked the Hornets' Nest","authorFirst":"Stieg","authorLast":"Larsson","genre":"Crime","series":"Millennium 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"602"},{"title":"One Word Kill","authorFirst":"Mark","authorLast":"Lawrence","genre":"Fantasy","series":"Impossible Times 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"204"},{"title":"Limited Wish","authorFirst":"Mark","authorLast":"Lawrence","genre":"Fantasy","series":"Impossible Times 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"224"},{"title":"Detect Illusion","authorFirst":"Mark","authorLast":"Lawrence","genre":"Fantasy","series":"Impossible Times 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Prince of Thorns","authorFirst":"Mark","authorLast":"Lawrence","genre":"Fantasy","series":"Lawrence 01, The Broken Empire 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"324"},{"title":"King of Thorns","authorFirst":"Mark","authorLast":"Lawrence","genre":"Fantasy","series":"Lawrence 02, The Broken Empire 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"1"},{"title":"Emperor of Thorns","authorFirst":"Mark","authorLast":"Lawrence","genre":"Fantasy","series":"Lawrence 03, The Broken Empire 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"Prince of Fools","authorFirst":"Mark","authorLast":"Lawrence","genre":"Fantasy","series":"Lawrence 04, The Red Queen's War 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"378"},{"title":"The Liar's Key","authorFirst":"Mark","authorLast":"Lawrence","genre":"Fantasy","series":"Lawrence 05, The Red Queen's War 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"496"},{"title":"The Wheel of Osheim","authorFirst":"Mark","authorLast":"Lawrence","genre":"Fantasy","series":"Lawrence 06, The Red Queen's War 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"425"},{"title":"Red Sister","authorFirst":"Mark","authorLast":"Lawrence","genre":"Fantasy","series":"Lawrence 07, The Book of the Ancestor 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"467"},{"title":"Grey Sister","authorFirst":"Mark","authorLast":"Lawrence","genre":"Fantasy","series":"Lawrence 08, The Book of the Ancestor 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"Holy Sister","authorFirst":"Mark","authorLast":"Lawrence","genre":"Fantasy","series":"Lawrence 09, The Book of the Ancestor 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"344"},{"title":"The Girl and the Stars","authorFirst":"Mark","authorLast":"Lawrence","genre":"Fantasy","series":"Lawrence 10, Book of the Ice 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"The Girl and the Mountain","authorFirst":"Mark","authorLast":"Lawrence","genre":"Fantasy","series":"Lawrence 11, Book of the Ice 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Girl and the Moon","authorFirst":"Mark","authorLast":"Lawrence","genre":"Fantasy","series":"Lawrence 12, Book of the Ice 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"384"},{"title":"Tinker, Tailor, Soldier, Spy","authorFirst":"John","authorLast":"le Carre","genre":"Political","series":"George Smiley 5","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"369"},{"title":"Ancillary Justice","authorFirst":"Ann","authorLast":"Leckie","genre":"Sci-Fi","series":"Imperial Radch 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"Ancillary Sword","authorFirst":"Ann","authorLast":"Leckie","genre":"Sci-Fi","series":"Imperial Radch 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"Ancillary Mercy","authorFirst":"Ann","authorLast":"Leckie","genre":"Sci-Fi","series":"Imperial Radch 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"359"},{"title":"Jade City","authorFirst":"Fonda","authorLast":"Lee","genre":"Sci-Fi","series":"The Green Bone Saga 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"512"},{"title":"Jade War","authorFirst":"Fonda","authorLast":"Lee","genre":"Sci-Fi","series":"The Green Bone Saga 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"616"},{"title":"Jade Legacy","authorFirst":"Fonda","authorLast":"Lee","genre":"Sci-Fi","series":"The Green Bone Saga 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"688"},{"title":"Ninefox Gambit","authorFirst":"Yoon Ha","authorLast":"Lee","genre":"Sci-Fi","series":"Machineries of Empire 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"317"},{"title":"Raven Stratagem","authorFirst":"Yoon Ha","authorLast":"Lee","genre":"Sci-Fi","series":"Machineries of Empire 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"400"},{"title":"Revenant Gun","authorFirst":"Yoon Ha","authorLast":"Lee","genre":"Sci-Fi","series":"Machineries of Empire 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"427"},{"title":"Out of the Silent Planet","authorFirst":"C.S.","authorLast":"Lewis","genre":"Sci-Fi","series":"Cosmic Trilogy 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Perelandra","authorFirst":"C.S.","authorLast":"Lewis","genre":"Sci-Fi","series":"Cosmic Trilogy 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Hideous Strength","authorFirst":"C.S.","authorLast":"Lewis","genre":"Sci-Fi","series":"Cosmic Trilogy 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Lion, the Witch, and the Wardrobe","authorFirst":"C.S.","authorLast":"Lewis","genre":"Fantasy","series":"The Chronicles of Narnia 1","owned":"Want","read":"","compDate":"","status":"4 Priority","information":"","pages":"Manual"},{"title":"Prince Caspian","authorFirst":"C.S.","authorLast":"Lewis","genre":"Fantasy","series":"The Chronicles of Narnia 2","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Voyage of the Dawn Treader","authorFirst":"C.S.","authorLast":"Lewis","genre":"Fantasy","series":"The Chronicles of Narnia 3","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Silver Chair","authorFirst":"C.S.","authorLast":"Lewis","genre":"Fantasy","series":"The Chronicles of Narnia 4","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Horse and His Boy","authorFirst":"C.S.","authorLast":"Lewis","genre":"Fantasy","series":"The Chronicles of Narnia 5","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Magician's Nephew","authorFirst":"C.S.","authorLast":"Lewis","genre":"Fantasy","series":"The Chronicles of Narnia 6","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Last Battle","authorFirst":"C.S.","authorLast":"Lewis","genre":"Fantasy","series":"The Chronicles of Narnia 7","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The First Sister","authorFirst":"Linden A.","authorLast":"Lewis","genre":"Sci-Fi/Fantasy","series":"First Sister 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"Manual"},{"title":"The Second Rebel","authorFirst":"Linden A.","authorLast":"Lewis","genre":"Sci-Fi/Fantasy","series":"First Sister 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"512"},{"title":"The Last Hero","authorFirst":"Linden A.","authorLast":"Lewis","genre":"Sci-Fi/Fantasy","series":"First Sister 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Darkly Dreaming Dexter","authorFirst":"Jeff","authorLast":"Lindsay","genre":"Mystery","series":"Dexter 1","owned":"","read":"X","compDate":"1/24/22","status":"","information":"","pages":"304"},{"title":"Dearly Devoted Dexter","authorFirst":"Jeff","authorLast":"Lindsay","genre":"Mystery","series":"Dexter 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"310"},{"title":"Dexter in the Dark","authorFirst":"Jeff","authorLast":"Lindsay","genre":"Mystery","series":"Dexter 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"320"},{"title":"Dexter By Design","authorFirst":"Jeff","authorLast":"Lindsay","genre":"Mystery","series":"Dexter 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"336"},{"title":"Dexter Is Delicious","authorFirst":"Jeff","authorLast":"Lindsay","genre":"Mystery","series":"Dexter 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"351"},{"title":"Double Dexter","authorFirst":"Jeff","authorLast":"Lindsay","genre":"Mystery","series":"Dexter 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"337"},{"title":"Dexter's Final Cut","authorFirst":"Jeff","authorLast":"Lindsay","genre":"Mystery","series":"Dexter 7","owned":"","read":"","compDate":"","status":"","information":"","pages":"368"},{"title":"Dexter Is Dead","authorFirst":"Jeff","authorLast":"Lindsay","genre":"Mystery","series":"Dexter 8","owned":"","read":"","compDate":"","status":"","information":"","pages":"304"},{"title":"The Grace of Kings","authorFirst":"Ken","authorLast":"Liu","genre":"Fantasy","series":"The Dandelion Dynasty 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"640"},{"title":"The Wall of Storms","authorFirst":"Ken","authorLast":"Liu","genre":"Fantasy","series":"The Dandelion Dynasty 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"880"},{"title":"The Veiled Throne","authorFirst":"Ken","authorLast":"Liu","genre":"Fantasy","series":"The Dandelion Dynasty 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Speaking Bones","authorFirst":"Ken","authorLast":"Liu","genre":"Fantasy","series":"The Dandelion Dynasty 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"257"},{"title":"The Ruin of Kings","authorFirst":"Jenn","authorLast":"Lyons","genre":"Epic Fantasy","series":"A Chorus of Dragons 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"576"},{"title":"The Name of All Things","authorFirst":"Jenn","authorLast":"Lyons","genre":"Epic Fantasy","series":"A Chorus of Dragons 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"664"},{"title":"The Memory of Souls","authorFirst":"Jenn","authorLast":"Lyons","genre":"Epic Fantasy","series":"A Chorus of Dragons 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"656"},{"title":"The House of Always","authorFirst":"Jenn","authorLast":"Lyons","genre":"Epic Fantasy","series":"A Chorus of Dragons 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"544"},{"title":"The Discord of Gods","authorFirst":"Jenn","authorLast":"Lyons","genre":"Epic Fantasy","series":"A Chorus of Dragons 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"520"},{"title":"Severance","authorFirst":"Ling","authorLast":"Ma","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"304"},{"title":"House of Earth and Blood","authorFirst":"Sarah","authorLast":"Maas","genre":"Fantasy","series":"Crescent City 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"Manual"},{"title":"A Court of Thorns and Roses","authorFirst":"Sarah J.","authorLast":"Maas","genre":"Fantasy","series":"A Court of Thorns and Roses 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"448"},{"title":"A Court of Mist and Fury","authorFirst":"Sarah J.","authorLast":"Maas","genre":"Fantasy","series":"A Court of Thorns and Roses 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"640"},{"title":"A Court of Wings and Ruin","authorFirst":"Sarah J.","authorLast":"Maas","genre":"Fantasy","series":"A Court of Thorns and Roses 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"723"},{"title":"A Court of Frost and Starlight","authorFirst":"Sarah J.","authorLast":"Maas","genre":"Fantasy","series":"A Court of Thorns and Roses 3.1","owned":"","read":"","compDate":"","status":"","information":"","pages":"262"},{"title":"A Court of Silver Flames","authorFirst":"Sarah J.","authorLast":"Maas","genre":"Fantasy","series":"A Court of Thorns and Roses 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"768"},{"title":"The Assassin's Blade","authorFirst":"Sarah J.","authorLast":"Maas","genre":"Fantasy","series":"Throne of Glass 0.1","owned":"","read":"","compDate":"","status":"","information":"Before 1, or after 3","pages":"462"},{"title":"Throne of Glass","authorFirst":"Sarah J.","authorLast":"Maas","genre":"Fantasy","series":"Throne of Glass 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"432"},{"title":"Crown of Midnight","authorFirst":"Sarah J.","authorLast":"Maas","genre":"Fantasy","series":"Throne of Glass 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"448"},{"title":"Heir of Fire","authorFirst":"Sarah J.","authorLast":"Maas","genre":"Fantasy","series":"Throne of Glass 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"592"},{"title":"Queen of Shadows","authorFirst":"Sarah J.","authorLast":"Maas","genre":"Fantasy","series":"Throne of Glass 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"672"},{"title":"Empire of Storms","authorFirst":"Sarah J.","authorLast":"Maas","genre":"Fantasy","series":"Throne of Glass 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"704"},{"title":"Tower of Dawn","authorFirst":"Sarah J.","authorLast":"Maas","genre":"Fantasy","series":"Throne of Glass 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"679"},{"title":"Kingdom of Ash","authorFirst":"Sarah J.","authorLast":"Maas","genre":"Fantasy","series":"Throne of Glass 7","owned":"","read":"","compDate":"","status":"","information":"","pages":"987"},{"title":"Patient Zero","authorFirst":"Jonathan","authorLast":"Maberry","genre":"Sci-Fi","series":"Joe Legder 01","owned":"","read":"","compDate":"","status":"","information":"","pages":"421"},{"title":"The Dragon Factory","authorFirst":"Jonathan","authorLast":"Maberry","genre":"Sci-Fi","series":"Joe Legder 02","owned":"","read":"","compDate":"","status":"","information":"","pages":"496"},{"title":"The King of Plagues","authorFirst":"Jonathan","authorLast":"Maberry","genre":"Sci-Fi","series":"Joe Legder 03","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Assassins Code","authorFirst":"Jonathan","authorLast":"Maberry","genre":"Sci-Fi","series":"Joe Legder 04","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Extinction Machine","authorFirst":"Jonathan","authorLast":"Maberry","genre":"Sci-Fi","series":"Joe Legder 05","owned":"","read":"","compDate":"","status":"","information":"","pages":"448"},{"title":"Code Zero","authorFirst":"Jonathan","authorLast":"Maberry","genre":"Sci-Fi","series":"Joe Legder 06","owned":"","read":"","compDate":"","status":"","information":"","pages":"480"},{"title":"Predator One","authorFirst":"Jonathan","authorLast":"Maberry","genre":"Sci-Fi","series":"Joe Legder 07","owned":"","read":"","compDate":"","status":"","information":"","pages":"466"},{"title":"Kill Switch","authorFirst":"Jonathan","authorLast":"Maberry","genre":"Sci-Fi","series":"Joe Legder 08","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Dogs of War","authorFirst":"Jonathan","authorLast":"Maberry","genre":"Sci-Fi","series":"Joe Legder 09","owned":"","read":"","compDate":"","status":"","information":"","pages":"544"},{"title":"Deep Silence","authorFirst":"Jonathan","authorLast":"Maberry","genre":"Sci-Fi","series":"Joe Legder 10","owned":"","read":"","compDate":"","status":"","information":"","pages":"468"},{"title":"The Corporation Wars: Dissidence","authorFirst":"Ken","authorLast":"Macleod","genre":"Sci-fi","series":"The Corporation Wars 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"336"},{"title":"The Corporation Wars: Insurgence","authorFirst":"Ken","authorLast":"Macleod","genre":"Sci-fi","series":"The Corporation Wars 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Corporation Wars: Emergence","authorFirst":"Ken","authorLast":"Macleod","genre":"Sci-fi","series":"The Corporation Wars 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"We Ride The Storm","authorFirst":"Devin","authorLast":"Madson","genre":"Fantasy","series":"The Reborn Empire 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"528"},{"title":"We Lie With Death","authorFirst":"Devin","authorLast":"Madson","genre":"Fantasy","series":"The Reborn Empire 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"504"},{"title":"We Cry For Blood","authorFirst":"Devin","authorLast":"Madson","genre":"Fantasy","series":"The Reborn Empire 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"480"},{"title":"A Girl is a Body of Water","authorFirst":"Jennifer Nansubuga","authorLast":"Makumbi","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"505"},{"title":"The Sleepless","authorFirst":"Victor","authorLast":"Manibo","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"A Game of Thrones","authorFirst":"George R. R.","authorLast":"Martin","genre":"Epic Fantasy","series":"A Song of Ice & Fire 1","owned":"Physical","read":"X","compDate":"","status":"","information":"","pages":"802"},{"title":"A Clash of Kings","authorFirst":"George R. R.","authorLast":"Martin","genre":"Epic Fantasy","series":"A Song of Ice & Fire 2","owned":"Physical","read":"X","compDate":"","status":"","information":"","pages":"761"},{"title":"A Storm of Swords","authorFirst":"George R. R.","authorLast":"Martin","genre":"Epic Fantasy","series":"A Song of Ice & Fire 3","owned":"Physical","read":"","compDate":"","status":"","information":"","pages":"988"},{"title":"A Feast for Crows","authorFirst":"George R. R.","authorLast":"Martin","genre":"Epic Fantasy","series":"A Song of Ice & Fire 4","owned":"Physical","read":"","compDate":"","status":"","information":"","pages":"800"},{"title":"A Dance with Dragons","authorFirst":"George R. R.","authorLast":"Martin","genre":"Epic Fantasy","series":"A Song of Ice & Fire 5","owned":"Physical","read":"","compDate":"","status":"","information":"","pages":"1040"},{"title":"The Winds of Winter","authorFirst":"George R. R.","authorLast":"Martin","genre":"Epic Fantasy","series":"A Song of Ice & Fire 6","owned":"","read":"","compDate":"","status":"","information":"Not Released Yet","pages":"Manual"},{"title":"A Dream of Spring","authorFirst":"George R. R.","authorLast":"Martin","genre":"Epic Fantasy","series":"A Song of Ice & Fire 7","owned":"","read":"","compDate":"","status":"","information":"Not Released Yet","pages":"Manual"},{"title":"A Memory Called Empire","authorFirst":"Arkady","authorLast":"Martine","genre":"Sci-Fi","series":"Teixcalaan Series 1","owned":"EPUB","read":"","compDate":"","status":"2 Ready","information":"","pages":"464"},{"title":"A Desolation Called Peace","authorFirst":"Arkady","authorLast":"Martine","genre":"Sci-Fi","series":"Teixcalaan Series 2","owned":"","read":"","compDate":"","status":"2 Ready","information":"","pages":"496"},{"title":"Legacy of the Brightwash","authorFirst":"Krystle","authorLast":"Matar","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"662"},{"title":"Winter's Orbit","authorFirst":"Everina","authorLast":"Maxwell","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"432"},{"title":"Sins of Empire","authorFirst":"Brian","authorLast":"McClellan","genre":"Fantasy","series":"Gods of Blood and Powder 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"640"},{"title":"Wrath of Empire","authorFirst":"Brian","authorLast":"McClellan","genre":"Fantasy","series":"Gods of Blood and Powder 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"688"},{"title":"Blood of Empire","authorFirst":"Brian","authorLast":"McClellan","genre":"Fantasy","series":"Gods of Blood and Powder 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"640"},{"title":"Promise of Blood","authorFirst":"Brian","authorLast":"McClellan","genre":"Fantasy","series":"Powder Mage 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"560"},{"title":"The Crimson Campaign","authorFirst":"Brian","authorLast":"McClellan","genre":"Fantasy","series":"Powder Mage 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Autumn Republic","authorFirst":"Brian","authorLast":"McClellan","genre":"Fantasy","series":"Powder Mage 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"580"},{"title":"The Powder Mage Novella Collection","authorFirst":"Brian","authorLast":"McClellan","genre":"Fantasy","series":"Powder Mage 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Luna: New Moon","authorFirst":"Ian","authorLast":"McDonald","genre":"Sci-Fi","series":"Luna 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Luna: Wolf Moon","authorFirst":"Ian","authorLast":"McDonald","genre":"Sci-Fi","series":"Luna 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"402"},{"title":"Luna: Moon Rising","authorFirst":"Ian","authorLast":"McDonald","genre":"Sci-Fi","series":"Luna 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Machines Like Me","authorFirst":"Ian","authorLast":"McEwan","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"333"},{"title":"Down Among the Sticks and Bones","authorFirst":"Seanan","authorLast":"McGuire","genre":"Fantasy","series":"Wayward Children 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"Series priority","pages":"187"},{"title":"Every Heart a Doorway","authorFirst":"Seanan","authorLast":"McGuire","genre":"Fantasy","series":"Wayward Children 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"176"},{"title":"Beneath the Sugar Sky","authorFirst":"Seanan","authorLast":"McGuire","genre":"Fantasy","series":"Wayward Children 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"188"},{"title":"In An Absent Dream","authorFirst":"Seanan","authorLast":"McGuire","genre":"Fantasy","series":"Wayward Children 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"208"},{"title":"Come Tumbling Down","authorFirst":"Seanan","authorLast":"McGuire","genre":"Fantasy","series":"Wayward Children 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"200"},{"title":"Across the Green Grass Fields","authorFirst":"Seanan","authorLast":"McGuire","genre":"Fantasy","series":"Wayward Children 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"208"},{"title":"Where the Drowned Girls Go","authorFirst":"Seanan","authorLast":"McGuire","genre":"Fantasy","series":"Wayward Children 7","owned":"","read":"","compDate":"","status":"","information":"","pages":"184"},{"title":"Middlegame","authorFirst":"Seanan","authorLast":"McGuire","genre":"Fantasy","series":"","owned":"Kindle","read":"","compDate":"","status":"2 Ready","information":"","pages":"528"},{"title":"The Unwanteds","authorFirst":"Lisa","authorLast":"McMann","genre":"Fantasy","series":"The Unwanteds 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"390"},{"title":"Island of Silence","authorFirst":"Lisa","authorLast":"McMann","genre":"Fantasy","series":"The Unwanteds 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Island of Fire","authorFirst":"Lisa","authorLast":"McMann","genre":"Fantasy","series":"The Unwanteds 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"451"},{"title":"Island of Legends","authorFirst":"Lisa","authorLast":"McMann","genre":"Fantasy","series":"The Unwanteds 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"495"},{"title":"Island of Shipwrecks","authorFirst":"Lisa","authorLast":"McMann","genre":"Fantasy","series":"The Unwanteds 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"452"},{"title":"Island of Graves","authorFirst":"Lisa","authorLast":"McMann","genre":"Fantasy","series":"The Unwanteds 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"514"},{"title":"Island of Dragons","authorFirst":"Lisa","authorLast":"McMann","genre":"Fantasy","series":"The Unwanteds 7","owned":"","read":"","compDate":"","status":"","information":"","pages":"544"},{"title":"Lonesome Dove","authorFirst":"Larry","authorLast":"McMurtry","genre":"Western","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"945"},{"title":"Bite","authorFirst":"K.S.","authorLast":"Merbeth","genre":"Sci-Fi","series":"The Wastelanders 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Raid","authorFirst":"K.S.","authorLast":"Merbeth","genre":"Sci-Fi","series":"The Wastelanders 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"After Steve","authorFirst":"Tripp","authorLast":"Mickle","genre":"Biography","series":"","owned":"","read":"X","compDate":"10/22/22","status":"","information":"","pages":"512"},{"title":"Perdido Street Station","authorFirst":"China","authorLast":"Mieville","genre":"Fantasy","series":"New Crobuzon 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"710"},{"title":"The Scar","authorFirst":"China","authorLast":"Mieville","genre":"Fantasy","series":"New Crobuzon 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"616"},{"title":"Iron Council","authorFirst":"China","authorLast":"Mieville","genre":"Fantasy","series":"New Crobuzon 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"480"},{"title":"Embassytown","authorFirst":"China","authorLast":"Mieville","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"368"},{"title":"The City and the City","authorFirst":"China","authorLast":"Mieville","genre":"Crime","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"390"},{"title":"Circe","authorFirst":"Madeline","authorLast":"Miller","genre":"Fantasy/Greek","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"408"},{"title":"The Song of Achilles","authorFirst":"Madeline","authorLast":"Miller","genre":"Fantasy/Greek","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"388"},{"title":"Torn","authorFirst":"Rowenna","authorLast":"Miller","genre":"Fantasy","series":"The Unravelled Kingdom 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"480"},{"title":"Fray","authorFirst":"Rowenna","authorLast":"Miller","genre":"Fantasy","series":"The Unravelled Kingdom 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"496"},{"title":"Rule","authorFirst":"Rowenna","authorLast":"Miller","genre":"Fantasy","series":"The Unravelled Kingdom 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"432"},{"title":"Ordinary Monsters","authorFirst":"J.M.","authorLast":"Miro","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Battle of the Linguist Mages","authorFirst":"Scotto","authorLast":"Moore","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"448"},{"title":"The Caledonian Gambit","authorFirst":"Dan","authorLast":"Moren","genre":"Sci-Fi","series":"The Galactic Cold War 0","owned":"Kindle","read":"X","compDate":"8/9/24","status":"","information":"","pages":"310"},{"title":"Pilot Error","authorFirst":"Dan","authorLast":"Moren","genre":"Sci-Fi","series":"The Galactic Cold War 0.5","owned":"Kindle","read":"X","compDate":"8/9/24","status":"","information":"","pages":"14"},{"title":"The Bayern Agenda","authorFirst":"Dan","authorLast":"Moren","genre":"Sci-Fi","series":"The Galactic Cold War 1","owned":"Kindle","read":"X","compDate":"8/13/24","status":"","information":"","pages":"382"},{"title":"Showdown","authorFirst":"Dan","authorLast":"Moren","genre":"Sci-Fi","series":"The Galactic Cold War 1.5","owned":"Kindle","read":"X","compDate":"8/14/24","status":"","information":"","pages":"23"},{"title":"The Aleph Extraction","authorFirst":"Dan","authorLast":"Moren","genre":"Sci-Fi","series":"The Galactic Cold War 2","owned":"Kindle","read":"X","compDate":"8/19/24","status":"","information":"","pages":"387"},{"title":"Homecoming","authorFirst":"Dan","authorLast":"Moren","genre":"Sci-Fi","series":"The Galactic Cold War 2.5","owned":"Kindle","read":"X","compDate":"8/19/24","status":"","information":"","pages":"29"},{"title":"The Nova Incident","authorFirst":"Dan","authorLast":"Moren","genre":"Sci-Fi","series":"The Galactic Cold War 3","owned":"Kindle","read":"X","compDate":"8/26/24","status":"","information":"","pages":"408"},{"title":"Sleeping Wolves","authorFirst":"Dan","authorLast":"Moren","genre":"Sci-Fi","series":"The Galactic Cold War 3.5","owned":"Kindle","read":"X","compDate":"9/26/24","status":"","information":"","pages":"42"},{"title":"The Armageddon Protocol","authorFirst":"Dan","authorLast":"Moren","genre":"Sci-Fi","series":"The Galactic Cold War 4","owned":"Kindle","read":"","compDate":"","status":"1 In Progress","information":"","pages":"Manual"},{"title":"Gods of Jade and Shadow","authorFirst":"Silvia","authorLast":"Moreno-Garcia","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"Manual"},{"title":"Mexican Gothic","authorFirst":"Silvia","authorLast":"Moreno-Garcia","genre":"Horror","series":"","owned":"","read":"X","compDate":"8/1/21","status":"","information":"","pages":"320"},{"title":"The Night Circus","authorFirst":"Erin","authorLast":"Morgenstern","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"522"},{"title":"The Starless Sea","authorFirst":"Erin","authorLast":"Morgenstern","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"512"},{"title":"Gideon the Ninth","authorFirst":"Tamsyn","authorLast":"Muir","genre":"Fantasy","series":"The Locked Tomb 1","owned":"EPUB + Physical","read":"X","compDate":"10/24/21","status":"2 Ready","information":"Priority 2024","pages":"448"},{"title":"Harrow the Ninth","authorFirst":"Tamsyn","authorLast":"Muir","genre":"Fantasy","series":"The Locked Tomb 2","owned":"EPUB (Want)","read":"X","compDate":"6/24/22","status":"4 Priority","information":"Priority 2024","pages":"512"},{"title":"Nona the Ninth","authorFirst":"Tamsyn","authorLast":"Muir","genre":"Fantasy","series":"The Locked Tomb 3","owned":"EPUB (Want)","read":"","compDate":"","status":"4 Priority","information":"Priority 2024","pages":"496"},{"title":"Alecto the Ninth","authorFirst":"Tamsyn","authorLast":"Muir","genre":"Fantasy","series":"The Locked Tomb 4","owned":"Want","read":"","compDate":"","status":"4 Priority","information":"Release 2024","pages":"Manual"},{"title":"1Q84","authorFirst":"Haruki","authorLast":"Murakami","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"1051"},{"title":"Girl One","authorFirst":"Sara Flannery","authorLast":"Murphey","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"Manual"},{"title":"First Light","authorFirst":"Linda","authorLast":"Nagata","genre":"Sci-Fi","series":"The Red 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Trials","authorFirst":"Linda","authorLast":"Nagata","genre":"Sci-Fi","series":"The Red 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"456"},{"title":"Going Dark","authorFirst":"Linda","authorLast":"Nagata","genre":"Sci-Fi","series":"The Red 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"464"},{"title":"Dear Edward","authorFirst":"Ann","authorLast":"Napolitano","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"352"},{"title":"Blood of an Exile","authorFirst":"Brian","authorLast":"Naslund","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"440"},{"title":"A History of What Comes Next","authorFirst":"Sylvain","authorLast":"Neuvei","genre":"Historical Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Sleeping Giants","authorFirst":"Sylvain","authorLast":"Neuvel","genre":"Sci-Fi","series":"Themis Files 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"336"},{"title":"Waking Gods","authorFirst":"Sylvain","authorLast":"Neuvel","genre":"Sci-Fi","series":"Themis Files 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"336"},{"title":"Only Human","authorFirst":"Sylvain","authorLast":"Neuvel","genre":"Sci-Fi","series":"Themis Files 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"352"},{"title":"The Test","authorFirst":"Sylvain","authorLast":"Neuvel","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"57"},{"title":"Autonomous","authorFirst":"Annalee","authorLast":"Newitz","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"304"},{"title":"The Future of Another Timeline","authorFirst":"Annalee","authorLast":"Newitz","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"350"},{"title":"The False Prince","authorFirst":"Jennifer A.","authorLast":"Nielsen","genre":"Fantasy","series":"The Ascendance Trilogy 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"342"},{"title":"The Runaway King","authorFirst":"Jennifer A.","authorLast":"Nielsen","genre":"Fantasy","series":"The Ascendance Trilogy 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"352"},{"title":"The Shadow Throne","authorFirst":"Jennifer A.","authorLast":"Nielsen","genre":"Fantasy","series":"The Ascendance Trilogy 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"317"},{"title":"His Majesty's Dragon","authorFirst":"Naomi","authorLast":"Novik","genre":"Fantasy","series":"Temeraire 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"356"},{"title":"Throne of Jade","authorFirst":"Naomi","authorLast":"Novik","genre":"Fantasy","series":"Temeraire 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"400"},{"title":"Black Powder War","authorFirst":"Naomi","authorLast":"Novik","genre":"Fantasy","series":"Temeraire 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"352"},{"title":"Empire of Ivory","authorFirst":"Naomi","authorLast":"Novik","genre":"Fantasy","series":"Temeraire 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"Victory of Eagles","authorFirst":"Naomi","authorLast":"Novik","genre":"Fantasy","series":"Temeraire 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"352"},{"title":"Tongues of Serpents","authorFirst":"Naomi","authorLast":"Novik","genre":"Fantasy","series":"Temeraire 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Crucible of Gold","authorFirst":"Naomi","authorLast":"Novik","genre":"Fantasy","series":"Temeraire 7","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Blood of Tyrants","authorFirst":"Naomi","authorLast":"Novik","genre":"Fantasy","series":"Temeraire 8","owned":"","read":"","compDate":"","status":"","information":"","pages":"431"},{"title":"League of Dragons","authorFirst":"Naomi","authorLast":"Novik","genre":"Fantasy","series":"Temeraire 9","owned":"","read":"","compDate":"","status":"","information":"","pages":"414"},{"title":"Ark Royal","authorFirst":"Christopher","authorLast":"Nuttall","genre":"Sci-Fi","series":"Ark Royal 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Nelson Touch","authorFirst":"Christopher","authorLast":"Nuttall","genre":"Sci-Fi","series":"Ark Royal 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Trafalgar Gambit","authorFirst":"Christopher","authorLast":"Nuttall","genre":"Sci-Fi","series":"Ark Royal 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"398"},{"title":"The Proposal Game","authorFirst":"Megan E.","authorLast":"O'Keefe","genre":"Fantasy","series":"Scorched Continent 0.5","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Steal the Sky","authorFirst":"Megan E.","authorLast":"O'Keefe","genre":"Fantasy","series":"Scorched Continent 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Break the Chains","authorFirst":"Megan E.","authorLast":"O'Keefe","genre":"Fantasy","series":"Scorched Continent 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Inherit the Flame","authorFirst":"Megan E.","authorLast":"O'Keefe","genre":"Fantasy","series":"Scorched Continent 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Blighted Stars","authorFirst":"Megan E.","authorLast":"O'Keefe","genre":"Sci-Fi","series":"The Devoured Worlds 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Fractured Dark","authorFirst":"Megan E.","authorLast":"O'Keefe","genre":"Sci-Fi","series":"The Devoured Worlds 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Bound Worlds","authorFirst":"Megan E.","authorLast":"O'Keefe","genre":"Sci-Fi","series":"The Devoured Worlds 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Velocity Weapon","authorFirst":"Megan E.","authorLast":"O'Keefe","genre":"Sci-Fi","series":"The Protectorate 1","owned":"Kindle","read":"","compDate":"","status":"2 Ready","information":"","pages":"Manual"},{"title":"Chaos Vector","authorFirst":"Megan E.","authorLast":"O'Keefe","genre":"Sci-Fi","series":"The Protectorate 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Catalyst Gate","authorFirst":"Megan E.","authorLast":"O'Keefe","genre":"Sci-Fi","series":"The Protectorate 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"A Promised Land","authorFirst":"Barack","authorLast":"Obama","genre":"Autobiography","series":"","owned":"","read":"X","compDate":"4/6/21","status":"","information":"","pages":"928"},{"title":"Binti","authorFirst":"Nenedi","authorLast":"Okorafor","genre":"Sci-Fi","series":"Binti 1","owned":"Kindle","read":"X","compDate":"7/15/20","status":"","information":"","pages":"96"},{"title":"Binti: Home","authorFirst":"Nenedi","authorLast":"Okorafor","genre":"Sci-Fi","series":"Binti 2","owned":"Kindle","read":"X","compDate":"7/19/20","status":"","information":"","pages":"176"},{"title":"Binti: The Night Masquerade","authorFirst":"Nenedi","authorLast":"Okorafor","genre":"Sci-Fi","series":"Binti 3","owned":"Kindle","read":"X","compDate":"7/23/20","status":"","information":"","pages":"208"},{"title":"Akata Witch","authorFirst":"Nnedi","authorLast":"Okorafor","genre":"Sci-Fi","series":"Akata Witch 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"352"},{"title":"Akata Warrior","authorFirst":"Nnedi","authorLast":"Okorafor","genre":"Sci-Fi","series":"Akata Witch 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"455"},{"title":"The Book of Phoenix","authorFirst":"Nnedi","authorLast":"Okorafor","genre":"Sci-Fi","series":"Who Fears Death 0.5","owned":"","read":"","compDate":"","status":"","information":"","pages":"240"},{"title":"Who Fears Death","authorFirst":"Nnedi","authorLast":"Okorafor","genre":"Sci-Fi","series":"Who Fears Death 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"401"},{"title":"Lagoon","authorFirst":"Nnedi","authorLast":"Okorafor","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"306"},{"title":"Noor","authorFirst":"Nnedi","authorLast":"Okorafor","genre":"Sci-Fi","series":"","owned":"","read":"X","compDate":"2/19/23","status":"","information":"","pages":"224"},{"title":"Remote Control","authorFirst":"Nnedi","authorLast":"Okorafor","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"160"},{"title":"Miss Percy's Pocket Guide to the Care and Feeding of British Dragons","authorFirst":"Quenby","authorLast":"Olson","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Goliath","authorFirst":"Tochi","authorLast":"Onyebuchi","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"7/25/22","status":"7 Abandoned","information":"Very slow pace","pages":"336"},{"title":"Riot Baby","authorFirst":"Tochi","authorLast":"Onyebuchi","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"1984","authorFirst":"George","authorLast":"Orwell","genre":"Sci-Fi/Classic","series":"","owned":"Physical","read":"","compDate":"","status":"","information":"","pages":"72"},{"title":"Animal Farm","authorFirst":"George","authorLast":"Orwell","genre":"Sci-Fi/Classic","series":"","owned":"Physical","read":"","compDate":"","status":"","information":"","pages":"128"},{"title":"Finder","authorFirst":"Suzanne","authorLast":"Palmer","genre":"Sci-Fi","series":"Finder Chronicles 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"1"},{"title":"Driving the Deep","authorFirst":"Suzanne","authorLast":"Palmer","genre":"Sci-Fi","series":"Finder Chronicles 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"The Scavenger Door","authorFirst":"Suzanne","authorLast":"Palmer","genre":"Sci-Fi","series":"Finder Chronicles 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"233"},{"title":"Eragon","authorFirst":"Christopher","authorLast":"Paolini","genre":"Fantasy","series":"Inheritance Cycle 1","owned":"","read":"X","compDate":"10/29/24","status":"","information":"","pages":"576"},{"title":"Eldest","authorFirst":"Christopher","authorLast":"Paolini","genre":"Fantasy","series":"Inheritance Cycle 2","owned":"","read":"X","compDate":"11/6/24","status":"","information":"","pages":"704"},{"title":"Brisingr","authorFirst":"Christopher","authorLast":"Paolini","genre":"Fantasy","series":"Inheritance Cycle 3","owned":"","read":"X","compDate":"11/8/24","status":"","information":"","pages":"784"},{"title":"Inheritance","authorFirst":"Christopher","authorLast":"Paolini","genre":"Fantasy","series":"Inheritance Cycle 4","owned":"","read":"X","compDate":"11/10/24","status":"","information":"","pages":"849"},{"title":"Murtagh","authorFirst":"Christopher","authorLast":"Paolini","genre":"Fantasy","series":"Inheritance Cycle 5","owned":"","read":"`","compDate":"","status":"1 In Progress","information":"","pages":"784"},{"title":"To Sleep in a Sea of Stars","authorFirst":"Christopher","authorLast":"Paolini","genre":"Sci-Fi","series":"","owned":"","read":"X","compDate":"5/7/21","status":"","information":"","pages":"848"},{"title":"She Who Became the Sun","authorFirst":"Shelley","authorLast":"Parker-Chan","genre":"Fantasy","series":"The Radiant Emperor 1","owned":"EPUB","read":"","compDate":"","status":"2 Ready","information":"","pages":"Manual"},{"title":"He Who Drowned The World","authorFirst":"Shelley","authorLast":"Parker-Chan","genre":"Fantasy","series":"The Radiant Emperor 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Child of the Night Guild","authorFirst":"Andy","authorLast":"Peloquin","genre":"Fantasy","series":"Queen of Thieves 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"381"},{"title":"Thief of the Night Guild","authorFirst":"Andy","authorLast":"Peloquin","genre":"Fantasy","series":"Queen of Thieves 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Queen of the Night Guild","authorFirst":"Andy","authorLast":"Peloquin","genre":"Fantasy","series":"Queen of Thieves 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"A Declaration of the Rights of Magicians","authorFirst":"H.G.","authorLast":"Perry","genre":"Fantasy","series":"The Shadow Histories 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"A Radical Act of Free Magic","authorFirst":"H.G.","authorLast":"Perry","genre":"Fantasy","series":"The Shadow Histories 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Old Man","authorFirst":"Thomas","authorLast":"Perry","genre":"Thriller","series":"","owned":"EPUB","read":"","compDate":"","status":"2 Ready","information":"","pages":"337"},{"title":"Embers of War","authorFirst":"Gareth L.","authorLast":"Powell","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"206"},{"title":"Good Omens","authorFirst":"Terry","authorLast":"Pratchett","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"400"},{"title":"The Profession","authorFirst":"Steven","authorLast":"Pressfield","genre":"Thriller","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"320"},{"title":"The Nobody People","authorFirst":"Bob","authorLast":"Proehl","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Golden Compass","authorFirst":"Philip","authorLast":"Pullman","genre":"Fantasy","series":"His Dark Materials 1","owned":"Physical","read":"X","compDate":"2018","status":"","information":"","pages":"80"},{"title":"The Subtle Knife","authorFirst":"Philip","authorLast":"Pullman","genre":"Fantasy","series":"His Dark Materials 2","owned":"Physical","read":"X","compDate":"2018","status":"","information":"","pages":"351"},{"title":"The Amber Spyglass","authorFirst":"Philip","authorLast":"Pullman","genre":"Fantasy","series":"His Dark Materials 3","owned":"Physical","read":"X","compDate":"2018","status":"","information":"","pages":"544"},{"title":"The Quantum Thief","authorFirst":"Hannu","authorLast":"Rajaniemi","genre":"Sci-Fi","series":"Jean le Flambeur 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Fractal Prince","authorFirst":"Hannu","authorLast":"Rajaniemi","genre":"Sci-Fi","series":"Jean le Flambeur 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"320"},{"title":"The Casual Angel","authorFirst":"Hannu","authorLast":"Rajaniemi","genre":"Sci-Fi","series":"Jean le Flambeur 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Sisters of the Vast Black","authorFirst":"Lina","authorLast":"Rather","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"89"},{"title":"The Prefect","authorFirst":"Alastair","authorLast":"Reynolds","genre":"Sci-Fi","series":"Revelation Space 0.1","owned":"","read":"","compDate":"","status":"","information":"","pages":"464"},{"title":"Elysium Fire","authorFirst":"Alastair","authorLast":"Reynolds","genre":"Sci-Fi","series":"Revelation Space 0.2","owned":"","read":"","compDate":"","status":"","information":"","pages":"432"},{"title":"Chasm City","authorFirst":"Alastair","authorLast":"Reynolds","genre":"Sci-Fi","series":"Revelation Space 0.3","owned":"","read":"","compDate":"","status":"","information":"","pages":"608"},{"title":"Revelation Space","authorFirst":"Alastair","authorLast":"Reynolds","genre":"Sci-Fi","series":"Revelation Space 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"560"},{"title":"Redemption Ark","authorFirst":"Alastair","authorLast":"Reynolds","genre":"Sci-Fi","series":"Revelation Space 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"592"},{"title":"Absolution Gap","authorFirst":"Alastair","authorLast":"Reynolds","genre":"Sci-Fi","series":"Revelation Space 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"632"},{"title":"Ruination","authorFirst":"Anthony","authorLast":"Reynolds","genre":"Fantasy","series":"League of Legends","owned":"Kindle","read":"X","compDate":"1/4/2023","status":"","information":"","pages":"448"},{"title":"The Thousand Deaths of Ardor Benn","authorFirst":"Tyler","authorLast":"Rhitesides","genre":"Fantasy","series":"Kingdom of Grit 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Shattered Realm of Ardor Benn","authorFirst":"Tyler","authorLast":"Rhitesides","genre":"Fantasy","series":"Kingdom of Grit 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Last Lies of Ardor Benn","authorFirst":"Tyler","authorLast":"Rhitesides","genre":"Fantasy","series":"Kingdom of Grit 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Gutter Child","authorFirst":"Jael","authorLast":"Richardson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"384"},{"title":"The Atlantis Gene","authorFirst":"A.G.","authorLast":"Riddle","genre":"Thriller","series":"The Origin Mystery 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Atlantis Plague","authorFirst":"A.G.","authorLast":"Riddle","genre":"Thriller","series":"The Origin Mystery 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Atlantis World","authorFirst":"A.G.","authorLast":"Riddle","genre":"Thriller","series":"The Origin Mystery 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Lightning Thief","authorFirst":"Rick","authorLast":"Riordan","genre":"Fantasy","series":"Percy Jackson & the Olympians 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"381"},{"title":"The Sea of Monsters","authorFirst":"Rick","authorLast":"Riordan","genre":"Fantasy","series":"Percy Jackson & the Olympians 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"279"},{"title":"The Titan's Curse","authorFirst":"Rick","authorLast":"Riordan","genre":"Fantasy","series":"Percy Jackson & the Olympians 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"304"},{"title":"The Battle of the Labyrinth","authorFirst":"Rick","authorLast":"Riordan","genre":"Fantasy","series":"Percy Jackson & the Olympians 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"349"},{"title":"The Last Olympian","authorFirst":"Rick","authorLast":"Riordan","genre":"Fantasy","series":"Percy Jackson & the Olympians 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"381"},{"title":"The Lost Hero","authorFirst":"Rick","authorLast":"Riordan","genre":"Fantasy","series":"The Heroes of Olympus 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"553"},{"title":"The Son of Neptune","authorFirst":"Rick","authorLast":"Riordan","genre":"Fantasy","series":"The Heroes of Olympus 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"513"},{"title":"The Mark of Athena","authorFirst":"Rick","authorLast":"Riordan","genre":"Fantasy","series":"The Heroes of Olympus 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"605"},{"title":"The House of Hades","authorFirst":"Rick","authorLast":"Riordan","genre":"Fantasy","series":"The Heroes of Olympus 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"605"},{"title":"The Blood of Olympus","authorFirst":"Rick","authorLast":"Riordan","genre":"Fantasy","series":"The Heroes of Olympus 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"538"},{"title":"The Red Pyramid","authorFirst":"Rick","authorLast":"Riordan","genre":"Fantasy","series":"The Kane Chronicles 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"544"},{"title":"The Throne of Fire","authorFirst":"Rick","authorLast":"Riordan","genre":"Fantasy","series":"The Kane Chronicles 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"464"},{"title":"The Serpent's Shadow","authorFirst":"Rick","authorLast":"Riordan","genre":"Fantasy","series":"The Kane Chronicles 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"455"},{"title":"32 Yolks: From My Mother's Table to Working the Line","authorFirst":"Eric","authorLast":"Ripert","genre":"Autobiography","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"Manual"},{"title":"Black Sun","authorFirst":"Rebecca","authorLast":"Roanhorse","genre":"Fantasy","series":"Between Earth and Sky 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"464"},{"title":"Trail of Lightning","authorFirst":"Rebecca","authorLast":"Roanhorse","genre":"Sci-Fi","series":"Sixth World 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"287"},{"title":"Storm of Locusts","authorFirst":"Rebecca","authorLast":"Roanhorse","genre":"Sci-Fi","series":"Sixth World 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"320"},{"title":"2312","authorFirst":"Kim Stanley","authorLast":"Robinson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"608"},{"title":"Aurora","authorFirst":"Kim Stanley","authorLast":"Robinson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"466"},{"title":"New York 2140","authorFirst":"Kim Stanley","authorLast":"Robinson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"656"},{"title":"Drunk on All Your Strange New Words","authorFirst":"Eddie","authorLast":"Robson","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Starless Crown","authorFirst":"James","authorLast":"Rollins","genre":"Fantasy","series":"Moon Fall 1","owned":"EPUB","read":"","compDate":"","status":"2 Ready","information":"","pages":"Manual"},{"title":"The Cradle of Ice","authorFirst":"James","authorLast":"Rollins","genre":"Fantasy","series":"Moon Fall 2","owned":"EPUB","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Into the Stars","authorFirst":"James","authorLast":"Rosone","genre":"Sci-Fi","series":"Rise of the Republic 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"407"},{"title":"Into the Battle","authorFirst":"James","authorLast":"Rosone","genre":"Sci-Fi","series":"Rise of the Republic 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Into the War","authorFirst":"James","authorLast":"Rosone","genre":"Sci-Fi","series":"Rise of the Republic 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"280"},{"title":"Into the Chaos","authorFirst":"James","authorLast":"Rosone","genre":"Sci-Fi","series":"Rise of the Republic 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Into the Fire","authorFirst":"James","authorLast":"Rosone","genre":"Sci-Fi","series":"Rise of the Republic 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"319"},{"title":"Into the Calm","authorFirst":"James","authorLast":"Rosone","genre":"Sci-Fi","series":"Rise of the Republic 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Into the Breach","authorFirst":"James","authorLast":"Rosone","genre":"Sci-Fi","series":"Rise of the Republic 7","owned":"","read":"","compDate":"","status":"","information":"","pages":"287"},{"title":"The Name of the Wind","authorFirst":"Patrick","authorLast":"Rothfuss","genre":"Fantasy","series":"Kingkiller Chronicle 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"722"},{"title":"The Wise Man's Fear","authorFirst":"Patrick","authorLast":"Rothfuss","genre":"Fantasy","series":"Kingkiller Chronicle 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"1008"},{"title":"Doors of Stone","authorFirst":"Patrick","authorLast":"Rothfuss","genre":"Fantasy","series":"Kingkiller Chronicle 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Guncle","authorFirst":"Steven","authorLast":"Rowley","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"336"},{"title":"Harry Potter and the Sorcerer's Stone","authorFirst":"J.K.","authorLast":"Rowling","genre":"Fantasy","series":"Harry Potter 1","owned":"","read":"X","compDate":"","status":"","information":"","pages":"16"},{"title":"Harry Potter and the Chamber of Secrets","authorFirst":"J.K.","authorLast":"Rowling","genre":"Fantasy","series":"Harry Potter 2","owned":"","read":"X","compDate":"","status":"","information":"","pages":"340"},{"title":"Harry Potter and the Prisoner of Azkaban","authorFirst":"J.K.","authorLast":"Rowling","genre":"Fantasy","series":"Harry Potter 3","owned":"","read":"X","compDate":"","status":"","information":"","pages":"416"},{"title":"Harry Potter and the Goblet of Fire","authorFirst":"J.K.","authorLast":"Rowling","genre":"Fantasy","series":"Harry Potter 4","owned":"","read":"X","compDate":"","status":"","information":"","pages":"672"},{"title":"Harry Potter and the Order of the Phoenix","authorFirst":"J.K.","authorLast":"Rowling","genre":"Fantasy","series":"Harry Potter 5","owned":"","read":"X","compDate":"","status":"","information":"","pages":"893"},{"title":"Harry Potter and the Half-Blood Prince","authorFirst":"J.K.","authorLast":"Rowling","genre":"Fantasy","series":"Harry Potter 6","owned":"","read":"X","compDate":"","status":"","information":"","pages":"652"},{"title":"Harry Potter and the Deathly Hallows","authorFirst":"J.K.","authorLast":"Rowling","genre":"Fantasy","series":"Harry Potter 7","owned":"","read":"X","compDate":"","status":"","information":"","pages":"701"},{"title":"Empire of Silence","authorFirst":"Christopher","authorLast":"Ruocchio","genre":"Sci-Fi","series":"Sun Eater 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"612"},{"title":"Howling Dark","authorFirst":"Christopher","authorLast":"Ruocchio","genre":"Sci-Fi","series":"Sun Eater 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"688"},{"title":"Demon in White","authorFirst":"Christopher","authorLast":"Ruocchio","genre":"Sci-Fi","series":"Sun Eater 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"560"},{"title":"WASP","authorFirst":"Eric Frank","authorLast":"Russell","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"176"},{"title":"Scarlet Odyssey","authorFirst":"C.T.","authorLast":"Rwizi","genre":"Fantasy","series":"Scarlet Odyssey 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Requiem Moon","authorFirst":"C.T.","authorLast":"Rwizi","genre":"Fantasy","series":"Scarlet Odyssey 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Wolf's Call","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"A Raven's Blade 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"448"},{"title":"The Black Song","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"A Raven's Blade 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"448"},{"title":"Blood Song","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"A Raven's Shadow 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"297"},{"title":"Tower Lord","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"A Raven's Shadow 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"605"},{"title":"Queen of Fire","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"A Raven's Shadow 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"656"},{"title":"A Pilgrimage of Swords","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"Seven Swords 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"128"},{"title":"Kraken's Tooth","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"Seven Swords 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"136"},{"title":"Slab City Blues","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"Slab City Blues 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"432"},{"title":"A Song for Madame Choi","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"Slab City Blues 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"A Hymn to Gods Long Dead","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"Slab City Blues 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Ballad of Bad Jack","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"Slab City Blues 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"An Aria for Ragnarok","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"Slab City Blues 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Pariah","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"The Covenant of Steel 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"581"},{"title":"The Martyr","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"The Covenant of Steel 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"552"},{"title":"The Waking Fire","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"The Draconis Memoria Trilogy 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"582"},{"title":"The Legion of Flame","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"The Draconis Memoria Trilogy 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"575"},{"title":"The Empire of Ashes","authorFirst":"Anthony","authorLast":"Ryan","genre":"Fantasy","series":"The Draconis Memoria Trilogy 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"568"},{"title":"Contact","authorFirst":"Carl","authorLast":"Sagan","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"432"},{"title":"Ariadne","authorFirst":"Jennifer","authorLast":"Saint","genre":"Fantasy/Greek","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"320"},{"title":"Elantris","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"Cosmere","owned":"Want","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"638"},{"title":"The Sunlit Man","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"Cosmere","owned":"Want","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"400"},{"title":"Tress of the Emerald Sea","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"Cosmere","owned":"Want","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"443"},{"title":"Yumi and the Nightmare Painter","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"Cosmere","owned":"Want","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"384"},{"title":"Arcanum Unbounded","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"Cosmese","owned":"Physical","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"672"},{"title":"Mistborn: The Final Empire","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Epic Fantasy","series":"Mistborn 01, Era One, Cosmere","owned":"Want","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"Manual"},{"title":"Mistborn: The Well of Ascension","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Epic Fantasy","series":"Mistborn 02, Era One, Cosmere","owned":"Want","read":"","compDate":"","status":"","information":"Priority 2024","pages":"Manual"},{"title":"Mistborn: The Hero of Ages","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Epic Fantasy","series":"Mistborn 03, Era One, Cosmere","owned":"Want","read":"","compDate":"","status":"","information":"Priority 2024","pages":"Manual"},{"title":"Mistborn: The Alloy of Law","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Epic Fantasy","series":"Mistborn 04, Era Two, Cosmere","owned":"Want","read":"","compDate":"","status":"","information":"Priority 2024","pages":"Manual"},{"title":"Mistborn: Shadows of Self","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Epic Fantasy","series":"Mistborn 05, Era Two, Cosmere","owned":"Want","read":"","compDate":"","status":"","information":"Priority 2024","pages":"Manual"},{"title":"Mistborn: The Bands of Mourning","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Epic Fantasy","series":"Mistborn 06, Era Two, Cosmere","owned":"Want","read":"","compDate":"","status":"","information":"Priority 2024","pages":"Manual"},{"title":"Mistborn: Secret History","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Epic Fantasy","series":"Mistborn 07, Era One, Cosmere","owned":"Want","read":"","compDate":"","status":"","information":"Priority 2024","pages":"Manual"},{"title":"Mistborn: The Lost Metal","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Epic Fantasy","series":"Mistborn 08, Era Two, Cosmere","owned":"Want","read":"","compDate":"","status":"","information":"Priority 2024","pages":"Manual"},{"title":"Mistborn: Era Three - Book One","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Epic Fantasy","series":"Mistborn 09, Era Three, Cosmere","owned":"Want","read":"","compDate":"","status":"","information":"Expected 2025","pages":"Manual"},{"title":"Mistborn: Era Three - Book Two","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Epic Fantasy","series":"Mistborn 10, Era Three, Cosmere","owned":"Want","read":"","compDate":"","status":"","information":"Not Released Yet","pages":"Manual"},{"title":"Mistborn: Era Three - Book Three","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Epic Fantasy","series":"Mistborn 11, Era Three, Cosmere","owned":"Want","read":"","compDate":"","status":"","information":"Not Released Yet","pages":"Manual"},{"title":"Defending Elysium","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Sci-Fi","series":"Skyward 0.5","owned":"","read":"","compDate":"","status":"","information":"","pages":"160"},{"title":"Skyward","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Sci-Fi","series":"Skyward 1","owned":"","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"528"},{"title":"Starsight","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Sci-Fi","series":"Skyward 2","owned":"","read":"","compDate":"","status":"","information":"Priority 2024","pages":"480"},{"title":"Cytonic","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Sci-Fi","series":"Skyward 3","owned":"","read":"","compDate":"","status":"","information":"Priority 2024","pages":"432"},{"title":"Defiant","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Sci-Fi","series":"Skyward 4","owned":"","read":"","compDate":"","status":"","information":"Priority 2024","pages":"480"},{"title":"Sunreach","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Sci-Fi","series":"Skyward Flight 1","owned":"","read":"","compDate":"","status":"","information":"Priority 2024","pages":"Manual"},{"title":"Redawn","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Sci-Fi","series":"Skyward Flight 2","owned":"","read":"","compDate":"","status":"","information":"Priority 2024","pages":"Manual"},{"title":"Evershore","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Sci-Fi","series":"Skyward Flight 3","owned":"","read":"","compDate":"","status":"","information":"Priority 2024","pages":"234"},{"title":"Steelheart","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"The Reckoners 1","owned":"","read":"","compDate":"","status":"","information":"Priority 2024","pages":"416"},{"title":"Firefight","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"The Reckoners 2","owned":"","read":"","compDate":"","status":"","information":"Priority 2024","pages":"452"},{"title":"Calamity","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"The Reckoners 3","owned":"","read":"","compDate":"","status":"","information":"Priority 2024","pages":"431"},{"title":"The Way of Kings","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"The Stormlight Archive 01, Cosmere","owned":"Physical / EPUB","read":"X","compDate":"11/19/23","status":"","information":"","pages":"1008"},{"title":"Words of Radiance","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"The Stormlight Archive 02, Cosmere","owned":"Physical / EPUB","read":"X","compDate":"11/30/23","status":"","information":"","pages":"1088"},{"title":"Edgedancer","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"The Stormlight Archive 02.5, Cosmere","owned":"EPUB (Want)","read":"X","compDate":"12/3/23","status":"","information":"","pages":"249"},{"title":"Oathbringer","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"The Stormlight Archive 03, Cosmere","owned":"Physical / EPUB","read":"X","compDate":"12/16/23","status":"","information":"","pages":"1214"},{"title":"Dawnshard","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"The Stormlight Archive 03.5, Cosmere","owned":"EPUB (Want)","read":"X","compDate":"12/31/23","status":"","information":"","pages":"227"},{"title":"Rhythm of War","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"The Stormlight Archive 04, Cosmere","owned":"Physical / EPUB","read":"X","compDate":"1/31/24","status":"","information":"","pages":"1088"},{"title":"Horneater","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"The Stormlight Archive 04.5, Cosmere","owned":"Want","read":"","compDate":"","status":"","information":"Release 2025","pages":"Manual"},{"title":"Wind and Truth","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"The Stormlight Archive 05, Cosmere","owned":"Want","read":"","compDate":"","status":"4 Priority","information":"Priority 2024 - Release Dec 6 2024","pages":"1232"},{"title":"Book 6","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"The Stormlight Archive 06, Cosmere","owned":"","read":"","compDate":"","status":"","information":"Unreleased","pages":"Manual"},{"title":"Book 7","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"The Stormlight Archive 07, Cosmere","owned":"","read":"","compDate":"","status":"","information":"Unreleased","pages":"Manual"},{"title":"Book 8","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"The Stormlight Archive 08, Cosmere","owned":"","read":"","compDate":"","status":"","information":"Unreleased","pages":"Manual"},{"title":"Book 9","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"The Stormlight Archive 09, Cosmere","owned":"","read":"","compDate":"","status":"","information":"Unreleased","pages":"Manual"},{"title":"Book 10","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"The Stormlight Archive 10, Cosmere","owned":"","read":"","compDate":"","status":"","information":"Unreleased","pages":"Manual"},{"title":"Warbreaker","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy","series":"Warbreaker 1","owned":"EPUB (Want)","read":"X","compDate":"10/27/24","status":"","information":"","pages":"605"},{"title":"White Sand I","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy/Graphic Novel","series":"White Sand 1, Cosmere","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"White Sand II","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy/Graphic Novel","series":"White Sand 2, Cosmere","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"White Sand III","authorFirst":"Brandon","authorLast":"Sanderson","genre":"Fantasy/Graphic Novel","series":"White Sand 3, Cosmere","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Last Wish","authorFirst":"Andrzej","authorLast":"Sapkowski","genre":"Fantasy","series":"The Witcher 1","owned":"Want","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"352"},{"title":"Sword of Destiny","authorFirst":"Andrzej","authorLast":"Sapkowski","genre":"Fantasy","series":"The Witcher 2","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"384"},{"title":"Blood of Elves","authorFirst":"Andrzej","authorLast":"Sapkowski","genre":"Fantasy","series":"The Witcher 3","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Time of Contempt","authorFirst":"Andrzej","authorLast":"Sapkowski","genre":"Fantasy","series":"The Witcher 4","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Baptism of Fire","authorFirst":"Andrzej","authorLast":"Sapkowski","genre":"Fantasy","series":"The Witcher 5","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"371"},{"title":"The Tower of the Swallow","authorFirst":"Andrzej","authorLast":"Sapkowski","genre":"Fantasy","series":"The Witcher 6","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"443"},{"title":"The Lady of the Lake","authorFirst":"Andrzej","authorLast":"Sapkowski","genre":"Fantasy","series":"The Witcher 7","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Season of Storms","authorFirst":"Andrzej","authorLast":"Sapkowski","genre":"Fantasy","series":"The Witcher 8","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"400"},{"title":"Pariah","authorFirst":"Jamie","authorLast":"Sawyer","genre":"Sci-Fi","series":"The Eternity War 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Exodus","authorFirst":"Jamie","authorLast":"Sawyer","genre":"Sci-Fi","series":"The Eternity War 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Dominion","authorFirst":"Jamie","authorLast":"Sawyer","genre":"Sci-Fi","series":"The Eternity War 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Lock In","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi/Police","series":"Lock In 1","owned":"Want","read":"X","compDate":"1/31/21","status":"","information":"","pages":"336"},{"title":"Head On","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi/Police","series":"Lock In 2","owned":"Want","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"335"},{"title":"Unlocked","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi/Police","series":"Lock In 3","owned":"Want","read":"","compDate":"","status":"","information":"","pages":"119"},{"title":"Old Man's War","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi/Military","series":"Old Man's War 1","owned":"Want","read":"X","compDate":"","status":"","information":"","pages":"318"},{"title":"The Ghost Brigades","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi/Military","series":"Old Man's War 2","owned":"Want","read":"X","compDate":"","status":"","information":"","pages":"384"},{"title":"The Last Colony","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi/Military","series":"Old Man's War 3","owned":"Want","read":"X","compDate":"","status":"","information":"","pages":"328"},{"title":"Zoe's Tale","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi/Military","series":"Old Man's War 4","owned":"Want","read":"X","compDate":"","status":"","information":"","pages":"320"},{"title":"The Human Division","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi/Military","series":"Old Man's War 5","owned":"Want","read":"X","compDate":"","status":"","information":"","pages":"431"},{"title":"The End of All Things","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi/Military","series":"Old Man's War 6","owned":"Want","read":"","compDate":"","status":"4 Priority","information":"","pages":"384"},{"title":"The Collapsing Empire","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi/Space Opera","series":"The Interdependency 1","owned":"Want","read":"X","compDate":"12/23/21","status":"","information":"","pages":"336"},{"title":"The Consuming Fire","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi/Space Opera","series":"The Interdependency 2","owned":"Want","read":"X","compDate":"2/24/22","status":"","information":"","pages":"316"},{"title":"The Last Emperox","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi/Space Opera","series":"The Interdependency 3","owned":"Want","read":"X","compDate":"2/26/22","status":"","information":"","pages":"320"},{"title":"Agent to the Stars","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"327"},{"title":"Fuzzy Nation","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi","series":"","owned":"Want","read":"X","compDate":"","status":"","information":"","pages":"303"},{"title":"Redshirts","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi","series":"","owned":"Want","read":"X","compDate":"9/12/23","status":"","information":"","pages":"386"},{"title":"Starter Villain","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi","series":"","owned":"Physical","read":"X","compDate":"4/5/24","status":"","information":"","pages":"264"},{"title":"The Android Dream","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"400"},{"title":"The Kaiju Preservation Society","authorFirst":"John","authorLast":"Scalzi","genre":"Sci-Fi","series":"","owned":"Want","read":"X","compDate":"3/23/22","status":"","information":"","pages":"272"},{"title":"Heart of Mist","authorFirst":"Helen","authorLast":"Scheuerer","genre":"Fantasy","series":"Oremere Chronicles 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"488"},{"title":"Reign of Mist","authorFirst":"Helen","authorLast":"Scheuerer","genre":"Fantasy","series":"Oremere Chronicles 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"552"},{"title":"War of Mist","authorFirst":"Helen","authorLast":"Scheuerer","genre":"Fantasy","series":"Oremere Chronicles 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"517"},{"title":"Chrome Mountain","authorFirst":"Ben","authorLast":"Schneider","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Vicious","authorFirst":"V. E.","authorLast":"Schwab","genre":"Fantasy","series":"Villains 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"384"},{"title":"Vengeful","authorFirst":"V. E.","authorLast":"Schwab","genre":"Fantasy","series":"Villains 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"496"},{"title":"The Invisible Life of Addie Larue","authorFirst":"V. E.","authorLast":"Schwab","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"480"},{"title":"A Darker Shade of Magic","authorFirst":"V.E.","authorLast":"Schwab","genre":"Fantasy","series":"Shades of Magic 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"400"},{"title":"A Gathering of Shadows","authorFirst":"V.E.","authorLast":"Schwab","genre":"Fantasy","series":"Shades of Magic 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"528"},{"title":"A Conjuring of Light","authorFirst":"V.E.","authorLast":"Schwab","genre":"Fantasy","series":"Shades of Magic 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"680"},{"title":"The Alchemyst","authorFirst":"Michael","authorLast":"Scott","genre":"Fantasy","series":"The Secrets of the Immortal Nicholas Flamel 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"392"},{"title":"The Magician","authorFirst":"Michael","authorLast":"Scott","genre":"Fantasy","series":"The Secrets of the Immortal Nicholas Flamel 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"256"},{"title":"The Sorceress","authorFirst":"Michael","authorLast":"Scott","genre":"Fantasy","series":"The Secrets of the Immortal Nicholas Flamel 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Necromancer","authorFirst":"Michael","authorLast":"Scott","genre":"Fantasy","series":"The Secrets of the Immortal Nicholas Flamel 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"403"},{"title":"The Warlock","authorFirst":"Michael","authorLast":"Scott","genre":"Fantasy","series":"The Secrets of the Immortal Nicholas Flamel 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Enchantress","authorFirst":"Michael","authorLast":"Scott","genre":"Fantasy","series":"The Secrets of the Immortal Nicholas Flamel 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"528"},{"title":"The Pale Dreamer","authorFirst":"Samantha","authorLast":"Shannon","genre":"Fantasy","series":"The Bone Season 0.5","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Bone Season","authorFirst":"Samantha","authorLast":"Shannon","genre":"Fantasy","series":"The Bone Season 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"528"},{"title":"The Mime Order","authorFirst":"Samantha","authorLast":"Shannon","genre":"Fantasy","series":"The Bone Season 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Song Rising","authorFirst":"Samantha","authorLast":"Shannon","genre":"Fantasy","series":"The Bone Season 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"384"},{"title":"The Dawn Chorus","authorFirst":"Samantha","authorLast":"Shannon","genre":"Fantasy","series":"The Bone Season 3.5","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Mask Falling","authorFirst":"Samantha","authorLast":"Shannon","genre":"Fantasy","series":"The Bone Season 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"528"},{"title":"The Priory of the Orange Tree","authorFirst":"Samantha","authorLast":"Shannon","genre":"Fantasy","series":"The Priory of the Orange Tree 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"848"},{"title":"Strange Practice","authorFirst":"Vivian","authorLast":"Shaw","genre":"Fantasy","series":"Dr. Greta Helsing 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"393"},{"title":"Dreadful Company","authorFirst":"Vivian","authorLast":"Shaw","genre":"Fantasy","series":"Dr. Greta Helsing 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"376"},{"title":"Grave Importance","authorFirst":"Vivian","authorLast":"Shaw","genre":"Fantasy","series":"Dr. Greta Helsing 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"448"},{"title":"Scythe","authorFirst":"Neal","authorLast":"Shusterman","genre":"Sci-Fi","series":"Arc of a Scythe 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"470"},{"title":"Thunderhead","authorFirst":"Neal","authorLast":"Shusterman","genre":"Sci-Fi","series":"Arc of a Scythe 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"512"},{"title":"The Toll","authorFirst":"Neal","authorLast":"Shusterman","genre":"Sci-Fi","series":"Arc of a Scythe 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"625"},{"title":"Hyperion","authorFirst":"Dan","authorLast":"Simmons","genre":"Sci-Fi","series":"Hyperion Cantos 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"Series priority","pages":"481"},{"title":"The Fall of Hyperion","authorFirst":"Dan","authorLast":"Simmons","genre":"Sci-Fi","series":"Hyperion Cantos 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"560"},{"title":"Endymion","authorFirst":"Dan","authorLast":"Simmons","genre":"Sci-Fi","series":"Hyperion Cantos 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"576"},{"title":"The Rise of Endymion","authorFirst":"Dan","authorLast":"Simmons","genre":"Sci-Fi","series":"Hyperion Cantos 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"600"},{"title":"Ilium","authorFirst":"Dan","authorLast":"Simmons","genre":"Sci-Fi","series":"Ilium/Olympos 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"608"},{"title":"Olympos","authorFirst":"Dan","authorLast":"Simmons","genre":"Sci-Fi","series":"Ilium/Olympos 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"786"},{"title":"Burn-In: A Novel of the Real Robotic Revolution","authorFirst":"P. W.","authorLast":"Singer","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Sourdough","authorFirst":"Robin","authorLast":"Sloan","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"272"},{"title":"The Court of Broken Knives","authorFirst":"Anna","authorLast":"Smith Spark","genre":"Fantasy","series":"Empire of Dust 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Tower of Living and Dying","authorFirst":"Anna","authorLast":"Smith Spark","genre":"Fantasy","series":"Empire of Dust 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The House of Sacrifice","authorFirst":"Anna","authorLast":"Smith Spark","genre":"Fantasy","series":"Empire of Dust 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"488"},{"title":"Sorrowland","authorFirst":"Rivers","authorLast":"Solomon","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"368"},{"title":"The Deep","authorFirst":"Rivers","authorLast":"Solomon","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"179"},{"title":"Sea of Tranquility","authorFirst":"Emily","authorLast":"St. John Mandel","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"272"},{"title":"Station Eleven","authorFirst":"Emily","authorLast":"St. John Mandel","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"352"},{"title":"Armor","authorFirst":"John","authorLast":"Steakley","genre":"Sci-Fi","series":"","owned":"Want","read":"X","compDate":"","status":"","information":"","pages":"426"},{"title":"Quicksilver","authorFirst":"Neal","authorLast":"Stephenson","genre":"Sci-Fi","series":"The Baroque Cycle 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"936"},{"title":"The Confusion","authorFirst":"Neal","authorLast":"Stephenson","genre":"Sci-Fi","series":"The Baroque Cycle 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"815"},{"title":"The System of the World","authorFirst":"Neal","authorLast":"Stephenson","genre":"Sci-Fi","series":"The Baroque Cycle 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"892"},{"title":"Anathem","authorFirst":"Neal","authorLast":"Stephenson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"928"},{"title":"Cryptonomicon","authorFirst":"Neal","authorLast":"Stephenson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"864"},{"title":"Fall","authorFirst":"Neal","authorLast":"Stephenson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"753"},{"title":"Interface","authorFirst":"Neal","authorLast":"Stephenson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"641"},{"title":"Reamde","authorFirst":"Neal","authorLast":"Stephenson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"1056"},{"title":"Seveneves","authorFirst":"Neal","authorLast":"Stephenson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"Jordan recommends","pages":"861"},{"title":"Snow Crash","authorFirst":"Neal","authorLast":"Stephenson","genre":"Sci-Fi","series":"","owned":"","read":"X","compDate":"5/17/21","status":"","information":"","pages":"460"},{"title":"The Big U","authorFirst":"Neal","authorLast":"Stephenson","genre":"Satire","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"308"},{"title":"The Cobweb","authorFirst":"Neal","authorLast":"Stephenson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"432"},{"title":"The Diamond Age","authorFirst":"Neal","authorLast":"Stephenson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"512"},{"title":"The Rise and Fall of D.O.D.O","authorFirst":"Neal","authorLast":"Stephenson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"753"},{"title":"Zodiac","authorFirst":"Neal","authorLast":"Stephenson","genre":"Thriller","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"314"},{"title":"The Cuckoo's Egg","authorFirst":"Cliff","authorLast":"Stoll","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"378"},{"title":"Theft of Swords","authorFirst":"Michael J.","authorLast":"Sullivan","genre":"Fantasy","series":"Riyria Revelations 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Rise of Empire","authorFirst":"Michael J.","authorLast":"Sullivan","genre":"Fantasy","series":"Riyria Revelations 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Heir of Novron","authorFirst":"Michael J.","authorLast":"Sullivan","genre":"Fantasy","series":"Riyria Revelations 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Jasmine Throne","authorFirst":"Tasha","authorLast":"Suri","genre":"Fantasy","series":"Burning Kingdoms 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"512"},{"title":"The Justice of Kings","authorFirst":"Richard","authorLast":"Swan","genre":"Fantasy","series":"Empire of the Wolf 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"432"},{"title":"The Iron Dragon's Mother","authorFirst":"Michael","authorLast":"Swanwick","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The End of Men","authorFirst":"Christina","authorLast":"Sweeney-Baird","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"Manual"},{"title":"Tome of the Undergates","authorFirst":"Sam","authorLast":"Sykes","genre":"Epic Fantasy","series":"Aeon's Gate 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Black Halo","authorFirst":"Sam","authorLast":"Sykes","genre":"Epic Fantasy","series":"Aeon's Gate 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"775"},{"title":"The Skybound Sea","authorFirst":"Sam","authorLast":"Sykes","genre":"Epic Fantasy","series":"Aeon's Gate 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Bring Down Heaven","authorFirst":"Sam","authorLast":"Sykes","genre":"Epic Fantasy","series":"Bring Down Heaven 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Mortal Tally","authorFirst":"Sam","authorLast":"Sykes","genre":"Epic Fantasy","series":"Bring Down Heaven 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"688"},{"title":"God's Last Breath","authorFirst":"Sam","authorLast":"Sykes","genre":"Epic Fantasy","series":"Bring Down Heaven 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"704"},{"title":"Seven Blades in Black","authorFirst":"Sam","authorLast":"Sykes","genre":"Epic Fantasy","series":"The Grave of Empires 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"672"},{"title":"The Goldfinch","authorFirst":"Donna","authorLast":"Tartt","genre":"Fiction","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"855"},{"title":"Children of Time","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Sci-Fi","series":"Children of Time 1","owned":"Kindle","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"608"},{"title":"Children of Ruin","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Sci-Fi","series":"Children of Time 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"592"},{"title":"Children of Memory","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Sci-Fi","series":"Children of Time 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"480"},{"title":"Dogs of War","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Sci-Fi","series":"Dogs of War 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"380"},{"title":"Bear Head","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Sci-Fi","series":"Dogs of War 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Tiger and the Wolf","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Fantasy","series":"Echoes of the Fall 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"608"},{"title":"The Bear and the Serpent","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Fantasy","series":"Echoes of the Fall 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"544"},{"title":"The Hyena and the Hawk","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Fantasy","series":"Echoes of the Fall 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"472"},{"title":"The Expert System's Brother","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Sci-Fi","series":"Expert System 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"176"},{"title":"The Expert System's Champion","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Sci-Fi","series":"Expert System 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Made Things","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Fantasy","series":"Made Things 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"190"},{"title":"Empire in Black and Gold","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Fantasy","series":"Shadows of the Apt 01","owned":"","read":"","compDate":"","status":"","information":"","pages":"624"},{"title":"Dragonfly Falling","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Fantasy","series":"Shadows of the Apt 02","owned":"","read":"","compDate":"","status":"","information":"","pages":"672"},{"title":"Blood of the Mantis","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Fantasy","series":"Shadows of the Apt 03","owned":"","read":"","compDate":"","status":"","information":"","pages":"384"},{"title":"Salute the Dark","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Fantasy","series":"Shadows of the Apt 04","owned":"","read":"","compDate":"","status":"","information":"","pages":"469"},{"title":"The Scarab Path","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Fantasy","series":"Shadows of the Apt 05","owned":"","read":"","compDate":"","status":"","information":"","pages":"505"},{"title":"The Sea Witch","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Fantasy","series":"Shadows of the Apt 06","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Heirs of the Blade","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Fantasy","series":"Shadows of the Apt 07","owned":"","read":"","compDate":"","status":"","information":"","pages":"640"},{"title":"The Air War","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Fantasy","series":"Shadows of the Apt 08","owned":"","read":"","compDate":"","status":"","information":"","pages":"672"},{"title":"War Master's Gate","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Fantasy","series":"Shadows of the Apt 09","owned":"","read":"","compDate":"","status":"","information":"","pages":"736"},{"title":"Seal of the Worm","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Fantasy","series":"Shadows of the Apt 10","owned":"","read":"","compDate":"","status":"","information":"","pages":"640"},{"title":"Shards of Earth","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Sci-Fi","series":"The Final Architecture 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"560"},{"title":"Eyes of the Void","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Sci-Fi","series":"The Final Architecture 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Lords of Uncreation","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Sci-Fi","series":"The Final Architecture 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Elder Race","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Sci-Fi","series":"","owned":"","read":"X","compDate":"2/1/23","status":"","information":"","pages":"192"},{"title":"Spiderlight","authorFirst":"Adrian","authorLast":"Tchaikovsky","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"296"},{"title":"Rosewater","authorFirst":"Tade","authorLast":"Thompson","genre":"Sci-Fi","series":"The Wormwood Trilogy 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"384"},{"title":"The Rosewater Insurrection","authorFirst":"Tade","authorLast":"Thompson","genre":"Sci-Fi","series":"The Wormwood Trilogy 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"408"},{"title":"The Rosewater Redemption","authorFirst":"Tade","authorLast":"Thompson","genre":"Sci-Fi","series":"The Wormwood Trilogy 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"408"},{"title":"Far from the Light of Heaven","authorFirst":"Tade","authorLast":"Thompson","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"384"},{"title":"The Fellowship of the Ring","authorFirst":"J.R.R.","authorLast":"Tolkien","genre":"Fantasy","series":"Lord of the Rings 1","owned":"Physical / EPUB","read":"X","compDate":"","status":"","information":"","pages":"498"},{"title":"The Two Towers","authorFirst":"J.R.R.","authorLast":"Tolkien","genre":"Fantasy","series":"Lord of the Rings 2","owned":"Physical / EPUB","read":"X","compDate":"","status":"","information":"","pages":"438"},{"title":"The Return of the King","authorFirst":"J.R.R.","authorLast":"Tolkien","genre":"Fantasy","series":"Lord of the Rings 3","owned":"Physical / EPUB","read":"X","compDate":"","status":"","information":"","pages":"500"},{"title":"The Children of Hurin","authorFirst":"J.R.R.","authorLast":"Tolkien","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Hobbit","authorFirst":"J.R.R.","authorLast":"Tolkien","genre":"Fantasy","series":"","owned":"Physical / EPUB","read":"X","compDate":"","status":"","information":"","pages":"310"},{"title":"The Silmarillion","authorFirst":"J.R.R.","authorLast":"Tolkien","genre":"Fantasy","series":"","owned":"Kindle","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Unfinished Tales of Numenor and Middle-Earth","authorFirst":"J.R.R.","authorLast":"Tolkien","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Monkeewrench","authorFirst":"P.J.","authorLast":"Tracy","genre":"Mystery","series":"Monkeewrench 01","owned":"Physical / EPUB","read":"X","compDate":"4/13/22","status":"","information":"","pages":"421"},{"title":"Live Bait","authorFirst":"P.J.","authorLast":"Tracy","genre":"Mystery","series":"Monkeewrench 02","owned":"EPUB (Want)","read":"X","compDate":"4/15/22","status":"","information":"","pages":"400"},{"title":"Dead Run","authorFirst":"P.J.","authorLast":"Tracy","genre":"Mystery","series":"Monkeewrench 03","owned":"EPUB (Want)","read":"X","compDate":"4/17/22","status":"","information":"","pages":"346"},{"title":"Snow Blind","authorFirst":"P.J.","authorLast":"Tracy","genre":"Mystery","series":"Monkeewrench 04","owned":"EPUB (Want)","read":"X","compDate":"4/30/22","status":"","information":"","pages":"320"},{"title":"Shoot to Thrill / Play To Kill","authorFirst":"P.J.","authorLast":"Tracy","genre":"Mystery","series":"Monkeewrench 05","owned":"EPUB (Want)","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"Manual"},{"title":"Off the Grid","authorFirst":"P.J.","authorLast":"Tracy","genre":"Mystery","series":"Monkeewrench 06","owned":"EPUB (Want)","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Sixth Idea","authorFirst":"P.J.","authorLast":"Tracy","genre":"Mystery","series":"Monkeewrench 07","owned":"EPUB (Want)","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Nothing Stays Buried","authorFirst":"P.J.","authorLast":"Tracy","genre":"Mystery","series":"Monkeewrench 08","owned":"EPUB (Want)","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Guilty Dead","authorFirst":"P.J.","authorLast":"Tracy","genre":"Mystery","series":"Monkeewrench 09","owned":"EPUB (Want)","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Ice Cold Heart","authorFirst":"P.J.","authorLast":"Tracy","genre":"Mystery","series":"Monkeewrench 10","owned":"EPUB (Want)","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Mechanical","authorFirst":"Ian","authorLast":"Tregillis","genre":"Sci-Fi","series":"The Alchemy Wars 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"471"},{"title":"The Rising","authorFirst":"Ian","authorLast":"Tregillis","genre":"Sci-Fi","series":"The Alchemy Wars 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"468"},{"title":"The Liberation","authorFirst":"Ian","authorLast":"Tregillis","genre":"Sci-Fi","series":"The Alchemy Wars 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"437"},{"title":"Bitter Seeds","authorFirst":"Ian","authorLast":"Tregillis","genre":"Sci-Fi","series":"The Milkweed Triptych 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"The Coldest War","authorFirst":"Ian","authorLast":"Tregillis","genre":"Sci-Fi","series":"The Milkweed Triptych 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"392"},{"title":"Necessary Evil","authorFirst":"Ian","authorLast":"Tregillis","genre":"Sci-Fi","series":"The Milkweed Triptych 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"384"},{"title":"No Gods, No Monsters","authorFirst":"Cadwell","authorLast":"Turnbull","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"201"},{"title":"The Lesson","authorFirst":"Cadwell","authorLast":"Turnbull","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"272"},{"title":"Space Opera","authorFirst":"Catherynne M.","authorLast":"Valente","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"299"},{"title":"Annihilation","authorFirst":"Jeff","authorLast":"VanderMeer","genre":"Sci-Fi","series":"Southern Reach 1","owned":"","read":"X","compDate":"6/12/24","status":"","information":"","pages":"208"},{"title":"Authority","authorFirst":"Jeff","authorLast":"VanderMeer","genre":"Sci-Fi","series":"Southern Reach 2","owned":"","read":"X","compDate":"6/18/24","status":"","information":"","pages":"341"},{"title":"Acceptance","authorFirst":"Jeff","authorLast":"VanderMeer","genre":"Sci-Fi","series":"Southern Reach 3","owned":"","read":"","compDate":"","status":"3 On Hold","information":"Priority 2024","pages":"352"},{"title":"Absolution","authorFirst":"Jeff","authorLast":"VanderMeer","genre":"Sci-Fi","series":"Southern Reach 4","owned":"","read":"","compDate":"","status":"","information":"Release Oct 22 '24","pages":"Manual"},{"title":"Star Wars: From a Certain Point of View","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Star Wars Point of View 1","owned":"","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"Manual"},{"title":"Empire Strikes Back: From a Certain Point of View","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Star Wars Point of View 2","owned":"","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"Manual"},{"title":"Return of the Jedi: From a Certain Point of View","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Star Wars Point of View 3","owned":"","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"Manual"},{"title":"Of Blood and Honor","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Day of the Dragon","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Lord of the Clans","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Last Guardian","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Well of Eternity","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: War of the Ancients 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Demon Soul","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: War of the Ancients 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Sundering","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: War of the Ancients 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Cycle of Hatred","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 01","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Rise of the Horde","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 02","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Tides of Darkness","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 03","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Beyond the Dark Portal","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 04","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Night of the Dragon","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 05","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Arthas: Rise of the Lich King","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 06","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Stormrage","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 07","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Shattering: Prelude to Cataclysm","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 08","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Thrall: Twilight of the Aspects","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 09","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Wolfheart","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 10","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Jaina Proudmoore: Tides of War","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 11","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Dawn of the Aspects","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 12","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Vol'jin: Shadows of the Horde","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 13","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"War Crimes","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 14","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Illidan","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 15","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Traveler","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 16","owned":"","read":"","compDate":"","status":"","information":"","pages":"432"},{"title":"Traveler: The Spiral Path","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 17","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Before the Storm","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: World of Warcraft 18","owned":"","read":"","compDate":"","status":"","information":"","pages":"266"},{"title":"World of Warcraft: Chronicle Volume 1","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: WoW Chronicle 1","owned":"Want"},{"title":"World of Warcraft: Chronicle Volume 2","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: WoW Chronicle 2","owned":"Want"},{"title":"World of Warcraft: Chronicle Volume 3","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: WoW Chronicle 3","owned":"Want"},{"title":"World of Warcraft: Chronicle Volume 4","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"Warcraft: WoW Chronicle 4","owned":"Want"},{"title":"Horus Rising","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 01","owned":"EPUB","read":"","compDate":"","status":"1 In Progress","information":"Priority 2024","pages":"Manual"},{"title":"False Gods","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 02","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Galaxy in Flames","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 03","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Flight of the Eisenstein","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 04","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Fulgrim","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 05","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Descent of Angels","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 06","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Legion","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 07","owned":"","read":"","compDate":"","status":"","information":"","pages":"576"},{"title":"Battle for the Abyss","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 08","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Mechanicum","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 09","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Tales of Heresy","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 10","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Fallen Angels","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 11","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"A Thousand Sons","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 12","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Nemesis","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 13","owned":"","read":"","compDate":"","status":"","information":"","pages":"96"},{"title":"The First Heretic","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 14","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Prospero Burns","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 15","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Age of Darkness","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 16","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Outcast Dead","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 17","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Deliverance Lost","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 18","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Know No Fear","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 19","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Primarchs","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 20","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Fear to Tread","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 21","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Shadows of Treachery","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 22","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Angel Exterminatus","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 23","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Betrayer","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 24","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Mark of Calth","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 25","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Vulkan Lives","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 26","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Unremembered Empire","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 27","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Scars","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 28","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Vengeful Spirit","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 29","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Damnation of Pythos","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 30","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Legacies of Betrayal","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 31","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Deathfire","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 32","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"War Without End","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 33","owned":"","read":"","compDate":"","status":"","information":"","pages":"544"},{"title":"Pharos","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 34","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Eye of Terra","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 35","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Path of Heaven","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 36","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Silent War","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 37","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Angels of Caliban","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 38","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Praetorian of Dorn","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 39","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Corax","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 40","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Master of Mankind","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 41","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Garro","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 42","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Shattered Legions","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 43","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Crimson King","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 44","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Tallarn","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 45","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Ruinstorm","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 46","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Old Earth","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 47","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Burden of Loyalty","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 48","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Wolfsbane","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 49","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Born of Flame","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 50","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Slaves to Darkness","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 51","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Heralds of the Siege","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 52","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Titandeath","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 53","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Buried Dagger","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 54","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Solar War","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 55","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Lost and the Damned","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 56","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The First Wall","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 57","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Saturnine","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 58","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Mortis","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 59","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Warhawk","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 60","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Echoes of Eternity","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 61","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The End and the Death, Volume I","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 62","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The End and the Death, Volume II","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 63","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The End and the Death, Volume III","authorFirst":"Various","authorLast":"Various","genre":"Sci-Fi","series":"Warhammer 40k, The Horus Heresy 64","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Unfettered (Anthology)","authorFirst":"Various","authorLast":"Various","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Wolf of Oren-Yaro","authorFirst":"K.S.","authorLast":"Villoso","genre":"Fantasy","series":"The Chronicles of the Wolf Queen 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Ikessar Falcon","authorFirst":"K.S.","authorLast":"Villoso","genre":"Fantasy","series":"The Chronicles of the Wolf Queen 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Dragon of Jin-Sayeng","authorFirst":"K.S.","authorLast":"Villoso","genre":"Fantasy","series":"The Chronicles of the Wolf Queen 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"A Fire Upon the Deep","authorFirst":"Vernor","authorLast":"Vinge","genre":"Sci-Fi","series":"Zones of Thought 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"605"},{"title":"A Deepness in the Sky","authorFirst":"Vernor","authorLast":"Vinge","genre":"Sci-Fi","series":"Zones of Thought 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"792"},{"title":"The Children of the Sky","authorFirst":"Vernor","authorLast":"Vinge","genre":"Sci-Fi","series":"Zones of Thought 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"444"},{"title":"The First Binding","authorFirst":"R. R.","authorLast":"Virdi","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Chosen and the Beautiful","authorFirst":"Nghi","authorLast":"Vo","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"Great Gatsby reinvention","pages":"272"},{"title":"Slaughterhouse-Five","authorFirst":"Hurt","authorLast":"Vonnegut","genre":"Sci-Fi/Classic","series":"","owned":"Physical","read":"X","compDate":"10/16/20","status":"","information":"","pages":"275"},{"title":"There Before the Chaos","authorFirst":"K. B.","authorLast":"Wagers","genre":"Sci-Fi","series":"The Farian War 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"393"},{"title":"Down Among the Dead","authorFirst":"K. B.","authorLast":"Wagers","genre":"Sci-Fi","series":"The Farian War 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"448"},{"title":"Out Past The Stars","authorFirst":"K. B.","authorLast":"Wagers","genre":"Sci-Fi","series":"The Farian War 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"432"},{"title":"Behind the Throne","authorFirst":"K. B.","authorLast":"Wagers","genre":"Sci-Fi","series":"The Indranan War 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"424"},{"title":"After the Crown","authorFirst":"K. B.","authorLast":"Wagers","genre":"Sci-Fi","series":"The Indranan War 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"409"},{"title":"Beyond the Empire","authorFirst":"K. B.","authorLast":"Wagers","genre":"Sci-Fi","series":"The Indranan War 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"401"},{"title":"Legacy of Ash","authorFirst":"Matthew","authorLast":"Ward","genre":"Fantasy","series":"The Tower of Stars 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"792"},{"title":"Legacy of Steel","authorFirst":"Matthew","authorLast":"Ward","genre":"Fantasy","series":"The Tower of Stars 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"704"},{"title":"Legacy of Light","authorFirst":"Matthew","authorLast":"Ward","genre":"Fantasy","series":"The Tower of Stars 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"792"},{"title":"Gold Fame Citrus","authorFirst":"Claire Vaye","authorLast":"Watkins","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"352"},{"title":"You Die When You Die","authorFirst":"Angus","authorLast":"Watson","genre":"Fantasy","series":"West of West 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Land You Never Leave","authorFirst":"Angus","authorLast":"Watson","genre":"Fantasy","series":"West of West 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"528"},{"title":"Where Gods Fear To Go","authorFirst":"Angus","authorLast":"Watson","genre":"Fantasy","series":"West of West 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"The Mysteries","authorFirst":"Bill","authorLast":"Watterson","genre":"Fiction","series":"","owned":"Physical","read":"X","compDate":"2/4/24","status":"","information":"","pages":"72"},{"title":"Blindsight","authorFirst":"Peter","authorLast":"Watts","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"384"},{"title":"The Umbrella Academy, Vol. 1: Apocalypse Suite","authorFirst":"Gerard","authorLast":"Way","genre":"Graphic Novel","series":"Umbrella Academy 1","owned":"","read":"X","compDate":"7/25/22","status":"","information":"","pages":"184"},{"title":"The Umbrella Academy, Vol. 2: Dallas","authorFirst":"Gerard","authorLast":"Way","genre":"Graphic Novel","series":"Umbrella Academy 2","owned":"","read":"X","compDate":"8/7/22","status":"","information":"","pages":"192"},{"title":"The Umbrella Academy, Vol. 3: Hotel Oblivion","authorFirst":"Gerard","authorLast":"Way","genre":"Graphic Novel","series":"Umbrella Academy 3","owned":"","read":"X","compDate":"8/16/22","status":"","information":"","pages":"216"},{"title":"The Golem and the Jinni","authorFirst":"Helene","authorLast":"Wecker","genre":"Fantasy","series":"The Golem and the Jinni 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"486"},{"title":"The Hidden Palace","authorFirst":"Helene","authorLast":"Wecker","genre":"Fantasy","series":"The Golem and the Jinni 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"480"},{"title":"The Black Prism","authorFirst":"Brent","authorLast":"Weeks","genre":"Fantasy","series":"Lightbringer 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"659"},{"title":"The Blinding Knife","authorFirst":"Brent","authorLast":"Weeks","genre":"Fantasy","series":"Lightbringer 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"688"},{"title":"The Broken Eye","authorFirst":"Brent","authorLast":"Weeks","genre":"Fantasy","series":"Lightbringer 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"795"},{"title":"The Blood Mirror","authorFirst":"Brent","authorLast":"Weeks","genre":"Fantasy","series":"Lightbringer 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"720"},{"title":"The Burning White","authorFirst":"Brent","authorLast":"Weeks","genre":"Fantasy","series":"Lightbringer 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"992"},{"title":"The Way of Shadows","authorFirst":"Brent","authorLast":"Weeks","genre":"Fantasy","series":"Night Angel 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"645"},{"title":"Shadow's Edge","authorFirst":"Brent","authorLast":"Weeks","genre":"Fantasy","series":"Night Angel 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"656"},{"title":"Beyond the Shadows","authorFirst":"Brent","authorLast":"Weeks","genre":"Fantasy","series":"Night Angel 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"720"},{"title":"Artemis","authorFirst":"Andy","authorLast":"Weir","genre":"Sci-Fi","series":"","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"322"},{"title":"Project Hail Mary","authorFirst":"Andy","authorLast":"Weir","genre":"Sci-Fi","series":"","owned":"","read":"X","compDate":"6/25/21","status":"","information":"","pages":"496"},{"title":"The Martian","authorFirst":"Andy","authorLast":"Weir","genre":"Sci-Fi","series":"","owned":"","read":"X","compDate":"2/3/24","status":"","information":"","pages":"408"},{"title":"Dragons of Autumn Twilight","authorFirst":"Margaret","authorLast":"Weis","genre":"Fantasy","series":"Dragonlance: Chronicles 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"448"},{"title":"Dragons of Winter Night","authorFirst":"Margaret","authorLast":"Weis","genre":"Fantasy","series":"Dragonlance: Chronicles 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"400"},{"title":"Dragons of Spring Dawning","authorFirst":"Margaret","authorLast":"Weis","genre":"Fantasy","series":"Dragonlance: Chronicles 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"379"},{"title":"The Time Machine","authorFirst":"H.G.","authorLast":"Wells","genre":"Sci-Fi/Classic","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"All Systems Red","authorFirst":"Martha","authorLast":"Wells","genre":"Sci-Fi","series":"The Murderbot Diaries 1","owned":"Physical","read":"X","compDate":"7/11/21","status":"","information":"","pages":"156"},{"title":"Artificial Condition","authorFirst":"Martha","authorLast":"Wells","genre":"Sci-Fi","series":"The Murderbot Diaries 2","owned":"Physical","read":"X","compDate":"10/10/21","status":"","information":"","pages":"154"},{"title":"Rogue Protocol","authorFirst":"Martha","authorLast":"Wells","genre":"Sci-Fi","series":"The Murderbot Diaries 3","owned":"Want","read":"X","compDate":"10/17/21","status":"","information":"","pages":"158"},{"title":"Exit Strategy","authorFirst":"Martha","authorLast":"Wells","genre":"Sci-Fi","series":"The Murderbot Diaries 4","owned":"Want","read":"X","compDate":"10/26/21","status":"","information":"","pages":"576"},{"title":"Home: Habitat, Range, Niche, Territory","authorFirst":"Martha","authorLast":"Wells","genre":"Sci-Fi","series":"The Murderbot Diaries 4.5","owned":"Want","read":"X","compDate":"10/26/21","status":"","information":"","pages":"19"},{"title":"Network Effect","authorFirst":"Martha","authorLast":"Wells","genre":"Sci-Fi","series":"The Murderbot Diaries 5","owned":"Want","read":"X","compDate":"11/13/21","status":"","information":"","pages":"352"},{"title":"Fugitive Telemetry","authorFirst":"Martha","authorLast":"Wells","genre":"Sci-Fi","series":"The Murderbot Diaries 6","owned":"Want","read":"X","compDate":"11/27/21","status":"","information":"","pages":"176"},{"title":"System Collapse","authorFirst":"Martha","authorLast":"Wells","genre":"Sci-Fi","series":"The Murderbot Diaries 7","owned":"Want","read":"X","compDate":"4/3/24","status":"","information":"","pages":"160"},{"title":"Witch King","authorFirst":"Martha","authorLast":"Wells","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"2 Ready","information":"","pages":"432"},{"title":"Blackbirds","authorFirst":"Chuck","authorLast":"Wendig","genre":"Mystery","series":"Miriam Black 1","owned":"","read":"","compDate":"","status":"4 Priority","information":"","pages":"322"},{"title":"Mockingbird","authorFirst":"Chuck","authorLast":"Wendig","genre":"Mystery","series":"Miriam Black 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"368"},{"title":"The Cormorant","authorFirst":"Chuck","authorLast":"Wendig","genre":"Mystery","series":"Miriam Black 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"356"},{"title":"Thunderbird","authorFirst":"Chuck","authorLast":"Wendig","genre":"Mystery","series":"Miriam Black 4","owned":"","read":"","compDate":"","status":"","information":"","pages":"344"},{"title":"The Raptor and The Wren","authorFirst":"Chuck","authorLast":"Wendig","genre":"Mystery","series":"Miriam Black 5","owned":"","read":"","compDate":"","status":"","information":"","pages":"288"},{"title":"Vultures","authorFirst":"Chuck","authorLast":"Wendig","genre":"Mystery","series":"Miriam Black 6","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"The Blue Blazes","authorFirst":"Chuck","authorLast":"Wendig","genre":"Mystery","series":"Mookie Pearl 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"400"},{"title":"The Hellsblood Bride","authorFirst":"Chuck","authorLast":"Wendig","genre":"Mystery","series":"Mookie Pearl 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Wanderers","authorFirst":"Chuck","authorLast":"Wendig","genre":"Sci-Fi","series":"Wanderers 1","owned":"Physical","read":"X","compDate":"2/3/20","status":"","information":"","pages":"800"},{"title":"Wayward","authorFirst":"Chuck","authorLast":"Wendig","genre":"Sci-Fi","series":"Wanderers 2","owned":"","read":"X","compDate":"12/20/22","status":"","information":"","pages":"816"},{"title":"Zer0es","authorFirst":"Chuck","authorLast":"Wendig","genre":"Mystery","series":"Zer0es 1","owned":"Physical","read":"X","compDate":"7/21/20","status":"","information":"","pages":"432"},{"title":"Invasive","authorFirst":"Chuck","authorLast":"Wendig","genre":"Mystery","series":"Zer0es 2","owned":"Kindle","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"161"},{"title":"The Book of Accidents","authorFirst":"Chuck","authorLast":"Wendig","genre":"Sci-Fi","series":"","owned":"","read":"X","compDate":"2/22/24","status":"","information":"","pages":"544"},{"title":"A Big Ship at the Edge of the Universe","authorFirst":"Alex","authorLast":"White","genre":"Sci-Fi","series":"The Salvagers 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"473"},{"title":"A Bad Deal for the Whole Galaxy","authorFirst":"Alex","authorLast":"White","genre":"Sci-Fi","series":"The Salvagers 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"544"},{"title":"The Worst of All Possible Worlds","authorFirst":"Alex","authorLast":"White","genre":"Sci-Fi","series":"The Salvagers 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Every Mountain Made Low","authorFirst":"Alex","authorLast":"White","genre":"Horror","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"416"},{"title":"Killing Gravity","authorFirst":"Corey J.","authorLast":"White","genre":"Sci-Fi","series":"The VoidWitch Saga 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"176"},{"title":"Void Black Shadow","authorFirst":"Corey J.","authorLast":"White","genre":"Sci-Fi","series":"The VoidWitch Saga 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"217"},{"title":"Static Ruin","authorFirst":"Corey J.","authorLast":"White","genre":"Sci-Fi","series":"The VoidWitch Saga 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"It's Better To Be Feared","authorFirst":"Seth","authorLast":"Wickersham","genre":"Nonfiction","series":"","owned":"","read":"X","compDate":"1/7/22","status":"","information":"","pages":"520"},{"title":"Unsouled","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"Cradle 01","owned":"Kindle","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"292"},{"title":"Soulsmith","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"Cradle 02","owned":"Kindle","read":"","compDate":"","status":"","information":"","pages":"284"},{"title":"Blackflame","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"Cradle 03","owned":"Kindle","read":"","compDate":"","status":"","information":"","pages":"368"},{"title":"Skysworn","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"Cradle 04","owned":"Kindle","read":"","compDate":"","status":"","information":"","pages":"290"},{"title":"Ghostwater","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"Cradle 05","owned":"Kindle","read":"","compDate":"","status":"","information":"","pages":"310"},{"title":"Underlord","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"Cradle 06","owned":"Kindle","read":"","compDate":"","status":"","information":"","pages":"348"},{"title":"Uncrowned","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"Cradle 07","owned":"Kindle","read":"","compDate":"","status":"","information":"","pages":"355"},{"title":"Wintersteel","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"Cradle 08","owned":"Kindle","read":"","compDate":"","status":"","information":"","pages":"520"},{"title":"Bloodline","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"Cradle 09","owned":"Kindle","read":"","compDate":"","status":"","information":"","pages":"397"},{"title":"Reaper","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"Cradle 10","owned":"Kindle","read":"","compDate":"","status":"","information":"","pages":"486"},{"title":"Dreadgod","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"Cradle 11","owned":"Kindle","read":"","compDate":"","status":"","information":"","pages":"484"},{"title":"Waybound","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"Cradle 12","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Of Sea and Shadow","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"The Elder Empire - Sea 1","owned":"Kindle","read":"","compDate":"","status":"2 Ready","information":"Priority 2024 - Read 1st","pages":"369"},{"title":"Of Dawn and Darkness","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"The Elder Empire - Sea 2","owned":"Kindle","read":"","compDate":"","status":"","information":"Read 3rd","pages":"362"},{"title":"Of Kings and Killers","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"The Elder Empire - Sea 3","owned":"Kindle","read":"","compDate":"","status":"","information":"Read 5th","pages":"401"},{"title":"Of Shadow and Sea","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"The Elder Empire - Shadow 1","owned":"Kindle","read":"","compDate":"","status":"","information":"Read 2nd","pages":"369"},{"title":"Of Darkness and Dawn","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"The Elder Empire - Shadow 2","owned":"Kindle","read":"","compDate":"","status":"","information":"Read 4th","pages":"362"},{"title":"Of Killers and Kings","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"The Elder Empire - Shadow 3","owned":"Kindle","read":"","compDate":"","status":"","information":"Read last","pages":"401"},{"title":"The Captain","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"The Last Horizon 1","owned":"Kindle","read":"","compDate":"","status":"2 Ready","information":"","pages":"418"},{"title":"House of Blades","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"The Traveler's Gate 1","owned":"Kindle","read":"","compDate":"","status":"2 Ready","information":"","pages":"292"},{"title":"The Crimson Vault","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"The Traveler's Gate 2","owned":"Kindle","read":"","compDate":"","status":"","information":"","pages":"384"},{"title":"City of Light","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"The Traveler's Gate 3","owned":"Kindle","read":"","compDate":"","status":"","information":"","pages":"392"},{"title":"The Traveler's Gate Chronicles","authorFirst":"Will","authorLast":"Wight","genre":"Fantasy","series":"The Traveler's Gate 3.5","owned":"Kindle","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Doomsday Book","authorFirst":"Connie","authorLast":"Willis","genre":"Sci-Fi","series":"Oxford Time Travel 1","owned":"","read":"","compDate":"","status":"","information":"","pages":"559"},{"title":"To Say Nothing of the Dog","authorFirst":"Connie","authorLast":"Willis","genre":"Sci-Fi","series":"Oxford Time Travel 2","owned":"","read":"","compDate":"","status":"","information":"","pages":"504"},{"title":"Blackout/All Clear","authorFirst":"Connie","authorLast":"Willis","genre":"Sci-Fi","series":"Oxford Time Travel 3","owned":"","read":"","compDate":"","status":"","information":"","pages":"Manual"},{"title":"Tomorrow, and Tomorrow, and Tomorrow","authorFirst":"Gabrielle","authorLast":"Zevin","genre":"Fiction","series":"","owned":"EPUB","read":"","compDate":"","status":"2 Ready","information":"Priority 2024","pages":"504"},{"title":"Iron Widow","authorFirst":"Xiran Jay","authorLast":"Zhao","genre":"Fantasy","series":"","owned":"","read":"","compDate":"","status":"","information":"","pages":"400"}] \ No newline at end of file +[ + { + "title": "Rivers of London", + "authorFirst": "Ben", + "authorLast": "Aaronovitch", + "genre": "Fantasy/Mystery", + "series": "Rivers of London 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "Moon Over Soho", + "authorFirst": "Ben", + "authorLast": "Aaronovitch", + "genre": "Fantasy/Mystery", + "series": "Rivers of London 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "332" + }, + { + "title": "Whispers Under Ground", + "authorFirst": "Ben", + "authorLast": "Aaronovitch", + "genre": "Fantasy/Mystery", + "series": "Rivers of London 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "445" + }, + { + "title": "Broken Homes", + "authorFirst": "Ben", + "authorLast": "Aaronovitch", + "genre": "Fantasy/Mystery", + "series": "Rivers of London 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "324" + }, + { + "title": "Foxglove Summer", + "authorFirst": "Ben", + "authorLast": "Aaronovitch", + "genre": "Fantasy/Mystery", + "series": "Rivers of London 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Hanging Tree", + "authorFirst": "Ben", + "authorLast": "Aaronovitch", + "genre": "Fantasy/Mystery", + "series": "Rivers of London 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "360" + }, + { + "title": "Lies Sleeping", + "authorFirst": "Ben", + "authorLast": "Aaronovitch", + "genre": "Fantasy/Mystery", + "series": "Rivers of London 7", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "328" + }, + { + "title": "False Value", + "authorFirst": "Ben", + "authorLast": "Aaronovitch", + "genre": "Fantasy/Mystery", + "series": "Rivers of London 8", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "The Stardust Thief", + "authorFirst": "Chelsea", + "authorLast": "Abdullah", + "genre": "Fantasy", + "series": "The Sandsea Trilogy 1", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "400" + }, + { + "title": "The Ashfire King", + "authorFirst": "Chelsea", + "authorLast": "Abdullah", + "genre": "Fantasy", + "series": "The Sandsea Trilogy 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Half a King", + "authorFirst": "Joe", + "authorLast": "Abercrombie", + "genre": "Fantasy", + "series": "Shattered Sea 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "365" + }, + { + "title": "Half the World", + "authorFirst": "Joe", + "authorLast": "Abercrombie", + "genre": "Fantasy", + "series": "Shattered Sea 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "392" + }, + { + "title": "Half a War", + "authorFirst": "Joe", + "authorLast": "Abercrombie", + "genre": "Fantasy", + "series": "Shattered Sea 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "375" + }, + { + "title": "The Blade Itself", + "authorFirst": "Joe", + "authorLast": "Abercrombie", + "genre": "Fantasy", + "series": "The First Law 1", + "owned": "", + "read": "X", + "compDate": "10/13/21", + "status": "", + "information": "", + "pages": "531" + }, + { + "title": "Before They Are Hanged", + "authorFirst": "Joe", + "authorLast": "Abercrombie", + "genre": "Fantasy", + "series": "The First Law 2", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "576" + }, + { + "title": "Last Argument of Kings", + "authorFirst": "Joe", + "authorLast": "Abercrombie", + "genre": "Fantasy", + "series": "The First Law 3", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "669" + }, + { + "title": "Best Served Cold", + "authorFirst": "Joe", + "authorLast": "Abercrombie", + "genre": "Fantasy", + "series": "The First Law 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "652" + }, + { + "title": "The Heroes", + "authorFirst": "Joe", + "authorLast": "Abercrombie", + "genre": "Fantasy", + "series": "The First Law 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "672" + }, + { + "title": "Red Country", + "authorFirst": "Joe", + "authorLast": "Abercrombie", + "genre": "Fantasy", + "series": "The First Law 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "472" + }, + { + "title": "A Little Hatred", + "authorFirst": "Joe", + "authorLast": "Abercrombie", + "genre": "Fantasy", + "series": "The First Law 7", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "496" + }, + { + "title": "The Trouble with Peace", + "authorFirst": "Joe", + "authorLast": "Abercrombie", + "genre": "Fantasy", + "series": "The First Law 8", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "The Wisdom of Crowds", + "authorFirst": "Joe", + "authorLast": "Abercrombie", + "genre": "Fantasy", + "series": "The First Law 9", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "584" + }, + { + "title": "Age of Ash", + "authorFirst": "Daniel", + "authorLast": "Abraham", + "genre": "Fantasy", + "series": "Kithamar 1", + "owned": "", + "read": "X", + "compDate": "4/12/22", + "status": "", + "information": "", + "pages": "281" + }, + { + "title": "The Hitchhiker's Guide to the Galaxy", + "authorFirst": "Douglas", + "authorLast": "Adams", + "genre": "Sci-Fi/Classic", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "832" + }, + { + "title": "Watership Down", + "authorFirst": "Richard", + "authorLast": "Adams", + "genre": "Fantasy/Classic", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "478" + }, + { + "title": "The Goblin Emperor", + "authorFirst": "Katherine", + "authorLast": "Addison", + "genre": "Fantasy", + "series": "The Goblin Emperor 1", + "owned": "", + "read": "X", + "compDate": "1/20/22", + "status": "", + "information": "", + "pages": "496" + }, + { + "title": "Lora Selezh", + "authorFirst": "Katherine", + "authorLast": "Addison", + "genre": "Fantasy", + "series": "The Goblin Emperor 1.5, The Cemeteries of Amalo 0.5", + "owned": "", + "read": "X", + "compDate": "7/17/22", + "status": "", + "information": "", + "pages": "13" + }, + { + "title": "The Witness for the Dead", + "authorFirst": "Katherine", + "authorLast": "Addison", + "genre": "Fantasy", + "series": "The Goblin Emperor 2, The Cemeteries of Amalo 1", + "owned": "", + "read": "X", + "compDate": "7/17/22", + "status": "", + "information": "", + "pages": "208" + }, + { + "title": "The Grief of Stones", + "authorFirst": "Katherine", + "authorLast": "Addison", + "genre": "Fantasy", + "series": "The Goblin Emperor 3, The Cemeteries of Amalo 2", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "Manual" + }, + { + "title": "The Angel of the Crows", + "authorFirst": "Katherine", + "authorLast": "Addison", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "448" + }, + { + "title": "Children of Blood and Bone", + "authorFirst": "Tomi", + "authorLast": "Adeyemi", + "genre": "Fantasy", + "series": "Legacy of Orisha 1", + "owned": "", + "read": "X", + "compDate": "12/30/20", + "status": "", + "information": "", + "pages": "552" + }, + { + "title": "Children of Virtue and Vengeance", + "authorFirst": "Tomi", + "authorLast": "Adeyemi", + "genre": "Fantasy", + "series": "Legacy of Orisha 2", + "owned": "", + "read": "X", + "compDate": "1/11/21", + "status": "", + "information": "", + "pages": "448" + }, + { + "title": "Throne of the Crescent Moon", + "authorFirst": "Saladin", + "authorLast": "Ahmed", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "336" + }, + { + "title": "Gunmetal Gods", + "authorFirst": "Zamil", + "authorLast": "Akhtar", + "genre": "Fantasy", + "series": "Gunmetal Gods 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "Kindle Unlimited", + "pages": "Manual" + }, + { + "title": "Conqueror's Blood", + "authorFirst": "Zamil", + "authorLast": "Akhtar", + "genre": "Fantasy", + "series": "Gunmetal Gods 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Future", + "authorFirst": "Naomi", + "authorLast": "Alderman", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "2023 Sci-Fi Finalist", + "pages": "416" + }, + { + "title": "The New Jim Crow", + "authorFirst": "Michelle", + "authorLast": "Alexander", + "genre": "Nonfiction", + "series": "", + "owned": "Physical", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "336" + }, + { + "title": "Daughters of Nri", + "authorFirst": "Reni K.", + "authorLast": "Amayo", + "genre": "Fantasy", + "series": "Return of the Earth Mother 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "333" + }, + { + "title": "Descendants of the First", + "authorFirst": "Reni K.", + "authorLast": "Amayo", + "genre": "Fantasy", + "series": "Return of the Earth Mother 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "All the Birds in the Sky", + "authorFirst": "Charlie Jane", + "authorLast": "Anders", + "genre": "Fantasy", + "series": "", + "owned": "Kindle", + "read": "", + "compDate": "7/9/20", + "status": "7 Abandoned", + "information": "Poorly written", + "pages": "316" + }, + { + "title": "The City in the Middle of the Night", + "authorFirst": "Charlie Jane", + "authorLast": "Anders", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "368" + }, + { + "title": "Hidden Empire", + "authorFirst": "Kevin J.", + "authorLast": "Anderson", + "genre": "Sci-Fi/Space Opera", + "series": "The Saga of the Seven Suns 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "672" + }, + { + "title": "A Forest of Stars", + "authorFirst": "Kevin J.", + "authorLast": "Anderson", + "genre": "Sci-Fi/Space Opera", + "series": "The Saga of the Seven Suns 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "721" + }, + { + "title": "Horizon Storms", + "authorFirst": "Kevin J.", + "authorLast": "Anderson", + "genre": "Sci-Fi/Space Opera", + "series": "The Saga of the Seven Suns 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "650" + }, + { + "title": "Scattered Suns", + "authorFirst": "Kevin J.", + "authorLast": "Anderson", + "genre": "Sci-Fi/Space Opera", + "series": "The Saga of the Seven Suns 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "736" + }, + { + "title": "Of Fire and Night", + "authorFirst": "Kevin J.", + "authorLast": "Anderson", + "genre": "Sci-Fi/Space Opera", + "series": "The Saga of the Seven Suns 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "625" + }, + { + "title": "Metal Swarm", + "authorFirst": "Kevin J.", + "authorLast": "Anderson", + "genre": "Sci-Fi/Space Opera", + "series": "The Saga of the Seven Suns 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "678" + }, + { + "title": "The Ashes of Worlds", + "authorFirst": "Kevin J.", + "authorLast": "Anderson", + "genre": "Sci-Fi/Space Opera", + "series": "The Saga of the Seven Suns 7", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "672" + }, + { + "title": "Spine of the Dragon", + "authorFirst": "Kevin J.", + "authorLast": "Anderson", + "genre": "Fantasy", + "series": "Wake the Dragon 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "528" + }, + { + "title": "Vengewar", + "authorFirst": "Kevin J.", + "authorLast": "Anderson", + "genre": "Fantasy", + "series": "Wake the Dragon 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "Gods and Dragons", + "authorFirst": "Kevin J.", + "authorLast": "Anderson", + "genre": "Fantasy", + "series": "Wake the Dragon 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "Assemblers of Infinity", + "authorFirst": "Kevin J.", + "authorLast": "Anderson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "466" + }, + { + "title": "Light From Uncommon Stars", + "authorFirst": "Ryka", + "authorLast": "Aoki", + "genre": "Fantasy", + "series": "", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "384" + }, + { + "title": "The Invasion", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 01", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "192" + }, + { + "title": "The Visitor", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 02", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "192" + }, + { + "title": "The Encounter", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 03", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "157" + }, + { + "title": "The Message", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 04", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "160" + }, + { + "title": "The Predator", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 05", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "155" + }, + { + "title": "The Capture", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 06", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "159" + }, + { + "title": "The Stranger", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 07", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "176" + }, + { + "title": "Megamorphs #1: The Andalite's Gift", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 07.5", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Alien", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 08", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "168" + }, + { + "title": "The Secret", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 09", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "160" + }, + { + "title": "The Android", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 10", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "170" + }, + { + "title": "The Forgotten", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 11", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "162" + }, + { + "title": "The Reaction", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 12", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "158" + }, + { + "title": "The Andalite Chronicles", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 12.5", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "326" + }, + { + "title": "The Change", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 13", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "162" + }, + { + "title": "The Unknown", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 14", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "169" + }, + { + "title": "The Escape", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 15", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "170" + }, + { + "title": "The Warning", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 16", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "151" + }, + { + "title": "The Underground", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 17", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "164" + }, + { + "title": "The Decision", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 18", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "159" + }, + { + "title": "Megamorphs #2: In The Time of the Dinosaurs", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 18.5", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Departure", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 19", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "159" + }, + { + "title": "The Discovery", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 20", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "153" + }, + { + "title": "The Threat", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 21", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "159" + }, + { + "title": "The Solution", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 22", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "152" + }, + { + "title": "The Hork-Bajir Chronicles", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 22.5", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "215" + }, + { + "title": "The Pretender", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 23", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "160" + }, + { + "title": "The Suspicion", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 24", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "156" + }, + { + "title": "The Extreme", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 25", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "160" + }, + { + "title": "The Attack", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 26", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "160" + }, + { + "title": "The Exposed", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 27", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "168" + }, + { + "title": "The Experiment", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 28", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "160" + }, + { + "title": "The Sickness", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 29", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "166" + }, + { + "title": "Megamorphs #3: Elfangor's Secret", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 29.5", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Alternamorphs #1: The First Journey", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 29.75", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Reunion", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 30", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "166" + }, + { + "title": "The Cinspiracy", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 31", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Separation", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 32", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "158" + }, + { + "title": "The Illusion", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 33", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "170" + }, + { + "title": "The Prophecy", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 34", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "141" + }, + { + "title": "The Proposal", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 35", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "147" + }, + { + "title": "Visser", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 35.5", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "200" + }, + { + "title": "The Mutation", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 36", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "160" + }, + { + "title": "The Weakness", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 37", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "129" + }, + { + "title": "The Arrival", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 38", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "148" + }, + { + "title": "The Hidden Palace", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 39", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Other", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 40", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "130" + }, + { + "title": "Alternamorphs #2: The Next Passage", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 40.5", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Megamorphs #4: Back to Before", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 40.75", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Familiar", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 41", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "143" + }, + { + "title": "The Journey", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 42", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "150" + }, + { + "title": "The Test", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 43", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "135" + }, + { + "title": "The Unexpected", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 44", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "164" + }, + { + "title": "The Revelation", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 45", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "136" + }, + { + "title": "The Deception", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 46", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "118" + }, + { + "title": "The Resistance", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 47", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "141" + }, + { + "title": "The Ellimist Chronicles", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 47.5", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "200" + }, + { + "title": "The Return", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 48", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "169" + }, + { + "title": "The Diversion", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 49", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "164" + }, + { + "title": "The Ultimate", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 50", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "139" + }, + { + "title": "The Absolute", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 51", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "154" + }, + { + "title": "The Sacrifice", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 52", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "177" + }, + { + "title": "The Answer", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 53", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "183" + }, + { + "title": "The Beginning", + "authorFirst": "Katherine", + "authorLast": "Applegate", + "genre": "Sci-Fi", + "series": "Animorphs 54", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "159" + }, + { + "title": "Ghoster", + "authorFirst": "Jason", + "authorLast": "Arnopp", + "genre": "Thriller", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "488" + }, + { + "title": "Mickey7", + "authorFirst": "Edward", + "authorLast": "Ashton", + "genre": "Sci-Fi", + "series": "Mickey7 1", + "owned": "Want", + "read": "X", + "compDate": "8/20/22", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "Foundation", + "authorFirst": "Isaac", + "authorLast": "Asimov", + "genre": "Sci-Fi/Classic", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "249" + }, + { + "title": "I, Robot", + "authorFirst": "Isaac", + "authorLast": "Asimov", + "genre": "Sci-Fi/Classic", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "224" + }, + { + "title": "The Handmaid's Tale", + "authorFirst": "Margaret", + "authorLast": "Atwood", + "genre": "Near Future", + "series": "Handmaid 1", + "owned": "Physical", + "read": "X", + "compDate": "2/3/21", + "status": "", + "information": "", + "pages": "350" + }, + { + "title": "The Testaments", + "authorFirst": "Margaret", + "authorLast": "Atwood", + "genre": "Near Future", + "series": "Handmaid 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "476" + }, + { + "title": "The Windup Girl", + "authorFirst": "Paolo", + "authorLast": "Bacigalupi", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "369" + }, + { + "title": "Bookshops & Bonedust", + "authorFirst": "Travis", + "authorLast": "Baldree", + "genre": "Fantasy", + "series": "Legends & Lattes 0", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Pages to Fill", + "authorFirst": "Travis", + "authorLast": "Baldree", + "genre": "Fantasy", + "series": "Legends & Lattes 0.5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Legends & Lattes", + "authorFirst": "Travis", + "authorLast": "Baldree", + "genre": "Fantasy", + "series": "Legends & Lattes 1", + "owned": "", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "304" + }, + { + "title": "Senlin Ascends", + "authorFirst": "Josiah", + "authorLast": "Bancroft", + "genre": "Fantasy", + "series": "The Books of Babel 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "365" + }, + { + "title": "Arm of the Sphinx", + "authorFirst": "Josiah", + "authorLast": "Bancroft", + "genre": "Fantasy", + "series": "The Books of Babel 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "408" + }, + { + "title": "The Hod King", + "authorFirst": "Josiah", + "authorLast": "Bancroft", + "genre": "Fantasy", + "series": "The Books of Babel 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Fall of Babel", + "authorFirst": "Josiah", + "authorLast": "Bancroft", + "genre": "Fantasy", + "series": "The Books of Babel 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "528" + }, + { + "title": "Consider Phlebas", + "authorFirst": "Iain", + "authorLast": "Banks", + "genre": "Sci-Fi", + "series": "Culture 1", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "5 Attempted", + "information": "", + "pages": "471" + }, + { + "title": "The Player of Games", + "authorFirst": "Iain", + "authorLast": "Banks", + "genre": "Sci-Fi", + "series": "Culture 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "Use of Weapons", + "authorFirst": "Iain", + "authorLast": "Banks", + "genre": "Sci-Fi", + "series": "Culture 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "Excession", + "authorFirst": "Iain", + "authorLast": "Banks", + "genre": "Sci-Fi", + "series": "Culture 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "460" + }, + { + "title": "Inversions", + "authorFirst": "Iain", + "authorLast": "Banks", + "genre": "Sci-Fi", + "series": "Culture 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "393" + }, + { + "title": "Look to Windward", + "authorFirst": "Iain", + "authorLast": "Banks", + "genre": "Sci-Fi", + "series": "Culture 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "369" + }, + { + "title": "Matter", + "authorFirst": "Iain", + "authorLast": "Banks", + "genre": "Sci-Fi", + "series": "Culture 7", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "593" + }, + { + "title": "Surface Detail", + "authorFirst": "Iain", + "authorLast": "Banks", + "genre": "Sci-Fi", + "series": "Culture 8", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "640" + }, + { + "title": "The Hydrogen Sonata", + "authorFirst": "Iain", + "authorLast": "Banks", + "genre": "Sci-Fi", + "series": "Culture 9", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "517" + }, + { + "title": "Against a Dark Background", + "authorFirst": "Iain", + "authorLast": "Banks", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "515" + }, + { + "title": "Feersum Endjinn", + "authorFirst": "Iain", + "authorLast": "Banks", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "284" + }, + { + "title": "The Algebraist", + "authorFirst": "Iain", + "authorLast": "Banks", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "Transition", + "authorFirst": "Iain", + "authorLast": "Banks", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "404" + }, + { + "title": "The Fourth Monkey", + "authorFirst": "J. D.", + "authorLast": "Barker", + "genre": "Mystery", + "series": "4MK 1", + "owned": "Kindle", + "read": "X", + "compDate": "7/10/20", + "status": "", + "information": "", + "pages": "404" + }, + { + "title": "The Fifth to Die", + "authorFirst": "J. D.", + "authorLast": "Barker", + "genre": "Mystery", + "series": "4MK 2", + "owned": "", + "read": "X", + "compDate": "11/9/20", + "status": "", + "information": "", + "pages": "526" + }, + { + "title": "The Sixth Wicked Child", + "authorFirst": "J. D.", + "authorLast": "Barker", + "genre": "Mystery", + "series": "4MK 3", + "owned": "", + "read": "X", + "compDate": "11/10/20", + "status": "", + "information": "", + "pages": "532" + }, + { + "title": "The Silence of the Girls", + "authorFirst": "Pat", + "authorLast": "Barker", + "genre": "Fantasy/Greek", + "series": "Women of Troy 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "304" + }, + { + "title": "The Women of Troy", + "authorFirst": "Pat", + "authorLast": "Barker", + "genre": "Fantasy/Greek", + "series": "Women of Troy 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "383" + }, + { + "title": "The Bone Ships", + "authorFirst": "RJ", + "authorLast": "Barker", + "genre": "Fantasy", + "series": "The Tide Child Trilogy 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "257" + }, + { + "title": "Call of the Bone Ships", + "authorFirst": "RJ", + "authorLast": "Barker", + "genre": "Fantasy", + "series": "The Tide Child Trilogy 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Bone Ship's Wake", + "authorFirst": "RJ", + "authorLast": "Barker", + "genre": "Fantasy", + "series": "The Tide Child Trilogy 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Age of Assassins", + "authorFirst": "RJ", + "authorLast": "Barker", + "genre": "Fantasy", + "series": "The Wounded Kingdom 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Blood of Assassins", + "authorFirst": "RJ", + "authorLast": "Barker", + "genre": "Fantasy", + "series": "The Wounded Kingdom 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "King of Assassins", + "authorFirst": "RJ", + "authorLast": "Barker", + "genre": "Fantasy", + "series": "The Wounded Kingdom 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Dead Silence", + "authorFirst": "S.A.", + "authorLast": "Barnes", + "genre": "Sci-Fi/Horror", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The City Inside", + "authorFirst": "Samit", + "authorLast": "Basu", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Bound", + "authorFirst": "Alan", + "authorLast": "Baxter", + "genre": "Thriller", + "series": "Alex Caine 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "333" + }, + { + "title": "Obsidian", + "authorFirst": "Alan", + "authorLast": "Baxter", + "genre": "Thriller", + "series": "Alex Caine 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Abduction", + "authorFirst": "Alan", + "authorLast": "Baxter", + "genre": "Thriller", + "series": "Alex Caine 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "388" + }, + { + "title": "Realmshift", + "authorFirst": "Alan", + "authorLast": "Baxter", + "genre": "Thriller", + "series": "Balance Duology 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "460" + }, + { + "title": "Magesign", + "authorFirst": "Alan", + "authorLast": "Baxter", + "genre": "Thriller", + "series": "Balance Duology 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "286" + }, + { + "title": "Devouring Dark", + "authorFirst": "Alan", + "authorLast": "Baxter", + "genre": "Thriller", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "Hidden City", + "authorFirst": "Alan", + "authorLast": "Baxter", + "genre": "Thriller", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "264" + }, + { + "title": "Foundryside", + "authorFirst": "Robert Jackson", + "authorLast": "Bennett", + "genre": "Fantasy", + "series": "Founders Trilogy 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "503" + }, + { + "title": "Shorefall", + "authorFirst": "Robert Jackson", + "authorLast": "Bennett", + "genre": "Fantasy", + "series": "Founders Trilogy 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "456" + }, + { + "title": "The Cruel Stars", + "authorFirst": "John", + "authorLast": "Birmingham", + "genre": "Sci-Fi", + "series": "Cruel Stars 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "The Shattered Skies", + "authorFirst": "John", + "authorLast": "Birmingham", + "genre": "Sci-Fi", + "series": "Cruel Stars 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Empty Heavens", + "authorFirst": "John", + "authorLast": "Birmingham", + "genre": "Sci-Fi", + "series": "Cruel Stars 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "FantasticLand", + "authorFirst": "Mike", + "authorLast": "Bockoven", + "genre": "Horror", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "272" + }, + { + "title": "Kitchen Confidential", + "authorFirst": "Anthony", + "authorLast": "Bourdain", + "genre": "Nonfiction", + "series": "", + "owned": "Physical", + "read": "X", + "compDate": "10/25/20", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "Medium Raw", + "authorFirst": "Anthony", + "authorLast": "Bourdain", + "genre": "Nonfiction", + "series": "", + "owned": "Physical", + "read": "X", + "compDate": "7/26/20", + "status": "", + "information": "", + "pages": "288" + }, + { + "title": "No Reservations", + "authorFirst": "Anthony", + "authorLast": "Bourdain", + "genre": "Nonfiction", + "series": "", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "288" + }, + { + "title": "Wake of Vultures", + "authorFirst": "Lila", + "authorLast": "Bowen", + "genre": "Fantasy", + "series": "The Shadow 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Conspiracy of Ravens", + "authorFirst": "Lila", + "authorLast": "Bowen", + "genre": "Fantasy", + "series": "The Shadow 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "359" + }, + { + "title": "Malice of Crows", + "authorFirst": "Lila", + "authorLast": "Bowen", + "genre": "Fantasy", + "series": "The Shadow 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "368" + }, + { + "title": "Treason of Hawks", + "authorFirst": "Lila", + "authorLast": "Bowen", + "genre": "Fantasy", + "series": "The Shadow 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "371" + }, + { + "title": "The Infinity Courts", + "authorFirst": "Akemi Dawn", + "authorLast": "Bowman", + "genre": "Sci-Fi/Fantasy", + "series": "Infinity Courts 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Fahrenheit 451", + "authorFirst": "Ray", + "authorLast": "Bradbury", + "genre": "Sci-Fi/Classic", + "series": "", + "owned": "Physical", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "190" + }, + { + "title": "The Martian Chronicles", + "authorFirst": "Ray", + "authorLast": "Bradbury", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "256" + }, + { + "title": "The Warded Man", + "authorFirst": "Peter V.", + "authorLast": "Brett", + "genre": "Fantasy", + "series": "Demon Cycle 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "416" + }, + { + "title": "The Desert Spear", + "authorFirst": "Peter V.", + "authorLast": "Brett", + "genre": "Fantasy", + "series": "Demon Cycle 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "712" + }, + { + "title": "The Daylight War", + "authorFirst": "Peter V.", + "authorLast": "Brett", + "genre": "Fantasy", + "series": "Demon Cycle 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "632" + }, + { + "title": "The Skull Throne", + "authorFirst": "Peter V.", + "authorLast": "Brett", + "genre": "Fantasy", + "series": "Demon Cycle 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "760" + }, + { + "title": "The Core", + "authorFirst": "Peter V.", + "authorLast": "Brett", + "genre": "Fantasy", + "series": "Demon Cycle 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "848" + }, + { + "title": "World War Z", + "authorFirst": "Max", + "authorLast": "Brooks", + "genre": "Horror", + "series": "", + "owned": "Physical", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "399" + }, + { + "title": "The Sword of Shannara", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 01", + "owned": "EPUB + Physical", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "726" + }, + { + "title": "The Elfstones of Shannara", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 02", + "owned": "EPUB + Physical", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "608" + }, + { + "title": "The Wishsong of Shannara", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 03", + "owned": "EPUB + Physical", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "The Scions of Shannara", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 04, Heritage of Shannara 1", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "507" + }, + { + "title": "The Druid of Shannara", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 05, Heritage of Shannara 2", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "464" + }, + { + "title": "The Elf Queen of Shannara", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 06, Heritage of Shannara 3", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "403" + }, + { + "title": "The Talismans of Shannara", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 07, Heritage of Shannara 4", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "453" + }, + { + "title": "The First King of Shannara", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 08", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "485" + }, + { + "title": "Running with the Demon", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 09, Word & Void 1", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "448" + }, + { + "title": "A Knight of the Word", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 10, Word & Void 2", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "397" + }, + { + "title": "Angel Fire East", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 11, Word & Void 3", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "368" + }, + { + "title": "Ilse Witch", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 12, Voyage of the Jerle Shannara 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "576" + }, + { + "title": "Antrax", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 13, Voyage of the Jerle Shannara 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "Morgawr", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 14, Voyage of the Jerle Shannara 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "417" + }, + { + "title": "Jarka Ruus", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 15, High Druid of Shannara 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Tanequil", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 16, High Druid of Shannara 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "392" + }, + { + "title": "Straken", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 17, High Druid of Shannara 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "368" + }, + { + "title": "Armageddon's Children", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 18, Genesis of Shannara 1", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "404" + }, + { + "title": "The Elves of Cintra", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 19, Genesis of Shannara 2", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Gypsy Morph", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 20, Genesis of Shannara 3", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "402" + }, + { + "title": "Bearers of the Black Staff", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 21, Legends of Shannara 1", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "The Measure of the Magic", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 22, Legends of Shannara 2", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "574" + }, + { + "title": "Allanon's Quest", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 23, Paladins of Shannara 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Weapon Master's Choice", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 24, Paladins of Shannara 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Black Irix", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 25, Paladins of Shannara 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Wards of Faerie", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 26, Dark Legacy of Shannara 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "647" + }, + { + "title": "Bloodfire Quest", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 27, Dark Legacy of Shannara 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "517" + }, + { + "title": "Witch Wraith", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 28, Dark Legacy of Shannara 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "415" + }, + { + "title": "The High Druid's Blade", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 29, Defenders of Shannara 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "The Darkling Child", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 30, Defenders of Shannara 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "The Sorcerer's Daughter", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 31, Defenders of Shannara 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "334" + }, + { + "title": "The Black Elfstone", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 32, Fall of Shannara 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "424" + }, + { + "title": "The Skaar Invasion", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 33, Fall of Shannara 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "The Stiehl Assassin", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 34, Fall of Shannara 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "335" + }, + { + "title": "The Last Druid", + "authorFirst": "Terry", + "authorLast": "Brooks", + "genre": "High Fantasy", + "series": "Shannara 35, Fall of Shannara 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "Angels and Demons", + "authorFirst": "Dan", + "authorLast": "Brown", + "genre": "Thriller", + "series": "Robert Langdon 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "274" + }, + { + "title": "The Da Vinci Code", + "authorFirst": "Dan", + "authorLast": "Brown", + "genre": "Thriller", + "series": "Robert Langdon 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "494" + }, + { + "title": "The Lost Symbol", + "authorFirst": "Dan", + "authorLast": "Brown", + "genre": "Thriller", + "series": "Robert Langdon 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "604" + }, + { + "title": "Inferno", + "authorFirst": "Dan", + "authorLast": "Brown", + "genre": "Thriller", + "series": "Robert Langdon 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "592" + }, + { + "title": "Origin", + "authorFirst": "Dan", + "authorLast": "Brown", + "genre": "Thriller", + "series": "Robert Langdon 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "637" + }, + { + "title": "Deception Point", + "authorFirst": "Dan", + "authorLast": "Brown", + "genre": "Thriller", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "559" + }, + { + "title": "Digital Fortress", + "authorFirst": "Dan", + "authorLast": "Brown", + "genre": "Thriller", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "447" + }, + { + "title": "Red Rising", + "authorFirst": "Pierce", + "authorLast": "Brown", + "genre": "Sci-Fi", + "series": "Red Rising 1", + "owned": "", + "read": "X", + "compDate": "7/6/24", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "Golden Son", + "authorFirst": "Pierce", + "authorLast": "Brown", + "genre": "Sci-Fi", + "series": "Red Rising 2", + "owned": "", + "read": "X", + "compDate": "7/10/24", + "status": "", + "information": "", + "pages": "456" + }, + { + "title": "Morning Star", + "authorFirst": "Pierce", + "authorLast": "Brown", + "genre": "Sci-Fi", + "series": "Red Rising 3", + "owned": "", + "read": "X", + "compDate": "7/30/24", + "status": "", + "information": "", + "pages": "672" + }, + { + "title": "Iron Gold", + "authorFirst": "Pierce", + "authorLast": "Brown", + "genre": "Sci-Fi", + "series": "Red Rising 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "672" + }, + { + "title": "Dark Age", + "authorFirst": "Pierce", + "authorLast": "Brown", + "genre": "Sci-Fi", + "series": "Red Rising 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "800" + }, + { + "title": "Light Bringer", + "authorFirst": "Pierce", + "authorLast": "Brown", + "genre": "Sci-Fi", + "series": "Red Rising 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Blacktongue Thief", + "authorFirst": "Christopher", + "authorLast": "Buehlman", + "genre": "Fantasy", + "series": "Blacktongue 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "The Curse of Chalion", + "authorFirst": "Lois McMaster", + "authorLast": "Bujold", + "genre": "Fantasy", + "series": "Chalion 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "442" + }, + { + "title": "Paladin of Souls", + "authorFirst": "Lois McMaster", + "authorLast": "Bujold", + "genre": "Fantasy", + "series": "Chalion 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "436" + }, + { + "title": "The Hallowed Hunt", + "authorFirst": "Lois McMaster", + "authorLast": "Bujold", + "genre": "Fantasy", + "series": "Chalion 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "436" + }, + { + "title": "A Clockwork Orange", + "authorFirst": "Anthony", + "authorLast": "Burgess", + "genre": "Sci-Fi/Classic", + "series": "", + "owned": "Physical", + "read": "X", + "compDate": "10/23/20", + "status": "", + "information": "", + "pages": "192" + }, + { + "title": "Storm Front", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 01", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "339" + }, + { + "title": "Fool Moon", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 02", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "355" + }, + { + "title": "Grave Peril", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 03", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "432" + }, + { + "title": "Summer Knight", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 04", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "394" + }, + { + "title": "Death Masks", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 05", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "Blood Rites", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 06", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Dead Beat", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 07", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "Proven Guilty", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 08", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "496" + }, + { + "title": "White Night", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 09", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "Small Favor", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 10", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "423" + }, + { + "title": "Turn Coat", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 11", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "499" + }, + { + "title": "Changes", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 12", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "441" + }, + { + "title": "Ghost Story", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 13", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "481" + }, + { + "title": "Cold Days", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 14", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "578" + }, + { + "title": "Skin Game", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 15", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "234" + }, + { + "title": "Peace Talks", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 16", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "Battle Ground", + "authorFirst": "Jim", + "authorLast": "Butcher", + "genre": "Fantasy/Mystery", + "series": "The Dresden Files 17", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "432" + }, + { + "title": "Of Blood and Fire", + "authorFirst": "Ryan", + "authorLast": "Cahill", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "518" + }, + { + "title": "Queen of the Conquered", + "authorFirst": "Kacen", + "authorLast": "Callender", + "genre": "Fantasy", + "series": "Isnalds of Blood and Storm 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "King of the Rising", + "authorFirst": "Kacen", + "authorLast": "Callender", + "genre": "Fantasy", + "series": "Isnalds of Blood and Storm 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "Cold Iron", + "authorFirst": "Miles", + "authorLast": "Cameron", + "genre": "Fantasy", + "series": "Masters and Mages 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "472" + }, + { + "title": "Dark Forge", + "authorFirst": "Miles", + "authorLast": "Cameron", + "genre": "Fantasy", + "series": "Masters and Mages 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "Bright Steel", + "authorFirst": "Miles", + "authorLast": "Cameron", + "genre": "Fantasy", + "series": "Masters and Mages 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "432" + }, + { + "title": "Sunshine Patriots", + "authorFirst": "Bill", + "authorLast": "Campbell", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Thief's Magic", + "authorFirst": "Trudi", + "authorLast": "Canavan", + "genre": "Fantasy", + "series": "The Millennium's Rule 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "560" + }, + { + "title": "Angel of Storms", + "authorFirst": "Trudi", + "authorLast": "Canavan", + "genre": "Fantasy", + "series": "The Millennium's Rule 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "576" + }, + { + "title": "Successor's Promise", + "authorFirst": "Trudi", + "authorLast": "Canavan", + "genre": "Fantasy", + "series": "The Millennium's Rule 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "539" + }, + { + "title": "Maker's Curse", + "authorFirst": "Trudi", + "authorLast": "Canavan", + "genre": "Fantasy", + "series": "The Millennium's Rule 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "Ender's Game", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 01 (7)", + "owned": "EPUB", + "read": "X", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "330" + }, + { + "title": "Speaker for the Dead", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 02 (17)", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "Xenocide", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 03 (18)", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "562" + }, + { + "title": "Children of the Mind", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 04 (19)", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "Ender's Shadow", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 05 (8)", + "owned": "EPUB", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "454" + }, + { + "title": "Shadow of the Hegemon", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 06 (10)", + "owned": "EPUB", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "444" + }, + { + "title": "Shadow Puppets", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 07 (12)", + "owned": "EPUB", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "352" + }, + { + "title": "First Meetings", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 08 (16)", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "218" + }, + { + "title": "Shadow of the Giant", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 09 (13)", + "owned": "EPUB", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "368" + }, + { + "title": "A War of Gifts", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 10 (9)", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "128" + }, + { + "title": "Ender in Exile", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 11 (14)", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "Shadows in Flight", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 12 (15)", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "224" + }, + { + "title": "Earth Unaware", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 13 (1)", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "392" + }, + { + "title": "Earth Afire", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 14 (2)", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "Earth Awakens", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 15 (3)", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "424" + }, + { + "title": "The Swarm", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 16 (4)", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "528" + }, + { + "title": "Children of the Fleet", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 17 (11)", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "304" + }, + { + "title": "The Hive", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 18 (5)", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "The Queens", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 19 (6)", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Last Shadow", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi/Military", + "series": "Ender's Game 20 (20)", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "288" + }, + { + "title": "Pathfinder", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi", + "series": "Pathfinder 1", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "Ruins", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi", + "series": "Pathfinder 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "Visitors", + "authorFirst": "Orson Scott", + "authorLast": "Card", + "genre": "Sci-Fi", + "series": "Pathfinder 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "608" + }, + { + "title": "The Book of Koli", + "authorFirst": "M. R.", + "authorLast": "Carey", + "genre": "Sci-fi", + "series": "The Rampart 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1" + }, + { + "title": "The Trials of Koli", + "authorFirst": "M. R.", + "authorLast": "Carey", + "genre": "Sci-fi", + "series": "The Rampart 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "249" + }, + { + "title": "The Fall of Koli", + "authorFirst": "M. R.", + "authorLast": "Carey", + "genre": "Sci-fi", + "series": "The Rampart 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "289" + }, + { + "title": "Day Zero", + "authorFirst": "C. Robert", + "authorLast": "Cargill", + "genre": "Sci-Fi", + "series": "Sea of Rust 0.5", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "304" + }, + { + "title": "Sea of Rust", + "authorFirst": "C. Robert", + "authorLast": "Cargill", + "genre": "Sci-Fi", + "series": "Sea of Rust 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "365" + }, + { + "title": "The Tethered Mage", + "authorFirst": "Melissa", + "authorLast": "Caruso", + "genre": "Fantasy", + "series": "Swords and Fire 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "475" + }, + { + "title": "The Defiant Heir", + "authorFirst": "Melissa", + "authorLast": "Caruso", + "genre": "Fantasy", + "series": "Swords and Fire 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "513" + }, + { + "title": "The Unbound Empire", + "authorFirst": "Melissa", + "authorLast": "Caruso", + "genre": "Fantasy", + "series": "Swords and Fire 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "560" + }, + { + "title": "The Defense", + "authorFirst": "Steven", + "authorLast": "Cavanagh", + "genre": "Thriller", + "series": "Eddie Flynn 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Plea", + "authorFirst": "Steven", + "authorLast": "Cavanagh", + "genre": "Thriller", + "series": "Eddie Flynn 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Liar", + "authorFirst": "Steven", + "authorLast": "Cavanagh", + "genre": "Thriller", + "series": "Eddie Flynn 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Thirteen", + "authorFirst": "Steven", + "authorLast": "Cavanagh", + "genre": "Thriller", + "series": "Eddie Flynn 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Fifty-Fifty", + "authorFirst": "Steven", + "authorLast": "Cavanagh", + "genre": "Thriller", + "series": "Eddie Flynn 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "3zekiel", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "407" + }, + { + "title": "Alien Space Tentacle Porn", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "164" + }, + { + "title": "Anomaly", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "374" + }, + { + "title": "But The Stars", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Deja Vu", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Feedback", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "460" + }, + { + "title": "Galactic Exploration", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "364" + }, + { + "title": "Hello World", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "659" + }, + { + "title": "Jury Duty", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "388" + }, + { + "title": "Little Green Men", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "188" + }, + { + "title": "Losing Mars", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Maelstrom", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "278" + }, + { + "title": "My Sweet Satan", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "482" + }, + { + "title": "Starship Mine", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "112" + }, + { + "title": "Welcome to the Occupied States of America", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "276" + }, + { + "title": "Wherever Seeds May Fall", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "Manual" + }, + { + "title": "Xenophobia", + "authorFirst": "Peter", + "authorLast": "Cawdron", + "genre": "Sci-Fi", + "series": "First Contact", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "394" + }, + { + "title": "The Rule of Luck", + "authorFirst": "Catherine", + "authorLast": "Cerveny", + "genre": "Sci-Fi", + "series": "Felicia Sevigny 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "391" + }, + { + "title": "The Chaos of Luck", + "authorFirst": "Catherine", + "authorLast": "Cerveny", + "genre": "Sci-Fi", + "series": "Felicia Sevigny 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "432" + }, + { + "title": "The Game of Luck", + "authorFirst": "Catherine", + "authorLast": "Cerveny", + "genre": "Sci-Fi", + "series": "Felicia Sevigny 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "468" + }, + { + "title": "The Amazing Adventures of Kavalier and Clay", + "authorFirst": "Michael", + "authorLast": "Chabon", + "genre": "Historical Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Yiddish Policeman's Union", + "authorFirst": "Michael", + "authorLast": "Chabon", + "genre": "Mystery", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The City of Brass", + "authorFirst": "S.A.", + "authorLast": "Chakraborty", + "genre": "Fantasy", + "series": "Middle Eastern 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "Prime Reading", + "pages": "Manual" + }, + { + "title": "The Kingdom of Copper", + "authorFirst": "S.A.", + "authorLast": "Chakraborty", + "genre": "Fantasy", + "series": "Middle Eastern 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Empire of Gold", + "authorFirst": "S.A.", + "authorLast": "Chakraborty", + "genre": "Fantasy", + "series": "Middle Eastern 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "A Psalm for the Wild-Built", + "authorFirst": "Becky", + "authorLast": "Chambers", + "genre": "Sci-Fi", + "series": "Monk & Robot 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "160" + }, + { + "title": "A Good Heretic", + "authorFirst": "Becky", + "authorLast": "Chambers", + "genre": "Sci-Fi", + "series": "Wayfarers 0.5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Long Way to a Small, Angry Planet", + "authorFirst": "Becky", + "authorLast": "Chambers", + "genre": "Sci-Fi", + "series": "Wayfarers 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Prime Reading", + "pages": "441" + }, + { + "title": "A Closed and Common Orbit", + "authorFirst": "Becky", + "authorLast": "Chambers", + "genre": "Sci-Fi", + "series": "Wayfarers 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "Record of a Spaceborn Few", + "authorFirst": "Becky", + "authorLast": "Chambers", + "genre": "Sci-Fi", + "series": "Wayfarers 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "359" + }, + { + "title": "The Galaxy, and the Ground Within", + "authorFirst": "Becky", + "authorLast": "Chambers", + "genre": "Sci-Fi", + "series": "Wayfarers 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "368" + }, + { + "title": "Eat a Peach - A Memoir", + "authorFirst": "David", + "authorLast": "Chang", + "genre": "Autobiography", + "series": "", + "owned": "", + "read": "X", + "compDate": "1/22/22", + "status": "", + "information": "", + "pages": "288" + }, + { + "title": "The Reader", + "authorFirst": "Traci", + "authorLast": "Chee", + "genre": "Fantasy", + "series": "The Reader Trilogy 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "453" + }, + { + "title": "The Speaker", + "authorFirst": "Traci", + "authorLast": "Chee", + "genre": "Fantasy", + "series": "The Reader Trilogy 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "500" + }, + { + "title": "The Storyteller", + "authorFirst": "Traci", + "authorLast": "Chee", + "genre": "Fantasy", + "series": "The Reader Trilogy 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "535" + }, + { + "title": "Here and Now and Then", + "authorFirst": "Mike", + "authorLast": "Chen", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "344" + }, + { + "title": "The Widow Queen", + "authorFirst": "Elzbieta", + "authorLast": "Cherezinska", + "genre": "Fantasy", + "series": "The Bold 1", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "512" + }, + { + "title": "Famous Men Who Never Lived", + "authorFirst": "K.", + "authorLast": "Chess", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "323" + }, + { + "title": "Stories of your Life and Others", + "authorFirst": "Ted", + "authorLast": "Chiang", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "288" + }, + { + "title": "The Lifecycle of Software Objects", + "authorFirst": "Ted", + "authorLast": "Chiang", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "150" + }, + { + "title": "Black Water Sister", + "authorFirst": "Zen", + "authorLast": "Cho", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "The Last Namsara", + "authorFirst": "Kristen", + "authorLast": "Ciccarelli", + "genre": "Fantasy", + "series": "Iskari 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "Series Priority", + "pages": "440" + }, + { + "title": "The Caged Queen", + "authorFirst": "Kristen", + "authorLast": "Ciccarelli", + "genre": "Fantasy", + "series": "Iskari 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "The Sky Weaver", + "authorFirst": "Kristen", + "authorLast": "Ciccarelli", + "genre": "Fantasy", + "series": "Iskari 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Three-Body Problem", + "authorFirst": "Liu", + "authorLast": "Cixin", + "genre": "Sci-Fi", + "series": "Remembrance of Earth's Past 1", + "owned": "", + "read": "X", + "compDate": "10/6/21", + "status": "", + "information": "", + "pages": "674" + }, + { + "title": "The Dark Forest", + "authorFirst": "Liu", + "authorLast": "Cixin", + "genre": "Sci-Fi", + "series": "Remembrance of Earth's Past 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "550" + }, + { + "title": "Death's End", + "authorFirst": "Liu", + "authorLast": "Cixin", + "genre": "Sci-Fi", + "series": "Remembrance of Earth's Past 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "674" + }, + { + "title": "Ball Lightning", + "authorFirst": "Liu", + "authorLast": "Cixin", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "China 2185", + "authorFirst": "Liu", + "authorLast": "Cixin", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Supernova Era", + "authorFirst": "Liu", + "authorLast": "Cixin", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Devil's Bricks", + "authorFirst": "Liu", + "authorLast": "Cixin", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Hunt for Red October", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 01", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "479" + }, + { + "title": "Patriot Games", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 02", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "541" + }, + { + "title": "The Cardinal of the Kremlin", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 03", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Clear and Present Danger", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 04", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "696" + }, + { + "title": "The Sum of All Fears", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 05", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "914" + }, + { + "title": "Without Remorse", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 06", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "768" + }, + { + "title": "Debt of Honor", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 07", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "828" + }, + { + "title": "Executive Orders", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 08", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1101" + }, + { + "title": "Rainbow Six", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 09", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "897" + }, + { + "title": "The Bear and the Dragon", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 10", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1028" + }, + { + "title": "Red Rabbit", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 11", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "720" + }, + { + "title": "The Teeth of the Tiger", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 12", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "431" + }, + { + "title": "Dead or Alive", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 13", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "848" + }, + { + "title": "Locked On", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 14", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "853" + }, + { + "title": "Threat Vector", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 15", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Command Authority", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 16", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "739" + }, + { + "title": "Support and Defend", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 17", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "12" + }, + { + "title": "Full Force and Effect", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 18", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Under Fire", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 19", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "Commander in Chief", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 20", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Duty and Honor", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 21", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "True Faith and Allegiance", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 22", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Point of Contact", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 23", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Power and Empire", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 24", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Line of Sight", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 25", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Oath of Office", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 26", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Enemy Contact", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "Ryanverse 27", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "Against All Enemies", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "756" + }, + { + "title": "Red Storm Rising", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "859" + }, + { + "title": "SSN", + "authorFirst": "Tom", + "authorLast": "Clancy", + "genre": "Military", + "series": "", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "352" + }, + { + "title": "The Unbroken", + "authorFirst": "C.L.", + "authorLast": "Clark", + "genre": "Fantasy", + "series": "Magic of the Lost 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Forsaken Skies", + "authorFirst": "D. Nolan", + "authorLast": "Clark", + "genre": "Sci-Fi", + "series": "The Silence 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "597" + }, + { + "title": "Forgotten Worlds", + "authorFirst": "D. Nolan", + "authorLast": "Clark", + "genre": "Sci-Fi", + "series": "The Silence 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "617" + }, + { + "title": "Forbidden Suns", + "authorFirst": "D. Nolan", + "authorLast": "Clark", + "genre": "Sci-Fi", + "series": "The Silence 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "547" + }, + { + "title": "A Dead Djinn in Cairo", + "authorFirst": "P. Djeli", + "authorLast": "Clark", + "genre": "Fantasy", + "series": "Dead Djinn Universe 0.1", + "owned": "", + "read": "X", + "compDate": "8/7/22", + "status": "", + "information": "", + "pages": "46" + }, + { + "title": "The Angel of Khan el-Khalili", + "authorFirst": "P. Djeli", + "authorLast": "Clark", + "genre": "Fantasy", + "series": "Dead Djinn Universe 0.2", + "owned": "", + "read": "X", + "compDate": "8/7/22", + "status": "", + "information": "", + "pages": "32" + }, + { + "title": "The Haunting of Tram Car 015", + "authorFirst": "P. Djeli", + "authorLast": "Clark", + "genre": "Fantasy", + "series": "Dead Djinn Universe 0.3", + "owned": "", + "read": "X", + "compDate": "8/16/22", + "status": "", + "information": "", + "pages": "1" + }, + { + "title": "A Master of Djinn", + "authorFirst": "P. Djeli", + "authorLast": "Clark", + "genre": "Fantasy", + "series": "Dead Djinn Universe 01", + "owned": "Want", + "read": "X", + "compDate": "8/7/22", + "status": "", + "information": "", + "pages": "440" + }, + { + "title": "Ring Shout", + "authorFirst": "P. Djeli", + "authorLast": "Clark", + "genre": "Horror", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "High priority", + "pages": "168" + }, + { + "title": "Jonathan Strange and Mr. Norrell", + "authorFirst": "Susanna", + "authorLast": "Clarke", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "864" + }, + { + "title": "Piranesi", + "authorFirst": "Susanna", + "authorLast": "Clarke", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "272" + }, + { + "title": "Ready Player One", + "authorFirst": "Ernest", + "authorLast": "Cline", + "genre": "Sci-Fi/Classic", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "462" + }, + { + "title": "Seeds of Earth", + "authorFirst": "Michael", + "authorLast": "Cobley", + "genre": "Sci-Fi", + "series": "Humanity's Fire 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "632" + }, + { + "title": "The Orphaned Worlds", + "authorFirst": "Michael", + "authorLast": "Cobley", + "genre": "Sci-Fi", + "series": "Humanity's Fire 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Ascendant Stars", + "authorFirst": "Michael", + "authorLast": "Cobley", + "genre": "Sci-Fi", + "series": "Humanity's Fire 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "Ancestral Machines", + "authorFirst": "Michael", + "authorLast": "Cobley", + "genre": "Sci-Fi", + "series": "Humanity's Fire 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "656" + }, + { + "title": "Splintered Suns", + "authorFirst": "Michael", + "authorLast": "Cobley", + "genre": "Sci-Fi", + "series": "Humanity's Fire 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "528" + }, + { + "title": "Control Point", + "authorFirst": "Myke", + "authorLast": "Cole", + "genre": "Military", + "series": "Shadow Ops 1", + "owned": "", + "read": "", + "compDate": "", + "status": "7 Abandoned", + "information": "", + "pages": "Manual" + }, + { + "title": "Fortress Frontier", + "authorFirst": "Myke", + "authorLast": "Cole", + "genre": "Military", + "series": "Shadow Ops 2", + "owned": "", + "read": "", + "compDate": "", + "status": "7 Abandoned", + "information": "", + "pages": "Manual" + }, + { + "title": "Breach Zone", + "authorFirst": "Myke", + "authorLast": "Cole", + "genre": "Military", + "series": "Shadow Ops 3", + "owned": "", + "read": "", + "compDate": "", + "status": "7 Abandoned", + "information": "", + "pages": "Manual" + }, + { + "title": "Gemini Cell", + "authorFirst": "Myke", + "authorLast": "Cole", + "genre": "Military", + "series": "The Reawakening 1", + "owned": "", + "read": "", + "compDate": "", + "status": "7 Abandoned", + "information": "", + "pages": "Manual" + }, + { + "title": "Javelin Rain", + "authorFirst": "Myke", + "authorLast": "Cole", + "genre": "Military", + "series": "The Reawakening 2", + "owned": "", + "read": "", + "compDate": "", + "status": "7 Abandoned", + "information": "", + "pages": "352" + }, + { + "title": "Siege Line", + "authorFirst": "Myke", + "authorLast": "Cole", + "genre": "Military", + "series": "The Reawakening 3", + "owned": "", + "read": "", + "compDate": "", + "status": "7 Abandoned", + "information": "", + "pages": "368" + }, + { + "title": "Armored Saint", + "authorFirst": "Myke", + "authorLast": "Cole", + "genre": "Epic Fantasy", + "series": "The Sacred Throne 1", + "owned": "Physical", + "read": "X", + "compDate": "4/6/19", + "status": "", + "information": "", + "pages": "208" + }, + { + "title": "The Queen of Crows", + "authorFirst": "Myke", + "authorLast": "Cole", + "genre": "Epic Fantasy", + "series": "The Sacred Throne 2", + "owned": "", + "read": "", + "compDate": "", + "status": "7 Abandoned", + "information": "", + "pages": "254" + }, + { + "title": "The Killing Light", + "authorFirst": "Myke", + "authorLast": "Cole", + "genre": "Epic Fantasy", + "series": "The Sacred Throne 3", + "owned": "", + "read": "", + "compDate": "", + "status": "7 Abandoned", + "information": "", + "pages": "240" + }, + { + "title": "Sixteenth Watch", + "authorFirst": "Myke", + "authorLast": "Cole", + "genre": "Sci-Fi/Military", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "7 Abandoned", + "information": "", + "pages": "432" + }, + { + "title": "The Hunger Games", + "authorFirst": "Susanne", + "authorLast": "Collins", + "genre": "Sci-Fi", + "series": "Hunger Games 1", + "owned": "", + "read": "X", + "compDate": "11/26/20", + "status": "", + "information": "", + "pages": "374" + }, + { + "title": "Catching Fire", + "authorFirst": "Susanne", + "authorLast": "Collins", + "genre": "Sci-Fi", + "series": "Hunger Games 2", + "owned": "", + "read": "X", + "compDate": "11/27/20", + "status": "", + "information": "", + "pages": "391" + }, + { + "title": "Mockingjay", + "authorFirst": "Susanne", + "authorLast": "Collins", + "genre": "Sci-Fi", + "series": "Hunger Games 3", + "owned": "", + "read": "X", + "compDate": "11/30/20", + "status": "", + "information": "", + "pages": "390" + }, + { + "title": "The Mercy of Gods", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "Captive's War 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "Manual" + }, + { + "title": "Book 2", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "Captive's War 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Not Released", + "pages": "Manual" + }, + { + "title": "Book 3", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "Captive's War 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Not Released", + "pages": "Manual" + }, + { + "title": "Memory's Legion", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 0", + "owned": "Want", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "472" + }, + { + "title": "Drive", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 0.1", + "owned": "", + "read": "X", + "compDate": "7/12/21", + "status": "", + "information": "", + "pages": "30" + }, + { + "title": "The Churn", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 0.3", + "owned": "", + "read": "X", + "compDate": "7/12/21", + "status": "", + "information": "", + "pages": "86" + }, + { + "title": "The Butcher of Anderson Station", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 0.5", + "owned": "", + "read": "X", + "compDate": "7/12/21", + "status": "", + "information": "", + "pages": "33" + }, + { + "title": "Leviathan Wakes", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 1", + "owned": "Kindle (Want)", + "read": "X", + "compDate": "7/14/20", + "status": "", + "information": "Priority 2024", + "pages": "592" + }, + { + "title": "The Last Flight of the Cassandra", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 1.1", + "owned": "", + "read": "X", + "compDate": "7/12/21", + "status": "", + "information": "", + "pages": "30" + }, + { + "title": "Caliban's War", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 2", + "owned": "Want", + "read": "X", + "compDate": "1/21/21", + "status": "", + "information": "", + "pages": "605" + }, + { + "title": "Gods of Risk", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 2.5", + "owned": "", + "read": "X", + "compDate": "7/13/21", + "status": "", + "information": "", + "pages": "68" + }, + { + "title": "Abaddon's Gate", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 3", + "owned": "Want", + "read": "X", + "compDate": "2/10/21", + "status": "", + "information": "", + "pages": "566" + }, + { + "title": "The Vital Abyss", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 3.5", + "owned": "", + "read": "X", + "compDate": "7/18/21", + "status": "", + "information": "", + "pages": "75" + }, + { + "title": "Cibola Burn", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 4", + "owned": "Want", + "read": "X", + "compDate": "3/4/21", + "status": "", + "information": "", + "pages": "607" + }, + { + "title": "Nemesis Games", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 5", + "owned": "Want", + "read": "X", + "compDate": "4/10/21", + "status": "", + "information": "", + "pages": "536" + }, + { + "title": "Babylon's Ashes", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 6", + "owned": "Want", + "read": "X", + "compDate": "7/7/21", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "Strange Dogs", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 6.5", + "owned": "", + "read": "X", + "compDate": "7/20/21", + "status": "", + "information": "", + "pages": "80" + }, + { + "title": "Persepolis Rising", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 7", + "owned": "Want", + "read": "X", + "compDate": "7/25/21", + "status": "", + "information": "", + "pages": "560" + }, + { + "title": "Auberon", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 7.5", + "owned": "", + "read": "X", + "compDate": "7/25/21", + "status": "", + "information": "", + "pages": "63" + }, + { + "title": "Tiamat's Wrath", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 8", + "owned": "Want", + "read": "X", + "compDate": "8/11/21", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "Leviathan Falls", + "authorFirst": "James S. A.", + "authorLast": "Corey", + "genre": "Sci-Fi/Space Opera", + "series": "The Expanse 9", + "owned": "Kindle (Want)", + "read": "X", + "compDate": "12/3/21", + "status": "", + "information": "", + "pages": "560" + }, + { + "title": "Jurassic Park", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "Jurassic Park 1", + "owned": "Want", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "450" + }, + { + "title": "The Lost World", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "Jurassic Park 2", + "owned": "Want", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "Airframe", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "", + "owned": "Want", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "352" + }, + { + "title": "Congo", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "348" + }, + { + "title": "Disclosure", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "430" + }, + { + "title": "Dragon Teeth", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "336" + }, + { + "title": "Eaters of the Dead", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "219" + }, + { + "title": "Micro", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "496" + }, + { + "title": "Next", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "495" + }, + { + "title": "Pirate Latitudes", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "341" + }, + { + "title": "Prey", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "464" + }, + { + "title": "Rising Sun", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "399" + }, + { + "title": "Sphere", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "", + "owned": "Want", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "385" + }, + { + "title": "State of Fear", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "684" + }, + { + "title": "The Andromeda Strain", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "", + "owned": "Want", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "708" + }, + { + "title": "The Great Train Robbery", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "319" + }, + { + "title": "The Terminal Man", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "282" + }, + { + "title": "Timeline", + "authorFirst": "Michael", + "authorLast": "Crichton", + "genre": "Sci-Fi", + "series": "", + "owned": "Want", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "The Ferryman", + "authorFirst": "Justin", + "authorLast": "Cronin", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "2023 Sci-Fi Finalist", + "pages": "Manual" + }, + { + "title": "Dark Matter", + "authorFirst": "Blake", + "authorLast": "Crouch", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "368" + }, + { + "title": "Recursion", + "authorFirst": "Blake", + "authorLast": "Crouch", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "336" + }, + { + "title": "Skyborn", + "authorFirst": "David", + "authorLast": "Dalglish", + "genre": "Fantasy", + "series": "Seraphim 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "468" + }, + { + "title": "Fireborn", + "authorFirst": "David", + "authorLast": "Dalglish", + "genre": "Fantasy", + "series": "Seraphim 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "487" + }, + { + "title": "Shadowborn", + "authorFirst": "David", + "authorLast": "Dalglish", + "genre": "Fantasy", + "series": "Seraphim 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "491" + }, + { + "title": "A Dance of Cloaks", + "authorFirst": "David", + "authorLast": "Dalglish", + "genre": "Fantasy", + "series": "Shadow Dance 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "429" + }, + { + "title": "A Dance of Blades", + "authorFirst": "David", + "authorLast": "Dalglish", + "genre": "Fantasy", + "series": "Shadow Dance 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "412" + }, + { + "title": "A Dance of Mirrors", + "authorFirst": "David", + "authorLast": "Dalglish", + "genre": "Fantasy", + "series": "Shadow Dance 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "390" + }, + { + "title": "A Dance of Shadows", + "authorFirst": "David", + "authorLast": "Dalglish", + "genre": "Fantasy", + "series": "Shadow Dance 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "A Dance of Ghosts", + "authorFirst": "David", + "authorLast": "Dalglish", + "genre": "Fantasy", + "series": "Shadow Dance 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "A Dance of Chaos", + "authorFirst": "David", + "authorLast": "Dalglish", + "genre": "Fantasy", + "series": "Shadow Dance 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Soul Keeper", + "authorFirst": "David", + "authorLast": "Dalglish", + "genre": "Fantasy", + "series": "The Keepers 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Raven Caller", + "authorFirst": "David", + "authorLast": "Dalglish", + "genre": "Fantasy", + "series": "The Keepers 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Void Breaker", + "authorFirst": "David", + "authorLast": "Dalglish", + "genre": "Fantasy", + "series": "The Keepers 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Princess Beard", + "authorFirst": "Delilah S.", + "authorLast": "Dawson", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "382" + }, + { + "title": "Spellslinger", + "authorFirst": "Sebastien", + "authorLast": "de Castell", + "genre": "Fantasy", + "series": "Spellslinger 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "233" + }, + { + "title": "Shadowblack", + "authorFirst": "Sebastien", + "authorLast": "de Castell", + "genre": "Fantasy", + "series": "Spellslinger 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "370" + }, + { + "title": "Charmcaster", + "authorFirst": "Sebastien", + "authorLast": "de Castell", + "genre": "Fantasy", + "series": "Spellslinger 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "456" + }, + { + "title": "Soulbinder", + "authorFirst": "Sebastien", + "authorLast": "de Castell", + "genre": "Fantasy", + "series": "Spellslinger 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "456" + }, + { + "title": "Queenslayer", + "authorFirst": "Sebastien", + "authorLast": "de Castell", + "genre": "Fantasy", + "series": "Spellslinger 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Crownbreaker", + "authorFirst": "Sebastien", + "authorLast": "de Castell", + "genre": "Fantasy", + "series": "Spellslinger 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "Black: The Birth of Evil", + "authorFirst": "Ted", + "authorLast": "Dekker", + "genre": "Sci-Fi", + "series": "Circle Series 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Red: The Heroic Rescue", + "authorFirst": "Ted", + "authorLast": "Dekker", + "genre": "Sci-Fi", + "series": "Circle Series 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "White: The Great Pursuit", + "authorFirst": "Ted", + "authorLast": "Dekker", + "genre": "Sci-Fi", + "series": "Circle Series 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Green: The Beginning and the End", + "authorFirst": "Ted", + "authorLast": "Dekker", + "genre": "Sci-Fi", + "series": "Circle Series 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Last Watch", + "authorFirst": "J.S.", + "authorLast": "Dewes", + "genre": "Sci-Fi", + "series": "The Divide 1", + "owned": "EPUB", + "read": "X", + "compDate": "9/3/23", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "The Exiled Fleet", + "authorFirst": "J.S.", + "authorLast": "Dewes", + "genre": "Sci-Fi", + "series": "The Divide 2", + "owned": "EPUB", + "read": "X", + "compDate": "10/24/23", + "status": "", + "information": "", + "pages": "432" + }, + { + "title": "Rubicon", + "authorFirst": "J.S.", + "authorLast": "Dewes", + "genre": "Sci-Fi", + "series": "", + "owned": "EPUB", + "read": "X", + "compDate": "12/21/23", + "status": "", + "information": "", + "pages": "469" + }, + { + "title": "Do Androids Dream of Electric Sheep?", + "authorFirst": "Phillip K.", + "authorLast": "Dick", + "genre": "Sci-Fi", + "series": "Blade Runner 1", + "owned": "", + "read": "X", + "compDate": "5/9/21", + "status": "", + "information": "", + "pages": "258" + }, + { + "title": "The Edge of Human", + "authorFirst": "Phillip K.", + "authorLast": "Dick", + "genre": "Sci-Fi", + "series": "Blade Runner 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Replicant Night", + "authorFirst": "Phillip K.", + "authorLast": "Dick", + "genre": "Sci-Fi", + "series": "Blade Runner 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Eye and Talon", + "authorFirst": "Phillip K.", + "authorLast": "Dick", + "genre": "Sci-Fi", + "series": "Blade Runner 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Machinehood", + "authorFirst": "S.B.", + "authorLast": "Divya", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "Manual" + }, + { + "title": "The Prey of Gods", + "authorFirst": "Nicky", + "authorLast": "Drayden", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "1" + }, + { + "title": "Kings of the Wyld", + "authorFirst": "Nicholas", + "authorLast": "Eames", + "genre": "Fantasy", + "series": "The Band 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "529" + }, + { + "title": "Bloody Rose", + "authorFirst": "Nicholas", + "authorLast": "Eames", + "genre": "Fantasy", + "series": "The Band 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "How Rory Thorne Destroyed the Multiverse", + "authorFirst": "K.", + "authorLast": "Eason", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "392" + }, + { + "title": "Teenage Mutant Ninja Turtles: The Last Ronin", + "authorFirst": "Kevin", + "authorLast": "Eastman", + "genre": "Sci-Fi", + "series": "", + "owned": "Physical", + "read": "X", + "compDate": "4/12/24", + "status": "", + "information": "", + "pages": "224" + }, + { + "title": "American War", + "authorFirst": "Omar", + "authorLast": "El Akkad", + "genre": "Dystopia", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "352" + }, + { + "title": "This Is How You Lose The Time War", + "authorFirst": "Amal", + "authorLast": "El-Mohtar", + "genre": "Sci-Fi", + "series": "", + "owned": "Physical", + "read": "X", + "compDate": "10/2/23", + "status": "", + "information": "", + "pages": "208" + }, + { + "title": "Axiom's End", + "authorFirst": "Lindsay", + "authorLast": "Ellis", + "genre": "Sci-Fi", + "series": "Noumena 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "384" + }, + { + "title": "Soul Searching", + "authorFirst": "Stephen", + "authorLast": "Embleton", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "A Half-Built Garden", + "authorFirst": "Ruthanna", + "authorLast": "Emrys", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Gardens of the Moon", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 01", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "1 In Progress", + "information": "Priority 2024", + "pages": "635" + }, + { + "title": "Deadhouse Gates", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 02", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "619" + }, + { + "title": "Memories of Ice", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 03", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "912" + }, + { + "title": "House of Chains", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 04", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "732" + }, + { + "title": "Midnight Tides", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 05", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "637" + }, + { + "title": "The Bonehunters", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 07", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Blood Follows", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 08.1, The Tales of Bauchelain and Korbal Broach, Vol 1", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "108" + }, + { + "title": "The Healthy Dead", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 08.2, The Tales of Bauchelain and Korbal Broach, Vol 1", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "100" + }, + { + "title": "The Lees of Laughter's End", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 08.3, The Tales of Bauchelain and Korbal Broach, Vol 1", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "128" + }, + { + "title": "Reaper's Gale", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 09", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "928" + }, + { + "title": "Toll the Hounds", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 11", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1280" + }, + { + "title": "Dust of Dreams", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 12", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1083" + }, + { + "title": "The Crippled God", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 14", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1049" + }, + { + "title": "Forge of Darkness", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 17, Kharkanas 1", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "760" + }, + { + "title": "Fall of Light", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 19, Kharkanas 2", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "837" + }, + { + "title": "Crack'd Pot Trail", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 21.1, The Tales of Bauchelain and Korbal Broach, Vol 2", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "181" + }, + { + "title": "The Wurms of Blearmouth", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 21.2, The Tales of Bauchelain and Korbal Broach, Vol 2", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "208" + }, + { + "title": "The Fiends of Nightmaria", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 21.3, The Tales of Bauchelain and Korbal Broach, Vol 2", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "112" + }, + { + "title": "Upon a Dark of Evil Overlords", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 24, The Tales of Bauchelain and Korbal Broach 7", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Walk in Shadow", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 25, Kharkanas 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The God is Not Willing", + "authorFirst": "Steven", + "authorLast": "Erikson", + "genre": "Fantasy", + "series": "Malazan 25, The Witness 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "688" + }, + { + "title": "Night of Knives", + "authorFirst": "Ian Cameron", + "authorLast": "Esslemont", + "genre": "Fantasy", + "series": "Malazan 06, Novels of the Malazan Empire 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "285" + }, + { + "title": "Return of the Crimson Guard", + "authorFirst": "Ian Cameron", + "authorLast": "Esslemont", + "genre": "Fantasy", + "series": "Malazan 10, Novels of the Malazan Empire 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Stonewielder", + "authorFirst": "Ian Cameron", + "authorLast": "Esslemont", + "genre": "Fantasy", + "series": "Malazan 13, Novels of the Malazan Empire 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "620" + }, + { + "title": "Orb Sceptre Throne", + "authorFirst": "Ian Cameron", + "authorLast": "Esslemont", + "genre": "Fantasy", + "series": "Malazan 15, Novels of the Malazan Empire 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Blood and Bone", + "authorFirst": "Ian Cameron", + "authorLast": "Esslemont", + "genre": "Fantasy", + "series": "Malazan 16, Novels of the Malazan Empire 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Assail", + "authorFirst": "Ian Cameron", + "authorLast": "Esslemont", + "genre": "Fantasy", + "series": "Malazan 18, Novels of the Malazan Empire 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Dancer's Lament", + "authorFirst": "Ian Cameron", + "authorLast": "Esslemont", + "genre": "Fantasy", + "series": "Malazan 20, Path to Ascendancy 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Deadhouse Landing", + "authorFirst": "Ian Cameron", + "authorLast": "Esslemont", + "genre": "Fantasy", + "series": "Malazan 22, Path to Ascendancy 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Kellanved's Reach", + "authorFirst": "Ian Cameron", + "authorLast": "Esslemont", + "genre": "Fantasy", + "series": "Malazan 23, Path to Ascendancy 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Forge of the High Mage", + "authorFirst": "Ian Cameron", + "authorLast": "Esslemont", + "genre": "Fantasy", + "series": "Malazan 26, Path to Ascendancy 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Blonde Roots", + "authorFirst": "Bernardine", + "authorLast": "Evaristo", + "genre": "Alternate History", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "Tom Recommends", + "pages": "Manual" + }, + { + "title": "Magician: Apprentice", + "authorFirst": "Raymond E.", + "authorLast": "Feist", + "genre": "Fantasy", + "series": "Riftwar Saga 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "323" + }, + { + "title": "Magician: Master", + "authorFirst": "Raymond E.", + "authorLast": "Feist", + "genre": "Fantasy", + "series": "Riftwar Saga 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Silverthorn", + "authorFirst": "Raymond E.", + "authorLast": "Feist", + "genre": "Fantasy", + "series": "Riftwar Saga 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "369" + }, + { + "title": "A Darkness at Sethanon", + "authorFirst": "Raymond E.", + "authorLast": "Feist", + "genre": "Fantasy", + "series": "Riftwar Saga 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "527" + }, + { + "title": "Dead Souls", + "authorFirst": "J. Lincoln", + "authorLast": "Fenn", + "genre": "Horror", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "347" + }, + { + "title": "Early Riser", + "authorFirst": "Jasper", + "authorLast": "Fforde", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "A Boy and his Dog at the End of the World", + "authorFirst": "C.A.", + "authorLast": "Fletcher", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Norylska Jroans", + "authorFirst": "Michael R.", + "authorLast": "Fletcher", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Fall of Giants", + "authorFirst": "Ken", + "authorLast": "Follett", + "genre": "Historical Fiction", + "series": "Century Trilogy 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "991" + }, + { + "title": "Winter of the World", + "authorFirst": "Ken", + "authorLast": "Follett", + "genre": "Historical Fiction", + "series": "Century Trilogy 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "957" + }, + { + "title": "Edge of Eternity", + "authorFirst": "Ken", + "authorLast": "Follett", + "genre": "Historical Fiction", + "series": "Century Trilogy 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1136" + }, + { + "title": "The Pillars of the Earth", + "authorFirst": "Ken", + "authorLast": "Follett", + "genre": "Historical Fiction", + "series": "Kingsbridge 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1019" + }, + { + "title": "World Without End", + "authorFirst": "Ken", + "authorLast": "Follett", + "genre": "Historical Fiction", + "series": "Kingsbridge 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1178" + }, + { + "title": "A Column of Fire", + "authorFirst": "Ken", + "authorLast": "Follett", + "genre": "Historical Fiction", + "series": "Kingsbridge 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "934" + }, + { + "title": "The Girl Who Could Move Sh*t with Her Mind", + "authorFirst": "Jackson", + "authorLast": "Ford", + "genre": "Sci-Fi", + "series": "Frost Files 1", + "owned": "Physical", + "read": "X", + "compDate": "4/22/20", + "status": "", + "information": "", + "pages": "482" + }, + { + "title": "Random Sh*t Flying Through The Air", + "authorFirst": "Jackson", + "authorLast": "Ford", + "genre": "Sci-Fi", + "series": "Frost Files 2", + "owned": "Physical", + "read": "X", + "compDate": "7/28/20", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "Eye of the Sh*t Storm", + "authorFirst": "Jackson", + "authorLast": "Ford", + "genre": "Sci-Fi", + "series": "Frost Files 3", + "owned": "EPUB + Physical", + "read": "X", + "compDate": "9/4/21", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "A Sh*tload of Crazy Powers", + "authorFirst": "Jackson", + "authorLast": "Ford", + "genre": "Sci-Fi", + "series": "Frost Files 4", + "owned": "EPUB + Physical", + "read": "X", + "compDate": "5/13/22", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "Engines of Empire", + "authorFirst": "R.S.", + "authorLast": "Ford", + "genre": "Fantasy/Steampunk", + "series": "The Age of Uprising 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Gilded Ones", + "authorFirst": "Namina", + "authorLast": "Forna", + "genre": "Fantasy", + "series": "Deathless 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "432" + }, + { + "title": "The Merciless Ones", + "authorFirst": "Namina", + "authorLast": "Forna", + "genre": "Fantasy", + "series": "Deathless 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "One Second After", + "authorFirst": "William R.", + "authorLast": "Forstchen", + "genre": "Sci-Fi", + "series": "John Matherson 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "352" + }, + { + "title": "One Year After", + "authorFirst": "William R.", + "authorLast": "Forstchen", + "genre": "Sci-Fi", + "series": "John Matherson 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "303" + }, + { + "title": "The Final Day", + "authorFirst": "William R.", + "authorLast": "Forstchen", + "genre": "Sci-Fi", + "series": "John Matherson 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "349" + }, + { + "title": "Black Sun Rising", + "authorFirst": "C.S.", + "authorLast": "Friedman", + "genre": "Fantasy", + "series": "Coldfire Trilogy 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "When True Night Falls", + "authorFirst": "C.S.", + "authorLast": "Friedman", + "genre": "Fantasy", + "series": "Coldfire Trilogy 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Crown of Shadows", + "authorFirst": "C.S.", + "authorLast": "Friedman", + "genre": "Fantasy", + "series": "Coldfire Trilogy 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Echo Wife", + "authorFirst": "Sarah", + "authorLast": "Gailey", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "256" + }, + { + "title": "Upright Women Wanted", + "authorFirst": "Sarah", + "authorLast": "Gailey", + "genre": "Fantasy", + "series": "", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "176" + }, + { + "title": "American Gods", + "authorFirst": "Neil", + "authorLast": "Gaiman", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "576" + }, + { + "title": "Neverwhere", + "authorFirst": "Neil", + "authorLast": "Gaiman", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "388" + }, + { + "title": "Norse Mythology", + "authorFirst": "Neil", + "authorLast": "Gaiman", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "304" + }, + { + "title": "Stardust", + "authorFirst": "Neil", + "authorLast": "Gaiman", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "238" + }, + { + "title": "The Ocean at the End of the Lane", + "authorFirst": "Neil", + "authorLast": "Gaiman", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "224" + }, + { + "title": "Pattern Recognition", + "authorFirst": "William", + "authorLast": "Gibson", + "genre": "Sci-Fi", + "series": "Blue Ant 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "368" + }, + { + "title": "Spook Country", + "authorFirst": "William", + "authorLast": "Gibson", + "genre": "Sci-Fi", + "series": "Blue Ant 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "Zero History", + "authorFirst": "William", + "authorLast": "Gibson", + "genre": "Sci-Fi", + "series": "Blue Ant 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "466" + }, + { + "title": "Virtual Light", + "authorFirst": "William", + "authorLast": "Gibson", + "genre": "Sci-Fi", + "series": "Bridge 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "Idoru", + "authorFirst": "William", + "authorLast": "Gibson", + "genre": "Sci-Fi", + "series": "Bridge 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "307" + }, + { + "title": "All Tomorrow's Parties", + "authorFirst": "William", + "authorLast": "Gibson", + "genre": "Sci-Fi", + "series": "Bridge 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "288" + }, + { + "title": "Neuromancer", + "authorFirst": "William", + "authorLast": "Gibson", + "genre": "Sci-Fi", + "series": "Sprawl 1", + "owned": "Physical", + "read": "X", + "compDate": "2/21/21", + "status": "", + "information": "", + "pages": "318" + }, + { + "title": "Count Zero", + "authorFirst": "William", + "authorLast": "Gibson", + "genre": "Sci-Fi", + "series": "Sprawl 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "278" + }, + { + "title": "Mona Lisa Overdrive", + "authorFirst": "William", + "authorLast": "Gibson", + "genre": "Sci-Fi", + "series": "Sprawl 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "Agency", + "authorFirst": "William", + "authorLast": "Gibson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "The Difference Engine", + "authorFirst": "William", + "authorLast": "Gibson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "395" + }, + { + "title": "The Peripheral", + "authorFirst": "William", + "authorLast": "Gibson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "496" + }, + { + "title": "Women's War", + "authorFirst": "Jenna", + "authorLast": "Glass", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "568" + }, + { + "title": "The Princess Bride", + "authorFirst": "William", + "authorLast": "Goldman", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "399" + }, + { + "title": "Wizard's First Rule", + "authorFirst": "Terry", + "authorLast": "Goodkind", + "genre": "Fantasy", + "series": "Sword of Truth 01", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "611" + }, + { + "title": "Stone of Tears", + "authorFirst": "Terry", + "authorLast": "Goodkind", + "genre": "Fantasy", + "series": "Sword of Truth 02", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "768" + }, + { + "title": "Blood of the Fold", + "authorFirst": "Terry", + "authorLast": "Goodkind", + "genre": "Fantasy", + "series": "Sword of Truth 03", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "576" + }, + { + "title": "Temple of the Winds", + "authorFirst": "Terry", + "authorLast": "Goodkind", + "genre": "Fantasy", + "series": "Sword of Truth 04", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "786" + }, + { + "title": "Soul of the Fire", + "authorFirst": "Terry", + "authorLast": "Goodkind", + "genre": "Fantasy", + "series": "Sword of Truth 05", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "624" + }, + { + "title": "Faith of the Fallen", + "authorFirst": "Terry", + "authorLast": "Goodkind", + "genre": "Fantasy", + "series": "Sword of Truth 06", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "704" + }, + { + "title": "The Pillars of Creation", + "authorFirst": "Terry", + "authorLast": "Goodkind", + "genre": "Fantasy", + "series": "Sword of Truth 07", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Naked Empire", + "authorFirst": "Terry", + "authorLast": "Goodkind", + "genre": "Fantasy", + "series": "Sword of Truth 08", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "670" + }, + { + "title": "Chainfire", + "authorFirst": "Terry", + "authorLast": "Goodkind", + "genre": "Fantasy", + "series": "Sword of Truth 09", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "672" + }, + { + "title": "Phantom", + "authorFirst": "Terry", + "authorLast": "Goodkind", + "genre": "Fantasy", + "series": "Sword of Truth 10", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "589" + }, + { + "title": "Confessor", + "authorFirst": "Terry", + "authorLast": "Goodkind", + "genre": "Fantasy", + "series": "Sword of Truth 11", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "608" + }, + { + "title": "The Witch's Heart", + "authorFirst": "Genevieve", + "authorLast": "Gornichec", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Feed", + "authorFirst": "Mira", + "authorLast": "Grant", + "genre": "Sci-Fi", + "series": "Newsflesh 1", + "owned": "Physical / EPUB", + "read": "X", + "compDate": "9/18/23", + "status": "", + "information": "", + "pages": "596" + }, + { + "title": "Deadline", + "authorFirst": "Mira", + "authorLast": "Grant", + "genre": "Sci-Fi", + "series": "Newsflesh 2", + "owned": "Physical / EPUB", + "read": "X", + "compDate": "9/20/23", + "status": "", + "information": "", + "pages": "584" + }, + { + "title": "Blackout", + "authorFirst": "Mira", + "authorLast": "Grant", + "genre": "Sci-Fi", + "series": "Newsflesh 3", + "owned": "Physical / EPUB", + "read": "X", + "compDate": "9/22/23", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "Feedback", + "authorFirst": "Mira", + "authorLast": "Grant", + "genre": "Sci-Fi", + "series": "Newsflesh 4", + "owned": "EPUB", + "read": "X", + "compDate": "10/20/23", + "status": "", + "information": "", + "pages": "489" + }, + { + "title": "Parasite", + "authorFirst": "Mira", + "authorLast": "Grant", + "genre": "Sci-Fi", + "series": "Parasitology 1", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "512" + }, + { + "title": "Symbiont", + "authorFirst": "Mira", + "authorLast": "Grant", + "genre": "Sci-Fi", + "series": "Parasitology 2", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "518" + }, + { + "title": "Chimera", + "authorFirst": "Mira", + "authorLast": "Grant", + "genre": "Sci-Fi", + "series": "Parasitology 3", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "496" + }, + { + "title": "Master & Apprentice", + "authorFirst": "Claudia", + "authorLast": "Gray", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "360" + }, + { + "title": "The Hand of the Sun King", + "authorFirst": "J.T.", + "authorLast": "Greathouse", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Grimm's Complete Fairy Tales", + "authorFirst": "Jacob", + "authorLast": "Grimm", + "genre": "Fantasy/Classic", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "646" + }, + { + "title": "The Magicians", + "authorFirst": "Lev", + "authorLast": "Grossman", + "genre": "Fantasy", + "series": "The Magicians 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "456" + }, + { + "title": "The Magician King", + "authorFirst": "Lev", + "authorLast": "Grossman", + "genre": "Fantasy", + "series": "The Magicians 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Magician's Land", + "authorFirst": "Lev", + "authorLast": "Grossman", + "genre": "Fantasy", + "series": "The Magicians 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "The Shadow of the Gods", + "authorFirst": "John", + "authorLast": "Gwynne", + "genre": "Fantasy", + "series": "Bloodsworn Saga 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "265" + }, + { + "title": "A Time of Dread", + "authorFirst": "John", + "authorLast": "Gwynne", + "genre": "Fantasy", + "series": "Of Blood and Bone 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "640" + }, + { + "title": "A Time of Blood", + "authorFirst": "John", + "authorLast": "Gwynne", + "genre": "Fantasy", + "series": "Of Blood and Bone 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "A Time of Courage", + "authorFirst": "John", + "authorLast": "Gwynne", + "genre": "Fantasy", + "series": "Of Blood and Bone 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "720" + }, + { + "title": "Malice", + "authorFirst": "John", + "authorLast": "Gwynne", + "genre": "Fantasy", + "series": "The Faithful and the Fallen 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "641" + }, + { + "title": "Valor", + "authorFirst": "John", + "authorLast": "Gwynne", + "genre": "Fantasy", + "series": "The Faithful and the Fallen 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "673" + }, + { + "title": "Ruin", + "authorFirst": "John", + "authorLast": "Gwynne", + "genre": "Fantasy", + "series": "The Faithful and the Fallen 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "672" + }, + { + "title": "Wrath", + "authorFirst": "John", + "authorLast": "Gwynne", + "genre": "Fantasy", + "series": "The Faithful and the Fallen 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "713" + }, + { + "title": "The Midnight Library", + "authorFirst": "Matt", + "authorLast": "Haig", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "X", + "compDate": "4/23/21", + "status": "", + "information": "", + "pages": "304" + }, + { + "title": "The Forever War", + "authorFirst": "Jon", + "authorLast": "Haldeman", + "genre": "Sci-Fi", + "series": "Forever War 1", + "owned": "Want", + "read": "X", + "compDate": "1/3/19", + "status": "4 Priority", + "information": "", + "pages": "278" + }, + { + "title": "Forever Free", + "authorFirst": "Jon", + "authorLast": "Haldeman", + "genre": "Sci-Fi", + "series": "Forever War 2", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Forever Peace", + "authorFirst": "Jon", + "authorLast": "Haldeman", + "genre": "Sci-Fi", + "series": "Forever War 3", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Supermarket", + "authorFirst": "Bobby", + "authorLast": "Hall", + "genre": "Thriller", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "288" + }, + { + "title": "Dragonslayer", + "authorFirst": "Duncan M.", + "authorLast": "Hamilton", + "genre": "Fantasy", + "series": "Dragonslayer 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "304" + }, + { + "title": "Knight of the Silver Circle", + "authorFirst": "Duncan M.", + "authorLast": "Hamilton", + "genre": "Fantasy", + "series": "Dragonslayer 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "328" + }, + { + "title": "Servant of the Crown", + "authorFirst": "Duncan M.", + "authorLast": "Hamilton", + "genre": "Fantasy", + "series": "Dragonslayer 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "336" + }, + { + "title": "Misspent Youth", + "authorFirst": "Peter F.", + "authorLast": "Hamilton", + "genre": "Sci-Fi", + "series": "Commonwealth 1: Saga 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "386" + }, + { + "title": "Pandora's Star", + "authorFirst": "Peter F.", + "authorLast": "Hamilton", + "genre": "Sci-Fi", + "series": "Commonwealth 1: Saga 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "988" + }, + { + "title": "Judas Unchained", + "authorFirst": "Peter F.", + "authorLast": "Hamilton", + "genre": "Sci-Fi", + "series": "Commonwealth 1: Saga 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "827" + }, + { + "title": "The Dreaming Void", + "authorFirst": "Peter F.", + "authorLast": "Hamilton", + "genre": "Sci-Fi", + "series": "Commonwealth 2: Void 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "646" + }, + { + "title": "The Temporal Void", + "authorFirst": "Peter F.", + "authorLast": "Hamilton", + "genre": "Sci-Fi", + "series": "Commonwealth 2: Void 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "745" + }, + { + "title": "The Evolutionary Void", + "authorFirst": "Peter F.", + "authorLast": "Hamilton", + "genre": "Sci-Fi", + "series": "Commonwealth 2: Void 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "672" + }, + { + "title": "The Abyss Beyond Dreams", + "authorFirst": "Peter F.", + "authorLast": "Hamilton", + "genre": "Sci-Fi", + "series": "Commonwealth 3: Chronicle of the Fallers 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "614" + }, + { + "title": "Night Without Smars", + "authorFirst": "Peter F.", + "authorLast": "Hamilton", + "genre": "Sci-Fi", + "series": "Commonwealth 3: Chronicle of the Fallers 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Reality Dysfunction", + "authorFirst": "Peter F.", + "authorLast": "Hamilton", + "genre": "Sci-Fi", + "series": "Confederation: The Night's Dawn Trilogy 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "848" + }, + { + "title": "The Neutronium Alchemist", + "authorFirst": "Peter F.", + "authorLast": "Hamilton", + "genre": "Sci-Fi", + "series": "Confederation: The Night's Dawn Trilogy 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "594" + }, + { + "title": "The Naked God", + "authorFirst": "Peter F.", + "authorLast": "Hamilton", + "genre": "Sci-Fi", + "series": "Confederation: The Night's Dawn Trilogy 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1184" + }, + { + "title": "Fallen Dragon", + "authorFirst": "Peter F.", + "authorLast": "Hamilton", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "650" + }, + { + "title": "Nophek Gloss", + "authorFirst": "Essa", + "authorLast": "Hansen", + "genre": "Sci-Fi", + "series": "The Graven 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "Azura Ghost", + "authorFirst": "Essa", + "authorLast": "Hansen", + "genre": "Sci-Fi", + "series": "The Graven 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "504" + }, + { + "title": "Tell Me an Ending", + "authorFirst": "Jo", + "authorLast": "Harkin", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "448" + }, + { + "title": "A Discovery of Witches", + "authorFirst": "Deborah", + "authorLast": "Harkness", + "genre": "Fantasy", + "series": "All Souls 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "664" + }, + { + "title": "Shadow of Night", + "authorFirst": "Deborah", + "authorLast": "Harkness", + "genre": "Fantasy", + "series": "All Souls 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "592" + }, + { + "title": "The Book of Life", + "authorFirst": "Deborah", + "authorLast": "Harkness", + "genre": "Fantasy", + "series": "All Souls 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "656" + }, + { + "title": "The Warehouse", + "authorFirst": "Rob", + "authorLast": "Hart", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "A Thousand Ships", + "authorFirst": "Natalie", + "authorLast": "Haynes", + "genre": "Fantasy/Greek", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "368" + }, + { + "title": "Starship Troopers", + "authorFirst": "Robert A.", + "authorLast": "Heinlein", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "233" + }, + { + "title": "The Final Girl Support Club", + "authorFirst": "Grady", + "authorLast": "Hendrix", + "genre": "Horror", + "series": "", + "owned": "", + "read": "X", + "compDate": "12/9/21", + "status": "", + "information": "", + "pages": "352" + }, + { + "title": "Dune", + "authorFirst": "Frank", + "authorLast": "Herbert", + "genre": "Sci-Fi", + "series": "Dune 1", + "owned": "Physical", + "read": "X", + "compDate": "9/27/20", + "status": "", + "information": "", + "pages": "554" + }, + { + "title": "Dune Messiah", + "authorFirst": "Frank", + "authorLast": "Herbert", + "genre": "Sci-Fi", + "series": "Dune 2", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "Series priority", + "pages": "267" + }, + { + "title": "Children of Dune", + "authorFirst": "Frank", + "authorLast": "Herbert", + "genre": "Sci-Fi", + "series": "Dune 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "444" + }, + { + "title": "God Emperor of Dune", + "authorFirst": "Frank", + "authorLast": "Herbert", + "genre": "Sci-Fi", + "series": "Dune 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "450" + }, + { + "title": "Heretics of Dune", + "authorFirst": "Frank", + "authorLast": "Herbert", + "genre": "Sci-Fi", + "series": "Dune 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "504" + }, + { + "title": "Chapterhouse: Dune", + "authorFirst": "Frank", + "authorLast": "Herbert", + "genre": "Sci-Fi", + "series": "Dune 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "464" + }, + { + "title": "Assassin's Apprentice", + "authorFirst": "Robin", + "authorLast": "Hobb", + "genre": "Fantasy", + "series": "Realm of the Elderlings 01", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "428" + }, + { + "title": "Royal Assassin", + "authorFirst": "Robin", + "authorLast": "Hobb", + "genre": "Fantasy", + "series": "Realm of the Elderlings 02", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "704" + }, + { + "title": "Assassin's Quest", + "authorFirst": "Robin", + "authorLast": "Hobb", + "genre": "Fantasy", + "series": "Realm of the Elderlings 03", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "757" + }, + { + "title": "Ship of Magic", + "authorFirst": "Robin", + "authorLast": "Hobb", + "genre": "Fantasy", + "series": "Realm of the Elderlings 04", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "685" + }, + { + "title": "The Mad Ship", + "authorFirst": "Robin", + "authorLast": "Hobb", + "genre": "Fantasy", + "series": "Realm of the Elderlings 05", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Ship of Destiny", + "authorFirst": "Robin", + "authorLast": "Hobb", + "genre": "Fantasy", + "series": "Realm of the Elderlings 06", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "683" + }, + { + "title": "Fool's Errand", + "authorFirst": "Robin", + "authorLast": "Hobb", + "genre": "Fantasy", + "series": "Realm of the Elderlings 07", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "584" + }, + { + "title": "The Golden Fool", + "authorFirst": "Robin", + "authorLast": "Hobb", + "genre": "Fantasy", + "series": "Realm of the Elderlings 08", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "723" + }, + { + "title": "Fool's Fate", + "authorFirst": "Robin", + "authorLast": "Hobb", + "genre": "Fantasy", + "series": "Realm of the Elderlings 09", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "805" + }, + { + "title": "Dragon Keeper", + "authorFirst": "Robin", + "authorLast": "Hobb", + "genre": "Fantasy", + "series": "Realm of the Elderlings 10", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "53" + }, + { + "title": "Dragon Haven", + "authorFirst": "Robin", + "authorLast": "Hobb", + "genre": "Fantasy", + "series": "Realm of the Elderlings 11", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "570" + }, + { + "title": "City of Dragons", + "authorFirst": "Robin", + "authorLast": "Hobb", + "genre": "Fantasy", + "series": "Realm of the Elderlings 12", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Blood of Dragons", + "authorFirst": "Robin", + "authorLast": "Hobb", + "genre": "Fantasy", + "series": "Realm of the Elderlings 13", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "425" + }, + { + "title": "Fool's Assassin", + "authorFirst": "Robin", + "authorLast": "Hobb", + "genre": "Fantasy", + "series": "Realm of the Elderlings 14", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "640" + }, + { + "title": "Fool's Quest", + "authorFirst": "Robin", + "authorLast": "Hobb", + "genre": "Fantasy", + "series": "Realm of the Elderlings 15", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "35" + }, + { + "title": "Assassin's Fate", + "authorFirst": "Robin", + "authorLast": "Hobb", + "genre": "Fantasy", + "series": "Realm of the Elderlings 16", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "952" + }, + { + "title": "The Belt of the Buried Gods", + "authorFirst": "Hugh", + "authorLast": "Howey", + "genre": "Sci-Fi", + "series": "Sand 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Out of No Man's Land", + "authorFirst": "Hugh", + "authorLast": "Howey", + "genre": "Sci-Fi", + "series": "Sand 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Return to Danvar", + "authorFirst": "Hugh", + "authorLast": "Howey", + "genre": "Sci-Fi", + "series": "Sand 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Thunder Due East", + "authorFirst": "Hugh", + "authorLast": "Howey", + "genre": "Sci-Fi", + "series": "Sand 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "A Rap Upon Heaven's Gate", + "authorFirst": "Hugh", + "authorLast": "Howey", + "genre": "Sci-Fi", + "series": "Sand 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Wool", + "authorFirst": "Hugh", + "authorLast": "Howey", + "genre": "Sci-Fi", + "series": "Silo 1", + "owned": "Kindle", + "read": "X", + "compDate": "6/29/23", + "status": "", + "information": "", + "pages": "569" + }, + { + "title": "Shift", + "authorFirst": "Hugh", + "authorLast": "Howey", + "genre": "Sci-Fi", + "series": "Silo 2", + "owned": "Kindle", + "read": "X", + "compDate": "7/11/23", + "status": "", + "information": "", + "pages": "576" + }, + { + "title": "Dust", + "authorFirst": "Hugh", + "authorLast": "Howey", + "genre": "Sci-Fi", + "series": "Silo 3", + "owned": "Kindle", + "read": "X", + "compDate": "7/25/23", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "Beacon 23", + "authorFirst": "Hugh", + "authorLast": "Howey", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "252" + }, + { + "title": "Library of the Dead", + "authorFirst": "T.L.", + "authorLast": "Huchu", + "genre": "Fantasy", + "series": "Edinburgh Nights 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Point of Impact", + "authorFirst": "Stephen", + "authorLast": "Hunter", + "genre": "Thriller", + "series": "Bob Lee Swagger 01", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "526" + }, + { + "title": "Black Light", + "authorFirst": "Stephen", + "authorLast": "Hunter", + "genre": "Thriller", + "series": "Bob Lee Swagger 02", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "464" + }, + { + "title": "Time to Hunt", + "authorFirst": "Stephen", + "authorLast": "Hunter", + "genre": "Thriller", + "series": "Bob Lee Swagger 03", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "608" + }, + { + "title": "The 47th Samurai", + "authorFirst": "Stephen", + "authorLast": "Hunter", + "genre": "Thriller", + "series": "Bob Lee Swagger 04", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "456" + }, + { + "title": "Night of Thunder", + "authorFirst": "Stephen", + "authorLast": "Hunter", + "genre": "Thriller", + "series": "Bob Lee Swagger 05", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "440" + }, + { + "title": "I, Sniper", + "authorFirst": "Stephen", + "authorLast": "Hunter", + "genre": "Thriller", + "series": "Bob Lee Swagger 06", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Dead Zero", + "authorFirst": "Stephen", + "authorLast": "Hunter", + "genre": "Thriller", + "series": "Bob Lee Swagger 07", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "528" + }, + { + "title": "The Third Bullet", + "authorFirst": "Stephen", + "authorLast": "Hunter", + "genre": "Thriller", + "series": "Bob Lee Swagger 08", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "485" + }, + { + "title": "Sniper's Honor", + "authorFirst": "Stephen", + "authorLast": "Hunter", + "genre": "Thriller", + "series": "Bob Lee Swagger 09", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "G-Man", + "authorFirst": "Stephen", + "authorLast": "Hunter", + "genre": "Thriller", + "series": "Bob Lee Swagger 10", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "Hot Springs", + "authorFirst": "Stephen", + "authorLast": "Hunter", + "genre": "Thriller", + "series": "Bob Lee Swagger 11", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "546" + }, + { + "title": "Pale Horse Coming", + "authorFirst": "Stephen", + "authorLast": "Hunter", + "genre": "Thriller", + "series": "Bob Lee Swagger 12", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "594" + }, + { + "title": "Havana", + "authorFirst": "Stephen", + "authorLast": "Hunter", + "genre": "Thriller", + "series": "Bob Lee Swagger 13", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "443" + }, + { + "title": "Soft Target", + "authorFirst": "Stephen", + "authorLast": "Hunter", + "genre": "Thriller", + "series": "Bob Lee Swagger 14", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "272" + }, + { + "title": "God's War", + "authorFirst": "Kameron", + "authorLast": "Hurley", + "genre": "Sci-Fi", + "series": "The Bel Dame Apocrypha 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "360" + }, + { + "title": "Infidel", + "authorFirst": "Kameron", + "authorLast": "Hurley", + "genre": "Sci-Fi", + "series": "The Bel Dame Apocrypha 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "392" + }, + { + "title": "Rapture", + "authorFirst": "Kameron", + "authorLast": "Hurley", + "genre": "Sci-Fi", + "series": "The Bel Dame Apocrypha 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "460" + }, + { + "title": "The Mirror Empire", + "authorFirst": "Kameron", + "authorLast": "Hurley", + "genre": "Sci-Fi", + "series": "Worldbreaker Saga 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "512" + }, + { + "title": "Empire Ascendant", + "authorFirst": "Kameron", + "authorLast": "Hurley", + "genre": "Sci-Fi", + "series": "Worldbreaker Saga 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "502" + }, + { + "title": "The Broken Heavens", + "authorFirst": "Kameron", + "authorLast": "Hurley", + "genre": "Sci-Fi", + "series": "Worldbreaker Saga 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Light Brigade", + "authorFirst": "Kameron", + "authorLast": "Hurley", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "360" + }, + { + "title": "The Stars Are Legion", + "authorFirst": "Kameron", + "authorLast": "Hurley", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "Brave New World", + "authorFirst": "Aldous", + "authorLast": "Huxley", + "genre": "Sci-Fi/Classic", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "254" + }, + { + "title": "Klara and the Sun", + "authorFirst": "Kazuo", + "authorLast": "Ishiguro", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "330" + }, + { + "title": "A River In Darkness", + "authorFirst": "Masaji", + "authorLast": "Ishikawa", + "genre": "Nonfiction", + "series": "", + "owned": "", + "read": "X", + "compDate": "11/30/20", + "status": "", + "information": "", + "pages": "159" + }, + { + "title": "The Shadow of What Was Lost", + "authorFirst": "James", + "authorLast": "Islington", + "genre": "Fantasy", + "series": "The Licanius 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "602" + }, + { + "title": "An Echo of Things to Come", + "authorFirst": "James", + "authorLast": "Islington", + "genre": "Fantasy", + "series": "The Licanius 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Light of All that Falls", + "authorFirst": "James", + "authorLast": "Islington", + "genre": "Fantasy", + "series": "The Licanius 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "864" + }, + { + "title": "Lord Brocktree", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 01", + "owned": "Physical", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "Martin the Warrior", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 02", + "owned": "Physical", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "376" + }, + { + "title": "Mossflower", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 03", + "owned": "Physical", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "431" + }, + { + "title": "The Legend of Luke", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 04", + "owned": "Physical", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "374" + }, + { + "title": "Outcast of Redwall", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 05", + "owned": "Physical", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "367" + }, + { + "title": "Mariel of Redwall", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 06", + "owned": "Physical", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "387" + }, + { + "title": "The Bellmaker", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 07", + "owned": "Physical", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "352" + }, + { + "title": "Salamandastron", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 08", + "owned": "Physical", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "391" + }, + { + "title": "Redwall", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 09", + "owned": "Physical", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "352" + }, + { + "title": "Mattimeo", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 10", + "owned": "Physical", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "446" + }, + { + "title": "The Pearls of Lutra", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 11", + "owned": "Physical", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "408" + }, + { + "title": "The Long Patrol", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 12", + "owned": "Physical", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "368" + }, + { + "title": "Marlfox", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 13", + "owned": "Physical", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "386" + }, + { + "title": "The Taggerung", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 14", + "owned": "Physical", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "438" + }, + { + "title": "Triss", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 15", + "owned": "Physical", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "Loamhedge", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 16", + "owned": "Physical", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "408" + }, + { + "title": "Rakkety Tam", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 17", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "378" + }, + { + "title": "High Rhulain", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 18", + "owned": "Physical", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "340" + }, + { + "title": "Eulalia!", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 19", + "owned": "Physical", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "389" + }, + { + "title": "Doomwyte", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 20", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "376" + }, + { + "title": "The Sable Quean", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 21", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "392" + }, + { + "title": "The Rogue Crew", + "authorFirst": "Brian", + "authorLast": "Jacques", + "genre": "Fantasy", + "series": "Redwall 22", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "387" + }, + { + "title": "Black Leopard, Red Wolf", + "authorFirst": "Marlon", + "authorLast": "James", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "7 Abandoned", + "information": "DO NOT READ", + "pages": "640" + }, + { + "title": "The Fifth Season", + "authorFirst": "N.K.", + "authorLast": "Jemisin", + "genre": "Fantasy", + "series": "Broken Earth 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "Manual" + }, + { + "title": "The Obelisk Gate", + "authorFirst": "N.K.", + "authorLast": "Jemisin", + "genre": "Fantasy", + "series": "Broken Earth 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Stone Sky", + "authorFirst": "N.K.", + "authorLast": "Jemisin", + "genre": "Fantasy", + "series": "Broken Earth 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Killing Moon", + "authorFirst": "N.K.", + "authorLast": "Jemisin", + "genre": "Fantasy", + "series": "Dreamblood 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "Manual" + }, + { + "title": "The Shadowed Sun", + "authorFirst": "N.K.", + "authorLast": "Jemisin", + "genre": "Fantasy", + "series": "Dreamblood 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The City We Became", + "authorFirst": "N.K.", + "authorLast": "Jemisin", + "genre": "Fantasy", + "series": "Great Cities 1", + "owned": "Physical", + "read": "X", + "compDate": "6/13/21", + "status": "", + "information": "", + "pages": "436" + }, + { + "title": "The World We Make", + "authorFirst": "N.K.", + "authorLast": "Jemisin", + "genre": "Fantasy", + "series": "Great Cities 2", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "Manual" + }, + { + "title": "The Hundred Thousand Kingdoms", + "authorFirst": "N.K.", + "authorLast": "Jemisin", + "genre": "Fantasy", + "series": "Inheritance Trilogy 1", + "owned": "", + "read": "X", + "compDate": "3/5/23", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "The Broken Kingdoms", + "authorFirst": "N.K.", + "authorLast": "Jemisin", + "genre": "Fantasy", + "series": "Inheritance Trilogy 2", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "Manual" + }, + { + "title": "The Kingdom of Gods", + "authorFirst": "N.K.", + "authorLast": "Jemisin", + "genre": "Fantasy", + "series": "Inheritance Trilogy 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Vagabonds", + "authorFirst": "Hao", + "authorLast": "Jingfang", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "608" + }, + { + "title": "I Have No Secrets", + "authorFirst": "Penny", + "authorLast": "Joelson", + "genre": "Mystery", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "328" + }, + { + "title": "Trouble the Saints", + "authorFirst": "Alaya Dawn", + "authorLast": "Johnson", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "Best Fantasy 2020", + "pages": "352" + }, + { + "title": "The Eye of the World", + "authorFirst": "Robert", + "authorLast": "Jordan", + "genre": "High Fantasy", + "series": "Wheel of Time 01", + "owned": "Physical", + "read": "X", + "compDate": "9/5/19", + "status": "", + "information": "Priority 2024", + "pages": "782" + }, + { + "title": "The Great Hunt", + "authorFirst": "Robert", + "authorLast": "Jordan", + "genre": "High Fantasy", + "series": "Wheel of Time 02", + "owned": "Physical", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "678" + }, + { + "title": "The Dragon Reborn", + "authorFirst": "Robert", + "authorLast": "Jordan", + "genre": "High Fantasy", + "series": "Wheel of Time 03", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "672" + }, + { + "title": "The Shadow Rising", + "authorFirst": "Robert", + "authorLast": "Jordan", + "genre": "High Fantasy", + "series": "Wheel of Time 04", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "984" + }, + { + "title": "The Fires of Heaven", + "authorFirst": "Robert", + "authorLast": "Jordan", + "genre": "High Fantasy", + "series": "Wheel of Time 05", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "911" + }, + { + "title": "Lord of Chaos", + "authorFirst": "Robert", + "authorLast": "Jordan", + "genre": "High Fantasy", + "series": "Wheel of Time 06", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "940" + }, + { + "title": "A Crown of Swords", + "authorFirst": "Robert", + "authorLast": "Jordan", + "genre": "High Fantasy", + "series": "Wheel of Time 07", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "773" + }, + { + "title": "The Path of Daggers", + "authorFirst": "Robert", + "authorLast": "Jordan", + "genre": "High Fantasy", + "series": "Wheel of Time 08", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "608" + }, + { + "title": "Winter's Heart", + "authorFirst": "Robert", + "authorLast": "Jordan", + "genre": "High Fantasy", + "series": "Wheel of Time 09", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "668" + }, + { + "title": "Crossroads of Twilight", + "authorFirst": "Robert", + "authorLast": "Jordan", + "genre": "High Fantasy", + "series": "Wheel of Time 10", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "704" + }, + { + "title": "New Spring", + "authorFirst": "Robert", + "authorLast": "Jordan", + "genre": "High Fantasy", + "series": "Wheel of Time 11", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "336" + }, + { + "title": "Knife of Dreams", + "authorFirst": "Robert", + "authorLast": "Jordan", + "genre": "High Fantasy", + "series": "Wheel of Time 12", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "832" + }, + { + "title": "The Gathering Storm", + "authorFirst": "Robert", + "authorLast": "Jordan", + "genre": "High Fantasy", + "series": "Wheel of Time 13", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "828" + }, + { + "title": "Towers of Midnight", + "authorFirst": "Robert", + "authorLast": "Jordan", + "genre": "High Fantasy", + "series": "Wheel of Time 14", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "944" + }, + { + "title": "A Memory of Light", + "authorFirst": "Robert", + "authorLast": "Jordan", + "genre": "High Fantasy", + "series": "Wheel of Time 15", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "928" + }, + { + "title": "A Wizard of Earthsea", + "authorFirst": "Ursula", + "authorLast": "K. Le Guin", + "genre": "Fantasy", + "series": "Earthsea Cycle 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "205" + }, + { + "title": "The Tombs of Atuan", + "authorFirst": "Ursula", + "authorLast": "K. Le Guin", + "genre": "Fantasy", + "series": "Earthsea Cycle 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "173" + }, + { + "title": "The Farthest Shore", + "authorFirst": "Ursula", + "authorLast": "K. Le Guin", + "genre": "Fantasy", + "series": "Earthsea Cycle 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "223" + }, + { + "title": "Tehanu", + "authorFirst": "Ursula", + "authorLast": "K. Le Guin", + "genre": "Fantasy", + "series": "Earthsea Cycle 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "260" + }, + { + "title": "Tales from Earthsea", + "authorFirst": "Ursula", + "authorLast": "K. Le Guin", + "genre": "Fantasy", + "series": "Earthsea Cycle 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "328" + }, + { + "title": "The Other Wind", + "authorFirst": "Ursula", + "authorLast": "K. Le Guin", + "genre": "Fantasy", + "series": "Earthsea Cycle 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "272" + }, + { + "title": "Rocannon's World", + "authorFirst": "Ursula", + "authorLast": "K. Le Guin", + "genre": "Sci-Fi", + "series": "Hainish Cycle 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "138" + }, + { + "title": "Planet of Exile", + "authorFirst": "Ursula", + "authorLast": "K. Le Guin", + "genre": "Sci-Fi", + "series": "Hainish Cycle 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "140" + }, + { + "title": "City of Illusions", + "authorFirst": "Ursula", + "authorLast": "K. Le Guin", + "genre": "Sci-Fi", + "series": "Hainish Cycle 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "207" + }, + { + "title": "The Left Hand of Darkness", + "authorFirst": "Ursula", + "authorLast": "K. Le Guin", + "genre": "Sci-Fi", + "series": "Hainish Cycle 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "304" + }, + { + "title": "The Word for World is Forest", + "authorFirst": "Ursula", + "authorLast": "K. Le Guin", + "genre": "Sci-Fi", + "series": "Hainish Cycle 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "169" + }, + { + "title": "The Dispossessed", + "authorFirst": "Ursula", + "authorLast": "K. Le Guin", + "genre": "Sci-Fi", + "series": "Hainish Cycle 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "350" + }, + { + "title": "Four Ways to Forgiveness", + "authorFirst": "Ursula", + "authorLast": "K. Le Guin", + "genre": "Sci-Fi", + "series": "Hainish Cycle 7", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "304" + }, + { + "title": "The Telling", + "authorFirst": "Ursula", + "authorLast": "K. Le Guin", + "genre": "Sci-Fi", + "series": "Hainish Cycle 8", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "264" + }, + { + "title": "The Birthday of the World and Other Stories", + "authorFirst": "Ursula", + "authorLast": "K. Le Guin", + "genre": "Sci-Fi", + "series": "Hainish Cycle 9", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Tigana", + "authorFirst": "Guy Gavriel", + "authorLast": "Kay", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "688" + }, + { + "title": "Flowers for Algernon", + "authorFirst": "Daniel", + "authorLast": "Keyes", + "genre": "Sci-Fi/Classic", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "259" + }, + { + "title": "The All-Consuming World", + "authorFirst": "Cassandra", + "authorLast": "Khaw", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "288" + }, + { + "title": "Miracle Creek", + "authorFirst": "Angie", + "authorLast": "Kim", + "genre": "Mystery", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "368" + }, + { + "title": "Mr. Mercedes", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "Bill Hodges Trilogy 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "484" + }, + { + "title": "Finders Keepers", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "Bill Hodges Trilogy 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "448" + }, + { + "title": "End of Watch", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "Bill Hodges Trilogy 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "448" + }, + { + "title": "The Dark Tower: The Gunslinger", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "Dark Tower 1", + "owned": "Physical", + "read": "X", + "compDate": "9/13/20", + "status": "", + "information": "", + "pages": "860" + }, + { + "title": "The Dark Tower II: The Drawing of the Three", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "Dark Tower 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Dark Tower III: The Waste Lands", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "Dark Tower 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Dark Tower IV: Wizard and Glass", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "Dark Tower 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Dark Tower: The Wind Through the Keyhole", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "Dark Tower 4.5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Dark Tower V: Wolves of the Calla", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "Dark Tower 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Dark Tower VI: Song of Susannah", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "Dark Tower 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Dark Tower VII: The Dark Tower", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "Dark Tower 7", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Desperation", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "Desperation 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "629" + }, + { + "title": "The Eyes of the Dragon", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "Desperation 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "382" + }, + { + "title": "The Shining", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "The Shining 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "Doctor Sleep", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "The Shining 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "560" + }, + { + "title": "11/22/63", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "859" + }, + { + "title": "Bag of Bones", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "608" + }, + { + "title": "Black House", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1456" + }, + { + "title": "Carrie", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "X", + "compDate": "7/2/22", + "status": "", + "information": "", + "pages": "256" + }, + { + "title": "Cell", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "464" + }, + { + "title": "Christine", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "503" + }, + { + "title": "Cujo", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "Want", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "352" + }, + { + "title": "Dolores Claiborne", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "Dreamcatcher", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "736" + }, + { + "title": "Duma Key", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "688" + }, + { + "title": "Elevation", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "168" + }, + { + "title": "Firestarter", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "428" + }, + { + "title": "From a Buick 8", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "465" + }, + { + "title": "Gerald's Game", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "401" + }, + { + "title": "Gwendy's Button Box", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "176" + }, + { + "title": "Insomnia", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "740" + }, + { + "title": "It", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1176" + }, + { + "title": "Joyland", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "318" + }, + { + "title": "Lisey's Story", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "608" + }, + { + "title": "Misery", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "Needful Things", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "736" + }, + { + "title": "On Writing: A Memoir of the Craft", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Nonfiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "Manual" + }, + { + "title": "Pet Sematary", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "420" + }, + { + "title": "Rage", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "880" + }, + { + "title": "Revival", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "459" + }, + { + "title": "Roadwork", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "880" + }, + { + "title": "Rose Madder", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "496" + }, + { + "title": "Salem's Lot", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "513" + }, + { + "title": "Sleeping Beauties", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "917" + }, + { + "title": "The Dark Half", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "484" + }, + { + "title": "The Dead Zone", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "426" + }, + { + "title": "The Girl who Loved Tom Gordon", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "256" + }, + { + "title": "The Green Mile", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "465" + }, + { + "title": "The Long Walk", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "358" + }, + { + "title": "The Outsider", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Mystery", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "587" + }, + { + "title": "The Regulators", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "448" + }, + { + "title": "The Running Man", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "256" + }, + { + "title": "The Stand", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "Want", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "1153" + }, + { + "title": "The Talisman", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "769" + }, + { + "title": "The Tommyknockers", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "747" + }, + { + "title": "Thinner", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "318" + }, + { + "title": "Under the Dome", + "authorFirst": "Stephen", + "authorLast": "King", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1074" + }, + { + "title": "Terms of Enlistment", + "authorFirst": "Marko", + "authorLast": "Kloos", + "genre": "Sci-Fi", + "series": "Frontlines 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "171" + }, + { + "title": "Lines of Departure", + "authorFirst": "Marko", + "authorLast": "Kloos", + "genre": "Sci-Fi", + "series": "Frontlines 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "315" + }, + { + "title": "Angles of Attack", + "authorFirst": "Marko", + "authorLast": "Kloos", + "genre": "Sci-Fi", + "series": "Frontlines 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "338" + }, + { + "title": "Chains of Command", + "authorFirst": "Marko", + "authorLast": "Kloos", + "genre": "Sci-Fi", + "series": "Frontlines 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "Fields of Fire", + "authorFirst": "Marko", + "authorLast": "Kloos", + "genre": "Sci-Fi", + "series": "Frontlines 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "302" + }, + { + "title": "Points of Impact", + "authorFirst": "Marko", + "authorLast": "Kloos", + "genre": "Sci-Fi", + "series": "Frontlines 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "300" + }, + { + "title": "Orders of Battle", + "authorFirst": "Marko", + "authorLast": "Kloos", + "genre": "Sci-Fi", + "series": "Frontlines 7", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Aftershocks", + "authorFirst": "Marko", + "authorLast": "Kloos", + "genre": "Sci-Fi", + "series": "The Palladium Wars 1", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "Prime Reading", + "pages": "288" + }, + { + "title": "Ballistic", + "authorFirst": "Marko", + "authorLast": "Kloos", + "genre": "Sci-Fi", + "series": "The Palladium Wars 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "318" + }, + { + "title": "Citadel", + "authorFirst": "Marko", + "authorLast": "Kloos", + "genre": "Sci-Fi", + "series": "The Palladium Wars 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "331" + }, + { + "title": "The House in the Cerulean Sea", + "authorFirst": "T.J.", + "authorLast": "Klune", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "408" + }, + { + "title": "Firebreak", + "authorFirst": "Nicole", + "authorLast": "Kornher-Stace", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "Manual" + }, + { + "title": "The Calculating Stars", + "authorFirst": "Mary Robinette", + "authorLast": "Kowal", + "genre": "Sci-Fi", + "series": "Lady Astronaut 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "408" + }, + { + "title": "The Fated Sky", + "authorFirst": "Mary Robinette", + "authorLast": "Kowal", + "genre": "Sci-Fi", + "series": "Lady Astronaut 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "460" + }, + { + "title": "The Relentless Moon", + "authorFirst": "Mary Robinette", + "authorLast": "Kowal", + "genre": "Sci-Fi", + "series": "Lady Astronaut 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "The Derivative Base", + "authorFirst": "Mary Robinette", + "authorLast": "Kowal", + "genre": "Sci-Fi", + "series": "Lady Astronaut 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Last Night at the Nightshade Lounge", + "authorFirst": "Paul", + "authorLast": "Krueger", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "7 Abandoned", + "information": "", + "pages": "Manual" + }, + { + "title": "Steel Crow Saga", + "authorFirst": "Paul", + "authorLast": "Krueger", + "genre": "Fantasy", + "series": "", + "owned": "Physical", + "read": "X", + "compDate": "10/12/19", + "status": "", + "information": "", + "pages": "528" + }, + { + "title": "The Poppy War", + "authorFirst": "R.F.", + "authorLast": "Kuang", + "genre": "Fantasy", + "series": "The Poppy War 1", + "owned": "Physical", + "read": "X", + "compDate": "4/19/23", + "status": "", + "information": "", + "pages": "545" + }, + { + "title": "The Dragon Republic", + "authorFirst": "R.F.", + "authorLast": "Kuang", + "genre": "Fantasy", + "series": "The Poppy War 2", + "owned": "Physical", + "read": "X", + "compDate": "4/24/23", + "status": "", + "information": "", + "pages": "658" + }, + { + "title": "The Burning God", + "authorFirst": "R.F.", + "authorLast": "Kuang", + "genre": "Fantasy", + "series": "The Poppy War 3", + "owned": "Physical", + "read": "X", + "compDate": "5/7/23", + "status": "", + "information": "", + "pages": "622" + }, + { + "title": "Babel", + "authorFirst": "R.F.", + "authorLast": "Kuang", + "genre": "Fantasy", + "series": "", + "owned": "Physical", + "read": "X", + "compDate": "11/6/22", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "Yellowface", + "authorFirst": "R.F.", + "authorLast": "Kuang", + "genre": "Fiction", + "series": "", + "owned": "Want", + "read": "X", + "compDate": "6/15/23", + "status": "", + "information": "", + "pages": "336" + }, + { + "title": "A Wrinkle in Time", + "authorFirst": "Madeleine", + "authorLast": "L'Engle", + "genre": "Fantasy", + "series": "Time Quintet 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "212" + }, + { + "title": "A Wind in the Door", + "authorFirst": "Madeleine", + "authorLast": "L'Engle", + "genre": "Fantasy", + "series": "Time Quintet 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "211" + }, + { + "title": "A Swiftly Tilting Planet", + "authorFirst": "Madeleine", + "authorLast": "L'Engle", + "genre": "Fantasy", + "series": "Time Quintet 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "278" + }, + { + "title": "Many Waters", + "authorFirst": "Madeleine", + "authorLast": "L'Engle", + "genre": "Fantasy", + "series": "Time Quintet 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "310" + }, + { + "title": "An Acceptable Time", + "authorFirst": "Madeleine", + "authorLast": "L'Engle", + "genre": "Fantasy", + "series": "Time Quintet 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "343" + }, + { + "title": "The Girl in the Spider's Web", + "authorFirst": "David", + "authorLast": "Lagercrantz", + "genre": "Crime", + "series": "Millennium 4 (Stieg Larsson)", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "399" + }, + { + "title": "The Girl Who Takes an Eye for an Eye", + "authorFirst": "David", + "authorLast": "Lagercrantz", + "genre": "Crime", + "series": "Millennium 5 (Stieg Larsson)", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "448" + }, + { + "title": "The Girl with the Dragon Tattoo", + "authorFirst": "Stieg", + "authorLast": "Larsson", + "genre": "Crime", + "series": "Millennium 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "465" + }, + { + "title": "The Girl Who Played with Fire", + "authorFirst": "Stieg", + "authorLast": "Larsson", + "genre": "Crime", + "series": "Millennium 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "752" + }, + { + "title": "The Girl Who Kicked the Hornets' Nest", + "authorFirst": "Stieg", + "authorLast": "Larsson", + "genre": "Crime", + "series": "Millennium 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "602" + }, + { + "title": "One Word Kill", + "authorFirst": "Mark", + "authorLast": "Lawrence", + "genre": "Fantasy", + "series": "Impossible Times 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "204" + }, + { + "title": "Limited Wish", + "authorFirst": "Mark", + "authorLast": "Lawrence", + "genre": "Fantasy", + "series": "Impossible Times 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "224" + }, + { + "title": "Detect Illusion", + "authorFirst": "Mark", + "authorLast": "Lawrence", + "genre": "Fantasy", + "series": "Impossible Times 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Prince of Thorns", + "authorFirst": "Mark", + "authorLast": "Lawrence", + "genre": "Fantasy", + "series": "Lawrence 01, The Broken Empire 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "324" + }, + { + "title": "King of Thorns", + "authorFirst": "Mark", + "authorLast": "Lawrence", + "genre": "Fantasy", + "series": "Lawrence 02, The Broken Empire 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1" + }, + { + "title": "Emperor of Thorns", + "authorFirst": "Mark", + "authorLast": "Lawrence", + "genre": "Fantasy", + "series": "Lawrence 03, The Broken Empire 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "Prince of Fools", + "authorFirst": "Mark", + "authorLast": "Lawrence", + "genre": "Fantasy", + "series": "Lawrence 04, The Red Queen's War 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "378" + }, + { + "title": "The Liar's Key", + "authorFirst": "Mark", + "authorLast": "Lawrence", + "genre": "Fantasy", + "series": "Lawrence 05, The Red Queen's War 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "496" + }, + { + "title": "The Wheel of Osheim", + "authorFirst": "Mark", + "authorLast": "Lawrence", + "genre": "Fantasy", + "series": "Lawrence 06, The Red Queen's War 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "425" + }, + { + "title": "Red Sister", + "authorFirst": "Mark", + "authorLast": "Lawrence", + "genre": "Fantasy", + "series": "Lawrence 07, The Book of the Ancestor 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "467" + }, + { + "title": "Grey Sister", + "authorFirst": "Mark", + "authorLast": "Lawrence", + "genre": "Fantasy", + "series": "Lawrence 08, The Book of the Ancestor 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "Holy Sister", + "authorFirst": "Mark", + "authorLast": "Lawrence", + "genre": "Fantasy", + "series": "Lawrence 09, The Book of the Ancestor 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "344" + }, + { + "title": "The Girl and the Stars", + "authorFirst": "Mark", + "authorLast": "Lawrence", + "genre": "Fantasy", + "series": "Lawrence 10, Book of the Ice 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "The Girl and the Mountain", + "authorFirst": "Mark", + "authorLast": "Lawrence", + "genre": "Fantasy", + "series": "Lawrence 11, Book of the Ice 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Girl and the Moon", + "authorFirst": "Mark", + "authorLast": "Lawrence", + "genre": "Fantasy", + "series": "Lawrence 12, Book of the Ice 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "Tinker, Tailor, Soldier, Spy", + "authorFirst": "John", + "authorLast": "le Carre", + "genre": "Political", + "series": "George Smiley 5", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "369" + }, + { + "title": "Ancillary Justice", + "authorFirst": "Ann", + "authorLast": "Leckie", + "genre": "Sci-Fi", + "series": "Imperial Radch 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "Ancillary Sword", + "authorFirst": "Ann", + "authorLast": "Leckie", + "genre": "Sci-Fi", + "series": "Imperial Radch 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "Ancillary Mercy", + "authorFirst": "Ann", + "authorLast": "Leckie", + "genre": "Sci-Fi", + "series": "Imperial Radch 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "359" + }, + { + "title": "Jade City", + "authorFirst": "Fonda", + "authorLast": "Lee", + "genre": "Sci-Fi", + "series": "The Green Bone Saga 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "Jade War", + "authorFirst": "Fonda", + "authorLast": "Lee", + "genre": "Sci-Fi", + "series": "The Green Bone Saga 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "616" + }, + { + "title": "Jade Legacy", + "authorFirst": "Fonda", + "authorLast": "Lee", + "genre": "Sci-Fi", + "series": "The Green Bone Saga 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "688" + }, + { + "title": "Ninefox Gambit", + "authorFirst": "Yoon Ha", + "authorLast": "Lee", + "genre": "Sci-Fi", + "series": "Machineries of Empire 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "317" + }, + { + "title": "Raven Stratagem", + "authorFirst": "Yoon Ha", + "authorLast": "Lee", + "genre": "Sci-Fi", + "series": "Machineries of Empire 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "Revenant Gun", + "authorFirst": "Yoon Ha", + "authorLast": "Lee", + "genre": "Sci-Fi", + "series": "Machineries of Empire 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "427" + }, + { + "title": "Out of the Silent Planet", + "authorFirst": "C.S.", + "authorLast": "Lewis", + "genre": "Sci-Fi", + "series": "Cosmic Trilogy 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Perelandra", + "authorFirst": "C.S.", + "authorLast": "Lewis", + "genre": "Sci-Fi", + "series": "Cosmic Trilogy 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Hideous Strength", + "authorFirst": "C.S.", + "authorLast": "Lewis", + "genre": "Sci-Fi", + "series": "Cosmic Trilogy 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Lion, the Witch, and the Wardrobe", + "authorFirst": "C.S.", + "authorLast": "Lewis", + "genre": "Fantasy", + "series": "The Chronicles of Narnia 1", + "owned": "Want", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "Manual" + }, + { + "title": "Prince Caspian", + "authorFirst": "C.S.", + "authorLast": "Lewis", + "genre": "Fantasy", + "series": "The Chronicles of Narnia 2", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Voyage of the Dawn Treader", + "authorFirst": "C.S.", + "authorLast": "Lewis", + "genre": "Fantasy", + "series": "The Chronicles of Narnia 3", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Silver Chair", + "authorFirst": "C.S.", + "authorLast": "Lewis", + "genre": "Fantasy", + "series": "The Chronicles of Narnia 4", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Horse and His Boy", + "authorFirst": "C.S.", + "authorLast": "Lewis", + "genre": "Fantasy", + "series": "The Chronicles of Narnia 5", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Magician's Nephew", + "authorFirst": "C.S.", + "authorLast": "Lewis", + "genre": "Fantasy", + "series": "The Chronicles of Narnia 6", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Last Battle", + "authorFirst": "C.S.", + "authorLast": "Lewis", + "genre": "Fantasy", + "series": "The Chronicles of Narnia 7", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The First Sister", + "authorFirst": "Linden A.", + "authorLast": "Lewis", + "genre": "Sci-Fi/Fantasy", + "series": "First Sister 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "Manual" + }, + { + "title": "The Second Rebel", + "authorFirst": "Linden A.", + "authorLast": "Lewis", + "genre": "Sci-Fi/Fantasy", + "series": "First Sister 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "The Last Hero", + "authorFirst": "Linden A.", + "authorLast": "Lewis", + "genre": "Sci-Fi/Fantasy", + "series": "First Sister 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Darkly Dreaming Dexter", + "authorFirst": "Jeff", + "authorLast": "Lindsay", + "genre": "Mystery", + "series": "Dexter 1", + "owned": "", + "read": "X", + "compDate": "1/24/22", + "status": "", + "information": "", + "pages": "304" + }, + { + "title": "Dearly Devoted Dexter", + "authorFirst": "Jeff", + "authorLast": "Lindsay", + "genre": "Mystery", + "series": "Dexter 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "310" + }, + { + "title": "Dexter in the Dark", + "authorFirst": "Jeff", + "authorLast": "Lindsay", + "genre": "Mystery", + "series": "Dexter 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "Dexter By Design", + "authorFirst": "Jeff", + "authorLast": "Lindsay", + "genre": "Mystery", + "series": "Dexter 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "336" + }, + { + "title": "Dexter Is Delicious", + "authorFirst": "Jeff", + "authorLast": "Lindsay", + "genre": "Mystery", + "series": "Dexter 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "351" + }, + { + "title": "Double Dexter", + "authorFirst": "Jeff", + "authorLast": "Lindsay", + "genre": "Mystery", + "series": "Dexter 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "337" + }, + { + "title": "Dexter's Final Cut", + "authorFirst": "Jeff", + "authorLast": "Lindsay", + "genre": "Mystery", + "series": "Dexter 7", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "368" + }, + { + "title": "Dexter Is Dead", + "authorFirst": "Jeff", + "authorLast": "Lindsay", + "genre": "Mystery", + "series": "Dexter 8", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "304" + }, + { + "title": "The Grace of Kings", + "authorFirst": "Ken", + "authorLast": "Liu", + "genre": "Fantasy", + "series": "The Dandelion Dynasty 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "640" + }, + { + "title": "The Wall of Storms", + "authorFirst": "Ken", + "authorLast": "Liu", + "genre": "Fantasy", + "series": "The Dandelion Dynasty 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "880" + }, + { + "title": "The Veiled Throne", + "authorFirst": "Ken", + "authorLast": "Liu", + "genre": "Fantasy", + "series": "The Dandelion Dynasty 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Speaking Bones", + "authorFirst": "Ken", + "authorLast": "Liu", + "genre": "Fantasy", + "series": "The Dandelion Dynasty 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "257" + }, + { + "title": "The Ruin of Kings", + "authorFirst": "Jenn", + "authorLast": "Lyons", + "genre": "Epic Fantasy", + "series": "A Chorus of Dragons 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "576" + }, + { + "title": "The Name of All Things", + "authorFirst": "Jenn", + "authorLast": "Lyons", + "genre": "Epic Fantasy", + "series": "A Chorus of Dragons 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "664" + }, + { + "title": "The Memory of Souls", + "authorFirst": "Jenn", + "authorLast": "Lyons", + "genre": "Epic Fantasy", + "series": "A Chorus of Dragons 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "656" + }, + { + "title": "The House of Always", + "authorFirst": "Jenn", + "authorLast": "Lyons", + "genre": "Epic Fantasy", + "series": "A Chorus of Dragons 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "The Discord of Gods", + "authorFirst": "Jenn", + "authorLast": "Lyons", + "genre": "Epic Fantasy", + "series": "A Chorus of Dragons 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "520" + }, + { + "title": "Severance", + "authorFirst": "Ling", + "authorLast": "Ma", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "304" + }, + { + "title": "House of Earth and Blood", + "authorFirst": "Sarah", + "authorLast": "Maas", + "genre": "Fantasy", + "series": "Crescent City 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "Manual" + }, + { + "title": "A Court of Thorns and Roses", + "authorFirst": "Sarah J.", + "authorLast": "Maas", + "genre": "Fantasy", + "series": "A Court of Thorns and Roses 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "448" + }, + { + "title": "A Court of Mist and Fury", + "authorFirst": "Sarah J.", + "authorLast": "Maas", + "genre": "Fantasy", + "series": "A Court of Thorns and Roses 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "640" + }, + { + "title": "A Court of Wings and Ruin", + "authorFirst": "Sarah J.", + "authorLast": "Maas", + "genre": "Fantasy", + "series": "A Court of Thorns and Roses 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "723" + }, + { + "title": "A Court of Frost and Starlight", + "authorFirst": "Sarah J.", + "authorLast": "Maas", + "genre": "Fantasy", + "series": "A Court of Thorns and Roses 3.1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "262" + }, + { + "title": "A Court of Silver Flames", + "authorFirst": "Sarah J.", + "authorLast": "Maas", + "genre": "Fantasy", + "series": "A Court of Thorns and Roses 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "768" + }, + { + "title": "The Assassin's Blade", + "authorFirst": "Sarah J.", + "authorLast": "Maas", + "genre": "Fantasy", + "series": "Throne of Glass 0.1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Before 1, or after 3", + "pages": "462" + }, + { + "title": "Throne of Glass", + "authorFirst": "Sarah J.", + "authorLast": "Maas", + "genre": "Fantasy", + "series": "Throne of Glass 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "432" + }, + { + "title": "Crown of Midnight", + "authorFirst": "Sarah J.", + "authorLast": "Maas", + "genre": "Fantasy", + "series": "Throne of Glass 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "448" + }, + { + "title": "Heir of Fire", + "authorFirst": "Sarah J.", + "authorLast": "Maas", + "genre": "Fantasy", + "series": "Throne of Glass 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "592" + }, + { + "title": "Queen of Shadows", + "authorFirst": "Sarah J.", + "authorLast": "Maas", + "genre": "Fantasy", + "series": "Throne of Glass 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "672" + }, + { + "title": "Empire of Storms", + "authorFirst": "Sarah J.", + "authorLast": "Maas", + "genre": "Fantasy", + "series": "Throne of Glass 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "704" + }, + { + "title": "Tower of Dawn", + "authorFirst": "Sarah J.", + "authorLast": "Maas", + "genre": "Fantasy", + "series": "Throne of Glass 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "679" + }, + { + "title": "Kingdom of Ash", + "authorFirst": "Sarah J.", + "authorLast": "Maas", + "genre": "Fantasy", + "series": "Throne of Glass 7", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "987" + }, + { + "title": "Patient Zero", + "authorFirst": "Jonathan", + "authorLast": "Maberry", + "genre": "Sci-Fi", + "series": "Joe Legder 01", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "421" + }, + { + "title": "The Dragon Factory", + "authorFirst": "Jonathan", + "authorLast": "Maberry", + "genre": "Sci-Fi", + "series": "Joe Legder 02", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "496" + }, + { + "title": "The King of Plagues", + "authorFirst": "Jonathan", + "authorLast": "Maberry", + "genre": "Sci-Fi", + "series": "Joe Legder 03", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Assassins Code", + "authorFirst": "Jonathan", + "authorLast": "Maberry", + "genre": "Sci-Fi", + "series": "Joe Legder 04", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Extinction Machine", + "authorFirst": "Jonathan", + "authorLast": "Maberry", + "genre": "Sci-Fi", + "series": "Joe Legder 05", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "448" + }, + { + "title": "Code Zero", + "authorFirst": "Jonathan", + "authorLast": "Maberry", + "genre": "Sci-Fi", + "series": "Joe Legder 06", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "Predator One", + "authorFirst": "Jonathan", + "authorLast": "Maberry", + "genre": "Sci-Fi", + "series": "Joe Legder 07", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "466" + }, + { + "title": "Kill Switch", + "authorFirst": "Jonathan", + "authorLast": "Maberry", + "genre": "Sci-Fi", + "series": "Joe Legder 08", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Dogs of War", + "authorFirst": "Jonathan", + "authorLast": "Maberry", + "genre": "Sci-Fi", + "series": "Joe Legder 09", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "Deep Silence", + "authorFirst": "Jonathan", + "authorLast": "Maberry", + "genre": "Sci-Fi", + "series": "Joe Legder 10", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "468" + }, + { + "title": "The Corporation Wars: Dissidence", + "authorFirst": "Ken", + "authorLast": "Macleod", + "genre": "Sci-fi", + "series": "The Corporation Wars 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "336" + }, + { + "title": "The Corporation Wars: Insurgence", + "authorFirst": "Ken", + "authorLast": "Macleod", + "genre": "Sci-fi", + "series": "The Corporation Wars 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Corporation Wars: Emergence", + "authorFirst": "Ken", + "authorLast": "Macleod", + "genre": "Sci-fi", + "series": "The Corporation Wars 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "We Ride The Storm", + "authorFirst": "Devin", + "authorLast": "Madson", + "genre": "Fantasy", + "series": "The Reborn Empire 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "528" + }, + { + "title": "We Lie With Death", + "authorFirst": "Devin", + "authorLast": "Madson", + "genre": "Fantasy", + "series": "The Reborn Empire 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "504" + }, + { + "title": "We Cry For Blood", + "authorFirst": "Devin", + "authorLast": "Madson", + "genre": "Fantasy", + "series": "The Reborn Empire 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "A Girl is a Body of Water", + "authorFirst": "Jennifer Nansubuga", + "authorLast": "Makumbi", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "505" + }, + { + "title": "The Sleepless", + "authorFirst": "Victor", + "authorLast": "Manibo", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "A Game of Thrones", + "authorFirst": "George R. R.", + "authorLast": "Martin", + "genre": "Epic Fantasy", + "series": "A Song of Ice & Fire 1", + "owned": "Physical", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "802" + }, + { + "title": "A Clash of Kings", + "authorFirst": "George R. R.", + "authorLast": "Martin", + "genre": "Epic Fantasy", + "series": "A Song of Ice & Fire 2", + "owned": "Physical", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "761" + }, + { + "title": "A Storm of Swords", + "authorFirst": "George R. R.", + "authorLast": "Martin", + "genre": "Epic Fantasy", + "series": "A Song of Ice & Fire 3", + "owned": "Physical", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "988" + }, + { + "title": "A Feast for Crows", + "authorFirst": "George R. R.", + "authorLast": "Martin", + "genre": "Epic Fantasy", + "series": "A Song of Ice & Fire 4", + "owned": "Physical", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "800" + }, + { + "title": "A Dance with Dragons", + "authorFirst": "George R. R.", + "authorLast": "Martin", + "genre": "Epic Fantasy", + "series": "A Song of Ice & Fire 5", + "owned": "Physical", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1040" + }, + { + "title": "The Winds of Winter", + "authorFirst": "George R. R.", + "authorLast": "Martin", + "genre": "Epic Fantasy", + "series": "A Song of Ice & Fire 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Not Released Yet", + "pages": "Manual" + }, + { + "title": "A Dream of Spring", + "authorFirst": "George R. R.", + "authorLast": "Martin", + "genre": "Epic Fantasy", + "series": "A Song of Ice & Fire 7", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Not Released Yet", + "pages": "Manual" + }, + { + "title": "A Memory Called Empire", + "authorFirst": "Arkady", + "authorLast": "Martine", + "genre": "Sci-Fi", + "series": "Teixcalaan Series 1", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "464" + }, + { + "title": "A Desolation Called Peace", + "authorFirst": "Arkady", + "authorLast": "Martine", + "genre": "Sci-Fi", + "series": "Teixcalaan Series 2", + "owned": "", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "496" + }, + { + "title": "Legacy of the Brightwash", + "authorFirst": "Krystle", + "authorLast": "Matar", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "662" + }, + { + "title": "Winter's Orbit", + "authorFirst": "Everina", + "authorLast": "Maxwell", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "432" + }, + { + "title": "Sins of Empire", + "authorFirst": "Brian", + "authorLast": "McClellan", + "genre": "Fantasy", + "series": "Gods of Blood and Powder 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "640" + }, + { + "title": "Wrath of Empire", + "authorFirst": "Brian", + "authorLast": "McClellan", + "genre": "Fantasy", + "series": "Gods of Blood and Powder 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "688" + }, + { + "title": "Blood of Empire", + "authorFirst": "Brian", + "authorLast": "McClellan", + "genre": "Fantasy", + "series": "Gods of Blood and Powder 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "640" + }, + { + "title": "Promise of Blood", + "authorFirst": "Brian", + "authorLast": "McClellan", + "genre": "Fantasy", + "series": "Powder Mage 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "560" + }, + { + "title": "The Crimson Campaign", + "authorFirst": "Brian", + "authorLast": "McClellan", + "genre": "Fantasy", + "series": "Powder Mage 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Autumn Republic", + "authorFirst": "Brian", + "authorLast": "McClellan", + "genre": "Fantasy", + "series": "Powder Mage 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "580" + }, + { + "title": "The Powder Mage Novella Collection", + "authorFirst": "Brian", + "authorLast": "McClellan", + "genre": "Fantasy", + "series": "Powder Mage 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Luna: New Moon", + "authorFirst": "Ian", + "authorLast": "McDonald", + "genre": "Sci-Fi", + "series": "Luna 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Luna: Wolf Moon", + "authorFirst": "Ian", + "authorLast": "McDonald", + "genre": "Sci-Fi", + "series": "Luna 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "402" + }, + { + "title": "Luna: Moon Rising", + "authorFirst": "Ian", + "authorLast": "McDonald", + "genre": "Sci-Fi", + "series": "Luna 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Machines Like Me", + "authorFirst": "Ian", + "authorLast": "McEwan", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "333" + }, + { + "title": "Down Among the Sticks and Bones", + "authorFirst": "Seanan", + "authorLast": "McGuire", + "genre": "Fantasy", + "series": "Wayward Children 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "Series priority", + "pages": "187" + }, + { + "title": "Every Heart a Doorway", + "authorFirst": "Seanan", + "authorLast": "McGuire", + "genre": "Fantasy", + "series": "Wayward Children 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "176" + }, + { + "title": "Beneath the Sugar Sky", + "authorFirst": "Seanan", + "authorLast": "McGuire", + "genre": "Fantasy", + "series": "Wayward Children 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "188" + }, + { + "title": "In An Absent Dream", + "authorFirst": "Seanan", + "authorLast": "McGuire", + "genre": "Fantasy", + "series": "Wayward Children 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "208" + }, + { + "title": "Come Tumbling Down", + "authorFirst": "Seanan", + "authorLast": "McGuire", + "genre": "Fantasy", + "series": "Wayward Children 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "200" + }, + { + "title": "Across the Green Grass Fields", + "authorFirst": "Seanan", + "authorLast": "McGuire", + "genre": "Fantasy", + "series": "Wayward Children 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "208" + }, + { + "title": "Where the Drowned Girls Go", + "authorFirst": "Seanan", + "authorLast": "McGuire", + "genre": "Fantasy", + "series": "Wayward Children 7", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "184" + }, + { + "title": "Middlegame", + "authorFirst": "Seanan", + "authorLast": "McGuire", + "genre": "Fantasy", + "series": "", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "528" + }, + { + "title": "The Unwanteds", + "authorFirst": "Lisa", + "authorLast": "McMann", + "genre": "Fantasy", + "series": "The Unwanteds 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "390" + }, + { + "title": "Island of Silence", + "authorFirst": "Lisa", + "authorLast": "McMann", + "genre": "Fantasy", + "series": "The Unwanteds 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Island of Fire", + "authorFirst": "Lisa", + "authorLast": "McMann", + "genre": "Fantasy", + "series": "The Unwanteds 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "451" + }, + { + "title": "Island of Legends", + "authorFirst": "Lisa", + "authorLast": "McMann", + "genre": "Fantasy", + "series": "The Unwanteds 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "495" + }, + { + "title": "Island of Shipwrecks", + "authorFirst": "Lisa", + "authorLast": "McMann", + "genre": "Fantasy", + "series": "The Unwanteds 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "452" + }, + { + "title": "Island of Graves", + "authorFirst": "Lisa", + "authorLast": "McMann", + "genre": "Fantasy", + "series": "The Unwanteds 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "514" + }, + { + "title": "Island of Dragons", + "authorFirst": "Lisa", + "authorLast": "McMann", + "genre": "Fantasy", + "series": "The Unwanteds 7", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "Lonesome Dove", + "authorFirst": "Larry", + "authorLast": "McMurtry", + "genre": "Western", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "945" + }, + { + "title": "Bite", + "authorFirst": "K.S.", + "authorLast": "Merbeth", + "genre": "Sci-Fi", + "series": "The Wastelanders 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Raid", + "authorFirst": "K.S.", + "authorLast": "Merbeth", + "genre": "Sci-Fi", + "series": "The Wastelanders 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "After Steve", + "authorFirst": "Tripp", + "authorLast": "Mickle", + "genre": "Biography", + "series": "", + "owned": "", + "read": "X", + "compDate": "10/22/22", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "Perdido Street Station", + "authorFirst": "China", + "authorLast": "Mieville", + "genre": "Fantasy", + "series": "New Crobuzon 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "710" + }, + { + "title": "The Scar", + "authorFirst": "China", + "authorLast": "Mieville", + "genre": "Fantasy", + "series": "New Crobuzon 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "616" + }, + { + "title": "Iron Council", + "authorFirst": "China", + "authorLast": "Mieville", + "genre": "Fantasy", + "series": "New Crobuzon 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "Embassytown", + "authorFirst": "China", + "authorLast": "Mieville", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "368" + }, + { + "title": "The City and the City", + "authorFirst": "China", + "authorLast": "Mieville", + "genre": "Crime", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "390" + }, + { + "title": "Circe", + "authorFirst": "Madeline", + "authorLast": "Miller", + "genre": "Fantasy/Greek", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "408" + }, + { + "title": "The Song of Achilles", + "authorFirst": "Madeline", + "authorLast": "Miller", + "genre": "Fantasy/Greek", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "388" + }, + { + "title": "Torn", + "authorFirst": "Rowenna", + "authorLast": "Miller", + "genre": "Fantasy", + "series": "The Unravelled Kingdom 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "Fray", + "authorFirst": "Rowenna", + "authorLast": "Miller", + "genre": "Fantasy", + "series": "The Unravelled Kingdom 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "496" + }, + { + "title": "Rule", + "authorFirst": "Rowenna", + "authorLast": "Miller", + "genre": "Fantasy", + "series": "The Unravelled Kingdom 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "432" + }, + { + "title": "Ordinary Monsters", + "authorFirst": "J.M.", + "authorLast": "Miro", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Battle of the Linguist Mages", + "authorFirst": "Scotto", + "authorLast": "Moore", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "448" + }, + { + "title": "The Caledonian Gambit", + "authorFirst": "Dan", + "authorLast": "Moren", + "genre": "Sci-Fi", + "series": "The Galactic Cold War 0", + "owned": "Kindle", + "read": "X", + "compDate": "8/9/24", + "status": "", + "information": "", + "pages": "310" + }, + { + "title": "Pilot Error", + "authorFirst": "Dan", + "authorLast": "Moren", + "genre": "Sci-Fi", + "series": "The Galactic Cold War 0.5", + "owned": "Kindle", + "read": "X", + "compDate": "8/9/24", + "status": "", + "information": "", + "pages": "14" + }, + { + "title": "The Bayern Agenda", + "authorFirst": "Dan", + "authorLast": "Moren", + "genre": "Sci-Fi", + "series": "The Galactic Cold War 1", + "owned": "Kindle", + "read": "X", + "compDate": "8/13/24", + "status": "", + "information": "", + "pages": "382" + }, + { + "title": "Showdown", + "authorFirst": "Dan", + "authorLast": "Moren", + "genre": "Sci-Fi", + "series": "The Galactic Cold War 1.5", + "owned": "Kindle", + "read": "X", + "compDate": "8/14/24", + "status": "", + "information": "", + "pages": "23" + }, + { + "title": "The Aleph Extraction", + "authorFirst": "Dan", + "authorLast": "Moren", + "genre": "Sci-Fi", + "series": "The Galactic Cold War 2", + "owned": "Kindle", + "read": "X", + "compDate": "8/19/24", + "status": "", + "information": "", + "pages": "387" + }, + { + "title": "Homecoming", + "authorFirst": "Dan", + "authorLast": "Moren", + "genre": "Sci-Fi", + "series": "The Galactic Cold War 2.5", + "owned": "Kindle", + "read": "X", + "compDate": "8/19/24", + "status": "", + "information": "", + "pages": "29" + }, + { + "title": "The Nova Incident", + "authorFirst": "Dan", + "authorLast": "Moren", + "genre": "Sci-Fi", + "series": "The Galactic Cold War 3", + "owned": "Kindle", + "read": "X", + "compDate": "8/26/24", + "status": "", + "information": "", + "pages": "408" + }, + { + "title": "Sleeping Wolves", + "authorFirst": "Dan", + "authorLast": "Moren", + "genre": "Sci-Fi", + "series": "The Galactic Cold War 3.5", + "owned": "Kindle", + "read": "X", + "compDate": "9/26/24", + "status": "", + "information": "", + "pages": "42" + }, + { + "title": "The Armageddon Protocol", + "authorFirst": "Dan", + "authorLast": "Moren", + "genre": "Sci-Fi", + "series": "The Galactic Cold War 4", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "1 In Progress", + "information": "", + "pages": "Manual" + }, + { + "title": "Gods of Jade and Shadow", + "authorFirst": "Silvia", + "authorLast": "Moreno-Garcia", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "Manual" + }, + { + "title": "Mexican Gothic", + "authorFirst": "Silvia", + "authorLast": "Moreno-Garcia", + "genre": "Horror", + "series": "", + "owned": "", + "read": "X", + "compDate": "8/1/21", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "The Night Circus", + "authorFirst": "Erin", + "authorLast": "Morgenstern", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "522" + }, + { + "title": "The Starless Sea", + "authorFirst": "Erin", + "authorLast": "Morgenstern", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "Gideon the Ninth", + "authorFirst": "Tamsyn", + "authorLast": "Muir", + "genre": "Fantasy", + "series": "The Locked Tomb 1", + "owned": "EPUB + Physical", + "read": "X", + "compDate": "10/24/21", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "448" + }, + { + "title": "Harrow the Ninth", + "authorFirst": "Tamsyn", + "authorLast": "Muir", + "genre": "Fantasy", + "series": "The Locked Tomb 2", + "owned": "EPUB (Want)", + "read": "X", + "compDate": "6/24/22", + "status": "4 Priority", + "information": "Priority 2024", + "pages": "512" + }, + { + "title": "Nona the Ninth", + "authorFirst": "Tamsyn", + "authorLast": "Muir", + "genre": "Fantasy", + "series": "The Locked Tomb 3", + "owned": "EPUB (Want)", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "Priority 2024", + "pages": "496" + }, + { + "title": "Alecto the Ninth", + "authorFirst": "Tamsyn", + "authorLast": "Muir", + "genre": "Fantasy", + "series": "The Locked Tomb 4", + "owned": "Want", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "Release 2024", + "pages": "Manual" + }, + { + "title": "1Q84", + "authorFirst": "Haruki", + "authorLast": "Murakami", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "1051" + }, + { + "title": "Girl One", + "authorFirst": "Sara Flannery", + "authorLast": "Murphey", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "Manual" + }, + { + "title": "First Light", + "authorFirst": "Linda", + "authorLast": "Nagata", + "genre": "Sci-Fi", + "series": "The Red 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Trials", + "authorFirst": "Linda", + "authorLast": "Nagata", + "genre": "Sci-Fi", + "series": "The Red 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "456" + }, + { + "title": "Going Dark", + "authorFirst": "Linda", + "authorLast": "Nagata", + "genre": "Sci-Fi", + "series": "The Red 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "464" + }, + { + "title": "Dear Edward", + "authorFirst": "Ann", + "authorLast": "Napolitano", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "352" + }, + { + "title": "Blood of an Exile", + "authorFirst": "Brian", + "authorLast": "Naslund", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "440" + }, + { + "title": "A History of What Comes Next", + "authorFirst": "Sylvain", + "authorLast": "Neuvei", + "genre": "Historical Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Sleeping Giants", + "authorFirst": "Sylvain", + "authorLast": "Neuvel", + "genre": "Sci-Fi", + "series": "Themis Files 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "336" + }, + { + "title": "Waking Gods", + "authorFirst": "Sylvain", + "authorLast": "Neuvel", + "genre": "Sci-Fi", + "series": "Themis Files 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "336" + }, + { + "title": "Only Human", + "authorFirst": "Sylvain", + "authorLast": "Neuvel", + "genre": "Sci-Fi", + "series": "Themis Files 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "352" + }, + { + "title": "The Test", + "authorFirst": "Sylvain", + "authorLast": "Neuvel", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "57" + }, + { + "title": "Autonomous", + "authorFirst": "Annalee", + "authorLast": "Newitz", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "304" + }, + { + "title": "The Future of Another Timeline", + "authorFirst": "Annalee", + "authorLast": "Newitz", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "350" + }, + { + "title": "The False Prince", + "authorFirst": "Jennifer A.", + "authorLast": "Nielsen", + "genre": "Fantasy", + "series": "The Ascendance Trilogy 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "342" + }, + { + "title": "The Runaway King", + "authorFirst": "Jennifer A.", + "authorLast": "Nielsen", + "genre": "Fantasy", + "series": "The Ascendance Trilogy 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "352" + }, + { + "title": "The Shadow Throne", + "authorFirst": "Jennifer A.", + "authorLast": "Nielsen", + "genre": "Fantasy", + "series": "The Ascendance Trilogy 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "317" + }, + { + "title": "His Majesty's Dragon", + "authorFirst": "Naomi", + "authorLast": "Novik", + "genre": "Fantasy", + "series": "Temeraire 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "356" + }, + { + "title": "Throne of Jade", + "authorFirst": "Naomi", + "authorLast": "Novik", + "genre": "Fantasy", + "series": "Temeraire 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "Black Powder War", + "authorFirst": "Naomi", + "authorLast": "Novik", + "genre": "Fantasy", + "series": "Temeraire 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "352" + }, + { + "title": "Empire of Ivory", + "authorFirst": "Naomi", + "authorLast": "Novik", + "genre": "Fantasy", + "series": "Temeraire 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "Victory of Eagles", + "authorFirst": "Naomi", + "authorLast": "Novik", + "genre": "Fantasy", + "series": "Temeraire 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "352" + }, + { + "title": "Tongues of Serpents", + "authorFirst": "Naomi", + "authorLast": "Novik", + "genre": "Fantasy", + "series": "Temeraire 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Crucible of Gold", + "authorFirst": "Naomi", + "authorLast": "Novik", + "genre": "Fantasy", + "series": "Temeraire 7", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Blood of Tyrants", + "authorFirst": "Naomi", + "authorLast": "Novik", + "genre": "Fantasy", + "series": "Temeraire 8", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "431" + }, + { + "title": "League of Dragons", + "authorFirst": "Naomi", + "authorLast": "Novik", + "genre": "Fantasy", + "series": "Temeraire 9", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "414" + }, + { + "title": "Ark Royal", + "authorFirst": "Christopher", + "authorLast": "Nuttall", + "genre": "Sci-Fi", + "series": "Ark Royal 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Nelson Touch", + "authorFirst": "Christopher", + "authorLast": "Nuttall", + "genre": "Sci-Fi", + "series": "Ark Royal 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Trafalgar Gambit", + "authorFirst": "Christopher", + "authorLast": "Nuttall", + "genre": "Sci-Fi", + "series": "Ark Royal 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "398" + }, + { + "title": "The Proposal Game", + "authorFirst": "Megan E.", + "authorLast": "O'Keefe", + "genre": "Fantasy", + "series": "Scorched Continent 0.5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Steal the Sky", + "authorFirst": "Megan E.", + "authorLast": "O'Keefe", + "genre": "Fantasy", + "series": "Scorched Continent 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Break the Chains", + "authorFirst": "Megan E.", + "authorLast": "O'Keefe", + "genre": "Fantasy", + "series": "Scorched Continent 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Inherit the Flame", + "authorFirst": "Megan E.", + "authorLast": "O'Keefe", + "genre": "Fantasy", + "series": "Scorched Continent 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Blighted Stars", + "authorFirst": "Megan E.", + "authorLast": "O'Keefe", + "genre": "Sci-Fi", + "series": "The Devoured Worlds 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Fractured Dark", + "authorFirst": "Megan E.", + "authorLast": "O'Keefe", + "genre": "Sci-Fi", + "series": "The Devoured Worlds 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Bound Worlds", + "authorFirst": "Megan E.", + "authorLast": "O'Keefe", + "genre": "Sci-Fi", + "series": "The Devoured Worlds 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Velocity Weapon", + "authorFirst": "Megan E.", + "authorLast": "O'Keefe", + "genre": "Sci-Fi", + "series": "The Protectorate 1", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "Manual" + }, + { + "title": "Chaos Vector", + "authorFirst": "Megan E.", + "authorLast": "O'Keefe", + "genre": "Sci-Fi", + "series": "The Protectorate 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Catalyst Gate", + "authorFirst": "Megan E.", + "authorLast": "O'Keefe", + "genre": "Sci-Fi", + "series": "The Protectorate 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "A Promised Land", + "authorFirst": "Barack", + "authorLast": "Obama", + "genre": "Autobiography", + "series": "", + "owned": "", + "read": "X", + "compDate": "4/6/21", + "status": "", + "information": "", + "pages": "928" + }, + { + "title": "Binti", + "authorFirst": "Nenedi", + "authorLast": "Okorafor", + "genre": "Sci-Fi", + "series": "Binti 1", + "owned": "Kindle", + "read": "X", + "compDate": "7/15/20", + "status": "", + "information": "", + "pages": "96" + }, + { + "title": "Binti: Home", + "authorFirst": "Nenedi", + "authorLast": "Okorafor", + "genre": "Sci-Fi", + "series": "Binti 2", + "owned": "Kindle", + "read": "X", + "compDate": "7/19/20", + "status": "", + "information": "", + "pages": "176" + }, + { + "title": "Binti: The Night Masquerade", + "authorFirst": "Nenedi", + "authorLast": "Okorafor", + "genre": "Sci-Fi", + "series": "Binti 3", + "owned": "Kindle", + "read": "X", + "compDate": "7/23/20", + "status": "", + "information": "", + "pages": "208" + }, + { + "title": "Akata Witch", + "authorFirst": "Nnedi", + "authorLast": "Okorafor", + "genre": "Sci-Fi", + "series": "Akata Witch 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "352" + }, + { + "title": "Akata Warrior", + "authorFirst": "Nnedi", + "authorLast": "Okorafor", + "genre": "Sci-Fi", + "series": "Akata Witch 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "455" + }, + { + "title": "The Book of Phoenix", + "authorFirst": "Nnedi", + "authorLast": "Okorafor", + "genre": "Sci-Fi", + "series": "Who Fears Death 0.5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "240" + }, + { + "title": "Who Fears Death", + "authorFirst": "Nnedi", + "authorLast": "Okorafor", + "genre": "Sci-Fi", + "series": "Who Fears Death 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "401" + }, + { + "title": "Lagoon", + "authorFirst": "Nnedi", + "authorLast": "Okorafor", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "306" + }, + { + "title": "Noor", + "authorFirst": "Nnedi", + "authorLast": "Okorafor", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "X", + "compDate": "2/19/23", + "status": "", + "information": "", + "pages": "224" + }, + { + "title": "Remote Control", + "authorFirst": "Nnedi", + "authorLast": "Okorafor", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "160" + }, + { + "title": "Miss Percy's Pocket Guide to the Care and Feeding of British Dragons", + "authorFirst": "Quenby", + "authorLast": "Olson", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Goliath", + "authorFirst": "Tochi", + "authorLast": "Onyebuchi", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "7/25/22", + "status": "7 Abandoned", + "information": "Very slow pace", + "pages": "336" + }, + { + "title": "Riot Baby", + "authorFirst": "Tochi", + "authorLast": "Onyebuchi", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "1984", + "authorFirst": "George", + "authorLast": "Orwell", + "genre": "Sci-Fi/Classic", + "series": "", + "owned": "Physical", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "72" + }, + { + "title": "Animal Farm", + "authorFirst": "George", + "authorLast": "Orwell", + "genre": "Sci-Fi/Classic", + "series": "", + "owned": "Physical", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "128" + }, + { + "title": "Finder", + "authorFirst": "Suzanne", + "authorLast": "Palmer", + "genre": "Sci-Fi", + "series": "Finder Chronicles 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1" + }, + { + "title": "Driving the Deep", + "authorFirst": "Suzanne", + "authorLast": "Palmer", + "genre": "Sci-Fi", + "series": "Finder Chronicles 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "The Scavenger Door", + "authorFirst": "Suzanne", + "authorLast": "Palmer", + "genre": "Sci-Fi", + "series": "Finder Chronicles 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "233" + }, + { + "title": "Eragon", + "authorFirst": "Christopher", + "authorLast": "Paolini", + "genre": "Fantasy", + "series": "Inheritance Cycle 1", + "owned": "", + "read": "X", + "compDate": "10/29/24", + "status": "", + "information": "", + "pages": "576" + }, + { + "title": "Eldest", + "authorFirst": "Christopher", + "authorLast": "Paolini", + "genre": "Fantasy", + "series": "Inheritance Cycle 2", + "owned": "", + "read": "X", + "compDate": "11/6/24", + "status": "", + "information": "", + "pages": "704" + }, + { + "title": "Brisingr", + "authorFirst": "Christopher", + "authorLast": "Paolini", + "genre": "Fantasy", + "series": "Inheritance Cycle 3", + "owned": "", + "read": "X", + "compDate": "11/8/24", + "status": "", + "information": "", + "pages": "784" + }, + { + "title": "Inheritance", + "authorFirst": "Christopher", + "authorLast": "Paolini", + "genre": "Fantasy", + "series": "Inheritance Cycle 4", + "owned": "", + "read": "X", + "compDate": "11/10/24", + "status": "", + "information": "", + "pages": "849" + }, + { + "title": "Murtagh", + "authorFirst": "Christopher", + "authorLast": "Paolini", + "genre": "Fantasy", + "series": "Inheritance Cycle 5", + "owned": "", + "read": "`", + "compDate": "", + "status": "1 In Progress", + "information": "", + "pages": "784" + }, + { + "title": "To Sleep in a Sea of Stars", + "authorFirst": "Christopher", + "authorLast": "Paolini", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "X", + "compDate": "5/7/21", + "status": "", + "information": "", + "pages": "848" + }, + { + "title": "She Who Became the Sun", + "authorFirst": "Shelley", + "authorLast": "Parker-Chan", + "genre": "Fantasy", + "series": "The Radiant Emperor 1", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "Manual" + }, + { + "title": "He Who Drowned The World", + "authorFirst": "Shelley", + "authorLast": "Parker-Chan", + "genre": "Fantasy", + "series": "The Radiant Emperor 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Child of the Night Guild", + "authorFirst": "Andy", + "authorLast": "Peloquin", + "genre": "Fantasy", + "series": "Queen of Thieves 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "381" + }, + { + "title": "Thief of the Night Guild", + "authorFirst": "Andy", + "authorLast": "Peloquin", + "genre": "Fantasy", + "series": "Queen of Thieves 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Queen of the Night Guild", + "authorFirst": "Andy", + "authorLast": "Peloquin", + "genre": "Fantasy", + "series": "Queen of Thieves 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "A Declaration of the Rights of Magicians", + "authorFirst": "H.G.", + "authorLast": "Perry", + "genre": "Fantasy", + "series": "The Shadow Histories 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "A Radical Act of Free Magic", + "authorFirst": "H.G.", + "authorLast": "Perry", + "genre": "Fantasy", + "series": "The Shadow Histories 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Old Man", + "authorFirst": "Thomas", + "authorLast": "Perry", + "genre": "Thriller", + "series": "", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "337" + }, + { + "title": "Embers of War", + "authorFirst": "Gareth L.", + "authorLast": "Powell", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "206" + }, + { + "title": "Good Omens", + "authorFirst": "Terry", + "authorLast": "Pratchett", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "400" + }, + { + "title": "The Profession", + "authorFirst": "Steven", + "authorLast": "Pressfield", + "genre": "Thriller", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "The Nobody People", + "authorFirst": "Bob", + "authorLast": "Proehl", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Golden Compass", + "authorFirst": "Philip", + "authorLast": "Pullman", + "genre": "Fantasy", + "series": "His Dark Materials 1", + "owned": "Physical", + "read": "X", + "compDate": "2018", + "status": "", + "information": "", + "pages": "80" + }, + { + "title": "The Subtle Knife", + "authorFirst": "Philip", + "authorLast": "Pullman", + "genre": "Fantasy", + "series": "His Dark Materials 2", + "owned": "Physical", + "read": "X", + "compDate": "2018", + "status": "", + "information": "", + "pages": "351" + }, + { + "title": "The Amber Spyglass", + "authorFirst": "Philip", + "authorLast": "Pullman", + "genre": "Fantasy", + "series": "His Dark Materials 3", + "owned": "Physical", + "read": "X", + "compDate": "2018", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "The Quantum Thief", + "authorFirst": "Hannu", + "authorLast": "Rajaniemi", + "genre": "Sci-Fi", + "series": "Jean le Flambeur 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Fractal Prince", + "authorFirst": "Hannu", + "authorLast": "Rajaniemi", + "genre": "Sci-Fi", + "series": "Jean le Flambeur 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "The Casual Angel", + "authorFirst": "Hannu", + "authorLast": "Rajaniemi", + "genre": "Sci-Fi", + "series": "Jean le Flambeur 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Sisters of the Vast Black", + "authorFirst": "Lina", + "authorLast": "Rather", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "89" + }, + { + "title": "The Prefect", + "authorFirst": "Alastair", + "authorLast": "Reynolds", + "genre": "Sci-Fi", + "series": "Revelation Space 0.1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "464" + }, + { + "title": "Elysium Fire", + "authorFirst": "Alastair", + "authorLast": "Reynolds", + "genre": "Sci-Fi", + "series": "Revelation Space 0.2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "432" + }, + { + "title": "Chasm City", + "authorFirst": "Alastair", + "authorLast": "Reynolds", + "genre": "Sci-Fi", + "series": "Revelation Space 0.3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "608" + }, + { + "title": "Revelation Space", + "authorFirst": "Alastair", + "authorLast": "Reynolds", + "genre": "Sci-Fi", + "series": "Revelation Space 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "560" + }, + { + "title": "Redemption Ark", + "authorFirst": "Alastair", + "authorLast": "Reynolds", + "genre": "Sci-Fi", + "series": "Revelation Space 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "592" + }, + { + "title": "Absolution Gap", + "authorFirst": "Alastair", + "authorLast": "Reynolds", + "genre": "Sci-Fi", + "series": "Revelation Space 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "632" + }, + { + "title": "Ruination", + "authorFirst": "Anthony", + "authorLast": "Reynolds", + "genre": "Fantasy", + "series": "League of Legends", + "owned": "Kindle", + "read": "X", + "compDate": "1/4/2023", + "status": "", + "information": "", + "pages": "448" + }, + { + "title": "The Thousand Deaths of Ardor Benn", + "authorFirst": "Tyler", + "authorLast": "Rhitesides", + "genre": "Fantasy", + "series": "Kingdom of Grit 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Shattered Realm of Ardor Benn", + "authorFirst": "Tyler", + "authorLast": "Rhitesides", + "genre": "Fantasy", + "series": "Kingdom of Grit 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Last Lies of Ardor Benn", + "authorFirst": "Tyler", + "authorLast": "Rhitesides", + "genre": "Fantasy", + "series": "Kingdom of Grit 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Gutter Child", + "authorFirst": "Jael", + "authorLast": "Richardson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "The Atlantis Gene", + "authorFirst": "A.G.", + "authorLast": "Riddle", + "genre": "Thriller", + "series": "The Origin Mystery 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Atlantis Plague", + "authorFirst": "A.G.", + "authorLast": "Riddle", + "genre": "Thriller", + "series": "The Origin Mystery 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Atlantis World", + "authorFirst": "A.G.", + "authorLast": "Riddle", + "genre": "Thriller", + "series": "The Origin Mystery 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Lightning Thief", + "authorFirst": "Rick", + "authorLast": "Riordan", + "genre": "Fantasy", + "series": "Percy Jackson & the Olympians 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "381" + }, + { + "title": "The Sea of Monsters", + "authorFirst": "Rick", + "authorLast": "Riordan", + "genre": "Fantasy", + "series": "Percy Jackson & the Olympians 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "279" + }, + { + "title": "The Titan's Curse", + "authorFirst": "Rick", + "authorLast": "Riordan", + "genre": "Fantasy", + "series": "Percy Jackson & the Olympians 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "304" + }, + { + "title": "The Battle of the Labyrinth", + "authorFirst": "Rick", + "authorLast": "Riordan", + "genre": "Fantasy", + "series": "Percy Jackson & the Olympians 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "349" + }, + { + "title": "The Last Olympian", + "authorFirst": "Rick", + "authorLast": "Riordan", + "genre": "Fantasy", + "series": "Percy Jackson & the Olympians 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "381" + }, + { + "title": "The Lost Hero", + "authorFirst": "Rick", + "authorLast": "Riordan", + "genre": "Fantasy", + "series": "The Heroes of Olympus 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "553" + }, + { + "title": "The Son of Neptune", + "authorFirst": "Rick", + "authorLast": "Riordan", + "genre": "Fantasy", + "series": "The Heroes of Olympus 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "513" + }, + { + "title": "The Mark of Athena", + "authorFirst": "Rick", + "authorLast": "Riordan", + "genre": "Fantasy", + "series": "The Heroes of Olympus 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "605" + }, + { + "title": "The House of Hades", + "authorFirst": "Rick", + "authorLast": "Riordan", + "genre": "Fantasy", + "series": "The Heroes of Olympus 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "605" + }, + { + "title": "The Blood of Olympus", + "authorFirst": "Rick", + "authorLast": "Riordan", + "genre": "Fantasy", + "series": "The Heroes of Olympus 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "538" + }, + { + "title": "The Red Pyramid", + "authorFirst": "Rick", + "authorLast": "Riordan", + "genre": "Fantasy", + "series": "The Kane Chronicles 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "The Throne of Fire", + "authorFirst": "Rick", + "authorLast": "Riordan", + "genre": "Fantasy", + "series": "The Kane Chronicles 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "464" + }, + { + "title": "The Serpent's Shadow", + "authorFirst": "Rick", + "authorLast": "Riordan", + "genre": "Fantasy", + "series": "The Kane Chronicles 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "455" + }, + { + "title": "32 Yolks: From My Mother's Table to Working the Line", + "authorFirst": "Eric", + "authorLast": "Ripert", + "genre": "Autobiography", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "Manual" + }, + { + "title": "Black Sun", + "authorFirst": "Rebecca", + "authorLast": "Roanhorse", + "genre": "Fantasy", + "series": "Between Earth and Sky 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "464" + }, + { + "title": "Trail of Lightning", + "authorFirst": "Rebecca", + "authorLast": "Roanhorse", + "genre": "Sci-Fi", + "series": "Sixth World 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "287" + }, + { + "title": "Storm of Locusts", + "authorFirst": "Rebecca", + "authorLast": "Roanhorse", + "genre": "Sci-Fi", + "series": "Sixth World 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "2312", + "authorFirst": "Kim Stanley", + "authorLast": "Robinson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "608" + }, + { + "title": "Aurora", + "authorFirst": "Kim Stanley", + "authorLast": "Robinson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "466" + }, + { + "title": "New York 2140", + "authorFirst": "Kim Stanley", + "authorLast": "Robinson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "656" + }, + { + "title": "Drunk on All Your Strange New Words", + "authorFirst": "Eddie", + "authorLast": "Robson", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Starless Crown", + "authorFirst": "James", + "authorLast": "Rollins", + "genre": "Fantasy", + "series": "Moon Fall 1", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "Manual" + }, + { + "title": "The Cradle of Ice", + "authorFirst": "James", + "authorLast": "Rollins", + "genre": "Fantasy", + "series": "Moon Fall 2", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Into the Stars", + "authorFirst": "James", + "authorLast": "Rosone", + "genre": "Sci-Fi", + "series": "Rise of the Republic 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "407" + }, + { + "title": "Into the Battle", + "authorFirst": "James", + "authorLast": "Rosone", + "genre": "Sci-Fi", + "series": "Rise of the Republic 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Into the War", + "authorFirst": "James", + "authorLast": "Rosone", + "genre": "Sci-Fi", + "series": "Rise of the Republic 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "280" + }, + { + "title": "Into the Chaos", + "authorFirst": "James", + "authorLast": "Rosone", + "genre": "Sci-Fi", + "series": "Rise of the Republic 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Into the Fire", + "authorFirst": "James", + "authorLast": "Rosone", + "genre": "Sci-Fi", + "series": "Rise of the Republic 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "319" + }, + { + "title": "Into the Calm", + "authorFirst": "James", + "authorLast": "Rosone", + "genre": "Sci-Fi", + "series": "Rise of the Republic 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Into the Breach", + "authorFirst": "James", + "authorLast": "Rosone", + "genre": "Sci-Fi", + "series": "Rise of the Republic 7", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "287" + }, + { + "title": "The Name of the Wind", + "authorFirst": "Patrick", + "authorLast": "Rothfuss", + "genre": "Fantasy", + "series": "Kingkiller Chronicle 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "722" + }, + { + "title": "The Wise Man's Fear", + "authorFirst": "Patrick", + "authorLast": "Rothfuss", + "genre": "Fantasy", + "series": "Kingkiller Chronicle 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1008" + }, + { + "title": "Doors of Stone", + "authorFirst": "Patrick", + "authorLast": "Rothfuss", + "genre": "Fantasy", + "series": "Kingkiller Chronicle 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Guncle", + "authorFirst": "Steven", + "authorLast": "Rowley", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "336" + }, + { + "title": "Harry Potter and the Sorcerer's Stone", + "authorFirst": "J.K.", + "authorLast": "Rowling", + "genre": "Fantasy", + "series": "Harry Potter 1", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "16" + }, + { + "title": "Harry Potter and the Chamber of Secrets", + "authorFirst": "J.K.", + "authorLast": "Rowling", + "genre": "Fantasy", + "series": "Harry Potter 2", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "340" + }, + { + "title": "Harry Potter and the Prisoner of Azkaban", + "authorFirst": "J.K.", + "authorLast": "Rowling", + "genre": "Fantasy", + "series": "Harry Potter 3", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "Harry Potter and the Goblet of Fire", + "authorFirst": "J.K.", + "authorLast": "Rowling", + "genre": "Fantasy", + "series": "Harry Potter 4", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "672" + }, + { + "title": "Harry Potter and the Order of the Phoenix", + "authorFirst": "J.K.", + "authorLast": "Rowling", + "genre": "Fantasy", + "series": "Harry Potter 5", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "893" + }, + { + "title": "Harry Potter and the Half-Blood Prince", + "authorFirst": "J.K.", + "authorLast": "Rowling", + "genre": "Fantasy", + "series": "Harry Potter 6", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "652" + }, + { + "title": "Harry Potter and the Deathly Hallows", + "authorFirst": "J.K.", + "authorLast": "Rowling", + "genre": "Fantasy", + "series": "Harry Potter 7", + "owned": "", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "701" + }, + { + "title": "Empire of Silence", + "authorFirst": "Christopher", + "authorLast": "Ruocchio", + "genre": "Sci-Fi", + "series": "Sun Eater 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "612" + }, + { + "title": "Howling Dark", + "authorFirst": "Christopher", + "authorLast": "Ruocchio", + "genre": "Sci-Fi", + "series": "Sun Eater 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "688" + }, + { + "title": "Demon in White", + "authorFirst": "Christopher", + "authorLast": "Ruocchio", + "genre": "Sci-Fi", + "series": "Sun Eater 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "560" + }, + { + "title": "WASP", + "authorFirst": "Eric Frank", + "authorLast": "Russell", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "176" + }, + { + "title": "Scarlet Odyssey", + "authorFirst": "C.T.", + "authorLast": "Rwizi", + "genre": "Fantasy", + "series": "Scarlet Odyssey 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Requiem Moon", + "authorFirst": "C.T.", + "authorLast": "Rwizi", + "genre": "Fantasy", + "series": "Scarlet Odyssey 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Wolf's Call", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "A Raven's Blade 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "448" + }, + { + "title": "The Black Song", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "A Raven's Blade 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "448" + }, + { + "title": "Blood Song", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "A Raven's Shadow 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "297" + }, + { + "title": "Tower Lord", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "A Raven's Shadow 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "605" + }, + { + "title": "Queen of Fire", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "A Raven's Shadow 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "656" + }, + { + "title": "A Pilgrimage of Swords", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "Seven Swords 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "128" + }, + { + "title": "Kraken's Tooth", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "Seven Swords 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "136" + }, + { + "title": "Slab City Blues", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "Slab City Blues 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "432" + }, + { + "title": "A Song for Madame Choi", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "Slab City Blues 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "A Hymn to Gods Long Dead", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "Slab City Blues 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Ballad of Bad Jack", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "Slab City Blues 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "An Aria for Ragnarok", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "Slab City Blues 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Pariah", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "The Covenant of Steel 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "581" + }, + { + "title": "The Martyr", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "The Covenant of Steel 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "552" + }, + { + "title": "The Waking Fire", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "The Draconis Memoria Trilogy 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "582" + }, + { + "title": "The Legion of Flame", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "The Draconis Memoria Trilogy 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "575" + }, + { + "title": "The Empire of Ashes", + "authorFirst": "Anthony", + "authorLast": "Ryan", + "genre": "Fantasy", + "series": "The Draconis Memoria Trilogy 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "568" + }, + { + "title": "Contact", + "authorFirst": "Carl", + "authorLast": "Sagan", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "432" + }, + { + "title": "Ariadne", + "authorFirst": "Jennifer", + "authorLast": "Saint", + "genre": "Fantasy/Greek", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "Elantris", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "638" + }, + { + "title": "The Sunlit Man", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "400" + }, + { + "title": "Tress of the Emerald Sea", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "443" + }, + { + "title": "Yumi and the Nightmare Painter", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "384" + }, + { + "title": "Arcanum Unbounded", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "Cosmese", + "owned": "Physical", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "672" + }, + { + "title": "Mistborn: The Final Empire", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Epic Fantasy", + "series": "Mistborn 01, Era One, Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "Manual" + }, + { + "title": "Mistborn: The Well of Ascension", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Epic Fantasy", + "series": "Mistborn 02, Era One, Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "Manual" + }, + { + "title": "Mistborn: The Hero of Ages", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Epic Fantasy", + "series": "Mistborn 03, Era One, Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "Manual" + }, + { + "title": "Mistborn: The Alloy of Law", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Epic Fantasy", + "series": "Mistborn 04, Era Two, Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "Manual" + }, + { + "title": "Mistborn: Shadows of Self", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Epic Fantasy", + "series": "Mistborn 05, Era Two, Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "Manual" + }, + { + "title": "Mistborn: The Bands of Mourning", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Epic Fantasy", + "series": "Mistborn 06, Era Two, Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "Manual" + }, + { + "title": "Mistborn: Secret History", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Epic Fantasy", + "series": "Mistborn 07, Era One, Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "Manual" + }, + { + "title": "Mistborn: The Lost Metal", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Epic Fantasy", + "series": "Mistborn 08, Era Two, Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "Manual" + }, + { + "title": "Mistborn: Era Three - Book One", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Epic Fantasy", + "series": "Mistborn 09, Era Three, Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "Expected 2025", + "pages": "Manual" + }, + { + "title": "Mistborn: Era Three - Book Two", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Epic Fantasy", + "series": "Mistborn 10, Era Three, Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "Not Released Yet", + "pages": "Manual" + }, + { + "title": "Mistborn: Era Three - Book Three", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Epic Fantasy", + "series": "Mistborn 11, Era Three, Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "Not Released Yet", + "pages": "Manual" + }, + { + "title": "Defending Elysium", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Sci-Fi", + "series": "Skyward 0.5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "160" + }, + { + "title": "Skyward", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Sci-Fi", + "series": "Skyward 1", + "owned": "", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "528" + }, + { + "title": "Starsight", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Sci-Fi", + "series": "Skyward 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "480" + }, + { + "title": "Cytonic", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Sci-Fi", + "series": "Skyward 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "432" + }, + { + "title": "Defiant", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Sci-Fi", + "series": "Skyward 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "480" + }, + { + "title": "Sunreach", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Sci-Fi", + "series": "Skyward Flight 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "Manual" + }, + { + "title": "Redawn", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Sci-Fi", + "series": "Skyward Flight 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "Manual" + }, + { + "title": "Evershore", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Sci-Fi", + "series": "Skyward Flight 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "234" + }, + { + "title": "Steelheart", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "The Reckoners 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "416" + }, + { + "title": "Firefight", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "The Reckoners 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "452" + }, + { + "title": "Calamity", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "The Reckoners 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Priority 2024", + "pages": "431" + }, + { + "title": "The Way of Kings", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "The Stormlight Archive 01, Cosmere", + "owned": "Physical / EPUB", + "read": "X", + "compDate": "11/19/23", + "status": "", + "information": "", + "pages": "1008" + }, + { + "title": "Words of Radiance", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "The Stormlight Archive 02, Cosmere", + "owned": "Physical / EPUB", + "read": "X", + "compDate": "11/30/23", + "status": "", + "information": "", + "pages": "1088" + }, + { + "title": "Edgedancer", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "The Stormlight Archive 02.5, Cosmere", + "owned": "EPUB (Want)", + "read": "X", + "compDate": "12/3/23", + "status": "", + "information": "", + "pages": "249" + }, + { + "title": "Oathbringer", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "The Stormlight Archive 03, Cosmere", + "owned": "Physical / EPUB", + "read": "X", + "compDate": "12/16/23", + "status": "", + "information": "", + "pages": "1214" + }, + { + "title": "Dawnshard", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "The Stormlight Archive 03.5, Cosmere", + "owned": "EPUB (Want)", + "read": "X", + "compDate": "12/31/23", + "status": "", + "information": "", + "pages": "227" + }, + { + "title": "Rhythm of War", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "The Stormlight Archive 04, Cosmere", + "owned": "Physical / EPUB", + "read": "X", + "compDate": "1/31/24", + "status": "", + "information": "", + "pages": "1088" + }, + { + "title": "Horneater", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "The Stormlight Archive 04.5, Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "Release 2025", + "pages": "Manual" + }, + { + "title": "Wind and Truth", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "The Stormlight Archive 05, Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "Priority 2024 - Release Dec 6 2024", + "pages": "1232" + }, + { + "title": "Book 6", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "The Stormlight Archive 06, Cosmere", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Unreleased", + "pages": "Manual" + }, + { + "title": "Book 7", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "The Stormlight Archive 07, Cosmere", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Unreleased", + "pages": "Manual" + }, + { + "title": "Book 8", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "The Stormlight Archive 08, Cosmere", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Unreleased", + "pages": "Manual" + }, + { + "title": "Book 9", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "The Stormlight Archive 09, Cosmere", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Unreleased", + "pages": "Manual" + }, + { + "title": "Book 10", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "The Stormlight Archive 10, Cosmere", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Unreleased", + "pages": "Manual" + }, + { + "title": "Warbreaker", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy", + "series": "Warbreaker 1", + "owned": "EPUB (Want)", + "read": "X", + "compDate": "10/27/24", + "status": "", + "information": "", + "pages": "605" + }, + { + "title": "White Sand I", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy/Graphic Novel", + "series": "White Sand 1, Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "White Sand II", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy/Graphic Novel", + "series": "White Sand 2, Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "White Sand III", + "authorFirst": "Brandon", + "authorLast": "Sanderson", + "genre": "Fantasy/Graphic Novel", + "series": "White Sand 3, Cosmere", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Last Wish", + "authorFirst": "Andrzej", + "authorLast": "Sapkowski", + "genre": "Fantasy", + "series": "The Witcher 1", + "owned": "Want", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "352" + }, + { + "title": "Sword of Destiny", + "authorFirst": "Andrzej", + "authorLast": "Sapkowski", + "genre": "Fantasy", + "series": "The Witcher 2", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "Blood of Elves", + "authorFirst": "Andrzej", + "authorLast": "Sapkowski", + "genre": "Fantasy", + "series": "The Witcher 3", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Time of Contempt", + "authorFirst": "Andrzej", + "authorLast": "Sapkowski", + "genre": "Fantasy", + "series": "The Witcher 4", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Baptism of Fire", + "authorFirst": "Andrzej", + "authorLast": "Sapkowski", + "genre": "Fantasy", + "series": "The Witcher 5", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "371" + }, + { + "title": "The Tower of the Swallow", + "authorFirst": "Andrzej", + "authorLast": "Sapkowski", + "genre": "Fantasy", + "series": "The Witcher 6", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "443" + }, + { + "title": "The Lady of the Lake", + "authorFirst": "Andrzej", + "authorLast": "Sapkowski", + "genre": "Fantasy", + "series": "The Witcher 7", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Season of Storms", + "authorFirst": "Andrzej", + "authorLast": "Sapkowski", + "genre": "Fantasy", + "series": "The Witcher 8", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "Pariah", + "authorFirst": "Jamie", + "authorLast": "Sawyer", + "genre": "Sci-Fi", + "series": "The Eternity War 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Exodus", + "authorFirst": "Jamie", + "authorLast": "Sawyer", + "genre": "Sci-Fi", + "series": "The Eternity War 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Dominion", + "authorFirst": "Jamie", + "authorLast": "Sawyer", + "genre": "Sci-Fi", + "series": "The Eternity War 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Lock In", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi/Police", + "series": "Lock In 1", + "owned": "Want", + "read": "X", + "compDate": "1/31/21", + "status": "", + "information": "", + "pages": "336" + }, + { + "title": "Head On", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi/Police", + "series": "Lock In 2", + "owned": "Want", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "335" + }, + { + "title": "Unlocked", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi/Police", + "series": "Lock In 3", + "owned": "Want", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "119" + }, + { + "title": "Old Man's War", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi/Military", + "series": "Old Man's War 1", + "owned": "Want", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "318" + }, + { + "title": "The Ghost Brigades", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi/Military", + "series": "Old Man's War 2", + "owned": "Want", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "The Last Colony", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi/Military", + "series": "Old Man's War 3", + "owned": "Want", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "328" + }, + { + "title": "Zoe's Tale", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi/Military", + "series": "Old Man's War 4", + "owned": "Want", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "The Human Division", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi/Military", + "series": "Old Man's War 5", + "owned": "Want", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "431" + }, + { + "title": "The End of All Things", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi/Military", + "series": "Old Man's War 6", + "owned": "Want", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "384" + }, + { + "title": "The Collapsing Empire", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi/Space Opera", + "series": "The Interdependency 1", + "owned": "Want", + "read": "X", + "compDate": "12/23/21", + "status": "", + "information": "", + "pages": "336" + }, + { + "title": "The Consuming Fire", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi/Space Opera", + "series": "The Interdependency 2", + "owned": "Want", + "read": "X", + "compDate": "2/24/22", + "status": "", + "information": "", + "pages": "316" + }, + { + "title": "The Last Emperox", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi/Space Opera", + "series": "The Interdependency 3", + "owned": "Want", + "read": "X", + "compDate": "2/26/22", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "Agent to the Stars", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "327" + }, + { + "title": "Fuzzy Nation", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi", + "series": "", + "owned": "Want", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "303" + }, + { + "title": "Redshirts", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi", + "series": "", + "owned": "Want", + "read": "X", + "compDate": "9/12/23", + "status": "", + "information": "", + "pages": "386" + }, + { + "title": "Starter Villain", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi", + "series": "", + "owned": "Physical", + "read": "X", + "compDate": "4/5/24", + "status": "", + "information": "", + "pages": "264" + }, + { + "title": "The Android Dream", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "The Kaiju Preservation Society", + "authorFirst": "John", + "authorLast": "Scalzi", + "genre": "Sci-Fi", + "series": "", + "owned": "Want", + "read": "X", + "compDate": "3/23/22", + "status": "", + "information": "", + "pages": "272" + }, + { + "title": "Heart of Mist", + "authorFirst": "Helen", + "authorLast": "Scheuerer", + "genre": "Fantasy", + "series": "Oremere Chronicles 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "488" + }, + { + "title": "Reign of Mist", + "authorFirst": "Helen", + "authorLast": "Scheuerer", + "genre": "Fantasy", + "series": "Oremere Chronicles 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "552" + }, + { + "title": "War of Mist", + "authorFirst": "Helen", + "authorLast": "Scheuerer", + "genre": "Fantasy", + "series": "Oremere Chronicles 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "517" + }, + { + "title": "Chrome Mountain", + "authorFirst": "Ben", + "authorLast": "Schneider", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Vicious", + "authorFirst": "V. E.", + "authorLast": "Schwab", + "genre": "Fantasy", + "series": "Villains 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "384" + }, + { + "title": "Vengeful", + "authorFirst": "V. E.", + "authorLast": "Schwab", + "genre": "Fantasy", + "series": "Villains 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "496" + }, + { + "title": "The Invisible Life of Addie Larue", + "authorFirst": "V. E.", + "authorLast": "Schwab", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "480" + }, + { + "title": "A Darker Shade of Magic", + "authorFirst": "V.E.", + "authorLast": "Schwab", + "genre": "Fantasy", + "series": "Shades of Magic 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "A Gathering of Shadows", + "authorFirst": "V.E.", + "authorLast": "Schwab", + "genre": "Fantasy", + "series": "Shades of Magic 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "528" + }, + { + "title": "A Conjuring of Light", + "authorFirst": "V.E.", + "authorLast": "Schwab", + "genre": "Fantasy", + "series": "Shades of Magic 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "680" + }, + { + "title": "The Alchemyst", + "authorFirst": "Michael", + "authorLast": "Scott", + "genre": "Fantasy", + "series": "The Secrets of the Immortal Nicholas Flamel 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "392" + }, + { + "title": "The Magician", + "authorFirst": "Michael", + "authorLast": "Scott", + "genre": "Fantasy", + "series": "The Secrets of the Immortal Nicholas Flamel 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "256" + }, + { + "title": "The Sorceress", + "authorFirst": "Michael", + "authorLast": "Scott", + "genre": "Fantasy", + "series": "The Secrets of the Immortal Nicholas Flamel 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Necromancer", + "authorFirst": "Michael", + "authorLast": "Scott", + "genre": "Fantasy", + "series": "The Secrets of the Immortal Nicholas Flamel 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "403" + }, + { + "title": "The Warlock", + "authorFirst": "Michael", + "authorLast": "Scott", + "genre": "Fantasy", + "series": "The Secrets of the Immortal Nicholas Flamel 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Enchantress", + "authorFirst": "Michael", + "authorLast": "Scott", + "genre": "Fantasy", + "series": "The Secrets of the Immortal Nicholas Flamel 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "528" + }, + { + "title": "The Pale Dreamer", + "authorFirst": "Samantha", + "authorLast": "Shannon", + "genre": "Fantasy", + "series": "The Bone Season 0.5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Bone Season", + "authorFirst": "Samantha", + "authorLast": "Shannon", + "genre": "Fantasy", + "series": "The Bone Season 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "528" + }, + { + "title": "The Mime Order", + "authorFirst": "Samantha", + "authorLast": "Shannon", + "genre": "Fantasy", + "series": "The Bone Season 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Song Rising", + "authorFirst": "Samantha", + "authorLast": "Shannon", + "genre": "Fantasy", + "series": "The Bone Season 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "The Dawn Chorus", + "authorFirst": "Samantha", + "authorLast": "Shannon", + "genre": "Fantasy", + "series": "The Bone Season 3.5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Mask Falling", + "authorFirst": "Samantha", + "authorLast": "Shannon", + "genre": "Fantasy", + "series": "The Bone Season 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "528" + }, + { + "title": "The Priory of the Orange Tree", + "authorFirst": "Samantha", + "authorLast": "Shannon", + "genre": "Fantasy", + "series": "The Priory of the Orange Tree 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "848" + }, + { + "title": "Strange Practice", + "authorFirst": "Vivian", + "authorLast": "Shaw", + "genre": "Fantasy", + "series": "Dr. Greta Helsing 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "393" + }, + { + "title": "Dreadful Company", + "authorFirst": "Vivian", + "authorLast": "Shaw", + "genre": "Fantasy", + "series": "Dr. Greta Helsing 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "376" + }, + { + "title": "Grave Importance", + "authorFirst": "Vivian", + "authorLast": "Shaw", + "genre": "Fantasy", + "series": "Dr. Greta Helsing 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "448" + }, + { + "title": "Scythe", + "authorFirst": "Neal", + "authorLast": "Shusterman", + "genre": "Sci-Fi", + "series": "Arc of a Scythe 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "470" + }, + { + "title": "Thunderhead", + "authorFirst": "Neal", + "authorLast": "Shusterman", + "genre": "Sci-Fi", + "series": "Arc of a Scythe 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "The Toll", + "authorFirst": "Neal", + "authorLast": "Shusterman", + "genre": "Sci-Fi", + "series": "Arc of a Scythe 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "625" + }, + { + "title": "Hyperion", + "authorFirst": "Dan", + "authorLast": "Simmons", + "genre": "Sci-Fi", + "series": "Hyperion Cantos 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "Series priority", + "pages": "481" + }, + { + "title": "The Fall of Hyperion", + "authorFirst": "Dan", + "authorLast": "Simmons", + "genre": "Sci-Fi", + "series": "Hyperion Cantos 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "560" + }, + { + "title": "Endymion", + "authorFirst": "Dan", + "authorLast": "Simmons", + "genre": "Sci-Fi", + "series": "Hyperion Cantos 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "576" + }, + { + "title": "The Rise of Endymion", + "authorFirst": "Dan", + "authorLast": "Simmons", + "genre": "Sci-Fi", + "series": "Hyperion Cantos 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "600" + }, + { + "title": "Ilium", + "authorFirst": "Dan", + "authorLast": "Simmons", + "genre": "Sci-Fi", + "series": "Ilium/Olympos 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "608" + }, + { + "title": "Olympos", + "authorFirst": "Dan", + "authorLast": "Simmons", + "genre": "Sci-Fi", + "series": "Ilium/Olympos 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "786" + }, + { + "title": "Burn-In: A Novel of the Real Robotic Revolution", + "authorFirst": "P. W.", + "authorLast": "Singer", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Sourdough", + "authorFirst": "Robin", + "authorLast": "Sloan", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "272" + }, + { + "title": "The Court of Broken Knives", + "authorFirst": "Anna", + "authorLast": "Smith Spark", + "genre": "Fantasy", + "series": "Empire of Dust 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Tower of Living and Dying", + "authorFirst": "Anna", + "authorLast": "Smith Spark", + "genre": "Fantasy", + "series": "Empire of Dust 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The House of Sacrifice", + "authorFirst": "Anna", + "authorLast": "Smith Spark", + "genre": "Fantasy", + "series": "Empire of Dust 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "488" + }, + { + "title": "Sorrowland", + "authorFirst": "Rivers", + "authorLast": "Solomon", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "368" + }, + { + "title": "The Deep", + "authorFirst": "Rivers", + "authorLast": "Solomon", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "179" + }, + { + "title": "Sea of Tranquility", + "authorFirst": "Emily", + "authorLast": "St. John Mandel", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "272" + }, + { + "title": "Station Eleven", + "authorFirst": "Emily", + "authorLast": "St. John Mandel", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "352" + }, + { + "title": "Armor", + "authorFirst": "John", + "authorLast": "Steakley", + "genre": "Sci-Fi", + "series": "", + "owned": "Want", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "426" + }, + { + "title": "Quicksilver", + "authorFirst": "Neal", + "authorLast": "Stephenson", + "genre": "Sci-Fi", + "series": "The Baroque Cycle 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "936" + }, + { + "title": "The Confusion", + "authorFirst": "Neal", + "authorLast": "Stephenson", + "genre": "Sci-Fi", + "series": "The Baroque Cycle 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "815" + }, + { + "title": "The System of the World", + "authorFirst": "Neal", + "authorLast": "Stephenson", + "genre": "Sci-Fi", + "series": "The Baroque Cycle 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "892" + }, + { + "title": "Anathem", + "authorFirst": "Neal", + "authorLast": "Stephenson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "928" + }, + { + "title": "Cryptonomicon", + "authorFirst": "Neal", + "authorLast": "Stephenson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "864" + }, + { + "title": "Fall", + "authorFirst": "Neal", + "authorLast": "Stephenson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "753" + }, + { + "title": "Interface", + "authorFirst": "Neal", + "authorLast": "Stephenson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "641" + }, + { + "title": "Reamde", + "authorFirst": "Neal", + "authorLast": "Stephenson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "1056" + }, + { + "title": "Seveneves", + "authorFirst": "Neal", + "authorLast": "Stephenson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "Jordan recommends", + "pages": "861" + }, + { + "title": "Snow Crash", + "authorFirst": "Neal", + "authorLast": "Stephenson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "X", + "compDate": "5/17/21", + "status": "", + "information": "", + "pages": "460" + }, + { + "title": "The Big U", + "authorFirst": "Neal", + "authorLast": "Stephenson", + "genre": "Satire", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "308" + }, + { + "title": "The Cobweb", + "authorFirst": "Neal", + "authorLast": "Stephenson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "432" + }, + { + "title": "The Diamond Age", + "authorFirst": "Neal", + "authorLast": "Stephenson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "The Rise and Fall of D.O.D.O", + "authorFirst": "Neal", + "authorLast": "Stephenson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "753" + }, + { + "title": "Zodiac", + "authorFirst": "Neal", + "authorLast": "Stephenson", + "genre": "Thriller", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "314" + }, + { + "title": "The Cuckoo's Egg", + "authorFirst": "Cliff", + "authorLast": "Stoll", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "378" + }, + { + "title": "Theft of Swords", + "authorFirst": "Michael J.", + "authorLast": "Sullivan", + "genre": "Fantasy", + "series": "Riyria Revelations 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Rise of Empire", + "authorFirst": "Michael J.", + "authorLast": "Sullivan", + "genre": "Fantasy", + "series": "Riyria Revelations 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Heir of Novron", + "authorFirst": "Michael J.", + "authorLast": "Sullivan", + "genre": "Fantasy", + "series": "Riyria Revelations 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Jasmine Throne", + "authorFirst": "Tasha", + "authorLast": "Suri", + "genre": "Fantasy", + "series": "Burning Kingdoms 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "512" + }, + { + "title": "The Justice of Kings", + "authorFirst": "Richard", + "authorLast": "Swan", + "genre": "Fantasy", + "series": "Empire of the Wolf 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "432" + }, + { + "title": "The Iron Dragon's Mother", + "authorFirst": "Michael", + "authorLast": "Swanwick", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The End of Men", + "authorFirst": "Christina", + "authorLast": "Sweeney-Baird", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "Manual" + }, + { + "title": "Tome of the Undergates", + "authorFirst": "Sam", + "authorLast": "Sykes", + "genre": "Epic Fantasy", + "series": "Aeon's Gate 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Black Halo", + "authorFirst": "Sam", + "authorLast": "Sykes", + "genre": "Epic Fantasy", + "series": "Aeon's Gate 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "775" + }, + { + "title": "The Skybound Sea", + "authorFirst": "Sam", + "authorLast": "Sykes", + "genre": "Epic Fantasy", + "series": "Aeon's Gate 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Bring Down Heaven", + "authorFirst": "Sam", + "authorLast": "Sykes", + "genre": "Epic Fantasy", + "series": "Bring Down Heaven 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Mortal Tally", + "authorFirst": "Sam", + "authorLast": "Sykes", + "genre": "Epic Fantasy", + "series": "Bring Down Heaven 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "688" + }, + { + "title": "God's Last Breath", + "authorFirst": "Sam", + "authorLast": "Sykes", + "genre": "Epic Fantasy", + "series": "Bring Down Heaven 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "704" + }, + { + "title": "Seven Blades in Black", + "authorFirst": "Sam", + "authorLast": "Sykes", + "genre": "Epic Fantasy", + "series": "The Grave of Empires 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "672" + }, + { + "title": "The Goldfinch", + "authorFirst": "Donna", + "authorLast": "Tartt", + "genre": "Fiction", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "855" + }, + { + "title": "Children of Time", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Sci-Fi", + "series": "Children of Time 1", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "608" + }, + { + "title": "Children of Ruin", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Sci-Fi", + "series": "Children of Time 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "592" + }, + { + "title": "Children of Memory", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Sci-Fi", + "series": "Children of Time 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "Dogs of War", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Sci-Fi", + "series": "Dogs of War 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "380" + }, + { + "title": "Bear Head", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Sci-Fi", + "series": "Dogs of War 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Tiger and the Wolf", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Fantasy", + "series": "Echoes of the Fall 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "608" + }, + { + "title": "The Bear and the Serpent", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Fantasy", + "series": "Echoes of the Fall 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "The Hyena and the Hawk", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Fantasy", + "series": "Echoes of the Fall 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "472" + }, + { + "title": "The Expert System's Brother", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Sci-Fi", + "series": "Expert System 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "176" + }, + { + "title": "The Expert System's Champion", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Sci-Fi", + "series": "Expert System 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Made Things", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Fantasy", + "series": "Made Things 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "190" + }, + { + "title": "Empire in Black and Gold", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Fantasy", + "series": "Shadows of the Apt 01", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "624" + }, + { + "title": "Dragonfly Falling", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Fantasy", + "series": "Shadows of the Apt 02", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "672" + }, + { + "title": "Blood of the Mantis", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Fantasy", + "series": "Shadows of the Apt 03", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "Salute the Dark", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Fantasy", + "series": "Shadows of the Apt 04", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "469" + }, + { + "title": "The Scarab Path", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Fantasy", + "series": "Shadows of the Apt 05", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "505" + }, + { + "title": "The Sea Witch", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Fantasy", + "series": "Shadows of the Apt 06", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Heirs of the Blade", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Fantasy", + "series": "Shadows of the Apt 07", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "640" + }, + { + "title": "The Air War", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Fantasy", + "series": "Shadows of the Apt 08", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "672" + }, + { + "title": "War Master's Gate", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Fantasy", + "series": "Shadows of the Apt 09", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "736" + }, + { + "title": "Seal of the Worm", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Fantasy", + "series": "Shadows of the Apt 10", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "640" + }, + { + "title": "Shards of Earth", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Sci-Fi", + "series": "The Final Architecture 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "560" + }, + { + "title": "Eyes of the Void", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Sci-Fi", + "series": "The Final Architecture 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Lords of Uncreation", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Sci-Fi", + "series": "The Final Architecture 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Elder Race", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "X", + "compDate": "2/1/23", + "status": "", + "information": "", + "pages": "192" + }, + { + "title": "Spiderlight", + "authorFirst": "Adrian", + "authorLast": "Tchaikovsky", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "296" + }, + { + "title": "Rosewater", + "authorFirst": "Tade", + "authorLast": "Thompson", + "genre": "Sci-Fi", + "series": "The Wormwood Trilogy 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "The Rosewater Insurrection", + "authorFirst": "Tade", + "authorLast": "Thompson", + "genre": "Sci-Fi", + "series": "The Wormwood Trilogy 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "408" + }, + { + "title": "The Rosewater Redemption", + "authorFirst": "Tade", + "authorLast": "Thompson", + "genre": "Sci-Fi", + "series": "The Wormwood Trilogy 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "408" + }, + { + "title": "Far from the Light of Heaven", + "authorFirst": "Tade", + "authorLast": "Thompson", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "The Fellowship of the Ring", + "authorFirst": "J.R.R.", + "authorLast": "Tolkien", + "genre": "Fantasy", + "series": "Lord of the Rings 1", + "owned": "Physical / EPUB", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "498" + }, + { + "title": "The Two Towers", + "authorFirst": "J.R.R.", + "authorLast": "Tolkien", + "genre": "Fantasy", + "series": "Lord of the Rings 2", + "owned": "Physical / EPUB", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "438" + }, + { + "title": "The Return of the King", + "authorFirst": "J.R.R.", + "authorLast": "Tolkien", + "genre": "Fantasy", + "series": "Lord of the Rings 3", + "owned": "Physical / EPUB", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "500" + }, + { + "title": "The Children of Hurin", + "authorFirst": "J.R.R.", + "authorLast": "Tolkien", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Hobbit", + "authorFirst": "J.R.R.", + "authorLast": "Tolkien", + "genre": "Fantasy", + "series": "", + "owned": "Physical / EPUB", + "read": "X", + "compDate": "", + "status": "", + "information": "", + "pages": "310" + }, + { + "title": "The Silmarillion", + "authorFirst": "J.R.R.", + "authorLast": "Tolkien", + "genre": "Fantasy", + "series": "", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Unfinished Tales of Numenor and Middle-Earth", + "authorFirst": "J.R.R.", + "authorLast": "Tolkien", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Monkeewrench", + "authorFirst": "P.J.", + "authorLast": "Tracy", + "genre": "Mystery", + "series": "Monkeewrench 01", + "owned": "Physical / EPUB", + "read": "X", + "compDate": "4/13/22", + "status": "", + "information": "", + "pages": "421" + }, + { + "title": "Live Bait", + "authorFirst": "P.J.", + "authorLast": "Tracy", + "genre": "Mystery", + "series": "Monkeewrench 02", + "owned": "EPUB (Want)", + "read": "X", + "compDate": "4/15/22", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "Dead Run", + "authorFirst": "P.J.", + "authorLast": "Tracy", + "genre": "Mystery", + "series": "Monkeewrench 03", + "owned": "EPUB (Want)", + "read": "X", + "compDate": "4/17/22", + "status": "", + "information": "", + "pages": "346" + }, + { + "title": "Snow Blind", + "authorFirst": "P.J.", + "authorLast": "Tracy", + "genre": "Mystery", + "series": "Monkeewrench 04", + "owned": "EPUB (Want)", + "read": "X", + "compDate": "4/30/22", + "status": "", + "information": "", + "pages": "320" + }, + { + "title": "Shoot to Thrill / Play To Kill", + "authorFirst": "P.J.", + "authorLast": "Tracy", + "genre": "Mystery", + "series": "Monkeewrench 05", + "owned": "EPUB (Want)", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "Manual" + }, + { + "title": "Off the Grid", + "authorFirst": "P.J.", + "authorLast": "Tracy", + "genre": "Mystery", + "series": "Monkeewrench 06", + "owned": "EPUB (Want)", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Sixth Idea", + "authorFirst": "P.J.", + "authorLast": "Tracy", + "genre": "Mystery", + "series": "Monkeewrench 07", + "owned": "EPUB (Want)", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Nothing Stays Buried", + "authorFirst": "P.J.", + "authorLast": "Tracy", + "genre": "Mystery", + "series": "Monkeewrench 08", + "owned": "EPUB (Want)", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Guilty Dead", + "authorFirst": "P.J.", + "authorLast": "Tracy", + "genre": "Mystery", + "series": "Monkeewrench 09", + "owned": "EPUB (Want)", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Ice Cold Heart", + "authorFirst": "P.J.", + "authorLast": "Tracy", + "genre": "Mystery", + "series": "Monkeewrench 10", + "owned": "EPUB (Want)", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Mechanical", + "authorFirst": "Ian", + "authorLast": "Tregillis", + "genre": "Sci-Fi", + "series": "The Alchemy Wars 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "471" + }, + { + "title": "The Rising", + "authorFirst": "Ian", + "authorLast": "Tregillis", + "genre": "Sci-Fi", + "series": "The Alchemy Wars 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "468" + }, + { + "title": "The Liberation", + "authorFirst": "Ian", + "authorLast": "Tregillis", + "genre": "Sci-Fi", + "series": "The Alchemy Wars 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "437" + }, + { + "title": "Bitter Seeds", + "authorFirst": "Ian", + "authorLast": "Tregillis", + "genre": "Sci-Fi", + "series": "The Milkweed Triptych 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "The Coldest War", + "authorFirst": "Ian", + "authorLast": "Tregillis", + "genre": "Sci-Fi", + "series": "The Milkweed Triptych 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "392" + }, + { + "title": "Necessary Evil", + "authorFirst": "Ian", + "authorLast": "Tregillis", + "genre": "Sci-Fi", + "series": "The Milkweed Triptych 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "No Gods, No Monsters", + "authorFirst": "Cadwell", + "authorLast": "Turnbull", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "201" + }, + { + "title": "The Lesson", + "authorFirst": "Cadwell", + "authorLast": "Turnbull", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "272" + }, + { + "title": "Space Opera", + "authorFirst": "Catherynne M.", + "authorLast": "Valente", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "299" + }, + { + "title": "Annihilation", + "authorFirst": "Jeff", + "authorLast": "VanderMeer", + "genre": "Sci-Fi", + "series": "Southern Reach 1", + "owned": "", + "read": "X", + "compDate": "6/12/24", + "status": "", + "information": "", + "pages": "208" + }, + { + "title": "Authority", + "authorFirst": "Jeff", + "authorLast": "VanderMeer", + "genre": "Sci-Fi", + "series": "Southern Reach 2", + "owned": "", + "read": "X", + "compDate": "6/18/24", + "status": "", + "information": "", + "pages": "341" + }, + { + "title": "Acceptance", + "authorFirst": "Jeff", + "authorLast": "VanderMeer", + "genre": "Sci-Fi", + "series": "Southern Reach 3", + "owned": "", + "read": "", + "compDate": "", + "status": "3 On Hold", + "information": "Priority 2024", + "pages": "352" + }, + { + "title": "Absolution", + "authorFirst": "Jeff", + "authorLast": "VanderMeer", + "genre": "Sci-Fi", + "series": "Southern Reach 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Release Oct 22 '24", + "pages": "Manual" + }, + { + "title": "Star Wars: From a Certain Point of View", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Star Wars Point of View 1", + "owned": "", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "Manual" + }, + { + "title": "Empire Strikes Back: From a Certain Point of View", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Star Wars Point of View 2", + "owned": "", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "Manual" + }, + { + "title": "Return of the Jedi: From a Certain Point of View", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Star Wars Point of View 3", + "owned": "", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "Manual" + }, + { + "title": "Of Blood and Honor", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Day of the Dragon", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Lord of the Clans", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Last Guardian", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Well of Eternity", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: War of the Ancients 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Demon Soul", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: War of the Ancients 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Sundering", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: War of the Ancients 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Cycle of Hatred", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 01", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Rise of the Horde", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 02", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Tides of Darkness", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 03", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Beyond the Dark Portal", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 04", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Night of the Dragon", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 05", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Arthas: Rise of the Lich King", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 06", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Stormrage", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 07", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Shattering: Prelude to Cataclysm", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 08", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Thrall: Twilight of the Aspects", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 09", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Wolfheart", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 10", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Jaina Proudmoore: Tides of War", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 11", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Dawn of the Aspects", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 12", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Vol'jin: Shadows of the Horde", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 13", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "War Crimes", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 14", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Illidan", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 15", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Traveler", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 16", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "432" + }, + { + "title": "Traveler: The Spiral Path", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 17", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Before the Storm", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: World of Warcraft 18", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "266" + }, + { + "title": "World of Warcraft: Chronicle Volume 1", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: WoW Chronicle 1", + "owned": "Want" + }, + { + "title": "World of Warcraft: Chronicle Volume 2", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: WoW Chronicle 2", + "owned": "Want" + }, + { + "title": "World of Warcraft: Chronicle Volume 3", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: WoW Chronicle 3", + "owned": "Want" + }, + { + "title": "World of Warcraft: Chronicle Volume 4", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "Warcraft: WoW Chronicle 4", + "owned": "Want" + }, + { + "title": "Horus Rising", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 01", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "1 In Progress", + "information": "Priority 2024", + "pages": "Manual" + }, + { + "title": "False Gods", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 02", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Galaxy in Flames", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 03", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Flight of the Eisenstein", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 04", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Fulgrim", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 05", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Descent of Angels", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 06", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Legion", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 07", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "576" + }, + { + "title": "Battle for the Abyss", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 08", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Mechanicum", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 09", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Tales of Heresy", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 10", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Fallen Angels", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 11", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "A Thousand Sons", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 12", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Nemesis", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 13", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "96" + }, + { + "title": "The First Heretic", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 14", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Prospero Burns", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 15", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Age of Darkness", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 16", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Outcast Dead", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 17", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Deliverance Lost", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 18", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Know No Fear", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 19", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Primarchs", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 20", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Fear to Tread", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 21", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Shadows of Treachery", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 22", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Angel Exterminatus", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 23", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Betrayer", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 24", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Mark of Calth", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 25", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Vulkan Lives", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 26", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Unremembered Empire", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 27", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Scars", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 28", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Vengeful Spirit", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 29", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Damnation of Pythos", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 30", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Legacies of Betrayal", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 31", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Deathfire", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 32", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "War Without End", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 33", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "Pharos", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 34", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Eye of Terra", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 35", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Path of Heaven", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 36", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Silent War", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 37", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Angels of Caliban", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 38", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Praetorian of Dorn", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 39", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Corax", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 40", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Master of Mankind", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 41", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Garro", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 42", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Shattered Legions", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 43", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Crimson King", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 44", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Tallarn", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 45", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Ruinstorm", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 46", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Old Earth", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 47", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Burden of Loyalty", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 48", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Wolfsbane", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 49", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Born of Flame", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 50", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Slaves to Darkness", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 51", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Heralds of the Siege", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 52", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Titandeath", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 53", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Buried Dagger", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 54", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Solar War", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 55", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Lost and the Damned", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 56", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The First Wall", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 57", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Saturnine", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 58", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Mortis", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 59", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Warhawk", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 60", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Echoes of Eternity", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 61", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The End and the Death, Volume I", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 62", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The End and the Death, Volume II", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 63", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The End and the Death, Volume III", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Sci-Fi", + "series": "Warhammer 40k, The Horus Heresy 64", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Unfettered (Anthology)", + "authorFirst": "Various", + "authorLast": "Various", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Wolf of Oren-Yaro", + "authorFirst": "K.S.", + "authorLast": "Villoso", + "genre": "Fantasy", + "series": "The Chronicles of the Wolf Queen 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Ikessar Falcon", + "authorFirst": "K.S.", + "authorLast": "Villoso", + "genre": "Fantasy", + "series": "The Chronicles of the Wolf Queen 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Dragon of Jin-Sayeng", + "authorFirst": "K.S.", + "authorLast": "Villoso", + "genre": "Fantasy", + "series": "The Chronicles of the Wolf Queen 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "A Fire Upon the Deep", + "authorFirst": "Vernor", + "authorLast": "Vinge", + "genre": "Sci-Fi", + "series": "Zones of Thought 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "605" + }, + { + "title": "A Deepness in the Sky", + "authorFirst": "Vernor", + "authorLast": "Vinge", + "genre": "Sci-Fi", + "series": "Zones of Thought 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "792" + }, + { + "title": "The Children of the Sky", + "authorFirst": "Vernor", + "authorLast": "Vinge", + "genre": "Sci-Fi", + "series": "Zones of Thought 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "444" + }, + { + "title": "The First Binding", + "authorFirst": "R. R.", + "authorLast": "Virdi", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Chosen and the Beautiful", + "authorFirst": "Nghi", + "authorLast": "Vo", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "Great Gatsby reinvention", + "pages": "272" + }, + { + "title": "Slaughterhouse-Five", + "authorFirst": "Hurt", + "authorLast": "Vonnegut", + "genre": "Sci-Fi/Classic", + "series": "", + "owned": "Physical", + "read": "X", + "compDate": "10/16/20", + "status": "", + "information": "", + "pages": "275" + }, + { + "title": "There Before the Chaos", + "authorFirst": "K. B.", + "authorLast": "Wagers", + "genre": "Sci-Fi", + "series": "The Farian War 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "393" + }, + { + "title": "Down Among the Dead", + "authorFirst": "K. B.", + "authorLast": "Wagers", + "genre": "Sci-Fi", + "series": "The Farian War 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "448" + }, + { + "title": "Out Past The Stars", + "authorFirst": "K. B.", + "authorLast": "Wagers", + "genre": "Sci-Fi", + "series": "The Farian War 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "432" + }, + { + "title": "Behind the Throne", + "authorFirst": "K. B.", + "authorLast": "Wagers", + "genre": "Sci-Fi", + "series": "The Indranan War 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "424" + }, + { + "title": "After the Crown", + "authorFirst": "K. B.", + "authorLast": "Wagers", + "genre": "Sci-Fi", + "series": "The Indranan War 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "409" + }, + { + "title": "Beyond the Empire", + "authorFirst": "K. B.", + "authorLast": "Wagers", + "genre": "Sci-Fi", + "series": "The Indranan War 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "401" + }, + { + "title": "Legacy of Ash", + "authorFirst": "Matthew", + "authorLast": "Ward", + "genre": "Fantasy", + "series": "The Tower of Stars 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "792" + }, + { + "title": "Legacy of Steel", + "authorFirst": "Matthew", + "authorLast": "Ward", + "genre": "Fantasy", + "series": "The Tower of Stars 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "704" + }, + { + "title": "Legacy of Light", + "authorFirst": "Matthew", + "authorLast": "Ward", + "genre": "Fantasy", + "series": "The Tower of Stars 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "792" + }, + { + "title": "Gold Fame Citrus", + "authorFirst": "Claire Vaye", + "authorLast": "Watkins", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "352" + }, + { + "title": "You Die When You Die", + "authorFirst": "Angus", + "authorLast": "Watson", + "genre": "Fantasy", + "series": "West of West 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Land You Never Leave", + "authorFirst": "Angus", + "authorLast": "Watson", + "genre": "Fantasy", + "series": "West of West 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "528" + }, + { + "title": "Where Gods Fear To Go", + "authorFirst": "Angus", + "authorLast": "Watson", + "genre": "Fantasy", + "series": "West of West 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "The Mysteries", + "authorFirst": "Bill", + "authorLast": "Watterson", + "genre": "Fiction", + "series": "", + "owned": "Physical", + "read": "X", + "compDate": "2/4/24", + "status": "", + "information": "", + "pages": "72" + }, + { + "title": "Blindsight", + "authorFirst": "Peter", + "authorLast": "Watts", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "384" + }, + { + "title": "The Umbrella Academy, Vol. 1: Apocalypse Suite", + "authorFirst": "Gerard", + "authorLast": "Way", + "genre": "Graphic Novel", + "series": "Umbrella Academy 1", + "owned": "", + "read": "X", + "compDate": "7/25/22", + "status": "", + "information": "", + "pages": "184" + }, + { + "title": "The Umbrella Academy, Vol. 2: Dallas", + "authorFirst": "Gerard", + "authorLast": "Way", + "genre": "Graphic Novel", + "series": "Umbrella Academy 2", + "owned": "", + "read": "X", + "compDate": "8/7/22", + "status": "", + "information": "", + "pages": "192" + }, + { + "title": "The Umbrella Academy, Vol. 3: Hotel Oblivion", + "authorFirst": "Gerard", + "authorLast": "Way", + "genre": "Graphic Novel", + "series": "Umbrella Academy 3", + "owned": "", + "read": "X", + "compDate": "8/16/22", + "status": "", + "information": "", + "pages": "216" + }, + { + "title": "The Golem and the Jinni", + "authorFirst": "Helene", + "authorLast": "Wecker", + "genre": "Fantasy", + "series": "The Golem and the Jinni 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "486" + }, + { + "title": "The Hidden Palace", + "authorFirst": "Helene", + "authorLast": "Wecker", + "genre": "Fantasy", + "series": "The Golem and the Jinni 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "480" + }, + { + "title": "The Black Prism", + "authorFirst": "Brent", + "authorLast": "Weeks", + "genre": "Fantasy", + "series": "Lightbringer 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "659" + }, + { + "title": "The Blinding Knife", + "authorFirst": "Brent", + "authorLast": "Weeks", + "genre": "Fantasy", + "series": "Lightbringer 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "688" + }, + { + "title": "The Broken Eye", + "authorFirst": "Brent", + "authorLast": "Weeks", + "genre": "Fantasy", + "series": "Lightbringer 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "795" + }, + { + "title": "The Blood Mirror", + "authorFirst": "Brent", + "authorLast": "Weeks", + "genre": "Fantasy", + "series": "Lightbringer 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "720" + }, + { + "title": "The Burning White", + "authorFirst": "Brent", + "authorLast": "Weeks", + "genre": "Fantasy", + "series": "Lightbringer 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "992" + }, + { + "title": "The Way of Shadows", + "authorFirst": "Brent", + "authorLast": "Weeks", + "genre": "Fantasy", + "series": "Night Angel 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "645" + }, + { + "title": "Shadow's Edge", + "authorFirst": "Brent", + "authorLast": "Weeks", + "genre": "Fantasy", + "series": "Night Angel 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "656" + }, + { + "title": "Beyond the Shadows", + "authorFirst": "Brent", + "authorLast": "Weeks", + "genre": "Fantasy", + "series": "Night Angel 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "720" + }, + { + "title": "Artemis", + "authorFirst": "Andy", + "authorLast": "Weir", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "322" + }, + { + "title": "Project Hail Mary", + "authorFirst": "Andy", + "authorLast": "Weir", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "X", + "compDate": "6/25/21", + "status": "", + "information": "", + "pages": "496" + }, + { + "title": "The Martian", + "authorFirst": "Andy", + "authorLast": "Weir", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "X", + "compDate": "2/3/24", + "status": "", + "information": "", + "pages": "408" + }, + { + "title": "Dragons of Autumn Twilight", + "authorFirst": "Margaret", + "authorLast": "Weis", + "genre": "Fantasy", + "series": "Dragonlance: Chronicles 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "448" + }, + { + "title": "Dragons of Winter Night", + "authorFirst": "Margaret", + "authorLast": "Weis", + "genre": "Fantasy", + "series": "Dragonlance: Chronicles 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "Dragons of Spring Dawning", + "authorFirst": "Margaret", + "authorLast": "Weis", + "genre": "Fantasy", + "series": "Dragonlance: Chronicles 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "379" + }, + { + "title": "The Time Machine", + "authorFirst": "H.G.", + "authorLast": "Wells", + "genre": "Sci-Fi/Classic", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "All Systems Red", + "authorFirst": "Martha", + "authorLast": "Wells", + "genre": "Sci-Fi", + "series": "The Murderbot Diaries 1", + "owned": "Physical", + "read": "X", + "compDate": "7/11/21", + "status": "", + "information": "", + "pages": "156" + }, + { + "title": "Artificial Condition", + "authorFirst": "Martha", + "authorLast": "Wells", + "genre": "Sci-Fi", + "series": "The Murderbot Diaries 2", + "owned": "Physical", + "read": "X", + "compDate": "10/10/21", + "status": "", + "information": "", + "pages": "154" + }, + { + "title": "Rogue Protocol", + "authorFirst": "Martha", + "authorLast": "Wells", + "genre": "Sci-Fi", + "series": "The Murderbot Diaries 3", + "owned": "Want", + "read": "X", + "compDate": "10/17/21", + "status": "", + "information": "", + "pages": "158" + }, + { + "title": "Exit Strategy", + "authorFirst": "Martha", + "authorLast": "Wells", + "genre": "Sci-Fi", + "series": "The Murderbot Diaries 4", + "owned": "Want", + "read": "X", + "compDate": "10/26/21", + "status": "", + "information": "", + "pages": "576" + }, + { + "title": "Home: Habitat, Range, Niche, Territory", + "authorFirst": "Martha", + "authorLast": "Wells", + "genre": "Sci-Fi", + "series": "The Murderbot Diaries 4.5", + "owned": "Want", + "read": "X", + "compDate": "10/26/21", + "status": "", + "information": "", + "pages": "19" + }, + { + "title": "Network Effect", + "authorFirst": "Martha", + "authorLast": "Wells", + "genre": "Sci-Fi", + "series": "The Murderbot Diaries 5", + "owned": "Want", + "read": "X", + "compDate": "11/13/21", + "status": "", + "information": "", + "pages": "352" + }, + { + "title": "Fugitive Telemetry", + "authorFirst": "Martha", + "authorLast": "Wells", + "genre": "Sci-Fi", + "series": "The Murderbot Diaries 6", + "owned": "Want", + "read": "X", + "compDate": "11/27/21", + "status": "", + "information": "", + "pages": "176" + }, + { + "title": "System Collapse", + "authorFirst": "Martha", + "authorLast": "Wells", + "genre": "Sci-Fi", + "series": "The Murderbot Diaries 7", + "owned": "Want", + "read": "X", + "compDate": "4/3/24", + "status": "", + "information": "", + "pages": "160" + }, + { + "title": "Witch King", + "authorFirst": "Martha", + "authorLast": "Wells", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "432" + }, + { + "title": "Blackbirds", + "authorFirst": "Chuck", + "authorLast": "Wendig", + "genre": "Mystery", + "series": "Miriam Black 1", + "owned": "", + "read": "", + "compDate": "", + "status": "4 Priority", + "information": "", + "pages": "322" + }, + { + "title": "Mockingbird", + "authorFirst": "Chuck", + "authorLast": "Wendig", + "genre": "Mystery", + "series": "Miriam Black 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "368" + }, + { + "title": "The Cormorant", + "authorFirst": "Chuck", + "authorLast": "Wendig", + "genre": "Mystery", + "series": "Miriam Black 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "356" + }, + { + "title": "Thunderbird", + "authorFirst": "Chuck", + "authorLast": "Wendig", + "genre": "Mystery", + "series": "Miriam Black 4", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "344" + }, + { + "title": "The Raptor and The Wren", + "authorFirst": "Chuck", + "authorLast": "Wendig", + "genre": "Mystery", + "series": "Miriam Black 5", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "288" + }, + { + "title": "Vultures", + "authorFirst": "Chuck", + "authorLast": "Wendig", + "genre": "Mystery", + "series": "Miriam Black 6", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "The Blue Blazes", + "authorFirst": "Chuck", + "authorLast": "Wendig", + "genre": "Mystery", + "series": "Mookie Pearl 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + }, + { + "title": "The Hellsblood Bride", + "authorFirst": "Chuck", + "authorLast": "Wendig", + "genre": "Mystery", + "series": "Mookie Pearl 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Wanderers", + "authorFirst": "Chuck", + "authorLast": "Wendig", + "genre": "Sci-Fi", + "series": "Wanderers 1", + "owned": "Physical", + "read": "X", + "compDate": "2/3/20", + "status": "", + "information": "", + "pages": "800" + }, + { + "title": "Wayward", + "authorFirst": "Chuck", + "authorLast": "Wendig", + "genre": "Sci-Fi", + "series": "Wanderers 2", + "owned": "", + "read": "X", + "compDate": "12/20/22", + "status": "", + "information": "", + "pages": "816" + }, + { + "title": "Zer0es", + "authorFirst": "Chuck", + "authorLast": "Wendig", + "genre": "Mystery", + "series": "Zer0es 1", + "owned": "Physical", + "read": "X", + "compDate": "7/21/20", + "status": "", + "information": "", + "pages": "432" + }, + { + "title": "Invasive", + "authorFirst": "Chuck", + "authorLast": "Wendig", + "genre": "Mystery", + "series": "Zer0es 2", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "161" + }, + { + "title": "The Book of Accidents", + "authorFirst": "Chuck", + "authorLast": "Wendig", + "genre": "Sci-Fi", + "series": "", + "owned": "", + "read": "X", + "compDate": "2/22/24", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "A Big Ship at the Edge of the Universe", + "authorFirst": "Alex", + "authorLast": "White", + "genre": "Sci-Fi", + "series": "The Salvagers 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "473" + }, + { + "title": "A Bad Deal for the Whole Galaxy", + "authorFirst": "Alex", + "authorLast": "White", + "genre": "Sci-Fi", + "series": "The Salvagers 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "544" + }, + { + "title": "The Worst of All Possible Worlds", + "authorFirst": "Alex", + "authorLast": "White", + "genre": "Sci-Fi", + "series": "The Salvagers 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Every Mountain Made Low", + "authorFirst": "Alex", + "authorLast": "White", + "genre": "Horror", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "416" + }, + { + "title": "Killing Gravity", + "authorFirst": "Corey J.", + "authorLast": "White", + "genre": "Sci-Fi", + "series": "The VoidWitch Saga 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "176" + }, + { + "title": "Void Black Shadow", + "authorFirst": "Corey J.", + "authorLast": "White", + "genre": "Sci-Fi", + "series": "The VoidWitch Saga 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "217" + }, + { + "title": "Static Ruin", + "authorFirst": "Corey J.", + "authorLast": "White", + "genre": "Sci-Fi", + "series": "The VoidWitch Saga 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "It's Better To Be Feared", + "authorFirst": "Seth", + "authorLast": "Wickersham", + "genre": "Nonfiction", + "series": "", + "owned": "", + "read": "X", + "compDate": "1/7/22", + "status": "", + "information": "", + "pages": "520" + }, + { + "title": "Unsouled", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "Cradle 01", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "292" + }, + { + "title": "Soulsmith", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "Cradle 02", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "284" + }, + { + "title": "Blackflame", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "Cradle 03", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "368" + }, + { + "title": "Skysworn", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "Cradle 04", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "290" + }, + { + "title": "Ghostwater", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "Cradle 05", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "310" + }, + { + "title": "Underlord", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "Cradle 06", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "348" + }, + { + "title": "Uncrowned", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "Cradle 07", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "355" + }, + { + "title": "Wintersteel", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "Cradle 08", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "520" + }, + { + "title": "Bloodline", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "Cradle 09", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "397" + }, + { + "title": "Reaper", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "Cradle 10", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "486" + }, + { + "title": "Dreadgod", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "Cradle 11", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "484" + }, + { + "title": "Waybound", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "Cradle 12", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Of Sea and Shadow", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "The Elder Empire - Sea 1", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024 - Read 1st", + "pages": "369" + }, + { + "title": "Of Dawn and Darkness", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "The Elder Empire - Sea 2", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "Read 3rd", + "pages": "362" + }, + { + "title": "Of Kings and Killers", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "The Elder Empire - Sea 3", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "Read 5th", + "pages": "401" + }, + { + "title": "Of Shadow and Sea", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "The Elder Empire - Shadow 1", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "Read 2nd", + "pages": "369" + }, + { + "title": "Of Darkness and Dawn", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "The Elder Empire - Shadow 2", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "Read 4th", + "pages": "362" + }, + { + "title": "Of Killers and Kings", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "The Elder Empire - Shadow 3", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "Read last", + "pages": "401" + }, + { + "title": "The Captain", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "The Last Horizon 1", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "418" + }, + { + "title": "House of Blades", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "The Traveler's Gate 1", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "", + "pages": "292" + }, + { + "title": "The Crimson Vault", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "The Traveler's Gate 2", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "384" + }, + { + "title": "City of Light", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "The Traveler's Gate 3", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "392" + }, + { + "title": "The Traveler's Gate Chronicles", + "authorFirst": "Will", + "authorLast": "Wight", + "genre": "Fantasy", + "series": "The Traveler's Gate 3.5", + "owned": "Kindle", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Doomsday Book", + "authorFirst": "Connie", + "authorLast": "Willis", + "genre": "Sci-Fi", + "series": "Oxford Time Travel 1", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "559" + }, + { + "title": "To Say Nothing of the Dog", + "authorFirst": "Connie", + "authorLast": "Willis", + "genre": "Sci-Fi", + "series": "Oxford Time Travel 2", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "504" + }, + { + "title": "Blackout/All Clear", + "authorFirst": "Connie", + "authorLast": "Willis", + "genre": "Sci-Fi", + "series": "Oxford Time Travel 3", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "Manual" + }, + { + "title": "Tomorrow, and Tomorrow, and Tomorrow", + "authorFirst": "Gabrielle", + "authorLast": "Zevin", + "genre": "Fiction", + "series": "", + "owned": "EPUB", + "read": "", + "compDate": "", + "status": "2 Ready", + "information": "Priority 2024", + "pages": "504" + }, + { + "title": "Iron Widow", + "authorFirst": "Xiran Jay", + "authorLast": "Zhao", + "genre": "Fantasy", + "series": "", + "owned": "", + "read": "", + "compDate": "", + "status": "", + "information": "", + "pages": "400" + } +] diff --git a/src/_data/catalog/books.json b/src/_data/catalog/books.json index 5ee417d..e98d424 100644 --- a/src/_data/catalog/books.json +++ b/src/_data/catalog/books.json @@ -822,7 +822,7 @@ "rating": "", "status": "In Progress", "pages": "635", - "isbn": "9781409083115" + "isbn": "9780765348784" }, { "title": "The Girl Who Could Move Sh*t with Her Mind", @@ -1405,7 +1405,7 @@ "rating": "★★★★", "status": "", "pages": "310", - "isbn": "1940456843" + "isbn": "9781940456843" }, { "title": "Pilot Error", @@ -1449,7 +1449,7 @@ "rating": "★★★★", "status": "", "pages": "387", - "isbn": "857668412" + "isbn": "9780857668417" }, { "title": "Homecoming", @@ -1471,7 +1471,7 @@ "rating": "★★★★", "status": "", "pages": "408", - "isbn": "857669451" + "isbn": "9780857669452" }, { "title": "Sleeping Wolves", @@ -1493,7 +1493,7 @@ "rating": "★★★★", "status": "", "pages": "381", - "isbn": "Manual" + "isbn": "9781915998002" }, { "title": "Mexican Gothic", @@ -1636,7 +1636,7 @@ "rating": "", "status": "In Progress", "pages": "784", - "isbn": "593650867" + "isbn": "9780593650868" }, { "title": "To Sleep in a Sea of Stars", @@ -2241,7 +2241,7 @@ "rating": "★★★★★", "status": "", "pages": "154", - "isbn": "9782367935188" + "isbn": "9781250186928" }, { "title": "Rogue Protocol", diff --git a/src/_includes/bookitem.njk b/src/_includes/bookitem.njk index 9bb3ff4..253cc0a 100644 --- a/src/_includes/bookitem.njk +++ b/src/_includes/bookitem.njk @@ -1,14 +1,18 @@ -
- {% set bookshop_base = "https://bookshop.org/a/109591/" %} - - {% if book.localCover %} - {{ book.title | safe }} - {% else %} - {{ book.title | safe }} - {% endif %} - -

{{ book.title | safe }}

-

by {{ book.authorFirst }} {{ book.authorLast }}

-

{{ book.compDate }}

- {% if book.rating != "" %}

{{ book.rating }}

{% endif %} +
+
+ {% set bookshop_base = "https://bookshop.org/a/109783/" %} + + {% if book.localCover %} + {{ book.title | safe }} + {% else %} + {{ book.title | safe }} + {% endif %} + +
{{ book.title | safe }}
+

by {{ book.authorFirst }} {{ book.authorLast }} + {% if book.rating != "" %}
{{ book.rating }}{% endif %} +
+ {{ book.compDate }} +

+
\ No newline at end of file diff --git a/src/_includes/now-stuff.md b/src/_includes/now-stuff.njk similarity index 100% rename from src/_includes/now-stuff.md rename to src/_includes/now-stuff.njk diff --git a/src/assets/css/_card.scss b/src/assets/css/_card.scss index 5994c1d..33ad892 100644 --- a/src/assets/css/_card.scss +++ b/src/assets/css/_card.scss @@ -93,6 +93,14 @@ margin-bottom: 10px; } } + + &.catalog-card { + padding: .5rem; + font-size: 0.9rem; + h6 { + font-family: var(--sans-serif); + } + } } .card-container { diff --git a/src/assets/css/_catalog.scss b/src/assets/css/_catalog.scss new file mode 100644 index 0000000..ec619f9 --- /dev/null +++ b/src/assets/css/_catalog.scss @@ -0,0 +1,33 @@ +.catalog { + font-size: 0.9rem; + margin-bottom: 1rem; + + img { + border-radius: 0; + margin-bottom: 1rem; + } + + h1, h2, h3, h4, h5, h6 { + font-family: var(--sans-serif); + margin-bottom: 0 !important; + } +} + +.catalog-years { + // display: flex; + // flex-wrap: wrap; + // justify-content: center; + text-align: center;; + margin-bottom: 1rem; +} + +.catalog-year { + padding: 0.5rem; + border: 3px solid var(--cyan); + border-radius: 15px; + background-color: var(--grey); + + h2 { + margin-bottom: 0; + } +} \ No newline at end of file diff --git a/src/assets/css/style.scss b/src/assets/css/style.scss index 8b4a616..9eceafc 100644 --- a/src/assets/css/style.scss +++ b/src/assets/css/style.scss @@ -11,6 +11,7 @@ @import 'accordion'; @import 'card'; +@import 'catalog'; @import 'dracula-prism'; @import 'images'; @import 'links'; diff --git a/src/pages/bookshelf.njk b/src/pages/bookshelf.njk index 5faeb44..5e4a9a4 100644 --- a/src/pages/bookshelf.njk +++ b/src/pages/bookshelf.njk @@ -3,42 +3,46 @@ title: Bookshelf permalink: /bookshelf/index.html --- -

A whole bunch of people on the internet have started to have bookshelves and almanacs on their websites, such as Robb Knight, Bob Monsour, and Swyx. I love this idea; I've had aspirations to do something similar for ages, but I've always managed to just fall back on linking to my Goodreads or StoryGraph profiles, or just pointing people towards my reading spreadsheet. I'm going to try to do better. +

A whole bunch of people on the internet have started to have bookshelves and almanacs on their websites, such as Robb Knight, Bob Monsour, and Chazz Basuta. I love this idea; I've had aspirations to do something similar for ages, but I've always managed to just fall back on linking to my Goodreads or StoryGraph profiles, or just pointing people towards my reading spreadsheet. I'm going to try to do better. -

One day, I'll go into detail about how this is constructed, but for now, I'm just going to list the books I've read recently, along with my ratings. Eventually, I'll have it updating auto-magically, but for now, I'm just going to update it manually. +

+
+ {% for year in catalog.books.years %} +
+ {{ year.year | replace("y", "") }}{% if not loop.last %} {% endif %} +
+ {% endfor %} +
+
+

Currently Reading

+
+
+ {%- for book in catalog.books.current %} + {% include "bookitem.njk" %} + {%- endfor %} +
-
- {% for year in catalog.books.years %} - {{ year.year | replace("y", "") }}{% if not loop.last %} / {% endif %} - {% endfor %} -
+ {% set previous_year = "" %} + {%- for book in catalog.books.datedBooks %} + {%- set current_year = book.compDate | truncate(4, true, '') -%} + {%- if current_year != previous_year %} + {% if not loop.first %}
{% endif %} +
+

{{ current_year }}

+
+ {% set previous_year = current_year %} +
+ {%- endif %} + {% include "bookitem.njk" %} + {%- endfor %} -{% set book = catalog.books.current[0] %} -
- {% include "bookitem.njk" %} -
- -{% set previous_year = "" %} -{%- for book in catalog.books.datedBooks %} - {# extract the year from the yearRead property that is formatted as yyyy/mm/dd #} - {%- set current_year = book.compDate | truncate(4, true, '') -%} - {%- if current_year != previous_year %} - {# if we're changing years and it's not the first year, - close the 'bklist' div on the prior year, set the heading id - to the new year, update the previous_year, and open a new bklist div #} - {% if not loop.first %}
{% endif %} -

{{ current_year }}

- {% set previous_year = current_year %} -
- {%- endif %} - {% include "bookitem.njk" %} - {# close the 'bklist' div on the last book in the list #} - {% if loop.last %}
{% endif %} -{%- endfor %} - -

Undated: don't know when I read these

-
- {%- for book in catalog.books.undatedBooks %} - {% include "bookitem.njk" %} - {%- endfor %} +
+

Undated

+ Books that I've read that I don't have a completion date for. +
+
+ {%- for book in catalog.books.undatedBooks %} + {% include "bookitem.njk" %} + {%- endfor %} +
\ No newline at end of file diff --git a/src/pages/now.njk b/src/pages/now.njk index 98e4ef1..279536c 100644 --- a/src/pages/now.njk +++ b/src/pages/now.njk @@ -7,14 +7,19 @@ permalink: /now/index.html {% set nowPost = latest_nows.slice(0, 1) %} {% for post in nowPost %}
-
- {{ post.date | postDate }}
- See Previous Entries Here -
+ Last updated: {{ post.date | postDate }} (Previous Entries)
{{ post.content | safe }}
{% endfor %} - -{% markdown %} - {%- include 'now-stuff.md' -%} -{% endmarkdown %} \ No newline at end of file +
+
+ {% set book = catalog.books.current[0] %} +
+

Currently Reading

+
+
+ {%- for book in catalog.books.current %} + {% include "bookitem.njk" %} + {%- endfor %} +
+
\ No newline at end of file