diff --git a/README.md b/README.md index 35cbdd1..90a0b4a 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,6 @@ You can see all the chosen character-name titles in the [`book-data/`](./book-da ## Text fixups -This project makes a lot of fixups to the original text, mostly around typos, punctuation, capitalization, and consistency. You can get a more specific idea of what these are via the code; there's [`convert-worker.js`](https://github.com/domenic/worm-scraper/blob/master/lib/convert-worker.js), where some things are handled generally, and [`substitutions.json`](https://github.com/domenic/worm-scraper/blob/master/lib/substitutions.json), for one-off fixes. +This project makes a lot of fixups to the original text, mostly around typos, punctuation, capitalization, and consistency. You can get a more specific idea of what these are via the code: there's [`convert-worker.js`](lib/convert-worker.js), where some things are handled generally, and the [`substitutions/` directory](./substitutions/), for one-off fixes. This process is designed to be extensible, so if you notice any problems with the original text that you think should be fixed, file an issue to let me know, and we can update the fixup code so that the resulting ebook is improved. (Or better yet, send a pull request!) diff --git a/lib/convert-worker.js b/lib/convert-worker.js index 660d5ef..2af07f7 100644 --- a/lib/convert-worker.js +++ b/lib/convert-worker.js @@ -2,15 +2,19 @@ const workerpool = require("workerpool"); const fs = require("fs"); const { JSDOM } = require("jsdom"); -const substitutions = require("./substitutions.json"); workerpool.worker({ convertChapter }); -function convertChapter(chapter, bookTitle, inputPath, outputPath) { +function convertChapter(chapter, bookTitle, inputPath, outputPath, chapterSubstitutions) { const contents = fs.readFileSync(inputPath, { encoding: "utf-8" }); const rawChapterJSDOM = new JSDOM(contents); - const { output, warnings } = getChapterString(chapter, bookTitle, rawChapterJSDOM.window.document); + const { output, warnings } = getChapterString( + chapter, + bookTitle, + chapterSubstitutions, + rawChapterJSDOM.window.document + ); // TODO: this should probably not be necessary... jsdom bug I guess!? rawChapterJSDOM.window.close(); @@ -19,9 +23,9 @@ function convertChapter(chapter, bookTitle, inputPath, outputPath) { return warnings; } -function getChapterString(chapter, bookTitle, rawChapterDoc) { +function getChapterString(chapter, bookTitle, chapterSubstitutions, rawChapterDoc) { const { xml, warnings } = - getBodyXML(chapter, bookTitle, rawChapterDoc.querySelector(".entry-content")); + getBodyXML(chapter, bookTitle, chapterSubstitutions, rawChapterDoc.querySelector(".entry-content")); const output = ` @@ -40,7 +44,7 @@ ${xml} return { output, warnings }; } -function getBodyXML(chapter, bookTitle, contentEl) { +function getBodyXML(chapter, bookTitle, chapterSubstitutions, contentEl) { const warnings = []; // Remove initial Next Chapter and Previous Chapter

@@ -287,21 +291,21 @@ function getBodyXML(chapter, bookTitle, contentEl) { xml = fixParahumansOnline(xml, bookTitle); // One-off fixes - for (const substitution of substitutions[chapter.url] || []) { + for (const substitution of chapterSubstitutions) { if (substitution.before) { const indexOf = xml.indexOf(substitution.before); if (indexOf === -1) { warnings.push(`Could not find text "${substitution.before}" in ${chapter.url}. The chapter may have been ` + - `updated at the source, in which case, you should edit substitutions.json.`); + `updated at the source, in which case, you should edit the substitutions file.`); } if (indexOf !== xml.lastIndexOf(substitution.before)) { warnings.push(`The text "${substitution.before}" occurred twice, and so the substitution was ambiguous. ` + - `Update substitutions.json for a more precise substitution.`); + `Update the substitutions file for a more precise substitution.`); } xml = xml.replace(new RegExp(escapeRegExp(substitution.before), "u"), substitution.after); } else if (substitution.regExp) { - xml = xml.replace(new RegExp(substitution.regExp, "ug"), substitution.replacement); + xml = xml.replace(substitution.regExp, substitution.replacement); } else { warnings.push(`Invalid substitution specified for ${chapter.url}`); } @@ -336,7 +340,7 @@ function fixTruncatedWords(xml) { xml = xml.replace(/[‘’][Cc]age(?![a-z])/ug, "’Cage"); // We can't do "’Clear" (short for Crystalclear) here because it appears too much as a normal word preceded by an - // open quote, so we do that in substitutions.json. + // open quote, so we do that in the substitutions file. return xml; } @@ -355,9 +359,9 @@ function fixDialogueTags(xml) { // // This sometimes overcorrects, as in the following example: // > “Basically,” Alec said, “For your powers to manifest, ... - // Here instead we should lowercase the "f". We handle that via one-offs in substitutions.json. + // Here instead we should lowercase the "f". We handle that via one-offs in the substitutions file. // - // This applies to ~800 instances, so although we have to correct back in substitutions.json a decent number of + // This applies to ~800 instances, so although we have to correct back in the substitutions file a decent number of // times, it definitely pays for itself. Most of the instances we have to correct back we also need to fix the // capitalization anyway, and that's harder to do automatically, since proper names/"I"/etc. stay capitalized. xml = xml.replace(/,” ([A-Za-z]+ [A-Za-z]+), “([A-Z])/ug, ",” $1. “$2"); @@ -535,8 +539,8 @@ function fixCapitalization(xml, bookTitle) { /patrol (block|group|leader|guard|student|uniform|squad|soldier|officer|crew|girl|bus|training)/uig, (_, $1) => `Patrol ${$1.toLowerCase()}` ); - // This usually works in Ward (some instances corrected back in substitutions.json), and has a few false positives in - // Worm, where it is never needed: + // This usually works in Ward (some instances corrected back in the substitutions file), and has a few false positives + // in Worm, where it is never needed: if (bookTitle === "Ward") { xml = xml.replace(/the patrol(?!s|ling)/ug, "the Patrol"); } @@ -572,13 +576,14 @@ function fixCapitalization(xml, bookTitle) { xml = xml.replace(/(?)Flock/ug, "flock"); // Especially early in Worm, PRT designations are capitalized; they should not be. This fixes the cases where we - // can be reasonably sure they don't start a sentence, although more specific instances are done in - // substitutions.json, and some need to be back-corrected. + // can be reasonably sure they don't start a sentence, although more specific instances are done in the substitutions + // file, and some need to be back-corrected. // // Note: "Master" is specifically omitted because it fails poorly on Worm Interlude 4. Other instances need to be - // corrected via substitutions.json. + // corrected via the substitutions file. // - // This also over-de-capitalizes "The Stranger" in Ward (a titan name). Those also get fixed in substitutions.json. + // This also over-de-capitalizes "The Stranger" in Ward (a titan name). Those also get fixed in the substitutions + // file. xml = xml.replace( // eslint-disable-next-line max-len /(?|\n|: )(Mover|Shaker|Brute|Breaker|Tinker|Blaster|Thinker|Striker|Changer|Trump|Stranger|Shifter|Shaper)(?! [A-Z])/ug, @@ -615,7 +620,7 @@ function fixCapitalization(xml, bookTitle) { // "Mom" and "Dad" should be capitalized when used as a proper name. These regexps are tuned to catch a good amount of // instances, without over-correcting for non-proper-name-like cases. Many other instances are handled in - // substitutions.json. + // the substitutions file. xml = xml.replace(/(? { @@ -19,6 +20,9 @@ module.exports = async ( await fs.writeFile(chapterDataPath, JSON.stringify(chapterData, null, 2)); const flattenedChapters = chapterData.flatMap(arc => arc.chapters); + const substitutionsText = await fs.readFile(substitutionsPath, { encoding: "utf-8" }); + const substitutions = parseSubstitutions(substitutionsText); + console.log("Converting raw downloaded HTML to EPUB chapters"); const progress = progressUtils.start(flattenedChapters.length); @@ -32,8 +36,15 @@ module.exports = async ( await Promise.all(flattenedChapters.map(async chapter => { const inputPath = path.resolve(cachePath, chapter.inputFilename); const outputPath = path.resolve(contentPath, chapter.outputFilename); + const chapterSubstitutions = substitutions.get(chapter.url) || []; - warnings.push(...await pool.exec("convertChapter", [chapter, bookData.title, inputPath, outputPath])); + warnings.push(...await pool.exec("convertChapter", [ + chapter, + bookData.title, + inputPath, + outputPath, + chapterSubstitutions + ])); progressUtils.increment(progress); })); @@ -91,3 +102,133 @@ function chooseChapterTitle(chapterData, chapterTitleStyle) { throw new Error(`Invalid chapter title style: ${chapterTitleStyle}`); } + +function parseSubstitutions(text) { + const lines = text.split("\n"); + const result = new Map(); + + let currentChapter = null; + let currentBefore = null; + let currentRegExp = null; + + for (const [lineNumber, line] of Object.entries(lines)) { + // Skip empty lines + if (!line.trim()) { + continue; + } + + const errorPrefix = `Error in substitutions line "${line}" (line number ${Number(lineNumber) + 1}): `; + + let sigil, content; + try { + [, sigil, content] = /(@ | {2}- | {2}\+ ?| {2}r | {2}s | {2}# )(.*)/u.exec(line); + } catch { + throw new Error(`${errorPrefix}invalid line format`); + } + + switch (sigil) { + // New chapter + case "@ ": { + if (!isCanonicalizedURL(content)) { + throw new Error(`${errorPrefix}invalid chapter URL`); + } + + currentChapter = content; + if (!result.has(currentChapter)) { + result.set(currentChapter, []); + } + currentBefore = null; + currentRegExp = null; + + break; + } + + // Before line + case " - ": { + if (!currentChapter) { + throw new Error(`${errorPrefix}missing previous current chapter (@) line`); + } + if (currentBefore) { + throw new Error(`${errorPrefix}appeared after a before (-) line`); + } + if (currentRegExp) { + throw new Error(`${errorPrefix}appeared after a regexp (r) line`); + } + + currentBefore = content.replaceAll("\\n", "\n"); + currentRegExp = null; + + break; + } + + // After line + case " +": + case " + ": { + if (!currentChapter || !currentBefore) { + throw new Error(`${errorPrefix}missing previous current chapter (@) or before (-) line`); + } + if (currentRegExp) { + throw new Error(`${errorPrefix}appeared after a regexp (r) line`); + } + + const change = { + before: beforeAfterLineToString(currentBefore), + after: beforeAfterLineToString(content) + }; + result.get(currentChapter).push(change); + currentBefore = null; + + break; + } + + // RegExp line + case " r ": { + if (!currentChapter) { + throw new Error(`${errorPrefix}missing previous current chapter (@) line`); + } + if (currentBefore) { + throw new Error(`${errorPrefix}appeared after a before (-) line`); + } + + currentRegExp = new RegExp(content, "ug"); + + break; + } + + // RegExp substitution + case " s ": { + if (!currentChapter || !currentRegExp) { + throw new Error(`${errorPrefix}missing previous current chapter (@) or regexp (r) line`); + } + + const change = { + regExp: currentRegExp, + replacement: content.replaceAll("\\n", "\n") + }; + result.get(currentChapter).push(change); + currentRegExp = null; + + break; + } + + // Comment + case " # ": { + if (!currentChapter) { + throw new Error(`${errorPrefix} missing previous current chapter (@) line`); + } + + break; + } + } + } + + return result; +} + +function isCanonicalizedURL(urlString) { + return URL.parse(urlString).href === urlString; +} + +function beforeAfterLineToString(line) { + return line.replaceAll("\\n", "\n").replace(/(?:\\s)+$/u, match => " ".repeat(match.length / 2)); +} diff --git a/lib/substitutions.json b/lib/substitutions.json deleted file mode 100644 index ff76ba8..0000000 --- a/lib/substitutions.json +++ /dev/null @@ -1,9315 +0,0 @@ -{ - "https://parahumans.wordpress.com/2011/06/11/1-1/": [ - { - "before": "bugs; Flies, ants", - "after": "bugs: flies, ants" - }, - { - "before": "

Brief note from the author: This story isn’t intended for young or sensitive readers. Readers who are on the lookout for trigger warnings are advised to give Worm a pass.

\n

\n", - "after": "", - "_comment": "The pseudo-trigger warning is out of place in an ebook." - } - ], - "https://parahumans.wordpress.com/2011/06/14/gestation-1-2/": [ - { - "before": "each others houses", - "after": "each others’ houses" - }, - { - "before": "x-acto", - "after": "X-Acto" - } - ], - "https://parahumans.wordpress.com/2011/06/18/gestation-1-3/": [ - { - "before": "top 5", - "after": "top five" - }, - { - "before": "East end", - "after": "east end" - } - ], - "https://parahumans.wordpress.com/2011/06/21/gestation-1-4/": [ - { - "before": "gang colors got out and and joined", - "after": "gang colors got out and joined" - } - ], - "https://parahumans.wordpress.com/2011/06/28/gestation-1-6/": [ - { - "before": "That a girl", - "after": "Attagirl" - }, - { - "before": "particualrly", - "after": "particularly" - }, - { - "before": "; The Wards", - "after": "; the Wards" - }, - { - "before": "me?” He", - "after": "me?” he" - } - ], - "https://parahumans.wordpress.com/2011/07/02/interlude-1/": [ - { - "before": "But when I reached out", - "after": "but when I reached out" - } - ], - "https://parahumans.wordpress.com/2011/08/06/interlude-2/": [ - { - "before": "utterly for still for", - "after": "utterly still for" - }, - { - "before": "sue you, he gasped", - "after": "sue you,” he gasped" - } - ], - "https://parahumans.wordpress.com/2011/07/05/insinuation-2-1/": [ - { - "before": "night,” he said. “Or", - "after": "night,” he said, “or" - } - ], - "https://parahumans.wordpress.com/2011/07/09/insinuation-2-2/": [ - { - "before": "simply, “Bug.”", - "after": "simply, ‘Bug’." - }, - { - "before": "powers: He could", - "after": "powers: he could" - } - ], - "https://parahumans.wordpress.com/2011/07/12/insinuation-2-3/": [ - { - "before": "He said, when he was", - "after": "he said, when he was" - }, - { - "before": "attempt at trying to to salvage things", - "after": "attempt at trying to salvage things" - } - ], - "https://parahumans.wordpress.com/2011/07/23/insinuation-2-6/": [ - { - "before": "costume,—one", - "after": "costume—one" - }, - { - "before": "I felt painfully conspicuous", - "after": "I felt painfully conspicuous." - }, - { - "before": "Justin Beiber", - "after": "Justin Bieber" - }, - { - "before": "Lisa said. “Entire", - "after": "Lisa said, “entire" - }, - { - "before": "line” Lisa told me, “By", - "after": "line,” Lisa told me. “By" - } - ], - "https://parahumans.wordpress.com/2011/07/26/insinuation-2-7/": [ - { - "before": "explained. “Here’s", - "after": "explained, “here’s" - } - ], - "https://parahumans.wordpress.com/2011/08/02/insinuation-2-9/": [ - { - "before": "Hey dad", - "after": "Hey Dad" - }, - { - "before": "Really dad", - "after": "Really Dad" - }, - { - "before": "The Parahumans wiki", - "after": "The parahumans wiki" - } - ], - "https://parahumans.wordpress.com/2011/08/09/agitation-3-1/": [ - { - "before": "Along the boardwalk", - "after": "Along the Boardwalk" - }, - { - "before": "night” Brian said, “I", - "after": "night,” Brian said. “I" - }, - { - "before": "follow where my my index finger", - "after": "follow where my index finger" - } - ], - "https://parahumans.wordpress.com/2011/08/16/agitation-3-3/": [ - { - "before": "Lisa grinned. “He’ll", - "after": "Lisa grinned, “he’ll" - }, - { - "before": "Brian said. “But", - "after": "Brian said, “but" - }, - { - "before": "he said. “So let’s", - "after": "he said, “so let’s" - }, - { - "before": "than that,” Brian said. “He", - "after": "than that,” Brian said, “he" - }, - { - "before": "weakness,” Lisa added. “Is", - "after": "weakness,” Lisa added, “is" - } - ], - "https://parahumans.wordpress.com/2011/08/20/agitation-3-4/": [ - { - "before": "out?” My", - "after": "out?” my" - }, - { - "before": "gangbangers easy access to to the rest of the city", - "after": "gangbangers easy access to the rest of the city" - }, - { - "before": "be, tonight, If that’s", - "after": "be, tonight, if that’s" - } - ], - "https://parahumans.wordpress.com/2011/08/23/agitation-3-5/": [ - { - "before": "No,” I said. “I’m", - "after": "No,” I said, “I’m" - } - ], - "https://parahumans.wordpress.com/2011/08/27/agitation-3-6/": [ - { - "before": "I ventured. “That", - "after": "I ventured, “that" - }, - { - "before": "Lisa continued. “Is", - "after": "Lisa continued, “is" - } - ], - "https://parahumans.wordpress.com/2011/09/03/agitation-3-8/": [ - { - "before": "direction

", - "after": "direction.

" - }, - { - "before": "had in her and and stood up", - "after": "had in her hand and stood up" - } - ], - "https://parahumans.wordpress.com/2011/09/06/agitation-3-9/": [ - { - "before": "Aegis’s must have felt", - "after": "Aegis must have felt" - }, - { - "before": "before she made made her way back", - "after": "before she made her way back" - } - ], - "https://parahumans.wordpress.com/2011/09/10/agitation-3-10/": [ - { - "before": "meaning his aim was", - "after": "his aim was" - }, - { - "before": "The scant few that that remained", - "after": "The scant few that remained" - } - ], - "https://parahumans.wordpress.com/2011/09/13/agitation-3-11/": [ - { - "before": "weapon of all,“ Tattletale purred", - "after": "weapon of all,” Tattletale purred" - }, - { - "before": "now,” the lie was", - "after": "now.” The lie was" - } - ], - "https://parahumans.wordpress.com/2011/09/17/agitation-3-12/": [ - { - "before": "aleash", - "after": "a leash" - }, - { - "before": "Tattletale winced. “Pop", - "after": "Tattletale winced, “pop" - } - ], - "https://parahumans.wordpress.com/2011/09/20/interlude-3-2/": [ - { - "before": "guys,” Gallant said. “Before", - "after": "guys,” Gallant said, “before" - }, - { - "before": "tinker created", - "after": "tinker-created" - } - ], - "https://parahumans.wordpress.com/2011/09/24/shell-4-1/": [ - { - "before": ",” I looked up from my work again, “", - "after": ".” I looked up from my work again. “" - }, - { - "before": "make sense for him to to pull a fast one", - "after": "make sense for him to pull a fast one" - } - ], - "https://parahumans.wordpress.com/2011/09/27/shell-4-2/": [ - { - "before": "Fugly Bobs", - "after": "Fugly Bob’s" - } - ], - "https://parahumans.wordpress.com/2011/10/01/shell-4-3/": [ - { - "before": "positive: She", - "after": "positive: she" - }, - { - "before": "reciprocate,” I hurried", - "after": "reciprocate.” I hurried" - }, - { - "before": "story,” I said. “But", - "after": "story,” I said, “but" - } - ], - "https://parahumans.wordpress.com/2011/10/04/shell-4-4/": [ - { - "before": "went cold inside.", - "after": "went cold inside.”" - }, - { - "before": "in the morning.”", - "after": "in the morning." - }, - { - "before": "Yeah,” I said. “I know", - "after": "Yeah,” I said, “I know" - }, - { - "before": "Actually,” he paused. “You’re", - "after": "Actually,” he paused, “you’re" - } - ], - "https://parahumans.wordpress.com/2011/10/08/shell-4-5/": [ - { - "before": "money,” Grue spoke. “Where", - "after": "money,” Grue spoke, “where" - } - ], - "https://parahumans.wordpress.com/2011/10/11/shell-4-6/": [ - { - "before": "his voice, I think", - "after": "his voice, “I think" - }, - { - "before": "; Round", - "after": "; round" - }, - { - "before": "Thanks,” I huffed. “For", - "after": "Thanks,” I huffed, “for" - } - ], - "https://parahumans.wordpress.com/2011/10/11/interlude-3%C2%BD-bonus/": [ - { - "before": "Korean girls were", - "after": "Korean girls who were" - }, - { - "before": "Not so unusual,", - "after": "Not so unusual;" - }, - { - "before": "offer is this: Let me", - "after": "offer is this: let me" - } - ], - "https://parahumans.wordpress.com/2011/10/15/shell-4-7/": [ - { - "before": "soldiers; Every", - "after": "soldiers; every" - }, - { - "before": "Again,” I panted. “Over", - "after": "Again,” I panted, “over" - } - ], - "https://parahumans.wordpress.com/2011/10/18/shell-4-8/": [ - { - "before": "in point: Shazam", - "after": "in point: shazam" - }, - { - "before": "’Kay", - "after": "’kay" - } - ], - "https://parahumans.wordpress.com/2011/10/22/shell-4-9/": [ - { - "before": "big one: She’s", - "after": "big one: she’s" - }, - { - "before": "No,” I answered. “No worries", - "after": "No,” I answered, “no worries" - } - ], - "https://parahumans.wordpress.com/2011/10/29/shell-4-11/": [ - { - "before": "bugging the f-, uh", - "after": "bugging the f—, uh" - }, - { - "before": "about?” My dad", - "after": "about?” my dad" - }, - { - "before": "so to speak, they", - "after": "so to speak; they" - }, - { - "before": "Brian looked across the room,” We’ve", - "after": "Brian looked across the room. “We’ve" - } - ], - "https://parahumans.wordpress.com/2011/11/12/hive-5-3/": [ - { - "before": "started,” my dad answered,", - "after": "started,” my dad answered." - }, - { - "before": "Terrifying.” Alan told my dad, “When", - "after": "Terrifying,” Alan told my dad. “When" - }, - { - "before": "day to day basis", - "after": "day-to-day basis" - } - ], - "https://parahumans.wordpress.com/2011/11/15/hive-5-4/": [ - { - "before": "They’re all‘ relevant", - "after": "They’re all relevant" - }, - { - "before": "Do I—", - "after": "Do I—" - }, - { - "before": "proven—", - "after": "proven—" - }, - { - "before": "shoes, “We’re", - "after": "shoes. “We’re" - }, - { - "before": "guardian spoke, “You’d", - "after": "guardian spoke. “You’d" - }, - { - "before": "‘specially with", - "after": "’Specially with" - } - ], - "https://parahumans.wordpress.com/2011/11/19/hive-5-5/": [ - { - "before": "group: The", - "after": "group: the" - }, - { - "before": "No,” I admitted. “Not", - "after": "No,” I admitted, “not" - } - ], - "https://parahumans.wordpress.com/2011/11/29/hive-5-8/": [ - { - "before": "Lung,” Bitch growled. “Not", - "after": "Lung,” Bitch growled, “not" - }, - { - "before": "sides,” I agreed. “So", - "after": "sides,” I agreed, “so" - }, - { - "before": "Bitch,” I murmured. “If you", - "after": "Bitch,” I murmured, “if you" - }, - { - "before": "what I could see of the the second floor", - "after": "what I could see of the second floor" - }, - { - "before": "down the stairs. then as carefully as we could", - "after": "down the stairs. Then, as carefully as we could" - }, - { - "before": "I took his feet With agonizing slowness", - "after": "I took his feet. With agonizing slowness" - } - ], - "https://parahumans.wordpress.com/2011/12/03/hive-5-9/": [ - { - "before": "insult. An excuse to", - "after": "insult. An excuse to" - }, - { - "before": "Obviously,” Kaiser said. “I ended", - "after": "Obviously,” Kaiser said, “I ended" - } - ], - "https://parahumans.wordpress.com/2011/12/06/hive-5-10/": [ - { - "before": "Bitch,” I said. “Why’d", - "after": "Bitch,” I said, “why’d" - }, - { - "before": "East", - "after": "east" - }, - { - "before": "“Yeah,” Newter grinned,” You can tell", - "after": "“Yeah,” Newter grinned. “You can tell" - }, - { - "before": "day to day interactions", - "after": "day-to-day interactions" - } - ], - "https://parahumans.wordpress.com/2011/12/10/interlude-5/": [ - { - "before": "bullshit, of course, he", - "after": "bullshit, of course; he" - }, - { - "before": "trying that” she", - "after": "trying that,” she" - }, - { - "before": "it is,” Faultline explained. “Whether", - "after": "it is,” Faultline explained, “whether" - } - ], - "https://parahumans.wordpress.com/2011/12/13/tangle-6-1/": [ - { - "before": "me,” she", - "after": "me.” She" - }, - { - "before": "Hi dad", - "after": "Hi Dad" - }, - { - "before": "After mom died", - "after": "After Mom died" - } - ], - "https://parahumans.wordpress.com/2011/12/17/tangle-6-2/": [ - { - "before": "flash image viewer", - "after": "Flash image viewer" - }, - { - "before": "Touche", - "after": "Touché" - }, - { - "before": "West", - "after": "west" - }, - { - "before": "East", - "after": "east" - }, - { - "before": "South", - "after": "south" - }, - { - "before": "news: A tally", - "after": "news: a tally" - } - ], - "https://parahumans.wordpress.com/2011/12/20/tangle-6-3/": [ - { - "before": "black leather Not that", - "after": "black leather. Not that" - }, - { - "before": "hand, “Let’s", - "after": "hand. “Let’s" - }, - { - "before": "over top of mine", - "after": "over the top of mine" - }, - { - "before": "a nice distraction.", - "after": "a nice distraction.”" - }, - { - "before": "to some other that", - "after": "to some others that" - }, - { - "before": "sure,” I had", - "after": "sure.” I had" - } - ], - "https://parahumans.wordpress.com/2011/12/24/tangle-6-4/": [ - { - "before": "understand,” Lisa sighed. “I", - "after": "understand,” Lisa sighed, “I" - }, - { - "before": "’embarrass them’", - "after": "‘embarrass them’" - } - ], - "https://parahumans.wordpress.com/2011/12/27/tangle-6-5/": [ - { - "before": "Architecture", - "after": "architecture" - } - ], - "https://parahumans.wordpress.com/2011/12/31/tangle-6-6/": [ - { - "before": "Somehow,” Grue retorted. “I’m", - "after": "Somehow,” Grue retorted, “I’m" - } - ], - "https://parahumans.wordpress.com/2012/01/07/tangle-6-8/": [ - { - "before": "West", - "after": "west" - }, - { - "before": "to the North", - "after": "to the north" - } - ], - "https://parahumans.wordpress.com/2012/01/10/tangle-6-9/": [ - { - "before": "this,” he spoke. “But", - "after": "this,” he spoke, “but" - }, - { - "before": "answers,” I replied. “And", - "after": "answers,” I replied, “and" - }, - { - "before": "Oranges are not the Only Fruit", - "after": "Oranges Are Not the Only Fruit" - }, - { - "before": "down Supervillains", - "after": "down supervillains" - }, - { - "before": "now I had", - "after": "now I had" - }, - { - "before": "It-it’s", - "after": "It—it’s" - }, - { - "before": "envelope

", - "after": "envelope.

" - } - ], - "https://parahumans.wordpress.com/2012/01/14/interlude-6/": [ - { - "before": "; Red", - "after": "; red" - }, - { - "before": "Oo ‘oo” Bakuda", - "after": "Oo ’oo,” Bakuda" - }, - { - "before": "metal bar After another", - "after": "metal bar. After another" - }, - { - "before": "eyes widening, “No", - "after": "eyes widening. “No" - }, - { - "before": "I—Yes.", - "after": "I— Yes." - }, - { - "before": "brute 4-9", - "after": "brute four-nine" - }, - { - "before": "blaster 2-6", - "after": "blaster two-six" - }, - { - "before": "tinker 6", - "after": "tinker six" - }, - { - "before": "Master 8", - "after": "master eight" - } - ], - "https://parahumans.wordpress.com/2012/01/17/buzz-7-1/": [ - { - "before": "reservations,” Brian spoke. “But", - "after": "reservations,” Brian spoke, “but" - }, - { - "before": "&", - "after": "and" - } - ], - "https://parahumans.wordpress.com/2012/01/24/buzz-7-3/": [ - { - "before": "H; Eighty-eight", - "after": "H; eighty-eight" - }, - { - "before": "that,” she said. “You", - "after": "that,” she said, “you" - }, - { - "before": ", and", - "after": ", and" - }, - { - "before": "“Damn,” I felt", - "after": "“Damn.” I felt" - } - ], - "https://parahumans.wordpress.com/2012/01/28/buzz-7-4/": [ - { - "before": "better I’ll feel,” he was", - "after": "better I’ll feel.” He was" - }, - { - "before": "In short, It", - "after": "In short, it" - }, - { - "before": "phone, Alec” Brian spoke", - "after": "phone, Alec,” Brian spoke" - } - ], - "https://parahumans.wordpress.com/2012/01/31/buzz-7-5/": [ - { - "before": "realized,” Brian spoke. “I", - "after": "realized,” Brian spoke, “I" - }, - { - "before": "‘fessing", - "after": "’fessing" - } - ], - "https://parahumans.wordpress.com/2012/02/04/buzz-7-6/": [ - { - "before": "&", - "after": "and" - }, - { - "before": "flat chested", - "after": "flat-chested" - }, - { - "before": "throat, “Kiss", - "after": "throat, “kiss" - } - ], - "https://parahumans.wordpress.com/2012/02/07/buzz-7-7/": [ - { - "before": "yourself, Skitter”", - "after": "yourself, Skitter.”" - }, - { - "before": "Tattletale,” Brian spoke. “Did", - "after": "Tattletale,” Brian spoke, “did" - }, - { - "before": "back to herself, “We", - "after": "back to herself. “We" - }, - { - "before": "I asked her, “Hold", - "after": "I asked her. “Hold" - } - ], - "https://parahumans.wordpress.com/2012/02/11/buzz-7-8/": [ - { - "before": "Skitter,” Grue called. “Run!", - "after": "Skitter,” Grue called, “run!" - }, - { - "before": "chimed in, “She", - "after": "chimed in. “She" - }, - { - "before": "wounds

", - "after": "wounds.

" - } - ], - "https://parahumans.wordpress.com/2012/02/14/buzz-7-9/": [ - { - "before": "with enough force to to bowl us", - "after": "with enough force to bowl us" - } - ], - "https://parahumans.wordpress.com/2012/02/18/buzz-7-10/": [ - { - "before": "Coil,” I spoke. “It’s", - "after": "Coil,” I spoke, “it’s" - }, - { - "before": "trying to convince me The question", - "after": "trying to convince me. The question" - } - ], - "https://parahumans.wordpress.com/2012/02/25/buzz-7-12/": [ - { - "before": "Summer", - "after": "summer" - }, - { - "before": "After a moment, then I", - "after": "After a moment, I" - } - ], - "https://parahumans.wordpress.com/2012/02/28/interlude-7/": [ - { - "before": "more— this", - "after": "more—this" - }, - { - "before": "its self", - "after": "itself" - }, - { - "before": "Hana stirred, she", - "after": "Hana stirred. She" - }, - { - "before": "Walk or-", - "after": "Walk or—" - }, - { - "before": "here? Now?", - "after": "here? Now?" - }, - { - "before": "one image came in contact with with something that", - "after": "one image came in contact with something that" - } - ], - "https://parahumans.wordpress.com/2012/03/03/extermination-8-1/": [ - { - "before": "besides them‘", - "after": "besides them’" - }, - { - "before": "East", - "after": "east" - }, - { - "before": "listened to,", - "after": "listened to." - }, - { - "before": "make out over the the wailing air raid", - "after": "make out over the wailing air raid" - } - ], - "https://parahumans.wordpress.com/2012/03/06/extermination-8-2/": [ - { - "before": "the south end of town, the boardwalk", - "after": "the south end of town, the Boardwalk" - }, - { - "before": "West", - "after": "west" - }, - { - "before": "And villains, too", - "after": "and villains, too" - }, - { - "before": "featureless plain", - "after": "featureless plane" - }, - { - "before": "majority of him was was muscled", - "after": "majority of him was muscled" - } - ], - "https://parahumans.wordpress.com/2012/03/08/interlude-7%C2%BD-bonus/": [ - { - "before": "she been blossoming", - "after": "she had been blossoming" - }, - { - "before": "Get Ready!", - "after": "Get ready!" - }, - { - "before": "‘boyfriend’; Not", - "after": "‘boyfriend’; not" - }, - { - "before": "thought & the", - "after": "thought and the" - }, - { - "before": "legs: Suit", - "after": "legs: suit" - }, - { - "before": "biology: Tissues", - "after": "biology: tissues" - }, - { - "before": "human: Never", - "after": "human: never" - }, - { - "before": "Swearing: Antisocial", - "after": "Swearing: antisocial" - }, - { - "before": "arms: Irritation", - "after": "arms: irritation" - }, - { - "before": "goodwill bin", - "after": "Goodwill bin" - }, - { - "before": "chedcked", - "after": "checked" - }, - { - "before": "An envelope should arrive", - "after": "an envelope should arrive" - }, - { - "before": "Which", - "after": "Which" - }, - { - "before": "spoke, “My supervisor", - "after": "spoke. “My supervisor" - }, - { - "before": "serious, “Turn", - "after": "serious. “Turn" - }, - { - "before": "A third person gravely injured", - "after": "A third person was gravely injured" - }, - { - "before": "hunkered down to to watch", - "after": "hunkered down to watch" - }, - { - "before": "crash when when the wave rolled", - "after": "crash when the wave rolled" - }, - { - "regExp": "
\n\\s*", - "replacement": "

\n

", - "_comment": "These are clearly paragraphs. Also the leading space is strange." - }, - { - "before": "Word choice, ‘too’: haunted by demons.
\nSwearing: antisocial.
", - "after": "Word choice, ‘too’: haunted by demons.

\n

Swearing: antisocial.", - "_comment": "This one has the surrounding the
, unlike the others." - } - ], - "https://parahumans.wordpress.com/2012/03/10/extermination-8-3/": [ - { - "before": "Icouldn’t", - "after": "I couldn’t" - }, - { - "before": "CD-5
…", - "after": "CD-5…
" - }, - { - "before": "CD-5

", - "after": "CD-5.

" - }, - { - "before": "

Brigandine deceased, CD-5.

", - "after": "

Brigandine deceased, CD-5.

" - }, - { - "before": "deceased, CD-6.", - "after": "deceased, CD-6." - }, - { - "before": "CD-6, The armbands", - "after": "CD-6, the armbands" - }, - { - "before": "CD-6

", - "after": "CD-6.

" - }, - { - "before": "CD-6.

", - "after": "CD-6.

" - }, - { - "before": "Narwhal,", - "after": "Narwhal," - }, - { - "before": "Tattletale…", - "after": "Tattletale…" - }, - { - "before": "reeled—He", - "after": "reeled—he" - }, - { - "before": "Shielder’s bubble. water in front of", - "after": "Shielder’s bubble. Water in front of" - } - ], - "https://parahumans.wordpress.com/2012/03/13/extermination-8-4/": [ - { - "before": "it woul be", - "after": "it would be" - }, - { - "before": "petered out, he", - "after": "petered out, he" - }, - { - "before": "block West", - "after": "block west" - }, - { - "before": "bolted West", - "after": "bolted west" - }, - { - "before": "West and Northwest", - "after": "west and northwest" - }, - { - "before": "heading West", - "after": "heading west" - }, - { - "before": "More Wests than North", - "after": "More wests than north" - }, - { - "before": "West-North-West", - "after": "west-northwest" - }, - { - "before": "half South", - "after": "half south" - }, - { - "before": "impression It had", - "after": "impression it had" - }, - { - "before": "Aegis deceased, CD-6", - "after": "Aegis deceased, CD-6" - }, - { - "before": "down, CC-6.", - "after": "down, CC-6." - }, - { - "before": "Kid win", - "after": "Kid Win" - }, - { - "before": "of ‘a few blocks’.", - "after": "of ‘a few blocks’." - }, - { - "before": "Negative.", - "after": "Negative." - } - ], - "https://parahumans.wordpress.com/2012/03/17/extermination-8-5/": [ - { - "before": "remanied latched on", - "after": "remained latched on" - }, - { - "before": "past tense-, or", - "after": "past tense—or" - }, - { - "before": "Northwest", - "after": "northwest" - }, - { - "before": "Master 5", - "after": "master five" - }, - { - "before": "down, BW-8", - "after": "down, BW-8." - }, - { - "before": "deceased, BW-8", - "after": "deceased, BW-8." - }, - { - "before": "deceased, CB-10.", - "after": "deceased, CB-10." - }, - { - "before": "Defensive perimeter, report.", - "after": "Defensive perimeter, report." - }, - { - "before": "Dad.", - "after": "Dad." - }, - { - "before": "The girl.", - "after": "The girl." - }, - { - "before": "goggles, it", - "after": "goggles. It" - }, - { - "before": "old, dirt and blood", - "after": "old dir and blood" - }, - { - "before": "collapse

", - "after": "collapse.

" - }, - { - "before": "diverted by the the PHQ’s", - "after": "diverted by the PHQ’s" - }, - { - "before": "Much as I’d like to to be", - "after": "Much as I’d like it to be" - }, - { - "before": "the blur of the halberd to to cut lines", - "after": "the blur of the halberd to cut lines" - }, - { - "before": "broken up by the the wall above the door", - "after": "broken up by the wall above the door" - } - ], - "https://parahumans.wordpress.com/2012/03/20/extermination-8-6/": [ - { - "before": "and It—it’s", - "after": "and it—it’s" - }, - { - "before": "glaring at me, “There’s", - "after": "glaring at me. “There’s" - }, - { - "before": "Ah.", - "after": "Ah." - } - ], - "https://parahumans.wordpress.com/2012/03/24/extermination-8-7/": [ - { - "before": "one: Shoot", - "after": "one: shoot" - }, - { - "before": "here,” Grue spoke. “You", - "after": "here,” Grue spoke, “you" - }, - { - "before": "thinker 7", - "after": "thinker seven" - }, - { - "before": "Master 5", - "after": "Master five" - }, - { - "before": "This working? This on? Good.", - "after": "“This working? This on? Good.”" - }, - { - "before": "Acknowledged. Her", - "after": "Acknowledged, her" - }, - { - "before": "struck me—If", - "after": "struck me—if" - }, - { - "before": "went on, “Just", - "after": "went on, “just" - }, - { - "before": "her, “That", - "after": "her, “that" - }, - { - "before": "towards her, “Heroes died", - "after": "towards her. “Heroes died" - }, - { - "before": "we get get in", - "after": "we get in" - }, - { - "before": "at the heroine, “Let us", - "after": "at the heroine. “Let us" - }, - { - "before": "ignoring Tattletale, “Frustrated", - "after": "ignoring Tattletale. “Frustrated" - }, - { - "before": "humility, “If it", - "after": "humility. “If it" - }, - { - "before": "hand at me, “She’s", - "after": "hand at me, “she’s" - }, - { - "before": ", kay", - "after": ", ’kay" - } - ], - "https://parahumans.wordpress.com/2012/03/27/extermination-8-8/": [ - { - "before": "stick—hawk or some other", - "after": "stick ‘hawk’ or some other" - }, - { - "before": "this: Knowing we had", - "after": "this: knowing we had" - }, - { - "before": "of her head, “And my", - "after": "of her head. “And my" - }, - { - "before": "KOOROW BULLIT
\nMILK         STUMPY
\nBROOTUS JOODUS
\nAXIL GINGIR", - "after": "KOOROW\u00A0\u00A0\u00A0BULLIT
\nMILK\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0STUMPY
\nBROOTUS\u00A0\u00A0JOODUS
\nAXIL\u00A0\u00A0\u00A0\u00A0\u00A0GINGIR", - "_comment": "This section plays poorly with our space-normalizing heuristic." - } - ], - "https://parahumans.wordpress.com/2012/03/31/interlude-8/": [ - { - "before": "other: Another", - "after": "other: another" - }, - { - "before": "reality: He", - "after": "reality: he" - }, - { - "before": "prius", - "after": "Prius" - }, - { - "before": "room,” it was", - "after": "room.” It was" - }, - { - "before": "handicap accessible", - "after": "handicap-accessible" - }, - { - "before": "“Hey,” her voice", - "after": "“Hey.” Her voice" - }, - { - "before": "Mr. Pitter, “The Travelers’", - "after": "Mr. Pitter. “The Travelers’" - } - ], - "https://parahumans.wordpress.com/2012/04/03/cell-9-1/": [ - { - "before": "striker 7", - "after": "striker seven" - }, - { - "before": "shaker 9", - "after": "shaker nine" - }, - { - "before": "tinker 4", - "after": "tinker four" - }, - { - "before": "Breaker 3", - "after": "Breaker three" - }, - { - "before": "stranger 2", - "after": "stranger two" - }, - { - "before": "mover 1", - "after": "mover one" - }, - { - "before": "shaker 2", - "after": "shaker two" - }, - { - "before": "tinker 2", - "after": "tinker two" - }, - { - "before": "/mover 3", - "after": " slash mover three" - }, - { - "before": "shifter 4", - "after": "shifter four" - }, - { - "before": "shaper 4", - "after": "shaper four" - }, - { - "before": "brute 7", - "after": "brute seven" - }, - { - "before": "blaster 8", - "after": "blaster eight" - }, - { - "before": "mover 4", - "after": "mover four" - }, - { - "before": "breaker 9", - "after": "breaker nine" - }, - { - "before": "shifter 8", - "after": "shifter eight" - }, - { - "before": "stranger 3", - "after": "stranger three" - }, - { - "before": "Master 6", - "after": "master six" - }, - { - "before": "shaker 12", - "after": "shaker twelve" - }, - { - "before": "Tinker designed", - "after": "Tinker-designed" - }, - { - "before": "three Master classifications", - "after": "three master classifications" - }, - { - "before": "files, “Here’s", - "after": "files. “Here’s" - }, - { - "before": "youtube", - "after": "YouTube" - }, - { - "before": "ground, “It", - "after": "ground, “it" - } - ], - "https://parahumans.wordpress.com/2012/04/07/sentinel-9-2/": [ - { - "before": "Tinker made", - "after": "Tinker-made" - }, - { - "before": "Master 6", - "after": "master six" - }, - { - "before": "build for a professional", - "after": "build up a professional" - }, - { - "before": "need me, k?", - "after": "need me, ’kay?" - }, - { - "before": "gentle walk

", - "after": "gentle walk.

" - }, - { - "before": "real hair

", - "after": "real hair.

" - } - ], - "https://parahumans.wordpress.com/2012/04/10/sentinel-9-3/": [ - { - "before": "with my family.", - "after": "with my family." - }, - { - "before": "industrialized ones—Some of you", - "after": "industrialized ones—some of you" - }, - { - "before": "the room, “You’ve", - "after": "the room, “you’ve" - }, - { - "before": "dislike him?", - "after": "dislike him?" - }, - { - "before": "answered, annoyed, “He gets", - "after": "answered, annoyed. “He gets" - }, - { - "before": "spoke, “Broad", - "after": "spoke. “Broad" - }, - { - "before": "tipped his hat, “Then", - "after": "tipped his hat. “Then" - }, - { - "before": "of this guy.", - "after": "of this guy." - } - ], - "https://parahumans.wordpress.com/2012/04/14/sentinel-9-4/": [ - { - "before": "more focused one.

", - "after": "more focused one.

" - }, - { - "before": "groaning, “Fuck,", - "after": "groaning. “Fuck," - }, - { - "before": "smiled a little,", - "after": "smiled a little." - }, - { - "before": "greeted him, “You’re", - "after": "greeted him. “You’re" - }, - { - "before": "going to get less interested. Shit,", - "after": "going to get less interested. Shit," - }, - { - "before": "commented, “My tax", - "after": "commented. “My tax" - }, - { - "before": "scratched-up hands, “No", - "after": "scratched-up hands. “No" - }, - { - "before": "If mom pushes", - "after": "If Mom pushes" - } - ], - "https://parahumans.wordpress.com/2012/04/17/sentinel-9-5/": [ - { - "before": "clothes: A", - "after": "clothes: a" - }, - { - "before": "That,” Piggot spoke. “And", - "after": "That,” Piggot spoke, “and" - }, - { - "before": "hands together, “Thank", - "after": "hands together. “Thank" - }, - { - "before": "Chariot replied, I’m sorry", - "after": "Chariot replied; I’m sorry" - }, - { - "before": "said something.", - "after": "said something." - }, - { - "before": "across the room, “It was", - "after": "across the room. “It was" - } - ], - "https://parahumans.wordpress.com/2012/04/21/sentinel-9-6/": [ - { - "before": "Good—The woman’s", - "after": "Good—the woman’s" - }, - { - "before": "face. Shadow Stalker thought, Records", - "after": "face, Shadow Stalker thought. Records" - }, - { - "before": "Charlie horse", - "after": "charlie horse" - }, - { - "before": "sarcastic, “How wonderfully", - "after": "sarcastic, “how wonderfully" - }, - { - "before": "“…Things are", - "after": "“…things are" - }, - { - "before": "swarm had gone Had the girl’s armor", - "after": "swarm had gone. Had the girl’s armor" - } - ], - "https://parahumans.wordpress.com/2012/04/24/parasite-10-1/": [ - { - "before": "one shoulder, “Scout", - "after": "one shoulder. “Scout" - }, - { - "before": "king sized", - "after": "king-sized" - }, - { - "before": "one side, “What’s", - "after": "one side. “What’s" - }, - { - "before": "lights.", - "after": "lights." - }, - { - "before": "groaning, “It’s", - "after": "groaning. “It’s" - }, - { - "before": "mp3", - "after": "MP3" - } - ], - "https://parahumans.wordpress.com/2012/04/28/parasite-10-2/": [ - { - "before": "So,” Weld said. “Keeping", - "after": "So,” Weld said, “keeping" - }, - { - "before": "Master in the city", - "after": "master in the city" - }, - { - "before": "“You gotta be kidding.”", - "after": "“You gotta be kidding.”" - }, - { - "before": "frowned, “Why did", - "after": "frowned. “Why did" - }, - { - "before": "then sighed, “And", - "after": "then sighed. “And" - }, - { - "before": "rose, “I seem", - "after": "rose. “I seem" - }, - { - "before": "to Brian, “You", - "after": "to Brian. “You" - }, - { - "before": "in, “He’s not", - "after": "in, “he’s not" - }, - { - "before": "his head, “You", - "after": "his head. “You" - }, - { - "before": "quiet, “I just", - "after": "quiet. “I just" - }, - { - "before": "Brian, “You’re", - "after": "Brian. “You’re" - }, - { - "before": "‘Sides", - "after": "’Sides" - }, - { - "before": "low, “If mistrust", - "after": "low, “if mistrust" - }, - { - "before": "disinterested, “Don’t waste", - "after": "disinterested. “Don’t waste" - }, - { - "before": "highest rated", - "after": "highest-rated" - }, - { - "before": "Six-six-two", - "after": "six-six-two" - } - ], - "https://parahumans.wordpress.com/2012/05/01/parasite-10-3/": [ - { - "before": "Regent doesn’t exactly", - "after": "Regent didn’t exactly" - }, - { - "before": "powers, I knew", - "after": "powers; I knew" - }, - { - "before": "shouted, “Charge Kid", - "after": "shouted. “Charge Kid" - }, - { - "before": "When the dog", - "after": "The dog" - } - ], - "https://parahumans.wordpress.com/2012/05/05/parasite-10-4/": [ - { - "before": "Epeios’", - "after": "Epeios’s" - }, - { - "before": "sinous", - "after": "sinuous" - } - ], - "https://parahumans.wordpress.com/2012/05/08/parasite-10-5/": [ - { - "before": "&", - "after": "and" - }, - { - "before": "voice low, “This", - "after": "voice low. “This" - }, - { - "before": "gift shop, We’ll meet", - "after": "gift shop; we’ll meet" - }, - { - "before": "fetus, the features", - "after": "fetus: the features" - } - ], - "https://parahumans.wordpress.com/2012/05/12/parasite-10-6/": [ - { - "before": "face me, “Shot?", - "after": "face me. “Shot?" - }, - { - "before": "from Bitch, “Just", - "after": "from Bitch, “just" - }, - { - "before": "tone bored, “Her", - "after": "tone bored. “Her" - }, - { - "before": "fucked upness", - "after": "fucked-upness" - }, - { - "before": "intimidated, “Will work", - "after": "intimidated, “will work" - } - ], - "https://parahumans.wordpress.com/2012/05/15/interlude-10/": [ - { - "before": "host: Annoyance", - "after": "host: annoyance" - }, - { - "before": "said,” Regent shrugged. “Anger", - "after": "said,” Regent shrugged, “anger" - }, - { - "before": "the fuck soph", - "after": "the fuck Soph" - }, - { - "before": "“Mom!” He", - "after": "“Mom!” he" - }, - { - "before": "So what did he do do you?", - "after": "So what did he do to you?" - } - ], - "https://parahumans.wordpress.com/2012/05/17/interlude-10-5-bonus/": [ - { - "before": "me,” Lung said. “And", - "after": "me,” Lung said, “and" - }, - { - "before": "thinker 7", - "after": "thinker seven" - }, - { - "before": "The Guild", - "after": "the Guild" - }, - { - "before": "accented voice, “You", - "after": "accented voice, “you" - }, - { - "before": "spoke, “Then I", - "after": "spoke. “Then I" - }, - { - "before": "table top, “If you", - "after": "tabletop. “If you" - }, - { - "before": "the Ocean", - "after": "the ocean" - }, - { - "before": "completion?” She", - "after": "completion?” she" - }, - { - "before": "high risk", - "after": "high-risk" - } - ], - "https://parahumans.wordpress.com/2012/05/19/infestation-11-1/": [ - { - "before": "Dinah being kidnapped and leaving", - "after": "Dinah being kidnapped, and leaving" - } - ], - "https://parahumans.wordpress.com/2012/05/26/infestation-11-3/": [ - { - "before": "intimidating: A sea", - "after": "intimidating: a sea" - } - ], - "https://parahumans.wordpress.com/2012/05/29/infestation-11-4/": [ - { - "before": "‘No smoking", - "after": "‘No smoking" - }, - { - "before": "of facility‘", - "after": "of facility’" - }, - { - "before": " ‘Abuse or threats directed at staff or other residents will NOT be tolerated.’", - "after": "‘Abuse or threats directed at staff or other residents will NOT be tolerated.’" - }, - { - "before": "wall: The", - "after": "wall: the" - }, - { - "before": "Pritt,” Lisa admitted. “But", - "after": "Pritt,” Lisa admitted, “but" - }, - { - "before": " In smaller print below was the message, ", - "after": "

In smaller print below was the message," - }, - { - "before": "wanted to say, “We’re already", - "after": "wanted to say. “We’re already" - } - ], - "https://parahumans.wordpress.com/2012/06/02/infestation-11-5/": [ - { - "before": "he hollered, “Whoever", - "after": "he hollered. “Whoever" - }, - { - "before": "spoke, standing, “You’re", - "after": "spoke, standing. “You’re" - }, - { - "before": "second time, “Who", - "after": "second time. “Who" - } - ], - "https://parahumans.wordpress.com/2012/06/05/infestation-11-6/": [ - { - "before": "&", - "after": "and" - }, - { - "before": "Countless mirror moved", - "after": "Countless mirrors moved" - } - ], - "https://parahumans.wordpress.com/2012/06/09/infestation-11-7/": [ - { - "before": "I couldn’t be sure two might", - "after": "I couldn’t be sure; two might" - }, - { - "before": "

client one, and clients two", - "after": "

\n

client one, and clients two" - }, - { - "regExp": "

", - "replacement": "

" - }, - { - "before": "agreed-upon confidentiality.
\n■ ", - "after": "agreed-upon confidentiality.

\n\n

Both vials" - }, - { - "before": "to a Deviation scenario

", - "after": "to a Deviation scenario

\n
" - } - ], - "https://parahumans.wordpress.com/2012/06/12/infestation-11-8/": [ - { - "before": "Charlotte,” I frowned. “Look", - "after": "Charlotte,” I frowned, “look" - }, - { - "before": "non-sequitor", - "after": "non-sequitur" - }, - { - "before": "Did they… was he", - "after": "Did they… Was he" - }, - { - "before": "see the Doctor", - "after": "see the doctor", - "_comment": "Unlike the Cauldron Doctor, this is not used as a proper noun" - }, - { - "before": "the Doctor spoke", - "after": "the doctor spoke", - "_comment": "Unlike the Cauldron Doctor, this is not used as a proper noun" - }, - { - "before": "asinine confession again, “It’s", - "after": "asinine confession again. “It’s" - }, - { - "before": "people from the Church", - "after": "people from the church" - } - ], - "https://parahumans.wordpress.com/2012/06/16/interlude-11a/": [ - { - "before": "she‘d", - "after": "she’d" - }, - { - "before": "Bentley!” She urged", - "after": "Bentley!” she urged" - }, - { - "before": "“do you want?”", - "after": "“…do you want?”" - }, - { - "before": "pretending?”, the", - "after": "pretending?” the" - }, - { - "before": "“I—” Bitch paused, “Don’t", - "after": "“I—” Bitch paused. “Don’t" - } - ], - "https://parahumans.wordpress.com/2012/06/17/interlude-11b/": [ - { - "before": "“Kayden,” Theo had", - "after": "“Kayden.” Theo had" - }, - { - "before": "from shaking, “Let", - "after": "from shaking. “Let" - } - ], - "https://parahumans.wordpress.com/2012/06/18/interlude-11c/": [ - { - "before": "Elle shouted, “No!’", - "after": "Elle shouted. “No!”" - } - ], - "https://parahumans.wordpress.com/2012/06/19/interlude-11d/": [ - { - "before": "repeat: Stupidest", - "after": "repeat: stupidest" - }, - { - "before": "Dragon,” Colin whispered. “Are", - "after": "Dragon,” Colin whispered, “are" - }, - { - "before": "was able The window", - "after": "was able. The window" - } - ], - "https://parahumans.wordpress.com/2012/06/20/interlude-11e/": [ - { - "before": "still talking, “You call", - "after": "still talking. “You call" - }, - { - "before": "goals…” she winced, pressed one hand to her stomach, “Coincide", - "after": "goals…” She winced, pressed one hand to her stomach. “…coincide" - } - ], - "https://parahumans.wordpress.com/2012/06/21/interlude-11f/": [ - { - "before": "my ‘candy‘", - "after": "my ‘candy’" - }, - { - "before": "Thirty-Nine point", - "after": "Thirty-nine point" - }, - { - "before": "here. Now.”", - "after": "here. Now.”" - }, - { - "before": "“I’m sorry,” A girl’s", - "after": "“I’m sorry,” a girl’s" - } - ], - "https://parahumans.wordpress.com/2012/06/22/interlude-11g/": [ - { - "before": "

J’adore—

", - "after": "

J’adore—

" - }, - { - "before": "

Sweet Honey—

", - "after": "

Sweet Honey—

" - }, - { - "before": "

Love me, love me, you know you wanna love me…
\nLove me, love me, you know you wanna love me…

", - "after": "

Love me, love me, you know you wanna love me…
\nLove me, love me, you know you wanna love me…

" - }, - { - "before": "

Love me, you?
\nLove me, true?

", - "after": "

Love me, you?
\nLove me, true?

" - }, - { - "before": "

Crazed, kooky, cracked, crazy,
\nNutty, barmy, mad for me…

", - "after": "

Crazed, kooky, cracked, crazy,
\nNutty, barmy, mad for me…

" - }, - { - "before": "

Crazed, kooky, cracked, crazy,
\nMental, dotty, whacked, loopy…

", - "after": "

Crazed, kooky, cracked, crazy,
\nMental, dotty, whacked, loopy…

" - }, - { - "before": "

Crazed, kooky, cracked, crazy,
\nNutty, screwy, mentally diseased…
\n
\n
She ", - "after": "

Crazed, kooky, cracked, crazy,
\nNutty, screwy, mentally diseased…

\n

She " - }, - { - "before": "Ça va?", - "after": "Ça va?" - } - ], - "https://parahumans.wordpress.com/2012/06/23/interlude-11h/": [ - { - "before": "Murder rat", - "after": "Murder Rat" - }, - { - "before": "clap’? Can", - "after": "clap?’ Can" - }, - { - "before": "I… a therapist", - "after": "I… A therapist" - }, - { - "before": "look after dad", - "after": "look after Dad" - }, - { - "before": "Why heal dad now", - "after": "Why heal Dad now" - }, - { - "before": "you just leave dad to suffer", - "after": "you just leave Dad to suffer" - } - ], - "https://parahumans.wordpress.com/2012/06/26/plague-12-1/": [ - { - "before": "need: Maybe", - "after": "need: maybe" - }, - { - "before": "—Or at least", - "after": "—or at least" - }, - { - "before": "You,” a man who might have been the patriarch of one of the families pointed at me, “You", - "after": "You.” A man who might have been the patriarch of one of the families pointed at me. “You" - }, - { - "before": "years old, “What’s", - "after": "years old. “What’s" - }, - { - "before": "ordered Sierra, “If these", - "after": "ordered Sierra. “If these" - }, - { - "before": "new clothes, you can get", - "after": "new clothes; you can get" - }, - { - "before": "out on.” I thought", - "after": "out on,” I thought" - } - ], - "https://parahumans.wordpress.com/2012/06/30/plague-12-2/": [ - { - "before": "stone: The", - "after": "stone: the" - }, - { - "before": "happen,” Hookwolf added. “The", - "after": "happen,” Hookwolf added, “the" - }, - { - "before": "seems,” Hookwolf said. “The", - "after": "seems,” Hookwolf said, “the" - }, - { - "before": "the ocean and I couldn’t", - "after": "the ocean, and I couldn’t" - }, - { - "before": "chuckling wryly, “You’re", - "after": "chuckling wryly. “You’re" - }, - { - "before": "pointed out, “If we agreed", - "after": "pointed out. “If we agreed" - } - ], - "https://parahumans.wordpress.com/2012/07/03/plague-12-3/": [ - { - "before": "Noelle, “ Trickster said, “You’ve asked", - "after": "Noelle,” Trickster said, “you’ve asked" - }, - { - "before": "indication,” Tattletale said. “We", - "after": "indication,” Tattletale said, “we" - }, - { - "before": "“Hello?’", - "after": "“Hello?”" - }, - { - "before": "small voice, “You can", - "after": "small voice. “You can" - }, - { - "before": "her,” Regent said. “But she can", - "after": "her,” Regent said, “but she can" - }, - { - "before": "his teammates, “Mind giving", - "after": "his teammates. “Mind giving" - }, - { - "before": "He smiled, “This is", - "after": "He smiled. “This is" - }, - { - "before": "and his his eyes drifted", - "after": "and his eyes drifted" - } - ], - "https://parahumans.wordpress.com/2012/07/07/plague-12-4/": [ - { - "before": "me,” Jack said. “I", - "after": "me,” Jack said, “I" - }, - { - "before": "sis,” Regent said. “I", - "after": "sis,” Regent said, “I" - }, - { - "before": "an actual laugh, “You", - "after": "an actual laugh. “You" - }, - { - "before": "asked, “We die?", - "after": "asked. “We die?" - }, - { - "before": "his direction, “No cheating", - "after": "his direction. “No cheating" - }, - { - "before": "on Bonesaw, “And maybe", - "after": "on Bonesaw. “And maybe" - } - ], - "https://parahumans.wordpress.com/2012/07/10/plague-12-5/": [ - { - "before": "The Slaughterhouse Nine are here?", - "after": "The Slaughterhouse Nine are here?" - }, - { - "before": "getting my costume off and getting dad somewhere safe", - "after": "getting my costume off and getting Dad somewhere safe" - }, - { - "before": "I love you dad", - "after": "I love you Dad" - }, - { - "before": "leaving the space that mom had once occupied", - "after": "leaving the space that Mom had once occupied" - } - ], - "https://parahumans.wordpress.com/2012/07/14/plague-12-6/": [ - { - "before": "had their shots” I said", - "after": "had their shots,” I said" - } - ], - "https://parahumans.wordpress.com/2012/07/17/plague-12-7/": [ - { - "before": "costumes: The", - "after": "costumes: the" - } - ], - "https://parahumans.wordpress.com/2012/07/21/plague-12-8/": [ - { - "before": "um,” she paused. “Couldn’t", - "after": "um,” she paused, “couldn’t" - }, - { - "before": "cure-all nor", - "after": "cure-all, nor" - } - ], - "https://parahumans.wordpress.com/2012/07/26/interlude-12%C2%BD/": [ - { - "before": "implode, it has created a powerful vacuum in someone’s mouth, that", - "after": "implode, and it has created a powerful vacuum in someone’s mouth that" - }, - { - "before": "doesn’t,” Madcap said. “But", - "after": "doesn’t,” Madcap said, “but" - }, - { - "before": "Second task.—c

", - "after": "Second task. —c

" - }, - { - "before": "Thank you. —c.", - "after": "Thank you. —c" - }, - { - "before": "He grinned, “But I want", - "after": "He grinned. “But I want" - } - ], - "https://parahumans.wordpress.com/2012/07/28/snare-13-1/": [ - { - "before": "—Or it could", - "after": "—or it could" - }, - { - "before": "lost,” Brian said. “That’s", - "after": "lost,” Brian said, “that’s" - }, - { - "before": "So,” Brian said. “You", - "after": "So,” Brian said, “you" - }, - { - "before": "And,” Lisa said. “She", - "after": "And,” Lisa said, “she" - } - ], - "https://parahumans.wordpress.com/2012/08/02/interlude-13%C2%BD-donation-bonus/": [ - { - "before": "hon,” Celia said. “We’ve", - "after": "hon,” Celia said, “we’ve" - } - ], - "https://parahumans.wordpress.com/2012/08/14/snare-13-6/": [ - { - "before": "Grue,” Trickster said. “Get", - "after": "Grue,” Trickster said, “get" - }, - { - "before": "Nothing she can’t do outside the bubble", - "after": "Nothing she can do outside the bubble", - "_comment": "This doesn't make sense logically with 'can’t'." - } - ], - "https://parahumans.wordpress.com/2012/08/18/snare-13-7/": [ - { - "before": "three…“ My swarm", - "after": "three…” My swarm" - }, - { - "before": "first: Either", - "after": "first: either" - }, - { - "before": "Coil,” I said. “You", - "after": "Coil,” I said, “you" - } - ], - "https://parahumans.wordpress.com/2012/08/21/snare-13-8/": [ - { - "before": "occupied: A", - "after": "occupied: a" - } - ], - "https://parahumans.wordpress.com/2012/08/25/snare-13-09/": [ - { - "before": "the,” she paused. “Hip", - "after": "the,” she paused, “hip" - } - ], - "https://parahumans.wordpress.com/2012/08/28/snare-13-10/": [ - { - "before": "Bitch: Eye", - "after": "Bitch: eye" - }, - { - "before": "upfront,” he said. “I", - "after": "upfront,” he said, “I" - } - ], - "https://parahumans.wordpress.com/2012/09/04/prey-14-1/": [ - { - "before": ", like", - "after": ", like" - }, - { - "before": "Then dad ordered you to kill him", - "after": "Then Dad ordered you to kill him" - } - ], - "https://parahumans.wordpress.com/2012/09/08/prey-14-2/": [ - { - "before": "know,” Tattletale smiled. “We’re", - "after": "know,” Tattletale smiled, “we’re" - } - ], - "https://parahumans.wordpress.com/2012/09/11/prey-14-3/": [ - { - "before": "truck reached
\nthe other Nine", - "after": "truck reached the other Nine" - }, - { - "before": "to,” Grue said. “But", - "after": "to,” Grue said, “but" - }, - { - "before": "through.We crossed", - "after": "through. We crossed" - } - ], - "https://parahumans.wordpress.com/2012/09/15/prey-14-4/": [ - { - "before": "a ‘No, you just told me.’, but", - "after": "a ‘No, you just told me,’ but" - }, - { - "before": "Amy,” Tattletale said. “But", - "after": "Amy,” Tattletale said, “but" - } - ], - "https://parahumans.wordpress.com/2012/09/25/prey-14-7/": [ - { - "before": "question,” Tattletale said. “Is", - "after": "question,” Tattletale said, “is" - }, - { - "before": "defenseless,” I suggested. “Regent", - "after": "defenseless,” I suggested, “Regent" - } - ], - "https://parahumans.wordpress.com/2012/09/29/prey-14-8/": [ - { - "before": "countermeasures,” I said. “We", - "after": "countermeasures,” I said, “we" - }, - { - "before": "through the suit?", - "after": "through the suit?" - } - ], - "https://parahumans.wordpress.com/2012/10/09/prey-14-11/": [ - { - "before": "belt: He", - "after": "belt: he" - } - ], - "https://parahumans.wordpress.com/2012/10/11/interlude-14/": [ - { - "before": "hard about it", - "after": "heard about it" - } - ], - "https://parahumans.wordpress.com/2012/10/13/interlude-14-5-bonus-interlude/": [ - { - "before": "does he", - "after": "Does he" - }, - { - "before": "Unless,” Alexandria said. “The", - "after": "Unless,” Alexandria said, “the" - } - ], - "https://parahumans.wordpress.com/2012/10/18/interlude-15-donation-bonus/": [ - { - "before": "volunteered, asked
\n
to", - "after": "volunteered, asked to" - }, - { - "before": "happened to my daughter!?", - "after": "happened to my daughter!?" - } - ], - "https://parahumans.wordpress.com/2012/10/25/interlude-15-donation-bonus-2/": [ - { - "before": "here?
He", - "after": "here?
he" - } - ], - "https://parahumans.wordpress.com/2012/10/20/colony-15-2/": [ - { - "before": "turned something", - "after": "taken something", - "_comment": "'turned' is repeated later in the sentence." - }, - { - "before": "on,” Tattletale said. “Let’s", - "after": "on,” Tattletale said, “let’s" - }, - { - "before": "there,” Tattletale pointed. “And", - "after": "there,” Tattletale pointed, “and" - } - ], - "https://parahumans.wordpress.com/2012/10/23/colony-15-3/": [ - { - "before": "whether or not I agreed or not", - "after": "whether I agreed or not", - "_comment": "Alternatively, the second 'or not' could be deleted instead of the first." - }, - { - "before": "Woah,” Regent said. “Relax", - "after": "Woah,” Regent said, “relax" - }, - { - "before": "rich,” Regent said. “Coming", - "after": "rich,” Regent said, “coming" - }, - { - "before": "the street

", - "after": "the street.

" - }, - { - "before": "dishonest members", - "after": "dishonest member", - "_comment": "He's talking only about Skitter here." - } - ], - "https://parahumans.wordpress.com/2012/10/27/colony-15-4/": [ - { - "before": "Victfor", - "after": "Victor" - }, - { - "before": "Actually,” Coil said. “I", - "after": "Actually,” Coil said, “I" - } - ], - "https://parahumans.wordpress.com/2012/10/30/colony-15-5/": [ - { - "before": "wasn’t unfamiliar", - "after": "was unfamiliar" - }, - { - "before": "this,” Regent said. “I", - "after": "this,” Regent said, “I" - } - ], - "https://parahumans.wordpress.com/2012/11/06/colony-15-7/": [ - { - "before": "this sort of resistance.", - "after": "this sort of resistance?" - }, - { - "before": "Brooks,” I said. “Treat", - "after": "Brooks,” I said, “treat" - }, - { - "before": "being kept

", - "after": "being kept.

" - } - ], - "https://parahumans.wordpress.com/2012/11/08/interlude-15-donation-bonus-3/": [ - { - "before": "to,” Alexandria spoke. “Is", - "after": "to,” Alexandria spoke, “is" - }, - { - "before": "leave?” Hero asked.”Why", - "after": "leave?” Hero asked. “Why" - }, - { - "before": "Alexandria said.”Why", - "after": "Alexandria said. “Why" - }, - { - "before": "voice as quiet.”We’ve got teams", - "after": "voice as quiet. “We’ve got teams" - } - ], - "https://parahumans.wordpress.com/2012/11/10/colony-15-8/": [ - { - "before": "But,” he continued. “I", - "after": "But,” he continued, “I" - } - ], - "https://parahumans.wordpress.com/2012/11/13/colony-15-9/": [ - { - "before": "—Dying", - "after": "—dying" - } - ], - "https://parahumans.wordpress.com/2012/11/17/colony-15-10/": [ - { - "before": "was: Multitasking", - "after": "was: multitasking" - }, - { - "before": "of you and mom", - "after": "of you and Mom" - }, - { - "before": "better pictures of mom", - "after": "better pictures of Mom" - } - ], - "https://parahumans.wordpress.com/2012/11/20/interlude-15/": [ - { - "before": "before,” Dragon replied. “Is", - "after": "before,” Dragon replied, “is" - }, - { - "before": "Once dad and the sibs realized", - "after": "Once Dad and the sibs realized" - } - ], - "https://parahumans.wordpress.com/2012/11/24/monarch-16-1/": [ - { - "before": "; Nobody", - "after": "; nobody" - }, - { - "before": "version on", - "after": "version of" - }, - { - "before": "is,” Tattletale said. “They’ve", - "after": "is,” Tattletale said, “they’ve" - } - ], - "https://parahumans.wordpress.com/2012/11/27/monarch-16-2/": [ - { - "before": "that,” Grue said. “Is", - "after": "that,” Grue said, “is" - } - ], - "https://parahumans.wordpress.com/2012/12/01/monarch-16-3/": [ - { - "before": "two teams” I said", - "after": "two teams,” I said" - } - ], - "https://parahumans.wordpress.com/2012/12/04/monarch-16-4/": [ - { - "before": "well, with Bitch’s civilian", - "after": "well, while Bitch’s civilian" - } - ], - "https://parahumans.wordpress.com/2012/12/08/monarch-16-5/": [ - { - "before": "and It was powerful enough", - "after": "and it was powerful enough" - } - ], - "https://parahumans.wordpress.com/2012/12/11/monarch-16-6/": [ - { - "before": "—But we definitely", - "after": "—but we definitely" - }, - { - "before": "all the way up to the the nape of my neck", - "after": "all the way up to the nape of my neck" - } - ], - "https://parahumans.wordpress.com/2012/12/15/monarch-16-7/": [ - { - "before": "Brockton bay", - "after": "Brockton Bay" - }, - { - "before": "question,” I said. “But", - "after": "question,” I said, “but" - }, - { - "before": "debate,” Kurt said. “People", - "after": "debate,” Kurt said, “people" - } - ], - "https://parahumans.wordpress.com/2012/12/18/monarch-16-8/": [ - { - "before": "decisions: Holding back", - "after": "decisions: holding back" - }, - { - "before": "their positioning, they had planned this", - "after": "their positioning… They had planned this", - "_comment": "A comma seems like the wrong choice here." - } - ], - "https://parahumans.wordpress.com/2012/12/22/monarch-16-9/": [ - { - "before": "aisles

", - "after": "aisles.

" - } - ], - "https://parahumans.wordpress.com/2012/12/25/monarch-16-10/": [ - { - "before": "it,” Trickster said. “You", - "after": "it,” Trickster said, “you" - }, - { - "before": "said,” I retorted. “We’re", - "after": "said,” I retorted, “we’re" - }, - { - "before": "me,” I replied. “I", - "after": "me,” I replied, “I" - }, - { - "before": "alright,” I said. “We’ll", - "after": "alright,” I said, “we’ll" - } - ], - "https://parahumans.wordpress.com/2012/12/29/monarch-16-11/": [ - { - "before": "attemtps", - "after": "attempts" - } - ], - "https://parahumans.wordpress.com/2013/01/05/monarch-16-13/": [ - { - "before": "doubts,” I said. “You", - "after": "doubts,” I said, “you" - }, - { - "before": "amusing,” Calvert said. “That", - "after": "amusing,” Calvert said, “that" - }, - { - "before": "ten,” I asked. “Just", - "after": "ten,” I asked, “just" - }, - { - "before": "weeks, months. Anticipating", - "after": "weeks, months. Anticipating" - }, - { - "before": "as much or more about Parahumans than", - "after": "as much or more about parahumans than" - } - ], - "https://parahumans.wordpress.com/2013/01/08/migration-17-1/": [ - { - "before": "an earthquake” Luke", - "after": "an earthquake,” Luke" - }, - { - "before": "Cody,” Noelle started. “We", - "after": "Cody,” Noelle started, “we" - } - ], - "https://parahumans.wordpress.com/2013/01/09/migration-17-2/": [ - { - "before": "left now.’

", - "after": "left now.

" - }, - { - "before": "and your time—”", - "after": "and your time—”" - }, - { - "before": "Okay,” Krouse said. “Give", - "after": "Okay,” Krouse said, “give" - }, - { - "before": "city,” Jess said. “And", - "after": "city,” Jess said, “and" - }, - { - "before": "“No!”", - "after": "“No!”" - } - ], - "https://parahumans.wordpress.com/2013/01/10/migration-17-3/": [ - { - "before": "divots intp", - "after": "divots into" - }, - { - "before": "No. the", - "after": "No. The" - }, - { - "before": "other,” Krouse said. “We’ll", - "after": "other,” Krouse said, “we’ll" - }, - { - "before": "to the point that she was pushing pushing past", - "after": "to the point that she was pushing past" - } - ], - "https://parahumans.wordpress.com/2013/01/11/migration-17-4/": [ - { - "before": "GWER-.

", - "after": "GWER—.

" - }, - { - "before": "the Birdcage", - "after": "the birdcage", - "_comment": "A literal birdcage, not the parahuman prison." - } - ], - "https://parahumans.wordpress.com/2013/01/12/migration-17-5/": [ - { - "before": "Villians", - "after": "Villains" - }, - { - "before": "been replying", - "after": "been replaying" - }, - { - "before": "sort of stuff that, and", - "after": "sort of stuff that ???, and" - }, - { - "before": "stirred. her eyes", - "after": "stirred. Her eyes" - }, - { - "before": "is,” Cody said. “I’d", - "after": "is,” Cody said, “I’d" - }, - { - "before": "side,” Luke said. “But", - "after": "side,” Luke said, “but" - }, - { - "before": "ninety percent or more of the the city", - "after": "ninety percent or more of the city" - } - ], - "https://parahumans.wordpress.com/2013/01/13/migration-17-6/": [ - { - "before": "ground. Not exactly", - "after": "ground. “Not exactly" - }, - { - "before": "MWBB ", - "after": "MWBB " - }, - { - "before": "happens,” Krouse said. “Blame", - "after": "happens,” Krouse said, “blame" - }, - { - "before": "one hallway

", - "after": "one hallway.

" - }, - { - "before": "the glass vial

", - "after": "the glass vial.

" - }, - { - "before": "discovering that mom was right", - "after": "discovering that Mom was right" - } - ], - "https://parahumans.wordpress.com/2013/01/14/migration-17-7/": [ - { - "before": "focus
. This is because of Noelle", - "after": "focus. This is because of Noelle" - }, - { - "before": "—A hostage", - "after": "—a hostage" - }, - { - "before": "Well,” Krouse said. “Do", - "after": "Well,” Krouse said, “do" - }, - { - "before": "the guy: A brown", - "after": "the guy: a brown" - }, - { - "before": "exaggerated shrug

", - "after": "exaggerated shrug.

" - }, - { - "before": "the P.R.T. uniforms", - "after": "the PRT uniforms" - }, - { - "before": "injured P.R.T. soldier", - "after": "injured PRT soldier" - } - ], - "https://parahumans.wordpress.com/2013/01/15/migration-17-8/": [ - { - "before": "saying for ten days", - "after": "staying for ten days" - }, - { - "before": "replied. Need to talk about being more secure with our names. “What’s going on?”", - "after": "replied. Need to talk about being more secure with our names. “What’s going on?”" - }, - { - "before": "Krouse,” Luke said. “We", - "after": "Krouse,” Luke said, “we" - }, - { - "before": "on his knees. he held the cigarette", - "after": "on his knees. He held the cigarette" - }, - { - "before": "‘hief!", - "after": "’hief!" - } - ], - "https://parahumans.wordpress.com/2013/01/19/queen-18-1/": [ - { - "before": "know,” Tattletale said. “But", - "after": "know,” Tattletale said, “but" - }, - { - "before": "trouble,” she said. “It’s", - "after": "trouble,” she said, “it’s" - }, - { - "before": "speaking,” I said. “Just", - "after": "speaking,” I said, “just" - }, - { - "before": "or another

", - "after": "or another.

" - } - ], - "https://parahumans.wordpress.com/2013/01/22/queen-18-2/": [ - { - "before": "her,” I said. “You", - "after": "her,” I said, “you" - } - ], - "https://parahumans.wordpress.com/2013/01/24/interlude-18x/": [ - { - "before": "french accent", - "after": "French accent" - }, - { - "before": "No,” Lisette said. “I", - "after": "No,” Lisette said, “I" - } - ], - "https://parahumans.wordpress.com/2013/01/26/queen-18-3/": [ - { - "before": "attacked,” I said. “Do", - "after": "attacked,” I said, “do" - }, - { - "before": "helps,” Tattletale said. “Get", - "after": "helps,” Tattletale said, “get" - }, - { - "before": "Skitter,” Grue said. “No", - "after": "Skitter,” Grue said, “no" - } - ], - "https://parahumans.wordpress.com/2013/02/02/queen-18-5/": [ - { - "before": "—But she’s set", - "after": "—but she’s set" - }, - { - "before": "Well,” Tattletale said. “Funny", - "after": "Well,” Tattletale said, “funny" - }, - { - "before": "stranger class", - "after": "stranger-class" - } - ], - "https://parahumans.wordpress.com/2013/02/05/monarch-18-6/": [ - { - "before": "he encouragement", - "after": "the encouragement" - }, - { - "before": "‘okay’", - "after": "‘OK’", - "_comment": "This is a note written with bugs and thus probably uses two letters instead of four" - } - ], - "https://parahumans.wordpress.com/2013/01/31/interlude-18-donation-bonus-2/": [ - { - "before": "—And I believe", - "after": "—and I believe" - }, - { - "before": "Crusader,” Kayden said. “Can", - "after": "Crusader,” Kayden said, “can" - }, - { - "before": "Kayden,” Theo said. “You’re", - "after": "Kayden,” Theo said, “you’re" - }, - { - "before": "about how Masters tend to have", - "after": "about how masters tend to have" - }, - { - "before": "that was why Masters tend to be", - "after": "that was why masters tend to be" - }, - { - "before": "the top researchers on Parahumans", - "after": "the top researchers on parahumans" - } - ], - "https://parahumans.wordpress.com/2013/02/07/interlude-18-donation-bonus-3/": [ - { - "before": "fighting. But.", - "after": "fighting. But…" - }, - { - "before": "—But I have", - "after": "—but I have" - }, - { - "before": "Friday-Saturday", - "after": "Friday–Saturday" - }, - { - "before": "…Just focus", - "after": "…just focus" - }, - { - "before": "Rogue friend", - "after": "rogue friend" - }, - { - "before": "The Rogue", - "after": "The rogue" - }, - { - "before": "and Weld,", - "after": "And Weld," - }, - { - "before": "Don’t mention I", - "after": "—don’t mention I" - }, - { - "before": "questions,” Jessica said. “Because", - "after": "questions,” Jessica said, “because" - }, - { - "before": "question,” he asked. “Do", - "after": "question,” he asked, “do" - }, - { - "before": "priest,” he said. “I", - "after": "priest,” he said, “I" - }, - { - "before": "Jessica observed She looked like", - "after": "Jessica observed. She looked like" - } - ], - "https://parahumans.wordpress.com/2013/02/09/queen-18-7/": [ - { - "before": "apart,” he said. “We", - "after": "apart,” he said, “we" - }, - { - "before": "fight,” Tattletale said. “And", - "after": "fight,” Tattletale said, “and" - }, - { - "before": "earth-shaking", - "after": "earthshaking" - } - ], - "https://parahumans.wordpress.com/2013/02/12/queen-18-8/": [ - { - "before": "dragged long", - "after": "dragged along" - }, - { - "before": "Tecton,” I said. “As", - "after": "Tecton,” I said, “as" - }, - { - "before": "better,” I said. “Eidolon", - "after": "better,” I said, “Eidolon" - } - ], - "https://parahumans.wordpress.com/2013/02/14/interlude-18-donation-bonus-4/": [ - { - "before": "C.U.l China", - "after": "C.U.I. China" - }, - { - "before": "Faulltine asked", - "after": "Faultline asked" - }, - { - "before": "through Faulltine", - "after": "through Faultline" - }, - { - "before": "Arriving at four in the morning?", - "after": "Arriving at four in the morning?" - }, - { - "before": "Hypothetically,” she said. “I", - "after": "Hypothetically,” she said, “I" - }, - { - "before": "bro,” Newter said. “I’m", - "after": "bro,” Newter said, “I’m" - }, - { - "before": "Labyrinth,” Faultline said. “Shore", - "after": "Labyrinth,” Faultline said, “shore" - }, - { - "before": "anything,” Shamrock said. “I", - "after": "anything,” Shamrock said, “I" - }, - { - "before": "the phone

", - "after": "the phone.

" - } - ], - "https://parahumans.wordpress.com/2013/02/16/interlude-18/": [ - { - "before": "her feet.”We’re", - "after": "her feet. “We’re" - } - ], - "https://parahumans.wordpress.com/2013/02/19/scourge-19-1/": [ - { - "before": "Rachel,” Tattletale said. “Come", - "after": "Rachel,” Tattletale said, “come" - } - ], - "https://parahumans.wordpress.com/2013/02/23/scourge-19-2/": [ - { - "before": "Skitter,” Tattletale said. “Meet", - "after": "Skitter,” Tattletale said, “meet" - } - ], - "https://parahumans.wordpress.com/2013/02/26/scourge-19-3/": [ - { - "before": "No,” Regent said. “Blame", - "after": "No,” Regent said. “Blame" - }, - { - "before": "Well,” Tattletale said. “Let’s", - "after": "Well,” Tattletale said, “let’s" - }, - { - "before": " leap,” Tecton said. “To", - "after": " leap,” Tecton said, “to" - } - ], - "https://parahumans.wordpress.com/2013/02/28/interlude-19-donation-bonus-1/": [ - { - "before": "and be brought it", - "after": "and he brought it" - }, - { - "before": "propellers  One caught her", - "after": "propellers. One caught her" - } - ], - "https://parahumans.wordpress.com/2013/03/02/scourge-19-4/": [ - { - "before": "happy,” Scapegoat said. “Being", - "after": "happy,” Scapegoat said, “being" - }, - { - "before": "Tattletale,” I said. “What’s", - "after": "Tattletale,” I said, “what’s" - }, - { - "before": "agree,” Chevalier said. “If", - "after": "agree,” Chevalier said, “if" - }, - { - "before": "noting,” Legend said. “That", - "after": "noting,” Legend said, “that" - } - ], - "https://parahumans.wordpress.com/2013/03/05/scourge-19-5/": [ - { - "before": "returned to a standing position Her face was softer", - "after": "returned to a standing position. Her face was softer" - } - ], - "https://parahumans.wordpress.com/2013/03/09/scourge-19-6/": [ - { - "before": "heailng", - "after": "healing" - } - ], - "https://parahumans.wordpress.com/2013/03/12/scourge-19-7/": [ - { - "before": "they did, but how we dealt", - "after": "they did, but how we dealt" - }, - { - "before": "That,” Tattletale said. “Is", - "after": "That,” Tattletale said, “is" - }, - { - "before": "noticed,” Tattletale said. “There’s", - "after": "noticed,” Tattletale said, “there’s" - }, - { - "before": "possible,” Tattletale said. “We’d", - "after": "possible,” Tattletale said, “we’d" - } - ], - "https://parahumans.wordpress.com/2013/03/16/interlude-19-y/": [ - { - "before": "Brockton bay", - "after": "Brockton Bay" - }, - { - "before": "South", - "after": "south" - }, - { - "before": "Unfortunate tinker", - "after": "Unfortunate tinker", - "_comment": "See convert-worker.js; this corrects an over-correction" - } - ], - "https://parahumans.wordpress.com/2013/03/19/interlude-19/": [ - { - "before": "white noise that had subsumed her her thoughts when", - "after": "white noise that had subsumed her thoughts when" - }, - { - "before": "Hey dad", - "after": "Hey Dad" - } - ], - "https://parahumans.wordpress.com/2013/03/21/chrysalis-20-1/": [ - { - "before": "you,” I said. “But", - "after": "you,” I said, “but" - }, - { - "before": "completely recovered
.", - "after": "completely recovered.
" - } - ], - "https://parahumans.wordpress.com/2013/03/23/chrysalis-20-2/": [ - { - "before": "something together something", - "after": "something together" - }, - { - "before": "of anxiety.", - "after": "of anxiety." - } - ], - "https://parahumans.wordpress.com/2013/03/26/chrysalis-20-3/": [ - { - "before": "attacked the boardwalk", - "after": "attacked the Boardwalk" - }, - { - "before": "Hi dad", - "after": "Hi Dad" - } - ], - "https://parahumans.wordpress.com/2013/03/30/chrysalis-20-4/": [ - { - "before": "guess-, while", - "after": "guess—while" - } - ], - "https://parahumans.wordpress.com/2013/04/02/chrysalis-20-5/": [ - { - "before": "earshot,” I said. “My", - "after": "earshot,” I said, “my" - }, - { - "before": "choice,” I said. “But", - "after": "choice,” I said, “but" - } - ], - "https://parahumans.wordpress.com/2013/04/04/interlude-20-donation-bonus-1/": [ - { - "before": "’20th’", - "after": "‘20th’" - }, - { - "before": "—A known murderer", - "after": "—a known murderer" - }, - { - "before": "us,” Defiant replied. “I", - "after": "us,” Defiant replied, “I" - }, - { - "before": "Colin,” Piggot replied. “I", - "after": "Colin,” Piggot replied, “I" - } - ], - "https://parahumans.wordpress.com/2013/04/06/interlude-20/": [ - { - "before": "the costume were studded", - "after": "the costume was studded" - }, - { - "before": "the Clairvoyant", - "after": "the clairvoyant", - "_comment": "See convert-worker.js; this corrects an over-correction" - }, - { - "before": "maintain eye contact. he could feel the warmth", - "after": "maintain eye contact. He could feel the warmth" - } - ], - "https://parahumans.wordpress.com/2013/04/09/imago-21-1/": [ - { - "before": "—And I couldn’t", - "after": "—and I couldn’t" - }, - { - "before": "is,” Regent said. “If", - "after": "is,” Regent said, “if" - }, - { - "before": "it,” Tattletale said. “Is", - "after": "it,” Tattletale said, “is" - } - ], - "https://parahumans.wordpress.com/2013/04/13/imago-21-2/": [ - { - "before": "Captain’s hill", - "after": "Captain’s Hill" - }, - { - "before": "—But they’re only", - "after": "—but they’re only" - }, - { - "before": "harder than it’d be to explain to dad", - "after": "harder than it’d be to explain to Dad" - }, - { - "before": "all of the stuff that dad’s probably finding", - "after": "all of the stuff that Dad’s probably finding" - }, - { - "before": "telling you or dad about it", - "after": "telling you or Dad about it" - }, - { - "before": "I didn’t leave dad", - "after": "I didn’t leave Dad" - }, - { - "before": "I know you and dad won’t approve", - "after": "I know you and Dad won’t approve" - }, - { - "before": "hundred and ten-percent", - "after": "hundred and ten percent" - } - ], - "https://parahumans.wordpress.com/2013/04/16/imago-21-3/": [ - { - "before": "—Centipedes and bigger", - "afer": "—centipedes and bigger" - }, - { - "before": "possibility,” I said. “Is", - "after": "possibility,” I said, “is" - } - ], - "https://parahumans.wordpress.com/2013/04/18/imago-21-4/": [ - { - "before": "alright,” Grue said. “We’ll", - "after": "alright,” Grue said, “we’ll" - }, - { - "before": "Tagg,” I said. “He", - "after": "Tagg,” I said, “he" - }, - { - "before": "you,” I said. “I", - "after": "you,” I said, “I" - } - ], - "https://parahumans.wordpress.com/2013/04/20/imago-21-5/": [ - { - "before": "respect: Letters", - "after": "respect: letters" - }, - { - "before": "to,” I said. “Is", - "after": "to,” I said, “is" - }, - { - "before": "are sorry your", - "after": "are sorry your", - "_comment": "All the other 'sorry's are emphasized in this paragraph" - }, - { - "before": "sorry that", - "after": "sorry that" - } - ], - "https://parahumans.wordpress.com/2013/04/25/imago-21-7/": [ - { - "before": "Dinah. because this", - "after": "Dinah. Because this" - }, - { - "before": "Ironic,” she mumbled. “Coming", - "after": "Ironic,” she mumbled, “coming" - }, - { - "before": "to looked around", - "after": "to look around" - } - ], - "https://parahumans.wordpress.com/2013/04/27/interlude-21-donation-bonus-1/": [ - { - "before": "years", - "after": "years" - } - ], - "https://parahumans.wordpress.com/2013/04/30/interlude-21/": [ - { - "before": "But…Maybe she", - "after": "But… Maybe she" - }, - { - "before": "attack,” Accord said. “And", - "after": "attack,” Accord said, “and" - }, - { - "before": "But,” Tattletale said. “I", - "after": "But,” Tattletale said, “I" - }, - { - "before": "signal,” Tattletale said. “We", - "after": "signal,” Tattletale said, “we" - } - ], - "https://parahumans.wordpress.com/2013/05/04/cell-22-1/": [ - { - "before": "gone,” Dovetail said. “She’d", - "after": "gone,” Dovetail said, “she’d" - }, - { - "before": "alternative,” Assault said. “Is", - "after": "alternative,” Assault said, “is" - }, - { - "before": "way,” I said. “It’s", - "after": "way,” I said, “it’s" - } - ], - "https://parahumans.wordpress.com/2013/05/07/cell-22-2/": [ - { - "before": "said. “Is to set", - "after": "said, “is to set" - }, - { - "before": "But.“ He", - "after": "But.” He" - }, - { - "before": "is led by non-capes", - "after": "is led by non-capes" - } - ], - "https://parahumans.wordpress.com/2013/05/09/cell-22-3/": [ - { - "before": "tonight,” Tagg said. “If", - "after" :"tonight,” Tagg said, “if" - } - ], - "https://parahumans.wordpress.com/2013/05/11/cell-22-4/": [ - { - "before": "reading?” My", - "after": "reading?” my" - } - ], - "https://parahumans.wordpress.com/2013/05/14/cell-22-5/": [ - { - "before": "in,” I said. “Could", - "after": "in,” I said, “could" - } - ], - "https://parahumans.wordpress.com/2013/05/16/cell-22-6/": [ - { - "before": "She continued without pause. “—And we", - "after": "She continued without pause, “—and we" - }, - { - "before": "lying,” I said. “Let’s", - "after": "lying,” I said, “let’s" - }, - { - "before": "capes,” Chevalier said. “Burdened", - "after": "capes,” Chevalier said, “burdened" - }, - { - "before": "of it.", - "after": "of it." - } - ], - "https://parahumans.wordpress.com/2013/05/18/interlude-22/": [ - { - "before": "long,” she warned", - "after": "long,” she warned" - }, - { - "before": "it,” he said. “She", - "after": "it,” he said, “she" - }, - { - "before": "confirmed okay", - "after": "confirmed ok", - "_comment": "This is a forum post title and thus is probably informal and not even capitalized" - } - ], - "https://parahumans.wordpress.com/2013/05/21/interlude-22-donation-bonus-1/": [ - { - "before": "Sumimasen deshita", - "after": "Sumimasen deshita" - }, - { - "before": "“is it reassuring", - "after": "“Is it reassuring" - }, - { - "before": "frank,” Teacher said. “I", - "after": "frank,” Teacher said, “I" - }, - { - "before": "their ears

", - "after": "their ears.

" - }, - { - "before": "it’s import", - "after": "its import" - } - ], - "https://parahumans.wordpress.com/2013/05/25/drone-23-1/": [ - { - "before": "abilites", - "after": "abilities" - }, - { - "before": "Defiant spoke, “Let’s", - "after": "Defiant spoke. “Let’s" - }, - { - "before": "happens,” he said. “You’re", - "after": "happens,” he said, “you’re" - } - ], - "https://parahumans.wordpress.com/2013/05/28/drone-23-2/": [ - { - "before": "of the ship. It’s", - "after": "of the ship.’ It’s" - }, - { - "before": "supervillain-turned hero", - "after": "supervillain-turned-hero" - }, - { - "before": "Las Vegas Rogue", - "after": "Las Vegas rogue" - }, - { - "before": "Except,” Rime said. “Things", - "after": "Except,” Rime said, “things" - }, - { - "before": "know,” Prefab said. “Arbiter", - "after": "know,” Prefab said, “Arbiter" - }, - { - "before": "point,” I said. “But", - "after": "point,” I said, “but" - }, - { - "before": "Kulshedra,” Prefab said. “Open", - "after": "Kulshedra,” Prefab said, “open" - } - ], - "https://parahumans.wordpress.com/2013/05/30/drone-23-3/": [ - { - "before": "nerf", - "after": "Nerf" - }, - { - "before": "Nine,” Glenn said. “I", - "after": "Nine,” Glenn said, “I" - }, - { - "before": "went okay", - "after": "went ok", - "_comment": "This is in a letter from Tattletale which is fairly informal and uses phrases like 'mebbe' nearby." - } - ], - "https://parahumans.wordpress.com/2013/06/01/drone-23-4/": [ - { - "before": "FIrst", - "after": "First" - }, - { - "before": "said. Someone", - "after": "said. “Someone" - } - ], - "https://parahumans.wordpress.com/2013/06/04/drone-23-5/": [ - { - "before": "it,” Imp said. “She’s", - "after": "it,” Imp said, “she’s" - }, - { - "before": "electorcuted", - "after": "electrocuted" - } - ], - "https://parahumans.wordpress.com/2013/06/06/interlude-23/": [ - { - "before": "one—or two-word", - "after": "one- or two-word" - }, - { - "before": "her mouth: A click", - "after": "her mouth: a click" - } - ], - "https://parahumans.wordpress.com/2013/06/08/crushed-24-1/": [ - { - "before": "both of you” I said", - "after": "both of you,” I said" - }, - { - "before": "dress,” Grace commented. “I", - "after": "dress,” Grace commented, “I" - }, - { - "before": "And,” I said. “We", - "after": "And,” I said, “we" - } - ], - "https://parahumans.wordpress.com/2013/06/11/crushed-24-2/": [ - { - "before": "They destroying", - "after": "They were destroying" - } - ], - "https://parahumans.wordpress.com/2013/06/15/crushed-24-3/": [ - { - "before": "Phir Sē echoed me. “", - "after": "Phir Sē echoed me. “" - }, - { - "before": "I okay", - "after": "I ok", - "_comment": "This is in a hand-written note from Tattletale, so she'd probably keep it short" - } - ], - "https://parahumans.wordpress.com/2013/06/18/crushed-24-4/": [ - { - "before": "aren’t allies.", - "after": "aren’t allies.”" - }, - { - "before": "Blameful? “Guilty", - "after": "Blameful? “Guilty" - } - ], - "https://parahumans.wordpress.com/2013/06/20/crushed-24-5/": [ - { - "before": "plan,” Dispatch said. “We", - "after": "plan,” Dispatch said, “we" - } - ], - "https://parahumans.wordpress.com/2013/06/22/interlude-24/": [ - { - "before": "remained He", - "after": "remained. He" - }, - { - "before": "somehow within", - "after": "somehow get within" - }, - { - "before": "very fell over", - "after": "very nearly fell over" - }, - { - "before": "fight,” Tattletale said. “And", - "after": "fight,” Tattletale said, “and" - } - ], - "https://parahumans.wordpress.com/2013/06/25/interlude-24-donation-bonus-1/": [ - { - "before": "silence like this. Divide: They", - "after": "silence like this.
Divide: They" - }, - { - "before": "Bay,” Wanton said. “Not", - "after": "Bay,” Wanton said, “not" - } - ], - "https://parahumans.wordpress.com/2013/06/29/scarab-25-1/": [ - { - "before": "Honestly,” Tecton said. “If", - "after": "Honestly,” Tecton said, “if" - }, - { - "before": "sheets pillows", - "after": "sheets, pillows" - }, - { - "before": "Golem responded

", - "after": "Golem responded.

" - } - ], - "https://parahumans.wordpress.com/2013/07/02/scarab-25-2/": [ - { - "before": "Enough or three", - "after": "Enough for three" - }, - { - "before": "—3", - "after": "-3", - "_comment": "This is a computer display and thus probably uses a regular hyphen for the minus sign." - }, - { - "before": "said. Except without", - "after": "said. “Except without" - }, - { - "before": "line, t had", - "after": "line, it had" - }, - { - "before": "between each attack.
\nThese coming days and weeks", - "after": "between each attack.

\n

These coming days and weeks" - } - ], - "https://parahumans.wordpress.com/2013/07/06/scarab-25-3/": [ - { - "before": "along Addison. roughly four", - "after": "along Addison. Roughly four" - }, - { - "before": "There’ more", - "after": "There’s more" - }, - { - "before": "White capped", - "after": "White-capped" - }, - { - "before": ". “Bosses are worried.”", - "after": ". “Bosses are worried.”" - } - ], - "https://parahumans.wordpress.com/2013/07/09/scarab-25-4/": [ - { - "before": "bugs I don’t like", - "after": "bugs I don’t like" - }, - { - "before": "than this.", - "after": "than this." - } - ], - "https://parahumans.wordpress.com/2013/07/11/scarab-25-5/": [ - { - "before": "try,” Saint said. “And", - "after": "try,” Saint said, “and" - }, - { - "before": "badly,” Chevalier said. “Then", - "after": "badly,” Chevalier said, “then" - }, - { - "before": "assured,” Marquis retorted. “I", - "after": "assured,” Marquis retorted, “I" - }, - { - "before": "further,” I said. “It", - "after": "further,” I said, “it" - }, - { - "before": "attitude,” Saint added. “I", - "after": "attitude,” Saint added, “I" - } - ], - "https://parahumans.wordpress.com/2013/07/13/scarab-25-6/": [ - { - "before": "the fuck did you go?", - "after": "the fuck did you go?" - }, - { - "before": "SimurghNotes", - "after": "Simurgh
Notes" - }, - { - "before": "avoided-", - "after": "avoided" - }, - { - "before": "Lord Walston", - "after": "Lord Walston" - }, - { - "before": "—16", - "after": "-16", - "_comment": "This is a computer display and thus probably uses a regular hyphen for the minus sign." - } - ], - "https://parahumans.wordpress.com/2013/07/18/sting-26-1/": [ - { - "before": "up,” I said. “The", - "after": "up,” I said, “the" - }, - { - "before": "Master and stranger", - "after": "master and stranger" - }, - { - "before": "nearly-three-hundred", - "after": "nearly three hundred" - } - ], - "https://parahumans.wordpress.com/2013/07/20/sting-26-2/": [ - { - "before": "It didn’t hurt that", - "after": "It didn’t help that", - "_comment": "This makes more sense with 'help'" - }, - { - "before": "And gauntlet, to reply to the last one", - "after": "And gauntlet, to reply to the last one" - }, - { - "before": "a burst of alarm.", - "after": "a burst of alarm." - }, - { - "before": "Up from Eighty-three point four percent", - "after": "Up from eighty-three point four percent" - } - ], - "https://parahumans.wordpress.com/2013/07/23/sting-26-3/": [ - { - "before": "the other-.", - "after": "the other—" - }, - { - "before": "Vista,” he said. “Another", - "after": "Vista,” he said, “another" - }, - { - "before": "me,” I said. “Is", - "after": "me,” I said, “is" - }, - { - "before": "

“Help’s on the way.”

", - "after": "

Help’s on the way.

" - } - ], - "https://parahumans.wordpress.com/2013/07/25/interlude-26-donation-bonus-1/": [ - { - "before": "think,” Dobrynja said. “You’ve", - "after": "think,” Dobrynja said, “you’ve" - }, - { - "before": "particular type out there Eight Cherishes are dead", - "after": "particular type out there. Eight Cherishes are dead" - } - ], - "https://parahumans.wordpress.com/2013/07/27/sting-26-4/": [ - { - "before": "yes” Nilbog", - "after": "yes,” Nilbog" - }, - { - "before": "Or,” Jack said. “You", - "after": "Or,” Jack said, “you" - } - ], - "https://parahumans.wordpress.com/2013/07/30/sting-26-5/": [ - { - "before": " Wait…“

", - "after": " Wait…”

" - }, - { - "before": "This,” Imp said. “Is", - "after": "This,” Imp said, “is" - }, - { - "before": "kill all of the Masters that are generating", - "after": "kill all of the masters that are generating" - }, - { - "before": "—break up the fog!", - "after": "—break up the fog!" - }, - { - "before": "The Nyx were women", - "after": "The Nyxes were women" - }, - { - "before": "Psychosomas were men,", - "after": "Psychosomas were men:", - "_comment": "This is a strange sentence, but these changes make it flow better" - }, - { - "before": "Night hags", - "after": "Night Hags" - } - ], - "https://parahumans.wordpress.com/2013/08/06/interlude-26a/": [ - { - "before": "city, Golem thought.", - "after": "city, Golem thought." - }, - { - "before": "leave,” Defiant said. “We", - "after": "leave,” Defiant said, “we" - } - ], - "https://parahumans.wordpress.com/2013/08/08/interlude-26b/": [ - { - "before": "a battered Cuff", - "after": "A battered Cuff" - }, - { - "before": "you,” he said. “I", - "after": "you,” he said, “I" - }, - { - "before": "froze him.", - "after": "froze him." - } - ], - "https://parahumans.wordpress.com/2013/08/10/interlude-26/": [ - { - "before": "variation…. ", - "after": "variation…" - }, - { - "before": "rain: The", - "after": "rain: the" - }, - { - "before": "from one another

", - "after": "from one another.

" - }, - { - "before": "fragmenting in greater numbers

", - "after": "fragmenting in greater numbers.

" - }, - { - "before": "these past few years

", - "after": "these past few years.

" - }, - { - "before": "Focus Memorize.", - "after": "Focus. Memorize." - }, - { - "before": "The Entity slowed", - "after": "The entity slowed" - } - ], - "https://parahumans.wordpress.com/2013/08/13/extinction-27-1/": [ - { - "before": "East", - "after": "east" - } - ], - "https://parahumans.wordpress.com/2013/08/17/extinction-27-2/": [ - { - "before": "unruffled He", - "after": "unruffled. He" - }, - { - "before": "very, likely", - "after": "very likely" - }, - { - "before": "is,” Defiant commented. “Exactly", - "after": "is,” Defiant commented, “exactly" - }, - { - "before": "Besides,” Tattletale said. “The", - "after": "Besides,” Tattletale said, “the" - }, - { - "before": "shift position

", - "after": "shift position.

" - } - ], - "https://parahumans.wordpress.com/2013/08/20/extinction-27-3/": [ - { - "before": "guess,” Sophia said. “You", - "after": "guess,” Sophia said, “you" - }, - { - "before": "“Maybe,” I said “But", - "after": "“Maybe,” I said. “But" - } - ], - "https://parahumans.wordpress.com/2013/08/24/extinction-27-5/": [ - { - "before": "around around", - "after": "and around" - }, - { - "before": "His transformations", - "after": "His transformations" - }, - { - "before": "somethign", - "after": "something" - }, - { - "before": "surface Just the", - "after": "surface. Just the" - }, - { - "before": "three birdcage capes", - "after": "three Birdcage capes" - } - ], - "https://parahumans.wordpress.com/2013/08/27/interlude-27/": [ - { - "before": "chain reaction of loses", - "after": "chain reaction of losses" - }, - { - "before": "Weavers", - "after": "Weaver’s" - }, - { - "before": "Contessa’s power.", - "after": "Contessa’s power." - } - ], - "https://parahumans.wordpress.com/2013/08/31/cockroaches-28-1/": [ - { - "before": "“No, I said.", - "after": "“No,” I said." - }, - { - "before": "could save issue", - "after": "could say issue" - }, - { - "before": "Well,” she said. “They’re", - "after": "Well,” she said, “they’re" - } - ], - "https://parahumans.wordpress.com/2013/09/03/cockroaches-28-2/": [ - { - "before": "Next 12 of 32 additional windows.", - "after": "Next 12 of 32 additional windows." - }, - { - "before": "—But no", - "after": "—but no" - }, - { - "before": "Rogue girl", - "after": "rogue girl" - }, - { - "before": "process,” Tattletale added. “You", - "after": "process,” Tattletale added, “you" - }, - { - "before": "aside,” Imp said. “I’m", - "after": "aside,” Imp said, “I’m" - }, - { - "before": "thing,” Imp commented. “That’s", - "after": "thing,” Imp commented, “that’s" - } - ], - "https://parahumans.wordpress.com/2013/09/05/cockroaches-28-3/": [ - { - "before": "is,” Tattletale said. “I", - "after": "is,” Tattletale said, “I" - } - ], - "https://parahumans.wordpress.com/2013/09/07/cockroaches-28-4/": [ - { - "before": "if you could, but that", - "after": "if you could, that" - }, - { - "before": "No reaction from Tattletale", - "after": "No reaction from the Simurgh" - }, - { - "before": "One hundred and eighty integers", - "after": "One hundred and eighty integers" - }, - { - "before": "powers,” Defiant said. “Without", - "after": "powers,” Defiant said, “without" - }, - { - "before": "Somehow,” Imp commented. “This", - "after": "Somehow,” Imp commented, “this" - } - ], - "https://parahumans.wordpress.com/2013/09/10/cockroaches-28-5/": [ - { - "before": "I’m not? Fuck. There’s", - "after": "I’m not? Fuck. There’s" - }, - { - "before": "‘I don’t know,”", - "after": "“I don’t know,”" - }, - { - "before": "I suspect It’s a", - "after": "I suspect it’s a" - }, - { - "before": "reality,” Tattletale said. “What’s", - "after": "reality,” Tattletale said, “what’s" - }, - { - "before": "question,” I said. “Is", - "after": "question,” I said, “is" - } - ], - "https://parahumans.wordpress.com/2013/09/14/cockroaches-28-6/": [ - { - "before": "means,” Glenn said. “I", - "after": "means,” Glenn said, “I" - }, - { - "before": "be,” Glenn said. “Accept", - "after": "be,” Glenn said, “accept" - }, - { - "before": "beginning of the movie, or or says", - "after": "beginning of the movie, or says" - } - ], - "https://parahumans.wordpress.com/2013/09/17/interlude-28/": [ - { - "before": "than,” Revel paused. “Six", - "after": "than,” Revel paused, “six" - }, - { - "before": "willingly,” Weld said. “Before", - "after": "willingly,” Weld said, “before" - }, - { - "before": "onto the phone. seven point font", - "after": "onto the phone. Seven point font" - } - ], - "https://parahumans.wordpress.com/2013/09/19/venom-29-1/": [ - { - "before": "blow dr. baby-talk’s mind", - "after": "blow Doctor Baby-talk’s mind" - }, - { - "before": "whoever Dr. baby-talk is", - "after": "whoever Doctor Baby-talk is" - }, - { - "before": "look for doctor baby-talk", - "after": "look for Doctor Baby-talk" - }, - { - "before": "Actually,” Tecton said. “Nothing’s", - "after": "Actually,” Tecton said, “nothing’s" - }, - { - "before": "Eastern standard time", - "after": "Eastern Standard Time" - }, - { - "before": "Master class cape", - "after": "master-class cape" - } - ], - "https://parahumans.wordpress.com/2013/09/21/venom-29-2/": [ - { - "before": "look for babytalk", - "after": "look for Baby-talk" - }, - { - "before": "Once the bead was in place, every bullet hit.", - "after": "Once the bead was in place, every bullet hit." - } - ], - "https://parahumans.wordpress.com/2013/09/24/venom-29-3/": [ - { - "before": "Weld? No.", - "after": "Weld? No." - }, - { - "before": "helps,” Legend said. “I", - "after": "helps,” Legend said, “I" - } - ], - "https://parahumans.wordpress.com/2013/09/26/venom-29-4/": [ - { - "before": "here!” Someone called", - "after": "here!” someone called" - }, - { - "before": "“Pretty guy’s", - "after": "“Pretty guy’s" - }, - { - "before": "Nobody there, in Satyrical’s", - "after": "Nobody there in Satyrical’s" - }, - { - "before": "helps,” I said. “I’m", - "after": "helps,” I said, “I’m" - } - ], - "https://parahumans.wordpress.com/2013/09/28/venom-29-5/": [ - { - "before": "Losing you as you get further down.”", - "after": "Losing you as you get further down.”" - }, - { - "before": "before went and", - "after": "before he went and" - } - ], - "https://parahumans.wordpress.com/2013/10/01/venom-29-6/": [ - { - "before": "the doormaker", - "after": "the Doormaker" - }, - { - "before": "be,” I said. “Scion’s", - "after": "be,” I said, “Scion’s" - } - ], - "https://parahumans.wordpress.com/2013/10/03/venom-29-7/": [ - { - "before": "this,” I said. “I", - "after": "this,” I said, “I" - }, - { - "before": "Second Triggers", - "after": "Second triggers" - } - ], - "https://parahumans.wordpress.com/2013/10/05/venom-29-8/": [ - { - "before": "images an artist’s sketchpad", - "after": "images of an artist’s sketchpad" - } - ], - "https://parahumans.wordpress.com/2013/10/08/venom-29-9/": [ - { - "before": "eyeless clairvoyant", - "after": "eyeless Clairvoyant" - }, - { - "before": "thing,” I said. “Was", - "after": "thing,” I said, “was" - }, - { - "before": "by Golem’s bindings

", - "after": "by Golem’s bindings.

" - }, - { - "before": "have time to react. the light detonated", - "after": "have time to react. The light detonated" - } - ], - "https://parahumans.wordpress.com/2013/10/12/interlude-29/": [ - { - "before": "the host’s natures", - "after": "the hosts’ natures" - }, - { - "before": "panting for breath. the wound at his", - "after": "panting for breath. The wound at his" - }, - { - "before": "appeared behind her A man with yellow skin", - "after": "appeared behind her. A man with yellow skin" - } - ], - "https://parahumans.wordpress.com/2013/10/15/speck-30-1/": [ - { - "before": "What did I do?", - "after": "What did I do?" - } - ], - "https://parahumans.wordpress.com/2013/10/17/speck-30-2/": [ - { - "before": "‘lowed to do that, ‘miright", - "after": "’lowed to do that, ’miright" - }, - { - "before": "hard, don’t you
?", - "after": "hard, don’t you?
" - }, - { - "before": "Ladies!” One called", - "after": "Ladies!” one called" - }, - { - "before": "Stranger and Master", - "after": "Stranger and master" - } - ], - "https://parahumans.wordpress.com/2013/10/19/speck-30-3/": [ - { - "before": "She’s—You’re looking in", - "after": "She’s— You’re looking in" - }, - { - "before": "anyone alleged with", - "after": "anyone allied with" - }, - { - "before": "coordinating two teams
.", - "after": "coordinating two teams.
" - }, - { - "before": "undecision", - "after": "indecision" - } - ], - "https://parahumans.wordpress.com/2013/10/22/speck-30-4/": [ - { - "before": "I don’t—I can’t", - "after": "I don’t— I can’t" - }, - { - "before": "Was that—Was it", - "after": "Was that— Was it" - }, - { - "before": "It would—would have", - "after": "It would— would have" - }, - { - "before": "Eastern seaboard", - "after": "Eastern Seaboard" - } - ], - "https://parahumans.wordpress.com/2013/10/24/speck-30-5/": [ - { - "before": "clin—the clincher", - "after": "clin— the clincher" - }, - { - "before": "Have to—have to", - "after": "Have to— Have to" - }, - { - "before": "He—he lost", - "after": "He— He lost" - }, - { - "before": "that—Let’s go", - "after": "that— Let’s go" - }, - { - "before": "I just—I needed", - "after": "I just— I needed" - }, - { - "before": "Same strat—strat—same", - "after": "Same strat— strat— same" - }, - { - "before": "Wha—what?", - "after": "Wha— what?" - }, - { - "before": "You still—you still", - "after": "You still— You stil" - }, - { - "before": "This—this is the", - "after": "This— This is the" - }, - { - "before": "all alo—alone", - "after": "all alo— alone" - }, - { - "before": "S-s-sen—Sentiment?", - "after": "S-s-sen— Sentiment?" - }, - { - "before": "le—let me", - "after": "le— let me" - }, - { - "before": "wan—wants", - "after": "wan— wants" - }, - { - "before": "woul—wouldn’t work a—anyways. N—no use", - "after": "woul— wouldn’t work a— anyways. N-no use" - }, - { - "before": "Need—need—need—need—", - "after": "Need— need— need— need—" - }, - { - "before": "Need—need—", - "after": "Need— need—" - }, - { - "before": "Think—think", - "after": "Think— think" - }, - { - "before": "It—it’s", - "after": "It— it’s" - }, - { - "before": "not—not", - "after": "not— not" - }, - { - "before": "Sl—sl—", - "after": "Sl-sl—" - }, - { - "before": "I’d pretty much but there", - "after": "I’d pretty much ???, but there" - }, - { - "before": "gun build", - "after": "gun built" - }, - { - "before": "I revoked my control over her, leaving in in the middle", - "after": "I revoked my control over her, leaving her in the middle" - }, - { - "before": "suffered for", - "after": "suffered from" - } - ], - "https://parahumans.wordpress.com/2013/10/26/speck-30-6/": [ - { - "before": "frat—fratern—clubs", - "after": "frat— fratern— clubs" - }, - { - "before": "Glaistig U—the Faerie Queen", - "after": "Glaistig U— the Faerie Queen" - }, - { - "before": "Strip—stripping flesh", - "after": "Strip— Stripping flesh" - }, - { - "before": "Dis—Dissonance", - "after": "Dis— Dissonance" - }, - { - "before": "com-comf—why did it", - "after": "com— comf— why did it" - }, - { - "before": "Needed—needed to", - "after": "Needed— Needed to" - }, - { - "before": "into h—her pet", - "after": "into h-her pet" - }, - { - "before": "chan-chann—station to", - "after": "chan— chann— station to" - }, - { - "before": "Mm-m—my", - "after": "Mm-m-my" - }, - { - "before": "resulting crater that compared with", - "after": "resulting crater compared with" - }, - { - "before": "on the other earth", - "after": "on the other Earth" - }, - { - "before": "name? did it start", - "after": "name? Did it start" - } - ], - "https://parahumans.wordpress.com/2013/10/29/30-7/": [ - { - "before": "Con—conflict.", - "after": "Con— Conflict." - }, - { - "before": "That singing—Singing", - "after": "That singing— Singing" - }, - { - "before": "wasn’t the—wasn’t the", - "after": "wasn’t the— wasn’t the" - }, - { - "before": "I was—it was", - "after": "I was— It was" - }, - { - "before": "other two—I recognized", - "after": "other two— I recognized" - }, - { - "before": "W-wwha—ddo", - "after": "W-wwha— ddo" - }, - { - "before": "Don’t—don’t regret", - "after": "Don’t— Don’t regret" - }, - { - "before": "Was—had to", - "after": "Was— Had to" - }, - { - "before": "s—so very small", - "after": "s-so very small" - }, - { - "before": "“Yes,’ I", - "after": "“Yes,” I" - }, - { - "before": "against me. it would be idiotic", - "after": "against me. It would be idiotic" - }, - { - "before": "hand as he talked. he pointed to me", - "after": "hand as he talked. He pointed to me" - } - ], - "https://parahumans.wordpress.com/2013/11/02/teneral-e-1/": [ - { - "before": "stories,” Riley said. “The", - "after": "stories,” Riley said, “the" - }, - { - "before": "day to day, minute-to-minute existence", - "after": "day-to-day, minute-to-minute existence" - } - ], - "https://parahumans.wordpress.com/2013/11/05/teneral-e-2/": [ - { - "before": "property of Nero", - "after": "property of Nero" - }, - { - "before": "Nero, Why don’t we get", - "after": "Nero, why don’t we get" - }, - { - "before": "ms. ‘Unresolved’", - "after": "Ms. ‘Unresolved’" - }, - { - "before": "Capiche?", - "after": "Capiche?" - }, - { - "before": "up—", - "after": "up—" - }, - { - "before": "case,” Imp said. “I’m", - "after": "case,” Imp said, “I’m" - } - ], - "https://parahumans.wordpress.com/2013/11/09/teneral-e-3/": [ - { - "before": "vageuly", - "after": "vaguely" - }, - { - "before": "minutes passed. the chance rose", - "after": "minutes passed. The chance rose" - }, - { - "before": "Collin", - "after": "Colin" - }, - { - "before": "systems teacher had", - "after": "systems Teacher had" - } - ], - "https://parahumans.wordpress.com/2013/11/12/teneral-e-4/": [ - { - "before": "The Foxhound", - "after": "The foxhound" - }, - { - "before": "articulated", - "after": "articulated" - }, - { - "before": "—Batshit", - "after": "—batshit" - }, - { - "before": "—Problematic", - "after": "—problematic" - }, - { - "before": "balconies and rooftops. hazards", - "after": "balconies and rooftops. Hazards" - }, - { - "before": "another tree stood. with a glimpse", - "after": "another tree stood, with a glimpse" - } - ], - "https://parahumans.wordpress.com/2013/11/16/teneral-e-5/": [ - { - "before": "and His flesh began", - "after": "and his flesh began" - }, - { - "before": "background of his mind

", - "after": "background of his mind.

" - }, - { - "before": "boyfriends are my ex-boyfriends", - "after": "boyfriends are my ex-boyfriends" - }, - { - "before": "that ‘because I can’t isn’t an", - "after": "that ‘because I can’ isn’t an" - } - ], - "https://parahumans.wordpress.com/2013/11/19/interlude-end/": [ - { - "before": "Imp:I’ve", - "after": "Imp: I’ve" - }, - { - "before": "Tattletale:
\nwaiting?", - "after": "Tattletale: waiting?" - }, - { - "before": "Please, If you", - "after": "Please, if you" - }, - { - "before": "ten—thousandth", - "after": "ten-thousandth" - }, - { - "before": "Don’t—Don’t worry", - "after": "Don’t— Don’t worry" - }, - { - "before": "“Powers?”", - "after": "“powers?”" - }, - { - "before": "Embarrassed ‘self on", - "after": "Embarrassed ’self on" - }, - { - "before": "Hav—haven’t gotten", - "after": "Hav— Haven’t gotten" - }, - { - "before": "since y—since my", - "after": "since y— since my" - }, - { - "before": "I don’t—I—", - "after": "I don’t— I—" - }, - { - "before": "Y—you", - "after": "Y-you" - }, - { - "before": "I—I picked", - "after": "I— I picked" - }, - { - "before": "I’m—I was a", - "after": "I’m— I was a" - }, - { - "before": "I—I’m your daughter", - "after": "I— I’m your daughter" - }, - { - "before": "And,” Tattletale said. “Worthy", - "after": "And,” Tattletale said, “worthy" - }, - { - "before": "think,” Annette said. “You", - "after": "think,” Annette said, “you" - }, - { - "before": "so,” Annette said. “I", - "after": "so,” Annette said, “I" - } - ], - "https://www.parahumans.net/2017/10/21/glow-worm-0-1/": [ - { - "before": "

Ward is the second work in the Parahumans series, and reading Worm first is strongly recommended. A lot of this won’t make sense otherwise and if you do find yourself a fan of the universe, the spoilers in Ward will affect the reading of the other work.

\n

Ward is not recommended for young or sensitive readers.

\n

The Glow-worm chapters were a teaser event leading up to Worm 2. They aren’t required reading but offer flavor and additional angles by which to view certain characters. They take the form of forum posts, chat conversations and emails.

\n

They’re best described as a kind of a post-epilogue, pseudo-prologue bridge between the series. Those who read them on the Worm site shouldn’t feel the need to read them again—they’re included here for convenience’s sake, with a few readability improvements.

\n

If you’re not interested or find this hard to read, click here to jump to chapter 1.

\n

\n", - "after": "", - "_comment": "This is out of place in an ebook." - } - ], - "https://www.parahumans.net/2017/09/11/daybreak-1-1/": [ - { - "before": "

Ward is the second work in the Parahumans series, and reading Worm first is strongly recommended. A lot of this won’t make sense otherwise and if you do find yourself a fan of the universe, the spoilers in Ward will affect the reading of the other work.

\n

Ward is not recommended for young or sensitive readers.

\n

\n", - "after": "", - "_comment": "This is out of place in an ebook." - } - ], - "https://www.parahumans.net/2017/11/21/daybreak-1-4/": [ - { - "before": "blunt instrument-I saw the", - "after": "blunt instrument—I saw the" - } - ], - "https://www.parahumans.net/2017/11/28/daybreak-1-6/": [ - { - "before": "To dad being", - "after": "To Dad being" - }, - { - "before": "and mom being business", - "after": "and Mom being business" - } - ], - "https://www.parahumans.net/2017/11/30/daybreak-1-7/": [ - { - "before": "How do you even think rec—how do you think", - "after": "How do you even think rec— How do you think" - }, - { - "before": "built in protections", - "after": "built-in protections" - } - ], - "https://www.parahumans.net/2017/12/01/daybreak-1-8/": [ - { - "before": "parahumans online", - "after": "Parahumans Online" - }, - { - "before": "Glitzglam *New Message*: I", - "after": "Glitzglam *New Message*: I" - }, - { - "before": "

Glitzglam *New Message*: i can field them
", - "after": "

Glitzglam *New Message*: i can field them
" - }, - { - "before": "

Point_Me_@_The_Sky: S’okay.
", - "after": "

Point_Me_@_The_Sky: S’okay.
" - }, - { - "before": "Glitzglam *New Message*: ", - "after": "Glitzglam *New Message*: " - }, - { - "before": "day to day life", - "after": "day-to-day life" - } - ], - "https://www.parahumans.net/2017/12/09/flare-2-1/": [ - { - "before": "Some is mom and dad’s", - "after": "Some is Mom and Dad’s" - } - ], - "https://www.parahumans.net/2017/12/12/flare-2-2/": [ - { - "before": "-Victoria", - "after": "—Victoria" - } - ], - "https://www.parahumans.net/2017/12/16/flare-2-3/": [ - { - "before": "two—piece", - "after": "two-piece" - }, - { - "before": "want to think about mom", - "after": "want to think about Mom" - }, - { - "before": "the floor. the armband landed", - "after": "the floor. The armband landed" - } - ], - "https://www.parahumans.net/2017/12/23/flare-2-5/": [ - { - "before": "Swearing is fine In moderation", - "after": "Swearing is fine in moderation" - }, - { - "before": "If you study Parahumans", - "after": "If you study parahumans" - }, - { - "before": "—And a few interesting and", - "after": "—and a few interesting and" - }, - { - "before": "make it it feel any less painful", - "after": "make it feel any less painful" - } - ], - "https://www.parahumans.net/2017/12/26/flare-2-6/": [ - { - "before": "—Then maybe we avoid having", - "after": "—then maybe we avoid having" - }, - { - "before": "She huffed out out a small", - "after": "She huffed out a small" - }, - { - "before": "a built in glare", - "after": "a built-in glare" - } - ], - "https://www.parahumans.net/2017/12/30/flare-2-7/": [ - { - "before": "hooked on the the stacked plastic", - "after": "hooked on the stacked plastic" - }, - { - "before": "time with the the", - "after": "time with the" - } - ], - "https://www.parahumans.net/2018/01/02/flare-interlude-2/": [ - { - "before": "saying all of that that, he would", - "after": "saying all of that, he would" - } - ], - "https://www.parahumans.net/2018/01/09/glare-3-2/": [ - { - "before": "under—and over-growth", - "after": "under- and overgrowth" - }, - { - "before": "Tristan, “You should take", - "after": "Tristan, “you should take" - }, - { - "before": "to start with. it’s delicate enough", - "after": "to start with. It’s delicate enough" - } - ], - "https://www.parahumans.net/2018/01/13/glare-3-3/": [ - { - "before": "my flight toward toward Tristan", - "after": "my flight toward Tristan" - }, - { - "before": "“Spooky,” Sveta said.”I expected", - "after": "“Spooky,” Sveta said. “I expected" - } - ], - "https://www.parahumans.net/2018/01/16/glare-3-4/": [ - { - "before": "“Absolutely,’ I said", - "after": "“Absolutely,” I said" - } - ], - "https://www.parahumans.net/2018/01/20/glare-3-5/": [ - { - "before": "What mom did, I was pretty", - "after": "What Mom did, I was pretty" - }, - { - "before": "you let yourself believe mom’s words", - "after": "you let yourself believe Mom’s words" - }, - { - "before": "You mean mom", - "after": "You mean Mom" - }, - { - "before": "say I’m just like mom again", - "after": "say I’m just like Mom again" - } - ], - "https://www.parahumans.net/2018/01/23/glare-3-6/": [ - { - "before": "I had a conversation with dad last night", - "after": "I had a conversation with Dad last night" - }, - { - "before": "Bye mom", - "after": "Bye Mom" - } - ], - "https://www.parahumans.net/2018/01/25/glare-interlude-3/": [ - { - "before": "much like the the machines", - "after": "much like the machines" - } - ], - "https://www.parahumans.net/2018/01/30/shade-4-2/": [ - { - "before": "one earth", - "after": "one Earth" - } - ], - "https://www.parahumans.net/2018/02/03/shade-4-3/": [ - { - "before": "ex-birdcage", - "after": "ex-Birdcage" - }, - { - "before": "Just—I need this,", - "after": "Just— I need this," - } - ], - "https://www.parahumans.net/2018/02/06/shade-interlude-4a/": [ - { - "before": "You know ‘em", - "after": "You know ’em" - }, - { - "before": "dangerous?” The recluse asked", - "after": "dangerous?” the recluse asked" - }, - { - "before": "Stop. Please.", - "after": "Stop. Please." - }, - { - "before": "his Aunt would say", - "after": "his aunt would say" - } - ], - "https://www.parahumans.net/2018/02/08/shade-4-4/": [ - { - "before": "build Teleporters", - "after": "build teleporters" - } - ], - "https://www.parahumans.net/2018/02/10/shade-4-5/": [ - { - "before": "Average Ash Walk Time:—1:13", - "after": "Average Ash Walk Time: −1:13" - } - ], - "https://www.parahumans.net/2018/02/13/shade-interlude-4b/": [ - { - "before": "it was just dad and me", - "after": "it was just Dad and me" - }, - { - "before": "that’s who mom and dad are", - "after": "that’s who Mom and Dad are" - }, - { - "before": "but when mom had cancer", - "after": "but when Mom had cancer" - } - ], - "https://www.parahumans.net/2018/02/17/shade-4-6/": [ - { - "before": "mom’s verdict was", - "after": "Mom’s verdict was" - }, - { - "before": "as you walk. or blurry light", - "after": "as you walk. Or blurry light" - } - ], - "https://www.parahumans.net/2018/02/20/shade-4-7/": [ - { - "before": "Mom and dad were looking", - "after": "Mom and Dad were looking" - }, - { - "before": "‘Won’t", - "after": "‘Won’t" - } - ], - "https://www.parahumans.net/2018/02/22/shade-interlude-4c/": [ - { - "before": "Yes mom", - "after": "Yes Mom" - }, - { - "before": "last four years and seven months, She’s learned to", - "after": "last four years and seven months, she’s learned to" - }, - { - "before": "It—kind of", - "after": "It— Kind of" - }, - { - "before": "“Cozy,” The side of the", - "after": "“Cozy.” The side of the" - }, - { - "before": "hair he had. it was long", - "after": "hair he had. It was long" - }, - { - "before": "about you and Church", - "after": "about you and church" - } - ], - "https://www.parahumans.net/2018/02/24/shadow-5-1/": [ - { - "before": "thermos of regular tap water

", - "after": "thermos of regular tap water.

" - } - ], - "https://www.parahumans.net/2018/03/06/shadow-5-4/": [ - { - "before": "It’s—My forcefield moves", - "after": "It’s— My forcefield moves" - } - ], - "https://www.parahumans.net/2018/03/10/shadow-5-5/": [ - { - "before": "out of the back, “She still would have", - "after": "out of the back, “she still would have" - } - ], - "https://www.parahumans.net/2018/03/17/shadow-5-6/": [ - { - "before": "have a a specter", - "after": "have a specter" - }, - { - "before": "Spare stuff from dad", - "after": "Spare stuff from Dad" - }, - { - "before": "Peaches and—You mean peachy", - "after": "Peaches and— You mean peachy" - }, - { - "before": "Victoria” she", - "after": "Victoria,” she" - } - ], - "https://www.parahumans.net/2018/03/20/shadow-5-7/": [ - { - "before": "her order.Two boxes", - "after": "her order. Two boxes" - }, - { - "before": "You and dad", - "after": "You and Dad" - }, - { - "before": "Enjoy time with dad", - "after": "Enjoy time with Dad" - }, - { - "before": "it with Kenzie’ stuff", - "after": "it with Kenzie’s stuff" - }, - { - "before": "The convoy continued to disintegrate. The road as the road made its gradual turn", - "after": "The convoy continued to disintegrate as the road made its gradual turn" - } - ], - "https://www.parahumans.net/2018/03/27/shadow-5-10/": [ - { - "before": "our heads. the pupil", - "after": "our heads. The pupil" - }, - { - "before": "forearm and her fingertips. and she stumbled into", - "after": "forearm and her fingertips, and she stumbled into" - }, - { - "before": "and nearby bowled over", - "after": "and nearly bowled over" - }, - { - "before": "There’s—Careful, Victoria.", - "after": "There’s— Careful, Victoria." - }, - { - "before": "Hypnotist Master", - "after": "Hypnotist master" - }, - { - "before": "with Masters in mind", - "after": "with masters in mind" - }, - { - "before": "paralyzed started moving

", - "after": "paralyzed started moving.

" - } - ], - "https://www.parahumans.net/2018/03/31/shadow-5-11/": [ - { - "before": "side of her her chin", - "after": "side of her chin" - }, - { - "before": "Plus my walkman and pocket atari", - "after": "Plus my Walkman and Pocket Atari" - }, - { - "before": "The woman—I turned to look and saw", - "after": "The woman— I turned to look and saw" - }, - { - "before": "Tristan asked.”", - "after": "Tristan asked." - } - ], - "https://www.parahumans.net/2018/04/03/shadow-5-12/": [ - { - "before": "lost my grip on him. and my hand", - "after": "lost my grip on him, and my hand" - }, - { - "before": "Tristan-as Capricorn", - "after": "Tristan-as-Capricorn" - }, - { - "before": "were Masters and strangers", - "after": "were masters and strangers" - }, - { - "before": "or if he said something like ‘You’ or “Everyone’, I could", - "after": "or if he said something like ‘You’ or ‘Everyone’, I could" - }, - { - "before": "rain. and I saw", - "after": "rain. And I saw" - } - ], - "https://www.parahumans.net/2018/04/07/shadow-interlude-5-x/": [ - { - "before": "objectvity", - "after": "objectivity" - }, - { - "before": "“Are the production rates", - "after": "“—are the production rates" - }, - { - "before": "millions—tens of millions- is", - "after": "millions—tens of millions—is" - }, - { - "before": "“—And frankly,” Mr. Nieves said", - "after": "“—and frankly,” Mr. Nieves said" - }, - { - "before": "Because, Balminder,” Kurt said. “You were plausible", - "after": "Because, Balminder,” Kurt said, “you were plausible" - }, - { - "before": "she aid", - "after": "she said" - } - ], - "https://www.parahumans.net/2018/04/10/shadow-interlude-5-y/": [ - { - "before": "Hopefully—I’m hoping she figures out", - "after": "Hopefully— I’m hoping she figures out" - }, - { - "before": "…It’s not so important when", - "after": "…it’s not so important when" - }, - { - "before": "Kiss and Kill.", - "after": "Kiss and kill." - } - ], - "https://www.parahumans.net/2018/04/17/pitch-6-2/": [ - { - "before": "very clear words, only ‘ERIN’ and ‘NO-‘.", - "after": "very clear words, only ‘ERIN’ and ‘NO—’." - }, - { - "before": "The Mcveay’s", - "after": "The McVeays" - } - ], - "https://www.parahumans.net/2018/04/21/pitch-6-3/": [ - { - "before": "wall of bodies. the woman behind", - "after": "wall of bodies. The woman behind" - }, - { - "before": "dying, motherfuckers” the bearded", - "after": "dying, motherfuckers,” the bearded" - } - ], - "https://www.parahumans.net/2018/04/24/pitch-6-4/": [ - { - "before": "glanced back. the others had", - "after": "glanced back. The others had" - }, - { - "before": "Animal Master, likely", - "after": "Animal master, likely" - } - ], - "https://www.parahumans.net/2018/04/28/pitch-6-5/": [ - { - "before": "of material to to bandage", - "after": "of material to bandage" - }, - { - "before": "Cradle said. his tone was", - "after": "Cradle said. His tone was" - }, - { - "before": "“…Multiply the grudge,”", - "after": "“…multiply the grudge,”" - }, - { - "before": "used flight to stead myself", - "after": "used flight to steady myself" - }, - { - "before": "Capes converged, ready to guard

", - "after": "Capes converged, ready to guard.

" - } - ], - "https://www.parahumans.net/2018/05/05/pitch-6-7/": [ - { - "before": "“—And we wanted to ask for your", - "after": "“—and we wanted to ask for your" - }, - { - "before": "while you were bloody—I shouldn’t be", - "after": "while you were bloody— I shouldn’t be" - } - ], - "https://www.parahumans.net/2018/05/08/pitch-6-8/": [ - { - "before": "check in on on Ashley and Rain", - "after": "check in on Ashley and Rain" - }, - { - "before": "earth Shin", - "after": "Earth Shin" - }, - { - "before": "one Jackass said", - "after": "one jackass said" - }, - { - "before": "an Über-neighborhood", - "after": "an uber-neighborhood", - "_comment": "This seems to lose its umlaut in English; see e.g. https://www.dictionary.com/browse/uber. It's certainly not capitalized." - } - ], - "https://www.parahumans.net/2018/05/11/pitch-6-9/": [ - { - "before": "bunch of Jackasses that", - "after": "bunch of jackasses that" - }, - { - "before": "some of the Jackasses", - "after": "some of the jackasses" - }, - { - "before": "one of the Jackasses turned", - "after": "one of the jackasses turned" - }, - { - "before": "The Jackass next to Vince", - "after": "The jackass next to Vince" - }, - { - "before": "couple of the Jackasses’", - "after": "couple of the jackasses" - }, - { - "before": "I could hear her, “I’m trying", - "after": "I could hear her. “I’m trying" - }, - { - "before": "all-hands on deck", - "after": "all-hands-on-deck" - }, - { - "before": "the Junior Captain said", - "after": "the junior captain said" - } - ], - "https://www.parahumans.net/2018/05/15/torch-7-1/": [ - { - "before": "got to go to Church", - "after": "got to go to church" - } - ], - "https://www.parahumans.net/2018/05/19/torch-7-2/": [ - { - "before": "you had to deal with with could have", - "after": "you had to deal with could have" - }, - { - "before": "—And from other horrors.", - "after": "—and from other horrors." - } - ], - "https://www.parahumans.net/2018/05/22/torch-7-3/": [ - { - "before": "by saying,”Isn’t it a rule", - "after": "by saying, “Isn’t it a rule" - } - ], - "https://www.parahumans.net/2018/05/26/torch-7-4/": [ - { - "before": "

", - "after": "", - "_comment": "This appears to be intentional, but it just duplicates the Next Chapter link (i.e. turning the page in the ebook), so we remove it" - }, - { - "before": "those hectic days after dad’s head injury", - "after": "those hectic days after Dad’s head injury" - }, - { - "before": "no Master pets", - "after": "no master pets" - }, - { - "before": "day to day basis", - "after": "day-to-day basis" - } - ], - "https://www.parahumans.net/2018/05/26/eclipse-x-1/": [ - { - "before": "the hole in the floor and the pieces of dad", - "after": "the hole in the floor and the pieces of Dad" - }, - { - "before": "Past what was left of mom", - "after": "Past what was left of Mom" - } - ], - "https://www.parahumans.net/2018/05/27/eclipse-x-2/": [ - { - "before": "because she she was caught", - "after": "because she was caught" - }, - { - "before": "answer the the second question", - "after": "answer the second question" - }, - { - "before": "discuss goals,” Jessica said. “We think", - "after": "discuss goals,” Jessica said, “we think" - } - ], - "https://www.parahumans.net/2018/05/30/eclipse-x-5/": [ - { - "before": "no words. and there", - "after": "no words. And there" - }, - { - "before": "hesitated to long", - "after": "hesitated too long" - }, - { - "before": "back.,", - "after": "back," - }, - { - "before": "Wardens’ ID badges", - "after": "Wardens ID badges" - } - ], - "https://www.parahumans.net/2018/05/31/eclipse-x-6/": [ - { - "before": "a desperate edge to her feelings

", - "after": "a desperate edge to her feelings.

" - }, - { - "before": "—To need at least three if", - "after": "—to need at least three if" - }, - { - "before": "We—if you stop and", - "after": "We— If you stop and" - }, - { - "before": "…We’re not especially", - "after": "…we’re not especially" - } - ], - "https://www.parahumans.net/2018/06/01/eclipse-x-7/": [ - { - "before": "dotting the ‘i’s and slashing the ‘Q’s

", - "after": "dotting the ‘i’s and slashing the ‘Q’s.

" - }, - { - "before": "—And they have thinkers", - "after": "—and they have thinkers" - }, - { - "before": "You’re leaving Boston?", - "after": "You’re leaving Boston?" - }, - { - "before": "—Assign her house arrest", - "after": "—assign her house arrest" - }, - { - "before": "Mr… Chief Armstrong", - "after": "Mr.… Chief Armstrong" - }, - { - "before": "The there were monsters out there", - "after": "That there were monsters out there" - }, - { - "before": "“I’m not—I wasn’t—”", - "after": "“I’m not— I wasn’t—”" - } - ], - "https://www.parahumans.net/2018/06/02/eclipse-x-8/": [ - { - "before": "Bonesaw” Blasto said", - "after": "Bonesaw,” Blasto said" - }, - { - "before": "“Well,” Fappy said. “You know Stan,", - "after": "“Well,” Fappy said, “you know Stan," - }, - { - "before": "it or not,” Jack said. “I want", - "after": "it or not,” Jack said, “I want" - } - ], - "https://www.parahumans.net/2018/06/05/torch-7-5/": [ - { - "before": "

\n

I don’t", - "after": "

I don’t" - }, - { - "before": "Chris snorted, “Count yourself lucky.", - "after": "Chris snorted. “Count yourself lucky." - }, - { - "before": "was your crush Jhett Marion?", - "after": "was your crush Jhett Marion?" - }, - { - "before": "thing aside,” I said. “I mean", - "after": "thing aside,” I said, “I mean" - }, - { - "before": "Fifty…seven", - "after": "Fifty… seven" - }, - { - "before": "brass capped", - "after": "brass-capped" - } - ], - "https://www.parahumans.net/2018/06/09/torch-7-6/": [ - { - "before": "I saw. the scans of the woman", - "after": "I saw. The scans of the woman" - }, - { - "before": "the woman withw the sunglasses", - "after": "the woman with the sunglasses" - } - ], - "https://www.parahumans.net/2018/06/12/torch-7-7/": [ - { - "before": "and I can call dad", - "after": "and I can call Dad" - }, - { - "before": "five by three inch", - "after": "five-by-three inch" - }, - { - "before": "staying calm, her voice quieter, “Said your", - "after": "staying calm, her voice quieter, “said your" - } - ], - "https://www.parahumans.net/2018/06/16/torch-7-8/": [ - { - "before": "you asked him,” Sveta said. “He’d say", - "after": "you asked him,” Sveta said, “he’d say" - }, - { - "before": "Looksee, You mentioned", - "after": "Looksee, you mentioned" - } - ], - "https://www.parahumans.net/2018/06/19/torch-7-9/": [ - { - "before": "abused by the the transition", - "after": "abused by the transition" - }, - { - "before": "poking around” I said", - "after": "poking around,” I said" - }, - { - "before": "Loss as he said it, “Because", - "after": "Loss as he said it, “because" - } - ], - "https://www.parahumans.net/2018/06/23/torch-7-10/": [ - { - "before": "black with a a shaved", - "after": "black with a shaved" - }, - { - "before": "Kenzie almost yipped out out a, “No.”", - "after": "Kenzie almost yipped out, a “No.”" - }, - { - "before": "thought things through mid-sentence, “Is that for", - "after": "thought things through mid-sentence, “is that for" - }, - { - "before": "he goes to Church with them", - "after": "he goes to church with them" - }, - { - "before": "maybe,” She said, smiling", - "after": "maybe,” she said, smiling" - }, - { - "before": "fighting, ‘rene", - "after": "fighting, ’rene" - }, - { - "before": "I studied Parahumans before", - "after": "I studied parahumans before" - } - ], - "https://www.parahumans.net/2018/06/26/torch-interlude-7-x/": [ - { - "before": "Mom and dad were still at the table", - "after": "Mom and Dad were still at the table" - }, - { - "before": "new counter and sink mom and dad had put in", - "after": "new counter and sink Mom and Dad had put in" - }, - { - "before": "mom set down the plates for dad and then herself", - "after": "Mom set down the plates for Dad and then herself" - }, - { - "before": "“Eat,” dad said", - "after": "“Eat,” Dad said" - }, - { - "before": "she gave the bathroom what mom called a once-over", - "after": "she gave the bathroom what Mom called a once-over" - }, - { - "before": "say or do when mom got like this", - "after": "say or do when Mom got like this" - }, - { - "before": "cooked for me,” mom said", - "after": "cooked for me,” Mom said" - }, - { - "before": "of her bag. only one temporary tattoo", - "after": "of her bag. Only one temporary tattoo" - }, - { - "before": "loved—loved- for my", - "after": "loved—loved—for my" - }, - { - "before": "pitched to be heard, “But her antics", - "after": "pitched to be heard, “but her antics" - }, - { - "before": "—Really truly, I hope", - "after": "—really truly, I hope" - }, - { - "before": "big guy said, “Is our mood", - "after": "big guy said, “is our mood" - }, - { - "before": "thing we try to do,” he said. “Is we ask", - "after": "thing we try to do,” he said, “is we ask" - }, - { - "before": "Keith said. “You decide", - "after": "Keith said, “you decide" - } - ], - "https://www.parahumans.net/2018/07/03/beacon-8-1/": [ - { - "before": "a group of minors,” Dragon said. “Allow others", - "after": "a group of minors,” Dragon said, “allow others" - }, - { - "before": "day to day basis", - "after": "day-to-day basis" - } - ], - "https://www.parahumans.net/2018/07/07/beacon-8-2/": [ - { - "before": "

Mom and dad.

", - "after": "

Mom and Dad.

" - }, - { - "before": "Missisipi", - "after": "Mississippi" - }, - { - "before": "dragoncraft", - "after": "Dragon-craft" - } - ], - "https://www.parahumans.net/2018/07/10/beacon-8-3/": [ - { - "before": "It’s—I can’t talk to Byron", - "after": "It’s— I can’t talk to Byron" - }, - { - "before": "emergency, we’re capes, Cryptid said", - "after": "emergency, we’re capes,” Cryptid said" - }, - { - "before": "one or two more fallen", - "after": "one or two more Fallen" - } - ], - "https://www.parahumans.net/2018/07/14/beacon-8-4/": [ - { - "before": "use their surveillance” Kenzie said", - "after": "use their surveillance,” Kenzie said" - }, - { - "before": "and then hit buttons

", - "after": "and then hit buttons.

" - }, - { - "before": "I think it’s done", - "after": "I think it’s done" - } - ], - "https://www.parahumans.net/2018/07/17/beacon-8-5/": [ - { - "before": "on the offensive. chains whirled", - "after": "on the offensive. Chains whirled" - }, - { - "before": "a bit hit to morale", - "after": "a big hit to morale" - }, - { - "before": "mask was only a B-", - "after": "mask was only a B−" - }, - { - "before": "Nothing about it was even B-.", - "after": "Nothing about it was even B−." - } - ], - "https://www.parahumans.net/2018/07/21/beacon-8-6/": [ - { - "before": "unfolded umbrella.A metal", - "after": "unfolded umbrella. A metal" - }, - { - "before": "above me. the sky was dark", - "after": "above me. The sky was dark" - }, - { - "before": "she thrwe out a hand", - "after": "she threw out a hand" - }, - { - "before": "corner them,” I said. “They’ll threaten civilians", - "after": "corner them,” I said, “they’ll threaten civilians" - }, - { - "before": "reminiscent of a certain teenage boy-was cast in", - "after": "reminiscent of a certain teenage boy—was cast in" - }, - { - "before": "Errors influence", - "after": "Error’s influence" - } - ], - "https://www.parahumans.net/2018/07/24/beacon-8-7/": [ - { - "before": "Ashley’s activities therin", - "after": "Ashley’s activities therein" - } - ], - "https://www.parahumans.net/2018/07/28/beacon-8-8/": [ - { - "before": "“Yeah, that’s breaker” I said.", - "after": "“Yeah, that’s breaker,” I said." - } - ], - "https://www.parahumans.net/2018/07/31/beacon-8-9/": [ - { - "before": "you know that dad and I saying", - "after": "you know that Dad and I saying" - }, - { - "before": "was impatient. it was hard to tell", - "after": "was impatient. It was hard to tell" - }, - { - "before": "“Is—Yes,” I finished", - "after": "“Is— Yes,” I finished" - } - ], - "https://www.parahumans.net/2018/08/04/beacon-8-10/": [ - { - "before": "I’m supposed to be you?", - "after": "I’m supposed to be you?" - }, - { - "before": "She had her Eyehook", - "after": "She had her eyehook" - }, - { - "before": "You—I have to imagine you were", - "after": "You— I have to imagine you were" - }, - { - "before": "I don’t—I can hear your mother", - "after": "I don’t— I can hear your mother" - }, - { - "before": "my A—costume with my makeup at an A", - "after": "my A− costume with my makeup at an A" - }, - { - "before": "now my apartment-, three or four minutes", - "after": "now my apartment—three or four minutes" - } - ], - "https://www.parahumans.net/2018/08/07/beacon-8-11/": [ - { - "before": "easy to understand story", - "after": "easy-to-understand story" - } - ], - "https://www.parahumans.net/2018/08/11/beacon-8-12/": [ - { - "before": "who are free now. they’re out there", - "after": "who are free now. They’re out there" - }, - { - "before": "dare you? Hamza barked, again", - "after": "dare you?” Hamza barked, again" - } - ], - "https://www.parahumans.net/2018/08/14/beacon-interlude-8-x/": [ - { - "before": "attention on Natalie, “this is", - "after": "attention on Natalie. “This is" - }, - { - "before": "Natalie’s beetle", - "after": "Natalie’s Beetle" - }, - { - "before": "adam’s apple", - "after": "Adam’s apple" - }, - { - "before": "Time-time for Kenzie", - "after": "Time—time for Kenzie" - } - ], - "https://www.parahumans.net/2018/08/18/beacon-interlude-8-y/": [ - { - "before": "A sufficient impact or distraction

", - "after": "A sufficient impact or distraction.

" - }, - { - "before": "‘Hard Boil.’", - "after": "‘Hard Boil’." - }, - { - "before": "tee-vee", - "after": "TV" - }, - { - "before": "teacher’s power", - "after": "Teacher’s power" - } - ], - "https://www.parahumans.net/2018/08/21/gleaming-9-1/": [ - { - "before": "Probably teacher", - "after": "Probably Teacher" - }, - { - "before": "b-list", - "after": "B-list" - } - ], - "https://www.parahumans.net/2018/08/28/gleaming-9-3/": [ - { - "before": "Chris in the process. stretched on his way", - "after": "Chris in the process. He stretched on his way" - }, - { - "before": "with a strong Master", - "after": "with a strong master" - }, - { - "before": "—But I can’t make concessions", - "after": "—but I can’t make concessions" - }, - { - "before": "too impatient and angry It was worse because", - "after": "too impatient and angry. It was worse because" - }, - { - "before": "what it’s worth,” Tristan said. “Thanks for", - "after": "what it’s worth,” Tristan said, “thanks for" - } - ], - "https://www.parahumans.net/2018/09/01/gleaming-9-4/": [ - { - "before": "Power related", - "after": "Power-related" - } - ], - "https://www.parahumans.net/2018/09/04/gleaming-9-5/": [ - { - "before": "still a voice without confidence", - "after": "Still a voice without confidence" - }, - { - "before": "The only thing that hold him back", - "after": "The only things that hold him back" - } - ], - "https://www.parahumans.net/2018/09/08/gleaming-9-6/": [ - { - "before": "The patrol had done its work", - "after": "The Patrol had done its work" - }, - { - "before": "guard confirmed as Thralls", - "after": "guard confirmed as thralls" - } - ], - "https://www.parahumans.net/2018/09/11/gleaming-9-7/": [ - { - "before": "Byron said. he was at", - "after": "Byron said. He was at" - }, - { - "before": "then teacher can’t", - "after": "then Teacher can’t" - }, - { - "before": "“Who is this?”a strange voice asked", - "after": "“Who is this?” a strange voice asked" - } - ], - "https://www.parahumans.net/2018/09/13/gleaming-interlude-9-x/": [ - { - "before": "he bottles it up. then the bottle cracks", - "after": "he bottles it up. Then the bottle cracks" - }, - { - "before": "that made her her- the shock of white", - "after": "that made her her—the shock of white" - }, - { - "regExp": "their Papa", - "replacement": "their papa" - }, - { - "before": "Mama and papa talk", - "after": "Mama and Papa talk" - }, - { - "before": "injuries,” papa said", - "after": "injuries,” Papa said" - }, - { - "before": "papa’s face", - "after": "Papa’s face" - }, - { - "before": "Selfless?” papa asked", - "after": "Selfless?” Papa asked" - }, - { - "before": "kind of selfie, papa", - "after": "kind of selfie, Papa" - }, - { - "before": "part of that,” papa said", - "after": "part of that,” Papa said" - }, - { - "before": "you,” papa said", - "after": "you,” Papa said" - }, - { - "before": "too, papa,” Tristan said", - "after": "too, Papa,” Tristan said" - }, - { - "before": "worked in rigid. the armor’s", - "after": "worked in rigid. The armor’s" - }, - { - "before": "moving and across to", - "after": "moving across to" - }, - { - "before": "fucking sense!
”", - "after": "fucking sense
!”" - }, - { - "before": "that hurt! Stop!", - "after": "that hurt! Stop!" - }, - { - "before": "it was one thing!", - "after": "It was one thing!" - }, - { - "before": "have backed you up!", - "after": "have backed you up!" - }, - { - "before": "mr. Vaughn", - "after": "Mr. Vaughn" - } - ], - "https://www.parahumans.net/2018/09/15/gleaming-9-8/": [ - { - "before": "

For those who missed it, there was a Thursday update. See the prior chapter.

\n

\n", - "after": "" - }, - { - "before": "Capricorn blue", - "after": "Capricorn Blue" - }, - { - "before": "everything ended, Several of my", - "after": "everything ended, several of my" - }, - { - "before": "you can! You", - "after": "you can! You" - } - ], - "https://www.parahumans.net/2018/09/18/gleaming-9-9/": [ - { - "before": "teacher thrall", - "after": "Teacher thrall" - }, - { - "before": "need to,” I said, because I’m", - "after": "need to,” I said, “because I’m" - }, - { - "before": "keeping the Warden and his deputy", - "after": "keeping the warden and his deputy" - } - ], - "https://www.parahumans.net/2018/09/22/gleaming-interlude-9-y/": [ - { - "before": "you up where you’re
weak? You’re", - "after": "you up where you’re weak? You’re" - }, - { - "before": "for you.", - "after": "for you.
" - } - ], - "https://www.parahumans.net/2018/09/25/gleaming-9-10/": [ - { - "before": "and mom and dad’s rules", - "after": "and Mom and Dad’s rules" - }, - { - "before": "at the balcony. both wore", - "after": "at the balcony. Both wore" - }, - { - "before": "—But Rain and Sveta", - "after": "—but Rain and Sveta" - }, - { - "before": "Cyrstalclear", - "after": "Crystalclear" - }, - { - "before": "He stopped here he was", - "after": "He stopped where he was" - }, - { - "regExp": "Warden", - "replacement": "warden", - "_comment": "This is discussing prison wardens, which is a normal job title" - } - ], - "https://www.parahumans.net/2018/09/29/gleaming-9-11/": [ - { - "before": "two people died. the forcefield went", - "after": "two people died. The forcefield went" - }, - { - "before": "Maybe wrong to think that within", - "after": "Maybe wrong to think that, within" - }, - { - "regExp": "Crock o Shit", - "after": "Crock o’ Shit" - }, - { - "regExp": "the pharmacist", - "replacement": "the Pharmacist", - "_comment": "in the previous chapter, 'the Pharmacist' starts getting capitalized consistently, as if it's a name instead of a profession. Carry it forward." - }, - { - "before": "one hundred and ten-percent", - "after": "one hundred and ten percent" - } - ], - "https://www.parahumans.net/2018/10/02/gleaming-9-12/": [ - { - "before": "teacher hit squad", - "after": "Teacher hit squad" - }, - { - "before": "—You gotta give something", - "after": "—you gotta give something" - }, - { - "before": "the pharmacist", - "after": "the Pharmacist", - "_comment": "See comment in https://www.parahumans.net/2018/09/29/gleaming-9-11/" - } - ], - "https://www.parahumans.net/2018/10/09/gleaming-9-14/": [ - { - "before": "in a fireman carry. with my free hand", - "after": "in a fireman carry. With my free hand" - }, - { - "before": "fucking teacher wouldn’t", - "after": "fucking Teacher wouldn’t" - }, - { - "before": "That the Parahumans were taking over", - "after": "That the parahumans were taking over" - } - ], - "https://www.parahumans.net/2018/10/13/gleaming-9-15/": [ - { - "before": "-fucked in the head.", - "after": "—fucked in the head." - }, - { - "before": "some of the creases. and from the", - "after": "some of the creases, and from the" - }, - { - "before": "Disappointed?", - "after": "Disappointed?" - } - ], - "https://www.parahumans.net/2018/10/16/gleaming-interlude-9-z/": [ - { - "before": "cliff he was was expected", - "after": "cliff he was expected" - }, - { - "before": "told the Warden differed", - "after": "told the warden differed" - }, - { - "before": "assistant Warden", - "after": "assistant warden" - }, - { - "before": "What got into you?", - "after": "What got into you?" - }, - { - "before": "what happens to anyone with powers is near anyone", - "after": "what happens when anyone with powers is near anyone" - } - ], - "https://www.parahumans.net/2018/10/20/gleaming-interlude-9/": [ - { - "before": "Guarderò", - "after": "Guarderò." - }, - { - "before": "one earth’s worth", - "after": "one Earth’s worth" - }, - { - "before": "the adjacent earth", - "after": "the adjacent Earth" - }, - { - "before": "closest earth", - "after": "closest Earth" - }, - { - "before": "of them, “Would be", - "after": "of them, “would be" - }, - { - "before": "finds it’s root", - "after": "finds its root" - } - ], - "https://www.parahumans.net/2018/10/23/polarize-10-1/": [ - { - "before": "You let mom talk and", - "after": "You let Mom talk and" - }, - { - "before": "post-Prison", - "after": "post-prison" - }, - { - "before": "I’m sorry, what? What?", - "after": "I’m sorry, what? What?" - } - ], - "https://www.parahumans.net/2018/10/27/polarize-10-2/": [ - { - "before": "Sveta said, leaning on me

", - "after": "Sveta said, leaning on me.

" - }, - { - "before": "and that part of me is really disappointed", - "after": "And that part of me is really disappointed" - } - ], - "https://www.parahumans.net/2018/10/30/polarize-10-3/": [ - { - "before": "betray-y", - "after": "betray-ey" - } - ], - "https://www.parahumans.net/2018/11/03/polarize-10-4/": [ - { - "before": "services of mercenaries. depending on timing", - "after": "services of mercenaries. Depending on timing" - }, - { - "before": "we should get going", - "after": "We should get going" - }, - { - "before": "finger—and thumb-rings", - "after": "finger- and thumb-rings" - } - ], - "https://www.parahumans.net/2018/11/06/polarize-10-5/": [ - { - "before": "because It’s pertinent to", - "after": "because it’s pertinent to" - }, - { - "before": "bangs said, “They won’t give", - "after": "bangs said, “they won’t give" - } - ], - "https://www.parahumans.net/2018/11/10/polarize-10-6/": [ - { - "before": "Caveat", - "after": "caveat" - } - ], - "https://www.parahumans.net/2018/11/13/polarize-10-7/": [ - { - "before": "your favorite top-
’", - "after": "your favorite top—
’" - }, - { - "before": "-your phone, twice, your banking card-", - "after": "—your phone, twice, your banking card—" - }, - { - "before": "-your pancreas.", - "after": "—your pancreas." - }, - { - "before": "a hair of headphones", - "after": "a pair of headphones" - }, - { - "before": "Shark girl", - "after": "shark girl" - }, - { - "before": "Be safe—Nat.", - "after": "Be safe —Nat." - } - ], - "https://www.parahumans.net/2018/11/17/polarize-10-8/": [ - { - "before": "Sveta said. her hand was removed", - "after": "Sveta said. Her hand was removed" - }, - { - "before": "There were a bag fast food", - "after": "There was a bag of fast food" - }, - { - "before": "anti parahuman", - "after": "anti-parahuman" - } - ], - "https://www.parahumans.net/2018/11/20/polarize-10-9/": [ - { - "before": "confines of the suit. and rearranged herself", - "after": "confines of the suit, and rearranged herself" - }, - { - "before": "Fuck y—of course", - "after": "Fuck y— Of course" - }, - { - "before": "they had Fallen behind", - "after": "they had fallen behind" - } - ], - "https://www.parahumans.net/2018/11/24/interlude-10-x/": [ - { - "before": "that would be in time Hopefully

", - "after": "that would be in time. Hopefully.

" - }, - { - "before": "consisting of two—and three-person", - "after": "consisting of two- and three-person" - }, - { - "before": "Garotte, Hand at one", - "after": "Garotte, hand at one" - }, - { - "before": "with that, The unfortunately named", - "after": "with that, the unfortunately-named" - }, - { - "before": "not aware of the lipstick am", - "after": "not aware of the lipstick" - } - ], - "https://www.parahumans.net/2018/11/27/polarize-10-10/": [ - { - "before": "all about how Masters have", - "after": "all about how masters have" - }, - { - "before": "Hardboil", - "after": "Hard Boil" - }, - { - "before": "Sveta added a, “No,” for good measure", - "after": "Sveta added a “no” for good measure" - }, - { - "before": "We need to figure out how—we—handle this", - "after": "We need to figure out how we handle this" - } - ], - "https://www.parahumans.net/2018/12/01/polarize-10-11/": [ - { - "before": "See dad, sleep.", - "after": "See Dad, sleep." - }, - { - "before": "T, u-.", - "after": "T, U." - }, - { - "before": "I did it with—I’ve done it before", - "after": "I did it with— I’ve done it before" - }, - { - "before": "and to be our liaisons to the Wardens", - "after": "and to be our liaison to the Wardens" - }, - { - "before": "“Twelve hours ago,” I explained. “The Navigators were sent", - "after": "“Twelve hours ago,” I explained, “the Navigators were sent" - }, - { - "before": "You said you wanted to limiting this serious step", - "after": "You said you wanted to limit this serious step" - }, - { - "before": "On any other day, objective, I would", - "after": "On any other day, objectively, I would" - }, - { - "before": "how it were more active", - "after": "how it was more active" - } - ], - "https://www.parahumans.net/2018/12/04/polarize-10-12/": [ - { - "before": "Dryad Project 3", - "after": "Dryad Project Three" - }, - { - "before": "Pollution, deforestation, ecology all things that", - "after": "Pollution, deforestation, ecology, all things that" - }, - { - "before": "dropped an expose", - "after": "dropped an exposé" - }, - { - "before": "—But the good feelings", - "after": "—but the good feelings" - }, - { - "before": "A pan—a cure all for", - "after": "A pan— A cure-all for" - }, - { - "before": "No—Yes, but that isn’t", - "after": "No— Yes, but that isn’t" - } - ], - "https://www.parahumans.net/2018/12/08/polarize-10-13/": [ - { - "before": "A ring thirty feet in diameterand past those thirty feet", - "after": "A ring thirty feet in diameter—and past those thirty feet" - }, - { - "before": "axe—arm", - "after": "axe-arm" - }, - { - "before": "hit him again He wouldn’t simply", - "after": "hit him again. He wouldn’t simply" - } - ], - "https://www.parahumans.net/2018/12/11/interlude-10-y/": [ - { - "before": "shape of the the moment", - "after": "shape of the moment" - }, - { - "before": "We have! Multiple times!", - "after": "We have! Multiple times!" - } - ], - "https://www.parahumans.net/2018/12/15/interlude-10-z/": [ - { - "before": "roman with hair on his legs", - "after": "Roman with hair on his legs" - }, - { - "before": "New Brockton primary school", - "after": "New Brockton Primary School" - }, - { - "before": "Rome-Roman’s", - "after": "Rome—Roman’s" - } - ], - "https://www.parahumans.net/2018/12/18/blinding-11-1/": [ - { - "before": "prisoner and patrol", - "after": "prisoner and Patrol" - }, - { - "before": "before they chage", - "after": "before they change" - } - ], - "https://www.parahumans.net/2018/12/22/blinding-11-2/": [ - { - "before": "—But please respect", - "after": "—but please respect" - } - ], - "https://www.parahumans.net/2018/12/25/blinding-11-3/": [ - { - "before": "the pharmacist", - "after": "the Pharmacist", - "_comment": "See comment in https://www.parahumans.net/2018/09/29/gleaming-9-11/" - }, - { - "before": "…Delivering my coup de grace", - "after": "…delivering my coup de grace" - }, - { - "before": "Flash Gun", - "after": "flash gun" - } - ], - "https://www.parahumans.net/2018/12/29/interlude-11-a/": [ - { - "before": "Chiet", - "after": "Cheit" - }, - { - "before": "day to day way", - "after": "day-to-day way" - } - ], - "https://www.parahumans.net/2019/01/01/blinding-11-4/": [ - { - "before": "—But if your head is full of noise", - "after": "—but if your head is full of noise" - }, - { - "before": "One of the Heartbroken—Candy, I was pretty sure, was sitting", - "after": "One of the Heartbroken—Candy, I was pretty sure—was sitting" - } - ], - "https://www.parahumans.net/2019/01/05/blinding-11-5/": [ - { - "before": "they‘re", - "after": "they’re" - }, - { - "before": "and piece of construction material", - "after": "and pieces of construction material" - }, - { - "before": "the chiming finding it stride", - "after": "the chiming finding its stride" - }, - { - "before": "need to step in.", - "after": "need to step in.”" - }, - { - "before": "a smell had soaked into", - "after": "a smell that had soaked into" - }, - { - "before": "result putting together", - "after": "result of putting together" - }, - { - "before": "’emergency alert’", - "after": "‘emergency alert’" - }, - { - "before": "Three heartbroken", - "after": "Three Heartbroken" - }, - { - "before": "two heartbroken", - "after": "two Heartbroken" - } - ], - "https://www.parahumans.net/2019/01/08/blinding-11-6/": [ - { - "before": "Let’s go Let’s make a hole", - "after": "Let’s go. Let’s make a hole" - }, - { - "before": "catch up with the group I saw Foil and Chastity", - "after": "catch up with the group. I saw Foil and Chastity" - } - ], - "https://www.parahumans.net/2019/01/12/blinding-11-7/": [ - { - "before": "threw the the man", - "after": "threw the man" - }, - { - "before": "Reminded me of mom", - "after": "Reminded me of Mom" - }, - { - "before": "more fragile than it should have been

", - "after": "more fragile than it should have been.

" - }, - { - "before": "too close to heartbroken", - "after": "too close to Heartbroken" - }, - { - "before": "Precipice and the heartbroken", - "after": "Precipice and the Heartbroken" - }, - { - "before": "If the heartbroken’s power", - "after": "If the Heartbroken’s power" - } - ], - "https://www.parahumans.net/2019/01/15/blinding-11-8/": [ - { - "before": "and it it pulled him", - "after": "and it pulled him" - }, - { - "before": "Victoria-flesh", - "after": "Victoria-flesh" - } - ], - "https://www.parahumans.net/2019/01/19/interlude-11-b/": [ - { - "before": "loading up trucks with basic supplies

", - "after": "loading up trucks with basic supplies.

" - }, - { - "before": "I’m sor—that fucking sucks", - "after": "I’m sor— That fucking sucks" - }, - { - "before": "two of the targets was really", - "after": "two of the targets were really" - }, - { - "before": "punch a hold into the ground", - "after": "punch a hole into the ground" - } - ], - "https://www.parahumans.net/2019/01/22/interlude-11-c/": [ - { - "before": "were a worse adult examples", - "after": "were worse adult examples" - }, - { - "before": "four-times-normal—width", - "after": "four-times-normal-width" - }, - { - "before": "accumualted", - "after": "accumulated" - }, - { - "before": "get away from one swung", - "after": "get away from one swing" - }, - { - "before": "“Cradle—the most intact part of Tattletale said", - "after": "“Cradle—” the most intact part of Tattletale said" - }, - { - "before": "backwards-high five", - "after": "backwards high five" - } - ], - "https://www.parahumans.net/2019/01/26/blinding-11-9/": [ - { - "before": "I told the mercenary.”", - "after": "I told the mercenary." - }, - { - "before": "someone had been been called at three", - "after": "someone had been called at three" - }, - { - "before": "I croaked. as she picked up", - "after": "I croaked, as she picked up" - }, - { - "before": "two heartbroken", - "after": "two Heartbroken" - }, - { - "before": "three heartbroken", - "after": "three Heartbroken" - }, - { - "before": "Do yo want me to send", - "after": "Do you want me to send" - }, - { - "before": "PRT—or SWAT-van style", - "after": "PRT- or SWAT-van style" - }, - { - "before": "apparently I", - "after": "apparently I" - }, - { - "before": "Hey Little V", - "after": "Hey little V" - } - ], - "https://www.parahumans.net/2019/01/29/blinding-11-10/": [ - { - "before": "heartbroken kid", - "after": "Heartbroken kid" - }, - { - "before": "The team, the dynamic with the Undersiders, the Heartbroken, the kids", - "after": "The team, the dynamic with the Undersiders, the Heartbroken, the kids" - } - ], - "https://www.parahumans.net/2019/02/02/blinding-11-11/": [ - { - "before": "to Capricorn. then she looked", - "after": "to Capricorn. Then she looked" - }, - { - "before": "fucking daughter!", - "after": "fucking daughter!" - }, - { - "before": "The Warrior Monk told me", - "after": "the Warrior Monk told me" - }, - { - "before": "Foil-Hookline", - "after": "Foil–Hookline" - }, - { - "before": "“Fired through a hole I made in my fist.

", - "after": "“Fired through a hole I made in my fist.”

" - } - ], - "https://www.parahumans.net/2019/02/05/blinding-11-12/": [ - { - "before": "and drawers. her legs were stacked against", - "after": "and drawers. Her legs were stacked against" - }, - { - "before": "Not when—not like this.", - "after": "Not when— Not like this." - }, - { - "before": "Go you, Little V.", - "after": "Go you, little V." - }, - { - "before": "the King on the chess board", - "after": "the king on the chess board" - }, - { - "before": "Almost Eight?", - "after": "Almost eight?" - } - ], - "https://www.parahumans.net/2019/02/09/interlude-12-z/": [ - { - "before": "mom just so happened to be busy", - "after": "Mom just so happened to be busy" - }, - { - "before": "Or when mom had", - "after": "Or when Mom had" - }, - { - "before": "mom messed up", - "after": "Mom messed up" - }, - { - "before": "You- upstairs.", - "after": "You—upstairs." - }, - { - "before": "all the Kiss and Kill things", - "after": "all the kiss and kill things" - }, - { - "before": "relatives houses", - "after": "relatives’ houses" - }, - { - "before": "Do you want to see me go all out? she thought", - "after": "Do you want to see me go all out? she thought" - }, - { - "before": "roof top", - "after": "rooftop" - } - ], - "https://www.parahumans.net/2019/02/12/heavens-12-1/": [ - { - "before": "And mom’s implying I want", - "after": "And Mom’s implying I want" - }, - { - "before": "ent North", - "after": "ent north" - }, - { - "before": "They headed North", - "after": "They headed north" - }, - { - "before": "It had been Marquis, before", - "after": "It had been Marquis’, before" - }, - { - "before": "police, patrol, or station", - "after": "police, Patrol, or station" - }, - { - "before": "earth-N", - "after": "Earth-N" - } - ], - "https://www.parahumans.net/2019/02/16/heavens-12-2/": [ - { - "before": "And you- don’t do that", - "after": "And you—don’t do that" - }, - { - "before": "Harbingers?", - "after": "Harbingers?" - }, - { - "before": "“Thing one, thing two", - "after": "“Thing One, Thing Two" - } - ], - "https://www.parahumans.net/2019/02/19/interlude-12-e/": [ - { - "before": "I want dad", - "after": "I want Dad" - }, - { - "before": "I need dad", - "after": "I need Dad" - }, - { - "before": "going to mars or some", - "after": "going to Mars or some" - } - ], - "https://www.parahumans.net/2019/02/23/heavens-12-3/": [ - { - "before": "had shaken them good- but I could", - "after": "had shaken them good—but I could" - }, - { - "before": "Harbinger one was down, and two was wounded", - "after": "Harbinger One was down, and Two was wounded" - } - ], - "https://www.parahumans.net/2019/02/26/heavens-12-4/": [ - { - "before": "but the Harbinger said, “yes,” and I took", - "after": "but the Harbinger said “yes,” and I took" - }, - { - "before": "closer to haunting, “Think you can", - "after": "closer to haunting, “think you can" - } - ], - "https://www.parahumans.net/2019/03/02/heavens-12-all/": [ - { - "before": "bounce off of the the people", - "after": "bounce off of the people" - }, - { - "before": "a ‘us’", - "after": "an ‘us’" - }, - { - "before": "keep going,” Their March says", - "after": "keep going,” their March says" - }, - { - "before": "move, but Vista was, at least a little", - "after": "move, but Vista could, at least a little" - }, - { - "before": "a fraction of a second her more time", - "after": "a fraction of a second more time" - }, - { - "before": "let the charge grow", - "after": "lets the charge grow" - }, - { - "before": "She imagines It would", - "after": "She imagines it would" - } - ], - "https://www.parahumans.net/2019/03/05/heavens-12-5/": [ - { - "before": "mom, are you okay being", - "after": "Mom, are you okay being" - }, - { - "before": "we didn’t resume the discussion

", - "after": "we didn’t resume the discussion.

" - }, - { - "before": "flashlight of the Patrol", - "after": "flashlight of the patrol" - }, - { - "before": "ID’s", - "after": "IDs" - }, - { - "before": "My mom asked", - "after": "my mom asked" - } - ], - "https://www.parahumans.net/2019/03/09/heavens-12-6/": [ - { - "before": "wrists behind them around around the stomach", - "after": "wrists behind them around the stomach" - }, - { - "before": "back pouch” my mom said", - "after": "back pouch,” my mom said" - }, - { - "before": "protest—Two people held hostage", - "after": "protest—two people held hostage" - } - ], - "https://www.parahumans.net/2019/03/12/heavens-12-f/": [ - { - "before": ", kay", - "after": ", ’kay" - }, - { - "before": "thinking, the he brushed", - "after": "thinking, then he brushed" - } - ], - "https://www.parahumans.net/2019/03/16/heavens-12-7/": [ - { - "before": "without knowing. by Love Lost", - "after": "without knowing. By Love Lost" - }, - { - "before": "The man-though he", - "after": "The man—though he" - }, - { - "before": "a chance it might never.", - "after":"a chance it might never stop." - }, - { - "before": "wrench a weapon free, Curved blades that", - "after": "wrench a weapon free. Curved blades that" - }, - { - "before": "saw the group that standing tallest", - "after": "saw the group that was standing tallest" - }, - { - "before": "T’was", - "after": "’Twas" - } - ], - "https://www.parahumans.net/2019/03/19/heavens-12-8/": [ - { - "before": "created glowing orbs. he threw one to my", - "after": "created glowing orbs. He threw one to my" - } - ], - "https://www.parahumans.net/2019/03/23/heavens-12-9/": [ - { - "before": "Harbinger two was out and Harbinger one", - "after": "Harbinger Two was out and Harbinger One" - }, - { - "before": "pizz dispenser", - "after": "Pez dispenser" - }, - { - "before": "background keeping Crete", - "after": "background keeping Cretan" - }, - { - "regExp": " Mech", - "replacement": " mech" - } - ], - "https://www.parahumans.net/2019/03/26/heavens-12-none/": [ - { - "before": "if I inherit mom’s whole", - "after": "if I inherit Mom’s whole" - }, - { - "before": "wasn’t mom’s whole", - "after": "wasn’t Mom’s whole" - }, - { - "before": "“Fuck,”Capricorn said again", - "after": "“Fuck,” Capricorn said again" - }, - { - "before": "With your friends, your teachers the places you love", - "after": "With your friends, your teachers, the places you love" - }, - { - "before": "every earth", - "after": "every Earth" - } - ], - "https://www.parahumans.net/2019/03/29/heavens-12-x/": [ - { - "before": "go to sleep,” Her mother said", - "after": "go to sleep,” her mother said" - }, - { - "before": "Night mom", - "after": "Night Mom" - }, - { - "before": "was distorted. if it wasn’t for the fact", - "after": "was distorted. If it wasn’t for the fact" - }, - { - "before": "March said. she flourished her", - "after": "March said. She flourished her" - }, - { - "before": "morning breath—more than morning breath-, but there", - "after": "morning breath—more than morning breath—but there" - }, - { - "before": "

Previous Chapter                                                                               Next Chapter

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

", - "after": "
 
\n
 
", - "_comment": "This is the best way I can think of to emulate the end of chapter 'fake out' in an ebook format" - }, - { - "before": "Can we—Can we do my thing", - "after": "Can we— Can we do my thing" - }, - { - "before": "Let me through!", - "after": "Let me through!" - }, - { - "before": "This? That?", - "after": "This? That?" - }, - { - "before": "more saccharine, “You don’t", - "after": "more saccharine, “you don’t" - }, - { - "before": "Damsel told Antares, “Think again", - "after": "Damsel told Antares, “think again" - } - ], - "https://www.parahumans.net/2019/04/02/black-13-1/": [ - { - "before": "

\n

Previous Chapter                                                                               Next Chapter

\n", - "after": "", - "_comment": "Our usual heuristics of removing the first paragraph to remove the previous/next chapter links are broken here because of the 'go back and look at the fake out' comment at the top" - }, - { - "before": "walls stone and wood. the building", - "after": "walls stone and wood. The building" - }, - { - "before": "he asked

", - "after": "he asked.

" - }, - { - "before": "—and my costume leggings", - "after": "—And my costume leggings" - }, - { - "before": "I told Rain, “Is a goodbye.", - "after": "I told Rain, “is a goodbye." - }, - { - "before": "fiancee", - "after": "fiancée" - }, - { - "before": "Signal fire", - "after": "Signal Fire" - }, - { - "before": "“It’s winter,’", - "after": "“It’s winter,”" - } - ], - "https://www.parahumans.net/2019/04/05/black-13-2/": [ - { - "before": "built in protection", - "after": "built-in protection" - } - ], - "https://www.parahumans.net/2019/04/09/black-13-3/": [ - { - "before": "you have have surmised", - "after": "you have surmised" - }, - { - "before": "pound of flesh, at least—!”", - "after": "pound of flesh, at least—!”" - }, - { - "before": "…Kind of hate hospitals", - "after": "…kind of hate hospitals" - }, - { - "before": "—For them!", - "after": "—for them!" - } - ], - "https://www.parahumans.net/2019/04/13/black-13-4/": [ - { - "before": "wiped—or perhaps struck- clean.", - "after": "wiped—or perhaps struck—clean." - }, - { - "before": "—Because it’s a dress", - "after": "—because it’s a dress" - }, - { - "before": "Bam!", - "after": "Bam!" - } - ], - "https://www.parahumans.net/2019/04/16/black-13-5/": [ - { - "before": "For some of the heartbroken", - "after": "For some of the Heartbroken" - } - ], - "https://www.parahumans.net/2019/04/20/black-13-6/": [ - { - "before": "I’m a Master, right, you", - "after": "I’m a master, right, you" - }, - { - "before": "been studying, woo
!", - "after": "been studying, woo!" - }, - { - "before": "Kenz-Lookout", - "after": "Kenz—Lookout" - } - ], - "https://www.parahumans.net/2019/04/23/black-13-7/": [ - { - "before": "looked like they were were painted on", - "after": "looked like they were painted on" - }, - { - "before": "—My friend", - "after": "—my friend" - }, - { - "before": "Fucking what? When? How bad", - "after": "Fucking what? When? How bad" - } - ], - "https://www.parahumans.net/2019/04/27/black-13-8/": [ - { - "before": "cash are involved. there’s a reason", - "after": "cash are involved. There’s a reason" - }, - { - "before": "zero—a circle made with her full hand-, three", - "after": "zero—a circle made with her full hand—three" - }, - { - "before": "what the Wedge is or where", - "after": "what the wedge is or where" - } - ], - "https://www.parahumans.net/2019/04/30/black-13-x/": [ - { - "before": "technology from another earth", - "after": "technology from another Earth" - }, - { - "before": "from yet another earth", - "after": "from yet another Earth" - }, - { - "before": "in that a sea of yellow", - "after": "in that sea of yellow" - }, - { - "regExp": "cell five", - "replacement": "Cell Five" - }, - { - "regExp": "cell eleven", - "replacement": "Cell Eleven" - }, - { - "regExp": "cell nineteen", - "replacement": "Cell Nineteen" - }, - { - "before": "there were always some overhead", - "after": "there were always some over head" - }, - { - "before": "one of the Theocrats", - "after": "one of the theocrats" - } - ], - "https://www.parahumans.net/2019/05/04/black-13-9/": [ - { - "before": "thing is,” Tattletale said. “What did", - "after": "thing is,” Tattletale said, “what did" - }, - { - "before": "jacakss", - "after": "jackass" - }, - { - "before": "whether you invite me or not, it’s understandable if you don’t you’re going to want", - "after": "whether you invite me or not, it’s understandable if you don’t, you’re going to want" - } - ], - "https://www.parahumans.net/2019/05/07/black-13-10/": [ - { - "before": "the interior of this one was quiet-, I could", - "after": "the interior of this one was quiet—I could" - }, - { - "before": "‘why didn’t Imp back us up’?", - "after": "‘why didn’t Imp back us up?’" - }, - { - "before": "panic inducing memories", - "after": "panic-inducing memories" - } - ], - "https://www.parahumans.net/2019/05/11/black-13-11/": [ - { - "before": "been scummy and and tried", - "after": "been scummy and tried" - }, - { - "before": "—And I wanted to bring it up", - "after": "—and I wanted to bring it up" - }, - { - "before": "—Because I could have pushed harder", - "after": "—because I could have pushed harder" - }, - { - "before": "the Wardens’ bunker", - "after": "the Wardens’ Bunker" - }, - { - "before": "the more distant bunker itself", - "after": "the more distant Bunker itself" - } - ], - "https://www.parahumans.net/2019/05/14/13-z/": [ - { - "before": "and they were pro-irregular", - "after": "and they were pro-Irregular" - } - ], - "https://www.parahumans.net/2019/05/18/breaking-14-1/": [ - { - "before": "face—ridiculous notion but still-, if I wrote him a note or sent him a text—less ridiculous notion-, saying", - "after": "face—ridiculous notion but still—if I wrote him a note or sent him a text—less ridiculous notion—saying" - }, - { - "before": "Instead a 1,—2, 4", - "after": "Instead a 1, −2, 4" - } - ], - "https://www.parahumans.net/2019/05/21/breaking-14-2/": [ - { - "before": "if Parahumans like Swansong", - "after": "if parahumans like Swansong" - } - ], - "https://www.parahumans.net/2019/05/25/breaking-14-3/": [ - { - "before": "actively tamper with it it", - "after": "actively tamper with it" - }, - { - "before": "to reclaim her throne, and I.”", - "after": "to reclaim her throne, and I—”" - }, - { - "before": "A teacher plot", - "after": "A Teacher plot" - }, - { - "before": "Your own mother just went", - "after": "your own mother just went" - }, - { - "before": "Ashley stared int the", - "after": "Ashley stared into the" - } - ], - "https://www.parahumans.net/2019/05/28/breaking-14-4/": [ - { - "before": "Once Goddess’s earth", - "after": "Once Goddess’s Earth" - } - ], - "https://www.parahumans.net/2019/06/01/breaking-14-5/": [ - { - "before": "his wife was dressed in patching colors", - "after": "his wife was dressed in matching colors" - }, - { - "before": "Luis said. “he saw a lot of", - "after": "Luis said. “He saw a lot of" - } - ], - "https://www.parahumans.net/2019/06/04/breaking-14-6/": [ - { - "before": "and the the undo button", - "after": "and the undo button" - }, - { - "before": "progress with mom is slow", - "after": "progress with Mom is slow" - }, - { - "before": "Promises to mom and dad", - "after": "Promises to Mom and Dad" - }, - { - "before": "or innovators—scientists-, they say", - "after": "or innovators—scientists—they say" - }, - { - "before": "PHD", - "after": "PhD" - }, - { - "before": "If I’m asking?", - "after": "If I’m asking?" - }, - { - "before": "Isn’t it?", - "after": "Isn’t it?" - } - ], - "https://www.parahumans.net/2019/06/08/breaking-14-7/": [ - { - "before": "Regretting sending mom here", - "after": "Regretting sending Mom here" - }, - { - "before": "you’re talking syncope—fainting-, arrythmia,", - "after": "you’re talking syncope—fainting, arrythmia," - }, - { - "before": "inter-earth", - "after": "inter-Earth" - }, - { - "before": "The Western of the two half-castles", - "after": "The western of the two half-castles" - } - ], - "https://www.parahumans.net/2019/06/11/breaking-14-8/": [ - { - "before": "the conditions weren’t great-it was cold enough", - "after": "the conditions weren’t great—it was cold enough" - }, - { - "before": "pick up line", - "after": "pickup line" - }, - { - "before": "got me,” Rain said. “Was that", - "after": "got me,” Rain said, “was that" - }, - { - "before": "—Ask for some strings", - "after": "—ask for some strings" - }, - { - "before": "for the needy for Church events", - "after": "for the needy for church events" - } - ], - "https://www.parahumans.net/2019/06/15/breaking-14-9/": [ - { - "before": "You stay away from mom, you stay away from dad", - "after": "You stay away from Mom, you stay away from Dad" - }, - { - "before": "‘fuck this, not hitching a ride with—this-‘", - "after": "‘fuck this, not hitching a ride with this’" - } - ], - "https://www.parahumans.net/2019/06/18/breaking-14-10/": [ - { - "before": "in a real fight-, but in", - "after": "in a real fight—but in" - }, - { - "before": "fall to the mattress, “Let", - "after": "fall to the mattress, “let" - }, - { - "before": "I—Only if you hold onto it.", - "after": "I— Only if you hold onto it." - } - ], - "https://www.parahumans.net/2019/06/22/breaking-14-11/": [ - { - "before": "-He’s changing-", - "after": "-He’s changing-" - } - ], - "https://www.parahumans.net/2019/06/25/breaking-14-12/": [ - { - "before": "-Her phone?—", - "after": "-Her phone?-" - }, - { - "before": "-Have to ask her.—", - "after": "-Have to ask her.-" - }, - { - "before": "-down hall with gate. basement of that part of complx—", - "after": "-down hall with gate. basement of that part of complx-" - }, - { - "before": "-That was us—the message on my display read.—cuz guards—", - "after": "-That was us- the message on my display read. -cuz guards-" - }, - { - "before": "blinfd", - "after": "blind" - }, - { - "before": "This? It’s stupid politics", - "after": "This? It’s stupid politics" - } - ], - "https://www.parahumans.net/2019/06/29/breaking-14-z/": [ - { - "before": "smirked, leering. her face was stretching", - "after": "smirked, leering. Her face was stretching" - }, - { - "before": "But Master–stranger protocols", - "after": "But master–stranger protocols" - }, - { - "before": "allusion to Master–stranger protocols", - "after": "allusion to master–stranger protocols" - }, - { - "before": "I dealt with ‘m", - "after": "I dealt with ’m" - } - ], - "https://www.parahumans.net/2019/07/02/dying-15-a/": [ - { - "before": "this sad old man made her think of dad", - "after": "this sad old man made her think of Dad" - }, - { - "before": "scary. that’s all", - "after": "scary. That’s all" - }, - { - "before": "At Anita’s assistance", - "after": "At Anita’s insistence" - }, - { - "before": "kanji for ‘Shi’", - "after": "kanji for ‘shi’" - }, - { - "before": "re-learning day to day life", - "after": "relearning day-to-day life" - } - ], - "https://www.parahumans.net/2019/07/06/dying-15-1/": [ - { - "before": "wall met ceiling. the wall was smooth", - "after": "wall met ceiling. The wall was smooth" - }, - { - "before": "The blond heartbroken", - "after": "The blond Heartbroken" - }, - { - "before": "straight A’s", - "after": "straight As" - } - ], - "https://www.parahumans.net/2019/07/09/dying-15-2/": [ - { - "before": "I told Precipice

", - "after": "I told Precipice.

" - }, - { - "before": "Guys’ gotta be a thirteen", - "after": "Guy’s gotta be a thirteen" - }, - { - "before": "been sitting her for", - "after": "been sitting here for" - }, - { - "before": "a body torn two", - "after": "a body torn in two" - }, - { - "before": "it had eben damaged", - "after": "it had been damaged" - }, - { - "before": "dodge that was fast moving", - "after": "dodge something that fast-moving" - }, - { - "before": "done so far, and crippling", - "after": "done so far, crippling" - }, - { - "before": "‘hedrons", - "after": "’hedrons" - }, - { - "before": "post its", - "after": "Post-its" - }, - { - "before": "travelled", - "after": "traveled" - } - ], - "https://www.parahumans.net/2019/07/13/dying-15-3/": [ - { - "before": "Didn’t ask about mom, dad, or", - "after": "Didn’t ask about Mom, Dad, or" - }, - { - "before": "—And we’re heading upstairs", - "after": "—and we’re heading upstairs" - } - ], - "https://www.parahumans.net/2019/07/16/dying-15-4/": [ - { - "before": "There was was no ‘good’", - "after": "There was no ‘good’" - }, - { - "before": "was a H turned", - "after": "was an H turned" - }, - { - "before": "Needles receded as the entered", - "after": "Needles receded as they entered" - }, - { - "before": "flanking help other teams", - "after": "flanking to help other teams" - }, - { - "before": "water off a ducks’ back", - "after": "water off a duck’s back" - }, - { - "before": "the damage segments around", - "after": "the damaged segments around" - }, - { - "before": "when we’re done this mission", - "after": "when we’re done with this mission" - }, - { - "before": "If you take the current device with you can use it again", - "after": "If you take the current device with, you can use it again" - }, - { - "before": "one remaining Thrall", - "after": "one remaining thrall" - }, - { - "before": "Team copper-white", - "after": "Team Copper-White" - }, - { - "before": "Caraytid", - "after": "Caryatid" - } - ], - "https://www.parahumans.net/2019/07/20/dying-15-5/": [ - { - "before": "worth of of water", - "after": "worth of water" - }, - { - "before": "mind controlling", - "after": "mind-controlling" - }, - { - "before": "range of the Halo", - "after": "range of the halo" - }, - { - "before": "tear up the Haloed angel", - "after": "tear up the haloed angel" - }, - { - "before": "her power helping, to keep her there instead of falling", - "after": "her power helping to keep her there instead of falling" - }, - { - "before": "the time manipulating tinkers", - "after": "the time-manipulating tinkers" - } - ], - "https://www.parahumans.net/2019/07/23/dying-15-6/": [ - { - "before": "The teams had finished picking

", - "after": "The teams had finished picking.

" - }, - { - "before": "no wifi", - "after": "no Wi-Fi" - }, - { - "before": "a of linked metal segments", - "after": "a ??? of linked metal segments" - }, - { - "before": "Things one through whatever", - "after": "Things One through whatever" - }, - { - "before": "close to identical powersets", - "after": "close-to-identical powersets" - }, - { - "before": "The second they were out jailer’s door", - "after": "The second they were out of the jailer’s door" - }, - { - "before": "my Aunt’s", - "after": "my aunt’s" - } - ], - "https://www.parahumans.net/2019/07/27/dying-15-7/": [ - { - "before": "stranger or Master in", - "after": "stranger or master in" - }, - { - "before": "d—! _ ! d—", - "after": "d- ! _ ! d-" - } - ], - "https://www.parahumans.net/2019/07/30/dying-15-8/": [ - { - "before": "I thought. the dosage was supposed", - "after": "I thought. The dosage was supposed" - }, - { - "before": "I got a glimpse. it’s fucking with me", - "after": "I got a glimpse. It’s fucking with me" - }, - { - "before": "‘aunt Rachel‘s’", - "after": "‘Aunt Rachel’s’" - }, - { - "before": "Letting teacher go, knowing two members", - "after": "Letting Teacher go, knowing two members" - }, - { - "before": "using then to help hold up", - "after": "using them to help hold up" - } - ], - "https://www.parahumans.net/2019/08/03/dying-15-x/": [ - { - "before": "The Halo protected against", - "after": "The halo protected against" - }, - { - "before": "Normally teacher granted something", - "after": "Normally Teacher granted something" - }, - { - "before": "Carbon Dioxide bubbles manifesting", - "after": "Carbon dioxide bubbles manifesting" - }, - { - "before": "got the Thrall Commander, right", - "after": "got the thrall commander, right" - }, - { - "before": "the Yàngbǎn supported squad", - "after": "the Yàngbǎn-supported squad" - }, - { - "before": "radius in you systems", - "after": "radius in your systems" - } - ], - "https://www.parahumans.net/2019/08/06/dying-15-y/": [ - { - "before": "little miss Webb’s way", - "after": "little Miss Webb’s way" - } - ], - "https://www.parahumans.net/2019/08/10/dying-15-z/": [ - { - "before": "All around her, Thralls paid her their worship", - "after": "All around her, thralls paid her their worship" - }, - { - "before": "almost floated almost three hundred thousand", - "after": "almost floated amongst three hundred thousand" - }, - { - "before": "parahuman’s hackers", - "after": "parahumans’ hackers" - }, - { - "before": "the room, and them him", - "after": "the room, and then him" - }, - { - "before": "transcendant", - "after": "transcendent" - }, - { - "before": "The one who was slicing up the supporting walls ground rumbled, the floor twisted, the house-sized turbine in the center of the room lost some of its foundation", - "after": "The one who was slicing up the supporting walls—

\n

The ground rumbled, the floor twisted, the house-sized turbine in the center of the room lost some of its foundation", - "_comment": "This paragraph break probably wasn't what was intended, but a good chunk of the sentence is missing, so this is the best fix I can think of." - } - ], - "https://www.parahumans.net/2019/08/13/from-within-16-1/": [ - { - "before": "wasn’t A.I. it was just a picture", - "after": "wasn’t A.I. It was just a picture" - }, - { - "before": "end of Summer that", - "after": "end of summer that" - }, - { - "before": "or get back to where you", - "after": "or to get back to where you" - } - ], - "https://www.parahumans.net/2019/08/17/from-within-16-2/": [ - { - "before": "a small part of that was being being grumpy", - "after": "a small part of that was being grumpy" - }, - { - "before": "Hardboil", - "after": "Hard Boil" - }, - { - "before": "after class in Math, my", - "after": "after class in math, my" - }, - { - "before": "My point is, If you", - "after": "My point is, if you" - }, - { - "before": "loyalty inducing Goddesses", - "after": "loyalty-inducing Goddesses" - }, - { - "before": "Did you get an impression about her character, or anything weird.", - "after": "Did you get an impression about her character, or anything weird?" - } - ], - "https://www.parahumans.net/2019/08/20/from-within-16-3/": [ - { - "before": "small face on on a fifteen inch", - "after": "small face on a fifteen inch" - }, - { - "before": "for the recording.”", - "after": "for the recording." - }, - { - "before": "—But one of us could still", - "after": "—but one of us could still" - } - ], - "https://www.parahumans.net/2019/08/24/from-within-16-4/": [ - { - "before": "the rest black and slim. with doodle-like drawings", - "after": "the rest black and slim, with doodle-like drawings" - }, - { - "before": "trophy wrack", - "after": "trophy rack" - }, - { - "before": "hopped onto his back for the extra eight", - "after": "hopped onto his back for the extra height" - } - ], - "https://www.parahumans.net/2019/08/27/from-within-16-5/": [ - { - "before": "thing number one. it’s not a lot", - "after": "thing number one. It’s not a lot" - }, - { - "before": "French toast", - "after": "french toast" - }, - { - "before": "put into Neutral out of", - "after": "put into neutral out of" - }, - { - "before": "after Mockument’s had hatched that", - "after": "after Mockument had hatched that" - } - ], - "https://www.parahumans.net/2019/08/31/from-within-16-6/": [ - { - "before": "letters I wrote to dad’s friends", - "after": "letters I wrote to Dad’s friends" - }, - { - "before": "—But that might be intentional", - "after": "—but that might be intentional" - } - ], - "https://www.parahumans.net/2019/09/03/from-within-16-7/": [ - { - "before": "aunt Rachel", - "after": "Aunt Rachel" - }, - { - "before": "for Kenzie to high five", - "after": "for Kenzie to high-five", - "_comment": "Here it's a verb" - } - ], - "https://www.parahumans.net/2019/09/07/from-within-16-8/": [ - { - "before": "Giant lightning man guard dog", - "after": "Giant lightning-man guard dog" - }, - { - "before": "35: 10", - "after": "35:10" - }, - { - "before": "pluckign", - "after": "plucking" - }, - { - "before": "special event space", - "after": "Special event space" - } - ], - "https://www.parahumans.net/2019/09/10/from-within-16-9/": [ - { - "before": "changers and and shakers", - "after": "changers and shakers" - }, - { - "before": "the Twins’ portion of the room", - "after": "the twins’ portion of the room" - }, - { - "before": "one central area—No weapon—and swung backhanded", - "after": "one central area—no weapon—and swung backhanded" - }, - { - "before": "shifted course to favor the smallest portion of the gap leaped the ditch", - "after": "shifted course to favor the smallest portion of the gap and leaped the ditch" - }, - { - "before": "—It’s not three-dimensional", - "after": "—it’s not three-dimensional" - }, - { - "before": "a work bench", - "after": "a workbench" - }, - { - "before": "—Don’t shoot it!", - "after": "—don’t shoot it!" - } - ], - "https://www.parahumans.net/2019/09/14/from-within-16-10/": [ - { - "before": "carried on. out of", - "after": "carried on, out of" - }, - { - "before": "That-. Okay.", - "after": "That— Okay." - }, - { - "before": "combat trained", - "after": "combat-trained" - } - ], - "https://www.parahumans.net/2019/09/17/from-within-16-11/": [ - { - "before": "Warrior monk", - "after": "Warrior Monk" - }, - { - "before": "Empire Eighty-eight", - "after": "Empire Eighty-Eight" - } - ], - "https://www.parahumans.net/2019/09/21/from-within-16-12/": [ - { - "before": "harder than normal exhalation", - "after": "harder-than-normal exhalation" - }, - { - "before": "maybe a bit to the right. “There’s probably a", - "after": "maybe a bit to the right, “there’s probably a" - }, - { - "before": "—We need to do this fast", - "after": "—we need to do this fast" - } - ], - "https://www.parahumans.net/2019/09/24/from-within-16-y/": [ - { - "before": "…She was my first kiss", - "after": "…she was my first kiss" - }, - { - "before": "another on the railing. “I’m not", - "after": "another on the railing, “I’m not" - }, - { - "before": "that out loud, “—But you’re a therapist", - "after": "that out loud, “—but you’re a therapist" - }, - { - "before": "monster slaying", - "after": "monster-slaying" - }, - { - "before": "so important they’d focus on you’?”", - "after": "so important they’d focus on you?’”" - }, - { - "before": "Than in B—In B, the woman", - "after": "Than in B—in B, the woman" - }, - { - "before": "insistent, annoyed. “I could", - "after": "insistent, annoyed, “I could" - }, - { - "before": "Listen!", - "after": "Listen!" - }, - { - "before": "“—But when I shook your hand", - "after": "“—but when I shook your hand" - }, - { - "before": "That,” Chris said. “Is what", - "after": "That,” Chris said, “is what" - }, - { - "before": "transcending earth and humanity", - "after": "transcending Earth and humanity" - }, - { - "before": "day to day stuff", - "after": "day-to-day stuff" - }, - { - "before": "day to day work", - "after": "day-to-day work" - } - ], - "https://www.parahumans.net/2019/09/28/from-within-16-z/": [ - { - "before": "ducked their heads down and hurried

", - "after": "ducked their heads down and hurried.

" - }, - { - "before": "in the way,”she said", - "after": "in the way,” she said" - }, - { - "before": "his voice just for her. “I’ll be", - "after": "his voice just for her, “I’ll be" - }, - { - "before": "through the threshold to the.", - "after": "through the threshold." - }, - { - "regExp": "capitol", - "replacement": "capital" - }, - { - "before": "—But none of that would", - "after": "—but none of that would" - }, - { - "before": "the Doctor replied", - "after": "the doctor replied" - }, - { - "before": "…It’d be exactly the same", - "after": "…it’d be exactly the same" - }, - { - "before": "This—This had been just for her.", - "after": "This—this had been just for her." - } - ], - "https://www.parahumans.net/2019/10/01/sundown-17-1/": [ - { - "before": "mind of dad after his head injury", - "after": "mind of Dad after his head injury" - }, - { - "before": "Some—many- were unwillingly", - "after": "Some—many—were unwillingly" - }, - { - "before": "looking down at my hand at her arm and my hand", - "after": "looking down at her arm and my hand" - }, - { - "before": "more more thing hanging over our heads", - "after": "one more thing hanging over our heads" - }, - { - "before": "my mothers cheeks", - "after": "my mother’s cheeks" - }, - { - "before": "—Understand, please", - "after": "—understand, please" - }, - { - "before": "“Victoria,” Crystal’s voice was gentle", - "after": "“Victoria.” Crystal’s voice was gentle" - } - ], - "https://www.parahumans.net/2019/10/05/sundown-17-2/": [ - { - "before": "egg for Crystal and mom", - "after": "egg for Crystal and Mom" - }, - { - "before": "

Me:
", - "after": "

Me:
" - }, - { - "before": "

Vista (Little V):
", - "after": "

Vista (Little V):
" - }, - { - "before": "few minutes of peace, damn it.—", - "after": "few minutes of peace, damn it—" - }, - { - "regExp": "‘Clear", - "replacement": "’Clear" - } - ], - "https://www.parahumans.net/2019/10/08/sundown-17-3/": [ - { - "before": "say, Math class", - "after": "say, math class" - }, - { - "before": "hang outs", - "after": "hangouts" - }, - { - "before": "", - "after": "’" - }, - { - "before": "“—Which I’m not.”", - "after": "“—which I’m not.”" - }, - { - "before": "Vista for the kid’s sake", - "after": "Vista for the kids’ sake" - }, - { - "before": "Day to day activities", - "after": "Day-to-day activities" - }, - { - "before": "tower crescent avenue", - "after": "Tower Crescent Avenue" - }, - { - "before": "all had to deal with ‘heavy’.", - "after": "all had to deal with ‘heavy’.”" - }, - { - "before": "stuff?” I spoke up, “it get into that control", - "after": "stuff?” I spoke up. “It gets into that control" - }, - { - "before": "talked to me a like", - "after": "talked to me like" - }, - { - "before": "call me Big V", - "after": "call me big V" - } - ], - "https://www.parahumans.net/2019/10/12/sundown-17-4/": [ - { - "before": "on resisting Master influence", - "after": "on resisting master influence" - }, - { - "before": "CDs and Vinyls", - "after": "CDs and vinyls" - }, - { - "before": "“P.R.T.”", - "after": "“PRT.”" - }, - { - "before": "second or third string Wardens", - "after": "second- or third-string Wardens" - }, - { - "before": "intern level clerks", - "after": "intern-level clerks" - }, - { - "before": "half way", - "after": "halfway" - }, - { - "before": "her tone didn’t soft", - "after": "her tone didn’t soften" - }, - { - "before": "Jessica, Mr…", - "after": "Jessica, Mr.…" - }, - { - "before": "—Captive", - "after": "—captive" - }, - { - "before": "come from? what language", - "after": "come from? What language" - } - ], - "https://www.parahumans.net/2019/10/15/sundown-17-5/": [ - { - "before": "Is mom walking without difficulty", - "after": "Is Mom walking without difficulty" - }, - { - "before": "Through valkyrie", - "after": "Through Valkyrie" - }, - { - "before": "“‘Lo.”", - "after": "“’Lo.”" - } - ], - "https://www.parahumans.net/2019/10/19/sundown-17-6/": [ - { - "before": "Probably dad", - "after": "Probably Dad" - }, - { - "before": "and no and no rejiggered rat", - "after": "and no rejiggered rat" - }, - { - "before": "Harder headed", - "after": "Harder-headed" - }, - { - "before": "you proved my sister right? Tired,", - "after": "you proved my sister right? Tired," - }, - { - "before": "boundary,” He whispered", - "after": "boundary,” he whispered" - } - ], - "https://www.parahumans.net/2019/10/22/sundown-17-7/": [ - { - "before": "art good enough to to keep forever", - "after": "art good enough to keep forever" - }, - { - "before": "Golem explained

", - "after": "Golem explained.

" - }, - { - "before": "see the Lab", - "after": "see the lab" - } - ], - "https://www.parahumans.net/2019/10/26/sundown-17-8/": [ - { - "before": "one primary goal—me-, and who", - "after": "one primary goal—me—and who" - }, - { - "before": "She’s aggressive If anyone makes", - "after": "She’s aggressive. If anyone makes" - }, - { - "before": "—They mobbed Lookout", - "after": "—they mobbed Lookout" - }, - { - "before": "Of Course Kenzie", - "after": "Of course Kenzie" - }, - { - "before": "Rain about Girls", - "after": "Rain about girls" - }, - { - "before": "I typed: The one", - "after": "I typed: The one" - }, - { - "before": "realize,” Seir called out. “If a fight", - "after": "realize,” Seir called out, “if a fight" - }, - { - "before": "was emotion resistant", - "after": "was emotion-resistant" - }, - { - "before": "Thank you, fragile one", - "after": "Thank you, Fragile One" - } - ], - "https://www.parahumans.net/2019/10/29/sundown-17-9/": [ - { - "before": "—Are you going to be wishing", - "after": "—are you going to be wishing" - }, - { - "before": "Asking question?", - "after": "Asking a question?" - } - ], - "https://www.parahumans.net/2019/11/02/sundown-17-10/": [ - { - "before": "wanted you to go to mom if you", - "after": "wanted you to go to Mom if you" - }, - { - "before": "that didn’t betray too much

", - "after": "that didn’t betray too much.

" - }, - { - "before": "say Molasses", - "after": "say molasses" - }, - { - "before": "‘nother", - "after": "’nother" - }, - { - "before": "‘she peed on me!’", - "after": "‘she peed on me!’." - }, - { - "before": "madam Mayor", - "after": "Madam Mayor" - } - ], - "https://www.parahumans.net/2019/11/05/interlude-17-x-sundown/": [ - { - "before": "five-o’clock shadow", - "after": "five o’clock shadow" - }, - { - "before": "nervous looking guy", - "after": "nervous-looking guy" - }, - { - "before": "you have drugs? Alcohol? Cigarettes? I have", - "after": "you have drugs? Alcohol? Cigarettes? I have" - }, - { - "before": "Not by mom or dad", - "after": "Not by Mom or Dad" - } - ], - "https://www.parahumans.net/2019/11/09/interlude-17-y-sundown/": [ - { - "before": "Because it made mom come", - "after": "Because it made Mom come" - }, - { - "before": "new titan", - "after": "new Titan" - }, - { - "before": "anti parahumans", - "after": "anti-parahumans" - }, - { - "before": "hit the Anti-parahumans", - "after": "hit the anti-parahumans" - } - ], - "https://www.parahumans.net/2019/11/12/interlude-17-z-sundown/": [ - { - "before": "had his powers. the forcefield above", - "after": "had his powers. The forcefield above" - }, - { - "regExp": "titan(?![a-z])", - "replacement": "Titan" - }, - { - "before": "What if you weren’t?", - "after": "What if you weren’t?" - }, - { - "before": "Victor, Can you go join Tribute", - "after": "Victor, can you go join Tribute" - }, - { - "before": "The forcefield above him elaborate and getting", - "after": "The forcefield above him was elaborate and getting" - }, - { - "before": "Their faculties were diminished, but

", - "after": "Their faculties were diminished, but—

" - }, - { - "before": "Flashbang, he saw was one of the", - "after": "Flashbang, he saw, was one of the" - }, - { - "before": "the palm, Out each foot, and out of the mouth.lifting one", - "after": "the palm. Out each foot, and out of the mouth. Lifting one" - }, - { - "before": "no eyes; only a blindfold", - "after": "no eyes, only a blindfold" - }, - { - "before": "lightness of a feather landing, came to perch", - "after": "lightness of a feather landing, it came to perch" - }, - { - "before": "…The only things that are", - "after": "…the only things that are" - } - ], - "https://www.parahumans.net/2019/11/16/radiation-18-1/": [ - { - "before": "worked for the P.R.T.", - "after": "worked for the PRT." - }, - { - "regExp": "titan(?![a-z])", - "replacement": "Titan" - }, - { - "before": "the Fallen Raid or the Prison?", - "after": "the Fallen raid or the prison?" - } - ], - "https://www.parahumans.net/2019/11/19/radiation-18-2/": [ - { - "before": "looking for mom in the crowd", - "after": "looking for Mom in the crowd" - }, - { - "before": "“Entrapment.”", - "after": "“Entrapment.”" - }, - { - "before": "tents last Winter or Spring", - "after": "tents last winter or spring" - }, - { - "regExp": "titan(?![a-z])", - "replacement": "Titan" - }, - { - "before": "condemnation free", - "after": "condemnation-free" - }, - { - "before": "eyes heavily decorate with gray", - "after": "eyes heavily decorated with gray" - }, - { - "before": "Yuh!", - "after": "Yuh!" - }, - { - "before": "cultured accent, “Is that us", - "after": "cultured accent, “is that us" - }, - { - "before": "to force one.”", - "after": "to force one’.”" - }, - { - "before": "between the Titans Pull", - "after": "between the Titans. Pull" - } - ], - "https://www.parahumans.net/2019/11/23/radiation-18-3/": [ - { - "before": "in the eyes. they were a", - "after": "in the eyes. They were a" - }, - { - "before": "first look at a titan", - "after": "first look at a Titan" - }, - { - "before": "too much fo a retreat", - "after": "too much of a retreat" - }, - { - "before": "said, “after we were all", - "after": "said, “After we were all" - }, - { - "before": "reconicle", - "after": "reconcile" - } - ], - "https://www.parahumans.net/2019/11/26/radiation-18-4/": [ - { - "before": "bucked a little with the the impact", - "after": "bucked a little with the impact" - }, - { - "before": "you go. no joke, no wiggle", - "after": "you go. No joke, no wiggle" - }, - { - "before": "some business headquarters I was in

", - "after": "some business headquarters I was in.

" - }, - { - "before": "hunched-over titan", - "after": "hunched-over Titan" - }, - { - "before": "experience the world, fragile one", - "after": "experience the world, Fragile One" - }, - { - "before": "chime in, fragile one", - "after": "chime in, Fragile One" - }, - { - "before": "syndicate-awareness", - "after": "Syndicate-awareness" - }, - { - "before": "gray Jester Mockument was like", - "after": "gray jester Mockument like" - }, - { - "before": "he halfway back", - "after": "he was halfway back" - }, - { - "before": "master of biology", - "after": "mastery of biology" - }, - { - "before": "for most move, or raise", - "after": "for most moves, or raise" - }, - { - "before": "wasn’t hookline’s", - "after": "wasn’t Hookline’s" - }, - { - "before": "Chicken little", - "after": "Chicken Little" - } - ], - "https://www.parahumans.net/2019/11/30/radiation-18-5/": [ - { - "before": "jumping of a cardboard", - "after": "jumping off a cardboard" - }, - { - "before": "Tattletale said. “That breastplate", - "after": "Tattletale said, “that breastplate" - }, - { - "before": "they were gas damaged", - "after": "they were gas-damaged" - }, - { - "before": "“skewer them to", - "after": "“Skewer them to" - }, - { - "before": "…You have to conserve", - "after": "…you have to conserve" - }, - { - "before": "Shorcut", - "after": "Shortcut" - } - ], - "https://www.parahumans.net/2019/12/03/radiation-18-6/": [ - { - "before": "Some Master minions", - "after": "Some master minions" - }, - { - "before": "bomb to a titan", - "after": "bomb to a Titan" - }, - { - "before": "military inspired", - "after": "military-inspired" - }, - { - "before": "a rough fight", - "after": "a rough flight" - } - ], - "https://www.parahumans.net/2019/12/07/radiation-18-7/": [ - { - "before": "Couple of of times a month", - "after": "Couple of times a month" - }, - { - "before": "This would be the Church.", - "after": "This would be the church." - }, - { - "before": "my Uncle said", - "after": "my uncle said" - }, - { - "before": "my Uncle asked", - "after": "my uncle asked" - }, - { - "before": "Only Jester and my Uncle were", - "after": "Only Jester and my uncle were" - }, - { - "before": "Victoria?” My Uncle asked", - "after": "Victoria?” my uncle asked" - }, - { - "before": "end of the Summer", - "after": "end of the summer" - }, - { - "before": "five pound phone", - "after": "five-pound phone" - }, - { - "before": "He was slowly knitting itself together", - "after": "He was slowly knitting himself together" - }, - { - "before": "and uh, Stables", - "after": "and uh, stables" - }, - { - "before": "feel the meta tines", - "after": "feel the metal tines" - }, - { - "before": "back at the Workshop", - "after": "back at the workshop" - }, - { - "before": "Victoria,” My uncle", - "after": "Victoria,” my uncle" - } - ], - "https://www.parahumans.net/2019/12/10/radiation-18-8/": [ - { - "before": "Parahuman Sciences", - "after": "parahuman sciences" - }, - { - "before": "protocols in action.’", - "after": "protocols in action’." - }, - { - "before": "“—Too close", - "after": "“—too close" - }, - { - "before": "Ten-thirty-six", - "after": "Ten thirty-six" - }, - { - "before": "“—He was warm and safe", - "after": "“—he was warm and safe" - } - ], - "https://www.parahumans.net/2019/12/14/radiation-18-9/": [ - { - "before": "the next titan", - "after": "the next Titan" - }, - { - "before": "Kenzie said. Give me a minute.", - "after": "Kenzie said. “Give me a minute." - }, - { - "before": "Sveta said. Especially if we", - "after": "Sveta said. “Especially if we" - }, - { - "before": "from the cold, though his face", - "after": "from the cold; though his face" - } - ], - "https://www.parahumans.net/2019/12/17/radiation-18-10/": [ - { - "before": "one titan dogging me", - "after": "one Titan dogging me" - }, - { - "before": "Capes on two rises", - "after": "Capes on two risers" - } - ], - "https://www.parahumans.net/2019/12/21/interlude-18-z-radiation/": [ - { - "before": "face where her Uncle would see", - "after": "face where her uncle would see" - }, - { - "before": "Her Uncle put his hand", - "after": "Her uncle put his hand" - }, - { - "before": "and saw her Aunt and Uncle approaching", - "after": "and saw her aunt and uncle approaching" - }, - { - "regExp": "([Tt]he) Giantess", - "replacement": "$1 giantess", - "_comment": "14 other instances in this chapter are not capitalized" - }, - { - "before": "had allies. connections.", - "after": "had allies. Connections." - } - ], - "https://www.parahumans.net/2019/12/24/infrared-19-1/": [ - { - "before": "Victoria,” my Aunt said", - "after": "Victoria,” my aunt said" - }, - { - "regExp": "([Tt]he) stranger", - "replacement": "$1 Stranger", - "_comment": "See convert-worker.js; this corrects an over-correction" - }, - { - "before": "doing the damage herself", - "after": "doing the damage themselves" - }, - { - "before": "This? This", - "after": "This? This" - } - ], - "https://www.parahumans.net/2019/12/28/infrared-19-2/": [ - { - "before": "a violent exclamation

", - "after": "a violent exclamation.

" - }, - { - "before": "

Three seconds

", - "after": "

Three seconds.

" - }, - { - "before": "scream—no sound when viewing crystal-pictures, of course-, and", - "after": "scream—no sound when viewing crystal-pictures, of course—and" - }, - { - "regExp": "([Tt]he) stranger", - "replacement": "$1 Stranger", - "_comment": "See convert-worker.js; this corrects an over-correction" - }, - { - "before": "because the titan was", - "after": "because the Titan was" - }, - { - "before": "endless flesh monster were", - "after": "endless flesh monsters were" - }, - { - "before": "putting it of balance", - "after": "putting it off balance" - }, - { - "before": "What lay us below", - "after": "What lay below us" - }, - { - "before": "Do you have any regrets now?", - "after": "Do you have any regrets now?" - }, - { - "before": "Stygean Blue", - "after": "stygian blue" - }, - { - "before": "Except the feeling of breached", - "after": "Except the feeling of being breached" - }, - { - "before": "best guess of it’s location", - "after": "best guess of its location" - }, - { - "before": "Dream Room", - "after": "dream room" - }, - { - "before": "‘EM", - "after": "’EM" - }, - { - "before": "In effect, Powers were different", - "after": "In effect, powers were different" - } - ], - "https://www.parahumans.net/2020/01/01/interlude-19-a/": [ - { - "before": "“I’m fine” Egg said", - "after": "“I’m fine,” Egg said" - }, - { - "before": "can’t induce triggers There were parahumans", - "after": "can’t induce triggers. There were parahumans" - }, - { - "before": "into the conversation, “You do some", - "after": "into the conversation, “you do some" - }, - { - "before": "None of us do, Egg thought", - "after": "None of us do, Egg thought" - }, - { - "before": "Our ‘number zero’s wife", - "after": "Our ‘number zero’s’ wife" - }, - { - "before": "his voice was hard, “You took", - "after": "his voice was hard, “you took" - }, - { - "before": "You don’t get to do that!", - "after": "You don’t get to do that!" - }, - { - "before": "Almost a Figurehead", - "after": "Almost a figurehead" - }, - { - "before": "Can’t fist bump", - "after": "Can’t fist-bump", - "_comment": "Here it's a verb" - }, - { - "before": "that other Parahumans are", - "after": "that other parahumans are" - } - ], - "https://www.parahumans.net/2020/01/04/infrared-19-3/": [ - { - "before": "I thought of dad, seeing him hug my mother", - "after": "I thought of Dad, seeing him hug my mother" - }, - { - "before": "One titan mobilizing", - "after": "One Titan mobilizing" - }, - { - "before": "the horrifying titan", - "after": "the horrifying Titan" - }, - { - "before": "that stranger", - "after": "that Stranger" - }, - { - "before": "I could Strands worked to braid together", - "after": "I could see strands working to braid together" - }, - { - "before": "any of the Master Protocols", - "after": "any of the master protocols" - } - ], - "https://www.parahumans.net/2020/01/07/infrared-19-4/": [ - { - "before": "talked to them? or done", - "after": "talked to them? Or done" - }, - { - "before": "all nighters", - "after": "all-nighters" - }, - { - "before": "the other cases", - "after": "the other Cases" - } - ], - "https://www.parahumans.net/2020/01/11/infrared-19-b/": [ - { - "before": "or when you divorce dad", - "after": "or when you divorce Dad" - }, - { - "before": "Hey mom? Mom", - "after": "Hey Mom? Mom" - }, - { - "before": "or heard of the Master who had created", - "after": "or heard of the master who had created" - }, - { - "before": "pretty sure it’s Master", - "after": "pretty sure it’s master" - }, - { - "before": "Love Lost is Master-class", - "after": "Love Lost is master-class" - }, - { - "before": "opportunity to handpick people

", - "after": "opportunity to handpick people.

" - }, - { - "before": "pause, drew its attention

", - "after": "pause, drew its attention.

" - }, - { - "before": "someone my Aunt and Uncle deemed subversive", - "after": "someone my aunt and uncle deemed subversive" - }, - { - "before": "Looks after my Aunt while my Uncle", - "after": "Looks after my aunt while my uncle" - }, - { - "before": "can understand your Aunt and Uncle", - "after": "can understand your aunt and uncle" - }, - { - "before": "—And I think I have a grasp", - "after": "—and I think I have a grasp" - }, - { - "before": "emotion driven", - "after": "emotion-driven" - } - ], - "https://www.parahumans.net/2020/01/14/infrared-19-c/": [ - { - "before": "-maim, destroy, tear it all down—", - "after": "—maim, destroy, tear it all down—" - }, - { - "before": "-make it hurt, torture, butcher, kill—", - "after": "—make it hurt, torture, butcher, kill—" - }, - { - "before": "—Retaliate—", - "after": "—Retaliate—" - }, - { - "before": "—die quickly, if he has to die.", - "after": "—die quickly, if he has to die." - }, - { - "before": "close mouthed", - "after": "close-mouthed" - }, - { - "before": "“…Don’t really trust", - "after": "“…don’t really trust" - } - ], - "https://www.parahumans.net/2020/01/18/infrared-19-5/": [ - { - "before": "liqud Titan", - "after": "liquid Titan" - }, - { - "before": "done at the Prison", - "after": "done at the prison" - } - ], - "https://www.parahumans.net/2020/01/21/infrared-19-6/": [ - { - "before": "-through the emotion. Emote through the emotion. Emote—", - "after": "—through the emotion. Emote through the emotion. Emote—" - }, - { - "before": "titan Ophion’s", - "after": "Titan Ophion’s" - }, - { - "before": "Work with me, fragile one", - "after": "Work with me, Fragile One" - }, - { - "before": "‘fragile one’", - "after": "‘Fragile One’" - }, - { - "before": "“—But there won’t be any effects", - "after": "“—but there won’t be any effects" - }, - { - "before": "One of his Titans lurked", - "after": "One of his giants lurked" - }, - { - "before": "furously", - "after": "furiously" - }, - { - "before": "what I’d looked, hadn’t registered", - "after": "what I’d looked at, hadn’t registered" - }, - { - "before": "Mother Titan", - "after": "Mother Giant" - }, - { - "before": "Adrenline", - "after": "Adrenaline" - }, - { - "before": "ex-Prison", - "after": "ex-prison" - }, - { - "before": "Chris and the Syringe", - "after": "Chris and the syringe" - }, - { - "before": "“…She might have gotten", - "after": "“…she might have gotten" - }, - { - "before": "“—It was Jessica accepting", - "after": "“—it was Jessica accepting" - }, - { - "before": "We saw people running around.

", - "after": "We saw people running around.”

" - } - ], - "https://www.parahumans.net/2020/01/25/infrared-19-d/": [ - { - "before": "look after mom", - "after": "look after Mom" - }, - { - "before": "pink-a line of red-pink", - "after": "pink—a line of red—pink" - }, - { - "before": "recruited for busy work", - "after": "recruited for busywork" - }, - { - "before": "Steamwheel went Rogue", - "after": "Steamwheel went rogue" - }, - { - "before": "mother said. Such a horrible", - "after": "mother said. “Such a horrible" - } - ], - "https://www.parahumans.net/2020/01/28/infrared-19-e/": [ - { - "before": "so mom doesn’t end up alone", - "after": "so Mom doesn’t end up alone" - }, - { - "before": "“No!” she was almost drowned out", - "after": "“No!” She was almost drowned out" - } - ], - "https://www.parahumans.net/2020/02/02/infrared-19-7/": [ - { - "before": "I really wasn’t. really", - "after": "I really wasn’t. Really" - }, - { - "before": "‘I have that and ‘I don’t want it’", - "after": "‘I have that and I don’t want it’" - }, - { - "before": "number boy", - "after": "Number Boy" - } - ], - "https://www.parahumans.net/2020/02/04/infrared-19-8/": [ - { - "before": "Lessons from mom, age thirteen", - "after": "Lessons from Mom, age thirteen" - }, - { - "before": "relatively speaking” Number Five", - "after": "relatively speaking,” Number Five" - }, - { - "before": "Skitter, Khepri", - "after": "Skitter, Khepri" - }, - { - "before": "built in spears", - "after": "built-in spears" - } - ], - "https://www.parahumans.net/2020/02/08/infrared-19-9/": [ - { - "before": "had insisted she or dad drive us", - "after": "had insisted she or Dad drive us" - }, - { - "before": "you know about” my Aunt Sarah said", - "after": "you know about,” my Aunt Sarah said" - }, - { - "before": "so they grow in…”", - "after": "so they grow in…”" - }, - { - "before": "my Uncle said", - "after": "my uncle said" - }, - { - "before": "Anywhere else?", - "after": "Anywhere else?" - }, - { - "before": "do you understand about Trigger events", - "after": "do you understand about trigger events" - }, - { - "before": "good day,” my mother said, “The best", - "after": "good day,” my mother said, “the best" - }, - { - "before": "happen to you,” My mother said", - "after": "happen to you,” my mother said" - } - ], - "https://www.parahumans.net/2020/02/11/infrared-19-f/": [ - { - "before": "while Aisha stuck with mom", - "after": "while Aisha stuck with Mom" - }, - { - "before": "while mom did her own thing", - "after": "while Mom did her own thing" - }, - { - "before": "still hadn’t been repeated from the fights", - "after": "still hadn’t been repaired from the fights" - }, - { - "before": "“Hey!” the girl turned", - "after": "“Hey!” The girl turned" - }, - { - "before": "Lookout, How long do you need", - "after": "Lookout, how long do you need" - }, - { - "before": "You guy should know", - "after": "You guys should know" - }, - { - "before": "he’d gotten more of dad", - "after": "he’d gotten more of Dad" - }, - { - "before": "Its Capricorn", - "after": "It’s Capricorn" - } - ], - "https://www.parahumans.net/2020/02/15/infrared-19-10/": [ - { - "before": "Stuff to do with mom", - "after": "Stuff to do with Mom" - }, - { - "before": "thinking about mom getting on my case", - "after": "thinking about Mom getting on my case" - }, - { - "before": "figure out while she was gone. we’ll see who", - "after": "figure out while she was gone. We’ll see who" - }, - { - "before": "miligram", - "after": "milligram" - }, - { - "before": "same clothes that had been issues to the refugees", - "after": "same clothes that had been issued to the refugees" - } - ], - "https://www.parahumans.net/2020/02/18/infrared-19-g/": [ - { - "before": "Imp and the heartbroken", - "after": "Imp and the Heartbroken" - }, - { - "before": "That’s the way it always goes I get close to people", - "after": "That’s the way it always goes—I get close to people" - }, - { - "before": "The voices, a veritable crowd, was audible now", - "after": "The voices, a veritable crowd, were audible now" - } - ], - "https://www.parahumans.net/2020/02/23/infrared-19-z/": [ - { - "before": "5’1 “", - "after": "5′1″" - }, - { - "before": "pink and black titan", - "after": "pink and black Titan" - }, - { - "before": "throguh", - "after": "through" - } - ], - "https://www.parahumans.net/2020/02/25/last-20-1/": [ - { - "before": "across this clearing. eyes, cameras", - "after": "across this clearing. Eyes, cameras" - }, - { - "before": "monsters, and to use the phrasing he liked", - "after": "monsters, to use the phrasing he liked" - }, - { - "before": "about giving short speeches. I couldn’t help", - "after": "about giving short speeches, I couldn’t help" - }, - { - "before": "this Endbringer that wasn’t brutish and noisy", - "after": "this Endbringer wasn’t brutish and noisy" - }, - { - "before": "like a dance with wings", - "after": "like a dancer with wings" - }, - { - "before": "a gravely sound", - "after": "a gravelly sound" - }, - { - "before": "trying to remain peripherally aware of.", - "after": "trying to remain peripherally aware." - }, - { - "before": "The scream, the fact was", - "after": "The scream, the fact we" - }, - { - "before": "The water receded before tsunami", - "after": "The water receded before a tsunami" - }, - { - "before": "Stay the course!

", - "after": "Stay the course!”

" - } - ], - "https://www.parahumans.net/2020/02/29/last-20-2/": [ - { - "before": "Go!", - "after": "Go!" - } - ], - "https://www.parahumans.net/2020/03/03/last-20-3/": [ - { - "before": "Get-between the words", - "after": "Get——between the words" - } - ], - "https://www.parahumans.net/2020/03/07/last-20-4/": [ - { - "before": "peace!” Cryptid growled", - "after": "peace!” Cryptid growled" - }, - { - "before": "I’m going crazy,” Sveta remarked. “It’s you", - "after": "I’m going crazy,” Sveta remarked, “it’s you" - } - ], - "https://www.parahumans.net/2020/03/10/last-20-5/": [ - { - "before": "“…It’s slipping through our", - "after": "“…it’s slipping through our" - } - ], - "https://www.parahumans.net/2020/03/15/last-20-6/": [ - { - "before": "Strikes, brutes, breakers", - "after": "Strikers, brutes, breakers" - } - ], - "https://www.parahumans.net/2020/03/17/last-20-7/": [ - { - "before": "the pain in the ass heroine", - "after": "the pain-in-the-ass heroine" - }, - { - "before": "manton limit", - "after": "Manton limit" - } - ], - "https://www.parahumans.net/2020/03/21/last-20-8/": [ - { - "before": "For Humanity?", - "after": "For humanity?" - }, - { - "before": "a plan for Endgame", - "after": "a plan for endgame" - }, - { - "before": "Saturday Morning cartoon", - "after": "Saturday-morning cartoon", - "_comment": "https://en.wikipedia.org/wiki/Saturday-morning_cartoon" - }, - { - "before": "Simurgh driven future", - "after": "Simurgh-driven future" - }, - { - "before": "the Entities", - "after": "the entities" - } - ], - "https://www.parahumans.net/2020/03/24/last-20-9/": [ - { - "before": "you could help miss—help Antares", - "after": "you could help Miss—help Antares" - }, - { - "before": "Did I scare him?", - "after": "Did I scare him?" - }, - { - "regExp": "nurse Leah", - "replacement": "Nurse Leah" - }, - { - "before": "“…But I have to draw", - "after": "“…but I have to draw" - }, - { - "before": "break Capricorn’s parents hearts", - "after": "break Capricorn’s parents’ hearts" - } - ], - "https://www.parahumans.net/2020/03/31/last-20-10/": [ - { - "before": "shaping it as it rolled out. it became a circular", - "after": "shaping it as it rolled out. It became a circular" - } - ], - "https://www.parahumans.net/2020/04/04/last-20-b/": [ - { - "before": "Aurora Borealis", - "after": "aurora borealis" - }, - { - "before": "the snow fall and", - "after": "the snowfall and" - }, - { - "before": "the more boy crazy girls", - "after": "the more boy-crazy girls" - }, - { - "before": "hostage with us, too!", - "after": "hostage with us, too!" - }, - { - "before": "done, prez", - "after": "done, Prez" - }, - { - "before": "The—-bye.", - "after": "The——bye." - }, - { - "before": "who would gave gone after", - "after": "who would have gone after" - }, - { - "before": "a problem?” Her dad asked", - "after": "a problem?” her dad asked" - }, - { - "before": "her fathers hand", - "after": "her father’s hand" - } - ], - "https://www.parahumans.net/2020/04/07/last-20-11/": [ - { - "before": "had harangued the P.R.T., even though the Patrol had", - "after": "had harangued the PRT, even though the patrol had" - }, - { - "before": "“Actually,” Tattletale said. “I’ve been going", - "after": "“Actually,” Tattletale said, “I’ve been going" - }, - { - "before": "It’s not hell either", - "after": "It’s not Hell either" - }, - { - "before": "damocles", - "after": "Damocles" - } - ], - "https://www.parahumans.net/2020/04/11/last-20-e1/": [ - { - "before": "newly formed Protectorate", - "after": "newly-formed Protectorate" - }, - { - "before": "looked out over the city, and feeling shock", - "after": "looked out over the city, and felt shock" - } - ], - "https://www.parahumans.net/2020/04/14/last-20-e2/": [ - { - "before": "a few years where father felt like", - "after": "a few years where Father felt like" - }, - { - "before": "“—And the escaped prisoners", - "after": "“—and the escaped prisoners" - }, - { - "before": "case by case basis", - "after": "case-by-case basis" - } - ], - "https://www.parahumans.net/2020/04/18/last-20-e3/": [ - { - "before": "madness inducing years of isolation", - "after": "madness-inducing years of isolation" - }, - { - "before": "Finale! Now!", - "after": "Finale! Now!" - } - ], - "https://www.parahumans.net/2020/04/21/last-20-e4/": [ - { - "before": "grown around the the maille sheath", - "after": "grown around the maille sheath" - }, - { - "before": "the size of a deserted earth", - "after": "the size of a deserted Earth" - } - ], - "https://www.parahumans.net/2020/04/25/last-20-e5/": [ - { - "before": "She has has some past therapy", - "after": "She has had some past therapy" - }, - { - "before": "

It was a sunny spring", - "after": "

It was a sunny spring" - }, - { - "before": "living like a king.

", - "after": "living like a king.

" - }, - { - "before": "dont’", - "after": "don’t" - }, - { - "before": "its a nightmare I know", - "after": "it’s a nightmare I know" - }, - { - "before": "what to do.”

\n

“Imp was saying Lookout", - "after": "what to do.

\n

“Imp was saying Lookout", - "_comment": "https://english.stackexchange.com/q/2288/242244" - }, - { - "before": "listening, lost in tinkering—

", - "after": "listening, lost in tinkering—”

" - }, - { - "before": "

:Transmit
\nI’ve got", - "after": "

:Transmit
I’ve got" - } - ], - "https://www.parahumans.net/2020/04/28/last-20-e6/": [ - { - "before": "mourning Eric and dad", - "after": "mourning Eric and Dad" - }, - { - "before": "ongoing fight with mom", - "after": "ongoing fight with Mom" - }, - { - "before": "His eyes locked to mom", - "after": "His eyes locked to Mom" - }, - { - "before": "the backup that mom provided", - "after": "the backup that Mom provided" - }, - { - "before": "Back to mom", - "after": "Back to Mom" - }, - { - "before": "Gold morning", - "after": "Gold Morning" - }, - { - "before": "pay it safe", - "after": "play it safe" - }, - { - "before": "“—You’ll want to pass on", - "after": "“—you’ll want to pass on" - }, - { - "before": "cross the Ocean", - "after": "cross the ocean" - } - ], - "https://www.parahumans.net/2020/05/02/last-20-end/": [ - { - "before": "saying dad had custody", - "after": "saying Dad had custody" - }, - { - "before": "I lied and said you and dad gave", - "after": "I lied and said you and Dad gave" - }, - { - "before": "their reservations about you and dad. But whatever
.", - "after": "their reservations about you and Dad. But whatever.
" - }, - { - "before": "decide if it’s you or dad", - "after": "decide if it’s you or Dad" - }, - { - "before": "Your issue with dad", - "after": "Your issue with Dad" - }, - { - "before": "My boss is-was", - "after": "My boss is—was" - }, - { - "before": "he mom shook her head", - "after": "her mom shook her head" - }, - { - "before": "with black slacks. his hair was chin", - "after": "with black slacks. His hair was chin" - }, - { - "before": "human right’s abuses", - "after": "human rights abuses" - }, - { - "before": "‘us‘", - "after": "‘us’" - }, - { - "before": "captain Gaile", - "after": "Captain Gaile" - } - ] -} diff --git a/lib/worm-scraper.js b/lib/worm-scraper.js index dace52f..6fd577f 100644 --- a/lib/worm-scraper.js +++ b/lib/worm-scraper.js @@ -65,6 +65,7 @@ const { argv } = yargs .version(); const bookData = require(`../book-data/${argv.book}.js`); +const substitutionsPath = path.resolve(__dirname, `../substitutions/${argv.book}.subs`); const outputFilename = argv.out === undefined ? `${bookData.title}.epub` : argv.out; const cachePath = path.resolve(argv.cache, argv.book); @@ -97,6 +98,7 @@ if (argv._.includes("convert")) { chapterDataPath, chaptersPath, bookData, + substitutionsPath, argv.jobs, argv["chapter-titles"] ); diff --git a/package.json b/package.json index 8ed3690..7c80b78 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,7 @@ "covers/", "lib/", "scaffolding/", + "substitutions/", "npm-shrinkwrap.json" ], "scripts": { diff --git a/substitutions/README.md b/substitutions/README.md new file mode 100644 index 0000000..d13929b --- /dev/null +++ b/substitutions/README.md @@ -0,0 +1,63 @@ +# _Worm_ Scraper Substitutions Files + +These files contain per-chapter fixes to improve lines of text. They are in a custom file format, whose parser can be found in [`convert.js`](../lib/convert.js). + +## Basic format + +An example of the basic format is: + +``` +@ https://parahumans.wordpress.com/2011/06/14/gestation-1-2/ + - each others houses + + each others’ houses + + - x-acto + + X-Acto + + +@ https://parahumans.wordpress.com/2011/06/18/gestation-1-3/ + - top 5 + + top five + + - East end + + east end +``` + +Each chapter, denoted by its URL, gets a section, via a line starting with `@ `. Indented by two spaces underneath each chapter are pairs of `- ` and `+ ` lines, representing the text to replace and the replacement. + +## Newlines and trailing spaces + +Newlines can be included by including the literal string `\n`: + +``` + -

Crazed, kooky, cracked, crazy,
\nNutty, barmy, mad for me…

+ +

Crazed, kooky, cracked, crazy,
\nNutty, barmy, mad for me…

+``` + +Since sometimes we need to replace lines with trailing spaces, which don't show up easily when editing, any number of `\s` strings at the end of the line can be used to denote such trailing spaces: + +``` + - MWBB + + MWBB\s +``` + +There is no ability to escape these escape sequences right now, since it is not needed. + +## Regular expressions + +If a chapter needs a specific regular expression applied to its contents, use `r ` and `s ` line pairs: + +``` + r
\n\s* + s

\n

+``` + +## Comments + +Comment lines can appear at any point under each chapter, starting with `# `. + +``` + - see the Doctor + + see the doctor + # Unlike the Cauldron Doctor, this is not used as a proper noun +``` diff --git a/substitutions/glow-worm.subs b/substitutions/glow-worm.subs new file mode 100644 index 0000000..b7c5c2a --- /dev/null +++ b/substitutions/glow-worm.subs @@ -0,0 +1,4 @@ +@ https://www.parahumans.net/2017/10/21/glow-worm-0-1/ + -

Ward is the second work in the Parahumans series, and reading Worm first is strongly recommended. A lot of this won’t make sense otherwise and if you do find yourself a fan of the universe, the spoilers in Ward will affect the reading of the other work.

\n

Ward is not recommended for young or sensitive readers.

\n

The Glow-worm chapters were a teaser event leading up to Worm 2. They aren’t required reading but offer flavor and additional angles by which to view certain characters. They take the form of forum posts, chat conversations and emails.

\n

They’re best described as a kind of a post-epilogue, pseudo-prologue bridge between the series. Those who read them on the Worm site shouldn’t feel the need to read them again—they’re included here for convenience’s sake, with a few readability improvements.

\n

If you’re not interested or find this hard to read, click here to jump to chapter 1.

\n

\n + + + # This is out of place in an ebook. diff --git a/substitutions/ward.subs b/substitutions/ward.subs new file mode 100644 index 0000000..6eba8d2 --- /dev/null +++ b/substitutions/ward.subs @@ -0,0 +1,3670 @@ +@ https://www.parahumans.net/2017/09/11/daybreak-1-1/ + -

Ward is the second work in the Parahumans series, and reading Worm first is strongly recommended. A lot of this won’t make sense otherwise and if you do find yourself a fan of the universe, the spoilers in Ward will affect the reading of the other work.

\n

Ward is not recommended for young or sensitive readers.

\n

\n + + + # This is out of place in an ebook. + + +@ https://www.parahumans.net/2017/11/21/daybreak-1-4/ + - blunt instrument-I saw the + + blunt instrument—I saw the + + +@ https://www.parahumans.net/2017/11/28/daybreak-1-6/ + - To dad being + + To Dad being + + - and mom being business + + and Mom being business + + +@ https://www.parahumans.net/2017/11/30/daybreak-1-7/ + - How do you even think rec—how do you think + + How do you even think rec— How do you think + + - built in protections + + built-in protections + + +@ https://www.parahumans.net/2017/12/01/daybreak-1-8/ + - parahumans online + + Parahumans Online + + - Glitzglam *New Message*: I + + Glitzglam *New Message*: I + + -

Glitzglam *New Message*: i can field them
+ +

Glitzglam *New Message*: i can field them
+ + -

Point_Me_@_The_Sky: S’okay.
+ +

Point_Me_@_The_Sky: S’okay.
+ + - Glitzglam *New Message*: + + Glitzglam *New Message*:\s + + - day to day life + + day-to-day life + + +@ https://www.parahumans.net/2017/12/09/flare-2-1/ + - Some is mom and dad’s + + Some is Mom and Dad’s + + +@ https://www.parahumans.net/2017/12/12/flare-2-2/ + - -Victoria + + —Victoria + + +@ https://www.parahumans.net/2017/12/16/flare-2-3/ + - two—piece + + two-piece + + - want to think about mom + + want to think about Mom + + - the floor. the armband landed + + the floor. The armband landed + + +@ https://www.parahumans.net/2017/12/23/flare-2-5/ + - Swearing is fine In moderation + + Swearing is fine in moderation + + - If you study Parahumans + + If you study parahumans + + - —And a few interesting and + + —and a few interesting and + + - make it it feel any less painful + + make it feel any less painful + + +@ https://www.parahumans.net/2017/12/26/flare-2-6/ + - —Then maybe we avoid having + + —then maybe we avoid having + + - She huffed out out a small + + She huffed out a small + + - a built in glare + + a built-in glare + + +@ https://www.parahumans.net/2017/12/30/flare-2-7/ + - hooked on the the stacked plastic + + hooked on the stacked plastic + + - time with the the + + time with the + + +@ https://www.parahumans.net/2018/01/02/flare-interlude-2/ + - saying all of that that, he would + + saying all of that, he would + + +@ https://www.parahumans.net/2018/01/09/glare-3-2/ + - under—and over-growth + + under- and overgrowth + + - Tristan, “You should take + + Tristan, “you should take + + - to start with. it’s delicate enough + + to start with. It’s delicate enough + + +@ https://www.parahumans.net/2018/01/13/glare-3-3/ + - my flight toward toward Tristan + + my flight toward Tristan + + - “Spooky,” Sveta said.”I expected + + “Spooky,” Sveta said. “I expected + + +@ https://www.parahumans.net/2018/01/16/glare-3-4/ + - “Absolutely,’ I said + + “Absolutely,” I said + + +@ https://www.parahumans.net/2018/01/20/glare-3-5/ + - What mom did, I was pretty + + What Mom did, I was pretty + + - you let yourself believe mom’s words + + you let yourself believe Mom’s words + + - You mean mom + + You mean Mom + + - say I’m just like mom again + + say I’m just like Mom again + + +@ https://www.parahumans.net/2018/01/23/glare-3-6/ + - I had a conversation with dad last night + + I had a conversation with Dad last night + + - Bye mom + + Bye Mom + + +@ https://www.parahumans.net/2018/01/25/glare-interlude-3/ + - much like the the machines + + much like the machines + + +@ https://www.parahumans.net/2018/01/30/shade-4-2/ + - one earth + + one Earth + + +@ https://www.parahumans.net/2018/02/03/shade-4-3/ + - ex-birdcage + + ex-Birdcage + + - Just—I need this, + + Just— I need this, + + +@ https://www.parahumans.net/2018/02/06/shade-interlude-4a/ + - You know ‘em + + You know ’em + + - dangerous?” The recluse asked + + dangerous?” the recluse asked + + - Stop. Please. + + Stop. Please. + + - his Aunt would say + + his aunt would say + + +@ https://www.parahumans.net/2018/02/08/shade-4-4/ + - build Teleporters + + build teleporters + + +@ https://www.parahumans.net/2018/02/10/shade-4-5/ + - Average Ash Walk Time:
—1:13 + + Average Ash Walk Time:
−1:13 + + +@ https://www.parahumans.net/2018/02/13/shade-interlude-4b/ + - it was just dad and me + + it was just Dad and me + + - that’s who mom and dad are + + that’s who Mom and Dad are + + - but when mom had cancer + + but when Mom had cancer + + +@ https://www.parahumans.net/2018/02/17/shade-4-6/ + - mom’s verdict was + + Mom’s verdict was + + - as you walk. or blurry light + + as you walk. Or blurry light + + +@ https://www.parahumans.net/2018/02/20/shade-4-7/ + - Mom and dad were looking + + Mom and Dad were looking + + - ‘Won’t + + ‘Won’t + + +@ https://www.parahumans.net/2018/02/22/shade-interlude-4c/ + - Yes mom + + Yes Mom + + - last four years and seven months, She’s learned to + + last four years and seven months, she’s learned to + + - It—kind of + + It— Kind of + + - “Cozy,” The side of the + + “Cozy.” The side of the + + - hair he had. it was long + + hair he had. It was long + + - about you and Church + + about you and church + + +@ https://www.parahumans.net/2018/02/24/shadow-5-1/ + - thermos of regular tap water

+ + thermos of regular tap water.

+ + +@ https://www.parahumans.net/2018/03/06/shadow-5-4/ + - It’s—My forcefield moves + + It’s— My forcefield moves + + +@ https://www.parahumans.net/2018/03/10/shadow-5-5/ + - out of the back, “She still would have + + out of the back, “she still would have + + +@ https://www.parahumans.net/2018/03/17/shadow-5-6/ + - have a a specter + + have a specter + + - Spare stuff from dad + + Spare stuff from Dad + + - Peaches and—You mean peachy + + Peaches and— You mean peachy + + - Victoria” she + + Victoria,” she + + +@ https://www.parahumans.net/2018/03/20/shadow-5-7/ + - her order.Two boxes + + her order. Two boxes + + - You and dad + + You and Dad + + - Enjoy time with dad + + Enjoy time with Dad + + - it with Kenzie’ stuff + + it with Kenzie’s stuff + + - The convoy continued to disintegrate. The road as the road made its gradual turn + + The convoy continued to disintegrate as the road made its gradual turn + + +@ https://www.parahumans.net/2018/03/27/shadow-5-10/ + - our heads. the pupil + + our heads. The pupil + + - forearm and her fingertips. and she stumbled into + + forearm and her fingertips, and she stumbled into + + - and nearby bowled over + + and nearly bowled over + + - There’s—Careful, Victoria. + + There’s— Careful, Victoria. + + - Hypnotist Master + + Hypnotist master + + - with Masters in mind + + with masters in mind + + - paralyzed started moving

+ + paralyzed started moving.

+ + +@ https://www.parahumans.net/2018/03/31/shadow-5-11/ + - side of her her chin + + side of her chin + + - Plus my walkman and pocket atari + + Plus my Walkman and Pocket Atari + + - The woman—I turned to look and saw + + The woman— I turned to look and saw + + - Tristan asked.” + + Tristan asked. + + +@ https://www.parahumans.net/2018/04/03/shadow-5-12/ + - lost my grip on him. and my hand + + lost my grip on him, and my hand + + - Tristan-as Capricorn + + Tristan-as-Capricorn + + - were Masters and strangers + + were masters and strangers + + - or if he said something like ‘You’ or “Everyone’, I could + + or if he said something like ‘You’ or ‘Everyone’, I could + + - rain. and I saw + + rain. And I saw + + +@ https://www.parahumans.net/2018/04/07/shadow-interlude-5-x/ + - objectvity + + objectivity + + - “Are the production rates + + “—are the production rates + + - millions—tens of millions- is + + millions—tens of millions—is + + - “—And frankly,” Mr. Nieves said + + “—and frankly,” Mr. Nieves said + + - Because, Balminder,” Kurt said. “You were plausible + + Because, Balminder,” Kurt said, “you were plausible + + - she aid + + she said + + +@ https://www.parahumans.net/2018/04/10/shadow-interlude-5-y/ + - Hopefully—I’m hoping she figures out + + Hopefully— I’m hoping she figures out + + - …It’s not so important when + + …it’s not so important when + + - Kiss and Kill. + + Kiss and kill. + + +@ https://www.parahumans.net/2018/04/17/pitch-6-2/ + - very clear words, only ‘ERIN’ and ‘NO-‘. + + very clear words, only ‘ERIN’ and ‘NO—’. + + - The Mcveay’s + + The McVeays + + +@ https://www.parahumans.net/2018/04/21/pitch-6-3/ + - wall of bodies. the woman behind + + wall of bodies. The woman behind + + - dying, motherfuckers” the bearded + + dying, motherfuckers,” the bearded + + +@ https://www.parahumans.net/2018/04/24/pitch-6-4/ + - glanced back. the others had + + glanced back. The others had + + - Animal Master, likely + + Animal master, likely + + +@ https://www.parahumans.net/2018/04/28/pitch-6-5/ + - of material to to bandage + + of material to bandage + + - Cradle said. his tone was + + Cradle said. His tone was + + - “…Multiply the grudge,” + + “…multiply the grudge,” + + - used flight to stead myself + + used flight to steady myself + + - Capes converged, ready to guard

+ + Capes converged, ready to guard.

+ + +@ https://www.parahumans.net/2018/05/05/pitch-6-7/ + - “—And we wanted to ask for your + + “—and we wanted to ask for your + + - while you were bloody—I shouldn’t be + + while you were bloody— I shouldn’t be + + +@ https://www.parahumans.net/2018/05/08/pitch-6-8/ + - check in on on Ashley and Rain + + check in on Ashley and Rain + + - earth Shin + + Earth Shin + + - one Jackass said + + one jackass said + + - an Über-neighborhood + + an uber-neighborhood + # This seems to lose its umlaut in English; see e.g. https://www.dictionary.com/browse/uber. It's certainly not capitalized. + + +@ https://www.parahumans.net/2018/05/11/pitch-6-9/ + - bunch of Jackasses that + + bunch of jackasses that + + - some of the Jackasses + + some of the jackasses + + - one of the Jackasses turned + + one of the jackasses turned + + - The Jackass next to Vince + + The jackass next to Vince + + - couple of the Jackasses’ + + couple of the jackasses + + - I could hear her, “I’m trying + + I could hear her. “I’m trying + + - all-hands on deck + + all-hands-on-deck + + - the Junior Captain said + + the junior captain said + + +@ https://www.parahumans.net/2018/05/15/torch-7-1/ + - got to go to Church + + got to go to church + + +@ https://www.parahumans.net/2018/05/19/torch-7-2/ + - you had to deal with with could have + + you had to deal with could have + + - —And from other horrors. + + —and from other horrors. + + +@ https://www.parahumans.net/2018/05/22/torch-7-3/ + - by saying,”Isn’t it a rule + + by saying, “Isn’t it a rule + + +@ https://www.parahumans.net/2018/05/26/torch-7-4/ + -

+ + + # This appears to be intentional, but it just duplicates the Next Chapter link (i.e. turning the page in the ebook), so we remove it + + - those hectic days after dad’s head injury + + those hectic days after Dad’s head injury + + - no Master pets + + no master pets + + - day to day basis + + day-to-day basis + + +@ https://www.parahumans.net/2018/05/26/eclipse-x-1/ + - the hole in the floor and the pieces of dad + + the hole in the floor and the pieces of Dad + + - Past what was left of mom + + Past what was left of Mom + + +@ https://www.parahumans.net/2018/05/27/eclipse-x-2/ + - because she she was caught + + because she was caught + + - answer the the second question + + answer the second question + + - discuss goals,” Jessica said. “We think + + discuss goals,” Jessica said, “we think + + +@ https://www.parahumans.net/2018/05/30/eclipse-x-5/ + - no words. and there + + no words. And there + + - hesitated to long + + hesitated too long + + - back., + + back, + + - Wardens’ ID badges + + Wardens ID badges + + +@ https://www.parahumans.net/2018/05/31/eclipse-x-6/ + - a desperate edge to her feelings

+ + a desperate edge to her feelings.

+ + - —To need at least three if + + —to need at least three if + + - We—if you stop and + + We— If you stop and + + - …We’re not especially + + …we’re not especially + + +@ https://www.parahumans.net/2018/06/01/eclipse-x-7/ + - dotting the ‘i’s and slashing the ‘Q’s

+ + dotting the ‘i’s and slashing the ‘Q’s.

+ + - —And they have thinkers + + —and they have thinkers + + - You’re leaving Boston? + + You’re leaving Boston? + + - —Assign her house arrest + + —assign her house arrest + + - Mr… Chief Armstrong + + Mr.… Chief Armstrong + + - The there were monsters out there + + That there were monsters out there + + - “I’m not—I wasn’t—” + + “I’m not— I wasn’t—” + + +@ https://www.parahumans.net/2018/06/02/eclipse-x-8/ + - Bonesaw” Blasto said + + Bonesaw,” Blasto said + + - “Well,” Fappy said. “You know Stan, + + “Well,” Fappy said, “you know Stan, + + - it or not,” Jack said. “I want + + it or not,” Jack said, “I want + + +@ https://www.parahumans.net/2018/06/05/torch-7-5/ + -

\n

I don’t + +

I don’t + + - Chris snorted, “Count yourself lucky. + + Chris snorted. “Count yourself lucky. + + - was your crush Jhett Marion? + + was your crush Jhett Marion? + + - thing aside,” I said. “I mean + + thing aside,” I said, “I mean + + - Fifty…seven + + Fifty… seven + + - brass capped + + brass-capped + + +@ https://www.parahumans.net/2018/06/09/torch-7-6/ + - I saw. the scans of the woman + + I saw. The scans of the woman + + - the woman withw the sunglasses + + the woman with the sunglasses + + +@ https://www.parahumans.net/2018/06/12/torch-7-7/ + - and I can call dad + + and I can call Dad + + - five by three inch + + five-by-three inch + + - staying calm, her voice quieter, “Said your + + staying calm, her voice quieter, “said your + + +@ https://www.parahumans.net/2018/06/16/torch-7-8/ + - you asked him,” Sveta said. “He’d say + + you asked him,” Sveta said, “he’d say + + - Looksee, You mentioned + + Looksee, you mentioned + + +@ https://www.parahumans.net/2018/06/19/torch-7-9/ + - abused by the the transition + + abused by the transition + + - poking around” I said + + poking around,” I said + + - Loss as he said it, “Because + + Loss as he said it, “because + + +@ https://www.parahumans.net/2018/06/23/torch-7-10/ + - black with a a shaved + + black with a shaved + + - Kenzie almost yipped out out a, “No.” + + Kenzie almost yipped out, a “No.” + + - thought things through mid-sentence, “Is that for + + thought things through mid-sentence, “is that for + + - he goes to Church with them + + he goes to church with them + + - maybe,” She said, smiling + + maybe,” she said, smiling + + - fighting, ‘rene + + fighting, ’rene + + - I studied Parahumans before + + I studied parahumans before + + +@ https://www.parahumans.net/2018/06/26/torch-interlude-7-x/ + - Mom and dad were still at the table + + Mom and Dad were still at the table + + - new counter and sink mom and dad had put in + + new counter and sink Mom and Dad had put in + + - mom set down the plates for dad and then herself + + Mom set down the plates for Dad and then herself + + - “Eat,” dad said + + “Eat,” Dad said + + - she gave the bathroom what mom called a once-over + + she gave the bathroom what Mom called a once-over + + - say or do when mom got like this + + say or do when Mom got like this + + - cooked for me,” mom said + + cooked for me,” Mom said + + - of her bag. only one temporary tattoo + + of her bag. Only one temporary tattoo + + - loved—loved- for my + + loved—loved—for my + + - pitched to be heard, “But her antics + + pitched to be heard, “but her antics + + - —Really truly, I hope + + —really truly, I hope + + - big guy said, “Is our mood + + big guy said, “is our mood + + - thing we try to do,” he said. “Is we ask + + thing we try to do,” he said, “is we ask + + - Keith said. “You decide + + Keith said, “you decide + + +@ https://www.parahumans.net/2018/07/03/beacon-8-1/ + - a group of minors,” Dragon said. “Allow others + + a group of minors,” Dragon said, “allow others + + - day to day basis + + day-to-day basis + + +@ https://www.parahumans.net/2018/07/07/beacon-8-2/ + -

Mom and dad.

+ +

Mom and Dad.

+ + - Missisipi + + Mississippi + + - dragoncraft + + Dragon-craft + + +@ https://www.parahumans.net/2018/07/10/beacon-8-3/ + - It’s—I can’t talk to Byron + + It’s— I can’t talk to Byron + + - emergency, we’re capes, Cryptid said + + emergency, we’re capes,” Cryptid said + + - one or two more fallen + + one or two more Fallen + + +@ https://www.parahumans.net/2018/07/14/beacon-8-4/ + - use their surveillance” Kenzie said + + use their surveillance,” Kenzie said + + - and then hit buttons

+ + and then hit buttons.

+ + - I think it’s done + + I think it’s done + + +@ https://www.parahumans.net/2018/07/17/beacon-8-5/ + - on the offensive. chains whirled + + on the offensive. Chains whirled + + - a bit hit to morale + + a big hit to morale + + - mask was only a B- + + mask was only a B− + + - Nothing about it was even B-. + + Nothing about it was even B−. + + +@ https://www.parahumans.net/2018/07/21/beacon-8-6/ + - unfolded umbrella.A metal + + unfolded umbrella. A metal + + - above me. the sky was dark + + above me. The sky was dark + + - she thrwe out a hand + + she threw out a hand + + - corner them,” I said. “They’ll threaten civilians + + corner them,” I said, “they’ll threaten civilians + + - reminiscent of a certain teenage boy-was cast in + + reminiscent of a certain teenage boy—was cast in + + - Errors influence + + Error’s influence + + +@ https://www.parahumans.net/2018/07/24/beacon-8-7/ + - Ashley’s activities therin + + Ashley’s activities therein + + +@ https://www.parahumans.net/2018/07/28/beacon-8-8/ + - “Yeah, that’s breaker” I said. + + “Yeah, that’s breaker,” I said. + + +@ https://www.parahumans.net/2018/07/31/beacon-8-9/ + - you know that dad and I saying + + you know that Dad and I saying + + - was impatient. it was hard to tell + + was impatient. It was hard to tell + + - “Is—Yes,” I finished + + “Is— Yes,” I finished + + +@ https://www.parahumans.net/2018/08/04/beacon-8-10/ + - I’m supposed to be you? + + I’m supposed to be you? + + - She had her Eyehook + + She had her eyehook + + - You—I have to imagine you were + + You— I have to imagine you were + + - I don’t—I can hear your mother + + I don’t— I can hear your mother + + - my A—costume with my makeup at an A + + my A− costume with my makeup at an A + + - now my apartment-, three or four minutes + + now my apartment—three or four minutes + + +@ https://www.parahumans.net/2018/08/07/beacon-8-11/ + - easy to understand story + + easy-to-understand story + + +@ https://www.parahumans.net/2018/08/11/beacon-8-12/ + - who are free now. they’re out there + + who are free now. They’re out there + + - dare you? Hamza barked, again + + dare you?” Hamza barked, again + + +@ https://www.parahumans.net/2018/08/14/beacon-interlude-8-x/ + - attention on Natalie, “this is + + attention on Natalie. “This is + + - Natalie’s beetle + + Natalie’s Beetle + + - adam’s apple + + Adam’s apple + + - Time-time for Kenzie + + Time—time for Kenzie + + +@ https://www.parahumans.net/2018/08/18/beacon-interlude-8-y/ + - A sufficient impact or distraction

+ + A sufficient impact or distraction.

+ + - ‘Hard Boil.’ + + ‘Hard Boil’. + + - tee-vee + + TV + + - teacher’s power + + Teacher’s power + + +@ https://www.parahumans.net/2018/08/21/gleaming-9-1/ + - Probably teacher + + Probably Teacher + + - b-list + + B-list + + +@ https://www.parahumans.net/2018/08/28/gleaming-9-3/ + - Chris in the process. stretched on his way + + Chris in the process. He stretched on his way + + - with a strong Master + + with a strong master + + - —But I can’t make concessions + + —but I can’t make concessions + + - too impatient and angry It was worse because + + too impatient and angry. It was worse because + + - what it’s worth,” Tristan said. “Thanks for + + what it’s worth,” Tristan said, “thanks for + + +@ https://www.parahumans.net/2018/09/01/gleaming-9-4/ + - Power related + + Power-related + + +@ https://www.parahumans.net/2018/09/04/gleaming-9-5/ + - still a voice without confidence + + Still a voice without confidence + + - The only thing that hold him back + + The only things that hold him back + + +@ https://www.parahumans.net/2018/09/08/gleaming-9-6/ + - The patrol had done its work + + The Patrol had done its work + + - guard confirmed as Thralls + + guard confirmed as thralls + + +@ https://www.parahumans.net/2018/09/11/gleaming-9-7/ + - Byron said. he was at + + Byron said. He was at + + - then teacher can’t + + then Teacher can’t + + - “Who is this?”a strange voice asked + + “Who is this?” a strange voice asked + + +@ https://www.parahumans.net/2018/09/13/gleaming-interlude-9-x/ + - he bottles it up. then the bottle cracks + + he bottles it up. Then the bottle cracks + + - that made her her- the shock of white + + that made her her—the shock of white + + r their Papa + s their papa + + - Mama and papa talk + + Mama and Papa talk + + - injuries,” papa said + + injuries,” Papa said + + - papa’s face + + Papa’s face + + - Selfless?” papa asked + + Selfless?” Papa asked + + - kind of selfie, papa + + kind of selfie, Papa + + - part of that,” papa said + + part of that,” Papa said + + - you,” papa said + + you,” Papa said + + - too, papa,” Tristan said + + too, Papa,” Tristan said + + - worked in rigid. the armor’s + + worked in rigid. The armor’s + + - moving and across to + + moving across to + + - fucking sense!
” + + fucking sense
!” + + - that hurt! Stop! + + that hurt! Stop! + + - it was one thing! + + It was one thing! + + - have backed you up! + + have backed you up! + + - mr. Vaughn + + Mr. Vaughn + + +@ https://www.parahumans.net/2018/09/15/gleaming-9-8/ + -

For those who missed it, there was a Thursday update. See the prior chapter.

\n

\n + + + + - Capricorn blue + + Capricorn Blue + + - everything ended, Several of my + + everything ended, several of my + + - you can! You + + you can! You + + +@ https://www.parahumans.net/2018/09/18/gleaming-9-9/ + - teacher thrall + + Teacher thrall + + - need to,” I said, because I’m + + need to,” I said, “because I’m + + - keeping the Warden and his deputy + + keeping the warden and his deputy + + +@ https://www.parahumans.net/2018/09/22/gleaming-interlude-9-y/ + - you up where you’re
weak? You’re + + you up where you’re weak? You’re + + - for you. + + for you.
+ + +@ https://www.parahumans.net/2018/09/25/gleaming-9-10/ + - and mom and dad’s rules + + and Mom and Dad’s rules + + - at the balcony. both wore + + at the balcony. Both wore + + - —But Rain and Sveta + + —but Rain and Sveta + + - Cyrstalclear + + Crystalclear + + - He stopped here he was + + He stopped where he was + + r Warden + s warden + # This is discussing prison wardens, which is a normal job title + + +@ https://www.parahumans.net/2018/09/29/gleaming-9-11/ + - two people died. the forcefield went + + two people died. The forcefield went + + - Maybe wrong to think that within + + Maybe wrong to think that, within + + r Crock o Shit + s Crock o’ Shit + + r the pharmacist + s the Pharmacist + # in the previous chapter, 'the Pharmacist' starts getting capitalized consistently, as if it's a name instead of a profession. Carry it forward. + + - one hundred and ten-percent + + one hundred and ten percent + + +@ https://www.parahumans.net/2018/10/02/gleaming-9-12/ + - teacher hit squad + + Teacher hit squad + + - —You gotta give something + + —you gotta give something + + - the pharmacist + + the Pharmacist + # See comment in https://www.parahumans.net/2018/09/29/gleaming-9-11/ + + +@ https://www.parahumans.net/2018/10/09/gleaming-9-14/ + - in a fireman carry. with my free hand + + in a fireman carry. With my free hand + + - fucking teacher wouldn’t + + fucking Teacher wouldn’t + + - That the Parahumans were taking over + + That the parahumans were taking over + + +@ https://www.parahumans.net/2018/10/13/gleaming-9-15/ + - -fucked in the head. + + —fucked in the head. + + - some of the creases. and from the + + some of the creases, and from the + + - Disappointed? + + Disappointed? + + +@ https://www.parahumans.net/2018/10/16/gleaming-interlude-9-z/ + - cliff he was was expected + + cliff he was expected + + - told the Warden differed + + told the warden differed + + - assistant Warden + + assistant warden + + - What got into you? + + What got into you? + + - what happens to anyone with powers is near anyone + + what happens when anyone with powers is near anyone + + +@ https://www.parahumans.net/2018/10/20/gleaming-interlude-9/ + - Guarderò + + Guarderò. + + - one earth’s worth + + one Earth’s worth + + - the adjacent earth + + the adjacent Earth + + - closest earth + + closest Earth + + - of them, “Would be + + of them, “would be + + - finds it’s root + + finds its root + + +@ https://www.parahumans.net/2018/10/23/polarize-10-1/ + - You let mom talk and + + You let Mom talk and + + - post-Prison + + post-prison + + - I’m sorry, what? What? + + I’m sorry, what? What? + + +@ https://www.parahumans.net/2018/10/27/polarize-10-2/ + - Sveta said, leaning on me

+ + Sveta said, leaning on me.

+ + - and that part of me is really disappointed + + And that part of me is really disappointed + + +@ https://www.parahumans.net/2018/10/30/polarize-10-3/ + - betray-y + + betray-ey + + +@ https://www.parahumans.net/2018/11/03/polarize-10-4/ + - services of mercenaries. depending on timing + + services of mercenaries. Depending on timing + + - we should get going + + We should get going + + - finger—and thumb-rings + + finger- and thumb-rings + + +@ https://www.parahumans.net/2018/11/06/polarize-10-5/ + - because It’s pertinent to + + because it’s pertinent to + + - bangs said, “They won’t give + + bangs said, “they won’t give + + +@ https://www.parahumans.net/2018/11/10/polarize-10-6/ + - Caveat + + caveat + + +@ https://www.parahumans.net/2018/11/13/polarize-10-7/ + - your favorite top-
’ + + your favorite top—
’ + + - -your phone, twice, your banking card- + + —your phone, twice, your banking card— + + - -your pancreas. + + —your pancreas. + + - a hair of headphones + + a pair of headphones + + - Shark girl + + shark girl + + - Be safe—Nat. + + Be safe —Nat. + + +@ https://www.parahumans.net/2018/11/17/polarize-10-8/ + - Sveta said. her hand was removed + + Sveta said. Her hand was removed + + - There were a bag fast food + + There was a bag of fast food + + - anti parahuman + + anti-parahuman + + +@ https://www.parahumans.net/2018/11/20/polarize-10-9/ + - confines of the suit. and rearranged herself + + confines of the suit, and rearranged herself + + - Fuck y—of course + + Fuck y— Of course + + - they had Fallen behind + + they had fallen behind + + +@ https://www.parahumans.net/2018/11/24/interlude-10-x/ + - that would be in time Hopefully

+ + that would be in time. Hopefully.

+ + - consisting of two—and three-person + + consisting of two- and three-person + + - Garotte, Hand at one + + Garotte, hand at one + + - with that, The unfortunately named + + with that, the unfortunately-named + + - not aware of the lipstick am + + not aware of the lipstick + + +@ https://www.parahumans.net/2018/11/27/polarize-10-10/ + - all about how Masters have + + all about how masters have + + - Hardboil + + Hard Boil + + - Sveta added a, “No,” for good measure + + Sveta added a “no” for good measure + + - We need to figure out how—we—handle this + + We need to figure out how
we handle this + + +@ https://www.parahumans.net/2018/12/01/polarize-10-11/ + - See dad, sleep. + + See Dad, sleep. + + - T, u-. + + T, U. + + - I did it with—I’ve done it before + + I did it with— I’ve done it before + + - and to be our liaisons to the Wardens + + and to be our liaison to the Wardens + + - “Twelve hours ago,” I explained. “The Navigators were sent + + “Twelve hours ago,” I explained, “the Navigators were sent + + - You said you wanted to limiting this serious step + + You said you wanted to limit this serious step + + - On any other day, objective, I would + + On any other day, objectively, I would + + - how it were more active + + how it was more active + + +@ https://www.parahumans.net/2018/12/04/polarize-10-12/ + - Dryad Project 3 + + Dryad Project Three + + - Pollution, deforestation, ecology all things that + + Pollution, deforestation, ecology, all things that + + - dropped an expose + + dropped an exposé + + - —But the good feelings + + —but the good feelings + + - A pan—a cure all for + + A pan— A cure-all for + + - No—Yes, but that isn’t + + No— Yes, but that isn’t + + +@ https://www.parahumans.net/2018/12/08/polarize-10-13/ + - A ring thirty feet in diameterand past those thirty feet + + A ring thirty feet in diameter—and past those thirty feet + + - axe—arm + + axe-arm + + - hit him again He wouldn’t simply + + hit him again. He wouldn’t simply + + +@ https://www.parahumans.net/2018/12/11/interlude-10-y/ + - shape of the the moment + + shape of the moment + + - We have! Multiple times! + + We have! Multiple times! + + +@ https://www.parahumans.net/2018/12/15/interlude-10-z/ + - roman with hair on his legs + + Roman with hair on his legs + + - New Brockton primary school + + New Brockton Primary School + + - Rome-Roman’s + + Rome—Roman’s + + +@ https://www.parahumans.net/2018/12/18/blinding-11-1/ + - prisoner and patrol + + prisoner and Patrol + + - before they chage + + before they change + + +@ https://www.parahumans.net/2018/12/22/blinding-11-2/ + - —But please respect + + —but please respect + + +@ https://www.parahumans.net/2018/12/25/blinding-11-3/ + - the pharmacist + + the Pharmacist + # See comment in https://www.parahumans.net/2018/09/29/gleaming-9-11/ + + - …Delivering my coup de grace + + …delivering my coup de grace + + - Flash Gun + + flash gun + + +@ https://www.parahumans.net/2018/12/29/interlude-11-a/ + - Chiet + + Cheit + + - day to day way + + day-to-day way + + +@ https://www.parahumans.net/2019/01/01/blinding-11-4/ + - —But if your head is full of noise + + —but if your head is full of noise + + - One of the Heartbroken—Candy, I was pretty sure, was sitting + + One of the Heartbroken—Candy, I was pretty sure—was sitting + + +@ https://www.parahumans.net/2019/01/05/blinding-11-5/ + - they‘re + + they’re + + - and piece of construction material + + and pieces of construction material + + - the chiming finding it stride + + the chiming finding its stride + + - need to step in. + + need to step in.” + + - a smell had soaked into + + a smell that had soaked into + + - result putting together + + result of putting together + + - ’emergency alert’ + + ‘emergency alert’ + + - Three heartbroken + + Three Heartbroken + + - two heartbroken + + two Heartbroken + + +@ https://www.parahumans.net/2019/01/08/blinding-11-6/ + - Let’s go Let’s make a hole + + Let’s go. Let’s make a hole + + - catch up with the group I saw Foil and Chastity + + catch up with the group. I saw Foil and Chastity + + +@ https://www.parahumans.net/2019/01/12/blinding-11-7/ + - threw the the man + + threw the man + + - Reminded me of mom + + Reminded me of Mom + + - more fragile than it should have been

+ + more fragile than it should have been.

+ + - too close to heartbroken + + too close to Heartbroken + + - Precipice and the heartbroken + + Precipice and the Heartbroken + + - If the heartbroken’s power + + If the Heartbroken’s power + + +@ https://www.parahumans.net/2019/01/15/blinding-11-8/ + - and it it pulled him + + and it pulled him + + - Victoria-flesh + + Victoria-flesh + + +@ https://www.parahumans.net/2019/01/19/interlude-11-b/ + - loading up trucks with basic supplies

+ + loading up trucks with basic supplies.

+ + - I’m sor—that fucking sucks + + I’m sor— That fucking sucks + + - two of the targets was really + + two of the targets were really + + - punch a hold into the ground + + punch a hole into the ground + + +@ https://www.parahumans.net/2019/01/22/interlude-11-c/ + - were a worse adult examples + + were worse adult examples + + - four-times-normal—width + + four-times-normal-width + + - accumualted + + accumulated + + - get away from one swung + + get away from one swing + + - “Cradle—the most intact part of Tattletale said + + “Cradle—” the most intact part of Tattletale said + + - backwards-high five + + backwards high five + + +@ https://www.parahumans.net/2019/01/26/blinding-11-9/ + - I told the mercenary.” + + I told the mercenary. + + - someone had been been called at three + + someone had been called at three + + - I croaked. as she picked up + + I croaked, as she picked up + + - two heartbroken + + two Heartbroken + + - three heartbroken + + three Heartbroken + + - Do yo want me to send + + Do you want me to send + + - PRT—or SWAT-van style + + PRT- or SWAT-van style + + - apparently I + + apparently I + + - Hey Little V + + Hey little V + + +@ https://www.parahumans.net/2019/01/29/blinding-11-10/ + - heartbroken kid + + Heartbroken kid + + - The team, the dynamic with the Undersiders, the Heartbroken, the kids + + The team, the dynamic with the Undersiders, the Heartbroken, the kids + + +@ https://www.parahumans.net/2019/02/02/blinding-11-11/ + - to Capricorn. then she looked + + to Capricorn. Then she looked + + - fucking daughter! + + fucking daughter! + + - The Warrior Monk told me + + the Warrior Monk told me + + - Foil-Hookline + + Foil–Hookline + + - “Fired through a hole I made in my fist.

+ + “Fired through a hole I made in my fist.”

+ + +@ https://www.parahumans.net/2019/02/05/blinding-11-12/ + - and drawers. her legs were stacked against + + and drawers. Her legs were stacked against + + - Not when—not like this. + + Not when— Not like this. + + - Go you, Little V. + + Go you, little V. + + - the King on the chess board + + the king on the chess board + + - Almost Eight? + + Almost eight? + + +@ https://www.parahumans.net/2019/02/09/interlude-12-z/ + - mom just so happened to be busy + + Mom just so happened to be busy + + - Or when mom had + + Or when Mom had + + - mom messed up + + Mom messed up + + - You- upstairs. + + You—upstairs. + + - all the Kiss and Kill things + + all the kiss and kill things + + - relatives houses + + relatives’ houses + + - Do you want to see me go all out? she thought + + Do you want to see me go all out? she thought + + - roof top + + rooftop + + +@ https://www.parahumans.net/2019/02/12/heavens-12-1/ + - And mom’s implying I want + + And Mom’s implying I want + + - ent North + + ent north + + - They headed North + + They headed north + + - It had been Marquis, before + + It had been Marquis’, before + + - police, patrol, or station + + police, Patrol, or station + + - earth-N + + Earth-N + + +@ https://www.parahumans.net/2019/02/16/heavens-12-2/ + - And you- don’t do that + + And you—don’t do that + + - Harbingers? + + Harbingers? + + - “Thing one, thing two + + “Thing One, Thing Two + + +@ https://www.parahumans.net/2019/02/19/interlude-12-e/ + - I want dad + + I want Dad + + - I need dad + + I need Dad + + - going to mars or some + + going to Mars or some + + +@ https://www.parahumans.net/2019/02/23/heavens-12-3/ + - had shaken them good- but I could + + had shaken them good—but I could + + - Harbinger one was down, and two was wounded + + Harbinger One was down, and Two was wounded + + +@ https://www.parahumans.net/2019/02/26/heavens-12-4/ + - but the Harbinger said, “yes,” and I took + + but the Harbinger said “yes,” and I took + + - closer to haunting, “Think you can + + closer to haunting, “think you can + + +@ https://www.parahumans.net/2019/03/02/heavens-12-all/ + - bounce off of the the people + + bounce off of the people + + - a ‘us’ + + an ‘us’ + + - keep going,” Their March says + + keep going,” their March says + + - move, but Vista was, at least a little + + move, but Vista could, at least a little + + - a fraction of a second her more time + + a fraction of a second more time + + - let the charge grow + + lets the charge grow + + - She imagines It would + + She imagines it would + + +@ https://www.parahumans.net/2019/03/05/heavens-12-5/ + - mom, are you okay being + + Mom, are you okay being + + - we didn’t resume the discussion

+ + we didn’t resume the discussion.

+ + - flashlight of the Patrol + + flashlight of the patrol + + - ID’s + + IDs + + - My mom asked + + my mom asked + + +@ https://www.parahumans.net/2019/03/09/heavens-12-6/ + - wrists behind them around around the stomach + + wrists behind them around the stomach + + - back pouch” my mom said + + back pouch,” my mom said + + - protest—Two people held hostage + + protest—two people held hostage + + +@ https://www.parahumans.net/2019/03/12/heavens-12-f/ + - , kay + + , ’kay + + - thinking, the he brushed + + thinking, then he brushed + + +@ https://www.parahumans.net/2019/03/16/heavens-12-7/ + - without knowing. by Love Lost + + without knowing. By Love Lost + + - The man-though he + + The man—though he + + - a chance it might never. + + a chance it might never stop. + + - wrench a weapon free, Curved blades that + + wrench a weapon free. Curved blades that + + - saw the group that standing tallest + + saw the group that was standing tallest + + - T’was + + ’Twas + + +@ https://www.parahumans.net/2019/03/19/heavens-12-8/ + - created glowing orbs. he threw one to my + + created glowing orbs. He threw one to my + + +@ https://www.parahumans.net/2019/03/23/heavens-12-9/ + - Harbinger two was out and Harbinger one + + Harbinger Two was out and Harbinger One + + - pizz dispenser + + Pez dispenser + + - background keeping Crete + + background keeping Cretan + + r Mech + s mech + + +@ https://www.parahumans.net/2019/03/26/heavens-12-none/ + - if I inherit mom’s whole + + if I inherit Mom’s whole + + - wasn’t mom’s whole + + wasn’t Mom’s whole + + - “Fuck,”Capricorn said again + + “Fuck,” Capricorn said again + + - With your friends, your teachers the places you love + + With your friends, your teachers, the places you love + + - every earth + + every Earth + + +@ https://www.parahumans.net/2019/03/29/heavens-12-x/ + - go to sleep,” Her mother said + + go to sleep,” her mother said + + - Night mom + + Night Mom + + - was distorted. if it wasn’t for the fact + + was distorted. If it wasn’t for the fact + + - March said. she flourished her + + March said. She flourished her + + - morning breath—more than morning breath-, but there + + morning breath—more than morning breath—but there + + -

Previous Chapter                                                                               Next Chapter

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

+ +
 
\n
 
+ # This is the best way I can think of to emulate the end of chapter 'fake out' in an ebook format + + - Can we—Can we do my thing + + Can we— Can we do my thing + + - Let me through! + + Let me through! + + - This? That? + + This? That? + + - more saccharine, “You don’t + + more saccharine, “you don’t + + - Damsel told Antares, “Think again + + Damsel told Antares, “think again + + +@ https://www.parahumans.net/2019/04/02/black-13-1/ + -

\n

Previous Chapter                                                                               Next Chapter

\n + + + # Our usual heuristics of removing the first paragraph to remove the previous/next chapter links are broken here because of the 'go back and look at the fake out' comment at the top + + - walls stone and wood. the building + + walls stone and wood. The building + + - he asked

+ + he asked.

+ + - —and my costume leggings + + —And my costume leggings + + - I told Rain, “Is a goodbye. + + I told Rain, “is a goodbye. + + - fiancee + + fiancée + + - Signal fire + + Signal Fire + + - “It’s winter,’ + + “It’s winter,” + + +@ https://www.parahumans.net/2019/04/05/black-13-2/ + - built in protection + + built-in protection + + +@ https://www.parahumans.net/2019/04/09/black-13-3/ + - you have have surmised + + you have surmised + + - pound of flesh, at least—!” + + pound of flesh, at least—!” + + - …Kind of hate hospitals + + …kind of hate hospitals + + - —For them! + + —for them! + + +@ https://www.parahumans.net/2019/04/13/black-13-4/ + - wiped—or perhaps struck- clean. + + wiped—or perhaps struck—clean. + + - —Because it’s a dress + + —because it’s a dress + + - Bam! + + Bam! + + +@ https://www.parahumans.net/2019/04/16/black-13-5/ + - For some of the heartbroken + + For some of the Heartbroken + + +@ https://www.parahumans.net/2019/04/20/black-13-6/ + - I’m a Master, right, you + + I’m a master, right, you + + - been studying, woo
! + + been studying, woo!
+ + - Kenz-Lookout + + Kenz—Lookout + + +@ https://www.parahumans.net/2019/04/23/black-13-7/ + - looked like they were were painted on + + looked like they were painted on + + - —My friend + + —my friend + + - Fucking what? When? How bad + + Fucking what? When? How bad + + +@ https://www.parahumans.net/2019/04/27/black-13-8/ + - cash are involved. there’s a reason + + cash are involved. There’s a reason + + - zero—a circle made with her full hand-, three + + zero—a circle made with her full hand—three + + - what the Wedge is or where + + what the wedge is or where + + +@ https://www.parahumans.net/2019/04/30/black-13-x/ + - technology from another earth + + technology from another Earth + + - from yet another earth + + from yet another Earth + + - in that a sea of yellow + + in that sea of yellow + + r cell five + s Cell Five + + r cell eleven + s Cell Eleven + + r cell nineteen + s Cell Nineteen + + - there were always some overhead + + there were always some over head + + - one of the Theocrats + + one of the theocrats + + +@ https://www.parahumans.net/2019/05/04/black-13-9/ + - thing is,” Tattletale said. “What did + + thing is,” Tattletale said, “what did + + - jacakss + + jackass + + - whether you invite me or not, it’s understandable if you don’t you’re going to want + + whether you invite me or not, it’s understandable if you don’t, you’re going to want + + +@ https://www.parahumans.net/2019/05/07/black-13-10/ + - the interior of this one was quiet-, I could + + the interior of this one was quiet—I could + + - ‘why didn’t Imp back us up’? + + ‘why didn’t Imp back us up?’ + + - panic inducing memories + + panic-inducing memories + + +@ https://www.parahumans.net/2019/05/11/black-13-11/ + - been scummy and and tried + + been scummy and tried + + - —And I wanted to bring it up + + —and I wanted to bring it up + + - —Because I could have pushed harder + + —because I could have pushed harder + + - the Wardens’ bunker + + the Wardens’ Bunker + + - the more distant bunker itself + + the more distant Bunker itself + + +@ https://www.parahumans.net/2019/05/14/13-z/ + - and they were pro-irregular + + and they were pro-Irregular + + +@ https://www.parahumans.net/2019/05/18/breaking-14-1/ + - face—ridiculous notion but still-, if I wrote him a note or sent him a text—less ridiculous notion-, saying + + face—ridiculous notion but still—if I wrote him a note or sent him a text—less ridiculous notion—saying + + - Instead a 1,—2, 4 + + Instead a 1, −2, 4 + + +@ https://www.parahumans.net/2019/05/21/breaking-14-2/ + - if Parahumans like Swansong + + if parahumans like Swansong + + +@ https://www.parahumans.net/2019/05/25/breaking-14-3/ + - actively tamper with it it + + actively tamper with it + + - to reclaim her throne, and I.” + + to reclaim her throne, and I—” + + - A teacher plot + + A Teacher plot + + - Your own mother just went + + your own mother just went + + - Ashley stared int the + + Ashley stared into the + + +@ https://www.parahumans.net/2019/05/28/breaking-14-4/ + - Once Goddess’s earth + + Once Goddess’s Earth + + +@ https://www.parahumans.net/2019/06/01/breaking-14-5/ + - his wife was dressed in patching colors + + his wife was dressed in matching colors + + - Luis said. “he saw a lot of + + Luis said. “He saw a lot of + + +@ https://www.parahumans.net/2019/06/04/breaking-14-6/ + - and the the undo button + + and the undo button + + - progress with mom is slow + + progress with Mom is slow + + - Promises to mom and dad + + Promises to Mom and Dad + + - or innovators—scientists-, they say + + or innovators—scientists—they say + + - PHD + + PhD + + - If I’m asking? + + If I’m asking? + + - Isn’t it? + + Isn’t it? + + +@ https://www.parahumans.net/2019/06/08/breaking-14-7/ + - Regretting sending mom here + + Regretting sending Mom here + + - you’re talking syncope—fainting-, arrythmia, + + you’re talking syncope—fainting, arrythmia, + + - inter-earth + + inter-Earth + + - The Western of the two half-castles + + The western of the two half-castles + + +@ https://www.parahumans.net/2019/06/11/breaking-14-8/ + - the conditions weren’t great-it was cold enough + + the conditions weren’t great—it was cold enough + + - pick up line + + pickup line + + - got me,” Rain said. “Was that + + got me,” Rain said, “was that + + - —Ask for some strings + + —ask for some strings + + - for the needy for Church events + + for the needy for church events + + +@ https://www.parahumans.net/2019/06/15/breaking-14-9/ + - You stay away from mom, you stay away from dad + + You stay away from Mom, you stay away from Dad + + - ‘fuck this, not hitching a ride with—this-‘ + + ‘fuck this, not hitching a ride with this’ + + +@ https://www.parahumans.net/2019/06/18/breaking-14-10/ + - in a real fight-, but in + + in a real fight—but in + + - fall to the mattress, “Let + + fall to the mattress, “let + + - I—Only if you hold onto it. + + I— Only if you hold onto it. + + +@ https://www.parahumans.net/2019/06/22/breaking-14-11/ + - -He’s changing- + + -He’s changing- + + +@ https://www.parahumans.net/2019/06/25/breaking-14-12/ + - -Her phone?— + + -Her phone?- + + - -Have to ask her.— + + -Have to ask her.- + + - -down hall with gate. basement of that part of complx— + + -down hall with gate. basement of that part of complx- + + - -That was us—the message on my display read.—cuz guards— + + -That was us- the message on my display read. -cuz guards- + + - blinfd + + blind + + - This? It’s stupid politics + + This? It’s stupid politics + + +@ https://www.parahumans.net/2019/06/29/breaking-14-z/ + - smirked, leering. her face was stretching + + smirked, leering. Her face was stretching + + - But Master–stranger protocols + + But master–stranger protocols + + - allusion to Master–stranger protocols + + allusion to master–stranger protocols + + - I dealt with ‘m + + I dealt with ’m + + +@ https://www.parahumans.net/2019/07/02/dying-15-a/ + - this sad old man made her think of dad + + this sad old man made her think of Dad + + - scary. that’s all + + scary. That’s all + + - At Anita’s assistance + + At Anita’s insistence + + - kanji for ‘Shi’ + + kanji for ‘shi’ + + - re-learning day to day life + + relearning day-to-day life + + +@ https://www.parahumans.net/2019/07/06/dying-15-1/ + - wall met ceiling. the wall was smooth + + wall met ceiling. The wall was smooth + + - The blond heartbroken + + The blond Heartbroken + + - straight A’s + + straight As + + +@ https://www.parahumans.net/2019/07/09/dying-15-2/ + - I told Precipice

+ + I told Precipice.

+ + - Guys’ gotta be a thirteen + + Guy’s gotta be a thirteen + + - been sitting her for + + been sitting here for + + - a body torn two + + a body torn in two + + - it had eben damaged + + it had been damaged + + - dodge that was fast moving + + dodge something that fast-moving + + - done so far, and crippling + + done so far, crippling + + - ‘hedrons + + ’hedrons + + - post its + + Post-its + + - travelled + + traveled + + +@ https://www.parahumans.net/2019/07/13/dying-15-3/ + - Didn’t ask about mom, dad, or + + Didn’t ask about Mom, Dad, or + + - —And we’re heading upstairs + + —and we’re heading upstairs + + +@ https://www.parahumans.net/2019/07/16/dying-15-4/ + - There was was no ‘good’ + + There was no ‘good’ + + - was a H turned + + was an H turned + + - Needles receded as the entered + + Needles receded as they entered + + - flanking help other teams + + flanking to help other teams + + - water off a ducks’ back + + water off a duck’s back + + - the damage segments around + + the damaged segments around + + - when we’re done this mission + + when we’re done with this mission + + - If you take the current device with you can use it again + + If you take the current device with, you can use it again + + - one remaining Thrall + + one remaining thrall + + - Team copper-white + + Team Copper-White + + - Caraytid + + Caryatid + + +@ https://www.parahumans.net/2019/07/20/dying-15-5/ + - worth of of water + + worth of water + + - mind controlling + + mind-controlling + + - range of the Halo + + range of the halo + + - tear up the Haloed angel + + tear up the haloed angel + + - her power helping, to keep her there instead of falling + + her power helping to keep her there instead of falling + + - the time manipulating tinkers + + the time-manipulating tinkers + + +@ https://www.parahumans.net/2019/07/23/dying-15-6/ + - The teams had finished picking

+ + The teams had finished picking.

+ + - no wifi + + no Wi-Fi + + - a of linked metal segments + + a ??? of linked metal segments + + - Things one through whatever + + Things One through whatever + + - close to identical powersets + + close-to-identical powersets + + - The second they were out jailer’s door + + The second they were out of the jailer’s door + + - my Aunt’s + + my aunt’s + + +@ https://www.parahumans.net/2019/07/27/dying-15-7/ + - stranger or Master in + + stranger or master in + + - d—! _ ! d— + + d- ! _ ! d- + + +@ https://www.parahumans.net/2019/07/30/dying-15-8/ + - I thought. the dosage was supposed + + I thought. The dosage was supposed + + - I got a glimpse. it’s fucking with me + + I got a glimpse. It’s fucking with me + + - ‘aunt Rachel‘s’ + + ‘Aunt Rachel’s’ + + - Letting teacher go, knowing two members + + Letting Teacher go, knowing two members + + - using then to help hold up + + using them to help hold up + + +@ https://www.parahumans.net/2019/08/03/dying-15-x/ + - The Halo protected against + + The halo protected against + + - Normally teacher granted something + + Normally Teacher granted something + + - Carbon Dioxide bubbles manifesting + + Carbon dioxide bubbles manifesting + + - got the Thrall Commander, right + + got the thrall commander, right + + - the Yàngbǎn supported squad + + the Yàngbǎn-supported squad + + - radius in you systems + + radius in your systems + + +@ https://www.parahumans.net/2019/08/06/dying-15-y/ + - little miss Webb’s way + + little Miss Webb’s way + + +@ https://www.parahumans.net/2019/08/10/dying-15-z/ + - All around her, Thralls paid her their worship + + All around her, thralls paid her their worship + + - almost floated almost three hundred thousand + + almost floated amongst three hundred thousand + + - parahuman’s hackers + + parahumans’ hackers + + - the room, and them him + + the room, and then him + + - transcendant + + transcendent + + - The one who was slicing up the supporting walls ground rumbled, the floor twisted, the house-sized turbine in the center of the room lost some of its foundation + + The one who was slicing up the supporting walls—

\n

The ground rumbled, the floor twisted, the house-sized turbine in the center of the room lost some of its foundation + # This paragraph break probably wasn't what was intended, but a good chunk of the sentence is missing, so this is the best fix I can think of. + + +@ https://www.parahumans.net/2019/08/13/from-within-16-1/ + - wasn’t A.I. it was just a picture + + wasn’t A.I. It was just a picture + + - end of Summer that + + end of summer that + + - or get back to where you + + or to get back to where you + + +@ https://www.parahumans.net/2019/08/17/from-within-16-2/ + - a small part of that was being being grumpy + + a small part of that was being grumpy + + - Hardboil + + Hard Boil + + - after class in Math, my + + after class in math, my + + - My point is, If you + + My point is, if you + + - loyalty inducing Goddesses + + loyalty-inducing Goddesses + + - Did you get an impression about her character, or anything weird. + + Did you get an impression about her character, or anything weird? + + +@ https://www.parahumans.net/2019/08/20/from-within-16-3/ + - small face on on a fifteen inch + + small face on a fifteen inch + + - for the recording.” + + for the recording. + + - —But one of us could still + + —but one of us could still + + +@ https://www.parahumans.net/2019/08/24/from-within-16-4/ + - the rest black and slim. with doodle-like drawings + + the rest black and slim, with doodle-like drawings + + - trophy wrack + + trophy rack + + - hopped onto his back for the extra eight + + hopped onto his back for the extra height + + +@ https://www.parahumans.net/2019/08/27/from-within-16-5/ + - thing number one. it’s not a lot + + thing number one. It’s not a lot + + - French toast + + french toast + + - put into Neutral out of + + put into neutral out of + + - after Mockument’s had hatched that + + after Mockument had hatched that + + +@ https://www.parahumans.net/2019/08/31/from-within-16-6/ + - letters I wrote to dad’s friends + + letters I wrote to Dad’s friends + + - —But that might be intentional + + —but that might be intentional + + +@ https://www.parahumans.net/2019/09/03/from-within-16-7/ + - aunt Rachel + + Aunt Rachel + + - for Kenzie to high five + + for Kenzie to high-five + # Here it's a verb + + +@ https://www.parahumans.net/2019/09/07/from-within-16-8/ + - Giant lightning man guard dog + + Giant lightning-man guard dog + + - 35: 10 + + 35:10 + + - pluckign + + plucking + + - special event space + + Special event space + + +@ https://www.parahumans.net/2019/09/10/from-within-16-9/ + - changers and and shakers + + changers and shakers + + - the Twins’ portion of the room + + the twins’ portion of the room + + - one central area—No weapon—and swung backhanded + + one central area—no weapon—and swung backhanded + + - shifted course to favor the smallest portion of the gap leaped the ditch + + shifted course to favor the smallest portion of the gap and leaped the ditch + + - —It’s not three-dimensional + + —it’s not three-dimensional + + - a work bench + + a workbench + + - —Don’t shoot it! + + —don’t shoot it! + + +@ https://www.parahumans.net/2019/09/14/from-within-16-10/ + - carried on. out of + + carried on, out of + + - That-. Okay. + + That— Okay. + + - combat trained + + combat-trained + + +@ https://www.parahumans.net/2019/09/17/from-within-16-11/ + - Warrior monk + + Warrior Monk + + - Empire Eighty-eight + + Empire Eighty-Eight + + +@ https://www.parahumans.net/2019/09/21/from-within-16-12/ + - harder than normal exhalation + + harder-than-normal exhalation + + - maybe a bit to the right. “There’s probably a + + maybe a bit to the right, “there’s probably a + + - —We need to do this fast + + —we need to do this fast + + +@ https://www.parahumans.net/2019/09/24/from-within-16-y/ + - …She was my first kiss + + …she was my first kiss + + - another on the railing. “I’m not + + another on the railing, “I’m not + + - that out loud, “—But you’re a therapist + + that out loud, “—but you’re a therapist + + - monster slaying + + monster-slaying + + - so important they’d focus on you’?” + + so important they’d focus on you?’” + + - Than in B—In B, the woman + + Than in B—in B, the woman + + - insistent, annoyed. “I could + + insistent, annoyed, “I could + + - Listen! + + Listen! + + - “—But when I shook your hand + + “—but when I shook your hand + + - That,” Chris said. “Is what + + That,” Chris said, “is what + + - transcending earth and humanity + + transcending Earth and humanity + + - day to day stuff + + day-to-day stuff + + - day to day work + + day-to-day work + + +@ https://www.parahumans.net/2019/09/28/from-within-16-z/ + - ducked their heads down and hurried

+ + ducked their heads down and hurried.

+ + - in the way,”she said + + in the way,” she said + + - his voice just for her. “I’ll be + + his voice just for her, “I’ll be + + - through the threshold to the. + + through the threshold. + + r capitol + s capital + + - —But none of that would + + —but none of that would + + - the Doctor replied + + the doctor replied + + - …It’d be exactly the same + + …it’d be exactly the same + + - This—This had been just for her. + + This—this had been just for her. + + +@ https://www.parahumans.net/2019/10/01/sundown-17-1/ + - mind of dad after his head injury + + mind of Dad after his head injury + + - Some—many- were unwillingly + + Some—many—were unwillingly + + - looking down at my hand at her arm and my hand + + looking down at her arm and my hand + + - more more thing hanging over our heads + + one more thing hanging over our heads + + - my mothers cheeks + + my mother’s cheeks + + - —Understand, please + + —understand, please + + - “Victoria,” Crystal’s voice was gentle + + “Victoria.” Crystal’s voice was gentle + + +@ https://www.parahumans.net/2019/10/05/sundown-17-2/ + - egg for Crystal and mom + + egg for Crystal and Mom + + -

Me:
+ +

Me:
+ + -

Vista (Little V):
+ +

Vista (Little V):
+ + - few minutes of peace, damn it.— + + few minutes of peace, damn it— + + r ‘Clear + s ’Clear + + +@ https://www.parahumans.net/2019/10/08/sundown-17-3/ + - say, Math class + + say, math class + + - hang outs + + hangouts + + - + + ’ + + - “—Which I’m not.” + + “—which I’m not.” + + - Vista for the kid’s sake + + Vista for the kids’ sake + + - Day to day activities + + Day-to-day activities + + - tower crescent avenue + + Tower Crescent Avenue + + - all had to deal with ‘heavy’. + + all had to deal with ‘heavy’.” + + - stuff?” I spoke up, “it get into that control + + stuff?” I spoke up. “It gets into that control + + - talked to me a like + + talked to me like + + - call me Big V + + call me big V + + +@ https://www.parahumans.net/2019/10/12/sundown-17-4/ + - on resisting Master influence + + on resisting master influence + + - CDs and Vinyls + + CDs and vinyls + + - “P.R.T.” + + “PRT.” + + - second or third string Wardens + + second- or third-string Wardens + + - intern level clerks + + intern-level clerks + + - half way + + halfway + + - her tone didn’t soft + + her tone didn’t soften + + - Jessica, Mr… + + Jessica, Mr.… + + - —Captive + + —captive + + - come from? what language + + come from? What language + + +@ https://www.parahumans.net/2019/10/15/sundown-17-5/ + - Is mom walking without difficulty + + Is Mom walking without difficulty + + - Through valkyrie + + Through Valkyrie + + - “‘Lo.” + + “’Lo.” + + +@ https://www.parahumans.net/2019/10/19/sundown-17-6/ + - Probably dad + + Probably Dad + + - and no and no rejiggered rat + + and no rejiggered rat + + - Harder headed + + Harder-headed + + - you proved my sister right? Tired, + + you proved my sister right? Tired, + + - boundary,” He whispered + + boundary,” he whispered + + +@ https://www.parahumans.net/2019/10/22/sundown-17-7/ + - art good enough to to keep forever + + art good enough to keep forever + + - Golem explained

+ + Golem explained.

+ + - see the Lab + + see the lab + + +@ https://www.parahumans.net/2019/10/26/sundown-17-8/ + - one primary goal—me-, and who + + one primary goal—me—and who + + - She’s aggressive If anyone makes + + She’s aggressive. If anyone makes + + - —They mobbed Lookout + + —they mobbed Lookout + + - Of Course Kenzie + + Of course Kenzie + + - Rain about Girls + + Rain about girls + + - I typed: The one + + I typed: The one + + - realize,” Seir called out. “If a fight + + realize,” Seir called out, “if a fight + + - was emotion resistant + + was emotion-resistant + + - Thank you, fragile one + + Thank you, Fragile One + + +@ https://www.parahumans.net/2019/10/29/sundown-17-9/ + - —Are you going to be wishing + + —are you going to be wishing + + - Asking question? + + Asking a question? + + +@ https://www.parahumans.net/2019/11/02/sundown-17-10/ + - wanted you to go to mom if you + + wanted you to go to Mom if you + + - that didn’t betray too much

+ + that didn’t betray too much.

+ + - say Molasses + + say molasses + + - ‘nother + + ’nother + + - ‘she peed on me!’ + + ‘she peed on me!’. + + - madam Mayor + + Madam Mayor + + +@ https://www.parahumans.net/2019/11/05/interlude-17-x-sundown/ + - five-o’clock shadow + + five o’clock shadow + + - nervous looking guy + + nervous-looking guy + + - you have drugs? Alcohol? Cigarettes? I have + + you have drugs? Alcohol? Cigarettes? I have + + - Not by mom or dad + + Not by Mom or Dad + + +@ https://www.parahumans.net/2019/11/09/interlude-17-y-sundown/ + - Because it made mom come + + Because it made Mom come + + - new titan + + new Titan + + - anti parahumans + + anti-parahumans + + - hit the Anti-parahumans + + hit the anti-parahumans + + +@ https://www.parahumans.net/2019/11/12/interlude-17-z-sundown/ + - had his powers. the forcefield above + + had his powers. The forcefield above + + r titan(?![a-z]) + s Titan + + - What if you weren’t? + + What if you weren’t? + + - Victor, Can you go join Tribute + + Victor, can you go join Tribute + + - The forcefield above him elaborate and getting + + The forcefield above him was elaborate and getting + + - Their faculties were diminished, but

+ + Their faculties were diminished, but—

+ + - Flashbang, he saw was one of the + + Flashbang, he saw, was one of the + + - the palm, Out each foot, and out of the mouth.lifting one + + the palm. Out each foot, and out of the mouth. Lifting one + + - no eyes; only a blindfold + + no eyes, only a blindfold + + - lightness of a feather landing, came to perch + + lightness of a feather landing, it came to perch + + - …The only things that are + + …the only things that are + + +@ https://www.parahumans.net/2019/11/16/radiation-18-1/ + - worked for the P.R.T. + + worked for the PRT. + + r titan(?![a-z]) + s Titan + + - the Fallen Raid or the Prison? + + the Fallen raid or the prison? + + +@ https://www.parahumans.net/2019/11/19/radiation-18-2/ + - looking for mom in the crowd + + looking for Mom in the crowd + + - “Entrapment.” + + “Entrapment.” + + - tents last Winter or Spring + + tents last winter or spring + + r titan(?![a-z]) + s Titan + + - condemnation free + + condemnation-free + + - eyes heavily decorate with gray + + eyes heavily decorated with gray + + - Yuh! + + Yuh! + + - cultured accent, “Is that us + + cultured accent, “is that us + + - to force one.” + + to force one’.” + + - between the Titans Pull + + between the Titans. Pull + + +@ https://www.parahumans.net/2019/11/23/radiation-18-3/ + - in the eyes. they were a + + in the eyes. They were a + + - first look at a titan + + first look at a Titan + + - too much fo a retreat + + too much of a retreat + + - said, “after we were all + + said, “After we were all + + - reconicle + + reconcile + + +@ https://www.parahumans.net/2019/11/26/radiation-18-4/ + - bucked a little with the the impact + + bucked a little with the impact + + - you go. no joke, no wiggle + + you go. No joke, no wiggle + + - some business headquarters I was in

+ + some business headquarters I was in.

+ + - hunched-over titan + + hunched-over Titan + + - experience the world, fragile one + + experience the world, Fragile One + + - chime in, fragile one + + chime in, Fragile One + + - syndicate-awareness + + Syndicate-awareness + + - gray Jester Mockument was like + + gray jester Mockument like + + - he halfway back + + he was halfway back + + - master of biology + + mastery of biology + + - for most move, or raise + + for most moves, or raise + + - wasn’t hookline’s + + wasn’t Hookline’s + + - Chicken little + + Chicken Little + + +@ https://www.parahumans.net/2019/11/30/radiation-18-5/ + - jumping of a cardboard + + jumping off a cardboard + + - Tattletale said. “That breastplate + + Tattletale said, “that breastplate + + - they were gas damaged + + they were gas-damaged + + - “skewer them to + + “Skewer them to + + - …You have to conserve + + …you have to conserve + + - Shorcut + + Shortcut + + +@ https://www.parahumans.net/2019/12/03/radiation-18-6/ + - Some Master minions + + Some master minions + + - bomb to a titan + + bomb to a Titan + + - military inspired + + military-inspired + + - a rough fight + + a rough flight + + +@ https://www.parahumans.net/2019/12/07/radiation-18-7/ + - Couple of of times a month + + Couple of times a month + + - This would be the Church. + + This would be the church. + + - my Uncle said + + my uncle said + + - my Uncle asked + + my uncle asked + + - Only Jester and my Uncle were + + Only Jester and my uncle were + + - Victoria?” My Uncle asked + + Victoria?” my uncle asked + + - end of the Summer + + end of the summer + + - five pound phone + + five-pound phone + + - He was slowly knitting itself together + + He was slowly knitting himself together + + - and uh, Stables + + and uh, stables + + - feel the meta tines + + feel the metal tines + + - back at the Workshop + + back at the workshop + + - Victoria,” My uncle + + Victoria,” my uncle + + +@ https://www.parahumans.net/2019/12/10/radiation-18-8/ + - Parahuman Sciences + + parahuman sciences + + - protocols in action.’ + + protocols in action’. + + - “—Too close + + “—too close + + - Ten-thirty-six + + Ten thirty-six + + - “—He was warm and safe + + “—he was warm and safe + + +@ https://www.parahumans.net/2019/12/14/radiation-18-9/ + - the next titan + + the next Titan + + - Kenzie said. Give me a minute. + + Kenzie said. “Give me a minute. + + - Sveta said. Especially if we + + Sveta said. “Especially if we + + - from the cold, though his face + + from the cold; though his face + + +@ https://www.parahumans.net/2019/12/17/radiation-18-10/ + - one titan dogging me + + one Titan dogging me + + - Capes on two rises + + Capes on two risers + + +@ https://www.parahumans.net/2019/12/21/interlude-18-z-radiation/ + - face where her Uncle would see + + face where her uncle would see + + - Her Uncle put his hand + + Her uncle put his hand + + - and saw her Aunt and Uncle approaching + + and saw her aunt and uncle approaching + + r ([Tt]he) Giantess + s $1 giantess + # 14 other instances in this chapter are not capitalized + + - had allies. connections. + + had allies. Connections. + + +@ https://www.parahumans.net/2019/12/24/infrared-19-1/ + - Victoria,” my Aunt said + + Victoria,” my aunt said + + r ([Tt]he) stranger + s $1 Stranger + # See convert-worker.js; this corrects an over-correction + + - doing the damage herself + + doing the damage themselves + + - This? This + + This? This + + +@ https://www.parahumans.net/2019/12/28/infrared-19-2/ + - a violent exclamation

+ + a violent exclamation.

+ + -

Three seconds

+ +

Three seconds.

+ + - scream—no sound when viewing crystal-pictures, of course-, and + + scream—no sound when viewing crystal-pictures, of course—and + + r ([Tt]he) stranger + s $1 Stranger + # See convert-worker.js; this corrects an over-correction + + - because the titan was + + because the Titan was + + - endless flesh monster were + + endless flesh monsters were + + - putting it of balance + + putting it off balance + + - What lay us below + + What lay below us + + - Do you have any regrets now? + + Do you have any regrets now? + + - Stygean Blue + + stygian blue + + - Except the feeling of breached + + Except the feeling of being breached + + - best guess of it’s location + + best guess of its location + + - Dream Room + + dream room + + - ‘EM + + ’EM + + - In effect, Powers were different + + In effect, powers were different + + +@ https://www.parahumans.net/2020/01/01/interlude-19-a/ + - “I’m fine” Egg said + + “I’m fine,” Egg said + + - can’t induce triggers There were parahumans + + can’t induce triggers. There were parahumans + + - into the conversation, “You do some + + into the conversation, “you do some + + - None of us do, Egg thought + + None of us do, Egg thought + + - Our ‘number zero’s wife + + Our ‘number zero’s’ wife + + - his voice was hard, “You took + + his voice was hard, “you took + + - You don’t get to do that! + + You don’t get to do that! + + - Almost a Figurehead + + Almost a figurehead + + - Can’t fist bump + + Can’t fist-bump + # Here it's a verb + + - that other Parahumans are + + that other parahumans are + + +@ https://www.parahumans.net/2020/01/04/infrared-19-3/ + - I thought of dad, seeing him hug my mother + + I thought of Dad, seeing him hug my mother + + - One titan mobilizing + + One Titan mobilizing + + - the horrifying titan + + the horrifying Titan + + - that stranger + + that Stranger + + - I could Strands worked to braid together + + I could see strands working to braid together + + - any of the Master Protocols + + any of the master protocols + + +@ https://www.parahumans.net/2020/01/07/infrared-19-4/ + - talked to them? or done + + talked to them? Or done + + - all nighters + + all-nighters + + - the other cases + + the other Cases + + +@ https://www.parahumans.net/2020/01/11/infrared-19-b/ + - or when you divorce dad + + or when you divorce Dad + + - Hey mom? Mom + + Hey Mom? Mom + + - or heard of the Master who had created + + or heard of the master who had created + + - pretty sure it’s Master + + pretty sure it’s master + + - Love Lost is Master-class + + Love Lost is master-class + + - opportunity to handpick people

+ + opportunity to handpick people.

+ + - pause, drew its attention

+ + pause, drew its attention.

+ + - someone my Aunt and Uncle deemed subversive + + someone my aunt and uncle deemed subversive + + - Looks after my Aunt while my Uncle + + Looks after my aunt while my uncle + + - can understand your Aunt and Uncle + + can understand your aunt and uncle + + - —And I think I have a grasp + + —and I think I have a grasp + + - emotion driven + + emotion-driven + + +@ https://www.parahumans.net/2020/01/14/infrared-19-c/ + - -maim, destroy, tear it all down— + + —maim, destroy, tear it all down— + + - -make it hurt, torture, butcher, kill— + + —make it hurt, torture, butcher, kill— + + - —Retaliate— + + —Retaliate— + + - —die quickly, if he has to die. + + —die quickly, if he has to die. + + - close mouthed + + close-mouthed + + - “…Don’t really trust + + “…don’t really trust + + +@ https://www.parahumans.net/2020/01/18/infrared-19-5/ + - liqud Titan + + liquid Titan + + - done at the Prison + + done at the prison + + +@ https://www.parahumans.net/2020/01/21/infrared-19-6/ + - -through the emotion. Emote through the emotion. Emote— + + —through the emotion. Emote through the emotion. Emote— + + - titan Ophion’s + + Titan Ophion’s + + - Work with me, fragile one + + Work with me, Fragile One + + - ‘fragile one’ + + ‘Fragile One’ + + - “—But there won’t be any effects + + “—but there won’t be any effects + + - One of his Titans lurked + + One of his giants lurked + + - furously + + furiously + + - what I’d looked, hadn’t registered + + what I’d looked at, hadn’t registered + + - Mother Titan + + Mother Giant + + - Adrenline + + Adrenaline + + - ex-Prison + + ex-prison + + - Chris and the Syringe + + Chris and the syringe + + - “…She might have gotten + + “…she might have gotten + + - “—It was Jessica accepting + + “—it was Jessica accepting + + - We saw people running around.

+ + We saw people running around.”

+ + +@ https://www.parahumans.net/2020/01/25/infrared-19-d/ + - look after mom + + look after Mom + + - pink-a line of red-pink + + pink—a line of red—pink + + - recruited for busy work + + recruited for busywork + + - Steamwheel went Rogue + + Steamwheel went rogue + + - mother said. Such a horrible + + mother said. “Such a horrible + + +@ https://www.parahumans.net/2020/01/28/infrared-19-e/ + - so mom doesn’t end up alone + + so Mom doesn’t end up alone + + - “No!” she was almost drowned out + + “No!” She was almost drowned out + + +@ https://www.parahumans.net/2020/02/02/infrared-19-7/ + - I really wasn’t. really + + I really wasn’t. Really + + - ‘I have that and ‘I don’t want it’ + + ‘I have that and I don’t want it’ + + - number boy + + Number Boy + + +@ https://www.parahumans.net/2020/02/04/infrared-19-8/ + - Lessons from mom, age thirteen + + Lessons from Mom, age thirteen + + - relatively speaking” Number Five + + relatively speaking,” Number Five + + - Skitter, Khepri + + Skitter, Khepri + + - built in spears + + built-in spears + + +@ https://www.parahumans.net/2020/02/08/infrared-19-9/ + - had insisted she or dad drive us + + had insisted she or Dad drive us + + - you know about” my Aunt Sarah said + + you know about,” my Aunt Sarah said + + - so they grow in…” + + so they grow in…” + + - my Uncle said + + my uncle said + + - Anywhere else? + + Anywhere else? + + - do you understand about Trigger events + + do you understand about trigger events + + - good day,” my mother said, “The best + + good day,” my mother said, “the best + + - happen to you,” My mother said + + happen to you,” my mother said + + +@ https://www.parahumans.net/2020/02/11/infrared-19-f/ + - while Aisha stuck with mom + + while Aisha stuck with Mom + + - while mom did her own thing + + while Mom did her own thing + + - still hadn’t been repeated from the fights + + still hadn’t been repaired from the fights + + - “Hey!” the girl turned + + “Hey!” The girl turned + + - Lookout, How long do you need + + Lookout, how long do you need + + - You guy should know + + You guys should know + + - he’d gotten more of dad + + he’d gotten more of Dad + + - Its Capricorn + + It’s Capricorn + + +@ https://www.parahumans.net/2020/02/15/infrared-19-10/ + - Stuff to do with mom + + Stuff to do with Mom + + - thinking about mom getting on my case + + thinking about Mom getting on my case + + - figure out while she was gone. we’ll see who + + figure out while she was gone. We’ll see who + + - miligram + + milligram + + - same clothes that had been issues to the refugees + + same clothes that had been issued to the refugees + + +@ https://www.parahumans.net/2020/02/18/infrared-19-g/ + - Imp and the heartbroken + + Imp and the Heartbroken + + - That’s the way it always goes I get close to people + + That’s the way it always goes—I get close to people + + - The voices, a veritable crowd, was audible now + + The voices, a veritable crowd, were audible now + + +@ https://www.parahumans.net/2020/02/23/infrared-19-z/ + - 5’1 “ + + 5′1″ + + - pink and black titan + + pink and black Titan + + - throguh + + through + + +@ https://www.parahumans.net/2020/02/25/last-20-1/ + - across this clearing. eyes, cameras + + across this clearing. Eyes, cameras + + - monsters, and to use the phrasing he liked + + monsters, to use the phrasing he liked + + - about giving short speeches. I couldn’t help + + about giving short speeches, I couldn’t help + + - this Endbringer that wasn’t brutish and noisy + + this Endbringer wasn’t brutish and noisy + + - like a dance with wings + + like a dancer with wings + + - a gravely sound + + a gravelly sound + + - trying to remain peripherally aware of. + + trying to remain peripherally aware. + + - The scream, the fact was + + The scream, the fact we + + - The water receded before tsunami + + The water receded before a tsunami + + - Stay the course!

+ + Stay the course!”

+ + +@ https://www.parahumans.net/2020/02/29/last-20-2/ + - Go! + + Go! + + +@ https://www.parahumans.net/2020/03/03/last-20-3/ + - Get-between the words + + Get——between the words + + +@ https://www.parahumans.net/2020/03/07/last-20-4/ + - peace!” Cryptid growled + + peace!” Cryptid growled + + - I’m going crazy,” Sveta remarked. “It’s you + + I’m going crazy,” Sveta remarked, “it’s you + + +@ https://www.parahumans.net/2020/03/10/last-20-5/ + - “…It’s slipping through our + + “…it’s slipping through our + + +@ https://www.parahumans.net/2020/03/15/last-20-6/ + - Strikes, brutes, breakers + + Strikers, brutes, breakers + + +@ https://www.parahumans.net/2020/03/17/last-20-7/ + - the pain in the ass heroine + + the pain-in-the-ass heroine + + - manton limit + + Manton limit + + +@ https://www.parahumans.net/2020/03/21/last-20-8/ + - For Humanity? + + For humanity? + + - a plan for Endgame + + a plan for endgame + + - Saturday Morning cartoon + + Saturday-morning cartoon + # https://en.wikipedia.org/wiki/Saturday-morning_cartoon + + - Simurgh driven future + + Simurgh-driven future + + - the Entities + + the entities + + +@ https://www.parahumans.net/2020/03/24/last-20-9/ + - you could help miss—help Antares + + you could help Miss—help Antares + + - Did I scare him? + + Did I scare him? + + r nurse Leah + s Nurse Leah + + - “…But I have to draw + + “…but I have to draw + + - break Capricorn’s parents hearts + + break Capricorn’s parents’ hearts + + +@ https://www.parahumans.net/2020/03/31/last-20-10/ + - shaping it as it rolled out. it became a circular + + shaping it as it rolled out. It became a circular + + +@ https://www.parahumans.net/2020/04/04/last-20-b/ + - Aurora Borealis + + aurora borealis + + - the snow fall and + + the snowfall and + + - the more boy crazy girls + + the more boy-crazy girls + + - hostage with us, too! + + hostage with us, too! + + - done, prez + + done, Prez + + - The—-bye. + + The——bye. + + - who would gave gone after + + who would have gone after + + - a problem?” Her dad asked + + a problem?” her dad asked + + - her fathers hand + + her father’s hand + + +@ https://www.parahumans.net/2020/04/07/last-20-11/ + - had harangued the P.R.T., even though the Patrol had + + had harangued the PRT, even though the patrol had + + - “Actually,” Tattletale said. “I’ve been going + + “Actually,” Tattletale said, “I’ve been going + + - It’s not hell either + + It’s not Hell either + + - damocles + + Damocles + + +@ https://www.parahumans.net/2020/04/11/last-20-e1/ + - newly formed Protectorate + + newly-formed Protectorate + + - looked out over the city, and feeling shock + + looked out over the city, and felt shock + + +@ https://www.parahumans.net/2020/04/14/last-20-e2/ + - a few years where father felt like + + a few years where Father felt like + + - “—And the escaped prisoners + + “—and the escaped prisoners + + - case by case basis + + case-by-case basis + + +@ https://www.parahumans.net/2020/04/18/last-20-e3/ + - madness inducing years of isolation + + madness-inducing years of isolation + + - Finale! Now! + + Finale! Now! + + +@ https://www.parahumans.net/2020/04/21/last-20-e4/ + - grown around the the maille sheath + + grown around the maille sheath + + - the size of a deserted earth + + the size of a deserted Earth + + +@ https://www.parahumans.net/2020/04/25/last-20-e5/ + - She has has some past therapy + + She has had some past therapy + + -

It was a sunny spring + +

It was a sunny spring + + - living like a king.

+ + living like a king.

+ + - dont’ + + don’t + + - its a nightmare I know + + it’s a nightmare I know + + - what to do.”

\n

“Imp was saying Lookout + + what to do.

\n

“Imp was saying Lookout + # https://english.stackexchange.com/q/2288/242244 + + - listening, lost in tinkering—

+ + listening, lost in tinkering—”

+ + -

:Transmit
\nI’ve got + +

:Transmit
I’ve got + + +@ https://www.parahumans.net/2020/04/28/last-20-e6/ + - mourning Eric and dad + + mourning Eric and Dad + + - ongoing fight with mom + + ongoing fight with Mom + + - His eyes locked to mom + + His eyes locked to Mom + + - the backup that mom provided + + the backup that Mom provided + + - Back to mom + + Back to Mom + + - Gold morning + + Gold Morning + + - pay it safe + + play it safe + + - “—You’ll want to pass on + + “—you’ll want to pass on + + - cross the Ocean + + cross the ocean + + +@ https://www.parahumans.net/2020/05/02/last-20-end/ + - saying dad had custody + + saying Dad had custody + + - I lied and said you and dad gave + + I lied and said you and Dad gave + + - their reservations about you and dad. But whatever
. + + their reservations about you and Dad. But whatever.
+ + - decide if it’s you or dad + + decide if it’s you or Dad + + - Your issue with dad + + Your issue with Dad + + - My boss is-was + + My boss is—was + + - he mom shook her head + + her mom shook her head + + - with black slacks. his hair was chin + + with black slacks. His hair was chin + + - human right’s abuses + + human rights abuses + + - ‘us‘ + + ‘us’ + + - captain Gaile + + Captain Gaile diff --git a/substitutions/worm.subs b/substitutions/worm.subs new file mode 100644 index 0000000..9df1bc7 --- /dev/null +++ b/substitutions/worm.subs @@ -0,0 +1,3574 @@ +@ https://parahumans.wordpress.com/2011/06/11/1-1/ + - bugs; Flies, ants + + bugs: flies, ants + + -

Brief note from the author: This story isn’t intended for young or sensitive readers. Readers who are on the lookout for trigger warnings are advised to give Worm a pass.

\n

\n + + + # The pseudo-trigger warning is out of place in an ebook. + + +@ https://parahumans.wordpress.com/2011/06/14/gestation-1-2/ + - each others houses + + each others’ houses + + - x-acto + + X-Acto + + +@ https://parahumans.wordpress.com/2011/06/18/gestation-1-3/ + - top 5 + + top five + + - East end + + east end + + +@ https://parahumans.wordpress.com/2011/06/21/gestation-1-4/ + - gang colors got out and and joined + + gang colors got out and joined + + +@ https://parahumans.wordpress.com/2011/06/28/gestation-1-6/ + - That a girl + + Attagirl + + - particualrly + + particularly + + - ; The Wards + + ; the Wards + + - me?” He + + me?” he + + +@ https://parahumans.wordpress.com/2011/07/02/interlude-1/ + - But when I reached out + + but when I reached out + + +@ https://parahumans.wordpress.com/2011/08/06/interlude-2/ + - utterly for still for + + utterly still for + + - sue you, he gasped + + sue you,” he gasped + + +@ https://parahumans.wordpress.com/2011/07/05/insinuation-2-1/ + - night,” he said. “Or + + night,” he said, “or + + +@ https://parahumans.wordpress.com/2011/07/09/insinuation-2-2/ + - simply, “Bug.” + + simply, ‘Bug’. + + - powers: He could + + powers: he could + + +@ https://parahumans.wordpress.com/2011/07/12/insinuation-2-3/ + - He said, when he was + + he said, when he was + + - attempt at trying to to salvage things + + attempt at trying to salvage things + + +@ https://parahumans.wordpress.com/2011/07/23/insinuation-2-6/ + - costume,—one + + costume—one + + - I felt painfully conspicuous + + I felt painfully conspicuous. + + - Justin Beiber + + Justin Bieber + + - Lisa said. “Entire + + Lisa said, “entire + + - line” Lisa told me, “By + + line,” Lisa told me. “By + + +@ https://parahumans.wordpress.com/2011/07/26/insinuation-2-7/ + - explained. “Here’s + + explained, “here’s + + +@ https://parahumans.wordpress.com/2011/08/02/insinuation-2-9/ + - Hey dad + + Hey Dad + + - Really dad + + Really Dad + + - The Parahumans wiki + + The parahumans wiki + + +@ https://parahumans.wordpress.com/2011/08/09/agitation-3-1/ + - Along the boardwalk + + Along the Boardwalk + + - night” Brian said, “I + + night,” Brian said. “I + + - follow where my my index finger + + follow where my index finger + + +@ https://parahumans.wordpress.com/2011/08/16/agitation-3-3/ + - Lisa grinned. “He’ll + + Lisa grinned, “he’ll + + - Brian said. “But + + Brian said, “but + + - he said. “So let’s + + he said, “so let’s + + - than that,” Brian said. “He + + than that,” Brian said, “he + + - weakness,” Lisa added. “Is + + weakness,” Lisa added, “is + + +@ https://parahumans.wordpress.com/2011/08/20/agitation-3-4/ + - out?” My + + out?” my + + - gangbangers easy access to to the rest of the city + + gangbangers easy access to the rest of the city + + - be, tonight, If that’s + + be, tonight, if that’s + + +@ https://parahumans.wordpress.com/2011/08/23/agitation-3-5/ + - No,” I said. “I’m + + No,” I said, “I’m + + +@ https://parahumans.wordpress.com/2011/08/27/agitation-3-6/ + - I ventured. “That + + I ventured, “that + + - Lisa continued. “Is + + Lisa continued, “is + + +@ https://parahumans.wordpress.com/2011/09/03/agitation-3-8/ + - direction

+ + direction.

+ + - had in her and and stood up + + had in her hand and stood up + + +@ https://parahumans.wordpress.com/2011/09/06/agitation-3-9/ + - Aegis’s must have felt + + Aegis must have felt + + - before she made made her way back + + before she made her way back + + +@ https://parahumans.wordpress.com/2011/09/10/agitation-3-10/ + - meaning his aim was + + his aim was + + - The scant few that that remained + + The scant few that remained + + +@ https://parahumans.wordpress.com/2011/09/13/agitation-3-11/ + - weapon of all,“ Tattletale purred + + weapon of all,” Tattletale purred + + - now,” the lie was + + now.” The lie was + + +@ https://parahumans.wordpress.com/2011/09/17/agitation-3-12/ + - aleash + + a leash + + - Tattletale winced. “Pop + + Tattletale winced, “pop + + +@ https://parahumans.wordpress.com/2011/09/20/interlude-3-2/ + - guys,” Gallant said. “Before + + guys,” Gallant said, “before + + - tinker created + + tinker-created + + +@ https://parahumans.wordpress.com/2011/09/24/shell-4-1/ + - ,” I looked up from my work again, “ + + .” I looked up from my work again. “ + + - make sense for him to to pull a fast one + + make sense for him to pull a fast one + + +@ https://parahumans.wordpress.com/2011/09/27/shell-4-2/ + - Fugly Bobs + + Fugly Bob’s + + +@ https://parahumans.wordpress.com/2011/10/01/shell-4-3/ + - positive: She + + positive: she + + - reciprocate,” I hurried + + reciprocate.” I hurried + + - story,” I said. “But + + story,” I said, “but + + +@ https://parahumans.wordpress.com/2011/10/04/shell-4-4/ + - went cold inside. + + went cold inside.” + + - in the morning.” + + in the morning. + + - Yeah,” I said. “I know + + Yeah,” I said, “I know + + - Actually,” he paused. “You’re + + Actually,” he paused, “you’re + + +@ https://parahumans.wordpress.com/2011/10/08/shell-4-5/ + - money,” Grue spoke. “Where + + money,” Grue spoke, “where + + +@ https://parahumans.wordpress.com/2011/10/11/shell-4-6/ + - his voice, I think + + his voice, “I think + + - ; Round + + ; round + + - Thanks,” I huffed. “For + + Thanks,” I huffed, “for + + +@ https://parahumans.wordpress.com/2011/10/11/interlude-3%C2%BD-bonus/ + - Korean girls were + + Korean girls who were + + - Not so unusual, + + Not so unusual; + + - offer is this: Let me + + offer is this: let me + + +@ https://parahumans.wordpress.com/2011/10/15/shell-4-7/ + - soldiers; Every + + soldiers; every + + - Again,” I panted. “Over + + Again,” I panted, “over + + +@ https://parahumans.wordpress.com/2011/10/18/shell-4-8/ + - in point: Shazam + + in point: shazam + + - ’Kay + + ’kay + + +@ https://parahumans.wordpress.com/2011/10/22/shell-4-9/ + - big one: She’s + + big one: she’s + + - No,” I answered. “No worries + + No,” I answered, “no worries + + +@ https://parahumans.wordpress.com/2011/10/29/shell-4-11/ + - bugging the f-, uh + + bugging the f—, uh + + - about?” My dad + + about?” my dad + + - so to speak, they + + so to speak; they + + - Brian looked across the room,” We’ve + + Brian looked across the room. “We’ve + + +@ https://parahumans.wordpress.com/2011/11/12/hive-5-3/ + - started,” my dad answered, + + started,” my dad answered. + + - Terrifying.” Alan told my dad, “When + + Terrifying,” Alan told my dad. “When + + - day to day basis + + day-to-day basis + + +@ https://parahumans.wordpress.com/2011/11/15/hive-5-4/ + - They’re all‘ relevant + + They’re all relevant + + - Do I— + + Do I— + + - proven— + + proven— + + - shoes, “We’re + + shoes. “We’re + + - guardian spoke, “You’d + + guardian spoke. “You’d + + - ‘specially with + + ’Specially with + + +@ https://parahumans.wordpress.com/2011/11/19/hive-5-5/ + - group: The + + group: the + + - No,” I admitted. “Not + + No,” I admitted, “not + + +@ https://parahumans.wordpress.com/2011/11/29/hive-5-8/ + - Lung,” Bitch growled. “Not + + Lung,” Bitch growled, “not + + - sides,” I agreed. “So + + sides,” I agreed, “so + + - Bitch,” I murmured. “If you + + Bitch,” I murmured, “if you + + - what I could see of the the second floor + + what I could see of the second floor + + - down the stairs. then as carefully as we could + + down the stairs. Then, as carefully as we could + + - I took his feet With agonizing slowness + + I took his feet. With agonizing slowness + + +@ https://parahumans.wordpress.com/2011/12/03/hive-5-9/ + - insult. An excuse to + + insult. An excuse to + + - Obviously,” Kaiser said. “I ended + + Obviously,” Kaiser said, “I ended + + +@ https://parahumans.wordpress.com/2011/12/06/hive-5-10/ + - Bitch,” I said. “Why’d + + Bitch,” I said, “why’d + + - East + + east + + - “Yeah,” Newter grinned,” You can tell + + “Yeah,” Newter grinned. “You can tell + + - day to day interactions + + day-to-day interactions + + +@ https://parahumans.wordpress.com/2011/12/10/interlude-5/ + - bullshit, of course, he + + bullshit, of course; he + + - trying that” she + + trying that,” she + + - it is,” Faultline explained. “Whether + + it is,” Faultline explained, “whether + + +@ https://parahumans.wordpress.com/2011/12/13/tangle-6-1/ + - me,” she + + me.” She + + - Hi dad + + Hi Dad + + - After mom died + + After Mom died + + +@ https://parahumans.wordpress.com/2011/12/17/tangle-6-2/ + - flash image viewer + + Flash image viewer + + - Touche + + Touché + + - West + + west + + - East + + east + + - South + + south + + - news: A tally + + news: a tally + + +@ https://parahumans.wordpress.com/2011/12/20/tangle-6-3/ + - black leather Not that + + black leather. Not that + + - hand, “Let’s + + hand. “Let’s + + - over top of mine + + over the top of mine + + - a nice distraction. + + a nice distraction.” + + - to some other that + + to some others that + + - sure,” I had + + sure.” I had + + +@ https://parahumans.wordpress.com/2011/12/24/tangle-6-4/ + - understand,” Lisa sighed. “I + + understand,” Lisa sighed, “I + + - ’embarrass them’ + + ‘embarrass them’ + + +@ https://parahumans.wordpress.com/2011/12/27/tangle-6-5/ + - Architecture + + architecture + + +@ https://parahumans.wordpress.com/2011/12/31/tangle-6-6/ + - Somehow,” Grue retorted. “I’m + + Somehow,” Grue retorted, “I’m + + +@ https://parahumans.wordpress.com/2012/01/07/tangle-6-8/ + - West + + west + + - to the North + + to the north + + +@ https://parahumans.wordpress.com/2012/01/10/tangle-6-9/ + - this,” he spoke. “But + + this,” he spoke, “but + + - answers,” I replied. “And + + answers,” I replied, “and + + - Oranges are not the Only Fruit + + Oranges Are Not the Only Fruit + + - down Supervillains + + down supervillains + + - now I had + + now I had + + - It-it’s + + It—it’s + + - envelope

+ + envelope.

+ + +@ https://parahumans.wordpress.com/2012/01/14/interlude-6/ + - ; Red + + ; red + + - Oo ‘oo” Bakuda + + Oo ’oo,” Bakuda + + - metal bar After another + + metal bar. After another + + - eyes widening, “No + + eyes widening. “No + + - I—Yes. + + I— Yes. + + - brute 4-9 + + brute four-nine + + - blaster 2-6 + + blaster two-six + + - tinker 6 + + tinker six + + - Master 8 + + master eight + + +@ https://parahumans.wordpress.com/2012/01/17/buzz-7-1/ + - reservations,” Brian spoke. “But + + reservations,” Brian spoke, “but + + - & + + and + + +@ https://parahumans.wordpress.com/2012/01/24/buzz-7-3/ + - H; Eighty-eight + + H; eighty-eight + + - that,” she said. “You + + that,” she said, “you + + - , and + + , and + + - “Damn,” I felt + + “Damn.” I felt + + +@ https://parahumans.wordpress.com/2012/01/28/buzz-7-4/ + - better I’ll feel,” he was + + better I’ll feel.” He was + + - In short, It + + In short, it + + - phone, Alec” Brian spoke + + phone, Alec,” Brian spoke + + +@ https://parahumans.wordpress.com/2012/01/31/buzz-7-5/ + - realized,” Brian spoke. “I + + realized,” Brian spoke, “I + + - ‘fessing + + ’fessing + + +@ https://parahumans.wordpress.com/2012/02/04/buzz-7-6/ + - & + + and + + - flat chested + + flat-chested + + - throat, “Kiss + + throat, “kiss + + +@ https://parahumans.wordpress.com/2012/02/07/buzz-7-7/ + - yourself, Skitter” + + yourself, Skitter.” + + - Tattletale,” Brian spoke. “Did + + Tattletale,” Brian spoke, “did + + - back to herself, “We + + back to herself. “We + + - I asked her, “Hold + + I asked her. “Hold + + +@ https://parahumans.wordpress.com/2012/02/11/buzz-7-8/ + - Skitter,” Grue called. “Run! + + Skitter,” Grue called, “run! + + - chimed in, “She + + chimed in. “She + + - wounds

+ + wounds.

+ + +@ https://parahumans.wordpress.com/2012/02/14/buzz-7-9/ + - with enough force to to bowl us + + with enough force to bowl us + + +@ https://parahumans.wordpress.com/2012/02/18/buzz-7-10/ + - Coil,” I spoke. “It’s + + Coil,” I spoke, “it’s + + - trying to convince me The question + + trying to convince me. The question + + +@ https://parahumans.wordpress.com/2012/02/25/buzz-7-12/ + - Summer + + summer + + - After a moment, then I + + After a moment, I + + +@ https://parahumans.wordpress.com/2012/02/28/interlude-7/ + - more— this + + more—this + + - its self + + itself + + - Hana stirred, she + + Hana stirred. She + + - Walk or- + + Walk or— + + - here? Now? + + here? Now? + + - one image came in contact with with something that + + one image came in contact with something that + + +@ https://parahumans.wordpress.com/2012/03/03/extermination-8-1/ + - besides them‘ + + besides them’ + + - East + + east + + - listened to, + + listened to. + + - make out over the the wailing air raid + + make out over the wailing air raid + + +@ https://parahumans.wordpress.com/2012/03/06/extermination-8-2/ + - the south end of town, the boardwalk + + the south end of town, the Boardwalk + + - West + + west + + - And villains, too + + and villains, too + + - featureless plain + + featureless plane + + - majority of him was was muscled + + majority of him was muscled + + +@ https://parahumans.wordpress.com/2012/03/08/interlude-7%C2%BD-bonus/ + - she been blossoming + + she had been blossoming + + - Get Ready! + + Get ready! + + - ‘boyfriend’; Not + + ‘boyfriend’; not + + - thought & the + + thought and the + + - legs: Suit + + legs: suit + + - biology: Tissues + + biology: tissues + + - human: Never + + human: never + + - Swearing: Antisocial + + Swearing: antisocial + + - arms: Irritation + + arms: irritation + + - goodwill bin + + Goodwill bin + + - chedcked + + checked + + - An envelope should arrive + + an envelope should arrive + + - Which + + Which + + - spoke, “My supervisor + + spoke. “My supervisor + + - serious, “Turn + + serious. “Turn + + - A third person gravely injured + + A third person was gravely injured + + - hunkered down to to watch + + hunkered down to watch + + - crash when when the wave rolled + + crash when the wave rolled + + r
\n\s* + s

\n

+ # These are clearly paragraphs. Also the leading space is strange. + + - Word choice, ‘too’: haunted by demons.
\nSwearing: antisocial.
+ + Word choice, ‘too’: haunted by demons.

\n

Swearing: antisocial. + # This one has the surrounding the
, unlike the others. + + +@ https://parahumans.wordpress.com/2012/03/10/extermination-8-3/ + - Icouldn’t + + I couldn’t + + - CD-5
… + + CD-5…
+ + - CD-5

+ + CD-5.

+ + -

Brigandine deceased, CD-5.

+ +

Brigandine deceased, CD-5.

+ + - deceased, CD-6. + + deceased, CD-6. + + - CD-6, The armbands + + CD-6, the armbands + + - CD-6

+ + CD-6.

+ + - CD-6.

+ + CD-6.

+ + - Narwhal, + + Narwhal, + + - Tattletale… + + Tattletale… + + - reeled—He + + reeled—he + + - Shielder’s bubble. water in front of + + Shielder’s bubble. Water in front of + + +@ https://parahumans.wordpress.com/2012/03/13/extermination-8-4/ + - it woul be + + it would be + + - petered out, he + + petered out, he + + - block West + + block west + + - bolted West + + bolted west + + - West and Northwest + + west and northwest + + - heading West + + heading west + + - More Wests than North + + More wests than north + + - West-North-West + + west-northwest + + - half South + + half south + + - impression It had + + impression it had + + - Aegis deceased, CD-6 + + Aegis deceased, CD-6 + + - down, CC-6. + + down, CC-6. + + - Kid win + + Kid Win + + - of ‘a few blocks’. + + of ‘a few blocks’. + + - Negative. + + Negative. + + +@ https://parahumans.wordpress.com/2012/03/17/extermination-8-5/ + - remanied latched on + + remained latched on + + - past tense-, or + + past tense—or + + - Northwest + + northwest + + - Master 5 + + master five + + - down, BW-8 + + down, BW-8. + + - deceased, BW-8 + + deceased, BW-8. + + - deceased, CB-10. + + deceased, CB-10. + + - Defensive perimeter, report. + + Defensive perimeter, report. + + - Dad. + + Dad. + + - The girl. + + The girl. + + - goggles, it + + goggles. It + + - old, dirt and blood + + old dir and blood + + - collapse

+ + collapse.

+ + - diverted by the the PHQ’s + + diverted by the PHQ’s + + - Much as I’d like to to be + + Much as I’d like it to be + + - the blur of the halberd to to cut lines + + the blur of the halberd to cut lines + + - broken up by the the wall above the door + + broken up by the wall above the door + + +@ https://parahumans.wordpress.com/2012/03/20/extermination-8-6/ + - and It—it’s + + and it—it’s + + - glaring at me, “There’s + + glaring at me. “There’s + + - Ah. + + Ah. + + +@ https://parahumans.wordpress.com/2012/03/24/extermination-8-7/ + - one: Shoot + + one: shoot + + - here,” Grue spoke. “You + + here,” Grue spoke, “you + + - thinker 7 + + thinker seven + + - Master 5 + + Master five + + - This working? This on? Good. + + “This working? This on? Good.” + + - Acknowledged. Her + + Acknowledged, her + + - struck me—If + + struck me—if + + - went on, “Just + + went on, “just + + - her, “That + + her, “that + + - towards her, “Heroes died + + towards her. “Heroes died + + - we get get in + + we get in + + - at the heroine, “Let us + + at the heroine. “Let us + + - ignoring Tattletale, “Frustrated + + ignoring Tattletale. “Frustrated + + - humility, “If it + + humility. “If it + + - hand at me, “She’s + + hand at me, “she’s + + - , kay + + , ’kay + + +@ https://parahumans.wordpress.com/2012/03/27/extermination-8-8/ + - stick—hawk or some other + + stick ‘hawk’ or some other + + - this: Knowing we had + + this: knowing we had + + - of her head, “And my + + of her head. “And my + + - KOOROW BULLIT
\nMILK         STUMPY
\nBROOTUS JOODUS
\nAXIL GINGIR + + KOOROW   BULLIT
\nMILK              STUMPY
\nBROOTUS  JOODUS
\nAXIL     GINGIR + # This section plays poorly with our space-normalizing heuristic. + + +@ https://parahumans.wordpress.com/2012/03/31/interlude-8/ + - other: Another + + other: another + + - reality: He + + reality: he + + - prius + + Prius + + - room,” it was + + room.” It was + + - handicap accessible + + handicap-accessible + + - “Hey,” her voice + + “Hey.” Her voice + + - Mr. Pitter, “The Travelers’ + + Mr. Pitter. “The Travelers’ + + +@ https://parahumans.wordpress.com/2012/04/03/cell-9-1/ + - striker 7 + + striker seven + + - shaker 9 + + shaker nine + + - tinker 4 + + tinker four + + - Breaker 3 + + Breaker three + + - stranger 2 + + stranger two + + - mover 1 + + mover one + + - shaker 2 + + shaker two + + - tinker 2 + + tinker two + + - /mover 3 + + slash mover three + + - shifter 4 + + shifter four + + - shaper 4 + + shaper four + + - brute 7 + + brute seven + + - blaster 8 + + blaster eight + + - mover 4 + + mover four + + - breaker 9 + + breaker nine + + - shifter 8 + + shifter eight + + - stranger 3 + + stranger three + + - Master 6 + + master six + + - shaker 12 + + shaker twelve + + - Tinker designed + + Tinker-designed + + - three Master classifications + + three master classifications + + - files, “Here’s + + files. “Here’s + + - youtube + + YouTube + + - ground, “It + + ground, “it + + +@ https://parahumans.wordpress.com/2012/04/07/sentinel-9-2/ + - Tinker made + + Tinker-made + + - Master 6 + + master six + + - build for a professional + + build up a professional + + - need me, k? + + need me, ’kay? + + - gentle walk

+ + gentle walk.

+ + - real hair

+ + real hair.

+ + +@ https://parahumans.wordpress.com/2012/04/10/sentinel-9-3/ + - with my family. + + with my family. + + - industrialized ones—Some of you + + industrialized ones—some of you + + - the room, “You’ve + + the room, “you’ve + + - dislike him? + + dislike him? + + - answered, annoyed, “He gets + + answered, annoyed. “He gets + + - spoke, “Broad + + spoke. “Broad + + - tipped his hat, “Then + + tipped his hat. “Then + + - of this guy. + + of this guy. + + +@ https://parahumans.wordpress.com/2012/04/14/sentinel-9-4/ + - more focused one.

+ + more focused one.

+ + - groaning, “Fuck, + + groaning. “Fuck, + + - smiled a little, + + smiled a little. + + - greeted him, “You’re + + greeted him. “You’re + + - going to get less interested. Shit, + + going to get less interested. Shit, + + - commented, “My tax + + commented. “My tax + + - scratched-up hands, “No + + scratched-up hands. “No + + - If mom pushes + + If Mom pushes + + +@ https://parahumans.wordpress.com/2012/04/17/sentinel-9-5/ + - clothes: A + + clothes: a + + - That,” Piggot spoke. “And + + That,” Piggot spoke, “and + + - hands together, “Thank + + hands together. “Thank + + - Chariot replied, I’m sorry + + Chariot replied; I’m sorry + + - said something. + + said something. + + - across the room, “It was + + across the room. “It was + + +@ https://parahumans.wordpress.com/2012/04/21/sentinel-9-6/ + - Good—The woman’s + + Good—the woman’s + + - face. Shadow Stalker thought, Records + + face, Shadow Stalker thought. Records + + - Charlie horse + + charlie horse + + - sarcastic, “How wonderfully + + sarcastic, “how wonderfully + + - “…Things are + + “…things are + + - swarm had gone Had the girl’s armor + + swarm had gone. Had the girl’s armor + + +@ https://parahumans.wordpress.com/2012/04/24/parasite-10-1/ + - one shoulder, “Scout + + one shoulder. “Scout + + - king sized + + king-sized + + - one side, “What’s + + one side. “What’s + + - lights. + + lights. + + - groaning, “It’s + + groaning. “It’s + + - mp3 + + MP3 + + +@ https://parahumans.wordpress.com/2012/04/28/parasite-10-2/ + - So,” Weld said. “Keeping + + So,” Weld said, “keeping + + - Master in the city + + master in the city + + - “You gotta be kidding.” + + “You gotta be kidding.” + + - frowned, “Why did + + frowned. “Why did + + - then sighed, “And + + then sighed. “And + + - rose, “I seem + + rose. “I seem + + - to Brian, “You + + to Brian. “You + + - in, “He’s not + + in, “he’s not + + - his head, “You + + his head. “You + + - quiet, “I just + + quiet. “I just + + - Brian, “You’re + + Brian. “You’re + + - ‘Sides + + ’Sides + + - low, “If mistrust + + low, “if mistrust + + - disinterested, “Don’t waste + + disinterested. “Don’t waste + + - highest rated + + highest-rated + + - Six-six-two + + six-six-two + + +@ https://parahumans.wordpress.com/2012/05/01/parasite-10-3/ + - Regent doesn’t exactly + + Regent didn’t exactly + + - powers, I knew + + powers; I knew + + - shouted, “Charge Kid + + shouted. “Charge Kid + + - When the dog + + The dog + + +@ https://parahumans.wordpress.com/2012/05/05/parasite-10-4/ + - Epeios’ + + Epeios’s + + - sinous + + sinuous + + +@ https://parahumans.wordpress.com/2012/05/08/parasite-10-5/ + - & + + and + + - voice low, “This + + voice low. “This + + - gift shop, We’ll meet + + gift shop; we’ll meet + + - fetus, the features + + fetus: the features + + +@ https://parahumans.wordpress.com/2012/05/12/parasite-10-6/ + - face me, “Shot? + + face me. “Shot? + + - from Bitch, “Just + + from Bitch, “just + + - tone bored, “Her + + tone bored. “Her + + - fucked upness + + fucked-upness + + - intimidated, “Will work + + intimidated, “will work + + +@ https://parahumans.wordpress.com/2012/05/15/interlude-10/ + - host: Annoyance + + host: annoyance + + - said,” Regent shrugged. “Anger + + said,” Regent shrugged, “anger + + - the fuck soph + + the fuck Soph + + - “Mom!” He + + “Mom!” he + + - So what did he do do you? + + So what did he do to you? + + +@ https://parahumans.wordpress.com/2012/05/17/interlude-10-5-bonus/ + - me,” Lung said. “And + + me,” Lung said, “and + + - thinker 7 + + thinker seven + + - The Guild + + the Guild + + - accented voice, “You + + accented voice, “you + + - spoke, “Then I + + spoke. “Then I + + - table top, “If you + + tabletop. “If you + + - the Ocean + + the ocean + + - completion?” She + + completion?” she + + - high risk + + high-risk + + +@ https://parahumans.wordpress.com/2012/05/19/infestation-11-1/ + - Dinah being kidnapped and leaving + + Dinah being kidnapped, and leaving + + +@ https://parahumans.wordpress.com/2012/05/26/infestation-11-3/ + - intimidating: A sea + + intimidating: a sea + + +@ https://parahumans.wordpress.com/2012/05/29/infestation-11-4/ + - ‘No smoking + + ‘No smoking + + - of facility‘ + + of facility’ + + - ‘Abuse or threats directed at staff or other residents will NOT be tolerated.’ + + ‘Abuse or threats directed at staff or other residents will NOT be tolerated.’ + + - wall: The + + wall: the + + - Pritt,” Lisa admitted. “But + + Pritt,” Lisa admitted, “but + + - In smaller print below was the message,\s + +

In smaller print below was the message, + + - wanted to say, “We’re already + + wanted to say. “We’re already + + +@ https://parahumans.wordpress.com/2012/06/02/infestation-11-5/ + - he hollered, “Whoever + + he hollered. “Whoever + + - spoke, standing, “You’re + + spoke, standing. “You’re + + - second time, “Who + + second time. “Who + + +@ https://parahumans.wordpress.com/2012/06/05/infestation-11-6/ + - & + + and + + - Countless mirror moved + + Countless mirrors moved + + +@ https://parahumans.wordpress.com/2012/06/09/infestation-11-7/ + - I couldn’t be sure two might + + I couldn’t be sure; two might + + -

client one, and clients two + +

\n

client one, and clients two + + r

+ s

+ + - agreed-upon confidentiality.
\n■\s\s + + agreed-upon confidentiality.

\n
    \n
  • + + r
    \n■\s\s + s
  • \n
  • + + - three, male.
    \nBoth vials + + three, male.
  • \n
\n

Both vials + + - to a Deviation scenario

+ + to a Deviation scenario

\n
+ + +@ https://parahumans.wordpress.com/2012/06/12/infestation-11-8/ + - Charlotte,” I frowned. “Look + + Charlotte,” I frowned, “look + + - non-sequitor + + non-sequitur + + - Did they… was he + + Did they… Was he + + - see the Doctor + + see the doctor + # Unlike the Cauldron Doctor, this is not used as a proper noun + + - the Doctor spoke + + the doctor spoke + # Unlike the Cauldron Doctor, this is not used as a proper noun + + - asinine confession again, “It’s + + asinine confession again. “It’s + + - people from the Church + + people from the church + + +@ https://parahumans.wordpress.com/2012/06/16/interlude-11a/ + - she‘d + + she’d + + - Bentley!” She urged + + Bentley!” she urged + + - “do you want?” + + “…do you want?” + + - pretending?”, the + + pretending?” the + + - “I—” Bitch paused, “Don’t + + “I—” Bitch paused. “Don’t + + +@ https://parahumans.wordpress.com/2012/06/17/interlude-11b/ + - “Kayden,” Theo had + + “Kayden.” Theo had + + - from shaking, “Let + + from shaking. “Let + + +@ https://parahumans.wordpress.com/2012/06/18/interlude-11c/ + - Elle shouted, “No!’ + + Elle shouted. “No!” + + +@ https://parahumans.wordpress.com/2012/06/19/interlude-11d/ + - repeat: Stupidest + + repeat: stupidest + + - Dragon,” Colin whispered. “Are + + Dragon,” Colin whispered, “are + + - was able The window + + was able. The window + + +@ https://parahumans.wordpress.com/2012/06/20/interlude-11e/ + - still talking, “You call + + still talking. “You call + + - goals…” she winced, pressed one hand to her stomach, “Coincide + + goals…” She winced, pressed one hand to her stomach. “…coincide + + +@ https://parahumans.wordpress.com/2012/06/21/interlude-11f/ + - my ‘candy‘ + + my ‘candy’ + + - Thirty-Nine point + + Thirty-nine point + + - here. Now.” + + here. Now.” + + - “I’m sorry,” A girl’s + + “I’m sorry,” a girl’s + + +@ https://parahumans.wordpress.com/2012/06/22/interlude-11g/ + -

J’adore—

+ +

J’adore—

+ + -

Sweet Honey—

+ +

Sweet Honey—

+ + -

Love me, love me, you know you wanna love me…
\nLove me, love me, you know you wanna love me…

+ +

Love me, love me, you know you wanna love me…
\nLove me, love me, you know you wanna love me…

+ + -

Love me, you?
\nLove me, true?

+ +

Love me, you?
\nLove me, true?

+ + -

Crazed, kooky, cracked, crazy,
\nNutty, barmy, mad for me…

+ +

Crazed, kooky, cracked, crazy,
\nNutty, barmy, mad for me…

+ + -

Crazed, kooky, cracked, crazy,
\nMental, dotty, whacked, loopy…

+ +

Crazed, kooky, cracked, crazy,
\nMental, dotty, whacked, loopy…

+ + -

Crazed, kooky, cracked, crazy,
\nNutty, screwy, mentally diseased…
\n
\n
She + +

Crazed, kooky, cracked, crazy,
\nNutty, screwy, mentally diseased…

\n

She + + - Ça va? + + Ça va? + + +@ https://parahumans.wordpress.com/2012/06/23/interlude-11h/ + - Murder rat + + Murder Rat + + - clap’? Can + + clap?’ Can + + - I… a therapist + + I… A therapist + + - look after dad + + look after Dad + + - Why heal dad now + + Why heal Dad now + + - you just leave dad to suffer + + you just leave Dad to suffer + + +@ https://parahumans.wordpress.com/2012/06/26/plague-12-1/ + - need: Maybe + + need: maybe + + - —Or at least + + —or at least + + - You,” a man who might have been the patriarch of one of the families pointed at me, “You + + You.” A man who might have been the patriarch of one of the families pointed at me. “You + + - years old, “What’s + + years old. “What’s + + - ordered Sierra, “If these + + ordered Sierra. “If these + + - new clothes, you can get + + new clothes; you can get + + - out on.” I thought + + out on,” I thought + + +@ https://parahumans.wordpress.com/2012/06/30/plague-12-2/ + - stone: The + + stone: the + + - happen,” Hookwolf added. “The + + happen,” Hookwolf added, “the + + - seems,” Hookwolf said. “The + + seems,” Hookwolf said, “the + + - the ocean and I couldn’t + + the ocean, and I couldn’t + + - chuckling wryly, “You’re + + chuckling wryly. “You’re + + - pointed out, “If we agreed + + pointed out. “If we agreed + + +@ https://parahumans.wordpress.com/2012/07/03/plague-12-3/ + - Noelle, “ Trickster said, “You’ve asked + + Noelle,” Trickster said, “you’ve asked + + - indication,” Tattletale said. “We + + indication,” Tattletale said, “we + + - “Hello?’ + + “Hello?” + + - small voice, “You can + + small voice. “You can + + - her,” Regent said. “But she can + + her,” Regent said, “but she can + + - his teammates, “Mind giving + + his teammates. “Mind giving + + - He smiled, “This is + + He smiled. “This is + + - and his his eyes drifted + + and his eyes drifted + + +@ https://parahumans.wordpress.com/2012/07/07/plague-12-4/ + - me,” Jack said. “I + + me,” Jack said, “I + + - sis,” Regent said. “I + + sis,” Regent said, “I + + - an actual laugh, “You + + an actual laugh. “You + + - asked, “We die? + + asked. “We die? + + - his direction, “No cheating + + his direction. “No cheating + + - on Bonesaw, “And maybe + + on Bonesaw. “And maybe + + +@ https://parahumans.wordpress.com/2012/07/10/plague-12-5/ + - The Slaughterhouse Nine are here? + + The Slaughterhouse Nine are here? + + - getting my costume off and getting dad somewhere safe + + getting my costume off and getting Dad somewhere safe + + - I love you dad + + I love you Dad + + - leaving the space that mom had once occupied + + leaving the space that Mom had once occupied + + +@ https://parahumans.wordpress.com/2012/07/14/plague-12-6/ + - had their shots” I said + + had their shots,” I said + + +@ https://parahumans.wordpress.com/2012/07/17/plague-12-7/ + - costumes: The + + costumes: the + + +@ https://parahumans.wordpress.com/2012/07/21/plague-12-8/ + - um,” she paused. “Couldn’t + + um,” she paused, “couldn’t + + - cure-all nor + + cure-all, nor + + +@ https://parahumans.wordpress.com/2012/07/26/interlude-12%C2%BD/ + - implode, it has created a powerful vacuum in someone’s mouth, that + + implode, and it has created a powerful vacuum in someone’s mouth that + + - doesn’t,” Madcap said. “But + + doesn’t,” Madcap said, “but + + - Second task.—c

+ + Second task. —c

+ + - Thank you. —c. + + Thank you. —c + + - He grinned, “But I want + + He grinned. “But I want + + +@ https://parahumans.wordpress.com/2012/07/28/snare-13-1/ + - —Or it could + + —or it could + + - lost,” Brian said. “That’s + + lost,” Brian said, “that’s + + - So,” Brian said. “You + + So,” Brian said, “you + + - And,” Lisa said. “She + + And,” Lisa said, “she + + +@ https://parahumans.wordpress.com/2012/08/02/interlude-13%C2%BD-donation-bonus/ + - hon,” Celia said. “We’ve + + hon,” Celia said, “we’ve + + +@ https://parahumans.wordpress.com/2012/08/14/snare-13-6/ + - Grue,” Trickster said. “Get + + Grue,” Trickster said, “get + + - Nothing she can’t do outside the bubble + + Nothing she can do outside the bubble + # This doesn't make sense logically with 'can’t'. + + +@ https://parahumans.wordpress.com/2012/08/18/snare-13-7/ + - three…“ My swarm + + three…” My swarm + + - first: Either + + first: either + + - Coil,” I said. “You + + Coil,” I said, “you + + +@ https://parahumans.wordpress.com/2012/08/21/snare-13-8/ + - occupied: A + + occupied: a + + +@ https://parahumans.wordpress.com/2012/08/25/snare-13-09/ + - the,” she paused. “Hip + + the,” she paused, “hip + + +@ https://parahumans.wordpress.com/2012/08/28/snare-13-10/ + - Bitch: Eye + + Bitch: eye + + - upfront,” he said. “I + + upfront,” he said, “I + + +@ https://parahumans.wordpress.com/2012/09/04/prey-14-1/ + - , like + + , like + + - Then dad ordered you to kill him + + Then Dad ordered you to kill him + + +@ https://parahumans.wordpress.com/2012/09/08/prey-14-2/ + - know,” Tattletale smiled. “We’re + + know,” Tattletale smiled, “we’re + + +@ https://parahumans.wordpress.com/2012/09/11/prey-14-3/ + - truck reached
\nthe other Nine + + truck reached the other Nine + + - to,” Grue said. “But + + to,” Grue said, “but + + - through.We crossed + + through. We crossed + + +@ https://parahumans.wordpress.com/2012/09/15/prey-14-4/ + - a ‘No, you just told me.’, but + + a ‘No, you just told me,’ but + + - Amy,” Tattletale said. “But + + Amy,” Tattletale said, “but + + +@ https://parahumans.wordpress.com/2012/09/25/prey-14-7/ + - question,” Tattletale said. “Is + + question,” Tattletale said, “is + + - defenseless,” I suggested. “Regent + + defenseless,” I suggested, “Regent + + +@ https://parahumans.wordpress.com/2012/09/29/prey-14-8/ + - countermeasures,” I said. “We + + countermeasures,” I said, “we + + - through the suit? + + through the suit? + + +@ https://parahumans.wordpress.com/2012/10/09/prey-14-11/ + - belt: He + + belt: he + + +@ https://parahumans.wordpress.com/2012/10/11/interlude-14/ + - hard about it + + heard about it + + +@ https://parahumans.wordpress.com/2012/10/13/interlude-14-5-bonus-interlude/ + - does he + + Does he + + - Unless,” Alexandria said. “The + + Unless,” Alexandria said, “the + + +@ https://parahumans.wordpress.com/2012/10/18/interlude-15-donation-bonus/ + - volunteered, asked
\n
to + + volunteered, asked to + + - happened to my daughter!? + + happened to my daughter!? + + +@ https://parahumans.wordpress.com/2012/10/25/interlude-15-donation-bonus-2/ + - here?
He + + here?
he + + +@ https://parahumans.wordpress.com/2012/10/20/colony-15-2/ + - turned something + + taken something + # 'turned' is repeated later in the sentence. + + - on,” Tattletale said. “Let’s + + on,” Tattletale said, “let’s + + - there,” Tattletale pointed. “And + + there,” Tattletale pointed, “and + + +@ https://parahumans.wordpress.com/2012/10/23/colony-15-3/ + - whether or not I agreed or not + + whether I agreed or not + # Alternatively, the second 'or not' could be deleted instead of the first. + + - Woah,” Regent said. “Relax + + Woah,” Regent said, “relax + + - rich,” Regent said. “Coming + + rich,” Regent said, “coming + + - the street

+ + the street.

+ + - dishonest members + + dishonest member + # He's talking only about Skitter here. + + +@ https://parahumans.wordpress.com/2012/10/27/colony-15-4/ + - Victfor + + Victor + + - Actually,” Coil said. “I + + Actually,” Coil said, “I + + +@ https://parahumans.wordpress.com/2012/10/30/colony-15-5/ + - wasn’t unfamiliar + + was unfamiliar + + - this,” Regent said. “I + + this,” Regent said, “I + + +@ https://parahumans.wordpress.com/2012/11/06/colony-15-7/ + - this sort of resistance. + + this sort of resistance? + + - Brooks,” I said. “Treat + + Brooks,” I said, “treat + + - being kept

+ + being kept.

+ + +@ https://parahumans.wordpress.com/2012/11/08/interlude-15-donation-bonus-3/ + - to,” Alexandria spoke. “Is + + to,” Alexandria spoke, “is + + - leave?” Hero asked.”Why + + leave?” Hero asked. “Why + + - Alexandria said.”Why + + Alexandria said. “Why + + - voice as quiet.”We’ve got teams + + voice as quiet. “We’ve got teams + + +@ https://parahumans.wordpress.com/2012/11/10/colony-15-8/ + - But,” he continued. “I + + But,” he continued, “I + + +@ https://parahumans.wordpress.com/2012/11/13/colony-15-9/ + - —Dying + + —dying + + +@ https://parahumans.wordpress.com/2012/11/17/colony-15-10/ + - was: Multitasking + + was: multitasking + + - of you and mom + + of you and Mom + + - better pictures of mom + + better pictures of Mom + + +@ https://parahumans.wordpress.com/2012/11/20/interlude-15/ + - before,” Dragon replied. “Is + + before,” Dragon replied, “is + + - Once dad and the sibs realized + + Once Dad and the sibs realized + + +@ https://parahumans.wordpress.com/2012/11/24/monarch-16-1/ + - ; Nobody + + ; nobody + + - version on + + version of + + - is,” Tattletale said. “They’ve + + is,” Tattletale said, “they’ve + + +@ https://parahumans.wordpress.com/2012/11/27/monarch-16-2/ + - that,” Grue said. “Is + + that,” Grue said, “is + + +@ https://parahumans.wordpress.com/2012/12/01/monarch-16-3/ + - two teams” I said + + two teams,” I said + + +@ https://parahumans.wordpress.com/2012/12/04/monarch-16-4/ + - well, with Bitch’s civilian + + well, while Bitch’s civilian + + +@ https://parahumans.wordpress.com/2012/12/08/monarch-16-5/ + - and It was powerful enough + + and it was powerful enough + + +@ https://parahumans.wordpress.com/2012/12/11/monarch-16-6/ + - —But we definitely + + —but we definitely + + - all the way up to the the nape of my neck + + all the way up to the nape of my neck + + +@ https://parahumans.wordpress.com/2012/12/15/monarch-16-7/ + - Brockton bay + + Brockton Bay + + - question,” I said. “But + + question,” I said, “but + + - debate,” Kurt said. “People + + debate,” Kurt said, “people + + +@ https://parahumans.wordpress.com/2012/12/18/monarch-16-8/ + - decisions: Holding back + + decisions: holding back + + - their positioning, they had planned this + + their positioning… They had planned this + # A comma seems like the wrong choice here. + + +@ https://parahumans.wordpress.com/2012/12/22/monarch-16-9/ + - aisles

+ + aisles.

+ + +@ https://parahumans.wordpress.com/2012/12/25/monarch-16-10/ + - it,” Trickster said. “You + + it,” Trickster said, “you + + - said,” I retorted. “We’re + + said,” I retorted, “we’re + + - me,” I replied. “I + + me,” I replied, “I + + - alright,” I said. “We’ll + + alright,” I said, “we’ll + + +@ https://parahumans.wordpress.com/2012/12/29/monarch-16-11/ + - attemtps + + attempts + + +@ https://parahumans.wordpress.com/2013/01/05/monarch-16-13/ + - doubts,” I said. “You + + doubts,” I said, “you + + - amusing,” Calvert said. “That + + amusing,” Calvert said, “that + + - ten,” I asked. “Just + + ten,” I asked, “just + + - weeks, months. Anticipating + + weeks, months. Anticipating + + - as much or more about Parahumans than + + as much or more about parahumans than + + +@ https://parahumans.wordpress.com/2013/01/08/migration-17-1/ + - an earthquake” Luke + + an earthquake,” Luke + + - Cody,” Noelle started. “We + + Cody,” Noelle started, “we + + +@ https://parahumans.wordpress.com/2013/01/09/migration-17-2/ + - left now.’

+ + left now.

+ + - and your time—” + + and your time—” + + - Okay,” Krouse said. “Give + + Okay,” Krouse said, “give + + - city,” Jess said. “And + + city,” Jess said, “and + + - “No!” + + “No!” + + +@ https://parahumans.wordpress.com/2013/01/10/migration-17-3/ + - divots intp + + divots into + + - No. the + + No. The + + - other,” Krouse said. “We’ll + + other,” Krouse said, “we’ll + + - to the point that she was pushing pushing past + + to the point that she was pushing past + + +@ https://parahumans.wordpress.com/2013/01/11/migration-17-4/ + - GWER-.

+ + GWER—.

+ + - the Birdcage + + the birdcage + # A literal birdcage, not the parahuman prison. + + +@ https://parahumans.wordpress.com/2013/01/12/migration-17-5/ + - Villians + + Villains + + - been replying + + been replaying + + - sort of stuff that, and + + sort of stuff that ???, and + + - stirred. her eyes + + stirred. Her eyes + + - is,” Cody said. “I’d + + is,” Cody said, “I’d + + - side,” Luke said. “But + + side,” Luke said, “but + + - ninety percent or more of the the city + + ninety percent or more of the city + + +@ https://parahumans.wordpress.com/2013/01/13/migration-17-6/ + - ground. Not exactly + + ground. “Not exactly + + - MWBB + + MWBB\s + + - happens,” Krouse said. “Blame + + happens,” Krouse said, “blame + + - one hallway

+ + one hallway.

+ + - the glass vial

+ + the glass vial.

+ + - discovering that mom was right + + discovering that Mom was right + + +@ https://parahumans.wordpress.com/2013/01/14/migration-17-7/ + - focus
. This is because of Noelle + + focus. This is because of Noelle + + - —A hostage + + —a hostage + + - Well,” Krouse said. “Do + + Well,” Krouse said, “do + + - the guy: A brown + + the guy: a brown + + - exaggerated shrug

+ + exaggerated shrug.

+ + - the P.R.T. uniforms + + the PRT uniforms + + - injured P.R.T. soldier + + injured PRT soldier + + +@ https://parahumans.wordpress.com/2013/01/15/migration-17-8/ + - saying for ten days + + staying for ten days + + - replied. Need to talk about being more secure with our names. “What’s going on?” + + replied. Need to talk about being more secure with our names. “What’s going on?” + + - Krouse,” Luke said. “We + + Krouse,” Luke said, “we + + - on his knees. he held the cigarette + + on his knees. He held the cigarette + + - ‘hief! + + ’hief! + + +@ https://parahumans.wordpress.com/2013/01/19/queen-18-1/ + - know,” Tattletale said. “But + + know,” Tattletale said, “but + + - trouble,” she said. “It’s + + trouble,” she said, “it’s + + - speaking,” I said. “Just + + speaking,” I said, “just + + - or another

+ + or another.

+ + +@ https://parahumans.wordpress.com/2013/01/22/queen-18-2/ + - her,” I said. “You + + her,” I said, “you + + +@ https://parahumans.wordpress.com/2013/01/24/interlude-18x/ + - french accent + + French accent + + - No,” Lisette said. “I + + No,” Lisette said, “I + + +@ https://parahumans.wordpress.com/2013/01/26/queen-18-3/ + - attacked,” I said. “Do + + attacked,” I said, “do + + - helps,” Tattletale said. “Get + + helps,” Tattletale said, “get + + - Skitter,” Grue said. “No + + Skitter,” Grue said, “no + + +@ https://parahumans.wordpress.com/2013/02/02/queen-18-5/ + - —But she’s set + + —but she’s set + + - Well,” Tattletale said. “Funny + + Well,” Tattletale said, “funny + + - stranger class + + stranger-class + + +@ https://parahumans.wordpress.com/2013/02/05/monarch-18-6/ + - he encouragement + + the encouragement + + - ‘okay’ + + ‘OK’ + # This is a note written with bugs and thus probably uses two letters instead of four + + +@ https://parahumans.wordpress.com/2013/01/31/interlude-18-donation-bonus-2/ + - —And I believe + + —and I believe + + - Crusader,” Kayden said. “Can + + Crusader,” Kayden said, “can + + - Kayden,” Theo said. “You’re + + Kayden,” Theo said, “you’re + + - about how Masters tend to have + + about how masters tend to have + + - that was why Masters tend to be + + that was why masters tend to be + + - the top researchers on Parahumans + + the top researchers on parahumans + + +@ https://parahumans.wordpress.com/2013/02/07/interlude-18-donation-bonus-3/ + - fighting. But. + + fighting. But… + + - —But I have + + —but I have + + - Friday-Saturday + + Friday–Saturday + + - …Just focus + + …just focus + + - Rogue friend + + rogue friend + + - The Rogue + + The rogue + + - and Weld, + + And Weld, + + - Don’t mention I + + —don’t mention I + + - questions,” Jessica said. “Because + + questions,” Jessica said, “because + + - question,” he asked. “Do + + question,” he asked, “do + + - priest,” he said. “I + + priest,” he said, “I + + - Jessica observed She looked like + + Jessica observed. She looked like + + +@ https://parahumans.wordpress.com/2013/02/09/queen-18-7/ + - apart,” he said. “We + + apart,” he said, “we + + - fight,” Tattletale said. “And + + fight,” Tattletale said, “and + + - earth-shaking + + earthshaking + + +@ https://parahumans.wordpress.com/2013/02/12/queen-18-8/ + - dragged long + + dragged along + + - Tecton,” I said. “As + + Tecton,” I said, “as + + - better,” I said. “Eidolon + + better,” I said, “Eidolon + + +@ https://parahumans.wordpress.com/2013/02/14/interlude-18-donation-bonus-4/ + - C.U.l China + + C.U.I. China + + - Faulltine asked + + Faultline asked + + - through Faulltine + + through Faultline + + - Arriving at four in the morning? + + Arriving at four in the morning? + + - Hypothetically,” she said. “I + + Hypothetically,” she said, “I + + - bro,” Newter said. “I’m + + bro,” Newter said, “I’m + + - Labyrinth,” Faultline said. “Shore + + Labyrinth,” Faultline said, “shore + + - anything,” Shamrock said. “I + + anything,” Shamrock said, “I + + - the phone

+ + the phone.

+ + +@ https://parahumans.wordpress.com/2013/02/16/interlude-18/ + - her feet.”We’re + + her feet. “We’re + + +@ https://parahumans.wordpress.com/2013/02/19/scourge-19-1/ + - Rachel,” Tattletale said. “Come + + Rachel,” Tattletale said, “come + + +@ https://parahumans.wordpress.com/2013/02/23/scourge-19-2/ + - Skitter,” Tattletale said. “Meet + + Skitter,” Tattletale said, “meet + + +@ https://parahumans.wordpress.com/2013/02/26/scourge-19-3/ + - No,” Regent said. “Blame + + No,” Regent said. “Blame + + - Well,” Tattletale said. “Let’s + + Well,” Tattletale said, “let’s + + - leap,” Tecton said. “To + + leap,” Tecton said, “to + + +@ https://parahumans.wordpress.com/2013/02/28/interlude-19-donation-bonus-1/ + - and be brought it + + and he brought it + + - propellers  One caught her + + propellers. One caught her + + +@ https://parahumans.wordpress.com/2013/03/02/scourge-19-4/ + - happy,” Scapegoat said. “Being + + happy,” Scapegoat said, “being + + - Tattletale,” I said. “What’s + + Tattletale,” I said, “what’s + + - agree,” Chevalier said. “If + + agree,” Chevalier said, “if + + - noting,” Legend said. “That + + noting,” Legend said, “that + + +@ https://parahumans.wordpress.com/2013/03/05/scourge-19-5/ + - returned to a standing position Her face was softer + + returned to a standing position. Her face was softer + + +@ https://parahumans.wordpress.com/2013/03/09/scourge-19-6/ + - heailng + + healing + + +@ https://parahumans.wordpress.com/2013/03/12/scourge-19-7/ + - they did, but how we dealt + + they did, but how we dealt + + - That,” Tattletale said. “Is + + That,” Tattletale said, “is + + - noticed,” Tattletale said. “There’s + + noticed,” Tattletale said, “there’s + + - possible,” Tattletale said. “We’d + + possible,” Tattletale said, “we’d + + +@ https://parahumans.wordpress.com/2013/03/16/interlude-19-y/ + - Brockton bay + + Brockton Bay + + - South + + south + + - Unfortunate tinker + + Unfortunate tinker + # See convert-worker.js; this corrects an over-correction + + +@ https://parahumans.wordpress.com/2013/03/19/interlude-19/ + - white noise that had subsumed her her thoughts when + + white noise that had subsumed her thoughts when + + - Hey dad + + Hey Dad + + +@ https://parahumans.wordpress.com/2013/03/21/chrysalis-20-1/ + - you,” I said. “But + + you,” I said, “but + + - completely recovered
. + + completely recovered.
+ + +@ https://parahumans.wordpress.com/2013/03/23/chrysalis-20-2/ + - something together something + + something together + + - of anxiety. + + of anxiety. + + +@ https://parahumans.wordpress.com/2013/03/26/chrysalis-20-3/ + - attacked the boardwalk + + attacked the Boardwalk + + - Hi dad + + Hi Dad + + +@ https://parahumans.wordpress.com/2013/03/30/chrysalis-20-4/ + - guess-, while + + guess—while + + +@ https://parahumans.wordpress.com/2013/04/02/chrysalis-20-5/ + - earshot,” I said. “My + + earshot,” I said, “my + + - choice,” I said. “But + + choice,” I said, “but + + +@ https://parahumans.wordpress.com/2013/04/04/interlude-20-donation-bonus-1/ + - ’20th’ + + ‘20th’ + + - —A known murderer + + —a known murderer + + - us,” Defiant replied. “I + + us,” Defiant replied, “I + + - Colin,” Piggot replied. “I + + Colin,” Piggot replied, “I + + +@ https://parahumans.wordpress.com/2013/04/06/interlude-20/ + - the costume were studded + + the costume was studded + + - the Clairvoyant + + the clairvoyant + # See convert-worker.js; this corrects an over-correction + + - maintain eye contact. he could feel the warmth + + maintain eye contact. He could feel the warmth + + +@ https://parahumans.wordpress.com/2013/04/09/imago-21-1/ + - —And I couldn’t + + —and I couldn’t + + - is,” Regent said. “If + + is,” Regent said, “if + + - it,” Tattletale said. “Is + + it,” Tattletale said, “is + + +@ https://parahumans.wordpress.com/2013/04/13/imago-21-2/ + - Captain’s hill + + Captain’s Hill + + - —But they’re only + + —but they’re only + + - harder than it’d be to explain to dad + + harder than it’d be to explain to Dad + + - all of the stuff that dad’s probably finding + + all of the stuff that Dad’s probably finding + + - telling you or dad about it + + telling you or Dad about it + + - I didn’t leave dad + + I didn’t leave Dad + + - I know you and dad won’t approve + + I know you and Dad won’t approve + + - hundred and ten-percent + + hundred and ten percent + + +@ https://parahumans.wordpress.com/2013/04/16/imago-21-3/ + - —Centipedes and bigger + + —centipedes and bigger + + - possibility,” I said. “Is + + possibility,” I said, “is + + +@ https://parahumans.wordpress.com/2013/04/18/imago-21-4/ + - alright,” Grue said. “We’ll + + alright,” Grue said, “we’ll + + - Tagg,” I said. “He + + Tagg,” I said, “he + + - you,” I said. “I + + you,” I said, “I + + +@ https://parahumans.wordpress.com/2013/04/20/imago-21-5/ + - respect: Letters + + respect: letters + + - to,” I said. “Is + + to,” I said, “is + + - are sorry your + + are sorry your + # All the other 'sorry's are emphasized in this paragraph + + - sorry that + + sorry that + + +@ https://parahumans.wordpress.com/2013/04/25/imago-21-7/ + - Dinah. because this + + Dinah. Because this + + - Ironic,” she mumbled. “Coming + + Ironic,” she mumbled, “coming + + - to looked around + + to look around + + +@ https://parahumans.wordpress.com/2013/04/27/interlude-21-donation-bonus-1/ + - years + + years + + +@ https://parahumans.wordpress.com/2013/04/30/interlude-21/ + - But…Maybe she + + But… Maybe she + + - attack,” Accord said. “And + + attack,” Accord said, “and + + - But,” Tattletale said. “I + + But,” Tattletale said, “I + + - signal,” Tattletale said. “We + + signal,” Tattletale said, “we + + +@ https://parahumans.wordpress.com/2013/05/04/cell-22-1/ + - gone,” Dovetail said. “She’d + + gone,” Dovetail said, “she’d + + - alternative,” Assault said. “Is + + alternative,” Assault said, “is + + - way,” I said. “It’s + + way,” I said, “it’s + + +@ https://parahumans.wordpress.com/2013/05/07/cell-22-2/ + - said. “Is to set + + said, “is to set + + - But.“ He + + But.” He + + - is led by non-capes + + is led by non-capes + + +@ https://parahumans.wordpress.com/2013/05/09/cell-22-3/ + - tonight,” Tagg said. “If + + tonight,” Tagg said, “if + + +@ https://parahumans.wordpress.com/2013/05/11/cell-22-4/ + - reading?” My + + reading?” my + + +@ https://parahumans.wordpress.com/2013/05/14/cell-22-5/ + - in,” I said. “Could + + in,” I said, “could + + +@ https://parahumans.wordpress.com/2013/05/16/cell-22-6/ + - She continued without pause. “—And we + + She continued without pause, “—and we + + - lying,” I said. “Let’s + + lying,” I said, “let’s + + - capes,” Chevalier said. “Burdened + + capes,” Chevalier said, “burdened + + - of it. + + of it. + + +@ https://parahumans.wordpress.com/2013/05/18/interlude-22/ + - long,” she warned + + long,” she warned + + - it,” he said. “She + + it,” he said, “she + + - confirmed okay + + confirmed ok + # This is a forum post title and thus is probably informal and not even capitalized + + +@ https://parahumans.wordpress.com/2013/05/21/interlude-22-donation-bonus-1/ + - Sumimasen deshita + + Sumimasen deshita + + - “is it reassuring + + “Is it reassuring + + - frank,” Teacher said. “I + + frank,” Teacher said, “I + + - their ears

+ + their ears.

+ + - it’s import + + its import + + +@ https://parahumans.wordpress.com/2013/05/25/drone-23-1/ + - abilites + + abilities + + - Defiant spoke, “Let’s + + Defiant spoke. “Let’s + + - happens,” he said. “You’re + + happens,” he said, “you’re + + +@ https://parahumans.wordpress.com/2013/05/28/drone-23-2/ + - of the ship. It’s + + of the ship.’ It’s + + - supervillain-turned hero + + supervillain-turned-hero + + - Las Vegas Rogue + + Las Vegas rogue + + - Except,” Rime said. “Things + + Except,” Rime said, “things + + - know,” Prefab said. “Arbiter + + know,” Prefab said, “Arbiter + + - point,” I said. “But + + point,” I said, “but + + - Kulshedra,” Prefab said. “Open + + Kulshedra,” Prefab said, “open + + +@ https://parahumans.wordpress.com/2013/05/30/drone-23-3/ + - nerf + + Nerf + + - Nine,” Glenn said. “I + + Nine,” Glenn said, “I + + - went okay + + went ok + # This is in a letter from Tattletale which is fairly informal and uses phrases like 'mebbe' nearby. + + +@ https://parahumans.wordpress.com/2013/06/01/drone-23-4/ + - FIrst + + First + + - said. Someone + + said. “Someone + + +@ https://parahumans.wordpress.com/2013/06/04/drone-23-5/ + - it,” Imp said. “She’s + + it,” Imp said, “she’s + + - electorcuted + + electrocuted + + +@ https://parahumans.wordpress.com/2013/06/06/interlude-23/ + - one—or two-word + + one- or two-word + + - her mouth: A click + + her mouth: a click + + +@ https://parahumans.wordpress.com/2013/06/08/crushed-24-1/ + - both of you” I said + + both of you,” I said + + - dress,” Grace commented. “I + + dress,” Grace commented, “I + + - And,” I said. “We + + And,” I said, “we + + +@ https://parahumans.wordpress.com/2013/06/11/crushed-24-2/ + - They destroying + + They were destroying + + +@ https://parahumans.wordpress.com/2013/06/15/crushed-24-3/ + - Phir Sē echoed me. “ + + Phir Sē echoed me. “ + + - I okay + + I ok + # This is in a hand-written note from Tattletale, so she'd probably keep it short + + +@ https://parahumans.wordpress.com/2013/06/18/crushed-24-4/ + - aren’t allies. + + aren’t allies.” + + - Blameful? “Guilty + + Blameful? “Guilty + + +@ https://parahumans.wordpress.com/2013/06/20/crushed-24-5/ + - plan,” Dispatch said. “We + + plan,” Dispatch said, “we + + +@ https://parahumans.wordpress.com/2013/06/22/interlude-24/ + - remained He + + remained. He + + - somehow within + + somehow get within + + - very fell over + + very nearly fell over + + - fight,” Tattletale said. “And + + fight,” Tattletale said, “and + + +@ https://parahumans.wordpress.com/2013/06/25/interlude-24-donation-bonus-1/ + - silence like this. Divide: They + + silence like this.
Divide: They + + - Bay,” Wanton said. “Not + + Bay,” Wanton said, “not + + +@ https://parahumans.wordpress.com/2013/06/29/scarab-25-1/ + - Honestly,” Tecton said. “If + + Honestly,” Tecton said, “if + + - sheets pillows + + sheets, pillows + + - Golem responded

+ + Golem responded.

+ + +@ https://parahumans.wordpress.com/2013/07/02/scarab-25-2/ + - Enough or three + + Enough for three + + - —3 + + -3 + # This is a computer display and thus probably uses a regular hyphen for the minus sign. + + - said. Except without + + said. “Except without + + - line, t had + + line, it had + + - between each attack.
\nThese coming days and weeks + + between each attack.

\n

These coming days and weeks + + +@ https://parahumans.wordpress.com/2013/07/06/scarab-25-3/ + - along Addison. roughly four + + along Addison. Roughly four + + - There’ more + + There’s more + + - White capped + + White-capped + + - . “Bosses are worried.” + + . “Bosses are worried.” + + +@ https://parahumans.wordpress.com/2013/07/09/scarab-25-4/ + - bugs I don’t like + + bugs I don’t like + + - than this. + + than this. + + +@ https://parahumans.wordpress.com/2013/07/11/scarab-25-5/ + - try,” Saint said. “And + + try,” Saint said, “and + + - badly,” Chevalier said. “Then + + badly,” Chevalier said, “then + + - assured,” Marquis retorted. “I + + assured,” Marquis retorted, “I + + - further,” I said. “It + + further,” I said, “it + + - attitude,” Saint added. “I + + attitude,” Saint added, “I + + +@ https://parahumans.wordpress.com/2013/07/13/scarab-25-6/ + - the fuck did you go? + + the fuck did you go? + + - SimurghNotes + + Simurgh
Notes + + - avoided- + + avoided + + - Lord Walston + + Lord Walston + + - —16 + + -16 + # This is a computer display and thus probably uses a regular hyphen for the minus sign. + + +@ https://parahumans.wordpress.com/2013/07/18/sting-26-1/ + - up,” I said. “The + + up,” I said, “the + + - Master and stranger + + master and stranger + + - nearly-three-hundred + + nearly three hundred + + +@ https://parahumans.wordpress.com/2013/07/20/sting-26-2/ + - It didn’t hurt that + + It didn’t help that + # This makes more sense with 'help' + + - And gauntlet, to reply to the last one + + And gauntlet, to reply to the last one + + - a burst of alarm. + + a burst of alarm. + + - Up from Eighty-three point four percent + + Up from eighty-three point four percent + + +@ https://parahumans.wordpress.com/2013/07/23/sting-26-3/ + - the other-. + + the other— + + - Vista,” he said. “Another + + Vista,” he said, “another + + - me,” I said. “Is + + me,” I said, “is + + -

“Help’s on the way.”

+ +

Help’s on the way.

+ + +@ https://parahumans.wordpress.com/2013/07/25/interlude-26-donation-bonus-1/ + - think,” Dobrynja said. “You’ve + + think,” Dobrynja said, “you’ve + + - particular type out there Eight Cherishes are dead + + particular type out there. Eight Cherishes are dead + + +@ https://parahumans.wordpress.com/2013/07/27/sting-26-4/ + - yes” Nilbog + + yes,” Nilbog + + - Or,” Jack said. “You + + Or,” Jack said, “you + + +@ https://parahumans.wordpress.com/2013/07/30/sting-26-5/ + - Wait…“

+ + Wait…”

+ + - This,” Imp said. “Is + + This,” Imp said, “is + + - kill all of the Masters that are generating + + kill all of the masters that are generating + + - —break up the fog! + + —break up the fog! + + - The Nyx were women + + The Nyxes were women + + - Psychosomas were men, + + Psychosomas were men: + # This is a strange sentence, but these changes make it flow better + + - Night hags + + Night Hags + + +@ https://parahumans.wordpress.com/2013/08/06/interlude-26a/ + - city, Golem thought. + + city, Golem thought. + + - leave,” Defiant said. “We + + leave,” Defiant said, “we + + +@ https://parahumans.wordpress.com/2013/08/08/interlude-26b/ + - a battered Cuff + + A battered Cuff + + - you,” he said. “I + + you,” he said, “I + + - froze him. + + froze him. + + +@ https://parahumans.wordpress.com/2013/08/10/interlude-26/ + - variation….\s + + variation… + + - rain: The + + rain: the + + - from one another

+ + from one another.

+ + - fragmenting in greater numbers

+ + fragmenting in greater numbers.

+ + - these past few years

+ + these past few years.

+ + - Focus Memorize. + + Focus. Memorize. + + - The Entity slowed + + The entity slowed + + +@ https://parahumans.wordpress.com/2013/08/13/extinction-27-1/ + - East + + east + + +@ https://parahumans.wordpress.com/2013/08/17/extinction-27-2/ + - unruffled He + + unruffled. He + + - very, likely + + very likely + + - is,” Defiant commented. “Exactly + + is,” Defiant commented, “exactly + + - Besides,” Tattletale said. “The + + Besides,” Tattletale said, “the + + - shift position

+ + shift position.

+ + +@ https://parahumans.wordpress.com/2013/08/20/extinction-27-3/ + - guess,” Sophia said. “You + + guess,” Sophia said, “you + + - “Maybe,” I said “But + + “Maybe,” I said. “But + + +@ https://parahumans.wordpress.com/2013/08/24/extinction-27-5/ + - around around + + and around + + - His transformations + + His transformations + + - somethign + + something + + - surface Just the + + surface. Just the + + - three birdcage capes + + three Birdcage capes + + +@ https://parahumans.wordpress.com/2013/08/27/interlude-27/ + - chain reaction of loses + + chain reaction of losses + + - Weavers + + Weaver’s + + - Contessa’s power. + + Contessa’s power. + + +@ https://parahumans.wordpress.com/2013/08/31/cockroaches-28-1/ + - “No, I said. + + “No,” I said. + + - could save issue + + could say issue + + - Well,” she said. “They’re + + Well,” she said, “they’re + + +@ https://parahumans.wordpress.com/2013/09/03/cockroaches-28-2/ + - Next 12 of 32 additional windows. + + Next 12 of 32 additional windows. + + - —But no + + —but no + + - Rogue girl + + rogue girl + + - process,” Tattletale added. “You + + process,” Tattletale added, “you + + - aside,” Imp said. “I’m + + aside,” Imp said, “I’m + + - thing,” Imp commented. “That’s + + thing,” Imp commented, “that’s + + +@ https://parahumans.wordpress.com/2013/09/05/cockroaches-28-3/ + - is,” Tattletale said. “I + + is,” Tattletale said, “I + + +@ https://parahumans.wordpress.com/2013/09/07/cockroaches-28-4/ + - if you could, but that + + if you could, that + + - No reaction from Tattletale + + No reaction from the Simurgh + + - One hundred and eighty integers + + One hundred and eighty integers + + - powers,” Defiant said. “Without + + powers,” Defiant said, “without + + - Somehow,” Imp commented. “This + + Somehow,” Imp commented, “this + + +@ https://parahumans.wordpress.com/2013/09/10/cockroaches-28-5/ + - I’m not? Fuck. There’s + + I’m not? Fuck. There’s + + - ‘I don’t know,” + + “I don’t know,” + + - I suspect It’s a + + I suspect it’s a + + - reality,” Tattletale said. “What’s + + reality,” Tattletale said, “what’s + + - question,” I said. “Is + + question,” I said, “is + + +@ https://parahumans.wordpress.com/2013/09/14/cockroaches-28-6/ + - means,” Glenn said. “I + + means,” Glenn said, “I + + - be,” Glenn said. “Accept + + be,” Glenn said, “accept + + - beginning of the movie, or or says + + beginning of the movie, or says + + +@ https://parahumans.wordpress.com/2013/09/17/interlude-28/ + - than,” Revel paused. “Six + + than,” Revel paused, “six + + - willingly,” Weld said. “Before + + willingly,” Weld said, “before + + - onto the phone. seven point font + + onto the phone. Seven point font + + +@ https://parahumans.wordpress.com/2013/09/19/venom-29-1/ + - blow dr. baby-talk’s mind + + blow Doctor Baby-talk’s mind + + - whoever Dr. baby-talk is + + whoever Doctor Baby-talk is + + - look for doctor baby-talk + + look for Doctor Baby-talk + + - Actually,” Tecton said. “Nothing’s + + Actually,” Tecton said, “nothing’s + + - Eastern standard time + + Eastern Standard Time + + - Master class cape + + master-class cape + + +@ https://parahumans.wordpress.com/2013/09/21/venom-29-2/ + - look for babytalk + + look for Baby-talk + + - Once the bead was in place, every bullet hit. + + Once the bead was in place, every bullet hit. + + +@ https://parahumans.wordpress.com/2013/09/24/venom-29-3/ + - Weld? No. + + Weld? No. + + - helps,” Legend said. “I + + helps,” Legend said, “I + + +@ https://parahumans.wordpress.com/2013/09/26/venom-29-4/ + - here!” Someone called + + here!” someone called + + - “Pretty guy’s + + “Pretty guy’s + + - Nobody there, in Satyrical’s + + Nobody there in Satyrical’s + + - helps,” I said. “I’m + + helps,” I said, “I’m + + +@ https://parahumans.wordpress.com/2013/09/28/venom-29-5/ + - Losing you as you get further down.” + + Losing you as you get further down.” + + - before went and + + before he went and + + +@ https://parahumans.wordpress.com/2013/10/01/venom-29-6/ + - the doormaker + + the Doormaker + + - be,” I said. “Scion’s + + be,” I said, “Scion’s + + +@ https://parahumans.wordpress.com/2013/10/03/venom-29-7/ + - this,” I said. “I + + this,” I said, “I + + - Second Triggers + + Second triggers + + +@ https://parahumans.wordpress.com/2013/10/05/venom-29-8/ + - images an artist’s sketchpad + + images of an artist’s sketchpad + + +@ https://parahumans.wordpress.com/2013/10/08/venom-29-9/ + - eyeless clairvoyant + + eyeless Clairvoyant + + - thing,” I said. “Was + + thing,” I said, “was + + - by Golem’s bindings

+ + by Golem’s bindings.

+ + - have time to react. the light detonated + + have time to react. The light detonated + + +@ https://parahumans.wordpress.com/2013/10/12/interlude-29/ + - the host’s natures + + the hosts’ natures + + - panting for breath. the wound at his + + panting for breath. The wound at his + + - appeared behind her A man with yellow skin + + appeared behind her. A man with yellow skin + + +@ https://parahumans.wordpress.com/2013/10/15/speck-30-1/ + - What did I do? + + What did I do? + + +@ https://parahumans.wordpress.com/2013/10/17/speck-30-2/ + - ‘lowed to do that, ‘miright + + ’lowed to do that, ’miright + + - hard, don’t you
? + + hard, don’t you?
+ + - Ladies!” One called + + Ladies!” one called + + - Stranger and Master + + Stranger and master + + +@ https://parahumans.wordpress.com/2013/10/19/speck-30-3/ + - She’s—You’re looking in + + She’s— You’re looking in + + - anyone alleged with + + anyone allied with + + - coordinating two teams
. + + coordinating two teams.
+ + - undecision + + indecision + + +@ https://parahumans.wordpress.com/2013/10/22/speck-30-4/ + - I don’t—I can’t + + I don’t— I can’t + + - Was that—Was it + + Was that— Was it + + - It would—would have + + It would— would have + + - Eastern seaboard + + Eastern Seaboard + + +@ https://parahumans.wordpress.com/2013/10/24/speck-30-5/ + - clin—the clincher + + clin— the clincher + + - Have to—have to + + Have to— Have to + + - He—he lost + + He— He lost + + - that—Let’s go + + that— Let’s go + + - I just—I needed + + I just— I needed + + - Same strat—strat—same + + Same strat— strat— same + + - Wha—what? + + Wha— what? + + - You still—you still + + You still— You stil + + - This—this is the + + This— This is the + + - all alo—alone + + all alo— alone + + - S-s-sen—Sentiment? + + S-s-sen— Sentiment? + + - le—let me + + le— let me + + - wan—wants + + wan— wants + + - woul—wouldn’t work a—anyways. N—no use + + woul— wouldn’t work a— anyways. N-no use + + - Need—need—need—need— + + Need— need— need— need— + + - Need—need— + + Need— need— + + - Think—think + + Think— think + + - It—it’s + + It— it’s + + - not—not + + not— not + + - Sl—sl— + + Sl-sl— + + - I’d pretty much but there + + I’d pretty much ???, but there + + - gun build + + gun built + + - I revoked my control over her, leaving in in the middle + + I revoked my control over her, leaving her in the middle + + - suffered for + + suffered from + + +@ https://parahumans.wordpress.com/2013/10/26/speck-30-6/ + - frat—fratern—clubs + + frat— fratern— clubs + + - Glaistig U—the Faerie Queen + + Glaistig U— the Faerie Queen + + - Strip—stripping flesh + + Strip— Stripping flesh + + - Dis—Dissonance + + Dis— Dissonance + + - com-comf—why did it + + com— comf— why did it + + - Needed—needed to + + Needed— Needed to + + - into h—her pet + + into h-her pet + + - chan-chann—station to + + chan— chann— station to + + - Mm-m—my + + Mm-m-my + + - resulting crater that compared with + + resulting crater compared with + + - on the other earth + + on the other Earth + + - name? did it start + + name? Did it start + + +@ https://parahumans.wordpress.com/2013/10/29/30-7/ + - Con—conflict. + + Con— Conflict. + + - That singing—Singing + + That singing— Singing + + - wasn’t the—wasn’t the + + wasn’t the— wasn’t the + + - I was—it was + + I was— It was + + - other two—I recognized + + other two— I recognized + + - W-wwha—ddo + + W-wwha— ddo + + - Don’t—don’t regret + + Don’t— Don’t regret + + - Was—had to + + Was— Had to + + - s—so very small + + s-so very small + + - “Yes,’ I + + “Yes,” I + + - against me. it would be idiotic + + against me. It would be idiotic + + - hand as he talked. he pointed to me + + hand as he talked. He pointed to me + + +@ https://parahumans.wordpress.com/2013/11/02/teneral-e-1/ + - stories,” Riley said. “The + + stories,” Riley said, “the + + - day to day, minute-to-minute existence + + day-to-day, minute-to-minute existence + + +@ https://parahumans.wordpress.com/2013/11/05/teneral-e-2/ + - property of Nero + + property of Nero + + - Nero, Why don’t we get + + Nero, why don’t we get + + - ms. ‘Unresolved’ + + Ms. ‘Unresolved’ + + - Capiche? + + Capiche? + + - up— + + up— + + - case,” Imp said. “I’m + + case,” Imp said, “I’m + + +@ https://parahumans.wordpress.com/2013/11/09/teneral-e-3/ + - vageuly + + vaguely + + - minutes passed. the chance rose + + minutes passed. The chance rose + + - Collin + + Colin + + - systems teacher had + + systems Teacher had + + +@ https://parahumans.wordpress.com/2013/11/12/teneral-e-4/ + - The Foxhound + + The foxhound + + - articulated + + articulated + + - —Batshit + + —batshit + + - —Problematic + + —problematic + + - balconies and rooftops. hazards + + balconies and rooftops. Hazards + + - another tree stood. with a glimpse + + another tree stood, with a glimpse + + +@ https://parahumans.wordpress.com/2013/11/16/teneral-e-5/ + - and His flesh began + + and his flesh began + + - background of his mind

+ + background of his mind.

+ + - boyfriends are my ex-boyfriends + + boyfriends are my ex-boyfriends + + - that ‘because I can’t isn’t an + + that ‘because I can’ isn’t an + + +@ https://parahumans.wordpress.com/2013/11/19/interlude-end/ + - Imp:I’ve + + Imp: I’ve + + - Tattletale:
\nwaiting? + + Tattletale: waiting? + + - Please, If you + + Please, if you + + - ten—thousandth + + ten-thousandth + + - Don’t—Don’t worry + + Don’t— Don’t worry + + - “Powers?” + + “powers?” + + - Embarrassed ‘self on + + Embarrassed ’self on + + - Hav—haven’t gotten + + Hav— Haven’t gotten + + - since y—since my + + since y— since my + + - I don’t—I— + + I don’t— I— + + - Y—you + + Y-you + + - I—I picked + + I— I picked + + - I’m—I was a + + I’m— I was a + + - I—I’m your daughter + + I— I’m your daughter + + - And,” Tattletale said. “Worthy + + And,” Tattletale said, “worthy + + - think,” Annette said. “You + + think,” Annette said, “you + + - so,” Annette said. “I + + so,” Annette said, “I