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": "",
- "_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.
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
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 BULLITIn 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" - } - ], - "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": "client one, and clients two" - }, - { - "regExp": "
", - "replacement": "
" - }, - { - "before": "agreed-upon confidentiality.
\n
\n■ ", - "after": "agreed-upon confidentiality.\n
\n- " - }, - { - "regExp": "
\n
\n■ ", - "replacement": "- " - }, - { - "before": "three, male.
\n
\nBoth vials", - "after": "three, male.Both vials" - }, - { - "before": "to a Deviation scenario
", - "after": "to a Deviation scenario\n
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…
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
\nShe ",
- "after": "
Crazed, kooky, cracked, crazy,
\nNutty, screwy, mentally diseased…
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 reachedThese 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: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.
\nWard is not recommended for young or sensitive readers.
\nThe 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.
\nThey’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.
\nIf 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.
\nWard 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
⊙
\nI 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. Mom and Dad.
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": "\n\n\n\n\n\n\n\n\n\n\n\n", - "after": "⊙
\n\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—\nThe 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
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 :Transmit
\nI’ve got",
- "after": "
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
Crazed, kooky, cracked, crazy,
\nNutty, barmy, mad for me…
Crazed, kooky, cracked, crazy,
\nNutty, barmy, mad for me…
+```
+
+## 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. Ward is not recommended for young or sensitive readers. 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. 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. If you’re not interested or find this hard to read, click here to jump to chapter 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. Ward is not recommended for young or sensitive readers. ⊙ 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
⊙
\nI 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.
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 + + - \n\n\n\n\n\n\n\n\n\n\n\n + +⊙
\n\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—\nThe 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
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 :Transmit
\nI’ve got
+ +
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
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
+ # These are clearly paragraphs. Also the leading space is strange.
+
+ - Word choice, ‘too’: haunted by demons.
\nSwearing: antisocial.
+ + Word choice, ‘too’: haunted by demons.
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
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 BULLITIn 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+ + +@ 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/ + -client one, and clients two + + r
+ s
+ + - agreed-upon confidentiality.
\n
\n■\s\s + + agreed-upon confidentiality.\n
\n- + + r
\n
\n■\s\s + s- + + - three, male.
\n
\nBoth vials + + three, male.Both vials + + - to a Deviation scenario
+ + to a Deviation scenario\n
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
\nShe
+ +
Crazed, kooky, cracked, crazy,
\nNutty, screwy, mentally diseased…
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 reachedThese 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: