code
stringlengths 0
56.1M
| repo_name
stringclasses 515
values | path
stringlengths 2
147
| language
stringclasses 447
values | license
stringclasses 7
values | size
int64 0
56.8M
|
---|---|---|---|---|---|
Extended family mode (mod)
In short, extended family mode replaces the old .relation + .relationTarget system with a completely new system capable of handling a limitless number of relatives. Or at least until your game crashes from trying to handle it all. Fully incompatable with the old system and fully functional with ng+.
The backbone of the system: .father and .mother
Everything about a slave's family can be gathered by looking into her mother and father. Beyond the obvious mother-daughter relation, you can check two seperate slaves' parents to see if they are related to each other, allowing for sisters, half-sisters, and with a .birthWeek check, twins with little effort.
The following values are used with .mother and .father:
Valid slave IDs (in other words, a value > 0) - Serves as both a target for checks and as a check itself to see if effort should be expended to search for the parent.
0 - Slave has no known parent. A slave with a parent value of 0 is capable of having a parent added via reRelativeRecruiter
MissingParentIDs (in other words, a value < -2) - Serves as a placeholder to preserve sibling relations in the case of a parent being sold or lost. Outside of extreme cases, this value will never be restored to its' previous value. $missingParentID starts at -10000 and decrements after application. On NG+, positive values are incremented the same as a normal slave and checked for validity. Should it be invalid, it will be replaced with $missingParentID. Negative values, on the other hand, are decremented by 1200000. Values of -1 and -2 are ignored by the JS, so don't use them. Also -9999 through -9994 are used by hero slaves to preserve their sibling status no matter when they are purchased or obtained during the same game.
The limiters: .sisters and .daughters
Extended family mode is VERY for loop intensive, and as such, has limiters to prevent it from needlessly looping. A value greater than 0 for either of these slave variables signals that slave has a sibling/daughter for various checks. Furthermore, the value of .sisters and .daughters accurately tracks the number of sisters and daughters, particularly for checks that require all of them to be found. You'll learn to hate these, but on the plus side, they can safely be recalculated with no side effects. Nearly entirely handled by <<AddSlave>> and removeActiveSlave, you do not understand how huge of a plus this is.
The recruiting check: .canRecruit
Checked by reRelativeRecruiter to see if a slave is eligible to have relatives added. Hero slaves, special slaves, and often event slaves are ineligible for recruiting. Gets disabled if the slave is called into the recruiting event but fails to qualify for additional relatives due to unaddable slots or too many existing relatives.
A quick list of the JS that gets things done and various useful JS calls:
sameDad(slave1, slave2) - checks if the slaves share the same father and returns true/false.
sameMom(slave1, slave2) - checks if the slaves share the same mother and returns true/false.
sameTParent(slave1, slave2) - an exception catcher that handles such things as "slave1 knocked up slave2 and got impregnated by slave2, their children will be sisters" and returns the sister variable (0 - not related, 1 - twins, 2 - sisters, 3 - half-sisters). (subJS, never call on its own)
areTwins(slave1, slave2) - checks if the slaves are twins and returns true/false.
areSisters(slave1, slave2) - combines all of the above and returns the sister variable (0 - not related, 1 - twins, 2 - sisters, 3 - half-sisters). A widely used check to identify sister relatives. Generally gated by a .sisters check. Recommended to use in a <<switch>> macro instead of calling it for each outcome.
totalRelatives(slave) - returns how many relatives a slave has as an integer. Useful both as a check and for its value. Recommended to use as a check in instances where you want a relative, but don't care what it is.
mutualChildren(slave1, slave2, slaves) - checks the slave array for children shared by the two slave arguements and returns the number of mutual children as an integer. Currently used solely to encourage two slaves into a relationship if they have kids together.
The utility JS, courtesy of FCGudder. This JS should only be called if you know it will find something, use your limiters! These will always return the only relative if only one outcome is possible, so technically they can be used creatively. randomAvailable JS should be followed with random JS as a fallback for circumstances where you must find something, but would prefer it to be sensible if possible.
randomRelatedSlave(slave, filterFunction) - returns a random related slave to the slave passed into it. filterFunction is called in the following JS but not needed if you just want a random relative.
randomRelatedAvailableSlave(slave) - returns a random available related slave.
randomSister(slave) - returns a random sister.
randomTwinSister(slave) - returns a random twin.
randomAvailableSister(slave) - returns a random available sister.
randomAvailableTwinSister(slave) - returns a random available twin.
randomDaughter(slave) - returns a random daughter.
randomAvailableDaughter(slave) - returns a random available daughter.
randomParent(slave) - returns a random parent.
randomAvailableParent(slave) - returns a random available parent.
|
AshVaris/fc
|
devNotes/Extended Family Mode Explained.txt
|
Text
|
mit
| 5,386 |
Security Expansion
10/18/17
1
3
10/22/17
5
10/24/17
6
-balance adjustments
-fixed improper name assignment
-added renaming of units
-reworked casualties logic
-added statistics to arcology management screen
-various other fixes
10/28/17
7
-SFanon additions
-fixes
-balance
10/29/17
7.1
-fixes
-couple of balance adjustments.
11/01/17
7.5
7.6
-fixed reported issue
-balance adjustments (run backward compatibility to apply them)
7.7
11/03/17
8
-various fixes
-balance
-rebellions
11/05/17
8.5
-fixes
-rebellions
11/06/17
Pregmod v113
8.6
-fixes
8.7
-fixed reported issue maybe pretty please?
11/07/17
Pregmod v114/Pregmod v114.1
8.8
-fixes
9.2
-small fixes
-new edicts
-new units upgrade
-new barracks upgrade
Pregmod v115
9.6
-fixes
-loyalty work
11/09/17
Pregmod v119
9.6
-small fixes
11/10/17
10
-fixes
-weapons manufacturing
-balance
11/11/17
Pregmod v121
10.2
-fixes
Pregmod v122
11
-fixes
-proclamations
-balance
11.1
11.2
-fixes
-extra options
11/12/17
Pregmod v124
11.5
-fixes
-balance
11.6
-fixed reported issues
-balance
Pregmod v125
12
-fixes
-transport hub and trade
-balance
11/13/17
12.3
-fixes
-SFanon additions
-balance
Pregmod v126
12.4
11/14/17
Pregmod v130
12.5
-fixes
-SFanon stuff
-balance
Pregmod v132
12.6
-fixes
-anon's stuff
12.8
-fixes
-balance
12.9
-fixes
11/15/17
13
-fixes
-balance
11/16/17
13.1
-fixes
-balance
13.3
-fixes
13.4
-fixed >>142293 (Attack value NaN during major battle)
11/17/17
Pregmod v135
13.4
-fixes
-balance
-difficulty settings
Pregmod v136
13.6
-fixes
11/18/17
13.7
-balance
-(maybe) fix for battle terrain not showing up.
13.8
-(maybe) fixed >>142732
Pregmod v137
v13.9
-fixes (couple of)
Pregmod v139
14
-fixes
-spell checked attack report. My god was is bad.
14.1
-fixes
11/20/17
14.2
-fixes
-balance
-very satisfying version number.
|
AshVaris/fc
|
devNotes/MultiVersionChangeLog.txt
|
Text
|
mit
| 2,098 |
Pregmod
0.10.7.1-0.1.x
3/28/2018
13
-PC cheat edit improvements
-twincest options for new voluntarily enslaved twins during recruitment
-various typos fixed
-more bugs squashed, most notably virgins claiming to have given birth before
3/27/2018
12
-fixed issues with eugenics and the rival conflict
-fixed various little bugs
11
-added many new git submitted nationalities
-fixed needless space between knock yourself up and its link
-revised saLiveWithHG's diet block to better stick to dietary targets
3/26/2018
10
-added breeder's diet (boosts conception rates)
3/26/2018
9
-git resync, mostly typos on this end
-fixes to issues in facilities on the git end
3/25/2018
8
-fixes and tweaks, nothing major
3/24/2018
7
-fixed a couple minor annoyances
-if any slave has a .reservedChildren value, the incubator global tracking resetter will be usable
6
-new voluntarily enslaved pairs can show their incestual love during recruitment
-minor tweaks to muscle building and steroids
-added fertility diet
5
-fixed improper usage of jsEither()
3/23/2018
4
-fixes to setPregType()
-slimming diet can now be reassigned after muscles are completely gone to trim assets
3.1
-little fix to broodmother initiation in wombJS
3
-finished implementing setPregType(), now to find it outputs multiples too readily
-incubator now adjusts .hormoneBalance when the hormone settings are on
-various spelling corrections and a minor bugfix
2.1
-minor fixes
-fixed boomerang slave relation null pointer exception
2
-fixed boomerang slaves null pointer excetions regarding rivalries and relationships
1.1
-reverted change to traitor slave origin concatenation
1
-many spelling corrections
-fixes to decreasing custom nationality weighting
-fixes to bad versionID setting
-partial implementaion of setPregType()
0.1
-minor fix to generateXYslave
0
-fixes severe issues with customized slave trade
*Requires backwards compatibility - no exceptions
v1022 (0.10.7.1-0.1.0)
0.10.7.0/1
3/22/2018
407
-spelling fixes
-decreased memory usage, apparently signifigantly
-added setPregType(), but not implemented it yet
*Severe issues with customized slave trade. If you are not using it, DO NOT USE THIS VERSION.
406
-minor fixes
-major fixes and overhauling to autosurgery and to the RA
-backwards compatibility should no longer unset all your rules
-FResult JSification
3/21/2018
405
-various text fixes
-fixes to csec bug
404
-numerous reported bugs fixed
-also a few typos
3/20/2018
403.1
-fixed all reported bugs and typos
403
-XX, XY, and XXY diets now properly handle boobs
-minor fixes
-pregmodder can not spell "receive" thus necessitating a sanityCheck entry
402
-SFanon's new trio of recruits
-Pregmodfan's continued fixing and tweaking of his preg tracking system
-lower back brand location
-fixes
3/19/2018
401
-tweaked saLongTermEffects pregnancy setting
-various little fixes
-fixed missed closing '>' in neighborsFSAdoption
3/18/2018
400
-added neighbor FS Incest Festishist
-new JS functions (areRelated())
-more fixes
3/17/2018
399.2
-added missing impregnation checks to slave-slave impreg
399.1
-policy now sets properly
399
-added incest focus policy (pre-EgyptianRevivalist bonus)
-SFanon's fixes and tweaks
-pregmodfan's fixes to the autosurgery
-pregmodfan's belly implant implantation and filling to the RA
-pregmodfan's broodmother implant tweaks (implant stays in after shutdown; must be removed surgically, but can be restarted)
-various little text fixes
3/16/2018
398
-fixed HG, BG, and HG's slave not showing up in endweek if you have no other slaves in the penthouse
-various text fixes
3/15/2018
397
-fixed broken nice nurse outfit belly description
-game start player pregnancies should be initialized properly now
396
-fixes to PC cheat menu
-continued work on belly descriptions
-minor text fixes
3/14/2018
395.1
-fixes hostage inheriting starting girls wombs
395
-unbroke fake belly clothing descriptions
-fixed starting girls sometimes having piercings
3/12/2018
394
-more fixes to pregnancy clearing
3/11/2018
393
-Incursion specialist background
-little fixes
392
-SFanon's PC cheat menu
-fixes to sellSlave and slaveSold
3/10/2018
391
-finished saChoosesOwnClothes rework
-fixes
3/09/2018
390
-sugarcube updated to 2.24.0
-little text fixes
-tweaks to personal attention "sex" to make use of available tits and dicks where appropriate and to not use virgin holes
389
-various git fixes (brothel implant ads, custom slave voice, SF tweaks)
-stripped JS of all "Sugarcube.State"s leaving it as "State"
3/08/2018
388
-fixed a very very unlikely case in sister indentification
-fixed some improper pregnancy sets in the dairy
-fixed more improper preg sets in saLongTermEffects
-barred random impreg in dairies with preg settings on
387
-tweaked saGuardsYou to actually count facility heads the BG has trained when it comes to counting successors
-your BG nows considers servants and your harem in her count
-a race now no longer can be both superior and inferior
-slaves can now die of age as young as 50 should they be in bad condition, conversely, healthy slaves live longer
-reordered full royal court enslavement to circumvent a possible ghost in the machine situation
-partial revert to scheduledEvent to handle sugarcube BS
386
-tweaked childgen to only random face and int for playerXmarked if the child is below the minimum value
-migrated mindbroken kicker cases from slaveAssignmentsReport to saTakeClasses and saStayConfined
-hyperpreg and overwhelmingly female hormone balances now prevent oversized breasts from shrinking
-slaves below 10 are now more resistant to developing fetishes
-fixed bad initialization
-various little text corrections
385
-fixed itt noted errors
-lowercasedonkey's tabed slave overview (find it in options)
-tweaks for potential issues in scheduled events
3/07/18
384
-various git merges
-devoted virgin event
3/04/18
383
-Revamped vector art content
-Edit neighbor cheats
-various submitted fixes
-various reported bugs
????
382
-overhauled saChoosesOwnClothes (currently trapped on a powerless computer)
3/02/18
381
-ocular implants now get consumed on use
-fixed minor text bugs
3/01/18
380
-addition gui support for jquery (git only for now)
-crimeanon's secEx replenish all option and fixes
2/28/18
379
-more fixes to player birth
378
-fixed issues with mindbreak/fuckdolls and corsets/heels
-masochists now get off from extreme corsets and heels
-fixes to trade show
2/27/18
377
-major fix to youth and maturity pref failing not clearing SMR, law and PA appearance
376
-pregmodfan's fixes to player pregnancy
375
-Sfanon's fixes and tweaks
-some more robust catchers for NaN'd rep
-pregmodfan's tweaking to saAgent
-cleaned out all the new sanityCheck complaints
374
-fixed pregnancy desync in startingGirls
2/26/18
373
-raWidgets now will not complain about "please you"
-fixed policies and PA tabs requiring cybermod
-some code cleanup in RETS
-removed a mysterious <<break>> in the neighbors FS selection
372
-more prodding to seBirthWidgets
-sidebar reorganization
2/25/18
371
-cleaned up seBirthWidgets some more to bring in back in line with original intent
-various little fixes
370
-various bug fixes
-more stuff from SFanon
Agent pregnancy bug still in play.
2/24/18
369
-fixes for pregmodfan's pregnancy tracking
-SFanon's continued SF work
368
-added missing dairy broodmother birth
-hacking skill allows you to pose as a medical expert to gain access to some of surgeon's starting bonuses
-reduced hacking bonus to be in line with other bonuses
-tons of logic fixes in scenes
-updated RA to use itemAccessibility JS
2/23/18
367
-filled another braces exploit
-SFanon's SF work
366
-more support from pregmodfan to his new system
-fixes to the facility decoration bug
-other fixes
-added a new hpreg recruit (in cheatmode only as preg counts that high aren't handled yet)
365
-SFanon's player hacking skill (basic implementation)
Still more to come with it.
2/22/18
364
-sidebar notification when you can start a new FS
-pregmodfan's new pregnancy tracking system
-fixes to players being unable to manage HG, BG, rec
2/21/18
363
-added labor suppressant feedback to BellyDescription
-tweaked Mercenary Romeo to avoid mastersuite slaves and your wives if given the option.
-further tweaked Mercenary Romeo to only fire off if you have a public slave or a slave that has seen lots of public duty. MB, FD and NG+ exclusions.
2/20/18
362
-added .pregWeek to the advanced cheat edit slave
-added slow gestation feedback to PregnancyDescription
-added labor suppressant feedback to PregnancyDescription
-added speed gestation feedback to PregnancyDescription
BellyDescription may need additions as well for the trio.
2/19/18
361
-revised fertility goddess nicknames to favor nationality based ones before others
360
-added fertility goddess nickname type (needs more nicknames)
-added head girl tastes for Repop focus
2/18/18
359
-neighbors can now have the same potential number of FS as you instead of a hardset 4
-this also caps the rival
358
-attempted to plug braces exploit
357
-submitted fixes
-use another slave to impregnate her now respects chastity properly
2/17/18
356
-minor fixes
-minor fixes submitted via git
-more additions and fixes to the revamped vector art (I also now know what it is called.)
-added option to c-section a slave should you feel like it
355
-minor fixes and a major fix to personal attention
-additional new vectors for the new embedded vector art
2/16/18
354
-preg biometrics collar now reports new mother status
-preg biometrics collar reporting early pregnancy now pleases repopulationists
-submited text improvements
2/15/18
353
-slaves now experience a postpartum state post pregnancy
It takes four weeks normally to end and during which they suffer a percentage reduction to FResult that deminishes each week until their normal cycle begins anew.
2/14/18
352
-unbroken slaves' deovtion loss due to knocking you up now increases in severity the more times it happens
-fixed minor text issues
-spellchecked the patch notes this time
351
-minor text fixes
-slaver background now starts with discounted starting girls
350
-player pregnancy postpartum state active
349
-minor text fixes
2/13/18
348.1
-added missing "tails" vector
348
-anon's new unembedded hair vectors
-some code condensing from fcanon
347
-untangled dispensery text
-fixed some spelling issues and duplicate words
-backend work for postpartum players
-isPlayerFertile($PC) JS
2/12/18
346
-fixed new fertile ovaries organ
-fixed bad <<FSChange>>
345
-now menopause reversal won't clear pregnancies
344
-fixed several text issues
-added menopause reversal
343
-fixed missed closing ifs in seBirth
-fixed mishandled rude title in fearful balls event
342
-FCanon's big ass patch
-numerous bug fixes and optimizations
2/11/18
341
-broodmother shutdown added
340
-implemented broodmother shutdown variable
-fixed HG + slave display on the arcology layout
-fixed issues with the old-style UI
-various little fixes
339
-FCanon's fixes
-fixed some display issues involving $PC.customTitle
2/10/18
338
-various little text fixes
-sugarcube updated to 2.23.5
337
-fcanon's RA assignment fixes
336
-finished cleaning birthWidgets and making sure clothing birth accommodates broodmothers
2/09/18
335
-fixed attackReport. Not going to ask how it ended up like that in the first place.
-fixed dairy assigning ignoring facility caps
2/08/18
334
-fixed potential bad ages in two slave recruit events
-various minor tweaks
-birthWidgets cleaning
2/06/18
333.1
-removing the broodmother implant now actually does what it is supposed to
333
-phase 6 completed (broodmother type 1)
-typo corrections
332
-minor sanityCheck fixes
2/05/18
331
-phase 6 work (all broodmother births completed)
-various little submitted fixes and tweaks
-FCanon's ra fixes
2/04/18
330
-fixed reappearing peacekeepers
-phase 6 work
2/02/18
329
-fixed degrading names
328
-fixed reNickname and slaveSold
327
-various code cleanup
-tweaks to agents
-fixed grammatical issues involving luxurious hair
-pregmodfan's nickname fixes and other fixes
-phase 6 work
326
-sugarcube updated to 2.23.4
325
-reduced concentration of string implant malus
-fixes to saAgent's fake belly removal
-fixed permanent makeup text duplication
-various minor text corrections
-phase 6 work
324
-added saAgent
Some physical Agent stats are now tracked week to week.
323
-fixed hidden headgirls
2/01/18
322
-fixed missed rep increase in strip club closing
-removed excess "the"s
-fcanon's agent work
-various little fixes
-phase 6 work
1/31/18
321
-added Faraen's vector art
320
-fix to assignWidgets not porperly handling facility head assignment
319
-anon's master slaver multislave personal training
-fixes
1/30/18
318.1
-critical fix to PMODinit bug
318
-fixed errant ".lightyellow;"
-fixed non lethal pit bug
317
-fixed virginty ignoring in saRules
-fixed lack of virginty taking warning in RESS
-fixed the barracks getting really confused about the number of mercs fucking slaves in it
-anon's corp tweaks
-re-initialized phase 6
316.2
-fixed bad string in FS acquisition
316.1
-better fix to race issue in sup FS acquisition
316
-partial fix to race issue in sup FS acquisition
315
-fixes to assayWidgets (beauty)
314
-fixed bad cashFormat() arguement in costReport
-fixed missed ) in saRecruitGirls
-initialized phase 6
1/29/18
313
-fixed bad cashFormat()
312
-phase 5 completed (hyperpregnancy)
-minor fixes
-anon's $PC.trading tweaks to the corp
-fixed the possibility of use counts going negative in glory holes
311
-anon's labReport fix
310
-crimeanon's fixes
-anon's continued tweaking
-fixed hostages sometimes showing up when they weren't supposed to be
-fixed various little typos and errors
309
-various small fixes
308
-Sugarcube updated to 2.23.1
1/28/18
307
-various submitted text corrections
306
-fixed missed && in SpecialForceUpgradeOptions
305
-fixed issues with orphanage recruits
-small text fixes
-fixed mistargeted spans in custom slave
-fixed infinite JFC looping
-fixed childgen getting confused when the player fathered a slave
-limited height surgeries to +- 15cm from expected average
-anon's economy tweaks
-crimeanon's fixes
304
-anon's tweaks
-removed leftover code from RESS
303
-anon's corp tweaks
302
-fixed missing span in JFC
301
-anon's corp tweaks
1/27/18
300
-anon's corp tweaks
-fixed the upgraded dispensary giving 50% off the reduced value instead of the original
299.2
-and now they are nuns and priests
299.1
-clergy capture slaves are now virgins
299
-converted anon's submitted clergy capture event into the second Chattel Religionist FS acquisition event
-SFanon's fixes and tweaks
-phase 4 work
-fixed the dispensary giving 75% off instead of 25% off
298
-fixed the flesh heap only giving amps if $seeExtreme was off
297
-fixed minor bug in JFC
1/26/18
296
-SFanon's job fullfilment center slave market
-anon's various fixes and tweaks
295
-starting girls can now be set to mindbroken
-fixed some age bugs in reRecruit
1/25/18
294
-consolidated player asset descriptions
-femPC can now officially be flat
293
-added a see pregnancy toggle to game options
-crimeanon's secEx fixes
1/24/18
292
-conitnued implementation of $seePreg
291
-partial implementation of $seePreg
1/23/18
290
-small tweaks to FResult
-fixed minor bugs
-initialized .nipplesAccessory and $seePreg
1/22/18
289
-anon's continued tweaking
288
-SFanon's fixes to SFMBarracks
-phase 4 work
-XY ads now check for a dick instead of the lack of a vagina
-tweaked combat arms deadliness to actually add deadliness
-starting girls now properly tells you their genes
1/21/18
287
-anon's continued tweaks
-fixed reversed degradationist check in new slave intro
-cleaned up chattel religionist's clothing choices in saLongTermEvents
286
-minor fixes
-anon's income tweaks
-anon's vignettes
1/19/18
285
-SFanon's fixes
284
-fixed advertising issues regarding implants
-fixed minor text issues
283
-fixed reversed futanari sisters career effects
-minor text fixes
282
-Crimeanon's tweaks
-SFanon's tweaks and SF cheat edit
-minor fixes
-tweaked eugenics breeding proposal to reflect post SE rebellion
-refiled chains under harsh clothing
1/18/18
281
-fixed introSummary breast setting
-fixed an oversight in authorityReport
1/17/18
280
-fixed multitude of problems brought in with v278
279
-fixed severe issue with "work as a servant"
278
-variety of contributed fixes and corrections
1/16/18
277
-fixed minor display issues
-fixed potential $rep cause in involving SF's Colonel (or fucked up the check and made it worse)
-added .ovaryAge to the cheat edit slaves
1/15/18
276
-fixed improper belly size unsetting in saInflation
-slave on slave feeding now properly clears its variable
-increased cost reduction of servant's quarters
-added more mindbroken checks to cull inappropriate emotion
275
-various overlooked mindbreak checks added
-phase 4 work
01/14/18
274
-fixed broken saWhore vignette
-tweaked how sex counts work in the schoolroom
273
-fixed minor display bugs
-warded against odd .burst hostage inheritance
01/13/18
272
-fixes to saRecruitGirls
271
-many new incest two slave recruit combinations
-small fixes
01/12/18
270
-fixed bad RESS choice
-tweaked puberty events
269
-servants can now qualify for a reduced selection of random events
They are always around, after all.
268
-fixes to policies and master suite
267
-fixed age ads getting set to 0 when they shouldn't be
266
-Gutted random event selection and recoded it as JS
-Crimeanon's fixes
-SFanon's fixes
-minor fixes and typos corrections
01/10/18
265
-fVagina fixes
-SFanon's cleaning
264
-allowed master suite slaves into RESS eligibility
263
-The rest of SFanon's fixes
-minor corrections
-fixed a number of ".SlaveName"s
262
-SFanon's fixes and policy cleanup
261
-small fixes
-secEx fixes
01/09/18
260
-fixes to advertising
259.2
-fixed fVagina, again
259.1
-fixed fVagina
259
-fixes
-phase 4 work
-anons FCTV channel and story
01/06/18
258
-fixes
-phase 4 work
-backwards compatibility fixes for vanilla to pregmod saves
01/06/18
257
-fixes
-phase 4 work
-personal attention now respects chastity better
256
-Fully established eugenics is now abandonable after you've dealt with the uppity SE.
-Corncobman's brothel/club advertisement and code tweaks
-SFanon's fixes
01/04/18
255
-fixed reBoomerang bad variables
254
-minor typo corrections
253
-more minor fixes
252
-SFanon's cleaned up introSummary
-fixed numerous zero'd stats in export slave
-gave most ddDatabase slaves scrotums
251
-tweaked milking arcades to delay slave rotations somewhat (they'll stay healthier longer, but still will eventually require a recovery period)
-minor fixes
01/03/18
250
-SFanon's stuff
-minor fixes
01/02/18
249
-Sugarcube updated to 2.22.0
-fixed lip implants vs natural lips TF check being wrong
-other small fixes
01/01/18
248
-minor fixes
247
-fixed vaginal use incrementing the anal total in the arcade
12/31/17
246
-fixes
Fixes include $failedElite not clearing on ng+, excessive oral use and issues with serve you other slaves.
12/30/17
245
-finished .need fixing
-saServeYouOtherSlaves work
-minor fixes
244
-added stamina pills for player consumption
12/29/17
243
-fixed subordinate slave setting
242
-anon's new family tree display (not yet implemented in startingGirls, so don't freak out)
-various little tweaks
241
-fixed bad variable in costs JS
-fixed unclosed set in endWeek
240
-living rules cost optimization
-code cleanup
-fixed minor bugs involving the BG's room
12/28/17
239
-fixed reputation bug
-fixed secBarracks bugs
238
-fixed slave summary bug
237
-fixes to eugenics bad end
-SFanons tweaks fixes and content
-at least one slave in subordinate targeting must have limbs
12/27/17
236
-fixes
RA XXY diets, scalemail bikini errors, bad engineering training and straps/latex showing up inappropriately in the vector art.
235
-saRules now applies to the HG's slave
-HG and BG no longer consume dormitory capacity if they have their own room
-SFanon's fixes
12/26/17
234
-SFanon's fixes and numbers commaing
233
-fixes
232
-saRules now applies to the master suite
-various little text fixes
12/25/17
231
-saRules now applies fully to the dairy
230.2
-minor elseif if catch in saPleaseYou
12/24/17
230.1
-quick revert to lastEyeSurgery()
230
-fixed eyes autosurgery?
229
-fixes
-QoL changes to unit management in secEx
Fixes include the swan song followup never happening, RA getting too controlling about fertility drugs and incorrectly displayed training costs.
228
-code improvements
-SFanon's player skill stuff
12/23/17
227
-various text fixes
226
-fix for removeActiveSlave incubator quirks
225
-SFanon's fixes
-Milkmaid saRules
224
-SFanon's fixes
-a bunch of lisping tweaks
12/22/17
223
-SFanon's stuff (mostly comma'd numbers)
222
-SFanon's stuff
221
-fixed servants quarters bugs
12/21/17
220
-saRules now applies to the servants quarters
-fixes
Fixed an issue with reMalefactor displaying the wrong text block.
219
-fixes
More cache clearing, fixes to reBoomerang preg setters and a typo in raWidgets causing trouble.
12/20/17
218
-SFanon's tweaks
217
-fixed sex count NaN in saRules-schoolroom
-tweaked childgen to use current father name
12/19/17
216
-saRules now applies to the schoolroom
-fixes
12/18/17
215
-fixed brothel devotion oddities
-adjusted arcology sector demand
-optional comma'd numbers
Every purchase and selling of an arcology sector will now make the nexst more expensive. Selling one increases it more than buying one, so while it may bring in quick money will make it more difficult to reaquire.
214
-saRules now applies to the spa
Also fixed luxury rules being retained when removed from certain facilities. Those will now default to "normal".
12/17/17
213
-lots of spelling corrections
-fixes
212
-fixes
-new outcome for reRebels
12/16/17
211
-fixes
210
-fixed "psychosupresants"
209
-minor fixes
12/15/17
208
-saRules now applies to the cellblock
-new cellblock setting to forbid your wardeness from cumming inside your prisoners
-git contributed fixes
-Inflation settings are also now restricted for the cellblock, similar to the dairy and arcade.
12/13/17
207
-git contributed code simplification and fixes
206
-git contributed fixes
12/12/17
205
-git contributed fixes and muscle range expansion to custom slave/starting girls
204
-saRules now applies to the clinic
203
-fxied bad if in saRules
202
-fixes
12/11/17
201
-SFanons stuff
200
-saRules now applies to the club
199
-fixes
198
-fixes
-saRules now applies to the brothel
12/10/17
197
-anon's tweaks
Mostly little cheat edit tweaks to secEx.
196
-fixes
-saRules tinkering
12/09/17
195.1
Should fix >>149556
195
-fixes
-saRules tinkering
194.1
-same fix as >>149491 (Broken pharmaceutical fabricuator purchase option)
194
-SFanon's passive PC skill gaining
-anon's various additions and corrections
-fixes
12/08/17
193
-fixes
192
-anon's leadership slave skills
-fixes
12/06/17
191
-SFanon's fixes
-Crimeanon's fixes
190
-SFanon's fixes
189
-fixes and tweaks
188
-fixes
-SFanon's fixes
-secEx tweaks
12/05/17
187
-fixes
-SFanon's fixes
186
-fixes
-SFanon's stuff
185
-fixed <<m>>
184
-tweaks to pregnancy breast growth
-pregnancy overhaul phase 3 (belly implants) completed
183
-sugarcube 2.21.0
-continued bellyImplant work
12/04/17
182
-fixes
181
-fixes
-reduced value of milk and cum
-continued bellyImplant work
180
-fixes
179
-fixes
-FSanon's custom slave voice options
-continued bellyImplant work
12/03/17
178
-fixes
12/02/17
177
-fixes
176
-fixed bugs
175
-added anon's siren song part 2
-fixes
-added tracking to ng+ slaves to keep them from stealing the spotlight in certain current game events
174
-added SFanon's eye and hair autosurgery settings
173
-The Hippolyta Acedemy added
-fixes
12/01/17
172
-SFanon's stuff
-anon's slave self impregnation
-fixes
171
-fixed .pregSource not handling ng+
-tweaked childgen
11/30/17
170
-added vector art anon's bushy pits
-tweaked childgen
169
-SFanon's fixes
-Doubled non size related bonuses in GR's big butt policy for slimness societies to offset the negative of big butts
11/29/17
168
-disabled broken vector
-escorts now have a slight edge when it comes to teaching slaves sex skills
167
-SecEx battle prestige
166
-fixes
-some minor tweaks
165
-fixes
-dairy entry tweaks
-color tweaking
11/28/17
164
-fixes
-continued color wars
163
-minor fixes
-color standardization/what the fuck does this color even mean?
162
-fixes
-SFanon's fixes
-Crimeanon's fixes
11/27/17
161
-fixed custom slaves making all slaves their race
160
-fixed reRecruit
159
-fixed bugs
-added a policy for open slave dick use
11/26/17
158
-fixed lactation implant dairy setting bug
157
-added rumor reduction to reputation policies SecEx:
-discounts for applicable PC experience
-cyber upgrade for units
11/25/17
156
-SFanon's fixes and tweaks
155
-fixed princes
154
-fixed FCTV channels 12 and 13 not showing reruns should they run out of content
153
-Security Expansion mod officially added
-finished phase 2 of the pregnancy overhaul (inflation overhaul)
-added the option to not implant cattle for lactation implants to the dairy
-fixes
11/23/17
152
-fixes
-changes to whoring/slutting/hole need
-continued inflation work
151
-fixes
-tweaks to BP and TF in regards to extreme facial surgery and race alteration
-continued inflation changes
-SFanon's stuff
11/21/17
150
-tweaks
149
-custom slave overhaul
11/20/17
148
-added settings to enable/disable lactation implants in flat slaves
147
-fix
146
-fixes
-dairy now only increases breasts in lactating slaves and the stimulators increase cum output
145
-fixes
-new SJW recruit
-dairy slaves will only receive lactation implants if they have no dick, have breasts larger than flat, or are already lactating naturally.
-nationality reweighting
11/19/17
144
-The daughters of liberty now require combatants to pass a physical before deployment (the captures will be in a more reasonable fighting shape)
143
-SFanon's stuff
142
-fixes
141
-completed new vanilla country additions
-fixes
11/18/17
140
-fixes
-SFanon's stuff
139
-fixes
138
-fixes
-SFanon's stuff
11/17/17
137
-fixes
-began inflation rework stage of pregnancy overhaul (phase 2)
11/16/17
136
-fixes
-RESSTR cleaning completed
135
-fix to RA drug reduction targets not subtracting implants
134
-major revisions to how temporarily removed slaves are handled
11/15/17
133
-major fixes to temporarily removed slaves
-fixes
-removed restrictions on hormone blockes
-RESSTR event cleaning
11/14/17
132
-fix
131
-fixes
-Completed RESS cleanup
130
-fixed the free range dairy assignment scene
-SFanon's stuff
11/13/17
129.1
-more fixes
129
-fixes
128
-anon's scalemail bikini
-fixes
127
-fixed fFeet
126
-fixes
-major oversight corrections
-added short stories to FCTV
-alterations to artWidgets.tw
11/12/17
125
-fixes
-RESS work
124
-fixes
-dairy diet changes
123
-some fixes
-more RESS work
11/11/17
122
-fixes
-very bushy pubes
121
-fixed >>140790 (<> in the DefaultRules widget is missing a $)
120
-fixed bugs
-removed deprecated "be your recruiter"
-more RESS stuff
11/09/17
119
-fixes
118
-fixes
11/08/17
117
-fixes
116
-tweaked supremacist and subjugationist beauty and FResults
-fixes
-more RESS work
115
-fixes
-more RESS work
11/07/17
114.1
-fixed >>139762
114
-fixed bugs
-capped devotion gained from max trust to prevent unruly slaves from suddenly loving you
-more RESS work
11/06/17
113
-fixes
-added isItemAccessible() to handle those obnoxious checks for FS and purchased items
11/05/17
112
-fixed bugs
-tweaked choosing own clothes a little
11/04/17
111
-fixes
11/03/17
110
--fixes
-vanilla cleanings
-continued RESS work
11/01/17
109
-fixed >>137381 (mutinery attempt - Cannot read property 'nationality of undefined)
108
-fixed self pregnancy confusing childgen
107
-fixed reported bugs and family quirks
10/31/17
106
-RESS work
-hormone blockers now block erections
105
-converted the applicable .hormone calls to use .hormoneBalance
-added hormone blockers to restrict hormone effects and speed normalization while used
10/30/17
104
-fixes
103
-hormones rework
-fixes
10/28/17
102
-fixes
101
-fixes
-Milkanon's channel is live in FCTV
100
-fixes
-fFeet overhaul
-fFeet moved out of cheatmode
10/27/17
99
-fixed various bugs
98
-fixes
10/26/17
97
-fixes
96
-stuffedanon's fixes
10/25/17
95
-added masturbation only release rule
-fixes
10/24/17
94
-fixes
-vanilla tweaks
-nationality presets now use weighted arrays (except the big one, haven't gotten it done yet)
-eugenics bad end rework
93
-fixes
10/23/17
92
-bunch of vanilla stuff since I raided the waiting vanilla pull requests
-fixes
91
-fixes
-user submitted QoL improvements
10/22/17
90
-added >>135219 (Economy widget/spreadsheet fix for case when variables are somehow not initialized but the sheet is being displayed anyway)
89
-fixed reAWOL
88
-SFanon's work
87
-minor fixes
86
-minor fixes
85
-SFanon's stuff
10/21/17
84
-number of bugfixes
10/20/17
83
-fixed bugs
10/19/17
82
-anon's economy reports
-continued RESS work
81
-SFanon's fix
-minor fixes
10/17/17
80
-fixed "desperate birth" more
79.1
-more grammer fixes to reRecruit that failed to slip into v79
79
-fixes (sans multi organ implant quirks)
-SFanon's stuff
-attempted to extend custom tattoos
78
-fixes
-anon's multiple organ growth and implantation
10/16/17
77
-fixed reported bugs
10/15/17
76
-fixed puberty setting with implanted organs
75
-SFanon's stuff
-anon's organ farm support for the incubation facility
-more RESS work
-fixes
10/14/17
74
-fixes
10/13/17
73
-SFanon's stuff
72
-fixes
10/10/17
71
-fixes
-more RESS work
-added oversized sex toys to the list of accessories the RA can manage
70
-fixed reported bugs
69
-SFanon's fixes
68
-fixed the giant robot upgrade prmpt occuring prematurely
67
-fixed reported bugs
66
-fixes
-dispensary prettying by SecurityExpansion anon
-Massively cleaned up SFMBarracks
10/09/17
65
-fixed my passage fuckup
64
-fixed bug?
63
-fixed bugs?
62
-fixed reported bugs
-SFanon's continued work
-more RESS work
10/08/17
61
-added "anti-aging cream", "growth stimulants", "sag-B-gone", "male hormone injections", and "female hormone injections" to drugs the RA can manage
60
-SFanon's SF stuff
10/07/17
59
-fixes
10/06/17
58
-fixed >>131078
10/05/17
57
-fixed >>130781 >>130783
56
-tweaked childgen intelligence loss and facial beauty loss due to inbreeding (lessened chances for both, degree for beauty)
-SFanon's corporation fixes
55
-SFanon's BC fixes
10/04/17
54
-SFanon's stuff
10/02/17
53
-assorted fixes
-continued RESS work
10/01/17
52
-fixed reported problems
-arcade will no longer convert slaves sentenced to it into fuckdolls
51
-added SFanon's merge request
09/30/17
50
-fixed creating SF event
49
-fixed, Milf tourist event and decline politely.
-pregmodfan's continued RA tweaking
09/29/17
48
-fixed, SFMBarracks.tw has two extra closing ifs, Lines 328 and 374.
47
-fixed bugs
-SFanon's continued SF work
09/28/17
46
-pregmodfan's RA tweaking
45
-fixes
-RESS work
44
-fixes
43
-fixes
-pregmodfan's continued RA tweaking
09/27/17
42
-various fixes
09/26/17
41
-small fixes
40
-fixes for everything but the RA quirks
39
-fixed reported bugs
09/25/17
38
-Pregmodfan's RA tweaks
-Removed maximum rules counter (replaced with warning if more then 10 rules used).
-Rules now can be selected randomly from list, not only chain go to for next/previous
-belly size condition (for .belly ).
-Groups of links controls for growth drugs now working without page reload after any click - so it's much more comfortable to use now.
37
-catches for (a slave been born mindbroken if their mother is) and (anal virgin enjoying anal)
36
-fixes the pussy option during the cellbock's sleep deprevation event.
09/24/17
35
-fixes
-all RESS intros cleaned up and added to
34
-fixed bugs
-added spats to the RA
-enabled "frightening dick" event
09/23/17
33
-fixes
-typos corrections
32
-fixed bugs
31
-fixes
30
-fixes
-SFanon's stuff
29
-fixes
-slaves can now lisp the word "access"
09/22/17
28
-SFanon's stuff
-fixes
27
-minor fixes
-tweaks to bed reporting
26
-fixed price not showing up in the airlift in slavery option
09/21/17
25
-SFanon's stuff
-minor fixes
24
-fixed bellyAdjective()
-fixed some typos
22/23
-SFanon's stuff
21
-user submitted stuff
09/20/17
20
-fixes
19
-fixed bugs
09/19/17
18
-fixed >>125249
17
-fixed the slave shelter bug
16
-fixes
-cleanup and added clit rape into fSlaveSlavedick
09/18/17
15
-added a catch to prevent >>124979
-added custom lenses to add custom description
09/17/17
14
-fixed bugs
13
-fixed SFBarracks
-the second half of anon's spats
12
-fixes
-SFanon's SFBarracks stuff
-vanilla title changes
09/16/17
11
-fixes
-anon's spats and t-shirt clothing
10
-fixes
09/15/17
9
-fixed >>124399
-added anon's option to buy both the princess and queen
09/14/17
8
-minor fixes
7
-fixed >>124177
6
-fixes
5
-RETS overhaul
4
-vanilla fixes
-bug fixes
09/13/17
3
-added details for some of the new vanilla nationalities
-tweaked .need generation
2
-fixed >>123773
0.10.7.0
-vanilla stuff
-bugfixes
09/12/17
118
-fixed reported bugs
117
-fixed >>123580
116
-backwards compatibility now properly sets .birthWeek
115
-pregmodfan's RA fixes
114
-vanilla update
To sum it up: You can now influence neighbors with your recruiter and your slaves now have sexual needs that must be handled or they'll get moody. Also changes to starting girls prices to smack those who try to stack good things by offsetting them with bad things.
113
-fixes
-anon's height focused growth drugs and other related things
09/11/17
112
-various bug fixes
09/09/17
111
-bugfixes
110
-possible backwards compat fix
-fixed weight stuff in artWidgets
109
-heavy conversion of the flesh descriptions to the new pregnancy system
-bugfixes
-clean up of remnant "GenderRadicalistLaw"
09/07/17
108
-fixed >>122211 (119980)
09/05/17
107
-fixed >>122158 again
106
-fixed >>122158 ?
105
-hopefully fixed the bodymod studio
104
-hpefully fixed drgus not working in MS
103
-vanilla content
Mostly stuff related to piercings, HGs getting to pierce slaves, some new rivalry causes and a nerf to attraction gain.Also FCdev failed to realize he had 'SlaveFullName' and didn't need to make 'FullName', so I set it up to yell at you to yell at me to remove it.
102
-bug fixes
-now in .7z
09/04/17
101
-fixed bugs
100
-fixed bugs
99
-fixes
-anon's starting girl quirks
-continued overhauling
09/02/17
98
-fixed bugs
-added an override to 'KnockMeUp' to supress text
97
-fixes
96
-bugfixes
95
-fixes
09/01/17
94
-fixed >>120653
93
-fixes
92.1
$injectionUpgrade changed for testicles
92
-tweaked intensive drugs more as directed
-added "mongolian" to the name flipper
91
-fixed >>120436 maybe?
-tweaked breast based beauty to accommodate the size increase
-altered dairy breast growth
90
-fixed bugs
-messed with rival-hostage events
08/31/17
89
-fixed reRoyalBlood
-fixed other bugs
88
-fixed hedonism's shops
87
-fixes
-anon's RA stuff
-anon's ability to buy the entire royal court
86
-fixed >>120006
Turned out to be oversized breasts having one too many 'if's.
08/29/17
83
-more overhauling
All slavegen should be accounted for under the new system now.
82/81
-bug fixes
It helps to run the sanityCheck before posting the patch.
80
-tried to handle >>119556
08/30/17
85
-vanilla changes
-fixes
Biggest thing to report is definitely the breast size cap being raised to 50kcc. A slightly smaller thing to say; balls now go to 10.
Still working on getting the RA changes in.
84
-fixed bugs
08/28/17
79
-maybe fixed >>119513
Keep in mind the slave must have arms and legs.
78
-core pregnancy system swapped
-fixed some bugs
Run backwards compatibility. No exceptions.
I think everything is in place that needs to be in place. Very little beyond behind the scenes type code. If everything went right, there should be nothing really noticeable yet.
The most obvious change will be the alterations to menopause. It is no longer hard set at 47, instead it drifts slightly year by year. This means that over a slave's lifetime, you will see a variance of when they go through menopause.
08/27/17
77
-fixed >>119185
A prime example of a temp variable running rogue.
76
-removeActiveSlave should now dump their growing organs
-typo fixes
Some other minor things here and there too.
08/26/17
75
-fixed >>119084
-a submitted addition of the cleansing diet to the RA
74
-fixed bugs
73
-fixes
72
-fixed bugs
I may have broken slave facility assignment. Or maybe I fixed >>118907
I don't know.
Also if your rules are broken, run either backwards compatibility or the rules resetter under options. Both should fix it.
71
-rest of the vanilla RA changes
It honestly looks like it didn't break anything. Do run backwards compatibility though.
70
-vanilla stuff
Mostly intense growth drugs. Due to our RA changes, I couldn't hook them into it so it will remove them for now. Still have to handle the massive RA changes, which will likely break everything.
08/25/17
69
-fixed bugs, including a mislink to the slavegirl school
Beginning vanilla update merge now.
68
-quick addition of something I overlooked
67
-fixed bugs
66
-fixed reAwol harder
65
-fixed bugs
08/24/17
64
-fixed a bunch of bugs
-added a new slave school that seeks to breed the perfect cowgirl
It's slaves still need a little work, as they currently lack certain intended reactions to things like milking, etc.
63
-bug fixes
-some of anon's submissions
08/22/17
62
-fixes
61
-fixed bugs
Except for the PC breast feeding report, that is based off of a player choice at game start linked to advanced pregnancy and thus working as intended.
60
-anon's expanded smuggling personal attention
59
-fixed backwards compatibility
-bug fixes
Backwards compatibility should actualy work now. It was mispelled.
08/21/17
58
57
-fixed a couple bugs
56
-fixed the HG not properly handling flaws
-fixed other bugs
-fixed typos
55
-fixed self-impreg
54
-fixed >>117021
53
-fixed >>117003
52
-readded lost artWidgets code
-fixed your rude PA
51
-fixed >>116926
-you can now seed a freshly implanted broodmother to have her bear your children. You need a penis to do this.
08/20/17
50
-fixed bugs
-hopefully fixed the hole in walk past
-added a clear condition for contraceptives if the slave lacks ovaries
49.1
-added a fix to the gender FS laws contributed to the git
49
-fixed bugs
-added hair length maitenance to the salon
48
-vanilla part 2
08/19/17
47.1
Fixed [SetupVars] <<set>> bad evaluation Unexpected string
47
-vanilla content part 1
46
-anon's gang leader personal attention option
-bug fixes
08/18/17
45
-fixes
44
-possible fix for slaves getting denied by every slave they seek a relationship with
43
-fixes
-tweaks to $enduringRep and whoring/devastating rumors
08/17/17
42
-fixes
-age penalties off now applie to HG like it should
41
-fixed bugs
-added some paraphillia vignettes
-added in anon's mutiny attempt
40
-fixed >>115783
39
-minor fixes
38
-anon's spelling corrections
37
-fixed >>115701
08/16/17
36
-now with less broken newSlaveIntro
35
-fixed reported bugs
-HG will now try to break her assigned girl if she is unbroken before dressing her up nicely
34
-fixes
33
-vanilla stuff
Mostly bugfixes, a new recruiter target and some changes to vector breasts.
08/15/17
32
-fixed bugs
Fixed the counter for the number of a slave's children you've had and hopefully added clears to the remote surgery to prevent chastity devices getting stuck on in the first place.
31
-added catches to clear chastity devices from slaves that can't wear them.
30
-fixed bugs.
29
-fixed >>115265
28
-fixes
27
-fixes
26
-fixed physical development
08/14/17
25
-small tweaks to saLiveWithHG
HG will fatten up her slave if hedonistic decadence is in play and will make use of hyper drugs if you have them researched. Also cumsluts will now expand their slave's balls to get more cum.
24
-fixed a critical bug with the menopause reversal
It helps to actually link player age with it at game start, you know?
23
-added player surgeries to rid yourself of a postpartum belly without the wait and a second to temporarily restore your fertility post-menopause.
-fixed bugs
08/13/17
22
-player pregnancy overhauled
-some typos fixed
21
-fixed butts getting too big for their descriptions
20
-fixes and description corrections
19
-little fixes
08/12/17
18
-fixed elective surgery bugs
17
-I don't remember if I did anything.
16
-fixed >>114360
15
-fixed facial quirks
-maybe fixed vector art troubles?
14
-fixed sePlayerBirth
13
-fixed bugs
12
-fixed bugs
-player abortion should be working right again
08/11/17
11
-fixed bugs
10
Does backwards compatibility work now?
9
-hopefully fixed backwards compatibility
8
-ra fixes
-partial conversion to the new pregnancy system for the player
08/8/17
7
-unfucked sales descriptions, maybe
-fixed some bugs
6
-added vasectomies
-anon's RA fixings
5.1
Still poking at the RA.
5
Trying something here. I commented out the offending drug removal code in the RA, tell me if anything changed. I expect you will have to manually unset the drugs once all growth targets are hit though, but we'll be on the right track.
4
-anon's gender rad law has been added
-the vector art is now on the git
3
-vanilla updating
-bugfixes
2
-fixed reported bugs
1
-now with passages in the right place
0.10.6.0
08/7/17
84
-fixed bugs
-food stuffing is now available
83
-fixed bugs
82
-fixed a possible costs report bug
81
-bugfixes
-some oversight corrections
08/6/17
80
-fixed a $$
79
-fixed bugs
78
-nobr'd a bunch of passages
-fixed some bugs
-corrected some oddities
08/5/17
77
-fixed bugs
76
-placeholders removed
-food stuffing now has effects
08/4/17
75
-fixed bugs
-corrected some oversights
74
-lowercase-donkey fuckery
73
-Fixed some bugs
08/3/17
72
-fixed bugs
71
-fixed >>111042
70
-minor fixes
-pointless changes to the encyclopedia
69
-bug fixes
08/2/17
68
-fixed >>110899
67
-added beauty policies for physical idealist and hedonistic decadence for strongfat slaves. These are mutually exclusive with the other beauty standard for them, but not with those outside of it.
-fixed bugs and oversights
-hit the sanityCheck more to remove false positives, though I still can not get rid of the ones it still shows
66
-fixed bugs
65
-vanilla changes
-bugfixes
08/1/17
64
-bugs fixed
63
-fixed misplaced 'enunciate' in reRelativeRecruiter
62
-various reported things fixed
61
-surgically removing dicks and vaginas will now remove accessories that require them.
60
-fixed bugs
59
-fixed reported bugs, sans the mystery NaN
07/31/17
58
-fixed bad 'PoliteRudeTitle arguement
57
-fixed >>110176
-added a catch to prevent hostages from inheriting amputation or clipped heels from starting girls.
56
-tossed in a catch to correct amps having clipped tendo
55
-vagina removal surgery no longer requires a penis
54
-just a catcher for a potential ndef foreskin bug
53
-fixes
52
-cellblock will kick out mindbroken slaves
51
-added fat grafting surgery
07/30/17
50
-fixed the rest of the bugs
-also fixed some quirks involving vanilla changes to slave naming overriding your chidlrens' surnames
49
-fixed bugs and oversight
48
-fixed bugs
07/29/17
47
-fixed bugs
46
-added universal rule to strip all slaves of their surnames and auto strip any future slaves while it is active. You can still give back particular slaves their surnames, should you so choose.
07/28/17
45
-added in the missing belly implant resetting passage
-minor tweaks
44
-vanilla patches
43
-fixed bugs
-altered that bonus for 18 year old slaves to apply to minimum slave age instead
-likely broke the RA more
42
-fixed bugs
07/27/17
41
-altered core belly implant rules
-changed how weight affects assets in slavegen
40
-FCGudder's span fixing and other cleaning
-altered how nipple color is set
39
-fixed hg suite issues
38
-fixed bugs.
07/26/17
37.1
-now with NaN checks that actually check for NaNs
37
-fixed pregnancy inconsistancies
-added a NaN catch for the slave sex counts
35
-fixed >>108923
34
-fixed bad costs cases
33
-fixed missed $policyCost
32
-fixed some oversights in costs
-costs now runs entirely in JS
31
-bugfixes
30
-fixed >>108865
29
-bugfixes
-vanilla stuff
07/25/17
28
-bugfixes
27
-FCGudder's improved slaveSummary
26
-anon's ra fixes
-minor tweaks
25
-bug fixes
07/24/17
24
-vanilla stuff
23
-fixes
-code improvements
22
-added anon's tiered brothel aphrodisiacs
21
-fixed >>108360
20
-anon's facility filter functions
-couple fixes here and there
07/23/17
19
-fixed slave summary
18
-anon's assignment filter stuff
17
-various fixes and optimizations
07/22/17
16
-bugfixes
-oversight corrections
15
-fixed bugs
14
-fixed many bugs
07/21/17
13
-bugfixes
12
-fixes
-vanilla patches
07/20/17
11
-bugfixes
-added FCGudder's new shelter slaves
10
-typo fixes
-minor bugfixes
-oversight corrections
9
-vanilla fixes
8
-fixed seBirth
07/19/17
7
-fixed phantom dicks in fVagina
-added FCGudder's vector stuff
6
-fixed bugs and oversights
5
-fixes
4
-fixed >>107062
3
-maybe fixed seRaiding
2
-fixed bugs
1
-vanilla bugfixes
0.10.5.0/2
41
-vanilla fixes
-RA fixes, thanks to anon
07/18/17
40
-initialized new variables
-further extended family mode optimizations
39
-vanilla updates
-FCGudder's guddering
07/17/17
38
-fixed >>106706
37
-FCGudder's image corrections to salon/remote surgery/etc
-fixed >>106562
36
-remote surgery and salon less wordy
-further optimizations to extended family mode
07/16/17
35
-fixed bad descWidgets paste
34
-fixed bugs
33
-fixes
-continued optimizing
32
-fixed bugs
-further extended family mode optimization
07/15/17
31
-vanilla bug fixes
-pointless vanilla code moving
-FCGudder's better than vanilla slave summary caching
-bugfixes, including seRaiding
-extended family mode optimizations
07/14/17
30
-fixed bugs
29
-fixed bugs
07/13/17
28
-fixed "0 is not her original surname;"?
27
-fixed bugs
-FCGudder's fix
26
-fixed fake belly bugs
25
-fixed the policy stuff
24
-vanilla patches
-bug fixes
07/12/17
23
-vanilla content
-bugfixes
22
-vanilla patching
-fixed some bugs
-you can now stop carrying children for the SE after you've carried at least one
07/11/17
21
-hopefully fixed seDeath
-finished vanilla's lisping wave
20
-lots of little vanilla things
-anon's Physical Idealist beauty standard
-pregmodfan's ra additions
-bugfixes
19
-fixed seBirth
-anon's physical idealist law is functional, but lacks the beauty component for the moment
18
-fixed names correctly this time
-started adding anon's physical idealist law
17
-fixed name nonsense
07/10/17
16
-this >>104926
-added another pair of height SMRs to limit heights
15
-resynced matchmaking
-little bug fixes
07/09/17
14
-altered policies into a single policy
-anon's better RA fixes
13
-fixed RA applying drugs to slaves it shouldn't
-fixed DJs and Madams fixing paraphillias
-added a pair of basic height related SMRs
-fixed this >>104691
12
-added player skin tone changing
-Societal Elite no longer accept children of the wrong race in sup and sub societies for marking
07/08/17
11
-changed dye naming scheme
10
-fixed bugs
-added fairyanon's descriptions
9
-fixed extra <</if>> in longSlaveDescrption.tw, line 726 and extra periods
8
-finished vanilla update
7
-vanilla patches
-new fathered variables now report their contents
-.origSkin added
07/07/17
6
-fixed barracks? (It's showing up, at least)
-added FCGudder's anaphrodisiacs
-added a number of father tracking
-added some canWalk() and canTalk() checks to sePlayerBirth
5
-now with proper functionaility
-also you can now use strings in custom RA rules
4
-vanilla patches
07/06/17
3
-your headgirl now has a very low chance of accidentally knocking up her slave
-your headgirl can now abort her slave's early pregnancy if she is permitted to use drugs on her
-fixed bugs
-accidentally pushed the WIP slaveSacrifice.tw to the git
2
-maybe fixed lips resetting to 35 in ng+
07/05/17
1
-seRaiding is now hooked up and good to go
1018a?-0
-preventatives now combat some of the negatives of obesity
-added the ability to set .birthTotal in more customization options in starting girls
-tons of vanilla stuff
0.10.5.0a
53
-End of week report for the penthouse fixed.
07/04/17
52
-fixed some stuff
-cleaned up saLiveWithHG to respect chastity and countless other things
51
-fixed bugs
-slaves can now be too fat to wear an empathy belly
07/03/17
50
-neighbors will now not develop conflicitng FS
49
-fixed FCTV never airing my infomercial
48
-added a weight control SMR
-restricted weights for generated coursing slaves
-more fat belly descriptions
47
-fixed bugs
-split .bellySag into the current version and a pregnant version for descriptions to use
-liposuction on extremely fat slaves will result in a lot of excess skin
-added basic fatter belly descriptions
07/02/17
46
-cleaned out the complaints with salon and body mod studio.
45
-fixed bugged nationality setting in childgen
44
-fixed >>103129
43
-fixed reported bugs
42
-fixed >>103082
41
-added a missing "Shoes"
07/01/17
40
-more of new RA anon's RA tweaking
39
-bug fixes and oversight corrections
-some new encyclopedia entries
-children that would be "Stateless" will now take up revivalist nationalities if you have one.
-redid the alpha version of bodyswapping. It should now not break your slaves
38
-fixed conception widget.
37
-finished respecting chastity in slave on slave force feeding
-more improvements to new conception widget
06/30/17
36
-enabled Hodenistic Decadence's research
-fixed some anal chastity oversights
-fixed some slave count related incosistancies (still lots to do with saRules)
-shifted conception to a widget for future pregnancy related content
06/29/17
35
-FCGudder's gudder height gen
-removed innocence buff
34
-added a totally legit antisag cream infomercial to FCTV
-more beauty tweaking (buffs to edo revivalist, chinese revivalist, body purist, youth/mature preferentialist)
-bugfixes
06/28/17
33
-added an RA rule resetter to game options
32
-fixed pit decommision into "market" instead of "markets"
31
-anon's RA tweaks
-FCGudder's basic sacrifices
-hairlessness due to age now acts like shaved and the like for beauty calcs
06/27/17
30
-fix for vanilla dairy bug
29
-vanilla content
-player freckles
-inheritable freckles
-various little fixes
06/26/17
28
-couple .pregMood new child intros
-bit of cleanup on the supportive mesh
-clothing should now affect slaves in facilities
-corrected some oversights involving sex counts in the slave intros
27
-fixed >>101675
26
-new breast shape preserving implant, comes from impant manufactury upgraded dispensary. See encyclopedia for more details
-couple new slave intros involving $PC.pregMood
-bug fixes, hopefully including >>101672
06/25/17
25
-fixed >>101533
24
-hedonistic neighbors now always sell slaves with fetishes and occasionally paraphillias
-nerfed broodmother's beauty in repop societies (a constant raw 100 is too high)
-fixed bugs and oversights
-added some more feedback if the societal elite are being asses
-added anon's head pat interact into cheat mode for testing
06/23/17
23
-bugfixes
-more beauty tampering. (more nerfs to physical idealist, rework of hedonism's weight based beauty, buffs to most beauty standards, buffs to body purist)
22
-fixed reported bugs
21
-bugfixes
Fixed the wardrobe bug and the sweatshop bug.
06/22/17
20
-fixed and added more age sorting options
19
-completed hedonistic decadence's clothing
-added anon's cheatmode overhaul
-bugfixes
06/21/17
18
-Activated Hedonistic Decadence FS
-fixed bugs
06/20/17
17
-extended weight range from -100-100 to -100-200
-added some more mental effects on slaves to the non-lethal pit, thanks to anon
-added a new title set up for slaves to use when being rude to you but aren't being adamant.
-fixed bugs
06/19/17
16
-fixes matchmaking bug
06/18/17
15
-fixes
14
-fixes
-reduced costs for arcade and industrial dairy compnents
13
-pregmodfan's RA reworks
-fixes and tweaks
06/17/17
12
-bug fixes
11
-vanilla fixes
10
-fixes
9
-added liposuction to the remote surgery to make slaves not fat
-fixed bugs
-disabled nationality restricing in corporate slavegen due to an inability to fix it
06/16/17
8
-fixes
7
-fixes
06/15/17
6
-bugfixes
5
-fixes
-moved FCTV options to manage personal affairs
-fixed issue with name flipping and your title
-cleaned up player surgery some
4
-quick fix for the occasional error flash during end week events
3
-fixed bugs
-cleaned up some of the FCTV intro code.
2
-bugfixes
-FCTV can now slowly influence FS gain rates
0.10.4.0.
-bugfixes
06/14/17
116
-fixes
-less scotts
115
-fixed bugs
-spread new name flipper widget around some
-added more Scotts
114
-first deployment of FCTV
-altered how name flipping is handled
113
-fixes misplaced passages
112
-more vanilla surname stuff
-bugfixes?
111
-attempted to handle >>99083
110
-fixes missing head girl,concubine and bodyguard
109
-quick fix to keep the princess and prince sharing a surname
108
-vanilla content (including surnames)
-bugfixes
06/13/17
107
-vanilla content (not surnames)
-fixes
06/12/17
106
-fixed bugs
06/11/17
105
-more beauty tweaking (buffs to repop/eugenics, nerf to tranformation+bellyimplant)
-bugfixes (not clinic oversight)
-added frailty dependence
104
-fixes
103
-added a universal rule to keep immobile slaves from losing muscles
-fixed some bugs
102
-tweaked with muscle/slimming diets
-added muscular atrophy if slaves can not move
06/10/17
101
-vanilla patches
100
-more fixes
99
-fixed bugged FS values
98
-fixed bugs
97
-fixed bugs
96
-readded repeat hip and shoulder surgery.
06/09/17
95
-fixes
94
-Beware the White Scare
-added Hedonistic Decadence's assay code, bugs might show up, you'll know if they do.
93
-fixed a bug, not sure if it was the right one.
92
-bugfixes
-neighbors may start using the new FS
06/08/17
91
-fixes
90
-fixed bugs
-some prettying up by fcgudder
89
-now with more schoolroomReport
88
-fixes
-slaves with huge clits can now use them to rape in the pit
87
-vanilla updates
-bugfixes
86
-minor fixes
06/07/17
85
-fcanon's fixes and safeguards
84
-fixes that I forget I should be posting
83
-you can no longer fuck a slave's ass pregnant through her fake vagina
82
-fcanon's changes to arrays and bugfixes, optimizations and tweaks
-altered breeder paraphilia satisfication via vaginal/anal sex to only occur if she has a chance of getting pregnant from the action
81
-more vanilla patches
-new slave intro text unfuckery
06/05/17
80
-bug fixes
79
-vanilla patches
-bug fixes
-possible new bugs
78
-comments in comments break everything.
77
-reverted seRetirement, it's better for the retired slave to leave than her lover
-fixed some bugs
76
-sanityChecker fixes
74
-might have fixed >>96580
73
-fixed >>96563
72
-fixed bugs
71
-fixed some bugs
-likely added bugs
0.10.3.4
-fixed reported bugs
-incubated slaves will no longer face devotion caps and trust caps
-updated backwards compatiblity
06/04/17
70
-fixed bugs
69
Fixed >>96323 .
68
-fixed bugs
-likely added bugs
06/03/17
67
-added a panic button under options to reset all extended family mode limiters
66
-fixed reported bugs
65
-you can now replace ocular implants with freshly cloned eyes
-clumped cheat edit skills together
64
-resynced the incubator seBirth fork with the regular version
-finished tweaking RESS
63
-bug fixes
62
-vanilla patches
-tweaks, mostly to seBirth and frailty
06/02/17
61
-fixed bugs
-fixed typos and culled redundant text
-tweaked PC pregnancy to not stray so far past the average due date.
60
-bugfixes
-salon and body modification got sorted, because
-FCdev nuked .gitattributes
06/01/17
59
-fixed bad canSee($eventSlave)
58
-fixes and tweaks
57
-bugfixes
-some tweaks to RESS
56
-tweaked shops to allow you to change them
-added a bunch of important $PC vairables to backwards compatibility
55
-standardizations of .pregType
54
-fixes
-extended some of the new slave intros to work with extended family mode
53
-vanilla fixes
52
-pregmodfan's fixes
05/31/17
51
-anon's bigger player balls and self-impregnation mod
-bugfixes
50
-added a new diet to combat genome damage
-fixed some inconsistancies
-fixed bugs
05/30/17
49
-fixes for reported problems
-vanilla updates
48
-fixed custom slave race
47
-fixes
-more chastity checks
46
-fixes
45.2
-readded saLongTermEffects (how did no one notice this?)
45.1
-quick removal of lingering .lrgImg
45
-lots of vanilla fixes
44.1
-should fix >>94669
44
-vanilla things
-bug fixes
43
-fcanon's changes
05/29/17
42
-fixed lolimode slave gen
41
-you may now force slaves to marry you
-couple bug fixes
40
-fixed reFullBed
-gagged pointless error reports
39
-fixes and tweaks
-attached milf tourist event
05/28/17
38
-tons of fixes and a few tweaks
37
-added gags
-fixed bugs
05/27/17
36
-fixed bugs
35
-fixes
-traitor might now not clear daughters and sons.
34
-fixed bugs
05/26/17
33
-fixes, mostly spelling
-vanilla fixes
-vanilla AWOL merc event
-forced marriage is beginning to seep into active content, it may affect certain marriage related content now.
32
-vanilla tweaks and fixes.
31
-added some color to personal training
-fcanon's master suite fix.
30
-fixed backwards compatibility
05/25/17
29
-spelling corrections
-fixed >>93327
28
-lots of fixes from fcanon and pregmodfan
27.1
-slight revisement to the bug fixed in >>93184
27
-fixed >>93182
26.2
-fixed >>93142
26.1
-fixed >>93122
26
-more fixes
25
-vanilla bugfixes and tweaks.
05/24/17
24
-fixed some bugs
-optimized and corrected some errors in new child intro
23
-added a new drug research to the dispensary to remove physical side effects from aphrodisiacs.
22
-bug fixes
05/22/17
20/21
-tossed in a compatibility catch for >>92203
19
-fixes
05/21/17
18
-maybe added/reactivated some more conditions for the RA?
17
-heavily altered how physical development works when active. Now balances hormones over the year to decide which bonus to give.
-fixed bugs, maybe
05/20/17
16
-fixed bugs (mindbroken HG slaves and research lab BS)
15
-fixed minor bugs
14
-fixed, hopefully, slaves sneaking off into non-existant master suites
13
-fixed missing slaves in certain starting arcologies
12
-readded lost dairy pipelines, milk and cum should flow through the pipeline properly again
11
-fixed root issue with now shop system and my FS
-FSdevelopments shops setting should now function?
-fixed a bug involving slaves not ceasing calling you names when they are no longer fearful
05/19/17
10
-various bugfixes
-more rude names
-you can now successfully buy the prince and princess and they will definatly be different people
9
-several bugfixes
-hateful slaves may now voice their opinions of you more clearly
8
-bugfixes
7
-fixed lost incubator report, fcanon!
6
-fixed bugs
-added anon's recruit event
-likely broke ng+ extended family mode harder
05/18/17
5
-fixed shops?
3
-resynced with vanilla after missing a certain gingering related commit
05/17/17
2
-disabled FS related shop content until it gets completed. Seeting it from shops may still be safe, but won't have any notable effects.
-fixed saChoosesOwnJob error
1
-now working?
05/16/17
Pregmod 0.10.3.0
05/15/17
32
-fixed bugs
-added large and small chest sizes to PC set up
-added an option to buy both the prince and princess from the royalty event
31
-bugfixes
30
-added a new purchasable PA pack
-ra tweaks
05/14/17
29
-fixes and spelling fixes
05/13/17
28
-pregmodfan's pc renaming
-fixes
-backwards compatibility additions
27
-bugfixes
-tweaks
26
-fixed miscopied passages
25
-vanilla bulk slave purchasing
-fixed bugs
24
-partial vanilla update
05/12/17
23
-fixed bad breasts and bad curatives events
22
-fix for >>87869
21
-fixed bugs
20
-vanilla fixes and tweaks
05/11/17
19
-vanilla bugfixes and tweaks
18
-fixed JS
-added a new event from vanilla
17
-all the RA work from the git
16
-added some backwards compatiblity for pregmod variables
-fixed >>87285
15
-more RA fixes from fcanon
14
-fcanon and stuffedanon's fixes
13
-fcanon's fixes and tweaks
-stuffedanon's fixes
-vanilla fixes
12
-fixes
11
-added more feedback for transformation fetishists and if implanted assets are suitably implanted
-lessened thresholds for % implant bonus and malus
10
-fixded bugs
-added a percent implant report to longSlaveDescription for transformation fetishist societies
-added lips to lip impants beauty calcs for transformation fetishist
9
-vanilla fixes
05/10/17
8
-lots of fixes and spell checking
7
-spelling corrections
6
-massive beauty overhaul
5
-ra is likely more broken than ever
-fixed some bugs
-vanilla code cleanup
4
-vanilla fixes
05/09/17
3
-bugfixes
1
-now with more 0.10.2.0 content
Pregmod 0.10.2.0a v0.
05/08/17
30
-fixed >>85316
05/07/17
29
-put a check on dick immobilization so that a slave must have a dick for it
28
-fixed a number of bugs
27
-possible JS fix
26
-fixes bad puberty age setting on new reproductive organs
25
-bugfixes
05/06/17
24
-bugfixes from stuffedanon
23
-added custom titles for slaves to call you
-family members refering to you with a family title now optional
22
-fixed PA appearances not appearing
21
-fixed pHackerSupport </nobr> error
20
-lots of sanityCheck fixes
05/05/17
19
-fcanon's fixes
18
-added fcanon's pending assignwidgets changes from vanilla
17
-fcanon's fixes
16
-cleaned up the new hood surgery to read a little better
-fixed a bug with setting hood size on a newly grafted hood
15
-bugfixes
-vanilla fixes
-vanilla added clit hoods
-tweaked foreskin surgery to allow for the addition of said hoods since completeness doesn't seem to be a concern for cybermodder
05/04/17
14
-tons of bug fixes from everyone
05/03/17
13
-massive changes to sister and daughter setting
12
-fixed bugs
-reverted changes to breeding proposal
-continuing without making a choice will likely result in your proposal being rejected, so make a choice
11
-fixed apartments issue
10
-fixed JS
9
-vanilla changes to penthouse UI
-revised incubator pregnant slave listing
-added family trees to slave interact and manage personal affairs
8
-fixed bugs
7
-fixed new ui
6
-fixed bugs
5
-fixed up slave-slave dick and vag scenes
4
-lots of vanilla changes, most notably to the ui
-4 new vanilla potential recruits
05/02/17
3
-removed restriction on slave on slave scenes
-removed lingering $cum and $milk from the forcefeeding workaround
2
-tons of bugfixes, dairy inflation still under review
-forgot to remove the cheatmode restriction on anon's slave interact scenes, will get on next pass
1
-actually outputted from twine this time
1010a-1
-fixed bugs
-added anon's new refreshment types
Pregmod updated to alpha 0.10.0.0.
-good luck
05/01/17
110
-fixed bugs that aren't related to the RA
109
-the [$] that caused it all has been fixed
108
-fixes from stuffedanon
107
-lots of submitted changes and fixes
106
-removed some leftover debug scripts
-fixed poorly reported custom slave balls
04/30/17
105
-intergrated >>82360
-fixed >>82371
104
-fixes >>82338
103
-minor bug fixes
102
-added >>82004
04/29/17
101
-fixed mispelled variable names.
100
-vanilla fixes
99
-lots of bugfixes
-fcanon's content changes from last night
98
-fcanon's changes
-bugfixes
-revised ascension to arcology owner career (1 year of owning the arcology or all player skills maxed)
97
-vanilla stuff
04/28/17
96
-fixed bugs
-added an old footjob scene I found to cheatmode for some testing
95
-tweaked slave passive impregnation
-fixed bugs
-that inculdes artWidgets
94
-added >>81072
-added another bandaid to this version's CSS
93
-more vanilla fixes
-family tree now works in this version
92
-fcanon's changes
-vanilla changes
04/27/17
91
-vanilla fixes
90
-even more fcanon fixes
-changes to slave on slave dickriding
89
-random very minor vanilla stuff
88
-lots of little fixes by fcanon
-git version will have the initial family tree system working when it gets accepted
04/26/17
87
fixed misc widgets .FSSSubjugationist bug
86
-possibly fixed pUndergroundRailroad
85
-lots of vanilla additions
-fcanon's additions
-stuffedgame's additions
04/25/17
84
-fcanon's fixes
-tweaked family widgets to report accuratly
83
-fixed bugs
-tweaked relative reporting to not report a slave as both a twin and a sibling.
82
-fixed bugs
-added ability to view pregnant slave descriptions in the incubator screen
81
-bug fixes
80
-vanilla content
04/24/17
79
-fixed bugs
-altered chooses own clothes for mindbroken slaves
78
-fixed bugs
77
-bugfixes
-got that code block working so now you know everything that is immobilizing a slave
76
-massive vanilla color css changes
75
-fixed starting girls applying things it shouldn't be.
74
-fixed the aforementioned phantom dick bug
-slaves with ages of 0 now count age in weeks
-fixed bugs
04/23/17
73
-bug fixes
72
-integrated extended-extended family mod widgets fixes and cleanup
71
-whole lot of fixes
70
-fixed >>79119
-fixed some wonky $possessives in saLongTermEffects
04/22/17
69.1
-Fixed version. Accidentally copied longSlaveDescription into descWidgets.
69
-vanilla pulls
-bug fixes
68
-altered accent deminishing (not reflected in slave summary)
-fixed bugs
67.1
-fixed the .html version only bug >>78902
67
-fixed bugs
-sided with the old vanilla code and added canTalk() to the DJ assignment check.
66
-fixed bellies sagging that shouldn't be sagging, hopefully once and for all
65
-overhauled extended-extended family mode widgets
64
-bugfixes
63
-fixes HG alt formatting bug
62
-fixed everything in >>78748
61
-fixed RESS issues
-possibly fixed >>78736 (it looks vanilla)
-normal corsets no longer reduce waists on inflated slaves or slaves with large belly implants
04/21/17
60
-reworked birthday event to account for chastity
-schoolroom can now raise anal and vaginal skill to 30 with the skills upgrade
-take classes can teach anal and vaginal skills to virgins
-fixed some revealed oversights
59
-fixed wip fuck scene >>78525
-possibly fixed the slave is own niece thing
58
-incestual relationships extended to player's mother, father and sisters
57
-bugfixes
04/20/17
56
-altered hormone face change calcs to reflect .face changes
55
-more vanilla fixes
54
- Fixed >>78168
53
-vanilla fixes
-nulls can now maybe be made in starting girls?
-bugfixes
52
-vanilla fixes
04/19/17
51
-fixed bugs
50
-very minor fixes
-changed how rival victory into initiation works
04/18/17
49
-possibly fixed undefined error in removeJob
48
-tons of vanilla changes
-hopefully few vanilla bugs
04/17/17
47
-fixed bugged childgen for players carrying a slave's child
46
-couple bug fixes, mostly the rival setting bug
45
-fixed and limited madam and dj involvement in facility sex
44
-seDeath should no longer get stuck on
04/16/17
43
-integrated pregmodfan's RA work
42
-tweaked rate of arcade slave decay
41
-altered slave death
-fixed bugs
-added vanilla bug fixes
40
-fixed bugs
-altered beauty standard laws to better mesh with other FS
-added a "bald" hair description
-laid foundation for slave death
04/15/17
39
-bugfixes
38
-now functional
-lot of vanilla additions, hope they work right
-completely forgot what I did last night, hope that I didn't break anything
04/14/17
37
-breaking raWidgets even more.
36
-fixed first error reported in raWidgets.
35
-fixes
34
-fixed bugs
-added some extra nicknames
33
-fixed longSlaveDescription (<div class="imageRef lrgImg"<div class="mask"> </div>> to <div class="imageRef lrgImg"><div class="mask"> </div>)
32
-added a trio of medicinal enemas (curative, tightening, and aphrodisiac)
-contain's vanilla 0.10.0.0 alpha changes
31
-vanilla changes, mostly to RA
-added anon's image css stuff
-bugfixes?
04/13/17
30
-lots of little bug fixes, nothing major
-bodyswapping moved to testing but currently untested, suggesting not touching it
04/12/17
29
-fixed opening error (Absentmindedly closing widgets with <</if>> will do that.)
28
-hammered FS unsetting, it should properly unset everything now when abandoned or failed out of
04/11/17
27
-fixed enemas and forcefeeding
-hairless is now an inheritable trait
26
-unfucked walkpast
25
Emergency fix. Accidentally deleted misc widgets.
24
-completed citizen hookup event variant
-introduced baldness to males over 50 in slavegen
-hooked up hair removal surgery
-bugfixes (not slave cloning)
04/10/17
23
-reworked saChoosesOwnJob to not be potentially broken
-limited saChoosesOwnJob to prevent slaves from locking themselves in industrial dairies and overfull facilities
-added a new universal rule to permit or deny slaves choosing their own jobs from joining facilities, off by default
-recalced underarm and pubih hair in slavegen, you should see things other than waxed consistantly now
04/09/17
22
Smart piercing improvements
Removed the default smart piercing function, which was nonfunctional for almost all settings of the current implementation of the rules assistant.
The existing rules for smart piercings have been broken down into four new rules, for fetishes, sexual appetite, and XY and XX attraction.
The all sex smart piercing setting no longer automatically targets XY and XX attraction in addition to libido, as these can be done individually.
Gave smart piercings new settings to suppress XY and XX attraction, which will have minor secondary libido suppressing effects.
Heavily buffed smart piercing efficiency when improving XY and XX attraction and added minor secondary libido enhancing effects to these settings.
WIP descriptions for nulls.
21
-fixes
20
-now with less forgotten passage copies
19
-fixed starting girls attraction cotrols
18
-fixed bugs
-added prostates to starting girls
04/08/17
17
-hooked up body hair removal surgery
16
-fixes?
-handled code duplication in salon
15
-fixed superfluous <</if>> in L40 in researchLab.tw (likely)
14
-fixed >>74516
13
-fixes
12
-applied fixes to lab report, hopefully it works now
11
-minor descriptive tweaks
-bugfixes
-added new JS calls hugeBelly(), hugeBellyPreg(), hyperBellyOne(), hyperPregBellyOne(), hyperBellyTwo(), and hyperPregBellyTwo() for easier size checks
04/07/17
10
-fixes
9
-fixes
-neighboring slimness enthusiast arcologies now have access to its research
8
-bugfixes, not including array issues
7
-added hair dyes and contact lenses to manage personal affairs
-small fixes
6
-mostly fixes
5
-added prostates and genes to male hero slaves where appropriate.
-possibly enabled selfcest twins
-fixed cybermod bugs
-having no prostate devastates cum volume.
04/06/17
4
-fixed player surgery widget
3
-enabled prosthetics
2
-fixed age reduction surgery for the pc
0.10.0.0a v1.
-fixes
03/31/17
42
-fixed bugs
03/30/17
Pregmod updated to proto-0.9.10.4.
-spa bug fixed
40
-updated to array based facilities
03/29/17
38.1
-compatibility catch for the new law (Slimness Enthusiast (Flat is beauty)) to work.
38
-added Slimness Enthusiast Research (asset shrinking drugs)
-added Slimness Enthusiast Law (Flat is beauty)
-fixed custom slave skin nonsense
-fixed bugs
37
-fixed bugs
36
-fixed bugs
-tweaked descWidgets to flow a little better
03/28/17
35
-updated corp overhaul mod
-tracked down missing accordian mod pulls and added them
-fixed bugs and other issues
-added slave on slave wips to cheatmode
03/27/17
34
-tweaked personal training
-tweaked concubine rules; she may now be blind or immobile, but must have limbs. Events involving her had their conditions adjusted in accordance.
-fixed bugs
03/26/17
33
-integrated filter by assignment fixes
-added more flat
-bugfixes
32
-disabled sort by assignment until it can be fixed
-fixed a couple bugs
31
-fixed servants' quarters
-fixed bugs and typos
-added preg biometrics collar to RA
03/25/17
30
-added anon's filter by assignment option
-added paternity information to long slave description
-redid assigning children to the incubator, see the incubator for more details
-fixed lots of little bugs from both here and vanilla
-hopefully fixed the dairypiping having its variables swiped out from under it
03/24/17
29
-applied economy mod fixes
28
-fixed? saChoosesOwnJob
-assigned a default eyeWear to custom slaves
27
-applies incubtor bugfix
26
-added economic report mod
03/23/17
25
-fixed starting fs issues, hopefully
24
-bugfixes
-added smaller breast sizes to PC surgery
03/22/17
23
-bugfixes
-some tweaks to things changed from single instance to week long isntances
-minor FS reactions to certain player appearances
22
-fixed bugs
-added nurmerous vanilla optimizations
03/21/17
21
-various bugfixes accumulated today
20
-couple fixes and tweaks
03/20/17
19
-fixed surgery cooldown
18
-fixed player surgery trapping you in manage personal affairs
17
-added player surgeries (incomplete)
-updated anon's nationality weighting mod
-added pregmodfan's fixes and RA improvements
03/19/17
16
-fixed bugs
-added a catch to arcology acquisition that will hopefully prevent the extra FS bug
15
-fixed clinic issues
03/18/17
14
-bugfixes
13
-added anon's corp overhaul
-upped max incubator age to 42
-updated accordian mod
03/17/17
Pregmod updated to 0.9.10.2.
-Restricted nationalities got fixed, nationality percentage anon, please look into the changes, though most of them where just indenting.
03/16/17
7
-bugfixes
-initalization of player surgery variables
6
-added metallic makeup options
-fixed bugs
4
-fixed RESS, "<if" got me again
Tweaked 4 with some fixes
1. Tweak: can change slave drugs and other settings while they are on assignment
2. Tweak: when devotion/trust are maxed for a slave, some of the weekly report summary text showing devotion/trust gains will be hidden.
3. Tweak: when the arcology has been fully decorated for a future society, weekly summary text showing society approval related to that future society will be suppressed.
4. Bug fix: when assigning an ID to a new slave, make sure it isn't already in use
5. Bug fix: egyptian preferentialist slave twins acquisition used incorrect relationship ID offset for second slave (-1000) … because it is coded differently from all other multi-slave acquisition events
6. Bug fix: Several $pronounCap tokens changed to $possessiveCap where appropriate.
7. Bug fix (?): When buying arcology ownership with reputation, increase value of ownership share same as when buying with cash
8. Misc. smaller fixes (typos, missing $'s)
Pregmod updated to 0.9.10.1.
-fixed reported bugs and typos
03/15/17
4
-many more vanilla updates
-possibly broke clinic report
3
-fixed bugs
-merged anon's brazil mod
-lowered min player age to 14
2
-fixed .html version's accordian mod, thanks twine
Updated to 0.9.10.0
03/14/17
3
-some new event tweaks pushed out for testing
2
- >>67338, >>67339 Fixed, though two of the policy bugs are more of just a guess at how they might be handled. Unfinished content and all that.
1
- >>67334 This should fix it.
0.9.10.0a
03/13/17
38
-merged pregmodfan's pregnancy speed mod
-merged anon's swapable prosthetics and face mod
03/12/17
37
-added descriptive elements reflecting player age
-fixed $PC.birthWeek
-bugfixes
36
-tweaked $PC variable compatibility
35
-revamped player age and aging
-fixed some bugs
34
-fixed bugs and typos
-added an upgrade to the clinic to quickly cleanse slaves of genome damage at the cost of health for the duration
33
-some little tweaks to incubator content
-hopefully fixed frailty rendering some slaves immobilized by their imaginary penises
03/11/17
32
-fixed starting girls bug
-tossed in some vanilla bugfixes
31
-fixed bugs
-added a, hopefully functional, override to handle starting girls custom origins
-added gender settings constrants to enteded family mode family recruiting
30
-fixed bugs
-incubator slaves now start with lower language skills
29
-touched genetics more and possibly rebroke everything
-added more naming options, though the PA will still select FS names if available with that naming option
-fixed custom starting slave descriptions and the add custom descriptions
-added a toggle for inbreeding
28
-fixed >>66378
27
-fixed saRelationships
-lost temper at saRelationships
26
-bugfixes
-more vanilla changes to saRelationships, hope family mode takes it well
03/10/17
25
-fixed childgen
-vanilla bug fixes
-repop law can now apply to player
24
-completed new child intro
-spread frailty around
-fixed bugs
-added vanilla bug fixes
03/09/17
22
-fixed a number of bugs and oversights
20
-child naming looks fully functional
-small tweaks from vanilla
03/08/17
0.9.9.5.
18
-incubator bug fixes
-naming closer to finalization
17
-fixed saRelationships harder
16
-unrolled back saRelationships
15
-rolled back saRelationships
13
-quick fix for slave careers, will only affect children generated after this patch. Mostly just effects and descriptions, nothing huge.
03/07/17
12
-incubator moved to beta, no longer restricted by cheatmode
03/06/17
11
-many bug fixes and tweaks
-added ability to buy additional transfer slots for ng+
03/05/17
10
-slight improvements to assistant events, nothing major and fully compatible with saves
03/04/17
9
-fixed bugs
-tweaked some RESS events
03/03/17
0.9.9.4
-added some more options for a slave to choose from when selecting her own clothes
-made a toggle for eugenics society devoted slaves to choose their own level of chastity, since that did need work. Also removed it from normal clothes selection.
-fixed bugs
-updated some slavegen
-fixed >>64439
0.9.9.3
7
0.9.9.2
6
-fixed >>64194
5
-small improvements
03/02/17
4
-fixed, extended families
3
-fixed >>63968
0.9.9.1
0.9.9.0
-many changes to ng+ and how the pc is handled
-adjusted 6 & 7 FS unlock values
02/26/17
27
-fixed many bugs
-however >>63027 and >>63096 are still at large
02/25/17
26
-fixed, "DairyRestraintsSetting(2)" should not be visible in front of the description of my dairy.
25
-experimental fix for >>62727
02/24/17
24
-fixed slaveInteract.tw
@@ -620,6 +620,7 @@ Contraception: <span id="fertility"><strong><<if $activeSlave.preg is -1>><<
<</if>>
<</if>>
<</if>>
+<</if>>
</span>
<<if $propOutcome == 1>>
-fixed, all my slaves. it says "She is not fertile with Error: cannot find a closing tag for macro <<if>> in <<if $incubator > 0 >>
23
-fixed reported bugs except for >>62509
02/20/17
19
-commenting is hard
18
-temporarily disabled brother checks to prevent duplication
17
-fixed introduced extended-extended family mode bugs
-moved said descriptions from long slave description to pregmod widgets to prevent issues with vanilla updates.
02/19/17
16
-fixes parental id's
15
-added some compatibility hooks
-fixed some bugs
-added extended-extended family mod
-added vanilla bug fixes
14
-fixed bugs, but need to look at relative recruiters still
13
-fixed, can't impregnate a slave with another. Just a wall of Red text "Error: <<if>>: bad conditional expression in <<if>> clause: slave is not defined"
12
-fixed erroneous $familyTest fixing slave interact issues and enabling two dSlaveDatabase additions
-felt stupid
-fixed new bug in fRelation
11
-bugfixes
-implemented new javascript to hopefully fix existing issues
02/18/17
10
-tweaked saRecruitGirls more
02/17/17
9
-fixed recruiting harder
8
-fixed bugs
-implemented genetics tracking system
7
-fixed contraceptive bug
6
-various bugfixes
02/16/17
5
-fixed some bugs
-more compatability for vanilla to pregmod ng+
02/15/17
4
-possibly fixed $rep bug
3
-fixed >>60110
0.9.8.1
-preliminary integration of anon's animal pregnancy mod, not funcitonal yet
02/14/17
0.9.8.0
02/13/14
9
-added incubation facility
-integrated anon's HG impregnation exclusion toggle
-fixed bugs inclding >>59683 and >>59598
02/12/17
8
-fixed many reported bugs, save for the walkpast bug that is still eluding me
-added several vanilla bugfixes
-added >>59368
02/11/17
7
-fixed relative recruits cloning over their recruiter
-fixed that futa starting girls bug again, and this time it's synced I swear
4
-added >>59138
6
-Fixed >>59174 ( missing a $ when setting headgirl to soften).
0.9.7.2
0.9.7.1
02/10/17
6
-updated to vanilla github
-fixed more bugs
2
-fixed bugs
-fuckdolls can now use pregmod added diets
1
-fixed >>58858
0.9.7.0
-vanilla content only
02/09/17
5
-updated with vanilla bugfixes
4
-fixed bugs
-did extra fixing to fAbuse
3
-added new two slave recruitment events
-fixed bugs
2
-fixed randomize attraction widget bug
1
-updated to vanilla github
-fixed bugs
02/07/17
13
-completed and enabled relative recruiter events for extended family mode
-made extended family mode ng+ compatible
-bugfixes
02/06/17
12
-fixed bugs
-included starting herm fertility fix
02/05/17
11
-added organ farm upgrades to decrease time it takes to grow organs
10
-tweaked butt beauty values
-hopefully fixed egyptian revivalist issues
02/04/17
9
0.9.6.5
02/03/17
8
-couple bugfixes
-added the new pube style to the RA
02/02/17
7
-fixed bugs
6
-fixed typos and bugs
-reenabled self impregnation
02/01/17
5
-waged war against starting girls and managed to make a button to resync height with age
-added origins for all careers if the slave is your child
-and had to bar players from being both their father and mother
-added lolimode toggle to game start summary
-fixed a bunch of improper slave name calls in the recruiter content
0.9.6.2
-added a pair of hero slaves under extended family mode that I found tucked away in a passage. Odds are they were never implemented due to an inability to make sibling hero slaves.
-completey forgot to make lolimode a start menu toggle
01/31/17
9
-extended family mode now allows for full control of starting slaves mother ID and father ID.
-bug fixes
3
-added a bushy in the front, clean in the back pubic hair style
-fixed bugs
0.9.6.1
-updated matchmaking to pregmod's content
0.9.6.0
01/30/17
8 - family test
-beta version of the new family system
01/28/17
7
-bugfixes, including anon's fixes
0.9.5.4
-integrated >>56001
-more work on relations, not ready for play yet
01/27/17
0.9.5.3
-fixes $rep issues,
-added, able to play matchmaker and take two emotionally bonded slaves to you and put them in a relationship with each other.
01/26/17
4
-updated milk quantity calcs
-nerfed flesh heap
-kidnappers market now requires 500 rep to access
3
-fixed reported bugs
01/25/17
2
-most new 0.9.5.0 changes are now accounted for
-20% chance of white girls coming out of zimbabwe
0.9.5.2
-integrated anon's japan start mod
01/23/17
17
-fixed bugs
16
-fixed missing RA defaults
15
-fixed bugs
-applied youth pref research to neighbor youth pref societies
01/19/17
14
-fixed age related issues in some hero slaves
-autosurgery now correctly lowers visual age when applying an age lift
-reduced visual on event slaves that have age lifts, all two of them.
01/18/17
13
-restricted minimum reitrement age at game start to 25
01/17/17
12
-quick bugfixes
11
-implanted reproductive organs now work immediatly if precocious puberty is off, otherwise the slave will go through the appropriate puberty within a year if relevant.
10
-tweaked libidos and nymphomania
01/16/17
9
-added starting option to set initial retirement age
01/15/17
8
-added a new slave market
-removed age limiters on other slave markets
-added a new partially subterranean arcology location
01/14/17
7
-more event/desc tweaks
0.9.4.3
-various little tweaks and fixes
01/13/17
4
-fixed SE Birth and slavemarkets
0.9.4.2
-fixed $cash bug
01/12/17
0.9.4.1
0.9.4.0
-integrated >>53201
-added first half of the youth pref research (anti-aging cream)
01/09/17
14
-bugfixes
01/07/17
13
-finished new age descriptions
-added a new physical age retirement
-increased upper bounds on age/birth retirements
-age surgery now lowers .visualAge
01/06/17
12
-various age bugfixes
01/05/17
Pregmod beta 2
-fixed hero slaves
01/02/17
10
-fixed bad condtinal expression in <<if>> clause Unpexted token with a slave who has P-Limbs/
01/01/17
9
-fixed bugs, oversights and typos
12/31/16
8
-fixed, which anal addicts wont be satisfied with long, huge butt plugs, only huge plugs.
-fixed, Error: <<CorsetPiercingDescription>>: errors within widget contents (Error: cannot find a closing tag for macro <<if>>; Error: child tag <<else>> was found outside of a call to its parent macro <<if>>)
7
-some event tweaks
12/30/16
6
-fixed bugs
-more efforts to wrangle "Long Slave Description"
12/29/16
0.9.3.1
-added prostate implant to increase load size
-implemented phase one of cleaning "Long Slave Description"
12/28/16
4
-tweaks to some slave intro scenes to accommodate amp slaves
-bugfixes
3
-fixed bugs
12/27/16
2
-connected new corp changes with Repop and Eugenics neighbors
0.9.3.0
12/26/16
17
-added more player customization for future additions
-fixed bugs and typos
-corrected amp armpit hair descriptions
16
-fixed eugenics bugs and oversights
-added underarm hair
12/25/16
15
-bugfixes
14
-added a couple more slave acquisition event loli variants
-fixed bugs
13
-small tweaks
-fixed the RA diets that got lost between updates
12/24/16
12
-added puberty controls to starting girls
-expanded refreshments
-fixed oversights, bugs, etc
12/23/16
11
-fixed, >>49934
10
-fixed reported bugs
9
-completed Eugenics Breeding Proposal
-added femPC involvement in eugenics
-fixed some bugs and typos
12/22/16
8
-fixed >>49650
12/21/16
7
-integrated bugfix patch into main branch
-fixed some more bugs
5
-added basic scar framework
-added some of Qotsafan's improvements
4
-fixed bugs
0.9.2.1
-added anon's gang leader start
12/20/16
2
-finished adding missing content
0.9.2.0
12/18/16
11
-fixed market assisntant event
10
-integrated supplied changes
-tweaked hips surgery
12/19/16
13
-fixed, increased the costs when the policy is implemented, but kept the original costs in the reductions. That means that in the event that someone cancels one of these policies, they'll end up with a permanent increase in prices.
e.g. Activating Quality Beaty increases costs by 10,000, but cancelling it drops the cost by only 2,000.
12
-integrated new policies
-added seven new accessories of rather long sizes
-tweaked several things
12/16/16
8
-fixed some bugs, including twins purchasing bug
0.9.1.3
-completed player birth
0.9.1.4
12/15/16
6
-intergrated >>48519
-tweaked pregmod related $seeDicks calls to be in line with new system
5
-added additional security to prevent $traitor.slaveName from getting you (fixed the bug)
-fixed >>48449
4
-fxied, >>48436 and >>48438 - Both should be fixed now. Though snatch and grab needs to be updated a bit.
3
-bugfixes
0.9.1.2
12/14/16
0.9.1.1
-added player pregnancy
-merged >>48171
-merged the FAbuse bodygaurd changes provided earlier
-bunch of typos fixed
12/11/16
20
-possibly fixed >>47447
-added >>47416 >>47417 's flavor text with some tweaking.
12/10/16
19
-fixed the horribly broken glossary
-fixed a bug with transformation fetishist FS that has been around since the teeth changes
-fixed a few grammer things and missing descriptions.
18
-added abdominal implants
-refactored belly sag gain/loss
-optimized "Surgery Degradation"
-added in more calls in scenes for inflated slaves
-tossed in my old custom title lisp input that works
-fixed bugs and things
12/07/16
17
-added breast lifts for fixing saggy tits
-added breast reconstructiion for making them more attractive
16
-added new belly descriptions for fatties
-added XX, XY, and XXY diets to RA
-fixed bugs
12/01/16
4
-fixed >>45601
3
-fixed bugs
-finished recruiter FS things
0.9.0.0
-added slave puberty
-added several new rival types
11/25/16
33
-integrated >>44195
-fixed bugs
11/24/16
32
-fixed some bugs
-fxied >>44069
31
-fixed a potentially dire bug with baby number generation
30
-fixed advertisements
29
-added conception condition for your concubine, she will only randomly cenceive your children, if appropriate
-fixed bugs
11/23/16
28
-hopefully fixed overaged slaves once and for all
-forgot to mention that several patches ago added hyper drug compatability to dairy growth if they are available
27
-added compatabilty for saves from versions below v24, should default the your FS max to 4.
26
-fixed reported bugs
-fixed multiple issues with dairy cum inflation
24
-added dairy resrictions for slaves with pregnancy blocking/causing implants
-added starting option to choose between a final count of 4-7 future societies
11/22/16
23
-added hyper drug support to industrial dairy
-fixed bugs
22
-added hyperpreg settings for industrial dairy
-added to the options menu the ability to change your custom title
-fixed many little bugs
11/20/16
21
-added spa options to forbid an Attendant from trying to fix mindbroken and/or flaws
-fixed bugs
20
-fixed more reported bugs and oddities
-fixed some of the "hero slaves"
-found more places to implement new birth counting variable
19
-fixed reported bugs
18
-reworked slave births tracking, though it might not work with starting slaves.
-fixed some minor bugs
11/18/16
17
-slaves no longer give birth to the end of days
-also fixed male lactation bugs that have been a thing for who knows how long
16
-fixes
-now doesn't require a new save
15
-more inflation catches
-fixed loli advertising bug
-added pregnancy advertisement options to the club/brothel, I think they work
-re-readded SE coursing blind calls because they disappeared again
11/16/16
14
-tweaked some breast descriptions and belly descriptions for consistancy
-patched oversights and other things with the inflation framework
11/15/16
13
-fixed more bugs
12
-fixed inflation oversights
-expanded age ranges for club/brothel advertisements
-added player aging
11/14/16
11
-fixed inconsitant recruitment events >>42249
-replaced all overlooked calls for the removed "Clothing Birth"
-several other small fixes
11/13/16
10
-fixed bugs
-forcefeeding scene is half done, only works for milk right now
11/12/16
9
-bugfixes
- >>42010 Integrated this.
7
-overhauled fertility checks (major change)
-added more variety to slave careers, especially younger
-changed how $agePenalty works, instead of just removing the age check from headgirls, it now allows educated careers to generate at slightly lower ages as opposed to 24+ only.
-more clothing descriptions for larger busts, also fixed inconsistancies with some pregnancy descriptions
-slaves can now become recognized for starring in porn while pregnant
0.8.12.5
11/11/16
0.8.12.4
-expanded potential gifts from that gift event as well as altered how it selects shape
-RESS preg + blind work completed
-breeders now get pissy about wearing fake bellies
11/10/16
0.8.12.3
-fixed bugs and more typos
-made sure to cover slave graves in cement to prevent slaves that died in chldbirth from roaming your penthouse
0.8.12.2
-just bugfixes
11/09/16
3
-recalculated cum quantities needed for slave on slave inflation
-fixed more bugs and typos
2
-paraphilias hooked up to pregmod content
-servant background's upkeep reduction now functional
-fixed some bugs and typos
0.8.12.1
-framework for using another slave as the inflation source implemented, scene is still WIP
11/07/16
7
-added some flavor text to concubines in the end week report if they won a legendary slave event.
-attached the recently added custom title lisping feature to the starting options because what is the point of having it scattered throughout the entire game without hooking it up?
11/06/16
6
-added forcefeeding scene in place of WIP
-began laying foundation for using another slave as inflation source
-made induce clear that is doing something.
10/28/16
6
-Integrated anon's new nationalities and nicknames
-repop law now does something other than cost you money
-eugenics now increases prosperity gains
-implented a brothel assignment scene that I found in the code
-fixed bugs
0.8.10.3
10/27/16
4
-fixed aging bug, also fixed a short blurb about it being her birthday that never procs.
-fixed rogue slave interact $slaves[$i] that were causing trouble.
0.8.10.2
-fixed bugs and got annoyed by the sheer lack of custom title support.
10/26/16
2
-fixed prosthetics and hostage event.
0.8.10.1
-extended FS research to neighboring arcologies, they can now develop said reearch and begin selling slaves using it.
-added another new PC career choice
-added other things that I completely forgot about after losing roughly 15 passages in the update and having to sort out the desync that caused.
10/23/16
12
-fixed >>37626 .
11
-fixed overlooked slave interact conditions for testicle enhancement and impregnation
10
-you should now be able to preemptively craft artificial limbs
-your nurse can now prevent pregnancy generator removal from breaking pregnancy fetishists
-testicle and hyper testicle enhancement can now be left on to enhance cum production
10/22/16
9
-integrated anon's clit surgeries
-completed and allowed gender radicalist research (implantable anal womb)
8
-fixes >>37147 .
0.8.9.3
-added anon's fairy assistant
10/20/16
5
-readded semi-aging option from old options mod; if your slaves experience multiple birthdays in a row, it's a vanilla bug I think.
0.8.9.2
-seperated male and female fertility
-SE birth is broken in vanilla so expect 0.8.9.3 tomorrow.
-may have added some femdom scenes for femPCs
10/19/16
3.1
-less testing labels.
3
-SE birth doesn't need to loop back into scheduled events anymore since it is now combining all the births into a single event, thus I can just attach AS Dump to $nextLink and pretend SE birth hasn't become something beyond understanding.
-Though that still doesn't explain how $activeSlave can hold more than one slave, but hey, at least random events shouldn't possibly be able to interfere with its changes maybe.
0.8.9.1
10/18/16
0.8.9.0
-biggest change will be a rough draft of the loli aging code
10/16/16
11
-fixed reported bugs
10
-Fixed broodmother bug and removed impregnation devotion exploit.
-Fixing the limbs is going to be a peice of work, for what ever their weeks to completion won't move so I'm going to have to track what isn't updating right.
9
-fixed >>35509 (bowties and Egyptian necklaces too).
8
-SE Birth v4
10/15/16
7
-yet more bug fixes including >>35400 and >>35291
0.8.8.2
-A lot of rollbacks in 0.8.8.2 and as such some of the content added with 0.8.8.0 got lost. Also tons of conditional expressions changed back that I have a feeling are going to get swapped right back.
-Almost feels like all the content modders aren't on the same page.
10/14/16
5
-mostly just bug fixes again, though good work finding them
-also updated the documentation I use for slaves
4
-more bug fixes
3
-added some more birth scenes
-spellchecked things, boy they needed it
-added physical/mental birth/pregnancy effects
-bug fixes
2
-Mostly just bug fixes.
10/13/16
0.8.8.1
-added new nicknames
-cleaned up SE birth some more
-changed around 20000 conditional expressions when I could have just left them as is.
10/10/16
Pregmod WIP.
-reenabled immobilization after getting it working right
-SE birth v2, note there are now birth complications
-added a new player origin, currently undergoing balancing as the rep loss may be too high
10/07/16
5
-Added more to hostage corruption
-rebalanced the war again (more favorable to you)
-fixed retirement collars
-fixed dispensary bugs
-fixed spa, clinic, and cellblock not swapping to bought in manage arcology
4
-Hopefully this one fixes things, though it can not undo the age issue.
-Also learned that I should never use variables in random(), ever.
10/06/16
3
-Hostage corruption should now work correctly.
2
-Fixed forgotten age description code.
0.8.7.1
-You know it's a slow week when your biggest patch note is XY slaves now have scrotum generation.
10/03/16
Pregmod WIP
-Reworked rival-hostage event to center around corruption, the hostage will become more degenerate/broken as the war drags on.
-fixed eugenics ball bug
-fixed doubled surgery
09/30/16
0.8.6.7
-hopefully fixed rival age bug
09/28/16
0.8.6.5
-added hyper butt drugs
-added additional immobile conditions, which may cause trouble for now
-added more content to "Eugenics" FS
09/25/16
9
-Fixed dairy and an infinite loop in slave impregnation.
7
-fixed "new slave intro", removed accidentally added canSee(), and added summary exceptions for slaves younger than fertility age.
09/24/16
6
-fixed, selling a slave causes every event to trigger.
5
-birth should now, hopefully, work right.
0.8.6.3
-Biggest change is most likely just birth tinkering so immobile slaves don't pop the amp birth scenes.
09/23/16
0.8.6.2
-added a new FS focused on eugenics and society's top citizens.
-added the random father impregnation code, your slaves will now randomly impregnate each other when appropriate.
09/19/16
Pregmod + lolimod 0.8.5.3 WIP
-support for blind slaves
-support for larger tits in fondle boobs and fuck boobs
09/17/16
4
-fixed more bugs
09/15/16
3
-fixed shit
0.8.5.3
09/14/16
0.8.5.2
-added full broodmother support to the new birth system, complete with their own variants
-added missing PA appearances in some events
-other things I forgot after the update failed last weel
09/03/16
0.8.3.4
2
-fixed missing <</nobr>> in new birth code
-fixed potential conflicts with dairy births
08/28/16
6
-All forms of impregnation now adhere to fertility effects.
08/27/16
5
-Birth count tattoo and FS recuitement event fixed.
4
-now with less PA appearance being replaced with events.
08/25/16
0.8.2.2
-a new type of breast implant.
-disabled the penitent nun's habit in the walk past code as it refused to not throw errors, traced it to <<case>> not tolerating '.
08/21/16
0.8.1.4
-rules assistant should be able to handle any degree of fertility
-layed framework for pregnancy accessability
2
-fixed pregnancy libido spam
-added pregnancy accessibility improvement akin to the huge breast accessibility
08/11/16
0.8.0.2
-Personal assistant will now take after a supremacist FS's choosen race.
-Added libido gain/loss during pregnancy.
3
-fixed pregnancy libido.
08/04/16
0.7.11.2
-FS assistant appearances now selectable via assistant appearance options
-implemented provided rules assistant fix
-fixed concubine not receiveing master suite drug settings
-made sure everything adheres to indenture restrictions
07/30/16
Experimental build
-Fixed penis enhancement bug
-Fixed slaves wearing fake bellies and then bitching about said belly.
-Deployed experimental "choose which FS your assistant takes after" feature.
07/28/16
0.7.10.3
07/21/16
0.7.9.4
-Added interactions between facility heads and relatives/relations/rivals/legendary slaves
-fixed several bugs and more typos
07/20/16
0.7.9.3
-fixed some bugs and typos while updating
Slave Documentation:
-added new hair and eye colors from 0.7.9.0
07/18/16
Pregmod first release!
-pregnancy clothing descriptions
-hyperpregnancy (avoidable)(extreme content)
-future society focused on pregnancy
-2 new clothing options
-1 new accessory
-3 new assistant appearences
-2 new brothel upgrades for expansionist societies
-new slave descriptions (optional)
-reworked master suite to report on your harem (optional)
-Added a means to buy FS exclusive clothes and accessories
-fixed some bugs
-added my own bugs
-Fixed master suite
-Fixed a bug where a vaginaless slave would wear a fake belly leaving you with no way to remove it.
Security Expansion (Officaly intergated into Pregmod since 0.10.7.1 v153)
PregmodBase v139
11/20/17
14.2
-fixes
-balance
-very satisfying version number.
11/18/17
14.1
-fixes
14
-fixes
-spell checked attack report. My god was is bad.
PregmodBase v137
13.9
-fixes (couple of)
13.8
-(maybe) fixed >>142732
13.7
-balance
-(maybe) fix for battle terrain not showing up.
11/17/17
PregmodBase v136
13.6
-fixes
PregmodBase v135
13.4
-fixes
-balance
-difficulty settings
11/16/17
13.4
-fixed >>142293 (Attack value NaN during major battle)
13.3
-fixes
13.1
-fixes
-balance
11/15/17
13
-fixes
-balance
11/14/17
PregmodBase v132
12.9
-fixes
12.8
-fixes
-balance
12.6
-fixes
-anon's stuff
PregmodBase v130
12.5
-fixes
-SFanon stuff
-balance
11/13/17
PregmodBase v126
12.4
PregmodBase v125
12.3
-fixes
-SFanon additions
-balance
11/12/17
12
-fixes
-transport hub and trade
-balance
PregmodBase v124
11.6
-fixed reported issues
-balance
11.5
-fixes
-balance
11/11/17
PregmodBase v122
11.2
-fixes
-extra options
11.1
11
-fixes
-proclamations
-balance
PregmodBase v121
10.2
-fixes
11/10/17
10
-fixes
-weapons manufacturing
-balance
11/09/17
PregmodBase v119
9.6
-small fixes
11/07/17
PregmodBase v115
9.6
-fixes
-loyalty work
PregmodBase v114/Pregmod v114.1
9.2
-small fixes
-new edicts
-new units upgrade
-new barracks upgrade
8.8
-fixes
11/06/17
PregmodBase v113
8.7
-fixed reported issue maybe pretty please?
8.6
-fixes
11/05/17
8.5
-fixes
-rebellions
11/03/17
8
-various fixes
-balance
-rebellions
11/01/17
7.7
7.6
-fixed reported issue
-balance adjustments (run backward compatibility to apply them)
7.5
10/29/17
7.1
-fixes
-couple of balance adjustments.
10/28/17
7
-SFanon additions
-fixes
-balance
10/24/17
6
-balance adjustments
-fixed improper name assignment
-added renaming of units
-reworked casualties logic
-added statistics to arcology management screen
-various other fixes
10/22/17
5
10/18/17
3
1
Lolimod (may have some pregmod and optionsmod stuff mixed with it)
New Lolimod - not incorporated
10/06/16
0.8.7.1
10/03/16
0.8.6.7
In this update, loli nicknames are back, retirement age can be set lower in policies, and you can now pursue up to 6 FS directions!
09/21/16
2
With the 2 bugfixes applied
0.8.6.1
09/18/16
0.8.5.3
last known lolimod merge - 08/30/16
0.8.3.1
08/23/16
0.8.2.1
0.8.2.0
08/19/16
0.8.1.4
08/16/16
0.8.1.3
- The "disable age penalties for jobs" submod now has a mechanical effect rather than just changing messages.
- The long-standing change that allows slaves without balls but with artificial male hormone injections to experience erections has been added in some places where it was missing. In the process a vanilla bug in "SA serve your other slaves" where the wrong slave's attributes were being checked was corrected.
- Fixed the "flaws her mouth" silliness that somehow snuck back in from the base game. (It should be "quirks her mouth" so it was probably the victim of Replace All.)
- Incorporates a fix posted on halfchan for the "force her to rape herself" option for new slaves not appearing.
- Fixed one place in the game where a slave could refer to young slave as a "teenager" although she might be preteen.
0.8.1.3.1
-Fix for a variable name in "ask her about her feelings."
08/09/16
0.8.0.2
-with correct high adjustments.
08/03/16
0.7.11.2
07/28/16
0.7.10.2
-Also includes a temporary fix for a bug that I expect will be corrected in the next hot fix
07/27/16
0.7.10.1
-Redisigned buying other FS clothing, it is now found under a new subsection of Manage Arcology.
-fixed bugs and typos
- >>20506, >>20508 Okay, this bug should finally be fixed. Also tweaked loli nicknames a bit.
0.7.10.0
-making the new recruitment events use the age settings.
07/21/16
0.7.9.4
07/19/16
0.7.9.3
0.7.9.2
0.7.9.1
07/13/16
0.7.8.1
07/12/16
0.7.8.0
07/07/16
0.7.7.3
0.7.7.2
07/05/16
0.7.7.0
07/04/16
0.7.6.2
06/28/16
0.7.5.1
0.7.5.0
06/22/16
0.7.4.1
06/14/16
0.7.3.1
06/09/16
0.7.2.3
06/07/16
0.7.2.2
05/24/16
0.7.1.1
0.7.1.0
05/11/16
0.6.12.2
05/18/16
0.7.0.2
04/28/16
0.6.10.1
04/19/16
0.6.9.4
0.6.9.0
04/17/16
0.6.8.1
04/12/16
0.6.7.0
0.6.7.2
03/31/16
0.6.5.1
0.6.5.2
03/30/16
0.6.5.0
03/18/16
0.6.3.2
03/17/16
0.6.3.0
03/12/16
0.6.2.3
02/20/16
0.6.1.0
|
AshVaris/fc
|
devNotes/VersionChangeLog-Premod+LoliMod.txt
|
Text
|
mit
| 109,997 |
:: AssayJS [script]
window.slimCount = function(slaves) {
var slim = 0;
var ArcologyZero = State.variables.arcologies[0];
for (var i = 0; i < slaves.length; i++) {
var slave = slaves[i];
if ((slave.boobs < 500) && (slave.butt < 3)) {
if ((slave.muscles <= 30) && (ArcologyZero.FSPhysicalIdealist == "unset") && (slave.weight <= 10) && (ArcologyZero.FSHedonisticDecadence == "unset")) {
slim += 1;
} else if (ArcologyZero.FSPhysicalIdealist != "unset") {
if ((ArcologyZero.FSPhysicalIdealistStrongFat == 1) && (slave.weight <= 30)) {
slim += 1;
}
} else if ((ArcologyZero.FSHedonisticDecadence != "unset") && (slave.weight <= 30)) {
if (ArcologyZero.FSHedonisticDecadenceStrongFat == 1) {
slim += 1;
} else if (slave.muscles <= 30) {
slim += 1;
}
}
}
}
return slim;
}
window.stackedCount = function(slaves) {
var stacked = 0;
for (var i = 0; i < slaves.length; i++) {
var slave = slaves[i];
if ((slave.butt > 4) && (slave.boobs > 800)) {
stacked += 1;
}
}
return stacked;
}
window.moddedCount = function(slaves) {
var modded = 0;
for (var i = 0; i < slaves.length; i++) {
var slave = slaves[i];
var modScore = ModScore(slave);
var tatScore = TatScore(slave);
var piercingScore = PiercingScore(slave);
if ((modScore > 15) || (piercingScore > 8) && (tatScore > 5)) {
modded += 1;
}
}
return modded;
}
window.unmoddedCount = function(slaves) {
var unmodded = 0;
for (var i = 0; i < slaves.length; i++) {
var slave = slaves[i];
var modScore = ModScore(slave);
var tatScore = TatScore(slave);
var piercingScore = PiercingScore(slave);
if ((modScore > 15) || (piercingScore > 8) && (tatScore > 5))
; else {
unmodded += 1;
}
}
return unmodded;
}
window.XYCount = function(slaves) {
var XY = 0;
for (var i = 0; i < slaves.length; i++) {
var slave = slaves[i];
if (slave.vagina == -1) {
XY += 1;
}
}
return XY;
}
window.XXCount = function(slaves) {
var XX = 0;
for (var i = 0; i < slaves.length; i++) {
var slave = slaves[i];
if (slave.vagina != -1) {
State.variables.XX += 1;
}
}
return XX;
}
window.youngCount = function(slaves) {
var young = 0;
for (var i = 0; i < slaves.length; i++) {
var slave = slaves[i];
if (slave.visualAge < 30) {
State.variables.young += 1;
}
}
return young;
}
window.oldCount = function(slaves) {
var old = 0;
for (var i = 0; i < slaves.length; i++) {
var slave = slaves[i];
if (slave.visualAge >= 30) {
State.variables.old += 1;
}
}
return old;
}
window.pregYesCount = function(slaves) {
var pregYes = 0;
for (var i = 0; i < slaves.length; i++) {
var slave = slaves[i];
if ((slave.bellyPreg >= 5000) || (slave.bellyImplant >= 5000)) {
pregYes += 1;
}
}
return pregYes;
}
window.pregNoCount = function(slaves) {
var pregNo = 0;
for (var i = 0; i < slaves.length; i++) {
var slave = slaves[i];
if ((slave.bellyPreg >= 5000) || (slave.bellyImplant >= 5000))
; else if ((slave.belly < 100) && (slave.weight < 30) && (!setup.fakeBellies.includes(slave.bellyAccessory))) {
pregNo += 1;
}
}
return pregNo;
}
window.implantedCount = function(slaves) {
var implanted = 0;
for (var i = 0; i < slaves.length; i++) {
var slave = slaves[i];
if ((slave.boobsImplant == 0) && (slave.buttImplant == 0) && (slave.waist >= -95) && (slave.lipsImplant == 0) && (slave.faceImplant < 30) && (slave.bellyImplant == -1) && (Math.abs(slave.shouldersImplant) < 2) && (Math.abs(slave.hipsImplant) < 2))
; else {
implanted += 1;
}
}
return implanted;
}
window.pureCount = function(slaves) {
var pure = 0;
for (var i = 0; i < slaves.length; i++) {
var slave = slaves[i];
if ((slave.boobsImplant == 0) && (slave.buttImplant == 0) && (slave.waist >= -95) && (slave.lipsImplant == 0) && (slave.faceImplant < 30) && (slave.bellyImplant == -1) && (Math.abs(slave.shouldersImplant) < 2) && (Math.abs(slave.hipsImplant) < 2)) {
pure += 1;
}
}
return pure;
}
|
AshVaris/fc
|
devNotes/assayJS.txt
|
Text
|
mit
| 4,006 |
:: art widgets [nobr widget]
/%
Call as <<AssistantArt>>
Displays assistant images. Currently passage-based.
$args[0]: Image size/center.
3: Large, right. Example: description.
2: Medium, right. Example: random events.
%/
<<widget "AssistantArt">>
<<if $imageChoice == 0>> /* RENDERED IMAGES BY SHOKUSHU */
<<switch $assistantAppearance>>
<<case "monstergirl">>
<<set _fileName = "'resources/renders/assistant monstergirl.png' ">>
<<case "shemale">>
<<set _fileName = "'resources/renders/assistant shemale.png' ">>
<<case "amazon">>
<<set _fileName = "'resources/renders/assistant amazon.png' ">>
<<case "businesswoman">>
<<set _fileName = "'resources/renders/assistant businesswoman.png' ">>
<<case "goddess">>
<<set _fileName = "'resources/renders/assistant goddess.png' ">>
<<case "schoolgirl">>
<<set _fileName = "'resources/renders/assistant schoolgirl.png' ">>
<<default>>
<<set _fileName = "'resources/renders/assistant default.png' ">>
<</switch>>
<<if $args[1] == 3>>
<<print "<img src=" + _fileName + "style='float:right; border:3px hidden'/>">>
<<else>>
<<print "<img src=" + _fileName + "style='float:right; border:3px hidden' width='300' height='300'/>">>
<</if>>
<</if>> /* CLOSES IMAGE CHOICE */
<</widget>>
/%
Call as <<SlaveArt>>
Displays slave images. Currently passage-based.
$args[0]: Slave.
$args[1]: Image size/center.
3: Large, right. Example: long slave description.
2: Medium, right. Example: random events.
1: Small, left. Example: lists.
0: Tiny, left. Example: facilities
$args[2]: icon UI Display for vector art, 1 for on.
%/
<<widget "SlaveArt">>
/* This is a nasty workaround for Chrome not rendering overlaid SVG images properly */
<<run jQuery(function() { jQuery('.imageRef').imagesLoaded().always(function() { jQuery('.imageRef').fadeTo(1, 0.999); }); })>>
<<if ndef $args[0].customImage>><<set $args[0].customImage = 0>><</if>>
<<if $args[0].customImage != 0>>
<<set _fileFormat = ($args[0].customImageFormat || "png"),
_fileName = "'resources/" + $args[0].customImage + "." + _fileFormat + "' ",
_fileTypeStart = (_fileFormat === "webm" ? "video loop autoplay" : "img"),
_fileTypeEnd = (_fileFormat === "webm" ? "</video>" : "")>>
<<if $args[1] == 3>>
<<print "<" + _fileTypeStart + " src=" + _fileName + "style='float:right; border:3px hidden'>" + _fileTypeEnd>>
<<elseif $args[1] == 2>>
<<print "<" + _fileTypeStart + " src=" + _fileName + "style='float:right; border:3px hidden' width='300' height='300'>" + _fileTypeEnd>>
<<elseif $args[1] == 1>>
<<print "<" + _fileTypeStart + " src=" + _fileName + "style='float:left; border:3px hidden' width='150' height='150'>" + _fileTypeEnd>>
<<else>>
<<print "<" + _fileTypeStart + " src=" + _fileName + "style='float:left; border:3px hidden' width='120' height='120'>" + _fileTypeEnd>>
<</if>>
<<elseif $imageChoice == 1>> /* VECTOR ART BY NOX */
<<SVGFilters>>
/* 000-250-006 */
/* <div class="imageRef"> */
/* 000-250-006 */
<<set _folderLoc = "'resources/vector">>
<<if $args[2] == 1>>
<<print "<img class='paperdoll' src=" + _folderLoc + "/test ui.svg'" + "/>">>
<</if>>
/% Set skin colour %/
<<set _skinFilter = "filter: url(#skin-" + _.kebabCase($args[0].skin) + ");">>
/% Set hair colour %/
<<set _hairFilter = "filter: url(#hair-" + _.kebabCase($args[0].hColor) + ");">>
<<set _pubesFilter = "filter: url(#hair-" + _.kebabCase($args[0].pubicHColor) + ");">>
<<set _axillaryFilter = "filter: url(#hair-" + _.kebabCase($args[0].underArmHColor) + ");">>
<<if $args[0].customHairVector>>
<<set _hairStyle = $args[0].customHairVector>>
<<else>>
<<set _hairStyle = ["neat", "ponytail", "messy"].includes($args[0].hStyle) ? $args[0].hStyle : "neat">>
<</if>>
<<set _imgSkinLoc = _folderLoc + "/body/white">>
/% Shoulder width and arm or no arm %/
<<if $args[0].amp != 1>>
<<if $args[0].devotion > 50>>
<<set _leftArmType = "high">>
<<set _rightArmType = "high">>
<<elseif $args[0].trust >= -20>>
<<if $args[0].devotion < -20>>
<<set _leftArmType = "rebel">>
<<set _rightArmType = "low">>
<<elseif $args[0].devotion <= 20>>
<<set _leftArmType = "low">>
<<set _rightArmType = "low">>
<<else>>
<<set _leftArmType = "mid">>
<<set _rightArmType = "high">>
<</if>>
<<else>>
<<set _leftArmType = "mid">>
<<set _rightArmType = "mid">>
<</if>>
<<if $args[0].fuckdoll == 0 && $args[0].clothes != "restrictive latex" && $args[0].clothes != "a latex catsuit">>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/arm left " + _leftArmType + ".svg'" + " style='"+ _skinFilter + "'>">>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/arm right " + _rightArmType + ".svg'" + " style='"+ _skinFilter + "'>">>
<<else>>
<<if $args[0].fuckdoll != 0>>
<<set _leftArmType = "mid">>
<<set _rightArmType = "mid">>
<</if>>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/arm left " + _leftArmType + " latex.svg'" + "/>">>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/arm right " + _rightArmType + " latex.svg'" + "/>">>
<</if>>
<</if>>
/% Hair Aft %/
<<if $args[0].hStyle != "shaved" && $args[0].fuckdoll == 0>>
<<= "<img class='paperdoll' src=" + _folderLoc + "/hair/" + _hairStyle + " back.svg'" + " style='" + _hairFilter + "'/>">>
<</if>>
/% Butt %/
<<if $args[0].amp != 1>>
<<if $args[0].butt > 6>>
<<set _buttSize = 3>>
<<elseif $args[0].butt > 4>>
<<set _buttSize = 2>>
<<elseif $args[0].butt > 2>>
<<set _buttSize = 1>>
<<else>>
<<set _buttSize = 0>>
<</if>>
<<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">>
<<set _buttSize = _buttSize + " latex">>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/butt " + _buttSize + ".svg'" + " style='"+ _skinFilter + "'>">>
<<else>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/butt " + _buttSize + ".svg'" + " style='"+ _skinFilter + "'>">>
<</if>>
<</if>>
/% Leg + 1 size up when chubby or fat%/
<<if $args[0].hips < 0>>
<<if $args[0].weight <= 95>>/%Chubby%/
<<set _legSize = "normal">>
<<else>>
<<set _legSize = "narrow">>
<</if>>
<<elseif $args[0].hips == 0>>
<<if $args[0].weight <= 95>>/%Chubby%/
<<set _legSize = "wide">>
<<else>>
<<set _legSize = "normal">>
<</if>>
<<elseif $args[0].hips > 0>>
<<set _legSize = "wide">>
<</if>>
<<if $args[0].amp == 1>>
<<set _legSize = "stump " + _legSize>>
<</if>>
<<if ($args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit") && $args[0].amp != 1>>
<<set _legSize = _legSize + " latex">>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/leg " + _legSize + ".svg'" + "/>">>
<<else>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/leg " + _legSize + ".svg'" + " style='"+ _skinFilter + "'>">>
<</if>>
/% Feet %/
<<if $args[0].amp != 1>>
<<if $args[0].shoes == "heels">>
<<set _shoesType = "heel">>
<<elseif $args[0].shoes == "extreme heels">>
<<if $args[0].weight <= 95>>/%Chubby%/
<<set _shoesType = "extreme heel wide">>
<<else>>
<<set _shoesType = "extreme heel">>
<</if>>
<<elseif $args[0].shoes == "boots">>
<<if $args[0].weight <= 95>>/%Chubby%/
<<set _shoesType = "boot wide">>
<<else>>
<<set _shoesType = "boot">>
<</if>>
<<elseif $args[0].shoes == "flats">>
<<set _shoesType = "flat">>
<<else>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/feet.svg'" + " style='"+ _skinFilter + "'>">>
<</if>>
<<if $args[0].shoes == "extreme heels" or $args[0].shoes == "boots">>
<<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">>
<<set _shoesType = _shoesType + " latex">>
<</if>>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/" + _shoesType + ".svg'" + "/>">>
<</if>>
<<if $args[0].shoes == "heels" or $args[0].shoes == "flats">>
<<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">>
<<set _shoesType = _shoesType + " latex">>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/" + _shoesType + ".svg'" + "/>">>
<<else>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/" + _shoesType + ".svg'" + " style='"+ _skinFilter + "'>">>
<</if>>
<</if>>
<</if>>
/% Torso %/
<<if $args[0].waist < -40>>/*Unnatural*/
<<if $args[0].weight <= 30>>/%Chubby%/
<<set _torsoSize = "hourglass">>
<<else>>
<<set _torsoSize = "unnatural">>
<</if>>
<<elseif $args[0].waist <= 10>>/%Hour glass%/
<<if $args[0].weight <= 30>>/%Chubby%/
<<set _torsoSize = "normal">>
<<else>>
<<set _torsoSize = "hourglass">>
<</if>>
<<else>>/*Normal*/
<<set _torsoSize = "normal">>
<</if>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/torso " + _torsoSize + ".svg'" + " style='"+ _skinFilter + "'>">>
<<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">>
<<set _torsoOutfit = " latex">>
<<elseif $args[0].clothes == "uncomfortable straps">>
<<set _torsoOutfit = " straps">>
<</if>>
<<if _torsoOutfit>>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/torso " + _torsoSize + _torsoOutfit + ".svg'" + "/>">>
<</if>>
/*Navel Piercing*/
<<if $args[0].navelPiercing >= 1>>
<<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/navel piercing.svg'" + "/>">>
<</if>>
<<if $args[0].navelPiercing == 2>>
<<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/navel piercing heavy.svg'" + "/>">>
<</if>>
/% Vagina %/
<<if $args[0].vagina >= 0>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/vagina.svg'" + " style='"+ _skinFilter + "'>">>
<<if $args[0].clitPiercing == 1>>
<<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/clit piercing.svg'" + "/>">>
<<elseif $args[0].clitPiercing == 2>>
<<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/clit piercing heavy.svg'" + "/>">>
<<elseif $args[0].clitPiercing == 3>>
<<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/clit piercing smart.svg'" + "/>">>
<</if>>
<<if $args[0].vaginaPiercing == 1>>
<<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/pussy piercing.svg'" + "/>">>
<<elseif $args[0].vaginaPiercing == 2>>
<<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/pussy piercing heavy.svg'" + "/>">>
<</if>>
<</if>>
/% Collar %/
<<switch $args[0].collar>>
<<case "bowtie">>
<<case "ancient Egyptian">>
<<case "nice retirement counter" "cruel retirement counter" "leather with cowbell" "pretty jewelry" "heavy gold" "satin choker" "stylish leather" "neck corset" "shock punishment" "tight steel" "uncomfortable leather" "dildo gag">>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/" + $args[0].collar + ".svg'" + "/>">>
<</switch>>
/% Head base image %/
<<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/head latex.svg'" + "/>">>
<<else>>
<<print "<img class='paperdoll' src=" +_imgSkinLoc + "/head.svg'" + " style='"+ _skinFilter + "'>">>
<</if>>
/% Glasses %/
<<if $args[0].eyewear == "corrective glasses" or $args[0].eyewear == "glasses" or $args[0].eyewear == "blurring glasses">>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/glasses.svg'" + "/>">>
<</if>>
/% Chastity belt or Pubic hair %/
<<if $args[0].dickAccessory == "chastity" || $args[0].dickAccessory == "anal chastity" || $args[0].dickAccessory == "combined chastity" || $args[0].vaginalAccessory == "chastity belt" || $args[0].vaginalAccessory == "anal chastity" || $args[0].vaginalAccessory == "combined chastity">>
<<if $args[0].dickAccessory == "chastity" || $args[0].dickAccessory == "combined chastity">>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity male aft.svg'" + "/>">>
<</if>>
<<if $args[0].vaginalAccessory == "chastity belt" || $args[0].vaginalAccessory == "combined chastity">>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity female.svg'" + "/>">>
<</if>>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity base.svg'" + "/>">>
<<else>>
<<if $args[0].pubicHStyle != "waxed">>
<<set _pubicHStyle = ($args[0].pubicHStyle == "in a strip" ? "strip" : $args[0].pubicHStyle)>>
<<= "<img class='paperdoll' src=" + _folderLoc + "/hair/pubes " + _pubicHStyle + ".svg' style='" + _pubesFilter + "'/>">>
<</if>>
<</if>>
/%if pregnant%/
<<if $args[0].preg > 0>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/preg belly.svg'" + " style='"+ _skinFilter + "'>">>
<<if $args[0].navelPiercing >= 1>>/*Navel Piercing*/
<<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/preg navel piercing.svg'" + "/>">>
<</if>>
<<if $args[0].navelPiercing == 2>>
<<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/preg navel piercing heavy.svg'" + "/>">>
<</if>>
<</if>>
/% Boob %/
<<if $args[0].boobs < 250>>
<<set _boobSize = 0>>
<<elseif $args[0].boobs < 500>>
<<set _boobSize = 1>>
<<elseif $args[0].boobs < 800>>
<<set _boobSize = 2>>
<<elseif $args[0].boobs < 1600>>
<<set _boobSize = 3>>
<<elseif $args[0].boobs < 3200>>
<<set _boobSize = 4>>
<<elseif $args[0].boobs < 6400>>
<<set _boobSize = 5>>
<<elseif $args[0].boobs < 12000>>
<<set _boobSize = 6>>
<<else>>
<<set _boobSize = 7>>
<</if>>
/% Scrotum %/
<<if $args[0].scrotum > 0>>
<<if $args[0].scrotum >= 6>>
<<set _ballSize = 4>>
<<elseif $args[0].scrotum >= 4>>
<<set _ballSize = 3>>
<<elseif $args[0].scrotum >= 3>>
<<set _ballSize = 2>>
<<elseif $args[0].scrotum >= 2>>
<<set _ballSize = 1>>
<<else>>
<<set _ballSize = 0>>
<</if>>
<</if>>
/% Penis %/
<<if $args[0].dick > 0>>
<<if $args[0].dick >= 8>>
<<set _penisSize = 6>>
<<elseif $args[0].dick >= 7>>
<<set _penisSize = 5>>
<<elseif $args[0].dick >= 6>>
<<set _penisSize = 4>>
<<elseif $args[0].dick >= 5>>
<<set _penisSize = 3>>
<<elseif $args[0].dick >= 4>>
<<set _penisSize = 2>>
<<elseif $args[0].dick >= 2>>
<<set _penisSize = 1>>
<<else>>
<<set _penisSize = 0>>
<</if>>
<</if>>
/% Boob %/
<<set _needBoobs = 1>>
<<if $args[0].dick > 0>>
<<if canAchieveErection($args[0])>>
<<if _boobSize < 6>>
<<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">>
/* normal case: outfit hides boobs */
<<set _boobOutfit = " latex" >>
<</if>>
<<if _boobOutfit >>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/boob " +_boobSize + _boobOutfit + ".svg'" + "/>">>
<<if $args[0].lactation > 0>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + " style='"+ _skinFilter + "'>">>
<</if>>
<<else>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize +".svg'" + " style='"+ _skinFilter + "'>">>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + " style='"+ _skinFilter + "'>">>
<</if>>
/* special case: straps are actually dawn over the boobs */
<<if $args[0].clothes == "uncomfortable straps">>
<<set _boobOutfit = " straps" >>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/boob " +_boobSize + _boobOutfit + ".svg'" + "/>">>
<</if>>
<<set _needBoobs = 0>>
<</if>>
<</if>>
<</if>>
<<if $args[0].vagina > 0>>
<<if $args[0].dick > 0>>
<div class="highPenis">
<<if $args[0].scrotum > 0>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/ball " + _ballSize + ".svg'" + " style='"+ _skinFilter + "'>">>
<</if>>
<<if canAchieveErection($args[0])>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/penis " + _penisSize + ".svg'" + " style='"+ _skinFilter + "'>">>
<<else>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/flaccid " + _penisSize + ".svg'" + " style='"+ _skinFilter + "'>">>
<<if $args[0].dickAccessory == "chastity" || $args[0].dickAccessory == "combined chastity">>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity male fore " + _penisSize + ".svg'" + "/>">>
<</if>>
<</if>>
</div>
<</if>>
<<else>>
<<if $args[0].dick > 0>>
<div class="lowPenis">
<<if $args[0].scrotum > 0>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/ball " + _ballSize + ".svg'" + " style='"+ _skinFilter + "'>">>
<</if>>
<<if canAchieveErection($args[0])>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/penis " + _penisSize + ".svg'" + " style='"+ _skinFilter + "'>">>
<<else>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/flaccid " + _penisSize + ".svg'" + " style='"+ _skinFilter + "'>">>
<<if $args[0].dickAccessory == "chastity" || $args[0].dickAccessory == "combined chastity">>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity male fore " + _penisSize + ".svg'" + "/>">>
<</if>>
<</if>>
</div>
<</if>>
<</if>>
<<if _needBoobs>>
<<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/boob " +_boobSize +" latex.svg'" + "/>">>
<<if $args[0].lactation > 0>><<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + " style='"+ _skinFilter + "'>">><</if>>
<<else>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize +".svg'" + " style='"+ _skinFilter + "'>">>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + " style='"+ _skinFilter + "'>">>
<</if>>
/* special case: straps are actually dawn over the boobs */
<<if $args[0].clothes == "uncomfortable straps">>
<<set _boobOutfit = " straps" >>
<<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/boob " +_boobSize + _boobOutfit + ".svg'" + "/>">>
<</if>>
<</if>>
/% piercings %/
<<if $args[0].nipplesPiercing == 1>>
<<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/boob " +_boobSize +" piercing.svg'" + "/>">>
<<elseif $args[0].nipplesPiercing == 2>>
<<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/boob " +_boobSize +" piercing heavy.svg'" + "/>">>
<</if>>
<<if $args[0].areolaePiercing == 1>>
<<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/boob " +_boobSize +" areola piercing.svg'" + "/>">>
<</if>>
/% clavicle %/
<<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/clavicle.svg'" + "/>">>
/% Hair Foreground %/
<<if $args[0].hStyle != "shaved" && $args[0].fuckdoll == 0>>
<<= "<img class='paperdoll' src=" + _folderLoc + "/hair/" + _hairStyle + " front.svg'" + " style='" + _hairFilter + "'/>">>
<</if>>
<<else>> /* RENDERED IMAGES BY SHOKUSHU */
<<if $args[0].vagina > -1>>
<<if $args[0].dick > 0>>
<<if $args[0].balls > 0>>
<<set _fileName = "futanari">>
<<else>>
<<set _fileName = "herm">>
<</if>>
<<else>>
<<set _fileName = "female">>
<</if>>
<<else>>
<<if $args[0].balls > 0>>
<<set _fileName = "shemale">>
<<else>>
<<set _fileName = "gelding">>
<</if>>
<</if>>
<<if $args[0].preg > 10>>
<<set _fileName = "preg " + _fileName>>
<</if>>
<<if $args[0].boobs < 400>>
<<set _fileName = _fileName + " small">>
<<elseif $args[0].boobs < 800>>
<<set _fileName = _fileName + " big">>
<<elseif $args[0].boobs < 6000>>
<<set _fileName = _fileName + " huge">>
<<else>>
<<set _fileName = _fileName + " hyper">>
<</if>>
<<if $args[0].muscles > 30>>
<<set _fileName = _fileName + " muscle">>
<<else>>
<<set _fileName = _fileName + " soft">>
<</if>>
<<if $args[0].fuckdoll > 0>>
<<set _fileName = _fileName + " rebellious">>
<<elseif $args[0].devotion <= 20>>
<<if $args[0].trust < -20>>
<<set _fileName = _fileName + " reluctant">>
<<else>>
<<set _fileName = _fileName + " rebellious">>
<</if>>
<<elseif $args[0].fetish == "mindbroken">>
<<set _fileName = _fileName + " reluctant">>
<<elseif $args[0].devotion <= 50 || $args[0].fetishKnown != 1 || ($seeMainFetishes == 0 && $args[1] < 2)>>
<<set _fileName = _fileName + " obedient">>
<<else>>
<<if $args[0].fetish == "none">>
<<set _fileName = _fileName + " obedient">>
<<else>>
<<set _fileName = _fileName + " " + $args[0].fetish>>
<</if>>
<</if>>
<<set _fileName = "'resources/renders/" + _fileName + ".png' ">>
<<if $args[1] == 3>>
<<print "<img src=" + _fileName + "style='float:right; border:3px hidden'/>">>
<<elseif $args[1] == 2>>
<<print "<img src=" + _fileName + "style='float:right; border:3px hidden' width='300' height='300'/>">>
<<elseif $args[1] == 1>>
<<print "<img src=" + _fileName + "style='float:left; border:3px hidden' width='150' height='150'/>">>
<<else>>
<<print "<img src=" + _fileName + "style='float:left; border:3px hidden' width='120' height='120'/>">>
<</if>>
<</if>> /* CLOSES IMAGE CHOICE */
<</widget>>
|
AshVaris/fc
|
devNotes/legacy files/artWidgets-legacy
|
none
|
mit
| 20,774 |
<<if $activeSlave.preg > 30>>
<<if $activeSlave.pregType == 100>>
The only thing keeping $possessive from bursting are $possessive belly restraints,
<<elseif $activeSlave.pregType >= 20>>
$pronounCap is close to bursting,
<<elseif $activeSlave.pregType >= 10>>
$pronounCap is dangerously pregnant,
<<else>>
$pronounCap is enormously pregnant,
<</if>>
<<if $activeSlave.pregType == 100>>
<<if $activeSlave.amp == 1>>
with no arms and legs $pronoun is effectively a giant womb.
<<else>>
and $possessive thinning arms and legs rest helpless atop $possessive supermassive belly.
<</if>>
<<elseif $activeSlave.physicalAge <= 3>>
<<if $activeSlave.pregType >= 20>>
and $pronoun is nearly spherical. $possessiveCap toddlerish form is utterly dwarfed by $possessive pregnancy, all $pronoun can do is lay on top of it. Despite being taut, $possessive belly visibly bulges and squirms from all the babies writhing within $object. $possessiveCap womb is so full you can see the babies forced up against $possessive uterus, even the slightest provocation could cause $possessive to burst.<<if $saleDescription == 0>> $pronounCap requires multiple slaves to move $possessive bulk when $pronoun must go somewhere.<</if>>
<<elseif $activeSlave.pregType >= 10>>
and $possessive belly pins $possessive to the ground. $possessiveCap toddlerish form is dwarfed by $possessive pregnancy, and try as $pronoun might $pronoun can not even drag the massive thing. $pronounCap is so pregnant you can barely see the babies within $possessive bulging $possessive stomach.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet<<if $saleDescription == 0>>, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere<</if>>.<</if>>
<<else>>
and $possessive toddlerish body is absolutely filled by $possessive womb. $pronounCap can barely move herself and resembles an over inflated blow-up doll.
<</if>>
<<elseif $activeSlave.physicalAge <= 12>>
<<if $activeSlave.pregType >= 20>>
and $pronoun is more belly than girl. $possessiveCap absolutely gigantic, overfilled womb keeps $possessive pinned to the ground. $possessiveCap belly visibly bulges and squirms from all the babies within $possessive. $pronounCap is so full you can see the babies forced up against the walls of $possessive uterus. $possessiveCap skin is so taut that even the slightest provocation could cause $possessive to burst.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet<<if $saleDescription == 0>>, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere<</if>>.<</if>>
<<elseif $activeSlave.pregType >= 10>>
and $pronoun can barely function with $possessive enormous belly. $pronounCap is so full you can barely see the babies bulging out of $possessive stomach.
<<else>>
and $possessive massive, drum-taut belly dominates $possessive poor little frame.
<</if>>
<<elseif $activeSlave.weight > 190>>
<<if $activeSlave.pregType >= 20>>
and $possessive massively fat belly is stretched considerably, so much so $possessive folds are pulled flat. $possessiveCap pregnancy is covered in a thick layer of fat, save for the grotesquely bulging upper portion where $possessive fat is thinnest. $possessiveCap womb is so full that every motion within it translates to $possessive soft body.
<<elseif $activeSlave.pregType >= 10>>
and $possessive massively fat belly is stretched considerably; $possessive folds are nearly pulled flat from the strain. $possessiveCap pregnancy is covered in a thick layer of fat, save for the bulging upper portion where $possessive fat is thinnest.
<<else>>
but $pronoun's so massively fat that it's not obvious. Only the firmness at its top gives away $possessive pregnancy.
<</if>>
<<elseif $activeSlave.height >= 185>>
<<if $activeSlave.pregType >= 20>>
but $possessive tall frame barely keeps $possessive grotesque, splitting belly off the ground. Despite being taut, $possessive belly visibly bulges and squirms from all the babies writhing within $object. $possessiveCap womb is so full you can see the babies forced up against $possessive uterus, even the slightest provocation could cause $object to burst.
<<elseif $activeSlave.pregType >= 10>>
but $possessive tall frame barely bears $possessive obscene, drum-taut belly. $pronounCap is so pregnant you can barely see the babies within $possessive bulging stomach.
<<else>>
but $possessive tall frame bears $possessive massive, drum-taut belly well.
<</if>>
<<elseif $activeSlave.height < 150>>
<<if $activeSlave.pregType >= 20>>
and $pronoun is more belly than girl. $possessiveCap absolutely gigantic, overfilled womb keeps $object pinned to the ground. $possessiveCap belly visibly bulges and squirms from all the babies within $object. $pronounCap is so full you can see the babies forced up against the walls of $possessive uterus. $possessiveCap skin is so taut that even the slightest provocation could cause $object to burst.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet<<if $saleDescription == 0>>, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere<</if>>.<</if>>
<<elseif $activeSlave.pregType >= 10>>
and $pronoun can barely function with $possessive enormous belly. $pronounCap is so full you can barely see the babies bulging out of $possessive stomach.
<<else>>
and $possessive massive, drum-taut belly dominates $possessive poor little frame.
<</if>>
<<elseif $activeSlave.muscles > 30>>
<<if $activeSlave.pregType >= 20>>
and $pronoun can barely hold $possessive overfilled belly upright. $possessiveCap enormous brood greatly protrudes $possessive belly covering it in writhing bulges where they are forced up against $possessive uterus. While $possessive strong body spares $object from the fear of bursting, it does nothing to stop everyone from seeing how many children $pronoun's having.
<<elseif $activeSlave.pregType >= 10>>
and $possessive fit body allows $object to carry $possessive obscene belly without too much trouble. $possessiveCap large brood gently bulges $possessive belly.
<<else>>
and $possessive fit body bears $possessive massive, drum-taut belly well.
<</if>>
<<else>>
<<if $activeSlave.pregType >= 20>>
and $pronoun is more belly than girl. $possessiveCap gigantic, overfilled womb keeps $object pinned to the ground. $possessiveCap belly visibly bulges and squirms from all the babies within $object. $pronounCap is so full you can see the babies forced up against the walls of $possessive womb through $possessive taut skin. $possessiveCap bulgy belly is at risk of rupturing.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet<<if $saleDescription == 0>>, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere<</if>>.<</if>>
<<elseif $activeSlave.pregType >= 10>>
and $pronoun can barely function with $possessive enormous belly. $possessiveCap womb is so full you can see the babies gently bulging the walls of $possessive uterus.
<<else>>
and $possessive massive, drum-taut belly dominates $possessive frame.
<</if>>
<</if>>
<<elseif $activeSlave.preg > 20>>
<<if $activeSlave.pregType >= 20>>
$pronounCap is dangerously pregnant,
<<elseif $activeSlave.pregType >= 10>>
$pronounCap is obscenely pregnant,
<<else>>
$pronounCap is heavily pregnant,
<</if>>
<<if $activeSlave.physicalAge <= 3>>
<<if $activeSlave.pregType >= 20>>
and $possessive hugely distended belly is bigger than $pronoun is.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet<<if $saleDescription == 0>>, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere<</if>>.<</if>>
<<elseif $activeSlave.pregType >= 10>>
and $possessive bulging belly is as big as $pronoun is.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet<<if $saleDescription == 0>>, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere<</if>>.<</if>>
<<else>>
and $possessive swollen belly is nearly as big as $possessive toddlerish body.
<</if>>
<<elseif $activeSlave.physicalAge <= 12>>
<<if $activeSlave.pregType >= 20>>
and $possessive hugely distended belly is nearly as big as $pronoun is.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet<<if $saleDescription == 0>>, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere<</if>>.<</if>>
<<elseif $activeSlave.pregType >= 10>>
and $possessive bulging belly looks absolutely huge on $possessive poor little frame.
<<else>>
and $possessive swollen belly dominates $possessive poor little frame.
<</if>>
<<elseif $activeSlave.weight > 130>>
<<if $activeSlave.pregType >= 20>>
and $possessive big fat belly is absolutely enormous when coupled with $possessive filled womb.
<<elseif $activeSlave.pregType >= 10>>
but $pronoun's so fat that $pronoun appears to merely be carrying a giant gut. Only the firmness at its top gives away $possessive pregnancy.
<<else>>
but $pronoun's so fat that it's not obvious. Only the firmness at its top gives away $possessive pregnancy.
<</if>>
<<elseif $activeSlave.height >= 185>>
<<if $activeSlave.pregType >= 20>>
but $possessive tall frame keeps $possessive huge belly off the ground.
<<elseif $activeSlave.pregType >= 10>>
but $possessive tall frame lets $possessive keep $possessive posture despite $possessive large belly.
<<else>>
but $possessive tall frame bears $possessive swollen belly well.
<</if>>
<<elseif $activeSlave.height < 150>>
<<if $activeSlave.pregType >= 20>>
and $possessive hugely distended belly is nearly as big as $pronoun is.
<<elseif $activeSlave.pregType >= 10>>
and $possessive bulging belly looks absolutely huge on $possessive poor little frame.
<<else>>
and $possessive swollen belly dominates $possessive poor little frame.
<</if>>
<<elseif $activeSlave.muscles > 30>>
<<if $activeSlave.pregType >= 20>>
and $possessive fit body allows $object to carry $possessive huge belly with only the occasional accident.
<<elseif $activeSlave.pregType >= 10>>
and $possessive fit body carries $possessive bulging belly without much trouble.
<<else>>
and $possessive fit body bears $possessive swollen belly well.
<</if>>
<<else>>
<<if $activeSlave.pregType >= 20>>
and $possessive hugely distended belly juts far out from $possessive front and widely from $possessive sides.
<<elseif $activeSlave.pregType >= 10>>
and $possessive large bulging belly draws all attention away from the rest of $possessive.
<<else>>
and $possessive swollen belly dominates $possessive frame.
<</if>>
<</if>>
<<elseif $activeSlave.preg > 9>>
$pronounCap is visibly pregnant,
<<if $activeSlave.physicalAge <= 3>>
<<if $activeSlave.pregType >= 20>>
$possessiveCap huge belly resembles an over-inflated beach ball compared to $possessive toddlerish frame. It bulges out from $possessive sides considerably.
<<elseif $activeSlave.pregType >= 10>>
and it looks like $pronoun is ready to birth triplets due to $possessive toddlerish body.
<<else>>
and $possessive swelling belly looks obscene on $possessive toddlerish body.
<</if>>
<<elseif $activeSlave.physicalAge <= 10>>
<<if $activeSlave.pregType >= 20>>
$possessiveCap huge belly resembles an over-inflated beach ball compared to $possessive tiny frame.
<<elseif $activeSlave.pregType >= 10>>
and $possessive swelling belly appears full term on $possessive tiny frame.
<<else>>
and $possessive swelling belly already looks huge on $possessive tiny frame.
<</if>>
<<elseif $activeSlave.weight > 95>>
<<if $activeSlave.pregType >= 20>>
$possessive fat belly considerably juts out with $possessive rapid growth.
<<elseif $activeSlave.pregType >= 10>>
but $pronoun's sufficiently overweight that $pronoun appears to merely be carrying a large gut.
<<else>>
but $pronoun's sufficiently overweight that it's not obvious.
<</if>>
<<elseif $activeSlave.height < 150>>
<<if $activeSlave.pregType >= 20>>
$possessiveCap huge belly resembles an over-inflated beach ball compared to $possessive tiny frame.
<<elseif $activeSlave.pregType >= 10>>
and $possessive swelling belly appears full term on $possessive tiny frame.
<<else>>
and $possessive swelling belly already looks huge on $possessive tiny frame.
<</if>>
<<elseif $activeSlave.weight < -10>>
<<if $activeSlave.pregType >= 20>>
$possessive enormous stomach juts far forward and lewdly extends far past $possessive sides.
<<elseif $activeSlave.pregType >= 10>>
$possessive bulging stomach fills $possessive thin frame obscenely.
<<else>>
$possessive thin form making $possessive swelling belly very obvious.
<</if>>
<<else>>
<<if $activeSlave.pregType >= 20>>
and $possessive obvious pregnancy appears full-term.
<<elseif $activeSlave.pregType >= 10>>
$possessive distended stomach makes $possessive look to be in $possessive last trimester.
<<else>>
the life growing within $possessive beginning to swell $possessive belly.
<<if $activeSlave.bellySag > 0>>
$possessiveCap new pregnancy reduces the amount of sag to $possessive overstretched middle.
<</if>>
<</if>>
<</if>>
<<if ($activeSlave.preg == -2) && ($activeSlave.vagina < 0) && ($activeSlave.mpreg == 0)>>
<<elseif ($activeSlave.preg <= -2) && ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1)>>
$pronounCap is sterile.
<<elseif $activeSlave.preg == 0 && $activeSlave.vagina > -1>>
<<if $activeSlave.pregType > 30>>
$possessiveCap lower belly is noticeably bloated, $possessive breasts bigger and more sensitive, and $possessive pussy swollen and leaking fluids. $pronoun desperately needs a dick in $object and reminds you of a bitch in heat.
<<elseif $activeSlave.pregType > 20>>
$possessiveCap lower belly is noticeably bloated and $possessive pussy swollen and leaking fluids. $pronounCap is very ready to be seeded.
<<elseif $activeSlave.pregType > 2>>
$possessiveCap lower belly is slightly bloated and $possessive pussy swollen and leaking fluids. $pronounCap is ready to be seeded.
<</if>>
<<elseif $activeSlave.preg > 30>>
<<if $activeSlave.pregType >= 20>>
$pronounCap is @@.red;on the brink of bursting!@@ $possessiveCap belly is painfully stretched, the slightest provocation could cause $object to rupture.
<<elseif $activeSlave.pregType >= 10>>
$pronounCap is @@.pink;dangerously pregnant,@@ $possessive overburdened womb is filled with $activeSlave.pregType babies.
<<elseif $activeSlave.pregType > 4>>
$pronounCap is @@.pink;obscenely pregnant:@@ $pronoun's carrying quintuplets.
<<elseif $activeSlave.pregType > 2>>
$pronounCap is @@.pink;massively pregnant:@@ $pronoun's carrying
<<if $activeSlave.pregType == 4>>
quadruplets.
<<else>>
triplets.
<</if>>
<<else>>
$pronounCap is @@.pink;hugely pregnant:@@
<<if $activeSlave.pregType == 2>>
$pronoun's carrying twins.
<<else>>
$pronoun's almost ready to give birth.
<</if>>
<</if>>
<<elseif $activeSlave.preg > 20>>
<<if $activeSlave.pregType >= 20>>
$pronounCap is @@.pink;dangerously pregnant,@@ despite how early in $possessive pregnancy $pronoun is: $pronoun's carrying far too many children.
<<elseif $activeSlave.pregType >= 10>>
$pronounCap is @@.pink;obscenely pregnant,@@ despite how early in $possessive pregnancy $pronoun is: $pronoun's carrying $activeSlave.pregType children.
<<elseif $activeSlave.pregType > 4>>
$pronounCap is @@.pink;massively pregnant,@@ despite how early in $possessive pregnancy $pronoun is: $pronoun's carrying quintuplets.
<<elseif $activeSlave.pregType > 2>>
$pronounCap is @@.pink;hugely pregnant,@@ despite how early in $possessive pregnancy $pronoun is: $pronoun's carrying
<<if $activeSlave.pregType == 4>>
quadruplets.
<<else>>
triplets.
<</if>>
<<else>>
$pronounCap is @@.pink;very pregnant:@@
<<if $activeSlave.pregType == 2>>
$pronoun's carrying twins.
<<else>>
the baby inside $object is growing rapidly.
<</if>>
<</if>>
<<if $activeSlave.waist > 95>>
a badly @@.red;masculine waist@@ that ruins her figure<<if $activeSlave.weight > 30>> and greatly exaggerates how fat $pronoun is<<elseif $activeSlave.weight < -30>> despite how thin $pronoun is<</if>>.
<<if hyperBellyTwo($activeSlave)>>
$possessiveCap titanic belly lewdly bulges out the sides of $possessive thick waist.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
<<elseif hyperBellyOne($activeSlave)>>
$possessiveCap gigantic belly barely distends her $possessive thick waist.
<<elseif hugeBelly($activeSlave)>>
$possessiveCap huge belly is hidden by $possessive thick waist.
<<elseif bigBelly($activeSlave)>>
$possessiveCap belly is hidden by $possessive thick waist.
<</if>>
<<elseif $activeSlave.waist > 40>>
a broad, @@.red;ugly waist@@ that makes her look mannish<<if $activeSlave.weight > 30>> and exaggerates how fat $pronoun is<<elseif $activeSlave.weight < -30>> despite how thin $pronoun is<</if>>.
<<if hyperBellyTwo($activeSlave)>>
$possessiveCap titanic belly lewdly bulges out the sides of $possessive chunky waist.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
<<elseif hyperBellyOne($activeSlave)>>
$possessiveCap gigantic belly barely distends her $possessive chunky waist.
<<elseif hugeBelly($activeSlave)>>
$possessiveCap huge belly is barely hidden by $possessive chunky waist.
<<elseif bigBelly($activeSlave)>>
$possessiveCap belly is hidden by $possessive chunky waist.
<</if>>
<<elseif $activeSlave.waist > 10>>
an @@.red;unattractive waist@@ that conceals $possessive <<if $activeSlave.visualAge > 25>>girlish<<else>>womanly<</if>> figure<<if $activeSlave.weight > 30>> and accentuates how fat $pronoun is<<elseif $activeSlave.weight < -30>> despite how thin $pronoun is<</if>>.
<<if hyperBellyTwo($activeSlave)>>
$possessiveCap titanic belly lewdly bulges out the sides of $possessive waist.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
<<elseif hyperBellyOne($activeSlave)>>
$possessiveCap gigantic belly barely distends her $possessive waist.
<<elseif hugeBelly($activeSlave)>>
$possessiveCap huge belly is barely visible to either side of $possessive waist.
<<elseif bigBelly($activeSlave)>>
$possessiveCap belly is barely hidden by $possessive waist.
<</if>>
<<elseif $activeSlave.waist >= -10>>
an average waist for a <<if $activeSlave.visualAge > 25>>girl<<else>>woman<</if>><<if $activeSlave.weight > 30>>, though it looks broader since $pronoun's fat<<elseif $activeSlave.weight < -30>>, though it looks narrower since $pronoun's thin<</if>>.
<<if hyperBellyTwo($activeSlave)>>
$possessiveCap titanic belly lewdly bulges out the sides of $possessive waist.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
<<elseif hyperBellyOne($activeSlave)>>
$possessiveCap gigantic belly barely distends her $possessive waist.
<<elseif hugeBelly($activeSlave)>>
$possessiveCap huge belly is barely visible to either side of $possessive waist.
<<elseif bigBelly($activeSlave)>>
$possessiveCap belly is barely hidden by $possessive waist.
<</if>>
<<elseif $activeSlave.waist >= -40>>
a nice @@.pink;feminine waist@@ that gives $object a <<if $activeSlave.visualAge > 25>>girlish<<else>>womanly<</if>> figure<<if $activeSlave.weight > 30>> despite $possessive extra weight<<elseif $activeSlave.weight < -30>> and accentuates how thin $pronoun is<</if>>.
<<if hyperBellyTwo($activeSlave)>>
$possessiveCap titanic belly lewdly bulges out the sides of $possessive feminine waist.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
<<elseif hyperBellyOne($activeSlave)>>
$possessiveCap gigantic belly lewdly distends her $possessive feminine waist.
<<elseif hugeBelly($activeSlave)>>
$possessiveCap huge belly juts out slightly to either side of $possessive feminine waist.
<<elseif bigBelly($activeSlave)>>
$possessiveCap belly is barely visible around $possessive feminine waist.
<</if>>
<<elseif $activeSlave.waist >= -95>>
a hot @@.pink;wasp waist@@ that gives $possessive an hourglass figure<<if $activeSlave.weight > 30>> despite $possessive extra weight<<elseif $activeSlave.weight < -30>> further accentuated by how thin $pronoun is<</if>>.
<<if hyperBellyTwo($activeSlave)>>
$possessiveCap titanic belly lewdly bulges out the sides of $possessive narrow waist and continues nearly half a meter farther to either side.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
<<elseif hyperBellyOne($activeSlave)>>
$possessiveCap gigantic belly lewdly distends massively to either side of $possessive narrow waist.
<<elseif hugeBelly($activeSlave)>>
$possessiveCap huge belly bulges to either side of $possessive narrow waist.
<<elseif bigBelly($activeSlave)>>
$possessiveCap belly is visible around $possessive narrow waist.
<</if>>
<<else>>
an @@.pink;absurdly narrow waist@@ that gives $possessive a cartoonishly hourglass figure<<if $activeSlave.weight > 30>> made even more ludicrous by $possessive extra weight<<elseif $activeSlave.weight < -30>> made even more ludicrous by how thin $pronoun is<</if>>.
<<if hyperBellyTwo($activeSlave)>>
$possessiveCap titanic belly lewdly bulges out the sides of $possessive very narrow waist and continues nearly half a meter farther to either side.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
<<elseif hyperBellyOne($activeSlave)>>
$possessiveCap gigantic belly lewdly distends massively to either side of $possessive very narrow waist.
<<elseif hugeBelly($activeSlave)>>
$possessiveCap huge belly bulges lewdly to either side of $possessive very narrow waist.
<<elseif bigBelly($activeSlave)>>
$possessiveCap belly is visible to either side of $possessive very narrow waist.
<</if>>
<</if>>
|
AshVaris/fc
|
devNotes/legacy files/oldPregDesc
|
none
|
mit
| 22,811 |
:: SA hormone effects [nobr]
<<set $hormones = $slaves[$i].hormones>>
<<if ($hormones > -2)>>
<<if ($slaves[$i].balls != 0)>>
<<if ($hormones != 0) || ($hormoneUpgradePower < 2)>>
<<set $hormones -= 1>>
<</if>>
<</if>>
<</if>>
<<if ($hormones < 2)>>
<<if ($slaves[$i].ovaries != 0)>>
<<if ($hormones != 0) || ($hormoneUpgradePower < 2)>>
<<set $hormones += 1>>
<</if>>
<</if>>
<</if>>
<<if ($hormones > 1)>>
$possessiveCap hormonal balance is heavily feminine.
<<elseif ($hormones < -1)>>
$possessiveCap hormonal balance is heavily masculine.
<<elseif ($hormones > 0)>>
$possessiveCap hormonal balance is feminine.
<<elseif ($hormones < 0)>>
$possessiveCap hormonal balance is masculine.
<<else>>
$pronounCap has a neutral hormonal balance.
<</if>>
<<if $hormoneUpgradeMood == 0>>
<<if $slaves[$i].hormones > 0>>
<<if $slaves[$i].balls != 0>>
$possessiveCap <<if $hormoneUpgradeMood == 0>>feminine treatments have to fight<<else>>advanced treatments brutally overpower<</if>> $possessive natural hormones,
<<if $slaves[$i].devotion > 50>>
but $pronoun's a good enough slave to suppress the occasional moodiness.
<<else>>
causing @@.mediumorchid;occasional moodiness.@@
<<set $slaves[$i].devotion -= 1>>
<</if>>
<</if>>
<</if>>
<<if $slaves[$i].hormones < 0>>
<<if $slaves[$i].ovaries != 0>>
$possessiveCap <<if $hormoneUpgradeMood == 0>>masculine treatments have to fight<<else>>advanced treatments brutally overpower<</if>> $possessive natural hormones,
<<if $slaves[$i].devotion > 50>>
but $pronoun's a good enough slave to suppress the occasional moodiness.
<<else>>
causing @@.mediumorchid;occasional moodiness.@@
<<set $slaves[$i].devotion -= 1>>
<</if>>
<</if>>
<</if>>
<</if>>
<<set _Effects = []>>
<<if ($hormones >= 2)>>
<<if ($hormoneUpgradeShrinkage == 0)>>
<<if ($slaves[$i].dick > 1)>>
<<set _Effects.push("DickShrink")>>
<</if>>
<<if ($slaves[$i].balls > 1)>>
<<set _Effects.push("BallsShrink")>>
<</if>>
<<if ($slaves[$i].clit > 0)>>
<<set _Effects.push("ClitSmaller")>>
<</if>>
<</if>>
<<if ($slaves[$i].voice < 3) && ($slaves[$i].voice > 0)>>
<<set _Effects.push("VoiceHigher")>>
<</if>>
<<if ($slaves[$i].vagina > -1) && ($slaves[$i].ovaries != 0) && ($slaves[$i].vaginaLube < 2)>>
<<set _Effects.push("VaginaWetter")>>
<</if>>
<<if (($slaves[$i].butt-$slaves[$i].buttImplant) < 2)>>
<<set _Effects.push("ButtBigger")>>
<</if>>
<<if (($slaves[$i].boobs-$slaves[$i].boobsImplant) < 500)>>
<<set _Effects.push("BoobsBigger")>>
<</if>>
<<if ($slaves[$i].face-$slaves[$i].faceImplant < 0) && ($slaves[$i].face <= 95)>>
<<set _Effects.push("FaceSofter")>>
<</if>>
<<if ($slaves[$i].faceShape == "masculine")>>
<<set _Effects.push("FaceSofterAndrogynous")>>
<<elseif ($slaves[$i].faceShape == "androgynous")>>
<<set _Effects.push("FaceNormal")>>
<</if>>
<<if ($slaves[$i].physicalAge < 25)>>
<<if ($slaves[$i].shoulders > -1)>>
<<set _Effects.push("ShouldersNarrower")>>
<</if>>
<<if (($slaves[$i].hips-$slaves[$i].hipsImplant) < 1)>>
<<set _Effects.push("HipsBroader")>>
<</if>>
<</if>>
<<if ($slaves[$i].muscles > 30) && ($slaves[$i].diet != "muscle building")>>
<<set _Effects.push("MusclesSofter")>>
<</if>>
<<if ($slaves[$i].nipples == "tiny")>>
<<set _Effects.push("NipplesBigger")>>
<</if>>
<<if ($slaves[$i].height > 180)>>
<<set _Effects.push("Shorter")>>
<</if>>
<<if ($slaves[$i].devotion <= 20)>>
<<set _Effects.push("Devoted")>>
<</if>>
<<if ($slaves[$i].trust <= 20)>>
<<set _Effects.push("Trusting")>>
<</if>>
<<if ($slaves[$i].attrXY < 95)>>
<<set _Effects.push("MaleAttracted")>>
<</if>>
<<if ($slaves[$i].waist > 10)>>
<<set _Effects.push("WaistNarrower")>>
<</if>>
<<elseif ($hormones > 0) && ($slaves[$i].ovaries == 0)>>
<<if ($hormoneUpgradeShrinkage == 0)>>
<<if ($slaves[$i].dick > 2)>>
<<set _Effects.push("DickShrink")>>
<</if>>
<<if ($slaves[$i].balls > 2)>>
<<set _Effects.push("BallsShrink")>>
<</if>>
<<if ($slaves[$i].clit > 1)>>
<<set _Effects.push("ClitSmaller")>>
<</if>>
<</if>>
<<if ($slaves[$i].voice < 2) && ($slaves[$i].voice > 0)>>
<<set _Effects.push("VoiceHigher")>>
<</if>>
<<if ($slaves[$i].vagina > -1) && ($slaves[$i].ovaries != 0) && ($slaves[$i].vaginaLube < 1)>>
<<set _Effects.push("VaginaWetter")>>
<</if>>
<<if (($slaves[$i].butt-$slaves[$i].buttImplant) < 2)>>
<<set _Effects.push("ButtBigger")>>
<</if>>
<<if (($slaves[$i].boobs-$slaves[$i].boobsImplant) < 300)>>
<<set _Effects.push("BoobsBigger")>>
<</if>>
<<if ($slaves[$i].face-$slaves[$i].faceImplant < 0) && ($slaves[$i].face < 40)>>
<<set _Effects.push("FaceSofter")>>
<</if>>
<<if ($slaves[$i].faceShape == "masculine")>>
<<set _Effects.push("FaceSofterAndrogynous")>>
<</if>>
<<if ($slaves[$i].physicalAge < 22)>>
<<if ($slaves[$i].shoulders > 0)>>
<<set _Effects.push("ShouldersNarrower")>>
<</if>>
<<if (($slaves[$i].hips - $slaves[$i].hipsImplant) < 0)>>
<<set _Effects.push("HipsBroader")>>
<</if>>
<</if>>
<<if ($slaves[$i].muscles > 30) && ($slaves[$i].diet != "muscle building")>>
<<set _Effects.push("MusclesSofter")>>
<</if>>
<<if ($slaves[$i].attrXY < 80)>>
<<set _Effects.push("MaleAttracted")>>
<</if>>
<<if ($slaves[$i].waist > 40)>>
<<set _Effects.push("WaistNarrower")>>
<</if>>
<<elseif ($hormones <= -2)>>
<<if ($slaves[$i].dick > 0) && ($slaves[$i].dick < 4)>>
<<set _Effects.push("DickGrow")>>
<</if>>
<<if ($slaves[$i].balls > 0) && ($slaves[$i].balls < 4)>>
<<set _Effects.push("BallsGrow")>>
<</if>>
<<if ($slaves[$i].clit < 2) && ($slaves[$i].dick == 0)>>
<<set _Effects.push("ClitBigger")>>
<</if>>
<<if ($slaves[$i].voice > 1)>>
<<set _Effects.push("VoiceLower")>>
<</if>>
<<if ($slaves[$i].vagina > -1) && ($slaves[$i].vaginaLube > 0)>>
<<set _Effects.push("VaginaDrier")>>
<</if>>
<<if ($hormoneUpgradeShrinkage == 0)>>
<<if (($slaves[$i].butt-$slaves[$i].buttImplant) > 2)>>
<<set _Effects.push("ButtSmaller")>>
<</if>>
<<if (($slaves[$i].boobs-$slaves[$i].boobsImplant) > 500)>>
<<set _Effects.push("BoobsSmaller")>>
<</if>>
<</if>>
<<if ($slaves[$i].face-$slaves[$i].faceImplant < 0) && ($slaves[$i].face > 10)>>
<<set _Effects.push("FaceHarder")>>
<</if>>
<<if ($slaves[$i].faceShape == "androgynous")>>
<<set _Effects.push("FaceMasculine")>>
<<elseif ($slaves[$i].faceShape != "masculine")>>
<<set _Effects.push("FaceHarderAndrogynous")>>
<</if>>
<<if ($slaves[$i].physicalAge < 25)>>
<<if ($slaves[$i].shoulders < 1)>>
<<set _Effects.push("ShouldersBroader")>>
<</if>>
<<if ($slaves[$i].hips > -1)>>
<<set _Effects.push("HipsNarrower")>>
<</if>>
<</if>>
<<if ($slaves[$i].muscles <= 95) && ($slaves[$i].diet != "slimming")>>
<<set _Effects.push("MusclesHarder")>>
<</if>>
<<if ($slaves[$i].nipples == "huge")>>
<<set _Effects.push("NipplesSmaller")>>
<</if>>
<<if ($slaves[$i].height < 155)>>
<<set _Effects.push("Taller")>>
<</if>>
<<if ($slaves[$i].devotion > 20)>>
<<set _Effects.push("Rebellious")>>
<</if>>
<<if ($slaves[$i].attrXY < 95)>>
<<set _Effects.push("FemaleAttracted")>>
<</if>>
<<if ($slaves[$i].waist <= 40)>>
<<set _Effects.push("WaistBroader")>>
<</if>>
<<elseif ($hormones < 0) && ($slaves[$i].balls == 0)>>
<<if ($slaves[$i].dick > 0) && ($slaves[$i].dick < 2)>>
<<set _Effects.push("DickGrow")>>
<</if>>
<<if ($slaves[$i].balls > 0) && ($slaves[$i].balls < 2)>>
<<set _Effects.push("BallsGrow")>>
<</if>>
<<if ($slaves[$i].clit < 1) && ($slaves[$i].dick == 0)>>
<<set _Effects.push("ClitBigger")>>
<</if>>
<<if ($slaves[$i].voice > 2)>>
<<set _Effects.push("VoiceLower")>>
<</if>>
<<if ($slaves[$i].vagina > -1) && ($slaves[$i].vaginaLube > 1)>>
<<set _Effects.push("VaginaDrier")>>
<</if>>
<<if ($hormoneUpgradeShrinkage == 0)>>
<<if (($slaves[$i].butt-$slaves[$i].buttImplant) > 2)>>
<<set _Effects.push("ButtSmaller")>>
<</if>>
<<if (($slaves[$i].boobs-$slaves[$i].boobsImplant) > 800)>>
<<set _Effects.push("BoobsSmaller")>>
<</if>>
<</if>>
<<if ($slaves[$i].face-$slaves[$i].faceImplant < 0) && ($slaves[$i].face > 40)>>
<<set _Effects.push("FaceHarder")>>
<</if>>
<<if ($slaves[$i].faceShape == "androgynous")>>
<<set _Effects.push("FaceMasculine")>>
<</if>>
<<if ($slaves[$i].physicalAge < 22)>>
<<if ($slaves[$i].shoulders < 0)>>
<<set _Effects.push("ShouldersBroader")>>
<</if>>
<<if ($slaves[$i].hips > 0)>>
<<set _Effects.push("HipsNarrower")>>
<</if>>
<</if>>
<<if ($slaves[$i].muscles <= 5) && ($slaves[$i].diet != "slimming")>>
<<set _Effects.push("MusclesHarder")>>
<</if>>
<<if ($slaves[$i].height < 155)>>
<<set _Effects.push("Taller")>>
<</if>>
<<if ($slaves[$i].attrXY < 80)>>
<<set _Effects.push("FemaleAttracted")>>
<</if>>
<<if ($slaves[$i].waist <= 10)>>
<<set _Effects.push("WaistBroader")>>
<</if>>
<</if>>
<<if _Effects.length < 1>>
$possessiveCap body has fully adapted to its hormones.
<<if $slaves[$i].drugs == "hormone enhancers">>
<<set $slaves[$i].drugs = "none">>
<</if>>
<<elseif (_Effects.length < random(-10,10)) && ($hormoneUpgradePower == 0)>>
$pronounCap does not experience significant hormone effects this week.
<<else>>
<<set _Effects = _Effects.random()>>
<<switch _Effects>>
<<case "DickShrink">>
Hormonal effects cause @@.orange;$possessive dick to atrophy.@@
<<set $slaves[$i].dick -= 1>>
<<case "DickGrow">>
Hormonal effects cause @@.lime;$possessive micropenis to return to a more normal size.@@
<<set $slaves[$i].dick += 1>>
<<case "BallsShrink">>
Hormonal effects cause @@.orange;$possessive testicles to atrophy.@@
<<set $slaves[$i].balls -= 1>>
<<case "BallsGrow">>
Hormonal effects cause @@.lime;$possessive balls to drop.@@
<<set $slaves[$i].balls += 1>>
<<case "VoiceHigher">>
Hormonal effects cause @@.lime;$possessive voice to become higher and more feminine.@@
<<set $slaves[$i].voice += 1>>
<<case "VoiceLower">>
Hormonal effects cause @@.orange;$possessive voice to become deeper and less feminine.@@
<<set $slaves[$i].voice -= 1>>
<<case "VaginaWetter">>
Hormonal effects cause @@.lime;$possessive vagina to produce more copious natural lubricant.@@
<<set $slaves[$i].vaginaLube += 1>>
<<case "VaginaDrier">>
Hormonal effects cause @@.orange;$possessive vagina to produce less natural lubricant.@@
<<set $slaves[$i].vaginaLube -= 1>>
<<case "ButtBigger">>
Hormonal effects cause @@.lime;the natural size of $possessive butt to increase.@@
<<set $slaves[$i].butt += 1>>
<<if $slaves[$i].weight >= -80>>
<<set $slaves[$i].weight -= 10>>
<</if>>
<<case "ButtSmaller">>
Hormonal effects cause @@.orange;the natural size of $possessive butt to decrease.@@
<<set $slaves[$i].butt -= 1>>
<<if $slaves[$i].weight < 190>>
<<set $slaves[$i].weight += 10>>
<</if>>
<<case "BoobsBigger">>
Hormonal effects cause @@.lime;the natural size of $possessive tits to increase.@@
<<set $slaves[$i].boobs += 100>>
<<if $slaves[$i].weight >= -90>>
<<set $slaves[$i].weight -= 1>>
<</if>>
<<case "BoobsSmaller">>
Hormonal effects cause @@.orange;the natural size of $possessive tits to shrink.@@
<<set $slaves[$i].boobs -= 100>>
<<if $slaves[$i].weight < 200>>
<<set $slaves[$i].weight += 1>>
<</if>>
<<case "FaceSofter">>
Hormonal effects cause @@.lime;$possessive facial structure to soften and become less unattractive.@@
<<FaceIncrease $slaves[$i] 20>>
<<case "FaceHarder">>
Hormonal effects cause @@.orange;$possessive facial structure to harden and become less attractive.@@
<<set $slaves[$i].face = Math.trunc($slaves[$i].face-20,-100,100)>>
<<case "FaceSofterAndrogynous">>
Hormonal effects cause @@.lime;$possessive face to soften into androgyny.@@
<<set $slaves[$i].faceShape = "androgynous">>
<<case "FaceHarderAndrogynous">>
Hormonal effects cause @@.orange;$possessive face to harden into androgyny.@@
<<set $slaves[$i].faceShape = "androgynous">>
<<case "FaceNormal">>
Hormonal effects cause @@.lime;$possessive face to soften into femininity.@@
<<set $slaves[$i].faceShape = "normal">>
<<case "FaceMasculine">>
Hormonal effects cause @@.orange;$possessive face to harden into masculinity.@@
<<set $slaves[$i].faceShape = "masculine">>
<<case "ClitSmaller">>
Hormonal effects cause @@.orange;$possessive clit to shrink significantly.@@
<<set $slaves[$i].clit -= 1>>
<<case "ClitBigger">>
Hormonal effects cause @@.lime;$possessive clit to grow significantly.@@
<<set $slaves[$i].clit += 1>>
<<case "ShouldersNarrower">>
$possessiveCap body has not yet found its final bone structure, which typically happens in the mid-twenties. Hormonal effects cause @@.lime;$possessive shoulders to develop into a more feminine narrowness@@ than they would have done naturally.
<<set $slaves[$i].shoulders -= 1>>
<<case "ShouldersBroader">>
$possessiveCap body has not yet found its final bone structure, which typically happens in the mid-twenties. Hormonal effects cause @@.orange;$possessive shoulders to develop more broadly@@ than they would have done naturally.
<<set $slaves[$i].shoulders += 1>>
<<case "HipsBroader">>
$possessiveCap body has not yet found its final bone structure, which typically happens in the mid-twenties. Hormonal effects cause @@.lime;$possessive hips to develop more broadly@@ than they would have done naturally.
<<set $slaves[$i].hips += 1>>
<<case "HipsNarrower">>
$possessiveCap body has not yet found its final bone structure, which typically happens in the mid-twenties. Hormonal effects cause @@.orange;$possessive hips to develop more narrowly@@ than they would have done naturally.
<<set $slaves[$i].hips -= 1>>
<<case "MusclesSofter">>
Hormonal effects @@.orange;reduce $possessive musculature.@@
<<set $slaves[$i].muscles -= 2>>
<<case "MusclesHarder">>
Hormonal effects @@.lime;build up $possessive musculature.@@
<<set $slaves[$i].muscles += 2>>
<<case "NipplesBigger">>
Hormonal effects cause $possessive tiny @@.lime;nipples to grow to a more normal size.@@
<<set $slaves[$i].nipples = "cute">>
<<case "NipplesSmaller">>
Hormonal effects cause $possessive huge @@.orange;nipples to shrink to a more reasonable size.@@
<<set $slaves[$i].nipples = "cute">>
<<case "Shorter">>
$pronounCap has not yet reached the age at which height becomes fixed. Hormonal effects cause @@.orange;$object to lose a bit of height@@ that $pronoun would naturally have maintained.
<<set $slaves[$i].height -= 1>>
<<case "Taller">>
$pronounCap has not yet reached the age at which height becomes fixed. Hormonal effects cause @@.lime;$object to gain a slight height advantage@@ that $pronoun would not naturally have reached.
<<set $slaves[$i].height += 1>>
<<case "Devoted">>
Hormonal effects make $object a bit more @@.hotpink;docile.@@
<<set $slaves[$i].devotion += 1>>
<<case "Rebellious">>
Hormonal effects @@.mediumorchid;make $object a bit less docile.@@
<<set $slaves[$i].devotion -= 1>>
<<case "Trusting">>
Hormonal effects make $object a bit more @@.mediumaquamarine;trusting.@@
<<set $slaves[$i].trust += 1>>
<<case "MaleAttracted">>
Hormonal effects cause $object to become @@.green;more attracted to men.@@
<<set $slaves[$i].attrXY += 2+$hormoneUpgradePower>>
<<case "FemaleAttracted">>
Hormonal effects cause $object to become @@.green;more attracted to women.@@
<<set $slaves[$i].attrXX += 2+$hormoneUpgradePower>>
<<case "WaistNarrower">>
Hormonal effects cause $possessive @@.green;waist to narrow.@@
<<set $slaves[$i].waist -= 2+$hormoneUpgradePower>>
<<case "WaistBroader">>
Hormonal effects cause $possessive @@.orange;waist to broaden.@@
<<set $slaves[$i].waist += 2+$hormoneUpgradePower>>
<<default>>
ERROR: bad hormone effect: _Effects
<</switch>>
<</if>>
<<if ($hormones < 0)>>
<<if ($slaves[$i].dick > 0)>>
<<if ($slaves[$i].devotion > 0)>>
<<if ($slaves[$i].career == "a Futanari Sister")>>
$pronounCap wishes $pronoun were more feminine, but isn't unhappy to be off hormones, since $pronoun likes being a stiff dicked futa.
<<elseif ($slaves[$i].fetish == "buttslut") && ($slaves[$i].fetishStrength > 60) && ($slaves[$i].fetishKnown == 1)>>
$pronounCap wishes $pronoun were more feminine, but $pronoun loves getting fucked in the butt so much that it doesn't much bother $object.
<<elseif ($slaves[$i].fetish == "sadist") && ($slaves[$i].fetishStrength > 60) && ($slaves[$i].fetishKnown == 1)>>
Life is easier for effeminate slaves, but $pronoun loves abusing other slaves so much that $pronoun likes being able to get hard.
<<elseif ($slaves[$i].fetish == "dom") && ($slaves[$i].fetishStrength > 60) && ($slaves[$i].fetishKnown == 1)>>
Life is easier for effeminate slaves, but $pronoun loves dominating other girls so much that $pronoun likes being able to get hard.
<<elseif ($slaves[$i].energy > 95)>>
$pronounCap wishes $pronoun were more feminine, but $pronoun loves getting fucked like a good little sex slave so much that $pronoun doesn't think about it much.
<<elseif ($slaves[$i].devotion <= 20)>>
Life is easier for effeminate slaves, so @@.mediumorchid;$pronoun's a little unhappy@@ that $pronoun isn't getting hormones to make $object more feminine.
<<set $slaves[$i].devotion -= 2>>
<<elseif ($slaves[$i].devotion <= 50)>>
$pronounCap wants to be a good slave girl, so @@.mediumorchid;$pronoun's a little unhappy@@ that $pronoun isn't getting hormones to make $object look more feminine.
<<set $slaves[$i].devotion -= 2>>
<<else>>
$pronounCap wishes $pronoun were more feminine, but $pronoun accepts your judgment in not giving $object hormones to make that happen.
<</if>>
<</if>>
<</if>>
<</if>>
<<if Math.abs($slaves[$i].hormones) > 1>>
<<set $slaves[$i].chem += 0.5>>
<</if>>
|
AshVaris/fc
|
devNotes/legacy files/saHormoneEffects (old).txt
|
Text
|
mit
| 17,649 |
Most writing is basically just plain text with branches for different cases.
Important cases to remember:
-Does the slave have a dick/vagina/tits?
-Does the PC have a dick/tits/vagina?
-If the slave has a dick and you plan to use it, can they get erect on their own?
-Is the PC pregnant?
-Is the slave mindbroken?
-Is the slave blind?
-Is the slave pregnant?
-If you penetrate an orifice, is the slave a virgin in that orifice?
-Can the slave move (i.e. is the slave amputated and/or have massive tits and/or a massive dick)?
-Does the slave like/hate trust/fear you?
-Does the slave have fetishes or personality/sexual quirks/flaws that would impact how they react?
It's important to handle every RELEVANT variation of the above cases. Depending on what you're writing, other cases may also warrant consideration; e.g. a breast-play scene will probably need to account for breast size and lactation a lot more than a generic fuck scene. If a scene only applies to a specific type of slave, you can restrict the cases you account for to the ones that are only possible for that type of slave.
There are, broadly speaking, two main ways to do this:
1. Write the same big block of text and then copy/paste it into each relevant case, and tweak the wording slightly.
++Less thinking required
--LOTS of duplicate text; if you need to change something later, you have to change it in many places
2. Decompose the scene into smaller segments or sections that can each be swapped out for the slave type in question.
++MUCH easier maintenance
--Have to figure out how to phrase the scene in a way that can be broken down into discrete chunks
You can also combine the two cases. For example, you may want a complex, interleaved set of <<if>> conditions for the common cases, and then have big blobs for the corner cases that are hard to handle.
It can also be easier if you split the scene into a "prep", "main", and "finish" section (these would all be the same writing block, just 2-3 <<if>> chains in sequence); that way, you could, for example, take all the various possible cases that aren't really unique, and narrate them so that, in the main section, you don't have to do so much explanatory writing for the scene to make sense overall. Then, if necessary, wrap up with the finish section. (See src/pregmod/fSlaveSelfImpreg.tw for an example of this approach)
All the variables for you and the slave are, generally, held in the variables $PC and $activeSlave, respectively. When the PC and the slave have the same attributes, they usually have the same name, but exactly what they do and mean can vary a little bit. RTFM for details. To access a specific variable, you do $var.attribName, so e.g. pregnancy is checked by $activeSlave.preg or $PC.preg. In rarer cases, you'll be dealing with an indexed entry in the $slaves array; if that's the case, you'd use $slaves[_u] or $slaves[$i] (or whatever) instead of $activeSlave. If a second (or third?) slave is present, it will be stored in another variable, the name of which will depend on the scene; for example, when impregnating a slave with another slave, the sperm donor is in $impregnatrix
Conditions are usually checked by
<<if CONDITION>>
SHOW THIS TEXT
<<elseif CONDITION2>>
SHOW THIS TEXT INSTEAD
<<else>>
IF NEITHER CONDITION IS MET, SHOW THIS
<</if>>
Conditions are usually comparative (i.e. $a < $b or $b == 5 or $c != $d.e) and can be chained together with && (and) or || (or) and grouped with parens () - for example:
<<if($a > 1 || ($b == 2 && $c != $a))>>
lets you check that either variable A is greater than one, or both B equals two and C is not equal to A.
There are also a few misc functions that let you check things like whether a slave can get pregnant or whether two slaves are mutually fertile
Variable names are interpolated straight into the text, so if you have a slave named "Beth" then the text
"You fuck $activeSlave.slaveName" becomes "You fuck Beth"
You can also explicitly print a variable by doing <<print _varName>> (for temp variables) or <<print $varName>> (for global variables) which can be useful in various situations; it also lets you print the output of code expressions, like <<print $someNumericVar * 10>>.
If you want to change a variable, you do something like
<<set $activeSlave.devotion += 5>>
Which would, in this case, give a devotion increase of 5.
Colour is changed with YOUR @@.colorname;COLORED TEXT@@ HERE
So a random (really stupid) example might be:
<<if $activeSlave.fetish == 'mindbroken'>>
Special big block of mindbroken text here.
<<elseif $activeSlave.amp == 1>>
Special big block of amputee text here.
<<if $PC.dick > 0>>
<<set _wasVirgin = ''>>
<<if $activeSlave.vagina > -1>>
<<set _orifice = 'vagina'>>
<<if $activeSlave.vagina == 0>>
<<set _wasVirgin = 'vaginal'>>
<</if>>
<<else>>
<<set _orifice = 'ass'>>
<<if $activeSlave.anus == 0>>
<<set _wasVirgin = "anal">>
<</if>>
<</if>>
You fuck $activeSlave.slaveName's _orifice.
<<if _wasVirgin != ''>>
<<if $activeSlave.devotion > 50>>
She @@.hotpink;loves@@ losing her <<print _wasVirgin>> virginity to you.
<<set $activeSlave.devotion += 5>>
<<else>>
She @@.mediumorchid;@@dislikes losing her <<print _wasVirgin>> virginity to you.
<<set $activeSlave.devotion -= 5>>
<</if>>
<</if>>
<<elseif $PC.vagina > 0 && $activeSlave.dick > 0>>
$activeSlave.slaveName
<<if $activeSlave.devotion > 50>>
@@.hotpink;lovingly penetrates@@
<<set $activeSlave.devotion += 5>>
<<else>>
indifferently hammers
<</if>>
your pussy.
<<elseif $activeSlave.vagina > -1>>
Lesbian sex here.
<<else>>
ERROR - PC doesn't have dick or vagina?
<</if>>
If you need to set a temp variable, prefix it with _ instead of $. This way, you don't go cluttering up the world with variables that only matter inside your little writing segment.
You can "hot-test" stuff by text editing your HTML copy of FC, but it's a little more tedious because you have to "escape" double quotes, <, >, and & with " , < > and & respectively.
Some hints:
1. Write your logic first, so you don't forget to close tags. In other words, it's better to do
<<if $cond>
TODO
<<else>>
TODO
<</if>>
And then fill it in later than it is to end up with a situation where you have a dozen unclosed tags and you can't remember where they are or what they do.
2. For very simple stuff, it's fine to "inline" your stuff. For example, when penetrating a slave, doing "you fuck her <<if $activeSlave.vagina > -1>>pussy<<else>>ass<</if>>" to show "pussy" or "ass" as necessary. However, if you need to do the same comparison a bunch of times, do something like
<<if $activeSlave.vagina > -1>>
<<set _targetOrifice = "vagina">>
<<else>>
<<set _targetOrifice = "asshole">>
<</if>
And then, when you need it, do "you fuck her _targetOrifice" in sixteen different places without having the pain in the ass of copy/pasting the same if/else clause every time.
3. INDENT YOUR LOGIC. USE TABS. I'm serious. Don't question me. It will make EVERYONE hate you, when they have to deal with your code, if it's not indented properly.
This is much easier to read:
<<if $cond1>>
<<if $cond2>>
whatever
<<elseif $cond3>>
whatever
<<elseif $cond4>>
<<if $cond5>>
whatever
<<else>>
<<if $cond6>>
whatever
<</if>>
<</if>>
<<else>>
whatever
<<if $cond7>>
<<if $cond8>>
whatever
</if>
</if>>
<</if>>
<</if>>
than this:
<<if $cond1>>
<<if $cond2>>
whatever
<<elseif $cond3>>
whatever
<<elseif $cond4>>
<<if $cond5>>
whatever
<<else>>
<<if $cond6>>
whatever
<</if>>
<</if>>
<<else>>
whatever
<<if $cond7>>
<<if $cond8>>
whatever
</if>
</if>>
<</if>>
<</if>>
4. Proof-read your shit before posting it. Spell-check wouldn't hurt.
|
AshVaris/fc
|
devNotes/scene-guide.txt
|
Text
|
mit
| 7,742 |
search for /* look here for changes */ in the header backup.
,[{key:"_serialize",value:function(e)
return Object.freeze(Object.defineProperties({},{init:{value:e},create:{value:t}}))}()),SimpleStore.adapters.
/* look here for changes */{return JSON.stringify(e)}},{key:"_deserialize",value:function(e){return JSON.parse((!e || e[0]=="{")?e:LZString.decompressFromUTF16(e))}}]),e}();/* changes end here */
|
AshVaris/fc
|
devNotes/sugarcube stuff/important for updating sugarcube.txt
|
Text
|
mit
| 411 |
#!/bin/sh Requires MEGAcmd, git, mv, cd, mkidr, echo
COUNTER=0 LocalDir=~/fc-pregmod/ RemoteDir=FC-GIT [email protected] P=13245 && mega-login $U $P
while [ $COUNTER -ge 0 ]; do
if [ $COUNTER -eq 0 ]; then mega-login $U $P && mega-mkdir $RemoteDir && mega-export -a $RemoteDir && mkdir $LocalDir ; git clone -q https://gitgud.io/pregmodfan/fc-pregmod.git $LocalDir
fi
cd $LocalDir/ && AbrevHash=`git log --reverse -n1 --abbrev-commit |grep -m1 commit | sed 's/commit //'`
if [ $COUNTER -eq 0 ]; then ./compile > /dev/null && mv bin/FC_pregmod.html "bin/FC-pregmod-$(git log -1 --format='%cd' --date='format:%F-%H-%M')-$AbrevHash.html" && mega-put bin/*.html $RemoteDir
else if [ "$(git pull)" == "Already up to date." ]; then ehco -n ""
else clear && rm bin/*.html ; ./compile > /dev/null && mv bin/FC_pregmod.html "bin/FC-pregmod-$(git log -1 --format='%cd' --date='format:%F-%H-%M')-$AbrevHash.html" && mega-login $U $P && mega-put bin/*.html $RemoteDir
fi
fi
let COUNTER=COUNTER+1 && mega-logout > /dev/null && sleep 300s
done
|
AshVaris/fc
|
devTools/AutoGitVersionUploadBackground.sh
|
Shell
|
mit
| 1,042 |
#!/bin/sh Requires MEGAcmd, git, mv, cd, mkidr, echo
COUNTER=0 LocalDir=~/fc-pregmod/ RemoteDir=FC-GIT [email protected] P=13245 && mega-login $U $P
while [ $COUNTER -ge 0 ]; do
if [ $COUNTER -eq 0 ]; then mega-login $U $P && mega-mkdir $RemoteDir ; mega-export -a $RemoteDir ; mkdir $LocalDir ; git clone -q https://gitgud.io/pregmodfan/fc-pregmod.git $LocalDir
fi
cd $LocalDir/ && AbrevHash=`git log -n1 --reverse --abbrev-commit |grep -m1 commit | sed 's/commit //'`
if [ $COUNTER -eq 0 ]; then echo "First run. Compliling, formatting and placing .html." && ./compile > /dev/null && mv bin/FC_pregmod.html "bin/FC-pregmod-$(git log -1 --format='%cd' --date='format:%F-%H-%M')-$AbrevHash.html" && mega-put bin/*.html $RemoteDir && echo "Inital compiled .html placed."
else if [ "$(git pull)" == "Already up to date." ]; then echo "No updated files."
else echo "Compliling, formatting and placing updated .html." ; rm bin/*.html ; ./compile > /dev/null && mv bin/FC_pregmod.html "bin/FC-pregmod-$(git log -1 --format='%cd' --date='format:%F-%H-%M')-$AbrevHash.html" && mega-login $U $P && mega-put bin/*.html $RemoteDir ; echo "Updated .html placed."
fi
fi
let COUNTER=COUNTER+1 && mega-logout > /dev/null && sleep 300s
done
|
AshVaris/fc
|
devTools/AutoGitVersionUploadForground.sh
|
Shell
|
mit
| 1,238 |
#!/bin/sh
# setup:
# add this to crontab:
# */15 * * * * cd ~/FC/fc-pregmod && git pull --ff-only origin pregmod-master > ~/FC/git_pull.log 2>&1
# and do "ln -s ~/FC/fc-pregmod/devTools/BuildAndIPFSify.sh .git/hooks/post-merge"
# NOTE: you may need to define XDG_RUNTIME_DIR in your crontab
# TODO: add logic to figure out if we should use ipfs-cluster instead of using the local instance directly.
# if we use ipfs-cluster we probably don't need to warm ipfs.io's cache.
rm bin/*.html
# if this script is used as the post-merge hook then
# a) git pull has pulled something
# b) $PWD is fc-pregmod
if [ "$(basename "$0")" != "post-merge" ]; then
# cd to fc-pregmod based on where this script is
cd "$(readlink -f "$(dirname "$0")")/.." || exit 1
git pull
# if there are new html files then git probably pulled something and ran this script as a post-merge hook
if ls bin/*.html; then
exit 0
fi
fi
# If we've done this before then unpin the previous hash so IPFS can GC it if it needs to
if [ -r ../IPFS_hash.txt ]; then
ipfs pin rm --recursive=true "$(cut -d : -f 2 ../IPFS_hash.txt | tr -d ' ')"
fi
./compile || exit 1
# Keep the build time from changing the hash of the file
sed -Ei -e '/^ \* Built on .+$/d' bin/*.html
# add the date of the last commit to the file, but don't use colons because Windows (still?) doesn't like them
mv bin/*.html "bin/FC pregmod $(git log -1 --format='%cd' --date='format:%F %H-%M').html"
# include the unembedded vector art
ipfs_hash="$(ipfs add -w -Q -r bin/*.html resources)"
echo "IPFS Folder Hash: ${ipfs_hash}" > ../IPFS_hash.txt
ipfs name publish "$ipfs_hash"
# when it's done it will print something like "Published to $your_pubkey: /ipfs/$ipfs_hash"
# You can view the folder at http://127.0.0.1:8080/ipns/$your_pubkey
# make ipfs.io cache the files
# $XDG_RUNTIME_DIR SHOULD be defined, but there are cases where it wouldn't be
if [ -z "${XDG_RUNTIME_DIR+x}" ]; then
echo "\$XDG_RUNTIME_DIR is unset, bailing"
exit 2
fi
# throw it into a file so we can loop over lines, not "strings delimited by whitespace"
find resources bin -print | grep -ve '.gitignore' | sed -e 's|bin/||' | grep -Ee '.+\.svg' -e '.html' > "${XDG_RUNTIME_DIR}/files.list"
# ipfs PeerID, it's user specific
PeerID="$(ipfs config show | grep -e 'PeerID' | cut -d: -f 2 | tr -d ' "')"
while IFS= read -r item
do
echo "https://ipfs.io/ipns/${PeerID}/${item}"
done < "${XDG_RUNTIME_DIR}/files.list" | xargs --max-procs=10 --max-args=1 --replace curl --silent --show-error --range 0-499 --output /dev/null '{}'
rm "${XDG_RUNTIME_DIR}/files.list"
|
AshVaris/fc
|
devTools/BuildAndIPFSify.sh
|
Shell
|
mit
| 2,585 |
#!/usr/bin/env python3
import fileinput
import re
import sys
WARNING = '\033[93m'
ENDC = '\033[0m'
def myprint(*args):
print(WARNING, filename + ":", ENDC,*args)
def yield_line_and_islastline(f):
global filename
global linenumber
try:
prevline = next(f)
filename = fileinput.filename()
linenumber = fileinput.filelineno()
except StopIteration:
return
for line in f:
yield (prevline, f.isfirstline())
filename = fileinput.filename()
linenumber = fileinput.filelineno()
prevline = line
yield prevline, True
pattern = re.compile(r'(<<(\/?) *(if|for|else|switch|case|replace|link)[^<>]*)')
tagfound = []
try:
for line, isLastLine in yield_line_and_islastline(fileinput.input()):
for (whole,end,tag) in re.findall(pattern,line):
if tag == "else" or tag == 'case':
if len(tagfound) == 0:
myprint("Found", tag, "but with no opening tag:")
myprint(" ", linenumber,":", whole)
fileinput.nextfile()
lasttag = tagfound[-1]
if (tag == "else" and lasttag["tag"] != "if") or (tag == "case" and lasttag["tag"] != "switch"):
myprint("Mismatched else: Opening tag was:")
myprint(" ",lasttag["linenumber"],":", lasttag["whole"])
myprint("But this tag was:")
myprint(" ",linenumber,":", whole)
fileinput.nextfile()
break
elif end != '/':
tagfound.append({"whole": whole, "linenumber":linenumber,"tag":tag})
else:
if len(tagfound) == 0:
myprint("Found closing tag but with no opening tag:")
myprint(" ", linenumber,":", whole)
fileinput.nextfile()
break
lasttag = tagfound.pop()
if lasttag["tag"] != tag:
myprint("Mismatched tag: Opening tag was:")
myprint(" ",lasttag["linenumber"],":", lasttag["whole"])
myprint("Closing tag was:")
myprint(" ",linenumber,":", whole)
fileinput.nextfile()
break
if isLastLine:
if len(tagfound) != 0:
myprint("End of file found but", len(tagfound), ("tag hasn't" if len(tagfound)==1 else "tags haven't"), "been closed:")
for tag in tagfound:
myprint(" ", tag["linenumber"],":", tag["whole"])
tagfound = []
except UnicodeDecodeError as e:
myprint(e)
print(" Hint: In linux, you can get more details about unicode errors by running:")
print(" isutf8", filename)
|
AshVaris/fc
|
devTools/check.py
|
Python
|
mit
| 2,817 |
s/\babandonned\b/abandoned/g
s/\baberation\b/aberration/g
s/\babilityes\b/abilities/g
s/\babilties\b/abilities/g
s/\babilty\b/ability/g
s/\babondon\b/abandon/g
s/\babbout\b/about/g
s/\babotu\b/about/g
s/\babouta\b/about a/g
s/\baboutit\b/about it/g
s/\baboutthe\b/about the/g
s/\babscence\b/absence/g
s/\babondoned\b/abandoned/g
s/\babondoning\b/abandoning/g
s/\babondons\b/abandons/g
s/\baborigene\b/aborigine/g
s/\baccesories\b/accessories/g
s/\baccidant\b/accident/g
s/\babortificant\b/abortifacient/g
s/\babreviate\b/abbreviate/g
s/\babreviated\b/abbreviated/g
s/\babreviation\b/abbreviation/g
s/\babritrary\b/arbitrary/g
s/\babsail\b/abseil/g
s/\babsailing\b/abseiling/g
s/\babsense\b/absence/g
s/\babsolutly\b/absolutely/g
s/\babsorbsion\b/absorption/g
s/\babsorbtion\b/absorption/g
s/\babudance\b/abundance/g
s/\babundacies\b/abundances/g
s/\babundancies\b/abundances/g
s/\babundunt\b/abundant/g
s/\babutts\b/abuts/g
s/\bacadamy\b/academy/g
s/\bacadmic\b/academic/g
s/\baccademic\b/academic/g
s/\baccademy\b/academy/g
s/\bacccused\b/accused/g
s/\baccelleration\b/acceleration/g
s/\bacceptence\b/acceptance/g
s/\bacceptible\b/acceptable/g
s/\baccessable\b/accessible/g
s/\bacident\b/accident/g
s/\baccidentaly\b/accidentally/g
s/\baccidently\b/accidentally/g
s/\bacclimitization\b/acclimatization/g
s/\baccomadate\b/accommodate/g
s/\baccomadated\b/accommodated/g
s/\baccomadates\b/accommodates/g
s/\baccomadating\b/accommodating/g
s/\baccomadation\b/accommodation/g
s/\baccomadations\b/accommodations/g
s/\baccomdate\b/accommodate/g
s/\baccomodate\b/accommodate/g
s/\baccomodated\b/accommodated/g
s/\baccomodates\b/accommodates/g
s/\baccomodating\b/accommodating/g
s/\baccomodation\b/accommodation/g
s/\baccomodations\b/accommodations/g
s/\baccompanyed\b/accompanied/g
s/\baccordeon\b/accordion/g
s/\baccordian\b/accordion/g
s/\baccoring\b/according/g
s/\baccoustic\b/acoustic/g
s/\baccquainted\b/acquainted/g
s/\baccrediation\b/accreditation/g
s/\baccredidation\b/accreditation/g
s/\baccross\b/across/g
s/\baccussed\b/accused/g
s/\bacedemic\b/academic/g
s/\bacheive\b/achieve/g
s/\bacheived\b/achieved/g
s/\bacheivement\b/achievement/g
s/\bacheivements\b/achievements/g
s/\bacheives\b/achieves/g
s/\bacheiving\b/achieving/g
s/\bacheivment\b/achievement/g
s/\bacheivments\b/achievements/g
s/\bachievment\b/achievement/g
s/\bachievments\b/achievements/g
s/\bachivement\b/achievement/g
s/\bachivements\b/achievements/g
s/\backnowldeged\b/acknowledged/g
s/\backnowledgeing\b/acknowledging/g
s/\bacommodate\b/accommodate/g
s/\bacomplish\b/accomplish/g
s/\bacomplished\b/accomplished/g
s/\bacomplishment\b/accomplishment/g
s/\bacomplishments\b/accomplishments/g
s/\bacording\b/according/g
s/\bacordingly\b/accordingly/g
s/\bacquaintence\b/acquaintance/g
s/\bacquaintences\b/acquaintances/g
s/\bacquiantence\b/acquaintance/g
s/\bacquiantences\b/acquaintances/g
s/\bacquited\b/acquitted/g
s/\bactivites\b/activities/g
s/\bactivly\b/actively/g
s/\bactualy\b/actually/g
s/\bacuracy\b/accuracy/g
s/\bacused\b/accused/g
s/\bacustom\b/accustom/g
s/\bacustommed\b/accustomed/g
s/\badavanced\b/advanced/g
s/\badbandon\b/abandon/g
s/\baddional\b/additional/g
s/\baddionally\b/additionally/g
s/\badditinally\b/additionally/g
s/\badditionaly\b/additionally/g
s/\badditonal\b/additional/g
s/\badditonally\b/additionally/g
s/\baddmission\b/admission/g
s/\baddopt\b/adopt/g
s/\baddopted\b/adopted/g
s/\baddoptive\b/adoptive/g
s/\baddresable\b/addressable/g
s/\baddresed\b/addressed/g
s/\baddresing\b/addressing/g
s/\baddressess\b/addresses/g
s/\baddtion\b/addition/g
s/\baddtional\b/additional/g
s/\badecuate\b/adequate/g
s/\badequit\b/adequate/g
s/\badhearing\b/adhering/g
s/\badherance\b/adherence/g
s/\badmendment\b/amendment/g
s/\badmininistrative\b/administrative/g
s/\badminstered\b/administered/g
s/\badminstrate\b/administrate/g
s/\badminstration\b/administration/g
s/\badminstrative\b/administrative/g
s/\badminstrator\b/administrator/g
s/\badmissability\b/admissibility/g
s/\badmissable\b/admissible/g
s/\badmited\b/admitted/g
s/\badmitedly\b/admittedly/g
s/\badn\b/and/g
s/\badolecent\b/adolescent/g
s/\badquire\b/acquire/g
s/\badquired\b/acquired/g
s/\badquires\b/acquires/g
s/\badquiring\b/acquiring/g
s/\badres\b/address/g
s/\badresable\b/addressable/g
s/\badresing\b/addressing/g
s/\badress\b/address/g
s/\badressable\b/addressable/g
s/\badressed\b/addressed/g
s/\badventrous\b/adventurous/g
s/\badvertisment\b/advertisement/g
s/\badvertisments\b/advertisements/g
s/\badvesary\b/adversary/g
s/\badviced\b/advised/g
s/\baeriel\b/aerial/g
s/\baeriels\b/aerials/g
s/\bafair\b/affair/g
s/\bafficianados\b/aficionados/g
s/\bafficionado\b/aficionado/g
s/\bafficionados\b/aficionados/g
s/\baffilate\b/affiliate/g
s/\baffilliate\b/affiliate/g
s/\baforememtioned\b/aforementioned/g
s/\bagainnst\b/against/g
s/\bagains\b/against/g
s/\bagaisnt\b/against/g
s/\baganist\b/against/g
s/\baggaravates\b/aggravates/g
s/\baggreed\b/agreed/g
s/\baggreement\b/agreement/g
s/\baggregious\b/egregious/g
s/\baggresive\b/aggressive/g
s/\bagian\b/again/g
s/\bagianst\b/against/g
s/\bagin\b/again/g
s/\baginst\b/against/g
s/\bagravate\b/aggravate/g
s/\bagre\b/agree/g
s/\bagred\b/agreed/g
s/\bagreeement\b/agreement/g
s/\bagreemnt\b/agreement/g
s/\bagregate\b/aggregate/g
s/\bagregates\b/aggregates/g
s/\bagreing\b/agreeing/g
s/\bagression\b/aggression/g
s/\bagressive\b/aggressive/g
s/\bagressively\b/aggressively/g
s/\bagressor\b/aggressor/g
s/\bagricultue\b/agriculture/g
s/\bagriculure\b/agriculture/g
s/\bagricuture\b/agriculture/g
s/\bagrieved\b/aggrieved/g
s/\bahev\b/have/g
s/\bahppen\b/happen/g
s/\bahve\b/have/g
s/\baicraft\b/aircraft/g
s/\baiport\b/airport/g
s/\bairbourne\b/airborne/g
s/\baircaft\b/aircraft/g
s/\baircrafts\b/aircraft/g
s/\baircrafts'\b/aircraft's/g
s/\bairporta\b/airports/g
s/\bairrcraft\b/aircraft/g
s/\baisian\b/asian/g
s/\balbiet\b/albeit/g
s/\balchohol\b/alcohol/g
s/\balchoholic\b/alcoholic/g
s/\balchol\b/alcohol/g
s/\balcholic\b/alcoholic/g
s/\balcohal\b/alcohol/g
s/\balcoholical\b/alcoholic/g
s/\baledge\b/allege/g
s/\baledged\b/alleged/g
s/\baledges\b/alleges/g
s/\balege\b/allege/g
s/\baleged\b/alleged/g
s/\balegience\b/allegiance/g
s/\balgebraical\b/algebraic/g
s/\balgorhitms\b/algorithms/g
s/\balgoritm\b/algorithm/g
s/\balgoritms\b/algorithms/g
s/\balientating\b/alienating/g
s/\balledge\b/allege/g
s/\balledged\b/alleged/g
s/\balledgedly\b/allegedly/g
s/\balledges\b/alleges/g
s/\ballegedely\b/allegedly/g
s/\ballegedy\b/allegedly/g
s/\ballegely\b/allegedly/g
s/\ballegence\b/allegiance/g
s/\ballegience\b/allegiance/g
s/\ballign\b/align/g
s/\balligned\b/aligned/g
s/\balliviate\b/alleviate/g
s/\ballopone\b/allophone/g
s/\ballopones\b/allophones/g
s/\ballready\b/already/g
s/\ballthough\b/although/g
s/\balltime\b/all-time/g
s/\balltogether\b/altogether/g
s/\balmsot\b/almost/g
s/\balochol\b/alcohol/g
s/\balomst\b/almost/g
s/\balotted\b/allotted/g
s/\balowed\b/allowed/g
s/\balowing\b/allowing/g
s/\balreayd\b/already/g
s/\balse\b/else/g
s/\balsot\b/also/g
s/\balternitives\b/alternatives/g
s/\balthought\b/although/g
s/\baltough\b/although/g
s/\balwasy\b/always/g
s/\balwyas\b/always/g
s/\bamalgomated\b/amalgamated/g
s/\bamatuer\b/amateur/g
s/\bamendmant\b/amendment/g
s/\bAmercia\b/America/g
s/\bamerliorate\b/ameliorate/g
s/\bamke\b/make/g
s/\bamking\b/making/g
s/\bammend\b/amend/g
s/\bammended\b/amended/g
s/\bammendment\b/amendment/g
s/\bammendments\b/amendments/g
s/\bammount\b/amount/g
s/\bammused\b/amused/g
s/\bamoung\b/among/g
s/\bamoungst\b/amongst/g
s/\bamung\b/among/g
s/\bamunition\b/ammunition/g
s/\banalagous\b/analogous/g
s/\banalitic\b/analytic/g
s/\banalogeous\b/analogous/g
s/\banarchim\b/anarchism/g
s/\banarchistm\b/anarchism/g
s/\banbd\b/and/g
s/\bancestory\b/ancestry/g
s/\bancilliary\b/ancillary/g
s/\bandd\b/and/g
s/\bandrogenous\b/androgynous/g
s/\bandrogeny\b/androgyny/g
s/\banihilation\b/annihilation/g
s/\baniversary\b/anniversary/g
s/\bannoint\b/anoint/g
s/\bannointed\b/anointed/g
s/\bannointing\b/anointing/g
s/\bannoints\b/anoints/g
s/\bannouced\b/announced/g
s/\bannualy\b/annually/g
s/\bannuled\b/annulled/g
s/\banohter\b/another/g
s/\banomolies\b/anomalies/g
s/\banomolous\b/anomalous/g
s/\banomoly\b/anomaly/g
s/\banonimity\b/anonymity/g
s/\banounced\b/announced/g
s/\banouncement\b/announcement/g
s/\bansalisation\b/nasalisation/g
s/\bansalization\b/nasalization/g
s/\bansestors\b/ancestors/g
s/\bantartic\b/antarctic/g
s/\banthromorphization\b/anthropomorphization/g
s/\banthropolgist\b/anthropologist/g
s/\banthropolgy\b/anthropology/g
s/\bantiapartheid\b/anti-apartheid/g
s/\banual\b/annual/g
s/\banulled\b/annulled/g
s/\banwsered\b/answered/g
s/\banyhwere\b/anywhere/g
s/\banyother\b/any other/g
s/\banytying\b/anything/g
s/\baparent\b/apparent/g
s/\baparment\b/apartment/g
s/\baplication\b/application/g
s/\baplied\b/applied/g
s/\bapolegetics\b/apologetics/g
s/\bapparant\b/apparent/g
s/\bapparantly\b/apparently/g
s/\bappart\b/apart/g
s/\bappartment\b/apartment/g
s/\bappartments\b/apartments/g
s/\bappeareance\b/appearance/g
s/\bappearence\b/appearance/g
s/\bappearences\b/appearances/g
s/\bapperance\b/appearance/g
s/\bapperances\b/appearances/g
s/\bappereance\b/appearance/g
s/\bappereances\b/appearances/g
s/\bapplicaiton\b/application/g
s/\bapplicaitons\b/applications/g
s/\bappologies\b/apologies/g
s/\bappology\b/apology/g
s/\bapprearance\b/appearance/g
s/\bapprieciate\b/appreciate/g
s/\bapproachs\b/approaches/g
s/\bappropiate\b/appropriate/g
s/\bappropraite\b/appropriate/g
s/\bappropropiate\b/appropriate/g
s/\bapproproximate\b/approximate/g
s/\bapproxamately\b/approximately/g
s/\bapproxiately\b/approximately/g
s/\bapproximitely\b/approximately/g
s/\baprehensive\b/apprehensive/g
s/\bapropriate\b/appropriate/g
s/\baproval\b/approval/g
s/\baproximate\b/approximate/g
s/\baproximately\b/approximately/g
s/\baquaduct\b/aqueduct/g
s/\baquaintance\b/acquaintance/g
s/\baquainted\b/acquainted/g
s/\baquiantance\b/acquaintance/g
s/\baquire\b/acquire/g
s/\baquired\b/acquired/g
s/\baquiring\b/acquiring/g
s/\baquisition\b/acquisition/g
s/\baquitted\b/acquitted/g
s/\baranged\b/arranged/g
s/\barangement\b/arrangement/g
s/\barbitarily\b/arbitrarily/g
s/\barbitary\b/arbitrary/g
s/\barchaelogical\b/archaeological/g
s/\barchaelogists\b/archaeologists/g
s/\barchaelogy\b/archaeology/g
s/\barchetect\b/architect/g
s/\barchetects\b/architects/g
s/\barchetectural\b/architectural/g
s/\barchetecturally\b/architecturally/g
s/\barchetecture\b/architecture/g
s/\barchiac\b/archaic/g
s/\barchictect\b/architect/g
s/\barchimedian\b/archimedean/g
s/\barchitecht\b/architect/g
s/\barchitechturally\b/architecturally/g
s/\barchitechture\b/architecture/g
s/\barchitechtures\b/architectures/g
s/\barchitectual\b/architectural/g
s/\barchtype\b/archetype/g
s/\barchtypes\b/archetypes/g
s/\baready\b/already/g
s/\bareodynamics\b/aerodynamics/g
s/\bargubly\b/arguably/g
s/\barguement\b/argument/g
s/\barguements\b/arguments/g
s/\barised\b/arose/g
s/\barival\b/arrival/g
s/\barmamant\b/armament/g
s/\barmistace\b/armistice/g
s/\barogant\b/arrogant/g
s/\barogent\b/arrogant/g
s/\baroud\b/around/g
s/\barrangment\b/arrangement/g
s/\barrangments\b/arrangements/g
s/\barrengement\b/arrangement/g
s/\barrengements\b/arrangements/g
s/\barround\b/around/g
s/\bartcile\b/article/g
s/\bartical\b/article/g
s/\bartice\b/article/g
s/\barticel\b/article/g
s/\bartifical\b/artificial/g
s/\bartifically\b/artificially/g
s/\bartillary\b/artillery/g
s/\barund\b/around/g
s/\basetic\b/ascetic/g
s/\basfar\b/as far/g
s/\basign\b/assign/g
s/\baslo\b/also/g
s/\basociated\b/associated/g
s/\basorbed\b/absorbed/g
s/\basphyxation\b/asphyxiation/g
s/\bassasin\b/assassin/g
s/\bassasinate\b/assassinate/g
s/\bassasinated\b/assassinated/g
s/\bassasinates\b/assassinates/g
s/\bassasination\b/assassination/g
s/\bassasinations\b/assassinations/g
s/\bassasined\b/assassinated/g
s/\bassasins\b/assassins/g
s/\bassassintation\b/assassination/g
s/\bassemple\b/assemble/g
s/\bassertation\b/assertion/g
s/\basside\b/aside/g
s/\bassisnate\b/assassinate/g
s/\bassit\b/assist/g
s/\bassitant\b/assistant/g
s/\bassocation\b/association/g
s/\bassoicate\b/associate/g
s/\bassoicated\b/associated/g
s/\bassoicates\b/associates/g
s/\bassosication\b/assassination/g
s/\basssassans\b/assassins/g
s/\bassualt\b/assault/g
s/\bassualted\b/assaulted/g
s/\bassymetric\b/asymmetric/g
s/\bassymetrical\b/asymmetrical/g
s/\basteriod\b/asteroid/g
s/\basthetic\b/aesthetic/g
s/\basthetical\b/aesthetical/g
s/\basthetically\b/aesthetically/g
s/\basume\b/assume/g
s/\baswell\b/as well/g
s/\batain\b/attain/g
s/\batempting\b/attempting/g
s/\batheistical\b/atheistic/g
s/\bathenean\b/athenian/g
s/\batheneans\b/athenians/g
s/\bathiesm\b/atheism/g
s/\bathiest\b/atheist/g
s/\batorney\b/attorney/g
s/\batribute\b/attribute/g
s/\batributed\b/attributed/g
s/\batributes\b/attributes/g
s/\battemp\b/attempt/g
s/\battemped\b/attempted/g
s/\battemt\b/attempt/g
s/\battemted\b/attempted/g
s/\battemting\b/attempting/g
s/\battemts\b/attempts/g
s/\battendence\b/attendance/g
s/\battendent\b/attendant/g
s/\battendents\b/attendants/g
s/\battened\b/attended/g
s/\battension\b/attention/g
s/\battitide\b/attitude/g
s/\battributred\b/attributed/g
s/\battrocities\b/atrocities/g
s/\baudeince\b/audience/g
s/\bauromated\b/automated/g
s/\baustrailia\b/Australia/g
s/\baustrailian\b/Australian/g
s/\bauther\b/author/g
s/\bauthobiographic\b/autobiographic/g
s/\bauthobiography\b/autobiography/g
s/\bauthorative\b/authoritative/g
s/\bauthorites\b/authorities/g
s/\bauthorithy\b/authority/g
s/\bauthoritiers\b/authorities/g
s/\bauthoritive\b/authoritative/g
s/\bauthrorities\b/authorities/g
s/\bautochtonous\b/autochthonous/g
s/\bautoctonous\b/autochthonous/g
s/\bautomaticly\b/automatically/g
s/\bautomibile\b/automobile/g
s/\bautomonomous\b/autonomous/g
s/\bautor\b/author/g
s/\bautority\b/authority/g
s/\bauxilary\b/auxiliary/g
s/\bauxillaries\b/auxiliaries/g
s/\bauxillary\b/auxiliary/g
s/\bauxilliaries\b/auxiliaries/g
s/\bauxilliary\b/auxiliary/g
s/\bavailabe\b/available/g
s/\bavailablity\b/availability/g
s/\bavailaible\b/available/g
s/\bavailble\b/available/g
s/\bavailiable\b/available/g
s/\bavailible\b/available/g
s/\bavalable\b/available/g
s/\bavalance\b/avalanche/g
s/\bavaliable\b/available/g
s/\bavation\b/aviation/g
s/\bavengence\b/a vengeance/g
s/\baverageed\b/averaged/g
s/\bavilable\b/available/g
s/\bawared\b/awarded/g
s/\bawya\b/away/g
s/\bbaceause\b/because/g
s/\bbackgorund\b/background/g
s/\bbackrounds\b/backgrounds/g
s/\bbakc\b/back/g
s/\bbanannas\b/bananas/g
s/\bbandwith\b/bandwidth/g
s/\bbankrupcy\b/bankruptcy/g
s/\bbanruptcy\b/bankruptcy/g
s/\bbasicaly\b/basically/g
s/\bbasicly\b/basically/g
s/\bbcak\b/back/g
s/\bbeachead\b/beachhead/g
s/\bbeacuse\b/because/g
s/\bbeastiality\b/bestiality/g
s/\bbeatiful\b/beautiful/g
s/\bbeaurocracy\b/bureaucracy/g
s/\bbeaurocratic\b/bureaucratic/g
s/\bbeautyfull\b/beautiful/g
s/\bbecamae\b/became/g
s/\bbecasue\b/because/g
s/\bbeccause\b/because/g
s/\bbecomeing\b/becoming/g
s/\bbecomming\b/becoming/g
s/\bbecouse\b/because/g
s/\bbecuase\b/because/g
s/\bbedore\b/before/g
s/\bbeeing\b/being/g
s/\bbefoer\b/before/g
s/\bbegginer\b/beginner/g
s/\bbegginers\b/beginners/g
s/\bbeggining\b/beginning/g
s/\bbegginings\b/beginnings/g
s/\bbeggins\b/begins/g
s/\bbegining\b/beginning/g
s/\bbeginnig\b/beginning/g
s/\bbeleagured\b/beleaguered/g
s/\bbeleif\b/belief/g
s/\bbeleive\b/believe/g
s/\bbeleived\b/believed/g
s/\bbeleives\b/believes/g
s/\bbeleiving\b/believing/g
s/\bbeligum\b/belgium/g
s/\bbelive\b/believe/g
s/\bbelligerant\b/belligerent/g
s/\bbellweather\b/bellwether/g
s/\bbemusemnt\b/bemusement/g
s/\bbeneficary\b/beneficiary/g
s/\bbeng\b/being/g
s/\bbenificial\b/beneficial/g
s/\bbenifit\b/benefit/g
s/\bbenifits\b/benefits/g
s/\bbergamont\b/bergamot/g
s/\bBernouilli\b/Bernoulli/g
s/\bbeseige\b/besiege/g
s/\bbeseiged\b/besieged/g
s/\bbeseiging\b/besieging/g
s/\bbeteen\b/between/g
s/\bbetwen\b/between/g
s/\bbeween\b/between/g
s/\bbewteen\b/between/g
s/\bbigining\b/beginning/g
s/\bbiginning\b/beginning/g
s/\bbilateraly\b/bilaterally/g
s/\bbillingualism\b/bilingualism/g
s/\bbinominal\b/binomial/g
s/\bbizzare\b/bizarre/g
s/\bblaim\b/blame/g
s/\bblaimed\b/blamed/g
s/\bblessure\b/blessing/g
s/\bBlitzkreig\b/Blitzkrieg/g
s/\bbodydbuilder\b/bodybuilder/g
s/\bbombardement\b/bombardment/g
s/\bbombarment\b/bombardment/g
s/\bbondary\b/boundary/g
s/\bBonnano\b/Bonanno/g
s/\bboook\b/book/g
s/\bborke\b/broke/g
s/\bboundry\b/boundary/g
s/\bbouyancy\b/buoyancy/g
s/\bbouyant\b/buoyant/g
s/\bboyant\b/buoyant/g
s/\bbradcast\b/broadcast/g
s/\bBrasillian\b/Brazilian/g
s/\bbreakthough\b/breakthrough/g
s/\bbreakthroughts\b/breakthroughs/g
s/\bbreif\b/brief/g
s/\bbreifly\b/briefly/g
s/\bbrethen\b/brethren/g
s/\bbretheren\b/brethren/g
s/\bbriliant\b/brilliant/g
s/\bbrillant\b/brilliant/g
s/\bbrimestone\b/brimstone/g
s/\bBritian\b/Britain/g
s/\bBrittish\b/British/g
s/\bbroacasted\b/broadcast/g
s/\bbroadacasting\b/broadcasting/g
s/\bbroady\b/broadly/g
s/\bBuddah\b/Buddha/g
s/\bBuddist\b/Buddhist/g
s/\bbuisness\b/business/g
s/\bbuisnessman\b/businessman/g
s/\bbuoancy\b/buoyancy/g
s/\bburried\b/buried/g
s/\bbusines\b/business/g
s/\bbusness\b/business/g
s/\bbussiness\b/business/g
s/\bcaculater\b/calculator/g
s/\bcacuses\b/caucuses/g
s/\bcahracters\b/characters/g
s/\bcalaber\b/caliber/g
s/\bcalculater\b/calculator/g
s/\bcalculs\b/calculus/g
s/\bcalenders\b/calendars/g
s/\bcaligraphy\b/calligraphy/g
s/\bcaluclate\b/calculate/g
s/\bcaluclated\b/calculated/g
s/\bcaluculate\b/calculate/g
s/\bcaluculated\b/calculated/g
s/\bcalulate\b/calculate/g
s/\bcalulated\b/calculated/g
s/\bcalulater\b/calculator/g
s/\bCambrige\b/Cambridge/g
s/\bcamoflage\b/camouflage/g
s/\bcampagin\b/campaign/g
s/\bcampain\b/campaign/g
s/\bcampains\b/campaigns/g
s/\bcandadate\b/candidate/g
s/\bcandiate\b/candidate/g
s/\bcandidiate\b/candidate/g
s/\bcannister\b/canister/g
s/\bcannisters\b/canisters/g
s/\bcannnot\b/cannot/g
s/\bcannonical\b/canonical/g
s/\bcannotation\b/connotation/g
s/\bcannotations\b/connotations/g
s/\bcaost\b/coast/g
s/\bcaperbility\b/capability/g
s/\bCapetown\b/Cape Town/g
s/\bcapible\b/capable/g
s/\bcaptial\b/capital/g
s/\bcaptued\b/captured/g
s/\bcapturd\b/captured/g
s/\bcarachter\b/character/g
s/\bcaracterized\b/characterized/g
s/\bcarefull\b/careful/g
s/\bcareing\b/caring/g
s/\bcarismatic\b/charismatic/g
s/\bCarmalite\b/Carmelite/g
s/\bCarnagie\b/Carnegie/g
s/\bCarnagie-Mellon\b/Carnegie-Mellon/g
s/\bCarnigie\b/Carnegie/g
s/\bCarnigie-Mellon\b/Carnegie-Mellon/g
s/\bcarreer\b/career/g
s/\bcarrers\b/careers/g
s/\bCarribbean\b/Caribbean/g
s/\bCarribean\b/Caribbean/g
s/\bcarryng\b/carrying/g
s/\bcartdridge\b/cartridge/g
s/\bCarthagian\b/Carthaginian/g
s/\bcarthographer\b/cartographer/g
s/\bcartilege\b/cartilage/g
s/\bcartilidge\b/cartilage/g
s/\bcartrige\b/cartridge/g
s/\bcasette\b/cassette/g
s/\bcasion\b/caisson/g
s/\bcassawory\b/cassowary/g
s/\bcassowarry\b/cassowary/g
s/\bcasue\b/cause/g
s/\bcasued\b/caused/g
s/\bcasues\b/causes/g
s/\bcasuing\b/causing/g
s/\bcasulaties\b/casualties/g
s/\bcasulaty\b/casualty/g
s/\bcatagories\b/categories/g
s/\bcatagorized\b/categorized/g
s/\bcatagory\b/category/g
s/\bcatapillar\b/caterpillar/g
s/\bcatapillars\b/caterpillars/g
s/\bcatapiller\b/caterpillar/g
s/\bcatapillers\b/caterpillars/g
s/\bcatepillar\b/caterpillar/g
s/\bcatepillars\b/caterpillars/g
s/\bcatergorize\b/categorize/g
s/\bcatergorized\b/categorized/g
s/\bcaterpilar\b/caterpillar/g
s/\bcaterpilars\b/caterpillars/g
s/\bcaterpiller\b/caterpillar/g
s/\bcaterpillers\b/caterpillars/g
s/\bcathlic\b/catholic/g
s/\bcatholocism\b/catholicism/g
s/\bcatterpilar\b/caterpillar/g
s/\bcatterpilars\b/caterpillars/g
s/\bcatterpillar\b/caterpillar/g
s/\bcatterpillars\b/caterpillars/g
s/\bcattleship\b/battleship/g
s/\bcausalities\b/casualties/g
s/\bCeasar\b/Caesar/g
s/\bCelcius\b/Celsius/g
s/\bcellpading\b/cellpadding/g
s/\bcementary\b/cemetery/g
s/\bcemetarey\b/cemetery/g
s/\bcemetaries\b/cemeteries/g
s/\bcemetary\b/cemetery/g
s/\bcencus\b/census/g
s/\bcententenial\b/centennial/g
s/\bcentruies\b/centuries/g
s/\bcentruy\b/century/g
s/\bcentuties\b/centuries/g
s/\bcentuty\b/century/g
s/\bcerimonial\b/ceremonial/g
s/\bcerimonies\b/ceremonies/g
s/\bcerimonious\b/ceremonious/g
s/\bcerimony\b/ceremony/g
s/\bceromony\b/ceremony/g
s/\bcertainity\b/certainty/g
s/\bcertian\b/certain/g
s/\bchalenging\b/challenging/g
s/\bchallange\b/challenge/g
s/\bchallanged\b/challenged/g
s/\bchallege\b/challenge/g
s/\bChampange\b/Champagne/g
s/\bchangable\b/changeable/g
s/\bcharachter\b/character/g
s/\bcharachters\b/characters/g
s/\bcharactersistic\b/characteristic/g
s/\bcharactor\b/character/g
s/\bcharactors\b/characters/g
s/\bcharasmatic\b/charismatic/g
s/\bcharaterized\b/characterized/g
s/\bchariman\b/chairman/g
s/\bcharistics\b/characteristics/g
s/\bcheif\b/chief/g
s/\bcheifs\b/chiefs/g
s/\bchemcial\b/chemical/g
s/\bchemcially\b/chemically/g
s/\bchemestry\b/chemistry/g
s/\bchemicaly\b/chemically/g
s/\bchildbird\b/childbirth/g
s/\bchilden\b/children/g
s/\bchoclate\b/chocolate/g
s/\bchoosen\b/chosen/g
s/\bchracter\b/character/g
s/\bchuch\b/church/g
s/\bchurchs\b/churches/g
s/\bCincinatti\b/Cincinnati/g
s/\bCincinnatti\b/Cincinnati/g
s/\bcirculaton\b/circulation/g
s/\bcircumsicion\b/circumcision/g
s/\bcircut\b/circuit/g
s/\bciricuit\b/circuit/g
s/\bciriculum\b/curriculum/g
s/\bcivillian\b/civilian/g
s/\bclaer\b/clear/g
s/\bclaerer\b/clearer/g
s/\bclaerly\b/clearly/g
s/\bclaimes\b/claims/g
s/\bclas\b/class/g
s/\bclasic\b/classic/g
s/\bclasical\b/classical/g
s/\bclasically\b/classically/g
s/\bcleareance\b/clearance/g
s/\bclincial\b/clinical/g
s/\bclinicaly\b/clinically/g
s/\bcmo\b/com/g
s/\bcmoputer\b/computer/g
s/\bco-incided\b/coincided/g
s/\bCoca Cola\b/Coca-Cola/g
s/\bcoctail\b/cocktail/g
s/\bcoform\b/conform/g
s/\bcognizent\b/cognizant/g
s/\bcoincedentally\b/coincidentally/g
s/\bcolaborations\b/collaborations/g
s/\bcolateral\b/collateral/g
s/\bcolelctive\b/collective/g
s/\bcollaberative\b/collaborative/g
s/\bcollecton\b/collection/g
s/\bcollegue\b/colleague/g
s/\bcollegues\b/colleagues/g
s/\bcollonade\b/colonnade/g
s/\bcollonies\b/colonies/g
s/\bcollony\b/colony/g
s/\bcollosal\b/colossal/g
s/\bcolonizators\b/colonizers/g
s/\bcomando\b/commando/g
s/\bcomandos\b/commandos/g
s/\bcomany\b/company/g
s/\bcomapany\b/company/g
s/\bcomback\b/comeback/g
s/\bcombanations\b/combinations/g
s/\bcombinatins\b/combinations/g
s/\bcombusion\b/combustion/g
s/\bcomdemnation\b/condemnation/g
s/\bcomemmorates\b/commemorates/g
s/\bcomemoretion\b/commemoration/g
s/\bcomision\b/commission/g
s/\bcomisioned\b/commissioned/g
s/\bcomisioner\b/commissioner/g
s/\bcomisioning\b/commissioning/g
s/\bcomisions\b/commissions/g
s/\bcomission\b/commission/g
s/\bcomissioned\b/commissioned/g
s/\bcomissioner\b/commissioner/g
s/\bcomissioning\b/commissioning/g
s/\bcomissions\b/commissions/g
s/\bcomited\b/committed/g
s/\bcomiting\b/committing/g
s/\bcomitted\b/committed/g
s/\bcomittee\b/committee/g
s/\bcomitting\b/committing/g
s/\bcommandoes\b/commandos/g
s/\bcommedic\b/comedic/g
s/\bcommemerative\b/commemorative/g
s/\bcommemmorate\b/commemorate/g
s/\bcommemmorating\b/commemorating/g
s/\bcommerical\b/commercial/g
s/\bcommerically\b/commercially/g
s/\bcommericial\b/commercial/g
s/\bcommericially\b/commercially/g
s/\bcommerorative\b/commemorative/g
s/\bcomming\b/coming/g
s/\bcomminication\b/communication/g
s/\bcommision\b/commission/g
s/\bcommisioned\b/commissioned/g
s/\bcommisioner\b/commissioner/g
s/\bcommisioning\b/commissioning/g
s/\bcommisions\b/commissions/g
s/\bcommited\b/committed/g
s/\bcommitee\b/committee/g
s/\bcommiting\b/committing/g
s/\bcommitte\b/committee/g
s/\bcommittment\b/commitment/g
s/\bcommittments\b/commitments/g
s/\bcommmemorated\b/commemorated/g
s/\bcommongly\b/commonly/g
s/\bcommonweath\b/commonwealth/g
s/\bcommuications\b/communications/g
s/\bcommuinications\b/communications/g
s/\bcommunciation\b/communication/g
s/\bcommuniation\b/communication/g
s/\bcommunites\b/communities/g
s/\bcompability\b/compatibility/g
s/\bcomparision\b/comparison/g
s/\bcomparisions\b/comparisons/g
s/\bcomparitive\b/comparative/g
s/\bcomparitively\b/comparatively/g
s/\bcompatabilities\b/compatibilities/g
s/\bcompatability\b/compatibility/g
s/\bcompatable\b/compatible/g
s/\bcompatablities\b/compatibilities/g
s/\bcompatablity\b/compatibility/g
s/\bcompatiable\b/compatible/g
s/\bcompatiblities\b/compatibilities/g
s/\bcompatiblity\b/compatibility/g
s/\bcompeitions\b/competitions/g
s/\bcompensantion\b/compensation/g
s/\bcompetance\b/competence/g
s/\bcompetant\b/competent/g
s/\bcompetative\b/competitive/g
s/\bcompetitiion\b/competition/g
s/\bcompetive\b/competitive/g
s/\bcompetiveness\b/competitiveness/g
s/\bcomphrehensive\b/comprehensive/g
s/\bcompitent\b/competent/g
s/\bcompletedthe\b/completed the/g
s/\bcompletelyl\b/completely/g
s/\bcompletetion\b/completion/g
s/\bcomplier\b/compiler/g
s/\bcomponant\b/component/g
s/\bcomprable\b/comparable/g
s/\bcomprimise\b/compromise/g
s/\bcompulsary\b/compulsory/g
s/\bcompulsery\b/compulsory/g
s/\bcomputarized\b/computerized/g
s/\bconcensus\b/consensus/g
s/\bconcider\b/consider/g
s/\bconcidered\b/considered/g
s/\bconcidering\b/considering/g
s/\bconciders\b/considers/g
s/\bconcieted\b/conceited/g
s/\bconcieved\b/conceived/g
s/\bconcious\b/conscious/g
s/\bconciously\b/consciously/g
s/\bconciousness\b/consciousness/g
s/\bcondamned\b/condemned/g
s/\bcondemmed\b/condemned/g
s/\bcondidtion\b/condition/g
s/\bcondidtions\b/conditions/g
s/\bconditionsof\b/conditions of/g
s/\bconected\b/connected/g
s/\bconection\b/connection/g
s/\bconesencus\b/consensus/g
s/\bconfidental\b/confidential/g
s/\bconfidentally\b/confidentially/g
s/\bconfids\b/confides/g
s/\bconfigureable\b/configurable/g
s/\bconfortable\b/comfortable/g
s/\bcongradulations\b/congratulations/g
s/\bcongresional\b/congressional/g
s/\bconived\b/connived/g
s/\bconjecutre\b/conjecture/g
s/\bconjuction\b/conjunction/g
s/\bConneticut\b/Connecticut/g
s/\bconotations\b/connotations/g
s/\bconquerd\b/conquered/g
s/\bconquerer\b/conqueror/g
s/\bconquerers\b/conquerors/g
s/\bconqured\b/conquered/g
s/\bconscent\b/consent/g
s/\bconsciouness\b/consciousness/g
s/\bconsdider\b/consider/g
s/\bconsdidered\b/considered/g
s/\bconsdiered\b/considered/g
s/\bconsectutive\b/consecutive/g
s/\bconsenquently\b/consequently/g
s/\bconsentrate\b/concentrate/g
s/\bconsentrated\b/concentrated/g
s/\bconsentrates\b/concentrates/g
s/\bconsept\b/concept/g
s/\bconsequentually\b/consequently/g
s/\bconsequeseces\b/consequences/g
s/\bconsern\b/concern/g
s/\bconserned\b/concerned/g
s/\bconserning\b/concerning/g
s/\bconservitive\b/conservative/g
s/\bconsiciousness\b/consciousness/g
s/\bconsicousness\b/consciousness/g
s/\bconsiderd\b/considered/g
s/\bconsideres\b/considered/g
s/\bconsious\b/conscious/g
s/\bconsistant\b/consistent/g
s/\bconsistantly\b/consistently/g
s/\bconsituencies\b/constituencies/g
s/\bconsituency\b/constituency/g
s/\bconsituted\b/constituted/g
s/\bconsitution\b/constitution/g
s/\bconsitutional\b/constitutional/g
s/\bconsolodate\b/consolidate/g
s/\bconsolodated\b/consolidated/g
s/\bconsonent\b/consonant/g
s/\bconsonents\b/consonants/g
s/\bconsorcium\b/consortium/g
s/\bconspiracys\b/conspiracies/g
s/\bconspiriator\b/conspirator/g
s/\bconstaints\b/constraints/g
s/\bconstanly\b/constantly/g
s/\bconstarnation\b/consternation/g
s/\bconstatn\b/constant/g
s/\bconstinually\b/continually/g
s/\bconstituant\b/constituent/g
s/\bconstituants\b/constituents/g
s/\bconstituion\b/constitution/g
s/\bconstituional\b/constitutional/g
s/\bconsttruction\b/construction/g
s/\bconstuction\b/construction/g
s/\bcontstruction\b/construction/g
s/\bconsulant\b/consultant/g
s/\bconsumate\b/consummate/g
s/\bconsumated\b/consummated/g
s/\bcontaiminate\b/contaminate/g
s/\bcontaines\b/contains/g
s/\bcontamporaries\b/contemporaries/g
s/\bcontamporary\b/contemporary/g
s/\bcontempoary\b/contemporary/g
s/\bcontemporaneus\b/contemporaneous/g
s/\bcontempory\b/contemporary/g
s/\bcontendor\b/contender/g
s/\bcontian\b/contain/g
s/\bcontians\b/contains/g
s/\bcontibute\b/contribute/g
s/\bcontibuted\b/contributed/g
s/\bcontibutes\b/contributes/g
s/\bcontigent\b/contingent/g
s/\bcontined\b/continued/g
s/\bcontinential\b/continental/g
s/\bcontinous\b/continuous/g
s/\bcontinously\b/continuously/g
s/\bcontinueing\b/continuing/g
s/\bcontravercial\b/controversial/g
s/\bcontraversy\b/controversy/g
s/\bcontributer\b/contributor/g
s/\bcontributers\b/contributors/g
s/\bcontritutions\b/contributions/g
s/\bcontroled\b/controlled/g
s/\bcontroling\b/controlling/g
s/\bcontroll\b/control/g
s/\bcontrolls\b/controls/g
s/\bcontrovercial\b/controversial/g
s/\bcontrovercy\b/controversy/g
s/\bcontroveries\b/controversies/g
s/\bcontroversal\b/controversial/g
s/\bcontroversey\b/controversy/g
s/\bcontrovertial\b/controversial/g
s/\bcontrovery\b/controversy/g
s/\bcontruction\b/construction/g
s/\bconveinent\b/convenient/g
s/\bconvenant\b/covenant/g
s/\bconvential\b/conventional/g
s/\bconvertables\b/convertibles/g
s/\bconvertion\b/conversion/g
s/\bconviced\b/convinced/g
s/\bconvienient\b/convenient/g
s/\bcoordiantion\b/coordination/g
s/\bcoorperations\b/corporations/g
s/\bcopmetitors\b/competitors/g
s/\bcoputer\b/computer/g
s/\bcopywrite\b/copyright/g
s/\bcoridal\b/cordial/g
s/\bcornmitted\b/committed/g
s/\bcorosion\b/corrosion/g
s/\bcorparate\b/corporate/g
s/\bcorperations\b/corporations/g
s/\bcorrecters\b/correctors/g
s/\bcorreponding\b/corresponding/g
s/\bcorreposding\b/corresponding/g
s/\bcorrespondant\b/correspondent/g
s/\bcorrespondants\b/correspondents/g
s/\bcorridoors\b/corridors/g
s/\bcorrispond\b/correspond/g
s/\bcorrispondant\b/correspondent/g
s/\bcorrispondants\b/correspondents/g
s/\bcorrisponded\b/corresponded/g
s/\bcorrisponding\b/corresponding/g
s/\bcorrisponds\b/corresponds/g
s/\bcostitution\b/constitution/g
s/\bcoucil\b/council/g
s/\bcounries\b/countries/g
s/\bcountains\b/contains/g
s/\bcountires\b/countries/g
s/\bcreaeted\b/created/g
s/\bcreche\b/crèche/g
s/\bcreedence\b/credence/g
s/\bcritereon\b/criterion/g
s/\bcriterias\b/criteria/g
s/\bcriticists\b/critics/g
s/\bcritisising\b/criticising/g
s/\bcritisism\b/criticism/g
s/\bcritisisms\b/criticisms/g
s/\bcritized\b/criticized/g
s/\bcritizing\b/criticizing/g
s/\bcrockodiles\b/crocodiles/g
s/\bcrowm\b/crown/g
s/\bcrtical\b/critical/g
s/\bcrticised\b/criticised/g
s/\bcrucifiction\b/crucifixion/g
s/\bcrusies\b/cruises/g
s/\bcrutial\b/crucial/g
s/\bcrystalisation\b/crystallisation/g
s/\bculiminating\b/culminating/g
s/\bcumulatative\b/cumulative/g
s/\bcurch\b/church/g
s/\bcurcuit\b/circuit/g
s/\bcurrenly\b/currently/g
s/\bcurriculem\b/curriculum/g
s/\bcxan\b/cyan/g
s/\bcyclinder\b/cylinder/g
s/\bdacquiri\b/daiquiri/g
s/\bdaed\b/dead/g
s/\bdalmation\b/dalmatian/g
s/\bdamenor\b/demeanor/g
s/\bdammage\b/damage/g
s/\bDardenelles\b/Dardanelles/g
s/\bdaugher\b/daughter/g
s/\bdebateable\b/debatable/g
s/\bdecendant\b/descendant/g
s/\bdecendants\b/descendants/g
s/\bdecendent\b/descendant/g
s/\bdecendents\b/descendants/g
s/\bdecideable\b/decidable/g
s/\bdecidely\b/decidedly/g
s/\bdecieved\b/deceived/g
s/\bdecison\b/decision/g
s/\bdecomissioned\b/decommissioned/g
s/\bdecomposit\b/decompose/g
s/\bdecomposited\b/decomposed/g
s/\bdecompositing\b/decomposing/g
s/\bdecomposits\b/decomposes/g
s/\bdecress\b/decrees/g
s/\bdecribe\b/describe/g
s/\bdecribed\b/described/g
s/\bdecribes\b/describes/g
s/\bdecribing\b/describing/g
s/\bdectect\b/detect/g
s/\bdefendent\b/defendant/g
s/\bdefendents\b/defendants/g
s/\bdeffensively\b/defensively/g
s/\bdeffine\b/define/g
s/\bdeffined\b/defined/g
s/\bdefinance\b/defiance/g
s/\bdefinate\b/definite/g
s/\bdefinately\b/definitely/g
s/\bdefinatly\b/definitely/g
s/\bdefinetly\b/definitely/g
s/\bdefinining\b/defining/g
s/\bdefinit\b/definite/g
s/\bdefinitly\b/definitely/g
s/\bdefiniton\b/definition/g
s/\bdefintion\b/definition/g
s/\bdegrate\b/degrade/g
s/\bdelagates\b/delegates/g
s/\bdelapidated\b/dilapidated/g
s/\bdelerious\b/delirious/g
s/\bdelevopment\b/development/g
s/\bdeliberatly\b/deliberately/g
s/\bdelusionally\b/delusively/g
s/\bdemenor\b/demeanor/g
s/\bdemographical\b/demographic/g
s/\bdemolision\b/demolition/g
s/\bdemorcracy\b/democracy/g
s/\bdemostration\b/demonstration/g
s/\bdenegrating\b/denigrating/g
s/\bdensly\b/densely/g
s/\bdeparment\b/department/g
s/\bdeparmental\b/departmental/g
s/\bdeparments\b/departments/g
s/\bdependance\b/dependence/g
s/\bdependancy\b/dependency/g
s/\bderiviated\b/derived/g
s/\bderivitive\b/derivative/g
s/\bderogitory\b/derogatory/g
s/\bdescendands\b/descendants/g
s/\bdescibed\b/described/g
s/\bdescision\b/decision/g
s/\bdescisions\b/decisions/g
s/\bdescriibes\b/describes/g
s/\bdescripters\b/descriptors/g
s/\bdescripton\b/description/g
s/\bdesctruction\b/destruction/g
s/\bdescuss\b/discuss/g
s/\bdesgined\b/designed/g
s/\bdeside\b/decide/g
s/\bdesigining\b/designing/g
s/\bdesinations\b/destinations/g
s/\bdesintegrated\b/disintegrated/g
s/\bdesintegration\b/disintegration/g
s/\bdesireable\b/desirable/g
s/\bdesitned\b/destined/g
s/\bdesktiop\b/desktop/g
s/\bdesorder\b/disorder/g
s/\bdesoriented\b/disoriented/g
s/\bdespict\b/depict/g
s/\bdespiration\b/desperation/g
s/\bdessicated\b/desiccated/g
s/\bdessigned\b/designed/g
s/\bdestablized\b/destabilized/g
s/\bdestory\b/destroy/g
s/\bdetailled\b/detailed/g
s/\bdetatched\b/detached/g
s/\bdeteoriated\b/deteriorated/g
s/\bdeteriate\b/deteriorate/g
s/\bdeterioriating\b/deteriorating/g
s/\bdeterminining\b/determining/g
s/\bdetremental\b/detrimental/g
s/\bdevasted\b/devastated/g
s/\bdevelope\b/develop/g
s/\bdevelopement\b/development/g
s/\bdevelopped\b/developed/g
s/\bdevelpment\b/development/g
s/\bdevels\b/delves/g
s/\bdevestated\b/devastated/g
s/\bdevestating\b/devastating/g
s/\bdevide\b/divide/g
s/\bdevided\b/divided/g
s/\bdevistating\b/devastating/g
s/\bdevolopement\b/development/g
s/\bdiablical\b/diabolical/g
s/\bdiamons\b/diamonds/g
s/\bdiaster\b/disaster/g
s/\bdichtomy\b/dichotomy/g
s/\bdiconnects\b/disconnects/g
s/\bdicover\b/discover/g
s/\bdicovered\b/discovered/g
s/\bdicovering\b/discovering/g
s/\bdicovers\b/discovers/g
s/\bdicovery\b/discovery/g
s/\bdictionarys\b/dictionaries/g
s/\bdicussed\b/discussed/g
s/\bdidnt\b/didn't/g
s/\bdieties\b/deities/g
s/\bdiety\b/deity/g
s/\bdiferent\b/different/g
s/\bdiferrent\b/different/g
s/\bdifferentiatiations\b/differentiations/g
s/\bdiffernt\b/different/g
s/\bdifficulity\b/difficulty/g
s/\bdiffrent\b/different/g
s/\bdificulties\b/difficulties/g
s/\bdificulty\b/difficulty/g
s/\bdimenions\b/dimensions/g
s/\bdimention\b/dimension/g
s/\bdimentional\b/dimensional/g
s/\bdimentions\b/dimensions/g
s/\bdimesnional\b/dimensional/g
s/\bdiminuitive\b/diminutive/g
s/\bdimunitive\b/diminutive/g
s/\bdiosese\b/diocese/g
s/\bdiphtong\b/diphthong/g
s/\bdiphtongs\b/diphthongs/g
s/\bdiplomancy\b/diplomacy/g
s/\bdipthong\b/diphthong/g
s/\bdipthongs\b/diphthongs/g
s/\bdirectoty\b/directory/g
s/\bdirived\b/derived/g
s/\bdisagreeed\b/disagreed/g
s/\bdisapeared\b/disappeared/g
s/\bdisapointing\b/disappointing/g
s/\bdisappearred\b/disappeared/g
s/\bdisaproval\b/disapproval/g
s/\bdisasterous\b/disastrous/g
s/\bdisatisfaction\b/dissatisfaction/g
s/\bdisatisfied\b/dissatisfied/g
s/\bdisatrous\b/disastrous/g
s/\bdiscontentment\b/discontent/g
s/\bdiscribe\b/describe/g
s/\bdiscribed\b/described/g
s/\bdiscribes\b/describes/g
s/\bdiscribing\b/describing/g
s/\bdisctinction\b/distinction/g
s/\bdisctinctive\b/distinctive/g
s/\bdisemination\b/dissemination/g
s/\bdisenchanged\b/disenchanted/g
s/\bdisiplined\b/disciplined/g
s/\bdisobediance\b/disobedience/g
s/\bdisobediant\b/disobedient/g
s/\bdisolved\b/dissolved/g
s/\bdisover\b/discover/g
s/\bdispair\b/despair/g
s/\bdisparingly\b/disparagingly/g
s/\bdispence\b/dispense/g
s/\bdispenced\b/dispensed/g
s/\bdispencing\b/dispensing/g
s/\bdispicable\b/despicable/g
s/\bdispite\b/despite/g
s/\bdispostion\b/disposition/g
s/\bdisproportiate\b/disproportionate/g
s/\bdisputandem\b/disputandum/g
s/\bdisricts\b/districts/g
s/\bdissagreement\b/disagreement/g
s/\bdissapear\b/disappear/g
s/\bdissapearance\b/disappearance/g
s/\bdissapeared\b/disappeared/g
s/\bdissapearing\b/disappearing/g
s/\bdissapears\b/disappears/g
s/\bdissappear\b/disappear/g
s/\bdissappears\b/disappears/g
s/\bdissappointed\b/disappointed/g
s/\bdissarray\b/disarray/g
s/\bdissobediance\b/disobedience/g
s/\bdissobediant\b/disobedient/g
s/\bdissobedience\b/disobedience/g
s/\bdissobedient\b/disobedient/g
s/\bdistiction\b/distinction/g
s/\bdistingish\b/distinguish/g
s/\bdistingished\b/distinguished/g
s/\bdistingishes\b/distinguishes/g
s/\bdistingishing\b/distinguishing/g
s/\bdistingquished\b/distinguished/g
s/\bdistrubution\b/distribution/g
s/\bdistruction\b/destruction/g
s/\bdistructive\b/destructive/g
s/\bditributed\b/distributed/g
s/\bdivice\b/device/g
s/\bdivinition\b/divination/g
s/\bdivison\b/division/g
s/\bdivisons\b/divisions/g
s/\bdum\b/dumb/g
s/\bdoccument\b/document/g
s/\bdoccumented\b/documented/g
s/\bdoccuments\b/documents/g
s/\bdocrines\b/doctrines/g
s/\bdoctines\b/doctrines/g
s/\bdocumenatry\b/documentary/g
s/\bdoens\b/does/g
s/\bdoesnt\b/doesn't/g
s/\bdoign\b/doing/g
s/\bdominaton\b/domination/g
s/\bdominent\b/dominant/g
s/\bdominiant\b/dominant/g
s/\bdonig\b/doing/g
s/\bdosen't\b/doesn't/g
s/\bdoulbe\b/double/g
s/\bdowloads\b/downloads/g
s/\bdramtic\b/dramatic/g
s/\bdraughtman\b/draughtsman/g
s/\bDravadian\b/Dravidian/g
s/\bdreasm\b/dreams/g
s/\bdriectly\b/directly/g
s/\bdrnik\b/drink/g
s/\bdruming\b/drumming/g
s/\bdrummless\b/drumless/g
s/\bdupicate\b/duplicate/g
s/\bdurig\b/during/g
s/\bdurring\b/during/g
s/\bduting\b/during/g
s/\bdyas\b/dryas/g
s/\beahc\b/each/g
s/\bealier\b/earlier/g
s/\bearlies\b/earliest/g
s/\bearnt\b/earned/g
s/\becclectic\b/eclectic/g
s/\beceonomy\b/economy/g
s/\becidious\b/deciduous/g
s/\beclispe\b/eclipse/g
s/\becomonic\b/economic/g
s/\bect\b/etc/g
s/\beearly\b/early/g
s/\befel\b/evil/g
s/\beffeciency\b/efficiency/g
s/\beffecient\b/efficient/g
s/\beffeciently\b/efficiently/g
s/\befficency\b/efficiency/g
s/\befficent\b/efficient/g
s/\befficently\b/efficiently/g
s/\beffulence\b/effluence/g
s/\beiter\b/either/g
s/\belction\b/election/g
s/\belectrial\b/electrical/g
s/\belectricly\b/electrically/g
s/\belectricty\b/electricity/g
s/\belementay\b/elementary/g
s/\beleminated\b/eliminated/g
s/\beleminating\b/eliminating/g
s/\beles\b/eels/g
s/\beletricity\b/electricity/g
s/\belicided\b/elicited/g
s/\beligable\b/eligible/g
s/\belimentary\b/elementary/g
s/\bellected\b/elected/g
s/\belphant\b/elephant/g
s/\bembarass\b/embarrass/g
s/\bembarassed\b/embarrassed/g
s/\bembarassing\b/embarrassing/g
s/\bembarassment\b/embarrassment/g
s/\bembargos\b/embargoes/g
s/\bembarras\b/embarrass/g
s/\bembarrased\b/embarrassed/g
s/\bembarrasing\b/embarrassing/g
s/\bembarrasment\b/embarrassment/g
s/\bembezelled\b/embezzled/g
s/\bemblamatic\b/emblematic/g
s/\beminate\b/emanate/g
s/\beminated\b/emanated/g
s/\bemision\b/emission/g
s/\bemited\b/emitted/g
s/\bemiting\b/emitting/g
s/\bemmediately\b/immediately/g
s/\bemminently\b/eminently/g
s/\bemmisaries\b/emissaries/g
s/\bemmisarries\b/emissaries/g
s/\bemmisarry\b/emissary/g
s/\bemmisary\b/emissary/g
s/\bemmision\b/emission/g
s/\bemmisions\b/emissions/g
s/\bemmited\b/emitted/g
s/\bemmiting\b/emitting/g
s/\bemmitted\b/emitted/g
s/\bemmitting\b/emitting/g
s/\bemnity\b/enmity/g
s/\bemperical\b/empirical/g
s/\bemphaised\b/emphasised/g
s/\bemphsis\b/emphasis/g
s/\bemphysyma\b/emphysema/g
s/\bemporer\b/emperor/g
s/\bemprisoned\b/imprisoned/g
s/\benameld\b/enameled/g
s/\benchancement\b/enhancement/g
s/\bencouraing\b/encouraging/g
s/\bencryptiion\b/encryption/g
s/\bencylopedia\b/encyclopedia/g
s/\bendevors\b/endeavors/g
s/\bendevour\b/endeavour/g
s/\bendig\b/ending/g
s/\bendolithes\b/endoliths/g
s/\benduce\b/induce/g
s/\bened\b/need/g
s/\benforceing\b/enforcing/g
s/\bengagment\b/engagement/g
s/\bengeneer\b/engineer/g
s/\bengeneering\b/engineering/g
s/\bengieneer\b/engineer/g
s/\bengieneers\b/engineers/g
s/\benlargment\b/enlargement/g
s/\benlargments\b/enlargements/g
s/\benourmous\b/enormous/g
s/\benourmously\b/enormously/g
s/\bensconsed\b/ensconced/g
s/\bentaglements\b/entanglements/g
s/\benteratinment\b/entertainment/g
s/\benthusiatic\b/enthusiastic/g
s/\bentitity\b/entity/g
s/\bentitlied\b/entitled/g
s/\bentrepeneur\b/entrepreneur/g
s/\bentrepeneurs\b/entrepreneurs/g
s/\benviorment\b/environment/g
s/\benviormental\b/environmental/g
s/\benviormentally\b/environmentally/g
s/\benviorments\b/environments/g
s/\benviornment\b/environment/g
s/\benviornmental\b/environmental/g
s/\benviornmentalist\b/environmentalist/g
s/\benviornmentally\b/environmentally/g
s/\benviornments\b/environments/g
s/\benviroment\b/environment/g
s/\benviromental\b/environmental/g
s/\benviromentalist\b/environmentalist/g
s/\benviromentally\b/environmentally/g
s/\benviroments\b/environments/g
s/\benvolutionary\b/evolutionary/g
s/\benvrionments\b/environments/g
s/\benxt\b/next/g
s/\bepidsodes\b/episodes/g
s/\bepsiode\b/episode/g
s/\bequialent\b/equivalent/g
s/\bequilibium\b/equilibrium/g
s/\bequilibrum\b/equilibrium/g
s/\bequiped\b/equipped/g
s/\bequippment\b/equipment/g
s/\bequitorial\b/equatorial/g
s/\bequivelant\b/equivalent/g
s/\bequivelent\b/equivalent/g
s/\bequivilant\b/equivalent/g
s/\bequivilent\b/equivalent/g
s/\bequivlalent\b/equivalent/g
s/\beratic\b/erratic/g
s/\beratically\b/erratically/g
s/\beraticly\b/erratically/g
s/\berrupted\b/erupted/g
s/\besential\b/essential/g
s/\besitmated\b/estimated/g
s/\besle\b/else/g
s/\bespecialy\b/especially/g
s/\bessencial\b/essential/g
s/\bessense\b/essence/g
s/\bessentail\b/essential/g
s/\bessentialy\b/essentially/g
s/\bessentual\b/essential/g
s/\bessesital\b/essential/g
s/\bestabishes\b/establishes/g
s/\bestablising\b/establishing/g
s/\bethnocentricm\b/ethnocentrism/g
s/\bEuropian\b/European/g
s/\bEuropians\b/Europeans/g
s/\bEurpean\b/European/g
s/\bEurpoean\b/European/g
s/\bevenhtually\b/eventually/g
s/\beventally\b/eventually/g
s/\beventhough\b/even though/g
s/\beventially\b/eventually/g
s/\beventualy\b/eventually/g
s/\beverthing\b/everything/g
s/\beverytime\b/every time/g
s/\beveryting\b/everything/g
s/\beveyr\b/every/g
s/\bevidentally\b/evidently/g
s/\bexagerate\b/exaggerate/g
s/\bexagerated\b/exaggerated/g
s/\bexagerates\b/exaggerates/g
s/\bexagerating\b/exaggerating/g
s/\bexagerrate\b/exaggerate/g
s/\bexagerrated\b/exaggerated/g
s/\bexagerrates\b/exaggerates/g
s/\bexagerrating\b/exaggerating/g
s/\bexaminated\b/examined/g
s/\bexampt\b/exempt/g
s/\bexapansion\b/expansion/g
s/\bexcact\b/exact/g
s/\bexcange\b/exchange/g
s/\bexcecute\b/execute/g
s/\bexcecuted\b/executed/g
s/\bexcecutes\b/executes/g
s/\bexcecuting\b/executing/g
s/\bexcecution\b/execution/g
s/\bexcedded\b/exceeded/g
s/\bexcelent\b/excellent/g
s/\bexcell\b/excel/g
s/\bexcellance\b/excellence/g
s/\bexcellant\b/excellent/g
s/\bexcells\b/excels/g
s/\bexcercise\b/exercise/g
s/\bexchanching\b/exchanging/g
s/\bexcisted\b/existed/g
s/\bexculsivly\b/exclusively/g
s/\bexecising\b/exercising/g
s/\bexection\b/execution/g
s/\bexectued\b/executed/g
s/\bexeedingly\b/exceedingly/g
s/\bexelent\b/excellent/g
s/\bexellent\b/excellent/g
s/\bexemple\b/example/g
s/\bexept\b/except/g
s/\bexeptional\b/exceptional/g
s/\bexerbate\b/exacerbate/g
s/\bexerbated\b/exacerbated/g
s/\bexerciese\b/exercises/g
s/\bexerpt\b/excerpt/g
s/\bexerpts\b/excerpts/g
s/\bexersize\b/exercise/g
s/\bexerternal\b/external/g
s/\bexhalted\b/exalted/g
s/\bexhibtion\b/exhibition/g
s/\bexibition\b/exhibition/g
s/\bexibitions\b/exhibitions/g
s/\bexicting\b/exciting/g
s/\bexinct\b/extinct/g
s/\bexistance\b/existence/g
s/\bexistant\b/existent/g
s/\bexistince\b/existence/g
s/\bexliled\b/exiled/g
s/\bexludes\b/excludes/g
s/\bexmaple\b/example/g
s/\bexonorate\b/exonerate/g
s/\bexoskelaton\b/exoskeleton/g
s/\bexpalin\b/explain/g
s/\bexpatriot\b/expatriate/g
s/\bexpeced\b/expected/g
s/\bexpecially\b/especially/g
s/\bexpeditonary\b/expeditionary/g
s/\bexpeiments\b/experiments/g
s/\bexpell\b/expel/g
s/\bexpells\b/expels/g
s/\bexperiance\b/experience/g
s/\bexperianced\b/experienced/g
s/\bexpiditions\b/expeditions/g
s/\bexpierence\b/experience/g
s/\bexplaination\b/explanation/g
s/\bexplaning\b/explaining/g
s/\bexplictly\b/explicitly/g
s/\bexploititive\b/exploitative/g
s/\bexplotation\b/exploitation/g
s/\bexpropiated\b/expropriated/g
s/\bexpropiation\b/expropriation/g
s/\bexressed\b/expressed/g
s/\bextemely\b/extremely/g
s/\bextention\b/extension/g
s/\bextentions\b/extensions/g
s/\bextered\b/exerted/g
s/\bextermist\b/extremist/g
s/\bextradiction\b/extradition/g
s/\bextraterrestial\b/extraterrestrial/g
s/\bextraterrestials\b/extraterrestrials/g
s/\bextravagent\b/extravagant/g
s/\bextrememly\b/extremely/g
s/\bextremeophile\b/extremophile/g
s/\bextremly\b/extremely/g
s/\bextrordinarily\b/extraordinarily/g
s/\bextrordinary\b/extraordinary/g
s/\bfaciliate\b/facilitate/g
s/\bfaciliated\b/facilitated/g
s/\bfaciliates\b/facilitates/g
s/\bfacilites\b/facilities/g
s/\bfacillitate\b/facilitate/g
s/\bfacinated\b/fascinated/g
s/\bfacist\b/fascist/g
s/\bfamiles\b/families/g
s/\bfamilliar\b/familiar/g
s/\bfamoust\b/famous/g
s/\bfanatism\b/fanaticism/g
s/\bFarenheit\b/Fahrenheit/g
s/\bfatc\b/fact/g
s/\bfaught\b/fought/g
s/\bfavoutrable\b/favourable/g
s/\bfeasable\b/feasible/g
s/\bFebuary\b/February/g
s/\bFeburary\b/February/g
s/\bfedreally\b/federally/g
s/\bfemminist\b/feminist/g
s/\bferomone\b/pheromone/g
s/\bfertily\b/fertility/g
s/\bfianite\b/finite/g
s/\bfianlly\b/finally/g
s/\bficticious\b/fictitious/g
s/\bfictious\b/fictitious/g
s/\bfidn\b/find/g
s/\bfiercly\b/fiercely/g
s/\bfightings\b/fighting/g
s/\bfiliament\b/filament/g
s/\bfimilies\b/families/g
s/\bfinacial\b/financial/g
s/\bfinaly\b/finally/g
s/\bfinancialy\b/financially/g
s/\bfirends\b/friends/g
s/\bfisionable\b/fissionable/g
s/\bflamable\b/flammable/g
s/\bflawess\b/flawless/g
s/\bFlemmish\b/Flemish/g
s/\bflorescent\b/fluorescent/g
s/\bflourescent\b/fluorescent/g
s/\bflourine\b/fluorine/g
s/\bfluorish\b/flourish/g
s/\bflourishment\b/flourishing/g
s/\bfollwoing\b/following/g
s/\bfolowing\b/following/g
s/\bfomed\b/formed/g
s/\bfonetic\b/phonetic/g
s/\bfontrier\b/fontier/g
s/\bfoootball\b/football/g
s/\bforbad\b/forbade/g
s/\bforbiden\b/forbidden/g
s/\bforeward\b/foreword/g
s/\bforfiet\b/forfeit/g
s/\bforhead\b/forehead/g
s/\bforiegn\b/foreign/g
s/\bFormalhaut\b/Fomalhaut/g
s/\bformallize\b/formalize/g
s/\bformallized\b/formalized/g
s/\bformelly\b/formerly/g
s/\bformidible\b/formidable/g
s/\bformost\b/foremost/g
s/\bforsaw\b/foresaw/g
s/\bforseeable\b/foreseeable/g
s/\bfortelling\b/foretelling/g
s/\bforunner\b/forerunner/g
s/\bfoucs\b/focus/g
s/\bfoudn\b/found/g
s/\bfougth\b/fought/g
s/\bfoundaries\b/foundries/g
s/\bfoundary\b/foundry/g
s/\bFoundland\b/Newfoundland/g
s/\bfourties\b/forties/g
s/\bfourty\b/forty/g
s/\bfouth\b/fourth/g
s/\bfoward\b/forward/g
s/\bFransiscan\b/Franciscan/g
s/\bFransiscans\b/Franciscans/g
s/\bfreind\b/friend/g
s/\bfreindly\b/friendly/g
s/\bfrequentily\b/frequently/g
s/\bfrome\b/from/g
s/\bfromed\b/formed/g
s/\bfroniter\b/frontier/g
s/\bfucntion\b/function/g
s/\bfucntioning\b/functioning/g
s/\bfufill\b/fulfill/g
s/\bfufilled\b/fulfilled/g
s/\bfulfiled\b/fulfilled/g
s/\bfullfill\b/fulfill/g
s/\bfullfilled\b/fulfilled/g
s/\bfundametal\b/fundamental/g
s/\bfundametals\b/fundamentals/g
s/\bfunguses\b/fungi/g
s/\bfuntion\b/function/g
s/\bfuruther\b/further/g
s/\bfuther\b/further/g
s/\bfuthermore\b/furthermore/g
s/\bgalatic\b/galactic/g
s/\bGalations\b/Galatians/g
s/\bgallaxies\b/galaxies/g
s/\bgalvinized\b/galvanized/g
s/\bGameboy\b/Game Boy/g
s/\bganerate\b/generate/g
s/\bganes\b/games/g
s/\bganster\b/gangster/g
s/\bgarantee\b/guarantee/g
s/\bgaranteed\b/guaranteed/g
s/\bgarantees\b/guarantees/g
s/\bgardai\b/gardaí/g
s/\bgarnison\b/garrison/g
s/\bgauarana\b/guaraná/g
s/\bgaurantee\b/guarantee/g
s/\bgauranteed\b/guaranteed/g
s/\bgaurantees\b/guarantees/g
s/\bgaurentee\b/guarantee/g
s/\bgaurenteed\b/guaranteed/g
s/\bgaurentees\b/guarantees/g
s/\bgeneological\b/genealogical/g
s/\bgeneologies\b/genealogies/g
s/\bgeneology\b/genealogy/g
s/\bgeneraly\b/generally/g
s/\bgeneratting\b/generating/g
s/\bgenialia\b/genitalia/g
s/\bgeographicial\b/geographical/g
s/\bgeometrician\b/geometer/g
s/\bgeometricians\b/geometers/g
s/\bgerat\b/great/g
s/\bGhandi\b/Gandhi/g
s/\bglamourous\b/glamorous/g
s/\bglight\b/flight/g
s/\bgnawwed\b/gnawed/g
s/\bgodess\b/goddess/g
s/\bgodesses\b/goddesses/g
s/\bGodounov\b/Godunov/g
s/\bgoign\b/going/g
s/\bgonig\b/going/g
s/\bGothenberg\b/Gothenburg/g
s/\bGottleib\b/Gottlieb/g
s/\bgouvener\b/governor/g
s/\bgovement\b/government/g
s/\bgovenment\b/government/g
s/\bgovenrment\b/government/g
s/\bgoverance\b/governance/g
s/\bgoverment\b/government/g
s/\bgovermental\b/governmental/g
s/\bgoverner\b/governor/g
s/\bgovernmnet\b/government/g
s/\bgovorment\b/government/g
s/\bgovormental\b/governmental/g
s/\bgovornment\b/government/g
s/\bgracefull\b/graceful/g
s/\bgraet\b/great/g
s/\bgrafitti\b/graffiti/g
s/\bgramatically\b/grammatically/g
s/\bgrammaticaly\b/grammatically/g
s/\bgrammer\b/grammar/g
s/\bgrat\b/great/g
s/\bgratuitious\b/gratuitous/g
s/\bgreatful\b/grateful/g
s/\bgreatfully\b/gratefully/g
s/\bgreif\b/grief/g
s/\bgridles\b/griddles/g
s/\bgropu\b/group/g
s/\bgrwo\b/grow/g
s/\bguage\b/gauge/g
s/\bguarentee\b/guarantee/g
s/\bguarenteed\b/guaranteed/g
s/\bguarentees\b/guarantees/g
s/\bGuatamala\b/Guatemala/g
s/\bGuatamalan\b/Guatemalan/g
s/\bguerrila\b/guerrilla/g
s/\bguerrilas\b/guerrillas/g
s/\bguidence\b/guidance/g
s/\bGuilia\b/Giulia/g
s/\bGuilio\b/Giulio/g
s/\bGuiness\b/Guinness/g
s/\bGuiseppe\b/Giuseppe/g
s/\bgunanine\b/guanine/g
s/\bgurantee\b/guarantee/g
s/\bguranteed\b/guaranteed/g
s/\bgurantees\b/guarantees/g
s/\bguttaral\b/guttural/g
s/\bgutteral\b/guttural/g
s/\bhabaeus\b/habeas/g
s/\bhabeus\b/habeas/g
s/\bHabsbourg\b/Habsburg/g
s/\bhaemorrage\b/haemorrhage/g
s/\bhalarious\b/hilarious/g
s/\bhalp\b/help/g
s/\bhapen\b/happen/g
s/\bhapened\b/happened/g
s/\bhapening\b/happening/g
s/\bhappend\b/happened/g
s/\bhappended\b/happened/g
s/\bhappenned\b/happened/g
s/\bharased\b/harassed/g
s/\bharases\b/harasses/g
s/\bharasment\b/harassment/g
s/\bharasments\b/harassments/g
s/\bharassement\b/harassment/g
s/\bharras\b/harass/g
s/\bharrased\b/harassed/g
s/\bharrases\b/harasses/g
s/\bharrasing\b/harassing/g
s/\bharrasment\b/harassment/g
s/\bharrasments\b/harassments/g
s/\bharrassed\b/harassed/g
s/\bharrasses\b/harassed/g
s/\bharrassing\b/harassing/g
s/\bharrassment\b/harassment/g
s/\bharrassments\b/harassments/g
s/\bhasnt\b/hasn't/g
s/\bHatian\b/Haitian/g
s/\bhaviest\b/heaviest/g
s/\bheadquarer\b/headquarter/g
s/\bheadquater\b/headquarter/g
s/\bheadquatered\b/headquartered/g
s/\bheadquaters\b/headquarters/g
s/\bhealthercare\b/healthcare/g
s/\bheared\b/heard/g
s/\bheathy\b/healthy/g
s/\bHeidelburg\b/Heidelberg/g
s/\bheigher\b/higher/g
s/\bheirarchy\b/hierarchy/g
s/\bheiroglyphics\b/hieroglyphics/g
s/\bhelment\b/helmet/g
s/\bhelpfull\b/helpful/g
s/\bhelpped\b/helped/g
s/\bhemmorhage\b/hemorrhage/g
s/\bheridity\b/heredity/g
s/\bheroe\b/hero/g
s/\bheros\b/heroes/g
s/\bhertiage\b/heritage/g
s/\bhertzs\b/hertz/g
s/\bhesistant\b/hesitant/g
s/\bheterogenous\b/heterogeneous/g
s/\bhieght\b/height/g
s/\bhierachical\b/hierarchical/g
s/\bhierachies\b/hierarchies/g
s/\bhierachy\b/hierarchy/g
s/\bhierarcical\b/hierarchical/g
s/\bhierarcy\b/hierarchy/g
s/\bhieroglph\b/hieroglyph/g
s/\bhieroglphs\b/hieroglyphs/g
s/\bhiger\b/higher/g
s/\bhigest\b/highest/g
s/\bhigway\b/highway/g
s/\bhillarious\b/hilarious/g
s/\bhimselv\b/himself/g
s/\bhinderance\b/hindrance/g
s/\bhinderence\b/hindrance/g
s/\bhindrence\b/hindrance/g
s/\bhipopotamus\b/hippopotamus/g
s/\bhismelf\b/himself/g
s/\bhistocompatability\b/histocompatibility/g
s/\bhistoricians\b/historians/g
s/\bhitsingles\b/hit singles/g
s/\bholf\b/hold/g
s/\bholliday\b/holiday/g
s/\bhomestate\b/home state/g
s/\bhomogeneize\b/homogenize/g
s/\bhomogeneized\b/homogenized/g
s/\bhonory\b/honorary/g
s/\bhorrifing\b/horrifying/g
s/\bhosited\b/hoisted/g
s/\bhospitible\b/hospitable/g
s/\bhounour\b/honour/g
s/\bhowver\b/however/g
s/\bhsitorians\b/historians/g
s/\bhstory\b/history/g
s/\bhtey\b/they/g
s/\bhtikn\b/think/g
s/\bhting\b/thing/g
s/\bhtink\b/think/g
s/\bhtis\b/this/g
s/\bhuminoid\b/humanoid/g
s/\bhumoural\b/humoral/g
s/\bhumurous\b/humorous/g
s/\bhusban\b/husband/g
s/\bhvae\b/have/g
s/\bhvaing\b/having/g
s/\bhwihc\b/which/g
s/\bhwile\b/while/g
s/\bhwole\b/whole/g
s/\bhydogen\b/hydrogen/g
s/\bhydropile\b/hydrophile/g
s/\bhydropilic\b/hydrophilic/g
s/\bhydropobe\b/hydrophobe/g
s/\bhydropobic\b/hydrophobic/g
s/\bhygeine\b/hygiene/g
s/\bhyjack\b/hijack/g
s/\bhyjacking\b/hijacking/g
s/\bhypocracy\b/hypocrisy/g
s/\bhypocrasy\b/hypocrisy/g
s/\bhypocricy\b/hypocrisy/g
s/\bhypocrit\b/hypocrite/g
s/\bhypocrits\b/hypocrites/g
s/\biconclastic\b/iconoclastic/g
s/\bidaeidae\b/idea/g
s/\bidaes\b/ideas/g
s/\bidealogies\b/ideologies/g
s/\bidealogy\b/ideology/g
s/\bidenticial\b/identical/g
s/\bidentifers\b/identifiers/g
s/\bideosyncratic\b/idiosyncratic/g
s/\bidiosyncracy\b/idiosyncrasy/g
s/\bIhaca\b/Ithaca/g
s/\billegimacy\b/illegitimacy/g
s/\billegitmate\b/illegitimate/g
s/\billess\b/illness/g
s/\billiegal\b/illegal/g
s/\billution\b/illusion/g
s/\bilness\b/illness/g
s/\bilogical\b/illogical/g
s/\bimagenary\b/imaginary/g
s/\bimagin\b/imagine/g
s/\bimcomplete\b/incomplete/g
s/\bimediately\b/immediately/g
s/\bimense\b/immense/g
s/\bimmediatley\b/immediately/g
s/\bimmediatly\b/immediately/g
s/\bimmidately\b/immediately/g
s/\bimmidiately\b/immediately/g
s/\bimmitate\b/imitate/g
s/\bimmitated\b/imitated/g
s/\bimmitating\b/imitating/g
s/\bimmitator\b/imitator/g
s/\bimmunosupressant\b/immunosuppressant/g
s/\bimpecabbly\b/impeccably/g
s/\bimpedence\b/impedance/g
s/\bimplamenting\b/implementing/g
s/\bimpliment\b/implement/g
s/\bimplimented\b/implemented/g
s/\bimploys\b/employs/g
s/\bimportamt\b/important/g
s/\bimpressario\b/impresario/g
s/\bimprioned\b/imprisoned/g
s/\bimprisonned\b/imprisoned/g
s/\bimprovision\b/improvisation/g
s/\bimprovments\b/improvements/g
s/\binablility\b/inability/g
s/\binaccessable\b/inaccessible/g
s/\binadiquate\b/inadequate/g
s/\binadquate\b/inadequate/g
s/\binadvertant\b/inadvertent/g
s/\binadvertantly\b/inadvertently/g
s/\binagurated\b/inaugurated/g
s/\binaguration\b/inauguration/g
s/\binappropiate\b/inappropriate/g
s/\binaugures\b/inaugurates/g
s/\binbalance\b/imbalance/g
s/\binbalanced\b/imbalanced/g
s/\binbetween\b/between/g
s/\bincarcirated\b/incarcerated/g
s/\bincidentially\b/incidentally/g
s/\bincidently\b/incidentally/g
s/\binclreased\b/increased/g
s/\binclud\b/include/g
s/\bincludng\b/including/g
s/\bincompatabilities\b/incompatibilities/g
s/\bincompatability\b/incompatibility/g
s/\bincompatable\b/incompatible/g
s/\bincompatablities\b/incompatibilities/g
s/\bincompatablity\b/incompatibility/g
s/\bincompatiblities\b/incompatibilities/g
s/\bincompatiblity\b/incompatibility/g
s/\bincompetance\b/incompetence/g
s/\bincompetant\b/incompetent/g
s/\bincomptable\b/incompatible/g
s/\bincomptetent\b/incompetent/g
s/\binconsistant\b/inconsistent/g
s/\bincoroporated\b/incorporated/g
s/\bincorperation\b/incorporation/g
s/\bincorportaed\b/incorporated/g
s/\bincorprates\b/incorporates/g
s/\bincorruptable\b/incorruptible/g
s/\bincramentally\b/incrementally/g
s/\bincreadible\b/incredible/g
s/\bincredable\b/incredible/g
s/\binctroduce\b/introduce/g
s/\binctroduced\b/introduced/g
s/\bincuding\b/including/g
s/\bincunabla\b/incunabula/g
s/\bindefinately\b/indefinitely/g
s/\bindefineable\b/undefinable/g
s/\bindefinitly\b/indefinitely/g
s/\bindentical\b/identical/g
s/\bindepedantly\b/independently/g
s/\bindepedence\b/independence/g
s/\bindependance\b/independence/g
s/\bindependant\b/independent/g
s/\bindependantly\b/independently/g
s/\bindependece\b/independence/g
s/\bindependendet\b/independent/g
s/\bindespensable\b/indispensable/g
s/\bindespensible\b/indispensable/g
s/\bindictement\b/indictment/g
s/\bindigineous\b/indigenous/g
s/\bindipendence\b/independence/g
s/\bindipendent\b/independent/g
s/\bindipendently\b/independently/g
s/\bindispensible\b/indispensable/g
s/\bindisputible\b/indisputable/g
s/\bindisputibly\b/indisputably/g
s/\bindite\b/indict/g
s/\bindividualy\b/individually/g
s/\bindpendent\b/independent/g
s/\bindpendently\b/independently/g
s/\bindulgue\b/indulge/g
s/\bindutrial\b/industrial/g
s/\bindviduals\b/individuals/g
s/\binefficienty\b/inefficiently/g
s/\binevatible\b/inevitable/g
s/\binevitible\b/inevitable/g
s/\binevititably\b/inevitably/g
s/\binfalability\b/infallibility/g
s/\binfallable\b/infallible/g
s/\binfectuous\b/infectious/g
s/\binfered\b/inferred/g
s/\binfilitrate\b/infiltrate/g
s/\binfilitrated\b/infiltrated/g
s/\binfilitration\b/infiltration/g
s/\binfinit\b/infinite/g
s/\binflamation\b/inflammation/g
s/\binfluencial\b/influential/g
s/\binfluented\b/influenced/g
s/\binfomation\b/information/g
s/\binformtion\b/information/g
s/\binfrantryman\b/infantryman/g
s/\binfrigement\b/infringement/g
s/\bingenius\b/ingenious/g
s/\bingreediants\b/ingredients/g
s/\binhabitans\b/inhabitants/g
s/\binherantly\b/inherently/g
s/\binheritence\b/inheritance/g
s/\binital\b/initial/g
s/\binitally\b/initially/g
s/\binitation\b/initiation/g
s/\binitiaitive\b/initiative/g
s/\binlcuding\b/including/g
s/\binmigrant\b/immigrant/g
s/\binmigrants\b/immigrants/g
s/\binnoculated\b/inoculated/g
s/\binocence\b/innocence/g
s/\binofficial\b/unofficial/g
s/\binot\b/into/g
s/\binpeach\b/impeach/g
s/\binpending\b/impending/g
s/\binpenetrable\b/impenetrable/g
s/\binpolite\b/impolite/g
s/\binprisonment\b/imprisonment/g
s/\binproving\b/improving/g
s/\binsectiverous\b/insectivorous/g
s/\binsensative\b/insensitive/g
s/\binseperable\b/inseparable/g
s/\binsistance\b/insistence/g
s/\binsitution\b/institution/g
s/\binsitutions\b/institutions/g
s/\binstade\b/instead/g
s/\binstatance\b/instance/g
s/\binstitue\b/institute/g
s/\binstuction\b/instruction/g
s/\binstuments\b/instruments/g
s/\binstutionalized\b/institutionalized/g
s/\binstutions\b/intuitions/g
s/\binsurence\b/insurance/g
s/\bintelectual\b/intellectual/g
s/\binteligence\b/intelligence/g
s/\binteligent\b/intelligent/g
s/\bintenational\b/international/g
s/\bintepretation\b/interpretation/g
s/\bintepretator\b/interpretor/g
s/\binterational\b/international/g
s/\binterchangable\b/interchangeable/g
s/\binterchangably\b/interchangeably/g
s/\bintercontinential\b/intercontinental/g
s/\bintercontinetal\b/intercontinental/g
s/\binterelated\b/interrelated/g
s/\binterferance\b/interference/g
s/\binterfereing\b/interfering/g
s/\bintergrated\b/integrated/g
s/\bintergration\b/integration/g
s/\binterm\b/interim/g
s/\binternation\b/international/g
s/\binterpet\b/interpret/g
s/\binterrim\b/interim/g
s/\binterrugum\b/interregnum/g
s/\bintertaining\b/entertaining/g
s/\binterupt\b/interrupt/g
s/\bintervines\b/intervenes/g
s/\bintevene\b/intervene/g
s/\bintial\b/initial/g
s/\bintially\b/initially/g
s/\bintrduced\b/introduced/g
s/\bintrest\b/interest/g
s/\bintrodued\b/introduced/g
s/\bintruduced\b/introduced/g
s/\bintrument\b/instrument/g
s/\bintrumental\b/instrumental/g
s/\bintruments\b/instruments/g
s/\bintrusted\b/entrusted/g
s/\bintutive\b/intuitive/g
s/\bintutively\b/intuitively/g
s/\binudstry\b/industry/g
s/\binventer\b/inventor/g
s/\binvertibrates\b/invertebrates/g
s/\binvestingate\b/investigate/g
s/\binvolvment\b/involvement/g
s/\birelevent\b/irrelevant/g
s/\biresistable\b/irresistible/g
s/\biresistably\b/irresistibly/g
s/\biresistible\b/irresistible/g
s/\biresistibly\b/irresistibly/g
s/\biritable\b/irritable/g
s/\biritated\b/irritated/g
s/\bironicly\b/ironically/g
s/\birregardless\b/regardless/g
s/\birrelevent\b/irrelevant/g
s/\birreplacable\b/irreplaceable/g
s/\birresistable\b/irresistible/g
s/\birresistably\b/irresistibly/g
s/\bisnt\b/isn't/g
s/\bIsraelies\b/Israelis/g
s/\bissueing\b/issuing/g
s/\bitnroduced\b/introduced/g
s/\biunior\b/junior/g
s/\biwll\b/will/g
s/\biwth\b/with/g
s/\bJanurary\b/January/g
s/\bJanuray\b/January/g
s/\bJapanes\b/Japanese/g
s/\bjaques\b/jacques/g
s/\bjeapardy\b/jeopardy/g
s/\bjewllery\b/jewellery/g
s/\bJohanine\b/Johannine/g
s/\bjorunal\b/journal/g
s/\bJospeh\b/Joseph/g
s/\bjouney\b/journey/g
s/\bjournied\b/journeyed/g
s/\bjournies\b/journeys/g
s/\bjstu\b/just/g
s/\bjsut\b/just/g
s/\bJuadaism\b/Judaism/g
s/\bJuadism\b/Judaism/g
s/\bjudical\b/judicial/g
s/\bjudisuary\b/judiciary/g
s/\bjuducial\b/judicial/g
s/\bjuristiction\b/jurisdiction/g
s/\bjuristictions\b/jurisdictions/g
s/\bkindergarden\b/kindergarten/g
s/\bklenex\b/kleenex/g
s/\bknifes\b/knives/g
s/\bknive\b/knife/g
s/\bknowlege\b/knowledge/g
s/\bknowlegeable\b/knowledgeable/g
s/\bknwo\b/know/g
s/\bknwos\b/knows/g
s/\bkonw\b/know/g
s/\bkonws\b/knows/g
s/\bkwno\b/know/g
s/\blabratory\b/laboratory/g
s/\blaguage\b/language/g
s/\blaguages\b/languages/g
s/\blarg\b/large/g
s/\blargst\b/largest/g
s/\blarrry\b/larry/g
s/\blastr\b/last/g
s/\blattitude\b/latitude/g
s/\blaunhed\b/launched/g
s/\blavae\b/larvae/g
s/\blayed\b/laid/g
s/\blazyness\b/laziness/g
s/\bleage\b/league/g
s/\bleathal\b/lethal/g
s/\blefted\b/left/g
s/\blegitamate\b/legitimate/g
s/\blegitmate\b/legitimate/g
s/\bleibnitz\b/leibniz/g
s/\blenght\b/length/g
s/\bleran\b/learn/g
s/\blerans\b/learns/g
s/\bleutenant\b/lieutenant/g
s/\blevetate\b/levitate/g
s/\blevetated\b/levitated/g
s/\blevetates\b/levitates/g
s/\blevetating\b/levitating/g
s/\blevle\b/level/g
s/\bliasion\b/liaison/g
s/\bliason\b/liaison/g
s/\bliasons\b/liaisons/g
s/\blibary\b/library/g
s/\blibell\b/libel/g
s/\blibguistic\b/linguistic/g
s/\blibguistics\b/linguistics/g
s/\blibitarianisn\b/libertarianism/g
s/\blieing\b/lying/g
s/\bliek\b/like/g
s/\bliekd\b/liked/g
s/\bliesure\b/leisure/g
s/\blieuenant\b/lieutenant/g
s/\blieved\b/lived/g
s/\bliftime\b/lifetime/g
s/\blightyear\b/light year/g
s/\blightyears\b/light years/g
s/\blikelyhood\b/likelihood/g
s/\blinnaena\b/linnaean/g
s/\blippizaner\b/lipizzaner/g
s/\bliquify\b/liquefy/g
s/\blistners\b/listeners/g
s/\blitature\b/literature/g
s/\bliteraly\b/literally/g
s/\bliterture\b/literature/g
s/\blittel\b/little/g
s/\blitterally\b/literally/g
s/\bliuke\b/like/g
s/\blivley\b/lively/g
s/\blmits\b/limits/g
s/\bloev\b/love/g
s/\blonelyness\b/loneliness/g
s/\blongitudonal\b/longitudinal/g
s/\blonley\b/lonely/g
s/\bloosing\b/losing/g
s/\blotharingen\b/lothringen/g
s/\blsat\b/last/g
s/\blukid\b/likud/g
s/\blveo\b/love/g
s/\blvoe\b/love/g
s/\bLybia\b/Libya/g
s/\bmackeral\b/mackerel/g
s/\bmagasine\b/magazine/g
s/\bmagizine\b/magazine/g
s/\bmagisine\b/magazine/g
s/\bmagincian\b/magician/g
s/\bmagnificient\b/magnificent/g
s/\bmagolia\b/magnolia/g
s/\bmailny\b/mainly/g
s/\bmaintainance\b/maintenance/g
s/\bmaintainence\b/maintenance/g
s/\bmaintance\b/maintenance/g
s/\bmaintenence\b/maintenance/g
s/\bmaintinaing\b/maintaining/g
s/\bmaintioned\b/mentioned/g
s/\bmajoroty\b/majority/g
s/\bmakse\b/makes/g
s/\bMalcom\b/Malcolm/g
s/\bmaltesian\b/Maltese/g
s/\bmamal\b/mammal/g
s/\bmamalian\b/mammalian/g
s/\bmanagment\b/management/g
s/\bmaneouvre\b/manoeuvre/g
s/\bmaneouvred\b/manoeuvred/g
s/\bmaneouvres\b/manoeuvres/g
s/\bmaneouvring\b/manoeuvring/g
s/\bmanisfestations\b/manifestations/g
s/\bmanoeuverability\b/maneuverability/g
s/\bmantained\b/maintained/g
s/\bmanufacturedd\b/manufactured/g
s/\bmanufature\b/manufacture/g
s/\bmanufatured\b/manufactured/g
s/\bmanufaturing\b/manufacturing/g
s/\bmanuver\b/maneuver/g
s/\bmariage\b/marriage/g
s/\bmarjority\b/majority/g
s/\bmarkes\b/marks/g
s/\bmarketting\b/marketing/g
s/\bmarmelade\b/marmalade/g
s/\bmarrage\b/marriage/g
s/\bmarraige\b/marriage/g
s/\bmarrtyred\b/martyred/g
s/\bmarryied\b/married/g
s/\bMassachussets\b/Massachusetts/g
s/\bMassachussetts\b/Massachusetts/g
s/\bmassmedia\b/mass media/g
s/\bmasterbation\b/masturbation/g
s/\bmataphysical\b/metaphysical/g
s/\bmateralists\b/materialist/g
s/\bmathamatics\b/mathematics/g
s/\bmathematican\b/mathematician/g
s/\bmathematicas\b/mathematics/g
s/\bmatheticians\b/mathematicians/g
s/\bmathmatically\b/mathematically/g
s/\bmathmatician\b/mathematician/g
s/\bmathmaticians\b/mathematicians/g
s/\bmccarthyst\b/mccarthyist/g
s/\bmchanics\b/mechanics/g
s/\bmeaninng\b/meaning/g
s/\bmechandise\b/merchandise/g
s/\bmedacine\b/medicine/g
s/\bmedeival\b/medieval/g
s/\bmedevial\b/medieval/g
s/\bmediciney\b/mediciny/g
s/\bmedievel\b/medieval/g
s/\bmediterainnean\b/mediterranean/g
s/\bMediteranean\b/Mediterranean/g
s/\bmeerkrat\b/meerkat/g
s/\bmelieux\b/milieux/g
s/\bmembranaphone\b/membranophone/g
s/\bmemeber\b/member/g
s/\bmenally\b/mentally/g
s/\bmercentile\b/mercantile/g
s/\bmessanger\b/messenger/g
s/\bmessenging\b/messaging/g
s/\bmetalic\b/metallic/g
s/\bmetalurgic\b/metallurgic/g
s/\bmetalurgical\b/metallurgical/g
s/\bmetalurgy\b/metallurgy/g
s/\bmetamorphysis\b/metamorphosis/g
s/\bmetaphoricial\b/metaphorical/g
s/\bmeterologist\b/meteorologist/g
s/\bmeterology\b/meteorology/g
s/\bmethaphor\b/metaphor/g
s/\bmethaphors\b/metaphors/g
s/\bMichagan\b/Michigan/g
s/\bmicoscopy\b/microscopy/g
s/\bmidwifes\b/midwives/g
s/\bmileau\b/milieu/g
s/\bmilennia\b/millennia/g
s/\bmilennium\b/millennium/g
s/\bmileu\b/milieu/g
s/\bmiliary\b/military/g
s/\bmiligram\b/milligram/g
s/\bmilion\b/million/g
s/\bmiliraty\b/military/g
s/\bmillenia\b/millennia/g
s/\bmillenial\b/millennial/g
s/\bmillenialism\b/millennialism/g
s/\bmillenium\b/millennium/g
s/\bmillepede\b/millipede/g
s/\bmillioniare\b/millionaire/g
s/\bmillitant\b/militant/g
s/\bmillitary\b/military/g
s/\bmillon\b/million/g
s/\bmiltary\b/military/g
s/\bminature\b/miniature/g
s/\bminerial\b/mineral/g
s/\bministery\b/ministry/g
s/\bminsitry\b/ministry/g
s/\bminstries\b/ministries/g
s/\bminstry\b/ministry/g
s/\bminumum\b/minimum/g
s/\bmirrorred\b/mirrored/g
s/\bmiscelaneous\b/miscellaneous/g
s/\bmiscellanious\b/miscellaneous/g
s/\bmiscellanous\b/miscellaneous/g
s/\bmischeivous\b/mischievous/g
s/\bmischevious\b/mischievous/g
s/\bmischievious\b/mischievous/g
s/\bmisdameanor\b/misdemeanor/g
s/\bmisdameanors\b/misdemeanors/g
s/\bmisdemenor\b/misdemeanor/g
s/\bmisdemenors\b/misdemeanors/g
s/\bmisfourtunes\b/misfortunes/g
s/\bmisile\b/missile/g
s/\bMisouri\b/Missouri/g
s/\bmispell\b/misspell/g
s/\bmispelled\b/misspelled/g
s/\bmispelling\b/misspelling/g
s/\bmissen\b/mizzen/g
s/\bMissisipi\b/Mississippi/g
s/\bMissisippi\b/Mississippi/g
s/\bmissle\b/missile/g
s/\bmissonary\b/missionary/g
s/\bmisterious\b/mysterious/g
s/\bmistery\b/mystery/g
s/\bmisteryous\b/mysterious/g
s/\bmkae\b/make/g
s/\bmkaes\b/makes/g
s/\bmkaing\b/making/g
s/\bmkea\b/make/g
s/\bmoderm\b/modem/g
s/\bmodle\b/model/g
s/\bmoent\b/moment/g
s/\bmoeny\b/money/g
s/\bmohammedans\b/muslims/g
s/\bmoil\b/mohel/g
s/\bmoil\b/soil/g
s/\bmoleclues\b/molecules/g
s/\bmomento\b/memento/g
s/\bmonestaries\b/monasteries/g
s/\bmonickers\b/monikers/g
s/\bmonolite\b/monolithic/g
s/\bmontains\b/mountains/g
s/\bmontanous\b/mountainous/g
s/\bMontnana\b/Montana/g
s/\bmonts\b/months/g
s/\bmontypic\b/monotypic/g
s/\bmorgage\b/mortgage/g
s/\bMorisette\b/Morissette/g
s/\bMorrisette\b/Morissette/g
s/\bmorroccan\b/moroccan/g
s/\bmorrocco\b/morocco/g
s/\bmorroco\b/morocco/g
s/\bmortage\b/mortgage/g
s/\bmosture\b/moisture/g
s/\bmotiviated\b/motivated/g
s/\bmounth\b/month/g
s/\bmovei\b/movie/g
s/\bmovment\b/movement/g
s/\bmroe\b/more/g
s/\bmucuous\b/mucous/g
s/\bmuder\b/murder/g
s/\bmudering\b/murdering/g
s/\bmuhammadan\b/muslim/g
s/\bmulticultralism\b/multiculturalism/g
s/\bmultipled\b/multiplied/g
s/\bmultiplers\b/multipliers/g
s/\bmunbers\b/numbers/g
s/\bmuncipalities\b/municipalities/g
s/\bmuncipality\b/municipality/g
s/\bmunnicipality\b/municipality/g
s/\bmuscial\b/musical/g
s/\bmuscician\b/musician/g
s/\bmuscicians\b/musicians/g
s/\bmutiliated\b/mutilated/g
s/\bmyraid\b/myriad/g
s/\bmysef\b/myself/g
s/\bmysogynist\b/misogynist/g
s/\bmysogyny\b/misogyny/g
s/\bmysterous\b/mysterious/g
s/\bMythraic\b/Mithraic/g
s/\bnaieve\b/naive/g
s/\bNaploeon\b/Napoleon/g
s/\bNapolean\b/Napoleon/g
s/\bNapoleonian\b/Napoleonic/g
s/\bnaturaly\b/naturally/g
s/\bnaturely\b/naturally/g
s/\bnaturual\b/natural/g
s/\bnaturually\b/naturally/g
s/\bNazereth\b/Nazareth/g
s/\bneccesarily\b/necessarily/g
s/\bneccesary\b/necessary/g
s/\bneccessarily\b/necessarily/g
s/\bneccessary\b/necessary/g
s/\bneccessities\b/necessities/g
s/\bnecesarily\b/necessarily/g
s/\bnecesary\b/necessary/g
s/\bnecessiate\b/necessitate/g
s/\bneglible\b/negligible/g
s/\bnegligable\b/negligible/g
s/\bnegociate\b/negotiate/g
s/\bnegociation\b/negotiation/g
s/\bnegociations\b/negotiations/g
s/\bnegotation\b/negotiation/g
s/\bneigborhood\b/neighborhood/g
s/\bneigbourhood\b/neighbourhood/g
s/\bneolitic\b/neolithic/g
s/\bnessasarily\b/necessarily/g
s/\bnessecary\b/necessary/g
s/\bnestin\b/nesting/g
s/\bneverthless\b/nevertheless/g
s/\bnewletters\b/newsletters/g
s/\bnickle\b/nickel/g
s/\bnightfa;;\b/nightfall/g
s/\bnightime\b/nighttime/g
s/\bnineth\b/ninth/g
s/\bninteenth\b/nineteenth/g
s/\bninties\b/1990s/g
s/\bninty\b/ninety/g
s/\bnkow\b/know/g
s/\bnkwo\b/know/g
s/\bnmae\b/name/g
s/\bnoncombatents\b/noncombatants/g
s/\bnonsence\b/nonsense/g
s/\bnontheless\b/nonetheless/g
s/\bnoone\b/no one/g
s/\bnorhern\b/northern/g
s/\bnorthen\b/northern/g
s/\bnorthereastern\b/northeastern/g
s/\bnotabley\b/notably/g
s/\bnoteable\b/notable/g
s/\bnoteably\b/notably/g
s/\bnoteriety\b/notoriety/g
s/\bnoth\b/north/g
s/\bnothern\b/northern/g
s/\bnoticable\b/noticeable/g
s/\bnoticably\b/noticeably/g
s/\bnoticeing\b/noticing/g
s/\bnoticible\b/noticeable/g
s/\bnotwhithstanding\b/notwithstanding/g
s/\bnoveau\b/nouveau/g
s/\bNovermber\b/November/g
s/\bnowdays\b/nowadays/g
s/\bnowe\b/now/g
s/\bnto\b/not/g
s/\bnucular\b/nuclear/g
s/\bnuculear\b/nuclear/g
s/\bnuisanse\b/nuisance/g
s/\bNullabour\b/Nullarbor/g
s/\bnumberous\b/numerous/g
s/\bNuremburg\b/Nuremberg/g
s/\bnusance\b/nuisance/g
s/\bnutritent\b/nutrient/g
s/\bnutritents\b/nutrients/g
s/\bnuturing\b/nurturing/g
s/\bobediance\b/obedience/g
s/\bobediant\b/obedient/g
s/\bobession\b/obsession/g
s/\bobssessed\b/obsessed/g
s/\bobstacal\b/obstacle/g
s/\bobstancles\b/obstacles/g
s/\bobstruced\b/obstructed/g
s/\bocasion\b/occasion/g
s/\bocasional\b/occasional/g
s/\bocasionally\b/occasionally/g
s/\bocasionaly\b/occasionally/g
s/\bocasioned\b/occasioned/g
s/\bocasions\b/occasions/g
s/\bocassion\b/occasion/g
s/\bocassional\b/occasional/g
s/\bocassionally\b/occasionally/g
s/\bocassionaly\b/occasionally/g
s/\bocassioned\b/occasioned/g
s/\bocassions\b/occasions/g
s/\boccaison\b/occasion/g
s/\boccassion\b/occasion/g
s/\boccassional\b/occasional/g
s/\boccassionally\b/occasionally/g
s/\boccassionaly\b/occasionally/g
s/\boccassioned\b/occasioned/g
s/\boccassions\b/occasions/g
s/\boccationally\b/occasionally/g
s/\boccour\b/occur/g
s/\boccurance\b/occurrence/g
s/\boccurances\b/occurrences/g
s/\boccured\b/occurred/g
s/\boccurence\b/occurrence/g
s/\boccurences\b/occurrences/g
s/\boccuring\b/occurring/g
s/\boccurr\b/occur/g
s/\boccurrance\b/occurrence/g
s/\boccurrances\b/occurrences/g
s/\boctohedra\b/octahedra/g
s/\boctohedral\b/octahedral/g
s/\boctohedron\b/octahedron/g
s/\bocuntries\b/countries/g
s/\bocuntry\b/country/g
s/\bocurr\b/occur/g
s/\bocurrance\b/occurrence/g
s/\bocurred\b/occurred/g
s/\bocurrence\b/occurrence/g
s/\boffcers\b/officers/g
s/\boffcially\b/officially/g
s/\boffereings\b/offerings/g
s/\boffical\b/official/g
s/\boffically\b/officially/g
s/\bofficals\b/officials/g
s/\bofficaly\b/officially/g
s/\bofficialy\b/officially/g
s/\boffred\b/offered/g
s/\boftenly\b/often/g
s/\bomision\b/omission/g
s/\bomited\b/omitted/g
s/\bomiting\b/omitting/g
s/\bomlette\b/omelette/g
s/\bommision\b/omission/g
s/\bommited\b/omitted/g
s/\bommiting\b/omitting/g
s/\bommitted\b/omitted/g
s/\bommitting\b/omitting/g
s/\bomniverous\b/omnivorous/g
s/\bomniverously\b/omnivorously/g
s/\bomre\b/more/g
s/\bonyl\b/only/g
s/\bopeness\b/openness/g
s/\boponent\b/opponent/g
s/\boportunity\b/opportunity/g
s/\bopose\b/oppose/g
s/\boposite\b/opposite/g
s/\boposition\b/opposition/g
s/\boppenly\b/openly/g
s/\boppinion\b/opinion/g
s/\bopponant\b/opponent/g
s/\boppononent\b/opponent/g
s/\boppositition\b/opposition/g
s/\boppossed\b/opposed/g
s/\bopprotunity\b/opportunity/g
s/\bopression\b/oppression/g
s/\bopressive\b/oppressive/g
s/\bopthalmic\b/ophthalmic/g
s/\bopthalmologist\b/ophthalmologist/g
s/\bopthalmology\b/ophthalmology/g
s/\bopthamologist\b/ophthalmologist/g
s/\boptmizations\b/optimizations/g
s/\boptomism\b/optimism/g
s/\borded\b/ordered/g
s/\borganim\b/organism/g
s/\borganistion\b/organisation/g
s/\borganiztion\b/organization/g
s/\borginal\b/original/g
s/\borginally\b/originally/g
s/\borginize\b/organise/g
s/\boridinarily\b/ordinarily/g
s/\boriganaly\b/originally/g
s/\boriginaly\b/originally/g
s/\boriginially\b/originally/g
s/\boriginnally\b/originally/g
s/\borigional\b/original/g
s/\borignally\b/originally/g
s/\borignially\b/originally/g
s/\botehr\b/other/g
s/\boublisher\b/publisher/g
s/\bouevre\b/oeuvre/g
s/\boustanding\b/outstanding/g
s/\bovershaddowed\b/overshadowed/g
s/\boverthere\b/over there/g
s/\boverwelming\b/overwhelming/g
s/\boverwheliming\b/overwhelming/g
s/\bowrk\b/work/g
s/\bowudl\b/would/g
s/\boxigen\b/oxygen/g
s/\boximoron\b/oxymoron/g
s/\bp0enis\b/penis/g
s/\bpaide\b/paid/g
s/\bpaitience\b/patience/g
s/\bpaleolitic\b/paleolithic/g
s/\bpaliamentarian\b/parliamentarian/g
s/\bPalistian\b/Palestinian/g
s/\bPalistinian\b/Palestinian/g
s/\bPalistinians\b/Palestinians/g
s/\bpallete\b/palette/g
s/\bpamflet\b/pamphlet/g
s/\bpamplet\b/pamphlet/g
s/\bpantomine\b/pantomime/g
s/\bPapanicalou\b/Papanicolaou/g
s/\bparalel\b/parallel/g
s/\bparalell\b/parallel/g
s/\bparalelly\b/parallelly/g
s/\bparalely\b/parallelly/g
s/\bparallely\b/parallelly/g
s/\bparanthesis\b/parenthesis/g
s/\bparaphenalia\b/paraphernalia/g
s/\bparellels\b/parallels/g
s/\bparisitic\b/parasitic/g
s/\bparituclar\b/particular/g
s/\bparliment\b/parliament/g
s/\bparrakeets\b/parakeets/g
s/\bparralel\b/parallel/g
s/\bparrallel\b/parallel/g
s/\bparrallell\b/parallel/g
s/\bparrallelly\b/parallelly/g
s/\bparrallely\b/parallelly/g
s/\bpartialy\b/partially/g
s/\bparticually\b/particularly/g
s/\bparticualr\b/particular/g
s/\bparticuarly\b/particularly/g
s/\bparticularily\b/particularly/g
s/\bparticulary\b/particularly/g
s/\bpary\b/party/g
s/\bpased\b/passed/g
s/\bpasengers\b/passengers/g
s/\bpasserbys\b/passersby/g
s/\bpasttime\b/pastime/g
s/\bpastural\b/pastoral/g
s/\bpaticular\b/particular/g
s/\bpattented\b/patented/g
s/\bpavillion\b/pavilion/g
s/\bpayed\b/paid/g
s/\bpblisher\b/publisher/g
s/\bpbulisher\b/publisher/g
s/\bpeacefuland\b/peaceful and/g
s/\bpeageant\b/pageant/g
s/\bpeaple\b/people/g
s/\bpeaples\b/peoples/g
s/\bpeculure\b/peculiar/g
s/\bpedestrain\b/pedestrian/g
s/\bpeformed\b/performed/g
s/\bpeice\b/piece/g
s/\bPeloponnes\b/Peloponnesus/g
s/\bpenatly\b/penalty/g
s/\bpenerator\b/penetrator/g
s/\bpenisula\b/peninsula/g
s/\bpenisular\b/peninsular/g
s/\bpenninsula\b/peninsula/g
s/\bpenninsular\b/peninsular/g
s/\bpennisula\b/peninsula/g
s/\bPennyslvania\b/Pennsylvania/g
s/\bpensle\b/pencil/g
s/\bpensinula\b/peninsula/g
s/\bpeom\b/poem/g
s/\bpeoms\b/poems/g
s/\bpeopel\b/people/g
s/\bpeopels\b/peoples/g
s/\bpeotry\b/poetry/g
s/\bperade\b/parade/g
s/\bpercepted\b/perceived/g
s/\bpercieve\b/perceive/g
s/\bpercieved\b/perceived/g
s/\bperenially\b/perennially/g
s/\bperfomance\b/performance/g
s/\bperfomers\b/performers/g
s/\bperformence\b/performance/g
s/\bperhasp\b/perhaps/g
s/\bperheaps\b/perhaps/g
s/\bperhpas\b/perhaps/g
s/\bperipathetic\b/peripatetic/g
s/\bperistent\b/persistent/g
s/\bperjery\b/perjury/g
s/\bperjorative\b/pejorative/g
s/\bpermanant\b/permanent/g
s/\bpermenant\b/permanent/g
s/\bpermenantly\b/permanently/g
s/\bpermissable\b/permissible/g
s/\bperogative\b/prerogative/g
s/\bperonal\b/personal/g
s/\bperpertrated\b/perpetrated/g
s/\bperosnality\b/personality/g
s/\bperphas\b/perhaps/g
s/\bperpindicular\b/perpendicular/g
s/\bpersan\b/person/g
s/\bperseverence\b/perseverance/g
s/\bpersistance\b/persistence/g
s/\bpersistant\b/persistent/g
s/\bpersonell\b/personnel/g
s/\bpersonnell\b/personnel/g
s/\bpersuded\b/persuaded/g
s/\bpersue\b/pursue/g
s/\bpersued\b/pursued/g
s/\bpersuing\b/pursuing/g
s/\bpersuit\b/pursuit/g
s/\bpersuits\b/pursuits/g
s/\bpertubation\b/perturbation/g
s/\bpertubations\b/perturbations/g
s/\bpessiary\b/pessary/g
s/\bpetetion\b/petition/g
s/\bPharoah\b/Pharaoh/g
s/\bphenomenom\b/phenomenon/g
s/\bphenomenonal\b/phenomenal/g
s/\bphenomenonly\b/phenomenally/g
s/\bphenomonenon\b/phenomenon/g
s/\bphenomonon\b/phenomenon/g
s/\bphenonmena\b/phenomena/g
s/\bPhilipines\b/Philippines/g
s/\bphilisopher\b/philosopher/g
s/\bphilisophical\b/philosophical/g
s/\bphilisophy\b/philosophy/g
s/\bPhillipine\b/Philippine/g
s/\bPhillipines\b/Philippines/g
s/\bPhillippines\b/Philippines/g
s/\bphillosophically\b/philosophically/g
s/\bphilospher\b/philosopher/g
s/\bphilosphies\b/philosophies/g
s/\bphilosphy\b/philosophy/g
s/\bPhonecian\b/Phoenecian/g
s/\bphongraph\b/phonograph/g
s/\bphylosophical\b/philosophical/g
s/\bphysicaly\b/physically/g
s/\bpiblisher\b/publisher/g
s/\bpich\b/pitch/g
s/\bpilgrimmage\b/pilgrimage/g
s/\bpilgrimmages\b/pilgrimages/g
s/\bpinapple\b/pineapple/g
s/\bpinnaple\b/pineapple/g
s/\bpinoneered\b/pioneered/g
s/\bplagarism\b/plagiarism/g
s/\bplanation\b/plantation/g
s/\bplaned\b/planned/g
s/\bplantiff\b/plaintiff/g
s/\bplateu\b/plateau/g
s/\bplausable\b/plausible/g
s/\bplayright\b/playwright/g
s/\bplaywrite\b/playwright/g
s/\bplaywrites\b/playwrights/g
s/\bpleasent\b/pleasant/g
s/\bplebicite\b/plebiscite/g
s/\bplesant\b/pleasant/g
s/\bpoenis\b/penis/g
s/\bpoeoples\b/peoples/g
s/\bpoety\b/poetry/g
s/\bpoisin\b/poison/g
s/\bpolical\b/political/g
s/\bpolinator\b/pollinator/g
s/\bpolinators\b/pollinators/g
s/\bpolitican\b/politician/g
s/\bpoliticans\b/politicians/g
s/\bpoltical\b/political/g
s/\bpolute\b/pollute/g
s/\bpoluted\b/polluted/g
s/\bpolutes\b/pollutes/g
s/\bpoluting\b/polluting/g
s/\bpolution\b/pollution/g
s/\bpolyphonyic\b/polyphonic/g
s/\bpolysaccaride\b/polysaccharide/g
s/\bpolysaccharid\b/polysaccharide/g
s/\bpomegranite\b/pomegranate/g
s/\bpomotion\b/promotion/g
s/\bpoportional\b/proportional/g
s/\bpopoulation\b/population/g
s/\bpopularaty\b/popularity/g
s/\bpopulare\b/popular/g
s/\bpopuler\b/popular/g
s/\bporshan\b/portion/g
s/\bporshon\b/portion/g
s/\bportait\b/portrait/g
s/\bportayed\b/portrayed/g
s/\bportraing\b/portraying/g
s/\bPortugese\b/Portuguese/g
s/\bportuguease\b/portuguese/g
s/\bportugues\b/Portuguese/g
s/\bposess\b/possess/g
s/\bposessed\b/possessed/g
s/\bposesses\b/possesses/g
s/\bposessing\b/possessing/g
s/\bposession\b/possession/g
s/\bposessions\b/possessions/g
s/\bposion\b/poison/g
s/\bpossable\b/possible/g
s/\bpossably\b/possibly/g
s/\bposseses\b/possesses/g
s/\bpossesing\b/possessing/g
s/\bpossesion\b/possession/g
s/\bpossessess\b/possesses/g
s/\bpossibile\b/possible/g
s/\bpossibilty\b/possibility/g
s/\bpossiblility\b/possibility/g
s/\bpossiblilty\b/possibility/g
s/\bpossiblities\b/possibilities/g
s/\bpossiblity\b/possibility/g
s/\bpossition\b/position/g
s/\bPostdam\b/Potsdam/g
s/\bposthomous\b/posthumous/g
s/\bpostion\b/position/g
s/\bpostive\b/positive/g
s/\bpotatos\b/potatoes/g
s/\bpotrait\b/portrait/g
s/\bpotrayed\b/portrayed/g
s/\bpoulations\b/populations/g
s/\bpoverful\b/powerful/g
s/\bpoweful\b/powerful/g
s/\bpowerfull\b/powerful/g
s/\bppublisher\b/publisher/g
s/\bpractial\b/practical/g
s/\bpractially\b/practically/g
s/\bpracticaly\b/practically/g
s/\bpracticioner\b/practitioner/g
s/\bpracticioners\b/practitioners/g
s/\bpracticly\b/practically/g
s/\bpractioner\b/practitioner/g
s/\bpractioners\b/practitioners/g
s/\bprairy\b/prairie/g
s/\bprarie\b/prairie/g
s/\bpraries\b/prairies/g
s/\bpratice\b/practice/g
s/\bpreample\b/preamble/g
s/\bprecedessor\b/predecessor/g
s/\bpreceed\b/precede/g
s/\bpreceeded\b/preceded/g
s/\bpreceeding\b/preceding/g
s/\bpreceeds\b/precedes/g
s/\bprecentage\b/percentage/g
s/\bprecice\b/precise/g
s/\bprecisly\b/precisely/g
s/\bprecurser\b/precursor/g
s/\bpredecesors\b/predecessors/g
s/\bpredicatble\b/predictable/g
s/\bpredicitons\b/predictions/g
s/\bpredomiantly\b/predominately/g
s/\bprefered\b/preferred/g
s/\bprefering\b/preferring/g
s/\bpreferrably\b/preferably/g
s/\bpregancies\b/pregnancies/g
s/\bpreiod\b/period/g
s/\bpreliferation\b/proliferation/g
s/\bpremeire\b/premiere/g
s/\bpremeired\b/premiered/g
s/\bpremillenial\b/premillennial/g
s/\bpreminence\b/preeminence/g
s/\bpremission\b/permission/g
s/\bPremonasterians\b/Premonstratensians/g
s/\bpreocupation\b/preoccupation/g
s/\bprepair\b/prepare/g
s/\bprepartion\b/preparation/g
s/\bprepatory\b/preparatory/g
s/\bpreperation\b/preparation/g
s/\bpreperations\b/preparations/g
s/\bpreriod\b/period/g
s/\bpresedential\b/presidential/g
s/\bpresense\b/presence/g
s/\bpresidenital\b/presidential/g
s/\bpresidental\b/presidential/g
s/\bpresitgious\b/prestigious/g
s/\bprespective\b/perspective/g
s/\bprestigeous\b/prestigious/g
s/\bprestigous\b/prestigious/g
s/\bpresumabely\b/presumably/g
s/\bpresumibly\b/presumably/g
s/\bpretection\b/protection/g
s/\bprevelant\b/prevalent/g
s/\bpreverse\b/perverse/g
s/\bprevivous\b/previous/g
s/\bpricipal\b/principal/g
s/\bpriciple\b/principle/g
s/\bpriestood\b/priesthood/g
s/\bprimarly\b/primarily/g
s/\bprimative\b/primitive/g
s/\bprimatively\b/primitively/g
s/\bprimatives\b/primitives/g
s/\bprimordal\b/primordial/g
s/\bprinciplaity\b/principality/g
s/\bprincipaly\b/principality/g
s/\bprincipial\b/principal/g
s/\bprinciply\b/principally/g
s/\bprinicipal\b/principal/g
s/\bprivalege\b/privilege/g
s/\bprivaleges\b/privileges/g
s/\bpriveledges\b/privileges/g
s/\bprivelege\b/privilege/g
s/\bpriveleged\b/privileged/g
s/\bpriveleges\b/privileges/g
s/\bprivelige\b/privilege/g
s/\bpriveliged\b/privileged/g
s/\bpriveliges\b/privileges/g
s/\bprivelleges\b/privileges/g
s/\bprivilage\b/privilege/g
s/\bpriviledge\b/privilege/g
s/\bpriviledges\b/privileges/g
s/\bprivledge\b/privilege/g
s/\bprivte\b/private/g
s/\bprobabilaty\b/probability/g
s/\bprobablistic\b/probabilistic/g
s/\bprobablly\b/probably/g
s/\bprobalibity\b/probability/g
s/\bprobaly\b/probably/g
s/\bprobelm\b/problem/g
s/\bproccess\b/process/g
s/\bproccessing\b/processing/g
s/\bprocedger\b/procedure/g
s/\bprocedings\b/proceedings/g
s/\bproceedure\b/procedure/g
s/\bproces\b/process/g
s/\bprocesser\b/processor/g
s/\bproclaimation\b/proclamation/g
s/\bproclamed\b/proclaimed/g
s/\bproclaming\b/proclaiming/g
s/\bproclomation\b/proclamation/g
s/\bprofesor\b/professor/g
s/\bprofesser\b/professor/g
s/\bproffesed\b/professed/g
s/\bproffesion\b/profession/g
s/\bproffesional\b/professional/g
s/\bproffesor\b/professor/g
s/\bprofilic\b/prolific/g
s/\bprogessed\b/progressed/g
s/\bprogidy\b/prodigy/g
s/\bprogramable\b/programmable/g
s/\bprohabition\b/prohibition/g
s/\bprologomena\b/prolegomena/g
s/\bprominance\b/prominence/g
s/\bprominant\b/prominent/g
s/\bprominantly\b/prominently/g
s/\bpromiscous\b/promiscuous/g
s/\bpromotted\b/promoted/g
s/\bpronomial\b/pronominal/g
s/\bpronouced\b/pronounced/g
s/\bpronounched\b/pronounced/g
s/\bpronounciation\b/pronunciation/g
s/\bproove\b/prove/g
s/\bprooved\b/proved/g
s/\bprophacy\b/prophecy/g
s/\bpropietary\b/proprietary/g
s/\bpropmted\b/prompted/g
s/\bpropoganda\b/propaganda/g
s/\bpropogate\b/propagate/g
s/\bpropogates\b/propagates/g
s/\bpropogation\b/propagation/g
s/\bpropostion\b/proposition/g
s/\bpropotions\b/proportions/g
s/\bpropper\b/proper/g
s/\bpropperly\b/properly/g
s/\bproprietory\b/proprietary/g
s/\bproseletyzing\b/proselytizing/g
s/\bprotaganist\b/protagonist/g
s/\bprotaganists\b/protagonists/g
s/\bprotocal\b/protocol/g
s/\bprotoganist\b/protagonist/g
s/\bprotrayed\b/portrayed/g
s/\bprotruberance\b/protuberance/g
s/\bprotruberances\b/protuberances/g
s/\bprouncements\b/pronouncements/g
s/\bprovacative\b/provocative/g
s/\bprovded\b/provided/g
s/\bprovicial\b/provincial/g
s/\bprovinicial\b/provincial/g
s/\bprovisiosn\b/provision/g
s/\bprovisonal\b/provisional/g
s/\bproximty\b/proximity/g
s/\bpseudononymous\b/pseudonymous/g
s/\bpseudonyn\b/pseudonym/g
s/\bpsuedo\b/pseudo/g
s/\bpsycology\b/psychology/g
s/\bpsyhic\b/psychic/g
s/\bpubilsher\b/publisher/g
s/\bpubisher\b/publisher/g
s/\bpubliaher\b/publisher/g
s/\bpublically\b/publicly/g
s/\bpublicaly\b/publicly/g
s/\bpublicher\b/publisher/g
s/\bpublihser\b/publisher/g
s/\bpublisehr\b/publisher/g
s/\bpubliser\b/publisher/g
s/\bpublisger\b/publisher/g
s/\bpublisheed\b/published/g
s/\bpublisherr\b/publisher/g
s/\bpublishher\b/publisher/g
s/\bpublishor\b/publisher/g
s/\bpublishre\b/publisher/g
s/\bpublissher\b/publisher/g
s/\bpubllisher\b/publisher/g
s/\bpublsiher\b/publisher/g
s/\bpublusher\b/publisher/g
s/\bpuchasing\b/purchasing/g
s/\bPucini\b/Puccini/g
s/\bPuertorrican\b/Puerto Rican/g
s/\bPuertorricans\b/Puerto Ricans/g
s/\bpulisher\b/publisher/g
s/\bpumkin\b/pumpkin/g
s/\bpuplisher\b/publisher/g
s/\bpuritannical\b/puritanical/g
s/\bpurposedly\b/purposely/g
s/\bpurpotedly\b/purportedly/g
s/\bpursuade\b/persuade/g
s/\bpursuaded\b/persuaded/g
s/\bpursuades\b/persuades/g
s/\bpususading\b/persuading/g
s/\bputing\b/putting/g
s/\bpwoer\b/power/g
s/\bpyscic\b/psychic/g
s/\bquantaty\b/quantity/g
s/\bquantitiy\b/quantity/g
s/\bquarantaine\b/quarantine/g
s/\bQueenland\b/Queensland/g
s/\bquestonable\b/questionable/g
s/\bquicklyu\b/quickly/g
s/\bquinessential\b/quintessential/g
s/\bquitted\b/quit/g
s/\bquizes\b/quizzes/g
s/\brabinnical\b/rabbinical/g
s/\bracaus\b/raucous/g
s/\bradiactive\b/radioactive/g
s/\bradify\b/ratify/g
s/\braelly\b/really/g
s/\brarified\b/rarefied/g
s/\breaccurring\b/recurring/g
s/\breacing\b/reaching/g
s/\breacll\b/recall/g
s/\breadmition\b/readmission/g
s/\brealitvely\b/relatively/g
s/\brealsitic\b/realistic/g
s/\brealtions\b/relations/g
s/\brealy\b/really/g
s/\brealyl\b/really/g
s/\breasearch\b/research/g
s/\brebiulding\b/rebuilding/g
s/\brebllions\b/rebellions/g
s/\brebounce\b/rebound/g
s/\breccomend\b/recommend/g
s/\breccomendations\b/recommendations/g
s/\breccomended\b/recommended/g
s/\breccomending\b/recommending/g
s/\breccommend\b/recommend/g
s/\breccommended\b/recommended/g
s/\breccommending\b/recommending/g
s/\breccuring\b/recurring/g
s/\breceeded\b/receded/g
s/\breceeding\b/receding/g
s/\breceivedfrom\b/received from/g
s/\brecepient\b/recipient/g
s/\brecepients\b/recipients/g
s/\breceving\b/receiving/g
s/\brechargable\b/rechargeable/g
s/\breched\b/reached/g
s/\brecide\b/reside/g
s/\brecided\b/resided/g
s/\brecident\b/resident/g
s/\brecidents\b/residents/g
s/\breciding\b/residing/g
s/\breciepents\b/recipients/g
s/\breciept\b/receipt/g
s/\brecieve\b/receive/g
s/\brecieved\b/received/g
s/\breciever\b/receiver/g
s/\brecievers\b/receivers/g
s/\brecieves\b/receives/g
s/\brecieving\b/receiving/g
s/\brecipiant\b/recipient/g
s/\brecipiants\b/recipients/g
s/\brecived\b/received/g
s/\brecivership\b/receivership/g
s/\brecogise\b/recognise/g
s/\brecogize\b/recognize/g
s/\brecomend\b/recommend/g
s/\brecomended\b/recommended/g
s/\brecomending\b/recommending/g
s/\brecomends\b/recommends/g
s/\brecommedations\b/recommendations/g
s/\brecompence\b/recompense/g
s/\breconaissance\b/reconnaissance/g
s/\breconcilation\b/reconciliation/g
s/\breconized\b/recognized/g
s/\breconnaisance\b/reconnaissance/g
s/\breconnaissence\b/reconnaissance/g
s/\brecontructed\b/reconstructed/g
s/\brecordproducer\b/record producer/g
s/\brecquired\b/required/g
s/\brecrational\b/recreational/g
s/\brecrod\b/record/g
s/\brecuiting\b/recruiting/g
s/\brecuring\b/recurring/g
s/\brecurrance\b/recurrence/g
s/\brediculous\b/ridiculous/g
s/\breedeming\b/redeeming/g
s/\breenforced\b/reinforced/g
s/\brefect\b/reflect/g
s/\brefedendum\b/referendum/g
s/\breferal\b/referral/g
s/\breferece\b/reference/g
s/\brefereces\b/references/g
s/\brefered\b/referred/g
s/\breferemce\b/reference/g
s/\breferemces\b/references/g
s/\breferencs\b/references/g
s/\breferenece\b/reference/g
s/\brefereneced\b/referenced/g
s/\brefereneces\b/references/g
s/\breferiang\b/referring/g
s/\brefering\b/referring/g
s/\brefernce\b/reference/g
s/\brefernce\b/references/g
s/\brefernces\b/references/g
s/\breferrence\b/reference/g
s/\breferrences\b/references/g
s/\breferrs\b/refers/g
s/\breffered\b/referred/g
s/\brefference\b/reference/g
s/\breffering\b/referring/g
s/\brefrence\b/reference/g
s/\brefrences\b/references/g
s/\brefrers\b/refers/g
s/\brefridgeration\b/refrigeration/g
s/\brefridgerator\b/refrigerator/g
s/\brefromist\b/reformist/g
s/\brefusla\b/refusal/g
s/\bregardes\b/regards/g
s/\bregluar\b/regular/g
s/\breguarly\b/regularly/g
s/\bregulaion\b/regulation/g
s/\bregulaotrs\b/regulators/g
s/\bregularily\b/regularly/g
s/\brehersal\b/rehearsal/g
s/\breicarnation\b/reincarnation/g
s/\breigining\b/reigning/g
s/\breknown\b/renown/g
s/\breknowned\b/renowned/g
s/\brela\b/real/g
s/\brelaly\b/really/g
s/\brelatiopnship\b/relationship/g
s/\brelativly\b/relatively/g
s/\brelected\b/reelected/g
s/\breleive\b/relieve/g
s/\breleived\b/relieved/g
s/\breleiver\b/reliever/g
s/\breleses\b/releases/g
s/\brelevence\b/relevance/g
s/\brelevent\b/relevant/g
s/\breliablity\b/reliability/g
s/\brelient\b/reliant/g
s/\breligeous\b/religious/g
s/\breligous\b/religious/g
s/\breligously\b/religiously/g
s/\brelinqushment\b/relinquishment/g
s/\brelitavely\b/relatively/g
s/\brelpacement\b/replacement/g
s/\bremaing\b/remaining/g
s/\bremeber\b/remember/g
s/\brememberable\b/memorable/g
s/\brememberance\b/remembrance/g
s/\bremembrence\b/remembrance/g
s/\bremenant\b/remnant/g
s/\bremenicent\b/reminiscent/g
s/\breminent\b/remnant/g
s/\breminescent\b/reminiscent/g
s/\breminscent\b/reminiscent/g
s/\breminsicent\b/reminiscent/g
s/\brendevous\b/rendezvous/g
s/\brendezous\b/rendezvous/g
s/\brenedered\b/rende/g
s/\brenewl\b/renewal/g
s/\brennovate\b/renovate/g
s/\brennovated\b/renovated/g
s/\brennovating\b/renovating/g
s/\brennovation\b/renovation/g
s/\brentors\b/renters/g
s/\breoccurrence\b/recurrence/g
s/\breorganision\b/reorganisation/g
s/\brepblic\b/republic/g
s/\brepblican\b/republican/g
s/\brepblicans\b/republicans/g
s/\brepblics\b/republics/g
s/\brepectively\b/respectively/g
s/\brepeition\b/repetition/g
s/\brepentence\b/repentance/g
s/\brepentent\b/repentant/g
s/\brepeteadly\b/repeatedly/g
s/\brepetion\b/repetition/g
s/\brepid\b/rapid/g
s/\breponse\b/response/g
s/\breponsible\b/responsible/g
s/\breportadly\b/reportedly/g
s/\brepresantative\b/representative/g
s/\brepresentive\b/representative/g
s/\brepresentives\b/representatives/g
s/\breproducable\b/reproducible/g
s/\breprtoire\b/repertoire/g
s/\brepsectively\b/respectively/g
s/\breptition\b/repetition/g
s/\brepubic\b/republic/g
s/\brepubican\b/republican/g
s/\brepubicans\b/republicans/g
s/\brepubics\b/republics/g
s/\brepubli\b/republic/g
s/\brepublian\b/republican/g
s/\brepublians\b/republicans/g
s/\brepublis\b/republics/g
s/\brepulic\b/republic/g
s/\brepulican\b/republican/g
s/\brepulicans\b/republicans/g
s/\brepulics\b/republics/g
s/\brequirment\b/requirement/g
s/\brequred\b/required/g
s/\bresaurant\b/restaurant/g
s/\bresembelance\b/resemblance/g
s/\bresembes\b/resembles/g
s/\bresemblence\b/resemblance/g
s/\bresevoir\b/reservoir/g
s/\bresidental\b/residential/g
s/\bresignement\b/resignment/g
s/\bresistable\b/resistible/g
s/\bresistence\b/resistance/g
s/\bresistent\b/resistant/g
s/\brespectivly\b/respectively/g
s/\bresponce\b/response/g
s/\bresponibilities\b/responsibilities/g
s/\bresponisble\b/responsible/g
s/\bresponnsibilty\b/responsibility/g
s/\bresponsability\b/responsibility/g
s/\bresponsibile\b/responsible/g
s/\bresponsibilites\b/responsibilities/g
s/\bresponsiblities\b/responsibilities/g
s/\bresponsiblity\b/responsibility/g
s/\bressemblance\b/resemblance/g
s/\bressemble\b/resemble/g
s/\bressembled\b/resembled/g
s/\bressemblence\b/resemblance/g
s/\bressembling\b/resembling/g
s/\bresssurecting\b/resurrecting/g
s/\bressurect\b/resurrect/g
s/\bressurected\b/resurrected/g
s/\bressurection\b/resurrection/g
s/\bressurrection\b/resurrection/g
s/\brestarant\b/restaurant/g
s/\brestarants\b/restaurants/g
s/\brestaraunt\b/restaurant/g
s/\brestaraunteur\b/restaurateur/g
s/\brestaraunteurs\b/restaurateurs/g
s/\brestaraunts\b/restaurants/g
s/\brestauranteurs\b/restaurateurs/g
s/\brestauration\b/restoration/g
s/\brestauraunt\b/restaurant/g
s/\bresteraunt\b/restaurant/g
s/\bresteraunts\b/restaurants/g
s/\bresticted\b/restricted/g
s/\bresturant\b/restaurant/g
s/\bresturants\b/restaurants/g
s/\bresturaunt\b/restaurant/g
s/\bresturaunts\b/restaurants/g
s/\bresurecting\b/resurrecting/g
s/\bretalitated\b/retaliated/g
s/\bretalitation\b/retaliation/g
s/\bretreive\b/retrieve/g
s/\breturnd\b/returned/g
s/\brevaluated\b/reevaluated/g
s/\breveiw\b/review/g
s/\breveral\b/reversal/g
s/\breversable\b/reversible/g
s/\brevolutionar\b/revolutionary/g
s/\brewitten\b/rewritten/g
s/\brewriet\b/rewrite/g
s/\brference\b/reference/g
s/\brferences\b/references/g
s/\brhymme\b/rhyme/g
s/\brhythem\b/rhythm/g
s/\brhythim\b/rhythm/g
s/\brhytmic\b/rhythmic/g
s/\brigourous\b/rigorous/g
s/\brininging\b/ringing/g
s/\bRockerfeller\b/Rockefeller/g
s/\brococco\b/rococo/g
s/\brocord\b/record/g
s/\broomate\b/roommate/g
s/\brougly\b/roughly/g
s/\brucuperate\b/recuperate/g
s/\brudimentatry\b/rudimentary/g
s/\brulle\b/rule/g
s/\bruning\b/running/g
s/\brunnung\b/running/g
s/\brussina\b/Russian/g
s/\bRussion\b/Russian/g
s/\brwite\b/write/g
s/\brythem\b/rhythm/g
s/\brythim\b/rhythm/g
s/\brythm\b/rhythm/g
s/\brythmic\b/rhythmic/g
s/\brythyms\b/rhythms/g
s/\bsacrafice\b/sacrifice/g
s/\bsacreligious\b/sacrilegious/g
s/\bSacremento\b/Sacramento/g
s/\bsacrifical\b/sacrificial/g
s/\bsaftey\b/safety/g
s/\bsafty\b/safety/g
s/\bsalery\b/salary/g
s/\bsanctionning\b/sanctioning/g
s/\bsandwhich\b/sandwich/g
s/\bSanhedrim\b/Sanhedrin/g
s/\bsantioned\b/sanctioned/g
s/\bsargant\b/sergeant/g
s/\bsargeant\b/sergeant/g
s/\bsatelite\b/satellite/g
s/\bsatelites\b/satellites/g
s/\bSaterday\b/Saturday/g
s/\bSaterdays\b/Saturdays/g
s/\bsatisfactority\b/satisfactorily/g
s/\bsatric\b/satiric/g
s/\bsatrical\b/satirical/g
s/\bsatrically\b/satirically/g
s/\bsattelite\b/satellite/g
s/\bsattelites\b/satellites/g
s/\bsaught\b/sought/g
s/\bsaveing\b/saving/g
s/\bsaxaphone\b/saxophone/g
s/\bscaleable\b/scalable/g
s/\bscandanavia\b/Scandinavia/g
s/\bscaricity\b/scarcity/g
s/\bscavanged\b/scavenged/g
s/\bschedual\b/schedule/g
s/\bscholarhip\b/scholarship/g
s/\bscientfic\b/scientific/g
s/\bscientifc\b/scientific/g
s/\bscientis\b/scientist/g
s/\bscince\b/science/g
s/\bscinece\b/science/g
s/\bscirpt\b/script/g
s/\bscoll\b/scroll/g
s/\bscreenwrighter\b/screenwriter/g
s/\bscrutinity\b/scrutiny/g
s/\bscuptures\b/sculptures/g
s/\bseach\b/search/g
s/\bseached\b/searched/g
s/\bseaches\b/searches/g
s/\bsecratary\b/secretary/g
s/\bsecretery\b/secretary/g
s/\bsedereal\b/sidereal/g
s/\bseeked\b/sought/g
s/\bsegementation\b/segmentation/g
s/\bseguoys\b/segues/g
s/\bseige\b/siege/g
s/\bseing\b/seeing/g
s/\bseinor\b/senior/g
s/\bseldomly\b/seldom/g
s/\bsenarios\b/scenarios/g
s/\bsenstive\b/sensitive/g
s/\bsensure\b/censure/g
s/\bseperate\b/separate/g
s/\bseperated\b/separated/g
s/\bseperately\b/separately/g
s/\bseperates\b/separates/g
s/\bseperating\b/separating/g
s/\bseperation\b/separation/g
s/\bseperatism\b/separatism/g
s/\bseperatist\b/separatist/g
s/\bsepina\b/subpoena/g
s/\bsergent\b/sergeant/g
s/\bsettelement\b/settlement/g
s/\bsettlment\b/settlement/g
s/\bsevereal\b/several/g
s/\bseverley\b/severely/g
s/\bseverly\b/severely/g
s/\bsevice\b/service/g
s/\bshadasloo\b/shadaloo/g
s/\bshaddow\b/shadow/g
s/\bshadoloo\b/shadaloo/g
s/\bsheild\b/shield/g
s/\bsherif\b/sheriff/g
s/\bshineing\b/shining/g
s/\bshiped\b/shipped/g
s/\bshiping\b/shipping/g
s/\bshopkeeepers\b/shopkeepers/g
s/\bshorly\b/shortly/g
s/\bshortwhile\b/short while/g
s/\bshoudl\b/should/g
s/\bshouldnt\b/should not/g
s/\bshreak\b/shriek/g
s/\bshrinked\b/shrunk/g
s/\bsicne\b/since/g
s/\bsideral\b/sidereal/g
s/\bsiezure\b/seizure/g
s/\bsiezures\b/seizures/g
s/\bsiginificant\b/significant/g
s/\bsignficant\b/significant/g
s/\bsignficiant\b/significant/g
s/\bsignfies\b/signifies/g
s/\bsignifantly\b/significantly/g
s/\bsignificently\b/significantly/g
s/\bsignifigant\b/significant/g
s/\bsignifigantly\b/significantly/g
s/\bsignitories\b/signatories/g
s/\bsignitory\b/signatory/g
s/\bsimilarily\b/similarly/g
s/\bsimiliar\b/similar/g
s/\bsimiliarity\b/similarity/g
s/\bsimiliarly\b/similarly/g
s/\bsimmilar\b/similar/g
s/\bsimpley\b/simply/g
s/\bsimplier\b/simpler/g
s/\bsimultanous\b/simultaneous/g
s/\bsimultanously\b/simultaneously/g
s/\bsincerley\b/sincerely/g
s/\bsingsog\b/singsong/g
s/\bSionist\b/Zionist/g
s/\bSionists\b/Zionists/g
s/\bSixtin\b/Sistine/g
s/\bSkagerak\b/Skagerrak/g
s/\bskateing\b/skating/g
s/\bslaugterhouses\b/slaughterhouses/g
s/\bslighly\b/slightly/g
s/\bslippy\b/slippery/g
s/\bslowy\b/slowly/g
s/\bsmae\b/same/g
s/\bsmealting\b/smelting/g
s/\bsmoe\b/some/g
s/\bsneeks\b/sneaks/g
s/\bsnese\b/sneeze/g
s/\bsocalism\b/socialism/g
s/\bsocities\b/societies/g
s/\bsoem\b/some/g
s/\bsofware\b/software/g
s/\bsohw\b/show/g
s/\bsoilders\b/soldiers/g
s/\bsolatary\b/solitary/g
s/\bsoley\b/solely/g
s/\bsoliders\b/soldiers/g
s/\bsoliliquy\b/soliloquy/g
s/\bsoluable\b/soluble/g
s/\bsomene\b/someone/g
s/\bsomtimes\b/sometimes/g
s/\bsomwhere\b/somewhere/g
s/\bsophicated\b/sophisticated/g
s/\bsophmore\b/sophomore/g
s/\bsorceror\b/sorcerer/g
s/\bsorrounding\b/surrounding/g
s/\bsotry\b/story/g
s/\bsoudn\b/sound/g
s/\bsoudns\b/sounds/g
s/\bsountrack\b/soundtrack/g
s/\bsourth\b/south/g
s/\bsourthern\b/southern/g
s/\bsouvenier\b/souvenir/g
s/\bsouveniers\b/souvenirs/g
s/\bsoveits\b/soviets/g
s/\bsovereignity\b/sovereignty/g
s/\bsoverign\b/sovereign/g
s/\bsoverignity\b/sovereignty/g
s/\bsoverignty\b/sovereignty/g
s/\bspainish\b/Spanish/g
s/\bspeach\b/speech/g
s/\bspecfic\b/specific/g
s/\bspecifiying\b/specifying/g
s/\bspeciman\b/specimen/g
s/\bspectauclar\b/spectacular/g
s/\bspectaulars\b/spectaculars/g
s/\bspectum\b/spectrum/g
s/\bspeices\b/species/g
s/\bspendour\b/splendour/g
s/\bspermatozoan\b/spermatozoon/g
s/\bspoace\b/space/g
s/\bsponser\b/sponsor/g
s/\bsponsered\b/sponsored/g
s/\bspontanous\b/spontaneous/g
s/\bsponzored\b/sponsored/g
s/\bspoonfulls\b/spoonfuls/g
s/\bsppeches\b/speeches/g
s/\bspreaded\b/spread/g
s/\bsprech\b/speech/g
s/\bspred\b/spread/g
s/\bspriritual\b/spiritual/g
s/\bspritual\b/spiritual/g
s/\bsqaure\b/square/g
s/\bstablility\b/stability/g
s/\bstainlees\b/stainless/g
s/\bstaion\b/station/g
s/\bstandars\b/standards/g
s/\bstange\b/strange/g
s/\bstartegic\b/strategic/g
s/\bstartegies\b/strategies/g
s/\bstartegy\b/strategy/g
s/\bstateman\b/statesman/g
s/\bstatememts\b/statements/g
s/\bstatment\b/statement/g
s/\bsteriods\b/steroids/g
s/\bsterotypes\b/stereotypes/g
s/\bstilus\b/stylus/g
s/\bstingent\b/stringent/g
s/\bstiring\b/stirring/g
s/\bstirrs\b/stirs/g
s/\bstlye\b/style/g
s/\bstomache\b/stomach/g
s/\bstong\b/strong/g
s/\bstopry\b/story/g
s/\bstoreis\b/stories/g
s/\bstorise\b/stories/g
s/\bstornegst\b/strongest/g
s/\bstoyr\b/story/g
s/\bstpo\b/stop/g
s/\bstradegies\b/strategies/g
s/\bstradegy\b/strategy/g
s/\bstratagically\b/strategically/g
s/\bstreemlining\b/streamlining/g
s/\bstregth\b/strength/g
s/\bstrenghen\b/strengthen/g
s/\bstrenghened\b/strengthened/g
s/\bstrenghening\b/strengthening/g
s/\bstrenght\b/strength/g
s/\bstrenghten\b/strengthen/g
s/\bstrenghtened\b/strengthened/g
s/\bstrenghtening\b/strengthening/g
s/\bstrengtened\b/strengthened/g
s/\bstrenous\b/strenuous/g
s/\bstrictist\b/strictest/g
s/\bstrikely\b/strikingly/g
s/\bstrnad\b/strand/g
s/\bstructual\b/structural/g
s/\bstubborness\b/stubbornness/g
s/\bstucture\b/structure/g
s/\bstuctured\b/structured/g
s/\bstuddy\b/study/g
s/\bstuding\b/studying/g
s/\bstuggling\b/struggling/g
s/\bsturcture\b/structure/g
s/\bsubcatagories\b/subcategories/g
s/\bsubcatagory\b/subcategory/g
s/\bsubconsiously\b/subconsciously/g
s/\bsubjudgation\b/subjugation/g
s/\bsubmachne\b/submachine/g
s/\bsubpecies\b/subspecies/g
s/\bsubsidary\b/subsidiary/g
s/\bsubsiduary\b/subsidiary/g
s/\bsubsquent\b/subsequent/g
s/\bsubsquently\b/subsequently/g
s/\bsubstace\b/substance/g
s/\bsubstancial\b/substantial/g
s/\bsubstatial\b/substantial/g
s/\bsubstituded\b/substituted/g
s/\bsubstract\b/subtract/g
s/\bsubstracted\b/subtracted/g
s/\bsubstracting\b/subtracting/g
s/\bsubstraction\b/subtraction/g
s/\bsubstracts\b/subtracts/g
s/\bsubtances\b/substances/g
s/\bsubterranian\b/subterranean/g
s/\bsuburburban\b/suburban/g
s/\bsuccceeded\b/succeeded/g
s/\bsucccesses\b/successes/g
s/\bsuccedded\b/succeeded/g
s/\bsucceded\b/succeeded/g
s/\bsucceds\b/succeeds/g
s/\bsuccesful\b/successful/g
s/\bsuccesfully\b/successfully/g
s/\bsuccesfuly\b/successfully/g
s/\bsuccesion\b/succession/g
s/\bsuccesive\b/successive/g
s/\bsuccessfull\b/successful/g
s/\bsuccessully\b/successfully/g
s/\bsuccsess\b/success/g
s/\bsuccsessfull\b/successful/g
s/\bsuceed\b/succeed/g
s/\bsuceeded\b/succeeded/g
s/\bsuceeding\b/succeeding/g
s/\bsuceeds\b/succeeds/g
s/\bsucesful\b/successful/g
s/\bsucesfully\b/successfully/g
s/\bsucesfuly\b/successfully/g
s/\bsucesion\b/succession/g
s/\bsucess\b/success/g
s/\bsucesses\b/successes/g
s/\bsucessful\b/successful/g
s/\bsucessfull\b/successful/g
s/\bsucessfully\b/successfully/g
s/\bsucessfuly\b/successfully/g
s/\bsucession\b/succession/g
s/\bsucessive\b/successive/g
s/\bsucessor\b/successor/g
s/\bsucessot\b/successor/g
s/\bsucide\b/suicide/g
s/\bsucidial\b/suicidal/g
s/\bsudent\b/student/g
s/\bsudents\b/students/g
s/\bsufferage\b/suffrage/g
s/\bsufferred\b/suffered/g
s/\bsufferring\b/suffering/g
s/\bsufficent\b/sufficient/g
s/\bsufficently\b/sufficiently/g
s/\bsumary\b/summary/g
s/\bsunglases\b/sunglasses/g
s/\bsuop\b/soup/g
s/\bsuperceeded\b/superseded/g
s/\bsuperintendant\b/superintendent/g
s/\bsuphisticated\b/sophisticated/g
s/\bsuplimented\b/supplemented/g
s/\bsupose\b/suppose/g
s/\bsuposed\b/supposed/g
s/\bsuposedly\b/supposedly/g
s/\bsuposes\b/supposes/g
s/\bsuposing\b/supposing/g
s/\bsupplamented\b/supplemented/g
s/\bsuppliementing\b/supplementing/g
s/\bsuppoed\b/supposed/g
s/\bsupposingly\b/supposedly/g
s/\bsuppy\b/supply/g
s/\bsuprassing\b/surpassing/g
s/\bsupress\b/suppress/g
s/\bsupressed\b/suppressed/g
s/\bsupresses\b/suppresses/g
s/\bsupressing\b/suppressing/g
s/\bsuprise\b/surprise/g
s/\bsuprised\b/surprised/g
s/\bsuprising\b/surprising/g
s/\bsuprisingly\b/surprisingly/g
s/\bsuprize\b/surprise/g
s/\bsuprized\b/surprised/g
s/\bsuprizing\b/surprising/g
s/\bsuprizingly\b/surprisingly/g
s/\bsurfce\b/surface/g
s/\bsuround\b/surround/g
s/\bsurounded\b/surrounded/g
s/\bsurounding\b/surrounding/g
s/\bsuroundings\b/surroundings/g
s/\bsurounds\b/surrounds/g
s/\bsurplanted\b/supplanted/g
s/\bsurpress\b/suppress/g
s/\bsurpressed\b/suppressed/g
s/\bsurprize\b/surprise/g
s/\bsurprized\b/surprised/g
s/\bsurprizing\b/surprising/g
s/\bsurprizingly\b/surprisingly/g
s/\bsurrepetitious\b/surreptitious/g
s/\bsurrepetitiously\b/surreptitiously/g
s/\bsurreptious\b/surreptitious/g
s/\bsurreptiously\b/surreptitiously/g
s/\bsurronded\b/surrounded/g
s/\bsurrouded\b/surrounded/g
s/\bsurrouding\b/surrounding/g
s/\bsurrundering\b/surrendering/g
s/\bsurveilence\b/surveillance/g
s/\bsurveill\b/surveil/g
s/\bsurveyer\b/surveyor/g
s/\bsurviver\b/survivor/g
s/\bsurvivers\b/survivors/g
s/\bsurvivied\b/survived/g
s/\bsuseptable\b/susceptible/g
s/\bsuseptible\b/susceptible/g
s/\bsuspention\b/suspension/g
s/\bswaer\b/swear/g
s/\bswaers\b/swears/g
s/\bswepth\b/swept/g
s/\bswiming\b/swimming/g
s/\bsyas\b/says/g
s/\bsymetrical\b/symmetrical/g
s/\bsymetrically\b/symmetrically/g
s/\bsymetry\b/symmetry/g
s/\bsymettric\b/symmetric/g
s/\bsymmetral\b/symmetric/g
s/\bsymmetricaly\b/symmetrically/g
s/\bsynagouge\b/synagogue/g
s/\bsyncronization\b/synchronization/g
s/\bsynonomous\b/synonymous/g
s/\bsynonymns\b/synonyms/g
s/\bsynphony\b/symphony/g
s/\bsyphyllis\b/syphilis/g
s/\bsypmtoms\b/symptoms/g
s/\bsyrap\b/syrup/g
s/\bsysmatically\b/systematically/g
s/\bsytem\b/system/g
s/\bsytle\b/style/g
s/\btabacco\b/tobacco/g
s/\btahn\b/than/g
s/\btaht\b/that/g
s/\btalekd\b/talked/g
s/\btargetted\b/targeted/g
s/\btargetting\b/targeting/g
s/\btast\b/taste/g
s/\btath\b/that/g
s/\btatoo\b/tattoo/g
s/\btattooes\b/tattoos/g
s/\btaxanomic\b/taxonomic/g
s/\btaxanomy\b/taxonomy/g
s/\bteached\b/taught/g
s/\btechician\b/technician/g
s/\btechicians\b/technicians/g
s/\btechiniques\b/techniques/g
s/\btechnitian\b/technician/g
s/\btechnnology\b/technology/g
s/\btechnolgy\b/technology/g
s/\bteh\b/the/g
s/\btehy\b/they/g
s/\btelelevision\b/television/g
s/\btelevsion\b/television/g
s/\btelphony\b/telephony/g
s/\btemerature\b/temperature/g
s/\btempalte\b/template/g
s/\btempaltes\b/templates/g
s/\btemparate\b/temperate/g
s/\btemperarily\b/temporarily/g
s/\btemperment\b/temperament/g
s/\btempertaure\b/temperature/g
s/\btemperture\b/temperature/g
s/\btemprary\b/temporary/g
s/\btenacle\b/tentacle/g
s/\btenacles\b/tentacles/g
s/\btendacy\b/tendency/g
s/\btendancies\b/tendencies/g
s/\btendancy\b/tendency/g
s/\btennisplayer\b/tennis player/g
s/\btepmorarily\b/temporarily/g
s/\bterrestial\b/terrestrial/g
s/\bterriories\b/territories/g
s/\bterriory\b/territory/g
s/\bterritorist\b/terrorist/g
s/\bterritoy\b/territory/g
s/\bterroist\b/terrorist/g
s/\btesticlular\b/testicular/g
s/\btestomony\b/testimony/g
s/\btghe\b/the/g
s/\btheather\b/theater/g
s/\btheese\b/these/g
s/\btheif\b/thief/g
s/\btheives\b/thieves/g
s/\bthemselfs\b/themselves/g
s/\bthemslves\b/themselves/g
s/\btherafter\b/thereafter/g
s/\btherby\b/thereby/g
s/\btheri\b/their/g
s/\btheyre\b/they're/g
s/\bthgat\b/that/g
s/\bthge\b/the/g
s/\bthier\b/their/g
s/\bthign\b/thing/g
s/\bthigns\b/things/g
s/\bthigsn\b/things/g
s/\bthikn\b/think/g
s/\bthikns\b/thinks/g
s/\bthiunk\b/think/g
s/\bthn\b/then/g
s/\bthna\b/than/g
s/\bthne\b/then/g
s/\bthnig\b/thing/g
s/\bthnigs\b/things/g
s/\bthoughout\b/throughout/g
s/\bthreatend\b/threatened/g
s/\bthreatning\b/threatening/g
s/\bthreee\b/three/g
s/\bthreshhold\b/threshold/g
s/\bthrid\b/third/g
s/\bthrorough\b/thorough/g
s/\bthroughly\b/thoroughly/g
s/\bthrougout\b/throughout/g
s/\bthru\b/through/g
s/\bthsi\b/this/g
s/\bthsoe\b/those/g
s/\bthta\b/that/g
s/\bthyat\b/that/g
s/\btihkn\b/think/g
s/\btihs\b/this/g
s/\btimne\b/time/g
s/\btje\b/the/g
s/\btjhe\b/the/g
s/\btjpanishad\b/upanishad/g
s/\btkae\b/take/g
s/\btkaes\b/takes/g
s/\btkaing\b/taking/g
s/\btlaking\b/talking/g
s/\btobbaco\b/tobacco/g
s/\btodays\b/today's/g
s/\btodya\b/today/g
s/\btoghether\b/together/g
s/\btoke\b/took/g
s/\btolerence\b/tolerance/g
s/\bTolkein\b/Tolkien/g
s/\btomatos\b/tomatoes/g
s/\btommorow\b/tomorrow/g
s/\btommorrow\b/tomorrow/g
s/\btongiht\b/tonight/g
s/\btoriodal\b/toroidal/g
s/\btormenters\b/tormentors/g
s/\btornadoe\b/tornado/g
s/\btorpeados\b/torpedoes/g
s/\btorpedos\b/torpedoes/g
s/\btortise \b/tortoise/g
s/\btothe\b/to the/g
s/\btoubles\b/troubles/g
s/\btounge\b/tongue/g
s/\btowords\b/towards/g
s/\btowrad\b/toward/g
s/\btradionally\b/traditionally/g
s/\btraditionaly\b/traditionally/g
s/\btraditionnal\b/traditional/g
s/\btraditition\b/tradition/g
s/\btradtionally\b/traditionally/g
s/\btrafficed\b/trafficked/g
s/\btrafficing\b/trafficking/g
s/\btrafic\b/traffic/g
s/\btrancendent\b/transcendent/g
s/\btrancending\b/transcending/g
s/\btranform\b/transform/g
s/\btranformed\b/transformed/g
s/\btranscendance\b/transcendence/g
s/\btranscendant\b/transcendent/g
s/\btranscendentational\b/transcendental/g
s/\btransending\b/transcending/g
s/\btransesxuals\b/transsexuals/g
s/\btransfered\b/transferred/g
s/\btransfering\b/transferring/g
s/\btransformaton\b/transformation/g
s/\btransistion\b/transition/g
s/\btranslater\b/translator/g
s/\btranslaters\b/translators/g
s/\btransmissable\b/transmissible/g
s/\btransporation\b/transportation/g
s/\btremelo\b/tremolo/g
s/\btremelos\b/tremolos/g
s/\btriguered\b/triggered/g
s/\btriology\b/trilogy/g
s/\btroling\b/trolling/g
s/\btroup\b/troupe/g
s/\btruely\b/truly/g
s/\btrustworthyness\b/trustworthiness/g
s/\bTuscon\b/Tucson/g
s/\btust\b/trust/g
s/\btwelth\b/twelfth/g
s/\btwon\b/town/g
s/\btwpo\b/two/g
s/\btyhat\b/that/g
s/\btyhe\b/they/g
s/\btypcial\b/typical/g
s/\btypicaly\b/typically/g
s/\btyranies\b/tyrannies/g
s/\btyrany\b/tyranny/g
s/\btyrranies\b/tyrannies/g
s/\btyrrany\b/tyranny/g
s/\bubiquitious\b/ubiquitous/g
s/\bublisher\b/publisher/g
s/\buise\b/use/g
s/\bUkranian\b/Ukrainian/g
s/\bultimely\b/ultimately/g
s/\bunacompanied\b/unaccompanied/g
s/\bunahppy\b/unhappy/g
s/\bunanymous\b/unanimous/g
s/\bunathorised\b/unauthorised/g
s/\bunavailible\b/unavailable/g
s/\bunballance\b/unbalance/g
s/\bunbeknowst\b/unbeknownst/g
s/\bunbeleivable\b/unbelievable/g
s/\buncertainity\b/uncertainty/g
s/\bunchallengable\b/unchallengeable/g
s/\bunchangable\b/unchangeable/g
s/\buncompetive\b/uncompetitive/g
s/\bunconcious\b/unconscious/g
s/\bunconciousness\b/unconsciousness/g
s/\bunconfortability\b/discomfort/g
s/\buncontitutional\b/unconstitutional/g
s/\bunconvential\b/unconventional/g
s/\bundecideable\b/undecidable/g
s/\bunderstoon\b/understood/g
s/\bundesireable\b/undesirable/g
s/\bundetecable\b/undetectable/g
s/\bundoubtely\b/undoubtedly/g
s/\bundreground\b/underground/g
s/\buneccesary\b/unnecessary/g
s/\bunecessary\b/unnecessary/g
s/\bunequalities\b/inequalities/g
s/\bunforseen\b/unforeseen/g
s/\bunforetunately\b/unfortunately/g
s/\bunforgetable\b/unforgettable/g
s/\bunforgiveable\b/unforgivable/g
s/\bunfortunatley\b/unfortunately/g
s/\bunfortunatly\b/unfortunately/g
s/\bunfourtunately\b/unfortunately/g
s/\bunihabited\b/uninhabited/g
s/\bunilateraly\b/unilaterally/g
s/\bunilatreal\b/unilateral/g
s/\bunilatreally\b/unilaterally/g
s/\buninterruped\b/uninterrupted/g
s/\buninterupted\b/uninterrupted/g
s/\bUnitesStates\b/UnitedStates/g
s/\buniveral\b/universal/g
s/\buniveristies\b/universities/g
s/\buniveristy\b/university/g
s/\buniverity\b/university/g
s/\buniverstiy\b/university/g
s/\bunivesities\b/universities/g
s/\bunivesity\b/university/g
s/\bunkown\b/unknown/g
s/\bunlikey\b/unlikely/g
s/\bunmistakeably\b/unmistakably/g
s/\bunneccesarily\b/unnecessarily/g
s/\bunneccesary\b/unnecessary/g
s/\bunneccessarily\b/unnecessarily/g
s/\bunneccessary\b/unnecessary/g
s/\bunnecesarily\b/unnecessarily/g
s/\bunnecesary\b/unnecessary/g
s/\bunoffical\b/unofficial/g
s/\bunoperational\b/nonoperational/g
s/\bunoticeable\b/unnoticeable/g
s/\bunplease\b/displease/g
s/\bunplesant\b/unpleasant/g
s/\bunprecendented\b/unprecedented/g
s/\bunprecidented\b/unprecedented/g
s/\bunrepentent\b/unrepentant/g
s/\bunrepetant\b/unrepentant/g
s/\bunrepetent\b/unrepentant/g
s/\bunsubstanciated\b/unsubstantiated/g
s/\bunsuccesful\b/unsuccessful/g
s/\bunsuccesfully\b/unsuccessfully/g
s/\bunsuccessfull\b/unsuccessful/g
s/\bunsucesful\b/unsuccessful/g
s/\bunsucesfuly\b/unsuccessfully/g
s/\bunsucessful\b/unsuccessful/g
s/\bunsucessfull\b/unsuccessful/g
s/\bunsucessfully\b/unsuccessfully/g
s/\bunsuprised\b/unsurprised/g
s/\bunsuprising\b/unsurprising/g
s/\bunsuprisingly\b/unsurprisingly/g
s/\bunsuprized\b/unsurprised/g
s/\bunsuprizing\b/unsurprising/g
s/\bunsuprizingly\b/unsurprisingly/g
s/\bunsurprized\b/unsurprised/g
s/\bunsurprizing\b/unsurprising/g
s/\bunsurprizingly\b/unsurprisingly/g
s/\buntill\b/until/g
s/\buntranslateable\b/untranslatable/g
s/\bunuseable\b/unusable/g
s/\bunusuable\b/unusable/g
s/\bunviersity\b/university/g
s/\bunwarrented\b/unwarranted/g
s/\bunweildly\b/unwieldy/g
s/\bunwieldly\b/unwieldy/g
s/\bupcomming\b/upcoming/g
s/\bupgradded\b/upgraded/g
s/\bupto\b/up to/g
s/\busally\b/usually/g
s/\buseage\b/usage/g
s/\busefull\b/useful/g
s/\busefuly\b/usefully/g
s/\buseing\b/using/g
s/\busualy\b/usually/g
s/\bususally\b/usually/g
s/\bvaccum\b/vacuum/g
s/\bvaccume\b/vacuum/g
s/\bvacinity\b/vicinity/g
s/\bvaguaries\b/vagaries/g
s/\bvaieties\b/varieties/g
s/\bvailidty\b/validity/g
s/\bvaletta\b/valletta/g
s/\bvaluble\b/valuable/g
s/\bvalueable\b/valuable/g
s/\bvarations\b/variations/g
s/\bvarient\b/variant/g
s/\bvariey\b/variety/g
s/\bvaring\b/varying/g
s/\bvarities\b/varieties/g
s/\bvarity\b/variety/g
s/\bvasall\b/vassal/g
s/\bvasalls\b/vassals/g
s/\bvegatarian\b/vegetarian/g
s/\bvegitable\b/vegetable/g
s/\bvegitables\b/vegetables/g
s/\bvegtable\b/vegetable/g
s/\bvehicule\b/vehicle/g
s/\bvell\b/well/g
s/\bvenemous\b/venomous/g
s/\bvengance\b/vengeance/g
s/\bvengence\b/vengeance/g
s/\bverfication\b/verification/g
s/\bverison\b/version/g
s/\bverisons\b/versions/g
s/\bvermillion\b/vermilion/g
s/\bversitilaty\b/versatility/g
s/\bversitlity\b/versatility/g
s/\bvetween\b/between/g
s/\bveyr\b/very/g
s/\bvigilence\b/vigilance/g
s/\bvigourous\b/vigorous/g
s/\bvillian\b/villain/g
s/\bvillification\b/vilification/g
s/\bvillify\b/vilify/g
s/\bvincinity\b/vicinity/g
s/\bviolentce\b/violence/g
s/\bvirtualy\b/virtually/g
s/\bvirutal\b/virtual/g
s/\bvirutally\b/virtually/g
s/\bvisable\b/visible/g
s/\bvisably\b/visibly/g
s/\bvisting\b/visiting/g
s/\bvistors\b/visitors/g
s/\bvitories\b/victories/g
s/\bvolcanoe\b/volcano/g
s/\bvoleyball\b/volleyball/g
s/\bvolontary\b/voluntary/g
s/\bvolonteer\b/volunteer/g
s/\bvolonteered\b/volunteered/g
s/\bvolonteering\b/volunteering/g
s/\bvolonteers\b/volunteers/g
s/\bvolounteer\b/volunteer/g
s/\bvolounteered\b/volunteered/g
s/\bvolounteering\b/volunteering/g
s/\bvolounteers\b/volunteers/g
s/\bvolumne\b/volume/g
s/\bvreity\b/variety/g
s/\bvrey\b/very/g
s/\bvriety\b/variety/g
s/\bvulnerablility\b/vulnerability/g
s/\bvyer\b/very/g
s/\bvyre\b/very/g
s/\bwaht\b/what/g
s/\bwarantee\b/warranty/g
s/\bwardobe\b/wardrobe/g
s/\bwarrent\b/warrant/g
s/\bwarrriors\b/warriors/g
s/\bwasnt\b/wasn't/g
s/\bwass\b/was/g
s/\bwatn\b/want/g
s/\bwayword\b/wayward/g
s/\bweaponary\b/weaponry/g
s/\bweas\b/was/g
s/\bwehn\b/when/g
s/\bweilded\b/wielded/g
s/\bwendsay\b/Wednesday/g
s/\bwensday\b/Wednesday/g
s/\bwereabouts\b/whereabouts/g
s/\bwhant\b/want/g
s/\bwhants\b/wants/g
s/\bwhcih\b/which/g
s/\bwheras\b/whereas/g
s/\bwherease\b/whereas/g
s/\bwhereever\b/wherever/g
s/\bwhic\b/which/g
s/\bwhihc\b/which/g
s/\bwhith\b/with/g
s/\bwhlch\b/which/g
s/\bwhn\b/when/g
s/\bwholey\b/wholly/g
s/\bwhta\b/what/g
s/\bwhther\b/whether/g
s/\bwidesread\b/widespread/g
s/\bwief\b/wife/g
s/\bwierd\b/weird/g
s/\bwiew\b/view/g
s/\bwih\b/with/g
s/\bwiht\b/with/g
s/\bwille\b/will/g
s/\bwillk\b/will/g
s/\bwillingless\b/willingness/g
s/\bwirting\b/writing/g
s/\bwitheld\b/withheld/g
s/\bwithh\b/with/g
s/\bwithing\b/within/g
s/\bwithold\b/withhold/g
s/\bwitht\b/with/g
s/\bwitn\b/with/g
s/\bwiull\b/will/g
s/\bwnat\b/want/g
s/\bwnated\b/wanted/g
s/\bwnats\b/wants/g
s/\bwohle\b/whole/g
s/\bwokr\b/work/g
s/\bwokring\b/working/g
s/\bwonderfull\b/wonderful/g
s/\bwordlwide\b/worldwide/g
s/\bworkststion\b/workstation/g
s/\bworls\b/world/g
s/\bworstened\b/worsened/g
s/\bwoudl\b/would/g
s/\bwresters\b/wrestlers/g
s/\bwriet\b/write/g
s/\bwriten\b/written/g
s/\bwroet\b/wrote/g
s/\bwrok\b/work/g
s/\bwroking\b/working/g
s/\bwtih\b/with/g
s/\bwupport\b/support/g
s/\bxenophoby\b/xenophobia/g
s/\byaching\b/yachting/g
s/\byaer\b/year/g
s/\byaerly\b/yearly/g
s/\byaers\b/years/g
s/\byatch\b/yacht/g
s/\byearm\b/year/g
s/\byeasr\b/years/g
s/\byeild\b/yield/g
s/\byeilding\b/yielding/g
s/\byera\b/year/g
s/\byrea\b/year/g
s/\byeras\b/years/g
s/\byersa\b/years/g
s/\byotube\b/youtube/g
s/\byouseff\b/yousef/g
s/\byouself\b/yourself/g
s/\bytou\b/you/g
s/\byuo\b/you/g
s/\bzeebra\b/zebra/g
|
AshVaris/fc
|
devTools/spell_check.txt
|
Text
|
mit
| 114,665 |
########################################################################################################################
#
# sugarcube-2.py
#
# Copyright (c) 2013-2018 Thomas Michael Edwards <[email protected]>. All rights reserved.
# Use of this source code is governed by a BSD 2-clause "Simplified" License, which may be found in the LICENSE file.
#
########################################################################################################################
import os, os.path, header
from collections import OrderedDict
class Header (header.Header):
def filesToEmbed(self):
userLibPath = self.path + os.sep + 'userlib.js'
if os.path.isfile(userLibPath):
return OrderedDict([
('"USER_LIB"', userLibPath)
])
else:
return OrderedDict()
def storySettings(self):
return "SugarCube 2.x does not support the StorySettings special passage.\n\nInstead, you should use its configuration object, config.\n See: http://www.motoslave.net/sugarcube/2/docs/config-object.html"
def isEndTag(self, name, tag):
return (name == ('/' + tag) or name == ('end' + tag))
def nestedMacros(self):
return [
# standard macros
'append',
'button',
'capture',
'createplaylist',
'for',
'if',
'link',
'linkappend',
'linkprepend',
'linkreplace',
'nobr',
'prepend',
'repeat',
'replace',
'script',
'switch',
'silently',
'timed',
'widget',
# deprecated macros
'click'
]
def passageTitleColor(self, passage):
additionalSpecialPassages = [
'PassageDone',
'PassageFooter',
'PassageHeader',
'PassageReady',
'StoryBanner',
'StoryCaption',
'StoryInterface',
'StoryShare'
]
if passage.isStylesheet():
return ((111, 49, 83), (234, 123, 184))
elif passage.isScript():
return ((89, 66, 28), (226, 170, 80))
elif ('widget' in passage.tags):
return ((80, 106, 26), (134, 178, 44))
elif passage.isInfoPassage() or (passage.title in additionalSpecialPassages):
return ((28, 89, 74), (41, 214, 113))
elif passage.title == 'Start':
return ('#4ca333', '#4bdb24')
def passageChecks(self):
return super(Header, self).passageChecks()
|
AshVaris/fc
|
devTools/tweeGo/storyFormats/sugarcube-2/sugarcube-2.py
|
Python
|
mit
| 2,198 |
#!/usr/bin/env python3
'''
Application for procedural content adaption
Contains a very poor man's implementation of spline mesh warping.
This application parses SVG path data of an outfit sample aligned to a body part.
The outfit is then replicated for other shapes of the same body part.
Example data is geared towards generating a strap outfit for boobs and torso
for all sizes of boobs and all shapes of torsos based on a single outfit for
boobs of size 2 and a hourglass torso respectively.
Limitations:
* handles paths only
* only svg.path Line and CubicBezier are tested
* only the aforementioned examples are tested
'''
from svg.path import parse_path
import copy
import lxml.etree as etree
import sys
REFERENCE_PATH_SAMPLES = 50
EMBED_REPLICATIONS = False # wether to embed all replications into the input file or output separate files
bodypart = sys.argv[1]
# TODO: make these configurable
input_file = 'vector source.svg'
output_file_pattern = '%s %s %s.svg' #bodypart, target_id, clothing
output_file_embed = 'replicated clothing.svg'
clothing = 'straps'
if ('boob' == bodypart):
xpath_shape = './svg:g[@id="Chest"]/svg:g[@id="Boob_%s"]/svg:g[starts-with(@id, "Boob_Large") or starts-with(@id, "Areola")]/svg:path[@style="fill:#f6e0e8" or @style="fill:#d76b93"]/@d'
xpath_outfit_container = './svg:g[@id="Chest_Outfit"]'
xpath_outfit = './svg:g[@id="Boob_%s_straps"]'
target_ids = "1,2,3,4,5,6,7".split(",")
reference_id = "2"
elif ('torso' == bodypart):
xpath_shape = './svg:g[@id="Torso"]/svg:g[@id="Torso_%s"]/svg:path[@style="fill:#f6e0e8"]/@d'
xpath_outfit_container = './svg:g[@id="Torso_Outfit"]'
xpath_outfit = './svg:g[@id="Torso_%s_straps"]'
target_ids = "Unnatural,Hourglass,Normal".split(",")
reference_id = "Hourglass"
else:
raise RuntimeError("Please specify a bodypart for clothing to replicate.")
'''
Problems with originally supplied "vector source.svg":
* Inconsistent layer names
* Generated by Adobe Illustrator, groups are no Inkscape layers by default
* Inkscape uses layer labels instead of layer ids
'''
root = etree.parse(input_file) # TODO: do not hardcode input file path
ns = {'svg' : 'http://www.w3.org/2000/svg'}
canvas = copy.deepcopy(root)
for e in canvas.xpath('./svg:g',namespaces=ns)+canvas.xpath('./svg:path',namespaces=ns):
# TODO: this should be "remove all objects, preserve document properties"
e.getparent().remove(e)
def get_points(xpath_shape):
'''
This funciton extracts reference paths by the given xpath selector.
Each path is used to sample a fixed number of points.
'''
paths_data = root.xpath(xpath_shape,namespaces=ns)
points = []
path_length = None
for path_data in paths_data:
p = parse_path(path_data)
points += [
p.point(1.0/float(REFERENCE_PATH_SAMPLES)*i)
for i in range(REFERENCE_PATH_SAMPLES)
]
if (not points):
raise RuntimeError(
'No paths for reference points found by selector "%s".'%(xpath_shape)
)
return points
def point_movement(point, reference_points, target_points):
'''
For a given point, finds the nearest point in the reference path.
Gives distance vector from the nearest reference point to the
respective target reference point.
'''
distances = [abs(point-reference_point) for reference_point in reference_points]
min_ref_dist_idx = min(enumerate(distances), key=lambda x:x[1])[0]
movement = target_points[min_ref_dist_idx] - reference_points[min_ref_dist_idx]
return movement
reference_points = get_points(xpath_shape%(reference_id))
container = root.xpath(xpath_outfit_container,namespaces=ns)
if (len(container) != 1):
raise RuntimeError('Outfit container selector "%s" does not yield exactly one layer.'%(xpath_outfit_container))
container = container[0]
outfit_source = container.xpath(xpath_outfit%(reference_id),namespaces=ns)
if (len(outfit_source) != 1):
raise RuntimeError('Outfit source selector "%s" does not yield exactly one outfit layer in container selected by "%s".'%(xpath_outfit%(reference_id), xpath_outfit_container))
outfit_source = outfit_source[0]
for target_id in target_ids:
print(
'Generating variant "%s" of clothing "%s" for bodypart "%s"...'%
(target_id, clothing, bodypart)
)
outfit = copy.deepcopy(outfit_source)
paths = outfit.xpath('./svg:path',namespaces=ns)
if target_id != reference_id:
layerid = outfit.get('id').replace('_%s_'%(reference_id),'_%s_'%(target_id))
outfit.set('id', layerid)
outfit.set(etree.QName('http://www.inkscape.org/namespaces/inkscape', 'label'), layerid) # for the Inkscape-users
target_points = get_points(xpath_shape%(target_id))
if (len(reference_points) != len(target_points)):
raise RuntimeError(
('Different amounts of sampled points in reference "%s" and target "%s" paths. '+
'Selector "%s" probably matches different number of paths in the two layers.')%
(reference_id, target_id, xpath_shape)
)
for path in paths:
path_data = path.get("d")
p = parse_path(path_data)
for segment in p:
original_distance = abs(segment.end-segment.start)
start_movement = point_movement(segment.start, reference_points, target_points)
segment.start += start_movement
end_movement = point_movement(segment.end, reference_points, target_points)
segment.end += end_movement
distance = abs(segment.end-segment.start)
try:
# enhance position of CubicBezier control points
# amplification is relative to the distance gained by movement
segment.control1 += start_movement
segment.control1 += (segment.control1-segment.start)*(distance/original_distance-1.0)
segment.control2 += end_movement
segment.control2 += (segment.control2-segment.end)*(distance/original_distance-1.0)
except AttributeError as ae:
# segment is not a CubicBezier
pass
path.set("d", p.d())
if EMBED_REPLICATIONS:
container.append(outfit)
if not EMBED_REPLICATIONS:
container = copy.deepcopy(canvas).xpath('.',namespaces=ns)[0]
container.append(outfit)
if not EMBED_REPLICATIONS:
svg = etree.tostring(container, pretty_print=True)
with open((output_file_pattern%(bodypart, target_id, clothing)).lower(), 'wb') as f:
f.write('<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n'.encode("utf-8"))
f.write(svg)
if EMBED_REPLICATIONS:
svg = etree.tostring(root, pretty_print=True)
with open(output_file_embed, 'wb') as f:
f.write('<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n'.encode("utf-8"))
f.write(svg)
|
AshVaris/fc
|
devTools/vector_clothing_replicator.py
|
Python
|
mit
| 6,643 |
#!/bin/bash
if [ ! -d ".git" ]; then
#not running in git repo, so can't use git commands :-)
echo "No .git repo found - skipping sanity checks"
exit 0
fi
git ls-files -z src/*.tw | xargs -0 sed -i -f devTools/spell_check.txt
|
AshVaris/fc
|
fixSpellingMistakes
|
none
|
mit
| 231 |
#!/bin/bash
if [ ! -d ".git" ]; then
exit 0
fi
GREP="git grep -lz"
$GREP "\babandonned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babandonned\b/abandoned/g" *.tw
$GREP "\baberation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baberation\b/aberration/g" *.tw
$GREP "\babilityes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babilityes\b/abilities/g" *.tw
$GREP "\babilties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babilties\b/abilities/g" *.tw
$GREP "\babilty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babilty\b/ability/g" *.tw
$GREP "\babondon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babondon\b/abandon/g" *.tw
$GREP "\babbout\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babbout\b/about/g" *.tw
$GREP "\babotu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babotu\b/about/g" *.tw
$GREP "\babouta\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babouta\b/about a/g" *.tw
$GREP "\baboutit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baboutit\b/about it/g" *.tw
$GREP "\baboutthe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baboutthe\b/about the/g" *.tw
$GREP "\babscence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babscence\b/absence/g" *.tw
$GREP "\babondoned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babondoned\b/abandoned/g" *.tw
$GREP "\babondoning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babondoning\b/abandoning/g" *.tw
$GREP "\babondons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babondons\b/abandons/g" *.tw
$GREP "\baborigene\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baborigene\b/aborigine/g" *.tw
$GREP "\baccesories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccesories\b/accessories/g" *.tw
$GREP "\baccidant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccidant\b/accident/g" *.tw
$GREP "\babortificant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babortificant\b/abortifacient/g" *.tw
$GREP "\babreviate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babreviate\b/abbreviate/g" *.tw
$GREP "\babreviated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babreviated\b/abbreviated/g" *.tw
$GREP "\babreviation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babreviation\b/abbreviation/g" *.tw
$GREP "\babritrary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babritrary\b/arbitrary/g" *.tw
$GREP "\babsail\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsail\b/abseil/g" *.tw
$GREP "\babsailing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsailing\b/abseiling/g" *.tw
$GREP "\babsense\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsense\b/absence/g" *.tw
$GREP "\babsolutly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsolutly\b/absolutely/g" *.tw
$GREP "\babsorbsion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsorbsion\b/absorption/g" *.tw
$GREP "\babsorbtion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsorbtion\b/absorption/g" *.tw
$GREP "\babudance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babudance\b/abundance/g" *.tw
$GREP "\babundacies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babundacies\b/abundances/g" *.tw
$GREP "\babundancies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babundancies\b/abundances/g" *.tw
$GREP "\babundunt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babundunt\b/abundant/g" *.tw
$GREP "\babutts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babutts\b/abuts/g" *.tw
$GREP "\bacadamy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacadamy\b/academy/g" *.tw
$GREP "\bacadmic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacadmic\b/academic/g" *.tw
$GREP "\baccademic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccademic\b/academic/g" *.tw
$GREP "\baccademy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccademy\b/academy/g" *.tw
$GREP "\bacccused\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacccused\b/accused/g" *.tw
$GREP "\baccelleration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccelleration\b/acceleration/g" *.tw
$GREP "\bacceptence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacceptence\b/acceptance/g" *.tw
$GREP "\bacceptible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacceptible\b/acceptable/g" *.tw
$GREP "\baccessable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccessable\b/accessible/g" *.tw
$GREP "\bacident\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacident\b/accident/g" *.tw
$GREP "\baccidentaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccidentaly\b/accidentally/g" *.tw
$GREP "\baccidently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccidently\b/accidentally/g" *.tw
$GREP "\bacclimitization\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacclimitization\b/acclimatization/g" *.tw
$GREP "\baccomadate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadate\b/accommodate/g" *.tw
$GREP "\baccomadated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadated\b/accommodated/g" *.tw
$GREP "\baccomadates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadates\b/accommodates/g" *.tw
$GREP "\baccomadating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadating\b/accommodating/g" *.tw
$GREP "\baccomadation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadation\b/accommodation/g" *.tw
$GREP "\baccomadations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadations\b/accommodations/g" *.tw
$GREP "\baccomdate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomdate\b/accommodate/g" *.tw
$GREP "\baccomodate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodate\b/accommodate/g" *.tw
$GREP "\baccomodated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodated\b/accommodated/g" *.tw
$GREP "\baccomodates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodates\b/accommodates/g" *.tw
$GREP "\baccomodating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodating\b/accommodating/g" *.tw
$GREP "\baccomodation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodation\b/accommodation/g" *.tw
$GREP "\baccomodations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodations\b/accommodations/g" *.tw
$GREP "\baccompanyed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccompanyed\b/accompanied/g" *.tw
$GREP "\baccordeon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccordeon\b/accordion/g" *.tw
$GREP "\baccordian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccordian\b/accordion/g" *.tw
$GREP "\baccoring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccoring\b/according/g" *.tw
$GREP "\baccoustic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccoustic\b/acoustic/g" *.tw
$GREP "\baccquainted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccquainted\b/acquainted/g" *.tw
$GREP "\baccrediation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccrediation\b/accreditation/g" *.tw
$GREP "\baccredidation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccredidation\b/accreditation/g" *.tw
$GREP "\baccross\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccross\b/across/g" *.tw
$GREP "\baccussed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccussed\b/accused/g" *.tw
$GREP "\bacedemic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacedemic\b/academic/g" *.tw
$GREP "\bacheive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheive\b/achieve/g" *.tw
$GREP "\bacheived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheived\b/achieved/g" *.tw
$GREP "\bacheivement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheivement\b/achievement/g" *.tw
$GREP "\bacheivements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheivements\b/achievements/g" *.tw
$GREP "\bacheives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheives\b/achieves/g" *.tw
$GREP "\bacheiving\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheiving\b/achieving/g" *.tw
$GREP "\bacheivment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheivment\b/achievement/g" *.tw
$GREP "\bacheivments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheivments\b/achievements/g" *.tw
$GREP "\bachievment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bachievment\b/achievement/g" *.tw
$GREP "\bachievments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bachievments\b/achievements/g" *.tw
$GREP "\bachivement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bachivement\b/achievement/g" *.tw
$GREP "\bachivements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bachivements\b/achievements/g" *.tw
$GREP "\backnowldeged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\backnowldeged\b/acknowledged/g" *.tw
$GREP "\backnowledgeing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\backnowledgeing\b/acknowledging/g" *.tw
$GREP "\bacommodate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacommodate\b/accommodate/g" *.tw
$GREP "\bacomplish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacomplish\b/accomplish/g" *.tw
$GREP "\bacomplished\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacomplished\b/accomplished/g" *.tw
$GREP "\bacomplishment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacomplishment\b/accomplishment/g" *.tw
$GREP "\bacomplishments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacomplishments\b/accomplishments/g" *.tw
$GREP "\bacording\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacording\b/according/g" *.tw
$GREP "\bacordingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacordingly\b/accordingly/g" *.tw
$GREP "\bacquaintence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacquaintence\b/acquaintance/g" *.tw
$GREP "\bacquaintences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacquaintences\b/acquaintances/g" *.tw
$GREP "\bacquiantence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacquiantence\b/acquaintance/g" *.tw
$GREP "\bacquiantences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacquiantences\b/acquaintances/g" *.tw
$GREP "\bacquited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacquited\b/acquitted/g" *.tw
$GREP "\bactivites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bactivites\b/activities/g" *.tw
$GREP "\bactivly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bactivly\b/actively/g" *.tw
$GREP "\bactualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bactualy\b/actually/g" *.tw
$GREP "\bacuracy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacuracy\b/accuracy/g" *.tw
$GREP "\bacused\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacused\b/accused/g" *.tw
$GREP "\bacustom\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacustom\b/accustom/g" *.tw
$GREP "\bacustommed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacustommed\b/accustomed/g" *.tw
$GREP "\badavanced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badavanced\b/advanced/g" *.tw
$GREP "\badbandon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badbandon\b/abandon/g" *.tw
$GREP "\baddional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddional\b/additional/g" *.tw
$GREP "\baddionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddionally\b/additionally/g" *.tw
$GREP "\badditinally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badditinally\b/additionally/g" *.tw
$GREP "\badditionaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badditionaly\b/additionally/g" *.tw
$GREP "\badditonal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badditonal\b/additional/g" *.tw
$GREP "\badditonally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badditonally\b/additionally/g" *.tw
$GREP "\baddmission\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddmission\b/admission/g" *.tw
$GREP "\baddopt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddopt\b/adopt/g" *.tw
$GREP "\baddopted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddopted\b/adopted/g" *.tw
$GREP "\baddoptive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddoptive\b/adoptive/g" *.tw
$GREP "\baddresable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddresable\b/addressable/g" *.tw
$GREP "\baddresed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddresed\b/addressed/g" *.tw
$GREP "\baddresing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddresing\b/addressing/g" *.tw
$GREP "\baddressess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddressess\b/addresses/g" *.tw
$GREP "\baddtion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddtion\b/addition/g" *.tw
$GREP "\baddtional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddtional\b/additional/g" *.tw
$GREP "\badecuate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badecuate\b/adequate/g" *.tw
$GREP "\badequit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badequit\b/adequate/g" *.tw
$GREP "\badhearing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badhearing\b/adhering/g" *.tw
$GREP "\badherance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badherance\b/adherence/g" *.tw
$GREP "\badmendment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmendment\b/amendment/g" *.tw
$GREP "\badmininistrative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmininistrative\b/administrative/g" *.tw
$GREP "\badminstered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badminstered\b/administered/g" *.tw
$GREP "\badminstrate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badminstrate\b/administrate/g" *.tw
$GREP "\badminstration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badminstration\b/administration/g" *.tw
$GREP "\badminstrative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badminstrative\b/administrative/g" *.tw
$GREP "\badminstrator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badminstrator\b/administrator/g" *.tw
$GREP "\badmissability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmissability\b/admissibility/g" *.tw
$GREP "\badmissable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmissable\b/admissible/g" *.tw
$GREP "\badmited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmited\b/admitted/g" *.tw
$GREP "\badmitedly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmitedly\b/admittedly/g" *.tw
$GREP "\badn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badn\b/and/g" *.tw
$GREP "\badolecent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badolecent\b/adolescent/g" *.tw
$GREP "\badquire\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badquire\b/acquire/g" *.tw
$GREP "\badquired\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badquired\b/acquired/g" *.tw
$GREP "\badquires\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badquires\b/acquires/g" *.tw
$GREP "\badquiring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badquiring\b/acquiring/g" *.tw
$GREP "\badres\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badres\b/address/g" *.tw
$GREP "\badresable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badresable\b/addressable/g" *.tw
$GREP "\badresing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badresing\b/addressing/g" *.tw
$GREP "\badress\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badress\b/address/g" *.tw
$GREP "\badressable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badressable\b/addressable/g" *.tw
$GREP "\badressed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badressed\b/addressed/g" *.tw
$GREP "\badventrous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badventrous\b/adventurous/g" *.tw
$GREP "\badvertisment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badvertisment\b/advertisement/g" *.tw
$GREP "\badvertisments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badvertisments\b/advertisements/g" *.tw
$GREP "\badvesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badvesary\b/adversary/g" *.tw
$GREP "\badviced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badviced\b/advised/g" *.tw
$GREP "\baeriel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baeriel\b/aerial/g" *.tw
$GREP "\baeriels\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baeriels\b/aerials/g" *.tw
$GREP "\bafair\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bafair\b/affair/g" *.tw
$GREP "\bafficianados\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bafficianados\b/aficionados/g" *.tw
$GREP "\bafficionado\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bafficionado\b/aficionado/g" *.tw
$GREP "\bafficionados\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bafficionados\b/aficionados/g" *.tw
$GREP "\baffilate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baffilate\b/affiliate/g" *.tw
$GREP "\baffilliate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baffilliate\b/affiliate/g" *.tw
$GREP "\baforememtioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baforememtioned\b/aforementioned/g" *.tw
$GREP "\bagainnst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagainnst\b/against/g" *.tw
$GREP "\bagains\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagains\b/against/g" *.tw
$GREP "\bagaisnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagaisnt\b/against/g" *.tw
$GREP "\baganist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baganist\b/against/g" *.tw
$GREP "\baggaravates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baggaravates\b/aggravates/g" *.tw
$GREP "\baggreed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baggreed\b/agreed/g" *.tw
$GREP "\baggreement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baggreement\b/agreement/g" *.tw
$GREP "\baggregious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baggregious\b/egregious/g" *.tw
$GREP "\baggresive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baggresive\b/aggressive/g" *.tw
$GREP "\bagian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagian\b/again/g" *.tw
$GREP "\bagianst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagianst\b/against/g" *.tw
$GREP "\bagin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagin\b/again/g" *.tw
$GREP "\baginst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baginst\b/against/g" *.tw
$GREP "\bagravate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagravate\b/aggravate/g" *.tw
$GREP "\bagre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagre\b/agree/g" *.tw
$GREP "\bagred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagred\b/agreed/g" *.tw
$GREP "\bagreeement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagreeement\b/agreement/g" *.tw
$GREP "\bagreemnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagreemnt\b/agreement/g" *.tw
$GREP "\bagregate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagregate\b/aggregate/g" *.tw
$GREP "\bagregates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagregates\b/aggregates/g" *.tw
$GREP "\bagreing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagreing\b/agreeing/g" *.tw
$GREP "\bagression\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagression\b/aggression/g" *.tw
$GREP "\bagressive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagressive\b/aggressive/g" *.tw
$GREP "\bagressively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagressively\b/aggressively/g" *.tw
$GREP "\bagressor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagressor\b/aggressor/g" *.tw
$GREP "\bagricultue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagricultue\b/agriculture/g" *.tw
$GREP "\bagriculure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagriculure\b/agriculture/g" *.tw
$GREP "\bagricuture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagricuture\b/agriculture/g" *.tw
$GREP "\bagrieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagrieved\b/aggrieved/g" *.tw
$GREP "\bahev\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bahev\b/have/g" *.tw
$GREP "\bahppen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bahppen\b/happen/g" *.tw
$GREP "\bahve\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bahve\b/have/g" *.tw
$GREP "\baicraft\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baicraft\b/aircraft/g" *.tw
$GREP "\baiport\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baiport\b/airport/g" *.tw
$GREP "\bairbourne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bairbourne\b/airborne/g" *.tw
$GREP "\baircaft\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baircaft\b/aircraft/g" *.tw
$GREP "\baircrafts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baircrafts\b/aircraft/g" *.tw
$GREP "\baircrafts'\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baircrafts'\b/aircraft's/g" *.tw
$GREP "\bairporta\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bairporta\b/airports/g" *.tw
$GREP "\bairrcraft\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bairrcraft\b/aircraft/g" *.tw
$GREP "\baisian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baisian\b/asian/g" *.tw
$GREP "\balbiet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balbiet\b/albeit/g" *.tw
$GREP "\balchohol\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balchohol\b/alcohol/g" *.tw
$GREP "\balchoholic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balchoholic\b/alcoholic/g" *.tw
$GREP "\balchol\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balchol\b/alcohol/g" *.tw
$GREP "\balcholic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balcholic\b/alcoholic/g" *.tw
$GREP "\balcohal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balcohal\b/alcohol/g" *.tw
$GREP "\balcoholical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balcoholical\b/alcoholic/g" *.tw
$GREP "\baledge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baledge\b/allege/g" *.tw
$GREP "\baledged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baledged\b/alleged/g" *.tw
$GREP "\baledges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baledges\b/alleges/g" *.tw
$GREP "\balege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balege\b/allege/g" *.tw
$GREP "\baleged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baleged\b/alleged/g" *.tw
$GREP "\balegience\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balegience\b/allegiance/g" *.tw
$GREP "\balgebraical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balgebraical\b/algebraic/g" *.tw
$GREP "\balgorhitms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balgorhitms\b/algorithms/g" *.tw
$GREP "\balgoritm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balgoritm\b/algorithm/g" *.tw
$GREP "\balgoritms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balgoritms\b/algorithms/g" *.tw
$GREP "\balientating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balientating\b/alienating/g" *.tw
$GREP "\balledge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balledge\b/allege/g" *.tw
$GREP "\balledged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balledged\b/alleged/g" *.tw
$GREP "\balledgedly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balledgedly\b/allegedly/g" *.tw
$GREP "\balledges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balledges\b/alleges/g" *.tw
$GREP "\ballegedely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballegedely\b/allegedly/g" *.tw
$GREP "\ballegedy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballegedy\b/allegedly/g" *.tw
$GREP "\ballegely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballegely\b/allegedly/g" *.tw
$GREP "\ballegence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballegence\b/allegiance/g" *.tw
$GREP "\ballegience\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballegience\b/allegiance/g" *.tw
$GREP "\ballign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballign\b/align/g" *.tw
$GREP "\balligned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balligned\b/aligned/g" *.tw
$GREP "\balliviate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balliviate\b/alleviate/g" *.tw
$GREP "\ballopone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballopone\b/allophone/g" *.tw
$GREP "\ballopones\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballopones\b/allophones/g" *.tw
$GREP "\ballready\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballready\b/already/g" *.tw
$GREP "\ballthough\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballthough\b/although/g" *.tw
$GREP "\balltime\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balltime\b/all-time/g" *.tw
$GREP "\balltogether\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balltogether\b/altogether/g" *.tw
$GREP "\balmsot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balmsot\b/almost/g" *.tw
$GREP "\balochol\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balochol\b/alcohol/g" *.tw
$GREP "\balomst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balomst\b/almost/g" *.tw
$GREP "\balotted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balotted\b/allotted/g" *.tw
$GREP "\balowed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balowed\b/allowed/g" *.tw
$GREP "\balowing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balowing\b/allowing/g" *.tw
$GREP "\balreayd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balreayd\b/already/g" *.tw
$GREP "\balse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balse\b/else/g" *.tw
$GREP "\balsot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balsot\b/also/g" *.tw
$GREP "\balternitives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balternitives\b/alternatives/g" *.tw
$GREP "\balthought\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balthought\b/although/g" *.tw
$GREP "\baltough\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baltough\b/although/g" *.tw
$GREP "\balwasy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balwasy\b/always/g" *.tw
$GREP "\balwyas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balwyas\b/always/g" *.tw
$GREP "\bamalgomated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamalgomated\b/amalgamated/g" *.tw
$GREP "\bamatuer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamatuer\b/amateur/g" *.tw
$GREP "\bamendmant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamendmant\b/amendment/g" *.tw
$GREP "\bAmercia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bAmercia\b/America/g" *.tw
$GREP "\bamerliorate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamerliorate\b/ameliorate/g" *.tw
$GREP "\bamke\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamke\b/make/g" *.tw
$GREP "\bamking\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamking\b/making/g" *.tw
$GREP "\bammend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammend\b/amend/g" *.tw
$GREP "\bammended\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammended\b/amended/g" *.tw
$GREP "\bammendment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammendment\b/amendment/g" *.tw
$GREP "\bammendments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammendments\b/amendments/g" *.tw
$GREP "\bammount\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammount\b/amount/g" *.tw
$GREP "\bammused\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammused\b/amused/g" *.tw
$GREP "\bamoung\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamoung\b/among/g" *.tw
$GREP "\bamoungst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamoungst\b/amongst/g" *.tw
$GREP "\bamung\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamung\b/among/g" *.tw
$GREP "\bamunition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamunition\b/ammunition/g" *.tw
$GREP "\banalagous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banalagous\b/analogous/g" *.tw
$GREP "\banalitic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banalitic\b/analytic/g" *.tw
$GREP "\banalogeous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banalogeous\b/analogous/g" *.tw
$GREP "\banarchim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banarchim\b/anarchism/g" *.tw
$GREP "\banarchistm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banarchistm\b/anarchism/g" *.tw
$GREP "\banbd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banbd\b/and/g" *.tw
$GREP "\bancestory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bancestory\b/ancestry/g" *.tw
$GREP "\bancilliary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bancilliary\b/ancillary/g" *.tw
$GREP "\bandd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bandd\b/and/g" *.tw
$GREP "\bandrogenous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bandrogenous\b/androgynous/g" *.tw
$GREP "\bandrogeny\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bandrogeny\b/androgyny/g" *.tw
$GREP "\banihilation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banihilation\b/annihilation/g" *.tw
$GREP "\baniversary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baniversary\b/anniversary/g" *.tw
$GREP "\bannoint\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannoint\b/anoint/g" *.tw
$GREP "\bannointed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannointed\b/anointed/g" *.tw
$GREP "\bannointing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannointing\b/anointing/g" *.tw
$GREP "\bannoints\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannoints\b/anoints/g" *.tw
$GREP "\bannouced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannouced\b/announced/g" *.tw
$GREP "\bannualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannualy\b/annually/g" *.tw
$GREP "\bannuled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannuled\b/annulled/g" *.tw
$GREP "\banohter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banohter\b/another/g" *.tw
$GREP "\banomolies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banomolies\b/anomalies/g" *.tw
$GREP "\banomolous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banomolous\b/anomalous/g" *.tw
$GREP "\banomoly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banomoly\b/anomaly/g" *.tw
$GREP "\banonimity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banonimity\b/anonymity/g" *.tw
$GREP "\banounced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banounced\b/announced/g" *.tw
$GREP "\banouncement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banouncement\b/announcement/g" *.tw
$GREP "\bansalisation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bansalisation\b/nasalisation/g" *.tw
$GREP "\bansalization\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bansalization\b/nasalization/g" *.tw
$GREP "\bansestors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bansestors\b/ancestors/g" *.tw
$GREP "\bantartic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bantartic\b/antarctic/g" *.tw
$GREP "\banthromorphization\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banthromorphization\b/anthropomorphization/g" *.tw
$GREP "\banthropolgist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banthropolgist\b/anthropologist/g" *.tw
$GREP "\banthropolgy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banthropolgy\b/anthropology/g" *.tw
$GREP "\bantiapartheid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bantiapartheid\b/anti-apartheid/g" *.tw
$GREP "\banual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banual\b/annual/g" *.tw
$GREP "\banulled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banulled\b/annulled/g" *.tw
$GREP "\banwsered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banwsered\b/answered/g" *.tw
$GREP "\banyhwere\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banyhwere\b/anywhere/g" *.tw
$GREP "\banyother\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banyother\b/any other/g" *.tw
$GREP "\banytying\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banytying\b/anything/g" *.tw
$GREP "\baparent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baparent\b/apparent/g" *.tw
$GREP "\baparment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baparment\b/apartment/g" *.tw
$GREP "\baplication\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baplication\b/application/g" *.tw
$GREP "\baplied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baplied\b/applied/g" *.tw
$GREP "\bapolegetics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapolegetics\b/apologetics/g" *.tw
$GREP "\bapparant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapparant\b/apparent/g" *.tw
$GREP "\bapparantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapparantly\b/apparently/g" *.tw
$GREP "\bappart\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappart\b/apart/g" *.tw
$GREP "\bappartment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappartment\b/apartment/g" *.tw
$GREP "\bappartments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappartments\b/apartments/g" *.tw
$GREP "\bappeareance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappeareance\b/appearance/g" *.tw
$GREP "\bappearence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappearence\b/appearance/g" *.tw
$GREP "\bappearences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappearences\b/appearances/g" *.tw
$GREP "\bapperance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapperance\b/appearance/g" *.tw
$GREP "\bapperances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapperances\b/appearances/g" *.tw
$GREP "\bappereance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappereance\b/appearance/g" *.tw
$GREP "\bappereances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappereances\b/appearances/g" *.tw
$GREP "\bapplicaiton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapplicaiton\b/application/g" *.tw
$GREP "\bapplicaitons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapplicaitons\b/applications/g" *.tw
$GREP "\bappologies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappologies\b/apologies/g" *.tw
$GREP "\bappology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappology\b/apology/g" *.tw
$GREP "\bapprearance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapprearance\b/appearance/g" *.tw
$GREP "\bapprieciate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapprieciate\b/appreciate/g" *.tw
$GREP "\bapproachs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapproachs\b/approaches/g" *.tw
$GREP "\bappropiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappropiate\b/appropriate/g" *.tw
$GREP "\bappropraite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappropraite\b/appropriate/g" *.tw
$GREP "\bappropropiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappropropiate\b/appropriate/g" *.tw
$GREP "\bapproproximate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapproproximate\b/approximate/g" *.tw
$GREP "\bapproxamately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapproxamately\b/approximately/g" *.tw
$GREP "\bapproxiately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapproxiately\b/approximately/g" *.tw
$GREP "\bapproximitely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapproximitely\b/approximately/g" *.tw
$GREP "\baprehensive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baprehensive\b/apprehensive/g" *.tw
$GREP "\bapropriate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapropriate\b/appropriate/g" *.tw
$GREP "\baproval\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baproval\b/approval/g" *.tw
$GREP "\baproximate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baproximate\b/approximate/g" *.tw
$GREP "\baproximately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baproximately\b/approximately/g" *.tw
$GREP "\baquaduct\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquaduct\b/aqueduct/g" *.tw
$GREP "\baquaintance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquaintance\b/acquaintance/g" *.tw
$GREP "\baquainted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquainted\b/acquainted/g" *.tw
$GREP "\baquiantance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquiantance\b/acquaintance/g" *.tw
$GREP "\baquire\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquire\b/acquire/g" *.tw
$GREP "\baquired\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquired\b/acquired/g" *.tw
$GREP "\baquiring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquiring\b/acquiring/g" *.tw
$GREP "\baquisition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquisition\b/acquisition/g" *.tw
$GREP "\baquitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquitted\b/acquitted/g" *.tw
$GREP "\baranged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baranged\b/arranged/g" *.tw
$GREP "\barangement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barangement\b/arrangement/g" *.tw
$GREP "\barbitarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barbitarily\b/arbitrarily/g" *.tw
$GREP "\barbitary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barbitary\b/arbitrary/g" *.tw
$GREP "\barchaelogical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchaelogical\b/archaeological/g" *.tw
$GREP "\barchaelogists\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchaelogists\b/archaeologists/g" *.tw
$GREP "\barchaelogy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchaelogy\b/archaeology/g" *.tw
$GREP "\barchetect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchetect\b/architect/g" *.tw
$GREP "\barchetects\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchetects\b/architects/g" *.tw
$GREP "\barchetectural\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchetectural\b/architectural/g" *.tw
$GREP "\barchetecturally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchetecturally\b/architecturally/g" *.tw
$GREP "\barchetecture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchetecture\b/architecture/g" *.tw
$GREP "\barchiac\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchiac\b/archaic/g" *.tw
$GREP "\barchictect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchictect\b/architect/g" *.tw
$GREP "\barchimedian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchimedian\b/archimedean/g" *.tw
$GREP "\barchitecht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchitecht\b/architect/g" *.tw
$GREP "\barchitechturally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchitechturally\b/architecturally/g" *.tw
$GREP "\barchitechture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchitechture\b/architecture/g" *.tw
$GREP "\barchitechtures\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchitechtures\b/architectures/g" *.tw
$GREP "\barchitectual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchitectual\b/architectural/g" *.tw
$GREP "\barchtype\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchtype\b/archetype/g" *.tw
$GREP "\barchtypes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchtypes\b/archetypes/g" *.tw
$GREP "\baready\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baready\b/already/g" *.tw
$GREP "\bareodynamics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bareodynamics\b/aerodynamics/g" *.tw
$GREP "\bargubly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bargubly\b/arguably/g" *.tw
$GREP "\barguement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barguement\b/argument/g" *.tw
$GREP "\barguements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barguements\b/arguments/g" *.tw
$GREP "\barised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barised\b/arose/g" *.tw
$GREP "\barival\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barival\b/arrival/g" *.tw
$GREP "\barmamant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barmamant\b/armament/g" *.tw
$GREP "\barmistace\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barmistace\b/armistice/g" *.tw
$GREP "\barogant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barogant\b/arrogant/g" *.tw
$GREP "\barogent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barogent\b/arrogant/g" *.tw
$GREP "\baroud\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baroud\b/around/g" *.tw
$GREP "\barrangment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barrangment\b/arrangement/g" *.tw
$GREP "\barrangments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barrangments\b/arrangements/g" *.tw
$GREP "\barrengement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barrengement\b/arrangement/g" *.tw
$GREP "\barrengements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barrengements\b/arrangements/g" *.tw
$GREP "\barround\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barround\b/around/g" *.tw
$GREP "\bartcile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartcile\b/article/g" *.tw
$GREP "\bartical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartical\b/article/g" *.tw
$GREP "\bartice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartice\b/article/g" *.tw
$GREP "\barticel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barticel\b/article/g" *.tw
$GREP "\bartifical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartifical\b/artificial/g" *.tw
$GREP "\bartifically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartifically\b/artificially/g" *.tw
$GREP "\bartillary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartillary\b/artillery/g" *.tw
$GREP "\barund\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barund\b/around/g" *.tw
$GREP "\basetic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basetic\b/ascetic/g" *.tw
$GREP "\basfar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basfar\b/as far/g" *.tw
$GREP "\basign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basign\b/assign/g" *.tw
$GREP "\baslo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baslo\b/also/g" *.tw
$GREP "\basociated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basociated\b/associated/g" *.tw
$GREP "\basorbed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basorbed\b/absorbed/g" *.tw
$GREP "\basphyxation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basphyxation\b/asphyxiation/g" *.tw
$GREP "\bassasin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasin\b/assassin/g" *.tw
$GREP "\bassasinate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasinate\b/assassinate/g" *.tw
$GREP "\bassasinated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasinated\b/assassinated/g" *.tw
$GREP "\bassasinates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasinates\b/assassinates/g" *.tw
$GREP "\bassasination\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasination\b/assassination/g" *.tw
$GREP "\bassasinations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasinations\b/assassinations/g" *.tw
$GREP "\bassasined\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasined\b/assassinated/g" *.tw
$GREP "\bassasins\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasins\b/assassins/g" *.tw
$GREP "\bassassintation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassassintation\b/assassination/g" *.tw
$GREP "\bassemple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassemple\b/assemble/g" *.tw
$GREP "\bassertation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassertation\b/assertion/g" *.tw
$GREP "\basside\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basside\b/aside/g" *.tw
$GREP "\bassisnate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassisnate\b/assassinate/g" *.tw
$GREP "\bassit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassit\b/assist/g" *.tw
$GREP "\bassitant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassitant\b/assistant/g" *.tw
$GREP "\bassocation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassocation\b/association/g" *.tw
$GREP "\bassoicate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassoicate\b/associate/g" *.tw
$GREP "\bassoicated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassoicated\b/associated/g" *.tw
$GREP "\bassoicates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassoicates\b/associates/g" *.tw
$GREP "\bassosication\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassosication\b/assassination/g" *.tw
$GREP "\basssassans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basssassans\b/assassins/g" *.tw
$GREP "\bassualt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassualt\b/assault/g" *.tw
$GREP "\bassualted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassualted\b/assaulted/g" *.tw
$GREP "\bassymetric\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassymetric\b/asymmetric/g" *.tw
$GREP "\bassymetrical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassymetrical\b/asymmetrical/g" *.tw
$GREP "\basteriod\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basteriod\b/asteroid/g" *.tw
$GREP "\basthetic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basthetic\b/aesthetic/g" *.tw
$GREP "\basthetical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basthetical\b/aesthetical/g" *.tw
$GREP "\basthetically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basthetically\b/aesthetically/g" *.tw
$GREP "\basume\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basume\b/assume/g" *.tw
$GREP "\baswell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baswell\b/as well/g" *.tw
$GREP "\batain\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batain\b/attain/g" *.tw
$GREP "\batempting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batempting\b/attempting/g" *.tw
$GREP "\batheistical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batheistical\b/atheistic/g" *.tw
$GREP "\bathenean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bathenean\b/athenian/g" *.tw
$GREP "\batheneans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batheneans\b/athenians/g" *.tw
$GREP "\bathiesm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bathiesm\b/atheism/g" *.tw
$GREP "\bathiest\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bathiest\b/atheist/g" *.tw
$GREP "\batorney\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batorney\b/attorney/g" *.tw
$GREP "\batribute\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batribute\b/attribute/g" *.tw
$GREP "\batributed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batributed\b/attributed/g" *.tw
$GREP "\batributes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batributes\b/attributes/g" *.tw
$GREP "\battemp\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemp\b/attempt/g" *.tw
$GREP "\battemped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemped\b/attempted/g" *.tw
$GREP "\battemt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemt\b/attempt/g" *.tw
$GREP "\battemted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemted\b/attempted/g" *.tw
$GREP "\battemting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemting\b/attempting/g" *.tw
$GREP "\battemts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemts\b/attempts/g" *.tw
$GREP "\battendence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battendence\b/attendance/g" *.tw
$GREP "\battendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battendent\b/attendant/g" *.tw
$GREP "\battendents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battendents\b/attendants/g" *.tw
$GREP "\battened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battened\b/attended/g" *.tw
$GREP "\battension\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battension\b/attention/g" *.tw
$GREP "\battitide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battitide\b/attitude/g" *.tw
$GREP "\battributred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battributred\b/attributed/g" *.tw
$GREP "\battrocities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battrocities\b/atrocities/g" *.tw
$GREP "\baudeince\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baudeince\b/audience/g" *.tw
$GREP "\bauromated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauromated\b/automated/g" *.tw
$GREP "\baustrailia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baustrailia\b/Australia/g" *.tw
$GREP "\baustrailian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baustrailian\b/Australian/g" *.tw
$GREP "\bauther\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauther\b/author/g" *.tw
$GREP "\bauthobiographic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthobiographic\b/autobiographic/g" *.tw
$GREP "\bauthobiography\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthobiography\b/autobiography/g" *.tw
$GREP "\bauthorative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthorative\b/authoritative/g" *.tw
$GREP "\bauthorites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthorites\b/authorities/g" *.tw
$GREP "\bauthorithy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthorithy\b/authority/g" *.tw
$GREP "\bauthoritiers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthoritiers\b/authorities/g" *.tw
$GREP "\bauthoritive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthoritive\b/authoritative/g" *.tw
$GREP "\bauthrorities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthrorities\b/authorities/g" *.tw
$GREP "\bautochtonous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautochtonous\b/autochthonous/g" *.tw
$GREP "\bautoctonous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautoctonous\b/autochthonous/g" *.tw
$GREP "\bautomaticly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautomaticly\b/automatically/g" *.tw
$GREP "\bautomibile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautomibile\b/automobile/g" *.tw
$GREP "\bautomonomous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautomonomous\b/autonomous/g" *.tw
$GREP "\bautor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautor\b/author/g" *.tw
$GREP "\bautority\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautority\b/authority/g" *.tw
$GREP "\bauxilary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauxilary\b/auxiliary/g" *.tw
$GREP "\bauxillaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauxillaries\b/auxiliaries/g" *.tw
$GREP "\bauxillary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauxillary\b/auxiliary/g" *.tw
$GREP "\bauxilliaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauxilliaries\b/auxiliaries/g" *.tw
$GREP "\bauxilliary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauxilliary\b/auxiliary/g" *.tw
$GREP "\bavailabe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailabe\b/available/g" *.tw
$GREP "\bavailablity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailablity\b/availability/g" *.tw
$GREP "\bavailaible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailaible\b/available/g" *.tw
$GREP "\bavailble\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailble\b/available/g" *.tw
$GREP "\bavailiable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailiable\b/available/g" *.tw
$GREP "\bavailible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailible\b/available/g" *.tw
$GREP "\bavalable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavalable\b/available/g" *.tw
$GREP "\bavalance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavalance\b/avalanche/g" *.tw
$GREP "\bavaliable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavaliable\b/available/g" *.tw
$GREP "\bavation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavation\b/aviation/g" *.tw
$GREP "\bavengence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavengence\b/a vengeance/g" *.tw
$GREP "\baverageed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baverageed\b/averaged/g" *.tw
$GREP "\bavilable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavilable\b/available/g" *.tw
$GREP "\bawared\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bawared\b/awarded/g" *.tw
$GREP "\bawya\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bawya\b/away/g" *.tw
$GREP "\bbaceause\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbaceause\b/because/g" *.tw
$GREP "\bbackgorund\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbackgorund\b/background/g" *.tw
$GREP "\bbackrounds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbackrounds\b/backgrounds/g" *.tw
$GREP "\bbakc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbakc\b/back/g" *.tw
$GREP "\bbanannas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbanannas\b/bananas/g" *.tw
$GREP "\bbandwith\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbandwith\b/bandwidth/g" *.tw
$GREP "\bbankrupcy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbankrupcy\b/bankruptcy/g" *.tw
$GREP "\bbanruptcy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbanruptcy\b/bankruptcy/g" *.tw
$GREP "\bbasicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbasicaly\b/basically/g" *.tw
$GREP "\bbasicly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbasicly\b/basically/g" *.tw
$GREP "\bbcak\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbcak\b/back/g" *.tw
$GREP "\bbeachead\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeachead\b/beachhead/g" *.tw
$GREP "\bbeacuse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeacuse\b/because/g" *.tw
$GREP "\bbeastiality\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeastiality\b/bestiality/g" *.tw
$GREP "\bbeatiful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeatiful\b/beautiful/g" *.tw
$GREP "\bbeaurocracy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeaurocracy\b/bureaucracy/g" *.tw
$GREP "\bbeaurocratic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeaurocratic\b/bureaucratic/g" *.tw
$GREP "\bbeautyfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeautyfull\b/beautiful/g" *.tw
$GREP "\bbecamae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecamae\b/became/g" *.tw
$GREP "\bbecasue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecasue\b/because/g" *.tw
$GREP "\bbeccause\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeccause\b/because/g" *.tw
$GREP "\bbecomeing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecomeing\b/becoming/g" *.tw
$GREP "\bbecomming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecomming\b/becoming/g" *.tw
$GREP "\bbecouse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecouse\b/because/g" *.tw
$GREP "\bbecuase\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecuase\b/because/g" *.tw
$GREP "\bbedore\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbedore\b/before/g" *.tw
$GREP "\bbeeing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeeing\b/being/g" *.tw
$GREP "\bbefoer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbefoer\b/before/g" *.tw
$GREP "\bbegginer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbegginer\b/beginner/g" *.tw
$GREP "\bbegginers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbegginers\b/beginners/g" *.tw
$GREP "\bbeggining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeggining\b/beginning/g" *.tw
$GREP "\bbegginings\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbegginings\b/beginnings/g" *.tw
$GREP "\bbeggins\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeggins\b/begins/g" *.tw
$GREP "\bbegining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbegining\b/beginning/g" *.tw
$GREP "\bbeginnig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeginnig\b/beginning/g" *.tw
$GREP "\bbeleagured\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleagured\b/beleaguered/g" *.tw
$GREP "\bbeleif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleif\b/belief/g" *.tw
$GREP "\bbeleive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleive\b/believe/g" *.tw
$GREP "\bbeleived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleived\b/believed/g" *.tw
$GREP "\bbeleives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleives\b/believes/g" *.tw
$GREP "\bbeleiving\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleiving\b/believing/g" *.tw
$GREP "\bbeligum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeligum\b/belgium/g" *.tw
$GREP "\bbelive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbelive\b/believe/g" *.tw
$GREP "\bbelligerant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbelligerant\b/belligerent/g" *.tw
$GREP "\bbellweather\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbellweather\b/bellwether/g" *.tw
$GREP "\bbemusemnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbemusemnt\b/bemusement/g" *.tw
$GREP "\bbeneficary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeneficary\b/beneficiary/g" *.tw
$GREP "\bbeng\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeng\b/being/g" *.tw
$GREP "\bbenificial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbenificial\b/beneficial/g" *.tw
$GREP "\bbenifit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbenifit\b/benefit/g" *.tw
$GREP "\bbenifits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbenifits\b/benefits/g" *.tw
$GREP "\bbergamont\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbergamont\b/bergamot/g" *.tw
$GREP "\bBernouilli\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBernouilli\b/Bernoulli/g" *.tw
$GREP "\bbeseige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeseige\b/besiege/g" *.tw
$GREP "\bbeseiged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeseiged\b/besieged/g" *.tw
$GREP "\bbeseiging\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeseiging\b/besieging/g" *.tw
$GREP "\bbeteen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeteen\b/between/g" *.tw
$GREP "\bbetwen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbetwen\b/between/g" *.tw
$GREP "\bbeween\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeween\b/between/g" *.tw
$GREP "\bbewteen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbewteen\b/between/g" *.tw
$GREP "\bbigining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbigining\b/beginning/g" *.tw
$GREP "\bbiginning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbiginning\b/beginning/g" *.tw
$GREP "\bbilateraly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbilateraly\b/bilaterally/g" *.tw
$GREP "\bbillingualism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbillingualism\b/bilingualism/g" *.tw
$GREP "\bbinominal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbinominal\b/binomial/g" *.tw
$GREP "\bbizzare\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbizzare\b/bizarre/g" *.tw
$GREP "\bblaim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bblaim\b/blame/g" *.tw
$GREP "\bblaimed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bblaimed\b/blamed/g" *.tw
$GREP "\bblessure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bblessure\b/blessing/g" *.tw
$GREP "\bBlitzkreig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBlitzkreig\b/Blitzkrieg/g" *.tw
$GREP "\bbodydbuilder\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbodydbuilder\b/bodybuilder/g" *.tw
$GREP "\bbombardement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbombardement\b/bombardment/g" *.tw
$GREP "\bbombarment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbombarment\b/bombardment/g" *.tw
$GREP "\bbondary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbondary\b/boundary/g" *.tw
$GREP "\bBonnano\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBonnano\b/Bonanno/g" *.tw
$GREP "\bboook\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bboook\b/book/g" *.tw
$GREP "\bborke\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bborke\b/broke/g" *.tw
$GREP "\bboundry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bboundry\b/boundary/g" *.tw
$GREP "\bbouyancy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbouyancy\b/buoyancy/g" *.tw
$GREP "\bbouyant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbouyant\b/buoyant/g" *.tw
$GREP "\bboyant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bboyant\b/buoyant/g" *.tw
$GREP "\bbradcast\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbradcast\b/broadcast/g" *.tw
$GREP "\bBrasillian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBrasillian\b/Brazilian/g" *.tw
$GREP "\bbreakthough\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbreakthough\b/breakthrough/g" *.tw
$GREP "\bbreakthroughts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbreakthroughts\b/breakthroughs/g" *.tw
$GREP "\bbreif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbreif\b/brief/g" *.tw
$GREP "\bbreifly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbreifly\b/briefly/g" *.tw
$GREP "\bbrethen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbrethen\b/brethren/g" *.tw
$GREP "\bbretheren\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbretheren\b/brethren/g" *.tw
$GREP "\bbriliant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbriliant\b/brilliant/g" *.tw
$GREP "\bbrillant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbrillant\b/brilliant/g" *.tw
$GREP "\bbrimestone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbrimestone\b/brimstone/g" *.tw
$GREP "\bBritian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBritian\b/Britain/g" *.tw
$GREP "\bBrittish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBrittish\b/British/g" *.tw
$GREP "\bbroacasted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbroacasted\b/broadcast/g" *.tw
$GREP "\bbroadacasting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbroadacasting\b/broadcasting/g" *.tw
$GREP "\bbroady\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbroady\b/broadly/g" *.tw
$GREP "\bBuddah\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBuddah\b/Buddha/g" *.tw
$GREP "\bBuddist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBuddist\b/Buddhist/g" *.tw
$GREP "\bbuisness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbuisness\b/business/g" *.tw
$GREP "\bbuisnessman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbuisnessman\b/businessman/g" *.tw
$GREP "\bbuoancy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbuoancy\b/buoyancy/g" *.tw
$GREP "\bburried\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bburried\b/buried/g" *.tw
$GREP "\bbusines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbusines\b/business/g" *.tw
$GREP "\bbusness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbusness\b/business/g" *.tw
$GREP "\bbussiness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbussiness\b/business/g" *.tw
$GREP "\bcaculater\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaculater\b/calculator/g" *.tw
$GREP "\bcacuses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcacuses\b/caucuses/g" *.tw
$GREP "\bcahracters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcahracters\b/characters/g" *.tw
$GREP "\bcalaber\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalaber\b/caliber/g" *.tw
$GREP "\bcalculater\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalculater\b/calculator/g" *.tw
$GREP "\bcalculs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalculs\b/calculus/g" *.tw
$GREP "\bcalenders\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalenders\b/calendars/g" *.tw
$GREP "\bcaligraphy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaligraphy\b/calligraphy/g" *.tw
$GREP "\bcaluclate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaluclate\b/calculate/g" *.tw
$GREP "\bcaluclated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaluclated\b/calculated/g" *.tw
$GREP "\bcaluculate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaluculate\b/calculate/g" *.tw
$GREP "\bcaluculated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaluculated\b/calculated/g" *.tw
$GREP "\bcalulate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalulate\b/calculate/g" *.tw
$GREP "\bcalulated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalulated\b/calculated/g" *.tw
$GREP "\bcalulater\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalulater\b/calculator/g" *.tw
$GREP "\bCambrige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCambrige\b/Cambridge/g" *.tw
$GREP "\bcamoflage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcamoflage\b/camouflage/g" *.tw
$GREP "\bcampagin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcampagin\b/campaign/g" *.tw
$GREP "\bcampain\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcampain\b/campaign/g" *.tw
$GREP "\bcampains\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcampains\b/campaigns/g" *.tw
$GREP "\bcandadate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcandadate\b/candidate/g" *.tw
$GREP "\bcandiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcandiate\b/candidate/g" *.tw
$GREP "\bcandidiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcandidiate\b/candidate/g" *.tw
$GREP "\bcannister\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannister\b/canister/g" *.tw
$GREP "\bcannisters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannisters\b/canisters/g" *.tw
$GREP "\bcannnot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannnot\b/cannot/g" *.tw
$GREP "\bcannonical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannonical\b/canonical/g" *.tw
$GREP "\bcannotation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannotation\b/connotation/g" *.tw
$GREP "\bcannotations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannotations\b/connotations/g" *.tw
$GREP "\bcaost\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaost\b/coast/g" *.tw
$GREP "\bcaperbility\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaperbility\b/capability/g" *.tw
$GREP "\bCapetown\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCapetown\b/Cape Town/g" *.tw
$GREP "\bcapible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcapible\b/capable/g" *.tw
$GREP "\bcaptial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaptial\b/capital/g" *.tw
$GREP "\bcaptued\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaptued\b/captured/g" *.tw
$GREP "\bcapturd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcapturd\b/captured/g" *.tw
$GREP "\bcarachter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarachter\b/character/g" *.tw
$GREP "\bcaracterized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaracterized\b/characterized/g" *.tw
$GREP "\bcarefull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarefull\b/careful/g" *.tw
$GREP "\bcareing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcareing\b/caring/g" *.tw
$GREP "\bcarismatic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarismatic\b/charismatic/g" *.tw
$GREP "\bCarmalite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarmalite\b/Carmelite/g" *.tw
$GREP "\bCarnagie\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarnagie\b/Carnegie/g" *.tw
$GREP "\bCarnagie-Mellon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarnagie-Mellon\b/Carnegie-Mellon/g" *.tw
$GREP "\bCarnigie\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarnigie\b/Carnegie/g" *.tw
$GREP "\bCarnigie-Mellon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarnigie-Mellon\b/Carnegie-Mellon/g" *.tw
$GREP "\bcarreer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarreer\b/career/g" *.tw
$GREP "\bcarrers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarrers\b/careers/g" *.tw
$GREP "\bCarribbean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarribbean\b/Caribbean/g" *.tw
$GREP "\bCarribean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarribean\b/Caribbean/g" *.tw
$GREP "\bcarryng\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarryng\b/carrying/g" *.tw
$GREP "\bcartdridge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcartdridge\b/cartridge/g" *.tw
$GREP "\bCarthagian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarthagian\b/Carthaginian/g" *.tw
$GREP "\bcarthographer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarthographer\b/cartographer/g" *.tw
$GREP "\bcartilege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcartilege\b/cartilage/g" *.tw
$GREP "\bcartilidge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcartilidge\b/cartilage/g" *.tw
$GREP "\bcartrige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcartrige\b/cartridge/g" *.tw
$GREP "\bcasette\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasette\b/cassette/g" *.tw
$GREP "\bcasion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasion\b/caisson/g" *.tw
$GREP "\bcassawory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcassawory\b/cassowary/g" *.tw
$GREP "\bcassowarry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcassowarry\b/cassowary/g" *.tw
$GREP "\bcasue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasue\b/cause/g" *.tw
$GREP "\bcasued\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasued\b/caused/g" *.tw
$GREP "\bcasues\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasues\b/causes/g" *.tw
$GREP "\bcasuing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasuing\b/causing/g" *.tw
$GREP "\bcasulaties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasulaties\b/casualties/g" *.tw
$GREP "\bcasulaty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasulaty\b/casualty/g" *.tw
$GREP "\bcatagories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatagories\b/categories/g" *.tw
$GREP "\bcatagorized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatagorized\b/categorized/g" *.tw
$GREP "\bcatagory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatagory\b/category/g" *.tw
$GREP "\bcatapillar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatapillar\b/caterpillar/g" *.tw
$GREP "\bcatapillars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatapillars\b/caterpillars/g" *.tw
$GREP "\bcatapiller\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatapiller\b/caterpillar/g" *.tw
$GREP "\bcatapillers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatapillers\b/caterpillars/g" *.tw
$GREP "\bcatepillar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatepillar\b/caterpillar/g" *.tw
$GREP "\bcatepillars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatepillars\b/caterpillars/g" *.tw
$GREP "\bcatergorize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatergorize\b/categorize/g" *.tw
$GREP "\bcatergorized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatergorized\b/categorized/g" *.tw
$GREP "\bcaterpilar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaterpilar\b/caterpillar/g" *.tw
$GREP "\bcaterpilars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaterpilars\b/caterpillars/g" *.tw
$GREP "\bcaterpiller\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaterpiller\b/caterpillar/g" *.tw
$GREP "\bcaterpillers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaterpillers\b/caterpillars/g" *.tw
$GREP "\bcathlic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcathlic\b/catholic/g" *.tw
$GREP "\bcatholocism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatholocism\b/catholicism/g" *.tw
$GREP "\bcatterpilar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatterpilar\b/caterpillar/g" *.tw
$GREP "\bcatterpilars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatterpilars\b/caterpillars/g" *.tw
$GREP "\bcatterpillar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatterpillar\b/caterpillar/g" *.tw
$GREP "\bcatterpillars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatterpillars\b/caterpillars/g" *.tw
$GREP "\bcattleship\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcattleship\b/battleship/g" *.tw
$GREP "\bcausalities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcausalities\b/casualties/g" *.tw
$GREP "\bCeasar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCeasar\b/Caesar/g" *.tw
$GREP "\bCelcius\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCelcius\b/Celsius/g" *.tw
$GREP "\bcellpading\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcellpading\b/cellpadding/g" *.tw
$GREP "\bcementary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcementary\b/cemetery/g" *.tw
$GREP "\bcemetarey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcemetarey\b/cemetery/g" *.tw
$GREP "\bcemetaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcemetaries\b/cemeteries/g" *.tw
$GREP "\bcemetary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcemetary\b/cemetery/g" *.tw
$GREP "\bcencus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcencus\b/census/g" *.tw
$GREP "\bcententenial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcententenial\b/centennial/g" *.tw
$GREP "\bcentruies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcentruies\b/centuries/g" *.tw
$GREP "\bcentruy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcentruy\b/century/g" *.tw
$GREP "\bcentuties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcentuties\b/centuries/g" *.tw
$GREP "\bcentuty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcentuty\b/century/g" *.tw
$GREP "\bcerimonial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcerimonial\b/ceremonial/g" *.tw
$GREP "\bcerimonies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcerimonies\b/ceremonies/g" *.tw
$GREP "\bcerimonious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcerimonious\b/ceremonious/g" *.tw
$GREP "\bcerimony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcerimony\b/ceremony/g" *.tw
$GREP "\bceromony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bceromony\b/ceremony/g" *.tw
$GREP "\bcertainity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcertainity\b/certainty/g" *.tw
$GREP "\bcertian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcertian\b/certain/g" *.tw
$GREP "\bchalenging\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchalenging\b/challenging/g" *.tw
$GREP "\bchallange\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchallange\b/challenge/g" *.tw
$GREP "\bchallanged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchallanged\b/challenged/g" *.tw
$GREP "\bchallege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchallege\b/challenge/g" *.tw
$GREP "\bChampange\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bChampange\b/Champagne/g" *.tw
$GREP "\bchangable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchangable\b/changeable/g" *.tw
$GREP "\bcharachter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharachter\b/character/g" *.tw
$GREP "\bcharachters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharachters\b/characters/g" *.tw
$GREP "\bcharactersistic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharactersistic\b/characteristic/g" *.tw
$GREP "\bcharactor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharactor\b/character/g" *.tw
$GREP "\bcharactors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharactors\b/characters/g" *.tw
$GREP "\bcharasmatic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharasmatic\b/charismatic/g" *.tw
$GREP "\bcharaterized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharaterized\b/characterized/g" *.tw
$GREP "\bchariman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchariman\b/chairman/g" *.tw
$GREP "\bcharistics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharistics\b/characteristics/g" *.tw
$GREP "\bcheif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcheif\b/chief/g" *.tw
$GREP "\bcheifs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcheifs\b/chiefs/g" *.tw
$GREP "\bchemcial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchemcial\b/chemical/g" *.tw
$GREP "\bchemcially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchemcially\b/chemically/g" *.tw
$GREP "\bchemestry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchemestry\b/chemistry/g" *.tw
$GREP "\bchemicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchemicaly\b/chemically/g" *.tw
$GREP "\bchildbird\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchildbird\b/childbirth/g" *.tw
$GREP "\bchilden\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchilden\b/children/g" *.tw
$GREP "\bchoclate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchoclate\b/chocolate/g" *.tw
$GREP "\bchoosen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchoosen\b/chosen/g" *.tw
$GREP "\bchracter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchracter\b/character/g" *.tw
$GREP "\bchuch\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchuch\b/church/g" *.tw
$GREP "\bchurchs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchurchs\b/churches/g" *.tw
$GREP "\bCincinatti\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCincinatti\b/Cincinnati/g" *.tw
$GREP "\bCincinnatti\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCincinnatti\b/Cincinnati/g" *.tw
$GREP "\bcirculaton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcirculaton\b/circulation/g" *.tw
$GREP "\bcircumsicion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcircumsicion\b/circumcision/g" *.tw
$GREP "\bcircut\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcircut\b/circuit/g" *.tw
$GREP "\bciricuit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bciricuit\b/circuit/g" *.tw
$GREP "\bciriculum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bciriculum\b/curriculum/g" *.tw
$GREP "\bcivillian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcivillian\b/civilian/g" *.tw
$GREP "\bclaer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclaer\b/clear/g" *.tw
$GREP "\bclaerer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclaerer\b/clearer/g" *.tw
$GREP "\bclaerly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclaerly\b/clearly/g" *.tw
$GREP "\bclaimes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclaimes\b/claims/g" *.tw
$GREP "\bclas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclas\b/class/g" *.tw
$GREP "\bclasic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclasic\b/classic/g" *.tw
$GREP "\bclasical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclasical\b/classical/g" *.tw
$GREP "\bclasically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclasically\b/classically/g" *.tw
$GREP "\bcleareance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcleareance\b/clearance/g" *.tw
$GREP "\bclincial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclincial\b/clinical/g" *.tw
$GREP "\bclinicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclinicaly\b/clinically/g" *.tw
$GREP "\bcmo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcmo\b/com/g" *.tw
$GREP "\bcmoputer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcmoputer\b/computer/g" *.tw
$GREP "\bco-incided\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bco-incided\b/coincided/g" *.tw
$GREP "\bCoca Cola\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCoca Cola\b/Coca-Cola/g" *.tw
$GREP "\bcoctail\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoctail\b/cocktail/g" *.tw
$GREP "\bcoform\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoform\b/conform/g" *.tw
$GREP "\bcognizent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcognizent\b/cognizant/g" *.tw
$GREP "\bcoincedentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoincedentally\b/coincidentally/g" *.tw
$GREP "\bcolaborations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcolaborations\b/collaborations/g" *.tw
$GREP "\bcolateral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcolateral\b/collateral/g" *.tw
$GREP "\bcolelctive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcolelctive\b/collective/g" *.tw
$GREP "\bcollaberative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollaberative\b/collaborative/g" *.tw
$GREP "\bcollecton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollecton\b/collection/g" *.tw
$GREP "\bcollegue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollegue\b/colleague/g" *.tw
$GREP "\bcollegues\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollegues\b/colleagues/g" *.tw
$GREP "\bcollonade\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollonade\b/colonnade/g" *.tw
$GREP "\bcollonies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollonies\b/colonies/g" *.tw
$GREP "\bcollony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollony\b/colony/g" *.tw
$GREP "\bcollosal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollosal\b/colossal/g" *.tw
$GREP "\bcolonizators\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcolonizators\b/colonizers/g" *.tw
$GREP "\bcomando\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomando\b/commando/g" *.tw
$GREP "\bcomandos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomandos\b/commandos/g" *.tw
$GREP "\bcomany\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomany\b/company/g" *.tw
$GREP "\bcomapany\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomapany\b/company/g" *.tw
$GREP "\bcomback\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomback\b/comeback/g" *.tw
$GREP "\bcombanations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcombanations\b/combinations/g" *.tw
$GREP "\bcombinatins\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcombinatins\b/combinations/g" *.tw
$GREP "\bcombusion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcombusion\b/combustion/g" *.tw
$GREP "\bcomdemnation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomdemnation\b/condemnation/g" *.tw
$GREP "\bcomemmorates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomemmorates\b/commemorates/g" *.tw
$GREP "\bcomemoretion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomemoretion\b/commemoration/g" *.tw
$GREP "\bcomision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomision\b/commission/g" *.tw
$GREP "\bcomisioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomisioned\b/commissioned/g" *.tw
$GREP "\bcomisioner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomisioner\b/commissioner/g" *.tw
$GREP "\bcomisioning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomisioning\b/commissioning/g" *.tw
$GREP "\bcomisions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomisions\b/commissions/g" *.tw
$GREP "\bcomission\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomission\b/commission/g" *.tw
$GREP "\bcomissioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomissioned\b/commissioned/g" *.tw
$GREP "\bcomissioner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomissioner\b/commissioner/g" *.tw
$GREP "\bcomissioning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomissioning\b/commissioning/g" *.tw
$GREP "\bcomissions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomissions\b/commissions/g" *.tw
$GREP "\bcomited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomited\b/committed/g" *.tw
$GREP "\bcomiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomiting\b/committing/g" *.tw
$GREP "\bcomitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomitted\b/committed/g" *.tw
$GREP "\bcomittee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomittee\b/committee/g" *.tw
$GREP "\bcomitting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomitting\b/committing/g" *.tw
$GREP "\bcommandoes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommandoes\b/commandos/g" *.tw
$GREP "\bcommedic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommedic\b/comedic/g" *.tw
$GREP "\bcommemerative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommemerative\b/commemorative/g" *.tw
$GREP "\bcommemmorate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommemmorate\b/commemorate/g" *.tw
$GREP "\bcommemmorating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommemmorating\b/commemorating/g" *.tw
$GREP "\bcommerical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommerical\b/commercial/g" *.tw
$GREP "\bcommerically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommerically\b/commercially/g" *.tw
$GREP "\bcommericial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommericial\b/commercial/g" *.tw
$GREP "\bcommericially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommericially\b/commercially/g" *.tw
$GREP "\bcommerorative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommerorative\b/commemorative/g" *.tw
$GREP "\bcomming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomming\b/coming/g" *.tw
$GREP "\bcomminication\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomminication\b/communication/g" *.tw
$GREP "\bcommision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommision\b/commission/g" *.tw
$GREP "\bcommisioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommisioned\b/commissioned/g" *.tw
$GREP "\bcommisioner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommisioner\b/commissioner/g" *.tw
$GREP "\bcommisioning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommisioning\b/commissioning/g" *.tw
$GREP "\bcommisions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommisions\b/commissions/g" *.tw
$GREP "\bcommited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommited\b/committed/g" *.tw
$GREP "\bcommitee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommitee\b/committee/g" *.tw
$GREP "\bcommiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommiting\b/committing/g" *.tw
$GREP "\bcommitte\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommitte\b/committee/g" *.tw
$GREP "\bcommittment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommittment\b/commitment/g" *.tw
$GREP "\bcommittments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommittments\b/commitments/g" *.tw
$GREP "\bcommmemorated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommmemorated\b/commemorated/g" *.tw
$GREP "\bcommongly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommongly\b/commonly/g" *.tw
$GREP "\bcommonweath\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommonweath\b/commonwealth/g" *.tw
$GREP "\bcommuications\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommuications\b/communications/g" *.tw
$GREP "\bcommuinications\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommuinications\b/communications/g" *.tw
$GREP "\bcommunciation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommunciation\b/communication/g" *.tw
$GREP "\bcommuniation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommuniation\b/communication/g" *.tw
$GREP "\bcommunites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommunites\b/communities/g" *.tw
$GREP "\bcompability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompability\b/compatibility/g" *.tw
$GREP "\bcomparision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomparision\b/comparison/g" *.tw
$GREP "\bcomparisions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomparisions\b/comparisons/g" *.tw
$GREP "\bcomparitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomparitive\b/comparative/g" *.tw
$GREP "\bcomparitively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomparitively\b/comparatively/g" *.tw
$GREP "\bcompatabilities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatabilities\b/compatibilities/g" *.tw
$GREP "\bcompatability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatability\b/compatibility/g" *.tw
$GREP "\bcompatable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatable\b/compatible/g" *.tw
$GREP "\bcompatablities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatablities\b/compatibilities/g" *.tw
$GREP "\bcompatablity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatablity\b/compatibility/g" *.tw
$GREP "\bcompatiable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatiable\b/compatible/g" *.tw
$GREP "\bcompatiblities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatiblities\b/compatibilities/g" *.tw
$GREP "\bcompatiblity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatiblity\b/compatibility/g" *.tw
$GREP "\bcompeitions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompeitions\b/competitions/g" *.tw
$GREP "\bcompensantion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompensantion\b/compensation/g" *.tw
$GREP "\bcompetance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetance\b/competence/g" *.tw
$GREP "\bcompetant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetant\b/competent/g" *.tw
$GREP "\bcompetative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetative\b/competitive/g" *.tw
$GREP "\bcompetitiion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetitiion\b/competition/g" *.tw
$GREP "\bcompetive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetive\b/competitive/g" *.tw
$GREP "\bcompetiveness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetiveness\b/competitiveness/g" *.tw
$GREP "\bcomphrehensive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomphrehensive\b/comprehensive/g" *.tw
$GREP "\bcompitent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompitent\b/competent/g" *.tw
$GREP "\bcompletedthe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompletedthe\b/completed the/g" *.tw
$GREP "\bcompletelyl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompletelyl\b/completely/g" *.tw
$GREP "\bcompletetion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompletetion\b/completion/g" *.tw
$GREP "\bcomplier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomplier\b/compiler/g" *.tw
$GREP "\bcomponant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomponant\b/component/g" *.tw
$GREP "\bcomprable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomprable\b/comparable/g" *.tw
$GREP "\bcomprimise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomprimise\b/compromise/g" *.tw
$GREP "\bcompulsary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompulsary\b/compulsory/g" *.tw
$GREP "\bcompulsery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompulsery\b/compulsory/g" *.tw
$GREP "\bcomputarized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomputarized\b/computerized/g" *.tw
$GREP "\bconcensus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcensus\b/consensus/g" *.tw
$GREP "\bconcider\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcider\b/consider/g" *.tw
$GREP "\bconcidered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcidered\b/considered/g" *.tw
$GREP "\bconcidering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcidering\b/considering/g" *.tw
$GREP "\bconciders\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconciders\b/considers/g" *.tw
$GREP "\bconcieted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcieted\b/conceited/g" *.tw
$GREP "\bconcieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcieved\b/conceived/g" *.tw
$GREP "\bconcious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcious\b/conscious/g" *.tw
$GREP "\bconciously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconciously\b/consciously/g" *.tw
$GREP "\bconciousness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconciousness\b/consciousness/g" *.tw
$GREP "\bcondamned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcondamned\b/condemned/g" *.tw
$GREP "\bcondemmed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcondemmed\b/condemned/g" *.tw
$GREP "\bcondidtion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcondidtion\b/condition/g" *.tw
$GREP "\bcondidtions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcondidtions\b/conditions/g" *.tw
$GREP "\bconditionsof\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconditionsof\b/conditions of/g" *.tw
$GREP "\bconected\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconected\b/connected/g" *.tw
$GREP "\bconection\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconection\b/connection/g" *.tw
$GREP "\bconesencus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconesencus\b/consensus/g" *.tw
$GREP "\bconfidental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconfidental\b/confidential/g" *.tw
$GREP "\bconfidentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconfidentally\b/confidentially/g" *.tw
$GREP "\bconfids\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconfids\b/confides/g" *.tw
$GREP "\bconfigureable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconfigureable\b/configurable/g" *.tw
$GREP "\bconfortable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconfortable\b/comfortable/g" *.tw
$GREP "\bcongradulations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcongradulations\b/congratulations/g" *.tw
$GREP "\bcongresional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcongresional\b/congressional/g" *.tw
$GREP "\bconived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconived\b/connived/g" *.tw
$GREP "\bconjecutre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconjecutre\b/conjecture/g" *.tw
$GREP "\bconjuction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconjuction\b/conjunction/g" *.tw
$GREP "\bConneticut\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bConneticut\b/Connecticut/g" *.tw
$GREP "\bconotations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconotations\b/connotations/g" *.tw
$GREP "\bconquerd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconquerd\b/conquered/g" *.tw
$GREP "\bconquerer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconquerer\b/conqueror/g" *.tw
$GREP "\bconquerers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconquerers\b/conquerors/g" *.tw
$GREP "\bconqured\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconqured\b/conquered/g" *.tw
$GREP "\bconscent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconscent\b/consent/g" *.tw
$GREP "\bconsciouness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsciouness\b/consciousness/g" *.tw
$GREP "\bconsdider\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsdider\b/consider/g" *.tw
$GREP "\bconsdidered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsdidered\b/considered/g" *.tw
$GREP "\bconsdiered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsdiered\b/considered/g" *.tw
$GREP "\bconsectutive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsectutive\b/consecutive/g" *.tw
$GREP "\bconsenquently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsenquently\b/consequently/g" *.tw
$GREP "\bconsentrate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsentrate\b/concentrate/g" *.tw
$GREP "\bconsentrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsentrated\b/concentrated/g" *.tw
$GREP "\bconsentrates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsentrates\b/concentrates/g" *.tw
$GREP "\bconsept\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsept\b/concept/g" *.tw
$GREP "\bconsequentually\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsequentually\b/consequently/g" *.tw
$GREP "\bconsequeseces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsequeseces\b/consequences/g" *.tw
$GREP "\bconsern\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsern\b/concern/g" *.tw
$GREP "\bconserned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconserned\b/concerned/g" *.tw
$GREP "\bconserning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconserning\b/concerning/g" *.tw
$GREP "\bconservitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconservitive\b/conservative/g" *.tw
$GREP "\bconsiciousness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsiciousness\b/consciousness/g" *.tw
$GREP "\bconsicousness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsicousness\b/consciousness/g" *.tw
$GREP "\bconsiderd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsiderd\b/considered/g" *.tw
$GREP "\bconsideres\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsideres\b/considered/g" *.tw
$GREP "\bconsious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsious\b/conscious/g" *.tw
$GREP "\bconsistant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsistant\b/consistent/g" *.tw
$GREP "\bconsistantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsistantly\b/consistently/g" *.tw
$GREP "\bconsituencies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsituencies\b/constituencies/g" *.tw
$GREP "\bconsituency\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsituency\b/constituency/g" *.tw
$GREP "\bconsituted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsituted\b/constituted/g" *.tw
$GREP "\bconsitution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsitution\b/constitution/g" *.tw
$GREP "\bconsitutional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsitutional\b/constitutional/g" *.tw
$GREP "\bconsolodate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsolodate\b/consolidate/g" *.tw
$GREP "\bconsolodated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsolodated\b/consolidated/g" *.tw
$GREP "\bconsonent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsonent\b/consonant/g" *.tw
$GREP "\bconsonents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsonents\b/consonants/g" *.tw
$GREP "\bconsorcium\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsorcium\b/consortium/g" *.tw
$GREP "\bconspiracys\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconspiracys\b/conspiracies/g" *.tw
$GREP "\bconspiriator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconspiriator\b/conspirator/g" *.tw
$GREP "\bconstaints\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstaints\b/constraints/g" *.tw
$GREP "\bconstanly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstanly\b/constantly/g" *.tw
$GREP "\bconstarnation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstarnation\b/consternation/g" *.tw
$GREP "\bconstatn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstatn\b/constant/g" *.tw
$GREP "\bconstinually\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstinually\b/continually/g" *.tw
$GREP "\bconstituant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstituant\b/constituent/g" *.tw
$GREP "\bconstituants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstituants\b/constituents/g" *.tw
$GREP "\bconstituion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstituion\b/constitution/g" *.tw
$GREP "\bconstituional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstituional\b/constitutional/g" *.tw
$GREP "\bconsttruction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsttruction\b/construction/g" *.tw
$GREP "\bconstuction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstuction\b/construction/g" *.tw
$GREP "\bcontstruction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontstruction\b/construction/g" *.tw
$GREP "\bconsulant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsulant\b/consultant/g" *.tw
$GREP "\bconsumate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsumate\b/consummate/g" *.tw
$GREP "\bconsumated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsumated\b/consummated/g" *.tw
$GREP "\bcontaiminate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontaiminate\b/contaminate/g" *.tw
$GREP "\bcontaines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontaines\b/contains/g" *.tw
$GREP "\bcontamporaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontamporaries\b/contemporaries/g" *.tw
$GREP "\bcontamporary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontamporary\b/contemporary/g" *.tw
$GREP "\bcontempoary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontempoary\b/contemporary/g" *.tw
$GREP "\bcontemporaneus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontemporaneus\b/contemporaneous/g" *.tw
$GREP "\bcontempory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontempory\b/contemporary/g" *.tw
$GREP "\bcontendor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontendor\b/contender/g" *.tw
$GREP "\bcontian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontian\b/contain/g" *.tw
$GREP "\bcontians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontians\b/contains/g" *.tw
$GREP "\bcontibute\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontibute\b/contribute/g" *.tw
$GREP "\bcontibuted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontibuted\b/contributed/g" *.tw
$GREP "\bcontibutes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontibutes\b/contributes/g" *.tw
$GREP "\bcontigent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontigent\b/contingent/g" *.tw
$GREP "\bcontined\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontined\b/continued/g" *.tw
$GREP "\bcontinential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontinential\b/continental/g" *.tw
$GREP "\bcontinous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontinous\b/continuous/g" *.tw
$GREP "\bcontinously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontinously\b/continuously/g" *.tw
$GREP "\bcontinueing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontinueing\b/continuing/g" *.tw
$GREP "\bcontravercial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontravercial\b/controversial/g" *.tw
$GREP "\bcontraversy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontraversy\b/controversy/g" *.tw
$GREP "\bcontributer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontributer\b/contributor/g" *.tw
$GREP "\bcontributers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontributers\b/contributors/g" *.tw
$GREP "\bcontritutions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontritutions\b/contributions/g" *.tw
$GREP "\bcontroled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroled\b/controlled/g" *.tw
$GREP "\bcontroling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroling\b/controlling/g" *.tw
$GREP "\bcontroll\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroll\b/control/g" *.tw
$GREP "\bcontrolls\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontrolls\b/controls/g" *.tw
$GREP "\bcontrovercial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontrovercial\b/controversial/g" *.tw
$GREP "\bcontrovercy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontrovercy\b/controversy/g" *.tw
$GREP "\bcontroveries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroveries\b/controversies/g" *.tw
$GREP "\bcontroversal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroversal\b/controversial/g" *.tw
$GREP "\bcontroversey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroversey\b/controversy/g" *.tw
$GREP "\bcontrovertial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontrovertial\b/controversial/g" *.tw
$GREP "\bcontrovery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontrovery\b/controversy/g" *.tw
$GREP "\bcontruction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontruction\b/construction/g" *.tw
$GREP "\bconveinent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconveinent\b/convenient/g" *.tw
$GREP "\bconvenant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconvenant\b/covenant/g" *.tw
$GREP "\bconvential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconvential\b/conventional/g" *.tw
$GREP "\bconvertables\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconvertables\b/convertibles/g" *.tw
$GREP "\bconvertion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconvertion\b/conversion/g" *.tw
$GREP "\bconviced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconviced\b/convinced/g" *.tw
$GREP "\bconvienient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconvienient\b/convenient/g" *.tw
$GREP "\bcoordiantion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoordiantion\b/coordination/g" *.tw
$GREP "\bcoorperations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoorperations\b/corporations/g" *.tw
$GREP "\bcopmetitors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcopmetitors\b/competitors/g" *.tw
$GREP "\bcoputer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoputer\b/computer/g" *.tw
$GREP "\bcopywrite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcopywrite\b/copyright/g" *.tw
$GREP "\bcoridal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoridal\b/cordial/g" *.tw
$GREP "\bcornmitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcornmitted\b/committed/g" *.tw
$GREP "\bcorosion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorosion\b/corrosion/g" *.tw
$GREP "\bcorparate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorparate\b/corporate/g" *.tw
$GREP "\bcorperations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorperations\b/corporations/g" *.tw
$GREP "\bcorrecters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrecters\b/correctors/g" *.tw
$GREP "\bcorreponding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorreponding\b/corresponding/g" *.tw
$GREP "\bcorreposding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorreposding\b/corresponding/g" *.tw
$GREP "\bcorrespondant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrespondant\b/correspondent/g" *.tw
$GREP "\bcorrespondants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrespondants\b/correspondents/g" *.tw
$GREP "\bcorridoors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorridoors\b/corridors/g" *.tw
$GREP "\bcorrispond\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrispond\b/correspond/g" *.tw
$GREP "\bcorrispondant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrispondant\b/correspondent/g" *.tw
$GREP "\bcorrispondants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrispondants\b/correspondents/g" *.tw
$GREP "\bcorrisponded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrisponded\b/corresponded/g" *.tw
$GREP "\bcorrisponding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrisponding\b/corresponding/g" *.tw
$GREP "\bcorrisponds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrisponds\b/corresponds/g" *.tw
$GREP "\bcostitution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcostitution\b/constitution/g" *.tw
$GREP "\bcoucil\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoucil\b/council/g" *.tw
$GREP "\bcounries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcounries\b/countries/g" *.tw
$GREP "\bcountains\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcountains\b/contains/g" *.tw
$GREP "\bcountires\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcountires\b/countries/g" *.tw
$GREP "\bcreaeted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcreaeted\b/created/g" *.tw
$GREP "\bcreche\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcreche\b/cr�che/g" *.tw
$GREP "\bcreedence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcreedence\b/credence/g" *.tw
$GREP "\bcritereon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritereon\b/criterion/g" *.tw
$GREP "\bcriterias\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcriterias\b/criteria/g" *.tw
$GREP "\bcriticists\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcriticists\b/critics/g" *.tw
$GREP "\bcritisising\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritisising\b/criticising/g" *.tw
$GREP "\bcritisism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritisism\b/criticism/g" *.tw
$GREP "\bcritisisms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritisisms\b/criticisms/g" *.tw
$GREP "\bcritized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritized\b/criticized/g" *.tw
$GREP "\bcritizing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritizing\b/criticizing/g" *.tw
$GREP "\bcrockodiles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrockodiles\b/crocodiles/g" *.tw
$GREP "\bcrowm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrowm\b/crown/g" *.tw
$GREP "\bcrtical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrtical\b/critical/g" *.tw
$GREP "\bcrticised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrticised\b/criticised/g" *.tw
$GREP "\bcrucifiction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrucifiction\b/crucifixion/g" *.tw
$GREP "\bcrusies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrusies\b/cruises/g" *.tw
$GREP "\bcrutial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrutial\b/crucial/g" *.tw
$GREP "\bcrystalisation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrystalisation\b/crystallisation/g" *.tw
$GREP "\bculiminating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bculiminating\b/culminating/g" *.tw
$GREP "\bcumulatative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcumulatative\b/cumulative/g" *.tw
$GREP "\bcurch\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcurch\b/church/g" *.tw
$GREP "\bcurcuit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcurcuit\b/circuit/g" *.tw
$GREP "\bcurrenly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcurrenly\b/currently/g" *.tw
$GREP "\bcurriculem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcurriculem\b/curriculum/g" *.tw
$GREP "\bcxan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcxan\b/cyan/g" *.tw
$GREP "\bcyclinder\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcyclinder\b/cylinder/g" *.tw
$GREP "\bdacquiri\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdacquiri\b/daiquiri/g" *.tw
$GREP "\bdaed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdaed\b/dead/g" *.tw
$GREP "\bdalmation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdalmation\b/dalmatian/g" *.tw
$GREP "\bdamenor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdamenor\b/demeanor/g" *.tw
$GREP "\bdammage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdammage\b/damage/g" *.tw
$GREP "\bDardenelles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bDardenelles\b/Dardanelles/g" *.tw
$GREP "\bdaugher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdaugher\b/daughter/g" *.tw
$GREP "\bdebateable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdebateable\b/debatable/g" *.tw
$GREP "\bdecendant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecendant\b/descendant/g" *.tw
$GREP "\bdecendants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecendants\b/descendants/g" *.tw
$GREP "\bdecendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecendent\b/descendant/g" *.tw
$GREP "\bdecendents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecendents\b/descendants/g" *.tw
$GREP "\bdecideable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecideable\b/decidable/g" *.tw
$GREP "\bdecidely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecidely\b/decidedly/g" *.tw
$GREP "\bdecieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecieved\b/deceived/g" *.tw
$GREP "\bdecison\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecison\b/decision/g" *.tw
$GREP "\bdecomissioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecomissioned\b/decommissioned/g" *.tw
$GREP "\bdecomposit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecomposit\b/decompose/g" *.tw
$GREP "\bdecomposited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecomposited\b/decomposed/g" *.tw
$GREP "\bdecompositing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecompositing\b/decomposing/g" *.tw
$GREP "\bdecomposits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecomposits\b/decomposes/g" *.tw
$GREP "\bdecress\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecress\b/decrees/g" *.tw
$GREP "\bdecribe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecribe\b/describe/g" *.tw
$GREP "\bdecribed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecribed\b/described/g" *.tw
$GREP "\bdecribes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecribes\b/describes/g" *.tw
$GREP "\bdecribing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecribing\b/describing/g" *.tw
$GREP "\bdectect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdectect\b/detect/g" *.tw
$GREP "\bdefendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefendent\b/defendant/g" *.tw
$GREP "\bdefendents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefendents\b/defendants/g" *.tw
$GREP "\bdeffensively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeffensively\b/defensively/g" *.tw
$GREP "\bdeffine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeffine\b/define/g" *.tw
$GREP "\bdeffined\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeffined\b/defined/g" *.tw
$GREP "\bdefinance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinance\b/defiance/g" *.tw
$GREP "\bdefinate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinate\b/definite/g" *.tw
$GREP "\bdefinately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinately\b/definitely/g" *.tw
$GREP "\bdefinatly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinatly\b/definitely/g" *.tw
$GREP "\bdefinetly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinetly\b/definitely/g" *.tw
$GREP "\bdefinining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinining\b/defining/g" *.tw
$GREP "\bdefinit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinit\b/definite/g" *.tw
$GREP "\bdefinitly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinitly\b/definitely/g" *.tw
$GREP "\bdefiniton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefiniton\b/definition/g" *.tw
$GREP "\bdefintion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefintion\b/definition/g" *.tw
$GREP "\bdegrate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdegrate\b/degrade/g" *.tw
$GREP "\bdelagates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdelagates\b/delegates/g" *.tw
$GREP "\bdelapidated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdelapidated\b/dilapidated/g" *.tw
$GREP "\bdelerious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdelerious\b/delirious/g" *.tw
$GREP "\bdelevopment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdelevopment\b/development/g" *.tw
$GREP "\bdeliberatly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeliberatly\b/deliberately/g" *.tw
$GREP "\bdelusionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdelusionally\b/delusively/g" *.tw
$GREP "\bdemenor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdemenor\b/demeanor/g" *.tw
$GREP "\bdemographical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdemographical\b/demographic/g" *.tw
$GREP "\bdemolision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdemolision\b/demolition/g" *.tw
$GREP "\bdemorcracy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdemorcracy\b/democracy/g" *.tw
$GREP "\bdemostration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdemostration\b/demonstration/g" *.tw
$GREP "\bdenegrating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdenegrating\b/denigrating/g" *.tw
$GREP "\bdensly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdensly\b/densely/g" *.tw
$GREP "\bdeparment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeparment\b/department/g" *.tw
$GREP "\bdeparmental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeparmental\b/departmental/g" *.tw
$GREP "\bdeparments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeparments\b/departments/g" *.tw
$GREP "\bdependance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdependance\b/dependence/g" *.tw
$GREP "\bdependancy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdependancy\b/dependency/g" *.tw
$GREP "\bderiviated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bderiviated\b/derived/g" *.tw
$GREP "\bderivitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bderivitive\b/derivative/g" *.tw
$GREP "\bderogitory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bderogitory\b/derogatory/g" *.tw
$GREP "\bdescendands\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescendands\b/descendants/g" *.tw
$GREP "\bdescibed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescibed\b/described/g" *.tw
$GREP "\bdescision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescision\b/decision/g" *.tw
$GREP "\bdescisions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescisions\b/decisions/g" *.tw
$GREP "\bdescriibes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescriibes\b/describes/g" *.tw
$GREP "\bdescripters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescripters\b/descriptors/g" *.tw
$GREP "\bdescripton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescripton\b/description/g" *.tw
$GREP "\bdesctruction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesctruction\b/destruction/g" *.tw
$GREP "\bdescuss\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescuss\b/discuss/g" *.tw
$GREP "\bdesgined\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesgined\b/designed/g" *.tw
$GREP "\bdeside\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeside\b/decide/g" *.tw
$GREP "\bdesigining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesigining\b/designing/g" *.tw
$GREP "\bdesinations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesinations\b/destinations/g" *.tw
$GREP "\bdesintegrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesintegrated\b/disintegrated/g" *.tw
$GREP "\bdesintegration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesintegration\b/disintegration/g" *.tw
$GREP "\bdesireable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesireable\b/desirable/g" *.tw
$GREP "\bdesitned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesitned\b/destined/g" *.tw
$GREP "\bdesktiop\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesktiop\b/desktop/g" *.tw
$GREP "\bdesorder\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesorder\b/disorder/g" *.tw
$GREP "\bdesoriented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesoriented\b/disoriented/g" *.tw
$GREP "\bdespict\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdespict\b/depict/g" *.tw
$GREP "\bdespiration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdespiration\b/desperation/g" *.tw
$GREP "\bdessicated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdessicated\b/desiccated/g" *.tw
$GREP "\bdessigned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdessigned\b/designed/g" *.tw
$GREP "\bdestablized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdestablized\b/destabilized/g" *.tw
$GREP "\bdestory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdestory\b/destroy/g" *.tw
$GREP "\bdetailled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdetailled\b/detailed/g" *.tw
$GREP "\bdetatched\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdetatched\b/detached/g" *.tw
$GREP "\bdeteoriated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeteoriated\b/deteriorated/g" *.tw
$GREP "\bdeteriate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeteriate\b/deteriorate/g" *.tw
$GREP "\bdeterioriating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeterioriating\b/deteriorating/g" *.tw
$GREP "\bdeterminining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeterminining\b/determining/g" *.tw
$GREP "\bdetremental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdetremental\b/detrimental/g" *.tw
$GREP "\bdevasted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevasted\b/devastated/g" *.tw
$GREP "\bdevelope\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevelope\b/develop/g" *.tw
$GREP "\bdevelopement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevelopement\b/development/g" *.tw
$GREP "\bdevelopped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevelopped\b/developed/g" *.tw
$GREP "\bdevelpment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevelpment\b/development/g" *.tw
$GREP "\bdevels\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevels\b/delves/g" *.tw
$GREP "\bdevestated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevestated\b/devastated/g" *.tw
$GREP "\bdevestating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevestating\b/devastating/g" *.tw
$GREP "\bdevide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevide\b/divide/g" *.tw
$GREP "\bdevided\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevided\b/divided/g" *.tw
$GREP "\bdevistating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevistating\b/devastating/g" *.tw
$GREP "\bdevolopement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevolopement\b/development/g" *.tw
$GREP "\bdiablical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiablical\b/diabolical/g" *.tw
$GREP "\bdiamons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiamons\b/diamonds/g" *.tw
$GREP "\bdiaster\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiaster\b/disaster/g" *.tw
$GREP "\bdichtomy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdichtomy\b/dichotomy/g" *.tw
$GREP "\bdiconnects\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiconnects\b/disconnects/g" *.tw
$GREP "\bdicover\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicover\b/discover/g" *.tw
$GREP "\bdicovered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicovered\b/discovered/g" *.tw
$GREP "\bdicovering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicovering\b/discovering/g" *.tw
$GREP "\bdicovers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicovers\b/discovers/g" *.tw
$GREP "\bdicovery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicovery\b/discovery/g" *.tw
$GREP "\bdictionarys\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdictionarys\b/dictionaries/g" *.tw
$GREP "\bdicussed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicussed\b/discussed/g" *.tw
$GREP "\bdidnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdidnt\b/didn't/g" *.tw
$GREP "\bdieties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdieties\b/deities/g" *.tw
$GREP "\bdiety\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiety\b/deity/g" *.tw
$GREP "\bdiferent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiferent\b/different/g" *.tw
$GREP "\bdiferrent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiferrent\b/different/g" *.tw
$GREP "\bdifferentiatiations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdifferentiatiations\b/differentiations/g" *.tw
$GREP "\bdiffernt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiffernt\b/different/g" *.tw
$GREP "\bdifficulity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdifficulity\b/difficulty/g" *.tw
$GREP "\bdiffrent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiffrent\b/different/g" *.tw
$GREP "\bdificulties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdificulties\b/difficulties/g" *.tw
$GREP "\bdificulty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdificulty\b/difficulty/g" *.tw
$GREP "\bdimenions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimenions\b/dimensions/g" *.tw
$GREP "\bdimention\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimention\b/dimension/g" *.tw
$GREP "\bdimentional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimentional\b/dimensional/g" *.tw
$GREP "\bdimentions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimentions\b/dimensions/g" *.tw
$GREP "\bdimesnional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimesnional\b/dimensional/g" *.tw
$GREP "\bdiminuitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiminuitive\b/diminutive/g" *.tw
$GREP "\bdimunitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimunitive\b/diminutive/g" *.tw
$GREP "\bdiosese\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiosese\b/diocese/g" *.tw
$GREP "\bdiphtong\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiphtong\b/diphthong/g" *.tw
$GREP "\bdiphtongs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiphtongs\b/diphthongs/g" *.tw
$GREP "\bdiplomancy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiplomancy\b/diplomacy/g" *.tw
$GREP "\bdipthong\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdipthong\b/diphthong/g" *.tw
$GREP "\bdipthongs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdipthongs\b/diphthongs/g" *.tw
$GREP "\bdirectoty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdirectoty\b/directory/g" *.tw
$GREP "\bdirived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdirived\b/derived/g" *.tw
$GREP "\bdisagreeed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisagreeed\b/disagreed/g" *.tw
$GREP "\bdisapeared\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisapeared\b/disappeared/g" *.tw
$GREP "\bdisapointing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisapointing\b/disappointing/g" *.tw
$GREP "\bdisappearred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisappearred\b/disappeared/g" *.tw
$GREP "\bdisaproval\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisaproval\b/disapproval/g" *.tw
$GREP "\bdisasterous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisasterous\b/disastrous/g" *.tw
$GREP "\bdisatisfaction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisatisfaction\b/dissatisfaction/g" *.tw
$GREP "\bdisatisfied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisatisfied\b/dissatisfied/g" *.tw
$GREP "\bdisatrous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisatrous\b/disastrous/g" *.tw
$GREP "\bdiscontentment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiscontentment\b/discontent/g" *.tw
$GREP "\bdiscribe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiscribe\b/describe/g" *.tw
$GREP "\bdiscribed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiscribed\b/described/g" *.tw
$GREP "\bdiscribes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiscribes\b/describes/g" *.tw
$GREP "\bdiscribing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiscribing\b/describing/g" *.tw
$GREP "\bdisctinction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisctinction\b/distinction/g" *.tw
$GREP "\bdisctinctive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisctinctive\b/distinctive/g" *.tw
$GREP "\bdisemination\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisemination\b/dissemination/g" *.tw
$GREP "\bdisenchanged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisenchanged\b/disenchanted/g" *.tw
$GREP "\bdisiplined\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisiplined\b/disciplined/g" *.tw
$GREP "\bdisobediance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisobediance\b/disobedience/g" *.tw
$GREP "\bdisobediant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisobediant\b/disobedient/g" *.tw
$GREP "\bdisolved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisolved\b/dissolved/g" *.tw
$GREP "\bdisover\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisover\b/discover/g" *.tw
$GREP "\bdispair\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispair\b/despair/g" *.tw
$GREP "\bdisparingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisparingly\b/disparagingly/g" *.tw
$GREP "\bdispence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispence\b/dispense/g" *.tw
$GREP "\bdispenced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispenced\b/dispensed/g" *.tw
$GREP "\bdispencing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispencing\b/dispensing/g" *.tw
$GREP "\bdispicable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispicable\b/despicable/g" *.tw
$GREP "\bdispite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispite\b/despite/g" *.tw
$GREP "\bdispostion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispostion\b/disposition/g" *.tw
$GREP "\bdisproportiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisproportiate\b/disproportionate/g" *.tw
$GREP "\bdisputandem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisputandem\b/disputandum/g" *.tw
$GREP "\bdisricts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisricts\b/districts/g" *.tw
$GREP "\bdissagreement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissagreement\b/disagreement/g" *.tw
$GREP "\bdissapear\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissapear\b/disappear/g" *.tw
$GREP "\bdissapearance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissapearance\b/disappearance/g" *.tw
$GREP "\bdissapeared\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissapeared\b/disappeared/g" *.tw
$GREP "\bdissapearing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissapearing\b/disappearing/g" *.tw
$GREP "\bdissapears\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissapears\b/disappears/g" *.tw
$GREP "\bdissappear\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissappear\b/disappear/g" *.tw
$GREP "\bdissappears\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissappears\b/disappears/g" *.tw
$GREP "\bdissappointed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissappointed\b/disappointed/g" *.tw
$GREP "\bdissarray\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissarray\b/disarray/g" *.tw
$GREP "\bdissobediance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissobediance\b/disobedience/g" *.tw
$GREP "\bdissobediant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissobediant\b/disobedient/g" *.tw
$GREP "\bdissobedience\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissobedience\b/disobedience/g" *.tw
$GREP "\bdissobedient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissobedient\b/disobedient/g" *.tw
$GREP "\bdistiction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistiction\b/distinction/g" *.tw
$GREP "\bdistingish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistingish\b/distinguish/g" *.tw
$GREP "\bdistingished\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistingished\b/distinguished/g" *.tw
$GREP "\bdistingishes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistingishes\b/distinguishes/g" *.tw
$GREP "\bdistingishing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistingishing\b/distinguishing/g" *.tw
$GREP "\bdistingquished\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistingquished\b/distinguished/g" *.tw
$GREP "\bdistrubution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistrubution\b/distribution/g" *.tw
$GREP "\bdistruction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistruction\b/destruction/g" *.tw
$GREP "\bdistructive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistructive\b/destructive/g" *.tw
$GREP "\bditributed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bditributed\b/distributed/g" *.tw
$GREP "\bdivice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdivice\b/device/g" *.tw
$GREP "\bdivinition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdivinition\b/divination/g" *.tw
$GREP "\bdivison\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdivison\b/division/g" *.tw
$GREP "\bdivisons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdivisons\b/divisions/g" *.tw
$GREP "\bdum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdum\b/dumb/g" *.tw
$GREP "\bdoccument\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoccument\b/document/g" *.tw
$GREP "\bdoccumented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoccumented\b/documented/g" *.tw
$GREP "\bdoccuments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoccuments\b/documents/g" *.tw
$GREP "\bdocrines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdocrines\b/doctrines/g" *.tw
$GREP "\bdoctines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoctines\b/doctrines/g" *.tw
$GREP "\bdocumenatry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdocumenatry\b/documentary/g" *.tw
$GREP "\bdoens\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoens\b/does/g" *.tw
$GREP "\bdoesnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoesnt\b/doesn't/g" *.tw
$GREP "\bdoign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoign\b/doing/g" *.tw
$GREP "\bdominaton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdominaton\b/domination/g" *.tw
$GREP "\bdominent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdominent\b/dominant/g" *.tw
$GREP "\bdominiant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdominiant\b/dominant/g" *.tw
$GREP "\bdonig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdonig\b/doing/g" *.tw
$GREP "\bdosen't\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdosen't\b/doesn't/g" *.tw
$GREP "\bdoulbe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoulbe\b/double/g" *.tw
$GREP "\bdowloads\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdowloads\b/downloads/g" *.tw
$GREP "\bdramtic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdramtic\b/dramatic/g" *.tw
$GREP "\bdraughtman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdraughtman\b/draughtsman/g" *.tw
$GREP "\bDravadian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bDravadian\b/Dravidian/g" *.tw
$GREP "\bdreasm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdreasm\b/dreams/g" *.tw
$GREP "\bdriectly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdriectly\b/directly/g" *.tw
$GREP "\bdrnik\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdrnik\b/drink/g" *.tw
$GREP "\bdruming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdruming\b/drumming/g" *.tw
$GREP "\bdrummless\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdrummless\b/drumless/g" *.tw
$GREP "\bdupicate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdupicate\b/duplicate/g" *.tw
$GREP "\bdurig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdurig\b/during/g" *.tw
$GREP "\bdurring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdurring\b/during/g" *.tw
$GREP "\bduting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bduting\b/during/g" *.tw
$GREP "\bdyas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdyas\b/dryas/g" *.tw
$GREP "\beahc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beahc\b/each/g" *.tw
$GREP "\bealier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bealier\b/earlier/g" *.tw
$GREP "\bearlies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bearlies\b/earliest/g" *.tw
$GREP "\bearnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bearnt\b/earned/g" *.tw
$GREP "\becclectic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\becclectic\b/eclectic/g" *.tw
$GREP "\beceonomy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beceonomy\b/economy/g" *.tw
$GREP "\becidious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\becidious\b/deciduous/g" *.tw
$GREP "\beclispe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beclispe\b/eclipse/g" *.tw
$GREP "\becomonic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\becomonic\b/economic/g" *.tw
$GREP "\bect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bect\b/etc/g" *.tw
$GREP "\beearly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beearly\b/early/g" *.tw
$GREP "\befel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\befel\b/evil/g" *.tw
$GREP "\beffeciency\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beffeciency\b/efficiency/g" *.tw
$GREP "\beffecient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beffecient\b/efficient/g" *.tw
$GREP "\beffeciently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beffeciently\b/efficiently/g" *.tw
$GREP "\befficency\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\befficency\b/efficiency/g" *.tw
$GREP "\befficent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\befficent\b/efficient/g" *.tw
$GREP "\befficently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\befficently\b/efficiently/g" *.tw
$GREP "\beffulence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beffulence\b/effluence/g" *.tw
$GREP "\beiter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beiter\b/either/g" *.tw
$GREP "\belction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belction\b/election/g" *.tw
$GREP "\belectrial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belectrial\b/electrical/g" *.tw
$GREP "\belectricly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belectricly\b/electrically/g" *.tw
$GREP "\belectricty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belectricty\b/electricity/g" *.tw
$GREP "\belementay\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belementay\b/elementary/g" *.tw
$GREP "\beleminated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beleminated\b/eliminated/g" *.tw
$GREP "\beleminating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beleminating\b/eliminating/g" *.tw
$GREP "\beles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beles\b/eels/g" *.tw
$GREP "\beletricity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beletricity\b/electricity/g" *.tw
$GREP "\belicided\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belicided\b/elicited/g" *.tw
$GREP "\beligable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beligable\b/eligible/g" *.tw
$GREP "\belimentary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belimentary\b/elementary/g" *.tw
$GREP "\bellected\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bellected\b/elected/g" *.tw
$GREP "\belphant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belphant\b/elephant/g" *.tw
$GREP "\bembarass\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarass\b/embarrass/g" *.tw
$GREP "\bembarassed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarassed\b/embarrassed/g" *.tw
$GREP "\bembarassing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarassing\b/embarrassing/g" *.tw
$GREP "\bembarassment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarassment\b/embarrassment/g" *.tw
$GREP "\bembargos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembargos\b/embargoes/g" *.tw
$GREP "\bembarras\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarras\b/embarrass/g" *.tw
$GREP "\bembarrased\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarrased\b/embarrassed/g" *.tw
$GREP "\bembarrasing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarrasing\b/embarrassing/g" *.tw
$GREP "\bembarrasment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarrasment\b/embarrassment/g" *.tw
$GREP "\bembezelled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembezelled\b/embezzled/g" *.tw
$GREP "\bemblamatic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemblamatic\b/emblematic/g" *.tw
$GREP "\beminate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beminate\b/emanate/g" *.tw
$GREP "\beminated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beminated\b/emanated/g" *.tw
$GREP "\bemision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemision\b/emission/g" *.tw
$GREP "\bemited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemited\b/emitted/g" *.tw
$GREP "\bemiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemiting\b/emitting/g" *.tw
$GREP "\bemmediately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmediately\b/immediately/g" *.tw
$GREP "\bemminently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemminently\b/eminently/g" *.tw
$GREP "\bemmisaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmisaries\b/emissaries/g" *.tw
$GREP "\bemmisarries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmisarries\b/emissaries/g" *.tw
$GREP "\bemmisarry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmisarry\b/emissary/g" *.tw
$GREP "\bemmisary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmisary\b/emissary/g" *.tw
$GREP "\bemmision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmision\b/emission/g" *.tw
$GREP "\bemmisions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmisions\b/emissions/g" *.tw
$GREP "\bemmited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmited\b/emitted/g" *.tw
$GREP "\bemmiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmiting\b/emitting/g" *.tw
$GREP "\bemmitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmitted\b/emitted/g" *.tw
$GREP "\bemmitting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmitting\b/emitting/g" *.tw
$GREP "\bemnity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemnity\b/enmity/g" *.tw
$GREP "\bemperical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemperical\b/empirical/g" *.tw
$GREP "\bemphaised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemphaised\b/emphasised/g" *.tw
$GREP "\bemphsis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemphsis\b/emphasis/g" *.tw
$GREP "\bemphysyma\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemphysyma\b/emphysema/g" *.tw
$GREP "\bemporer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemporer\b/emperor/g" *.tw
$GREP "\bemprisoned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemprisoned\b/imprisoned/g" *.tw
$GREP "\benameld\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benameld\b/enameled/g" *.tw
$GREP "\benchancement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benchancement\b/enhancement/g" *.tw
$GREP "\bencouraing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bencouraing\b/encouraging/g" *.tw
$GREP "\bencryptiion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bencryptiion\b/encryption/g" *.tw
$GREP "\bencylopedia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bencylopedia\b/encyclopedia/g" *.tw
$GREP "\bendevors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bendevors\b/endeavors/g" *.tw
$GREP "\bendevour\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bendevour\b/endeavour/g" *.tw
$GREP "\bendig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bendig\b/ending/g" *.tw
$GREP "\bendolithes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bendolithes\b/endoliths/g" *.tw
$GREP "\benduce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benduce\b/induce/g" *.tw
$GREP "\bened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bened\b/need/g" *.tw
$GREP "\benforceing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benforceing\b/enforcing/g" *.tw
$GREP "\bengagment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bengagment\b/engagement/g" *.tw
$GREP "\bengeneer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bengeneer\b/engineer/g" *.tw
$GREP "\bengeneering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bengeneering\b/engineering/g" *.tw
$GREP "\bengieneer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bengieneer\b/engineer/g" *.tw
$GREP "\bengieneers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bengieneers\b/engineers/g" *.tw
$GREP "\benlargment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benlargment\b/enlargement/g" *.tw
$GREP "\benlargments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benlargments\b/enlargements/g" *.tw
$GREP "\benourmous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benourmous\b/enormous/g" *.tw
$GREP "\benourmously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benourmously\b/enormously/g" *.tw
$GREP "\bensconsed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bensconsed\b/ensconced/g" *.tw
$GREP "\bentaglements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bentaglements\b/entanglements/g" *.tw
$GREP "\benteratinment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benteratinment\b/entertainment/g" *.tw
$GREP "\benthusiatic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benthusiatic\b/enthusiastic/g" *.tw
$GREP "\bentitity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bentitity\b/entity/g" *.tw
$GREP "\bentitlied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bentitlied\b/entitled/g" *.tw
$GREP "\bentrepeneur\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bentrepeneur\b/entrepreneur/g" *.tw
$GREP "\bentrepeneurs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bentrepeneurs\b/entrepreneurs/g" *.tw
$GREP "\benviorment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviorment\b/environment/g" *.tw
$GREP "\benviormental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviormental\b/environmental/g" *.tw
$GREP "\benviormentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviormentally\b/environmentally/g" *.tw
$GREP "\benviorments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviorments\b/environments/g" *.tw
$GREP "\benviornment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviornment\b/environment/g" *.tw
$GREP "\benviornmental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviornmental\b/environmental/g" *.tw
$GREP "\benviornmentalist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviornmentalist\b/environmentalist/g" *.tw
$GREP "\benviornmentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviornmentally\b/environmentally/g" *.tw
$GREP "\benviornments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviornments\b/environments/g" *.tw
$GREP "\benviroment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviroment\b/environment/g" *.tw
$GREP "\benviromental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviromental\b/environmental/g" *.tw
$GREP "\benviromentalist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviromentalist\b/environmentalist/g" *.tw
$GREP "\benviromentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviromentally\b/environmentally/g" *.tw
$GREP "\benviroments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviroments\b/environments/g" *.tw
$GREP "\benvolutionary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benvolutionary\b/evolutionary/g" *.tw
$GREP "\benvrionments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benvrionments\b/environments/g" *.tw
$GREP "\benxt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benxt\b/next/g" *.tw
$GREP "\bepidsodes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bepidsodes\b/episodes/g" *.tw
$GREP "\bepsiode\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bepsiode\b/episode/g" *.tw
$GREP "\bequialent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequialent\b/equivalent/g" *.tw
$GREP "\bequilibium\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequilibium\b/equilibrium/g" *.tw
$GREP "\bequilibrum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequilibrum\b/equilibrium/g" *.tw
$GREP "\bequiped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequiped\b/equipped/g" *.tw
$GREP "\bequippment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequippment\b/equipment/g" *.tw
$GREP "\bequitorial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequitorial\b/equatorial/g" *.tw
$GREP "\bequivelant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequivelant\b/equivalent/g" *.tw
$GREP "\bequivelent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequivelent\b/equivalent/g" *.tw
$GREP "\bequivilant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequivilant\b/equivalent/g" *.tw
$GREP "\bequivilent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequivilent\b/equivalent/g" *.tw
$GREP "\bequivlalent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequivlalent\b/equivalent/g" *.tw
$GREP "\beratic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beratic\b/erratic/g" *.tw
$GREP "\beratically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beratically\b/erratically/g" *.tw
$GREP "\beraticly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beraticly\b/erratically/g" *.tw
$GREP "\berrupted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\berrupted\b/erupted/g" *.tw
$GREP "\besential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\besential\b/essential/g" *.tw
$GREP "\besitmated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\besitmated\b/estimated/g" *.tw
$GREP "\besle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\besle\b/else/g" *.tw
$GREP "\bespecialy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bespecialy\b/especially/g" *.tw
$GREP "\bessencial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessencial\b/essential/g" *.tw
$GREP "\bessense\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessense\b/essence/g" *.tw
$GREP "\bessentail\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessentail\b/essential/g" *.tw
$GREP "\bessentialy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessentialy\b/essentially/g" *.tw
$GREP "\bessentual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessentual\b/essential/g" *.tw
$GREP "\bessesital\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessesital\b/essential/g" *.tw
$GREP "\bestabishes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bestabishes\b/establishes/g" *.tw
$GREP "\bestablising\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bestablising\b/establishing/g" *.tw
$GREP "\bethnocentricm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bethnocentricm\b/ethnocentrism/g" *.tw
$GREP "\bEuropian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bEuropian\b/European/g" *.tw
$GREP "\bEuropians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bEuropians\b/Europeans/g" *.tw
$GREP "\bEurpean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bEurpean\b/European/g" *.tw
$GREP "\bEurpoean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bEurpoean\b/European/g" *.tw
$GREP "\bevenhtually\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bevenhtually\b/eventually/g" *.tw
$GREP "\beventally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beventally\b/eventually/g" *.tw
$GREP "\beventhough\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beventhough\b/even though/g" *.tw
$GREP "\beventially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beventially\b/eventually/g" *.tw
$GREP "\beventualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beventualy\b/eventually/g" *.tw
$GREP "\beverthing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beverthing\b/everything/g" *.tw
$GREP "\beverytime\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beverytime\b/every time/g" *.tw
$GREP "\beveryting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beveryting\b/everything/g" *.tw
$GREP "\beveyr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beveyr\b/every/g" *.tw
$GREP "\bevidentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bevidentally\b/evidently/g" *.tw
$GREP "\bexagerate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerate\b/exaggerate/g" *.tw
$GREP "\bexagerated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerated\b/exaggerated/g" *.tw
$GREP "\bexagerates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerates\b/exaggerates/g" *.tw
$GREP "\bexagerating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerating\b/exaggerating/g" *.tw
$GREP "\bexagerrate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerrate\b/exaggerate/g" *.tw
$GREP "\bexagerrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerrated\b/exaggerated/g" *.tw
$GREP "\bexagerrates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerrates\b/exaggerates/g" *.tw
$GREP "\bexagerrating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerrating\b/exaggerating/g" *.tw
$GREP "\bexaminated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexaminated\b/examined/g" *.tw
$GREP "\bexampt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexampt\b/exempt/g" *.tw
$GREP "\bexapansion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexapansion\b/expansion/g" *.tw
$GREP "\bexcact\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcact\b/exact/g" *.tw
$GREP "\bexcange\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcange\b/exchange/g" *.tw
$GREP "\bexcecute\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcecute\b/execute/g" *.tw
$GREP "\bexcecuted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcecuted\b/executed/g" *.tw
$GREP "\bexcecutes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcecutes\b/executes/g" *.tw
$GREP "\bexcecuting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcecuting\b/executing/g" *.tw
$GREP "\bexcecution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcecution\b/execution/g" *.tw
$GREP "\bexcedded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcedded\b/exceeded/g" *.tw
$GREP "\bexcelent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcelent\b/excellent/g" *.tw
$GREP "\bexcell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcell\b/excel/g" *.tw
$GREP "\bexcellance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcellance\b/excellence/g" *.tw
$GREP "\bexcellant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcellant\b/excellent/g" *.tw
$GREP "\bexcells\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcells\b/excels/g" *.tw
$GREP "\bexcercise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcercise\b/exercise/g" *.tw
$GREP "\bexchanching\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexchanching\b/exchanging/g" *.tw
$GREP "\bexcisted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcisted\b/existed/g" *.tw
$GREP "\bexculsivly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexculsivly\b/exclusively/g" *.tw
$GREP "\bexecising\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexecising\b/exercising/g" *.tw
$GREP "\bexection\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexection\b/execution/g" *.tw
$GREP "\bexectued\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexectued\b/executed/g" *.tw
$GREP "\bexeedingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexeedingly\b/exceedingly/g" *.tw
$GREP "\bexelent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexelent\b/excellent/g" *.tw
$GREP "\bexellent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexellent\b/excellent/g" *.tw
$GREP "\bexemple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexemple\b/example/g" *.tw
$GREP "\bexept\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexept\b/except/g" *.tw
$GREP "\bexeptional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexeptional\b/exceptional/g" *.tw
$GREP "\bexerbate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerbate\b/exacerbate/g" *.tw
$GREP "\bexerbated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerbated\b/exacerbated/g" *.tw
$GREP "\bexerciese\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerciese\b/exercises/g" *.tw
$GREP "\bexerpt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerpt\b/excerpt/g" *.tw
$GREP "\bexerpts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerpts\b/excerpts/g" *.tw
$GREP "\bexersize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexersize\b/exercise/g" *.tw
$GREP "\bexerternal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerternal\b/external/g" *.tw
$GREP "\bexhalted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexhalted\b/exalted/g" *.tw
$GREP "\bexhibtion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexhibtion\b/exhibition/g" *.tw
$GREP "\bexibition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexibition\b/exhibition/g" *.tw
$GREP "\bexibitions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexibitions\b/exhibitions/g" *.tw
$GREP "\bexicting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexicting\b/exciting/g" *.tw
$GREP "\bexinct\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexinct\b/extinct/g" *.tw
$GREP "\bexistance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexistance\b/existence/g" *.tw
$GREP "\bexistant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexistant\b/existent/g" *.tw
$GREP "\bexistince\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexistince\b/existence/g" *.tw
$GREP "\bexliled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexliled\b/exiled/g" *.tw
$GREP "\bexludes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexludes\b/excludes/g" *.tw
$GREP "\bexmaple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexmaple\b/example/g" *.tw
$GREP "\bexonorate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexonorate\b/exonerate/g" *.tw
$GREP "\bexoskelaton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexoskelaton\b/exoskeleton/g" *.tw
$GREP "\bexpalin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpalin\b/explain/g" *.tw
$GREP "\bexpatriot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpatriot\b/expatriate/g" *.tw
$GREP "\bexpeced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpeced\b/expected/g" *.tw
$GREP "\bexpecially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpecially\b/especially/g" *.tw
$GREP "\bexpeditonary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpeditonary\b/expeditionary/g" *.tw
$GREP "\bexpeiments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpeiments\b/experiments/g" *.tw
$GREP "\bexpell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpell\b/expel/g" *.tw
$GREP "\bexpells\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpells\b/expels/g" *.tw
$GREP "\bexperiance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexperiance\b/experience/g" *.tw
$GREP "\bexperianced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexperianced\b/experienced/g" *.tw
$GREP "\bexpiditions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpiditions\b/expeditions/g" *.tw
$GREP "\bexpierence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpierence\b/experience/g" *.tw
$GREP "\bexplaination\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexplaination\b/explanation/g" *.tw
$GREP "\bexplaning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexplaning\b/explaining/g" *.tw
$GREP "\bexplictly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexplictly\b/explicitly/g" *.tw
$GREP "\bexploititive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexploititive\b/exploitative/g" *.tw
$GREP "\bexplotation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexplotation\b/exploitation/g" *.tw
$GREP "\bexpropiated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpropiated\b/expropriated/g" *.tw
$GREP "\bexpropiation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpropiation\b/expropriation/g" *.tw
$GREP "\bexressed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexressed\b/expressed/g" *.tw
$GREP "\bextemely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextemely\b/extremely/g" *.tw
$GREP "\bextention\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextention\b/extension/g" *.tw
$GREP "\bextentions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextentions\b/extensions/g" *.tw
$GREP "\bextered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextered\b/exerted/g" *.tw
$GREP "\bextermist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextermist\b/extremist/g" *.tw
$GREP "\bextradiction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextradiction\b/extradition/g" *.tw
$GREP "\bextraterrestial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextraterrestial\b/extraterrestrial/g" *.tw
$GREP "\bextraterrestials\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextraterrestials\b/extraterrestrials/g" *.tw
$GREP "\bextravagent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextravagent\b/extravagant/g" *.tw
$GREP "\bextrememly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextrememly\b/extremely/g" *.tw
$GREP "\bextremeophile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextremeophile\b/extremophile/g" *.tw
$GREP "\bextremly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextremly\b/extremely/g" *.tw
$GREP "\bextrordinarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextrordinarily\b/extraordinarily/g" *.tw
$GREP "\bextrordinary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextrordinary\b/extraordinary/g" *.tw
$GREP "\bfaciliate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfaciliate\b/facilitate/g" *.tw
$GREP "\bfaciliated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfaciliated\b/facilitated/g" *.tw
$GREP "\bfaciliates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfaciliates\b/facilitates/g" *.tw
$GREP "\bfacilites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfacilites\b/facilities/g" *.tw
$GREP "\bfacillitate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfacillitate\b/facilitate/g" *.tw
$GREP "\bfacinated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfacinated\b/fascinated/g" *.tw
$GREP "\bfacist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfacist\b/fascist/g" *.tw
$GREP "\bfamiles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfamiles\b/families/g" *.tw
$GREP "\bfamilliar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfamilliar\b/familiar/g" *.tw
$GREP "\bfamoust\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfamoust\b/famous/g" *.tw
$GREP "\bfanatism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfanatism\b/fanaticism/g" *.tw
$GREP "\bFarenheit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFarenheit\b/Fahrenheit/g" *.tw
$GREP "\bfatc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfatc\b/fact/g" *.tw
$GREP "\bfaught\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfaught\b/fought/g" *.tw
$GREP "\bfavoutrable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfavoutrable\b/favourable/g" *.tw
$GREP "\bfeasable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfeasable\b/feasible/g" *.tw
$GREP "\bFebuary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFebuary\b/February/g" *.tw
$GREP "\bFeburary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFeburary\b/February/g" *.tw
$GREP "\bfedreally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfedreally\b/federally/g" *.tw
$GREP "\bfemminist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfemminist\b/feminist/g" *.tw
$GREP "\bferomone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bferomone\b/pheromone/g" *.tw
$GREP "\bfertily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfertily\b/fertility/g" *.tw
$GREP "\bfianite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfianite\b/finite/g" *.tw
$GREP "\bfianlly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfianlly\b/finally/g" *.tw
$GREP "\bficticious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bficticious\b/fictitious/g" *.tw
$GREP "\bfictious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfictious\b/fictitious/g" *.tw
$GREP "\bfidn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfidn\b/find/g" *.tw
$GREP "\bfiercly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfiercly\b/fiercely/g" *.tw
$GREP "\bfightings\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfightings\b/fighting/g" *.tw
$GREP "\bfiliament\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfiliament\b/filament/g" *.tw
$GREP "\bfimilies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfimilies\b/families/g" *.tw
$GREP "\bfinacial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfinacial\b/financial/g" *.tw
$GREP "\bfinaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfinaly\b/finally/g" *.tw
$GREP "\bfinancialy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfinancialy\b/financially/g" *.tw
$GREP "\bfirends\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfirends\b/friends/g" *.tw
$GREP "\bfisionable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfisionable\b/fissionable/g" *.tw
$GREP "\bflamable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflamable\b/flammable/g" *.tw
$GREP "\bflawess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflawess\b/flawless/g" *.tw
$GREP "\bFlemmish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFlemmish\b/Flemish/g" *.tw
$GREP "\bflorescent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflorescent\b/fluorescent/g" *.tw
$GREP "\bflourescent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflourescent\b/fluorescent/g" *.tw
$GREP "\bflourine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflourine\b/fluorine/g" *.tw
$GREP "\bfluorish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfluorish\b/flourish/g" *.tw
$GREP "\bflourishment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflourishment\b/flourishing/g" *.tw
$GREP "\bfollwoing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfollwoing\b/following/g" *.tw
$GREP "\bfolowing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfolowing\b/following/g" *.tw
$GREP "\bfomed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfomed\b/formed/g" *.tw
$GREP "\bfonetic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfonetic\b/phonetic/g" *.tw
$GREP "\bfontrier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfontrier\b/fontier/g" *.tw
$GREP "\bfoootball\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoootball\b/football/g" *.tw
$GREP "\bforbad\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforbad\b/forbade/g" *.tw
$GREP "\bforbiden\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforbiden\b/forbidden/g" *.tw
$GREP "\bforeward\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforeward\b/foreword/g" *.tw
$GREP "\bforfiet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforfiet\b/forfeit/g" *.tw
$GREP "\bforhead\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforhead\b/forehead/g" *.tw
$GREP "\bforiegn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforiegn\b/foreign/g" *.tw
$GREP "\bFormalhaut\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFormalhaut\b/Fomalhaut/g" *.tw
$GREP "\bformallize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bformallize\b/formalize/g" *.tw
$GREP "\bformallized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bformallized\b/formalized/g" *.tw
$GREP "\bformelly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bformelly\b/formerly/g" *.tw
$GREP "\bformidible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bformidible\b/formidable/g" *.tw
$GREP "\bformost\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bformost\b/foremost/g" *.tw
$GREP "\bforsaw\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforsaw\b/foresaw/g" *.tw
$GREP "\bforseeable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforseeable\b/foreseeable/g" *.tw
$GREP "\bfortelling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfortelling\b/foretelling/g" *.tw
$GREP "\bforunner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforunner\b/forerunner/g" *.tw
$GREP "\bfoucs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoucs\b/focus/g" *.tw
$GREP "\bfoudn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoudn\b/found/g" *.tw
$GREP "\bfougth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfougth\b/fought/g" *.tw
$GREP "\bfoundaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoundaries\b/foundries/g" *.tw
$GREP "\bfoundary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoundary\b/foundry/g" *.tw
$GREP "\bFoundland\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFoundland\b/Newfoundland/g" *.tw
$GREP "\bfourties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfourties\b/forties/g" *.tw
$GREP "\bfourty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfourty\b/forty/g" *.tw
$GREP "\bfouth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfouth\b/fourth/g" *.tw
$GREP "\bfoward\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoward\b/forward/g" *.tw
$GREP "\bFransiscan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFransiscan\b/Franciscan/g" *.tw
$GREP "\bFransiscans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFransiscans\b/Franciscans/g" *.tw
$GREP "\bfreind\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfreind\b/friend/g" *.tw
$GREP "\bfreindly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfreindly\b/friendly/g" *.tw
$GREP "\bfrequentily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfrequentily\b/frequently/g" *.tw
$GREP "\bfrome\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfrome\b/from/g" *.tw
$GREP "\bfromed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfromed\b/formed/g" *.tw
$GREP "\bfroniter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfroniter\b/frontier/g" *.tw
$GREP "\bfucntion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfucntion\b/function/g" *.tw
$GREP "\bfucntioning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfucntioning\b/functioning/g" *.tw
$GREP "\bfufill\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfufill\b/fulfill/g" *.tw
$GREP "\bfufilled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfufilled\b/fulfilled/g" *.tw
$GREP "\bfulfiled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfulfiled\b/fulfilled/g" *.tw
$GREP "\bfullfill\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfullfill\b/fulfill/g" *.tw
$GREP "\bfullfilled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfullfilled\b/fulfilled/g" *.tw
$GREP "\bfundametal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfundametal\b/fundamental/g" *.tw
$GREP "\bfundametals\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfundametals\b/fundamentals/g" *.tw
$GREP "\bfunguses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfunguses\b/fungi/g" *.tw
$GREP "\bfuntion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfuntion\b/function/g" *.tw
$GREP "\bfuruther\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfuruther\b/further/g" *.tw
$GREP "\bfuther\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfuther\b/further/g" *.tw
$GREP "\bfuthermore\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfuthermore\b/furthermore/g" *.tw
$GREP "\bgalatic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgalatic\b/galactic/g" *.tw
$GREP "\bGalations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGalations\b/Galatians/g" *.tw
$GREP "\bgallaxies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgallaxies\b/galaxies/g" *.tw
$GREP "\bgalvinized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgalvinized\b/galvanized/g" *.tw
$GREP "\bGameboy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGameboy\b/Game Boy/g" *.tw
$GREP "\bganerate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bganerate\b/generate/g" *.tw
$GREP "\bganes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bganes\b/games/g" *.tw
$GREP "\bganster\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bganster\b/gangster/g" *.tw
$GREP "\bgarantee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgarantee\b/guarantee/g" *.tw
$GREP "\bgaranteed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaranteed\b/guaranteed/g" *.tw
$GREP "\bgarantees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgarantees\b/guarantees/g" *.tw
$GREP "\bgardai\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgardai\b/garda�/g" *.tw
$GREP "\bgarnison\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgarnison\b/garrison/g" *.tw
$GREP "\bgauarana\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgauarana\b/guaran�/g" *.tw
$GREP "\bgaurantee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaurantee\b/guarantee/g" *.tw
$GREP "\bgauranteed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgauranteed\b/guaranteed/g" *.tw
$GREP "\bgaurantees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaurantees\b/guarantees/g" *.tw
$GREP "\bgaurentee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaurentee\b/guarantee/g" *.tw
$GREP "\bgaurenteed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaurenteed\b/guaranteed/g" *.tw
$GREP "\bgaurentees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaurentees\b/guarantees/g" *.tw
$GREP "\bgeneological\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeneological\b/genealogical/g" *.tw
$GREP "\bgeneologies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeneologies\b/genealogies/g" *.tw
$GREP "\bgeneology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeneology\b/genealogy/g" *.tw
$GREP "\bgeneraly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeneraly\b/generally/g" *.tw
$GREP "\bgeneratting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeneratting\b/generating/g" *.tw
$GREP "\bgenialia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgenialia\b/genitalia/g" *.tw
$GREP "\bgeographicial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeographicial\b/geographical/g" *.tw
$GREP "\bgeometrician\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeometrician\b/geometer/g" *.tw
$GREP "\bgeometricians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeometricians\b/geometers/g" *.tw
$GREP "\bgerat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgerat\b/great/g" *.tw
$GREP "\bGhandi\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGhandi\b/Gandhi/g" *.tw
$GREP "\bglamourous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bglamourous\b/glamorous/g" *.tw
$GREP "\bglight\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bglight\b/flight/g" *.tw
$GREP "\bgnawwed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgnawwed\b/gnawed/g" *.tw
$GREP "\bgodess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgodess\b/goddess/g" *.tw
$GREP "\bgodesses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgodesses\b/goddesses/g" *.tw
$GREP "\bGodounov\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGodounov\b/Godunov/g" *.tw
$GREP "\bgoign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgoign\b/going/g" *.tw
$GREP "\bgonig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgonig\b/going/g" *.tw
$GREP "\bGothenberg\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGothenberg\b/Gothenburg/g" *.tw
$GREP "\bGottleib\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGottleib\b/Gottlieb/g" *.tw
$GREP "\bgouvener\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgouvener\b/governor/g" *.tw
$GREP "\bgovement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovement\b/government/g" *.tw
$GREP "\bgovenment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovenment\b/government/g" *.tw
$GREP "\bgovenrment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovenrment\b/government/g" *.tw
$GREP "\bgoverance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgoverance\b/governance/g" *.tw
$GREP "\bgoverment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgoverment\b/government/g" *.tw
$GREP "\bgovermental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovermental\b/governmental/g" *.tw
$GREP "\bgoverner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgoverner\b/governor/g" *.tw
$GREP "\bgovernmnet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovernmnet\b/government/g" *.tw
$GREP "\bgovorment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovorment\b/government/g" *.tw
$GREP "\bgovormental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovormental\b/governmental/g" *.tw
$GREP "\bgovornment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovornment\b/government/g" *.tw
$GREP "\bgracefull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgracefull\b/graceful/g" *.tw
$GREP "\bgraet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgraet\b/great/g" *.tw
$GREP "\bgrafitti\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgrafitti\b/graffiti/g" *.tw
$GREP "\bgramatically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgramatically\b/grammatically/g" *.tw
$GREP "\bgrammaticaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgrammaticaly\b/grammatically/g" *.tw
$GREP "\bgrammer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgrammer\b/grammar/g" *.tw
$GREP "\bgrat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgrat\b/great/g" *.tw
$GREP "\bgratuitious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgratuitious\b/gratuitous/g" *.tw
$GREP "\bgreatful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgreatful\b/grateful/g" *.tw
$GREP "\bgreatfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgreatfully\b/gratefully/g" *.tw
$GREP "\bgreif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgreif\b/grief/g" *.tw
$GREP "\bgridles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgridles\b/griddles/g" *.tw
$GREP "\bgropu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgropu\b/group/g" *.tw
$GREP "\bgrwo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgrwo\b/grow/g" *.tw
$GREP "\bguage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguage\b/gauge/g" *.tw
$GREP "\bguarentee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguarentee\b/guarantee/g" *.tw
$GREP "\bguarenteed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguarenteed\b/guaranteed/g" *.tw
$GREP "\bguarentees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguarentees\b/guarantees/g" *.tw
$GREP "\bGuatamala\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuatamala\b/Guatemala/g" *.tw
$GREP "\bGuatamalan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuatamalan\b/Guatemalan/g" *.tw
$GREP "\bguerrila\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguerrila\b/guerrilla/g" *.tw
$GREP "\bguerrilas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguerrilas\b/guerrillas/g" *.tw
$GREP "\bguidence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguidence\b/guidance/g" *.tw
$GREP "\bGuilia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuilia\b/Giulia/g" *.tw
$GREP "\bGuilio\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuilio\b/Giulio/g" *.tw
$GREP "\bGuiness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuiness\b/Guinness/g" *.tw
$GREP "\bGuiseppe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuiseppe\b/Giuseppe/g" *.tw
$GREP "\bgunanine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgunanine\b/guanine/g" *.tw
$GREP "\bgurantee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgurantee\b/guarantee/g" *.tw
$GREP "\bguranteed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguranteed\b/guaranteed/g" *.tw
$GREP "\bgurantees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgurantees\b/guarantees/g" *.tw
$GREP "\bguttaral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguttaral\b/guttural/g" *.tw
$GREP "\bgutteral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgutteral\b/guttural/g" *.tw
$GREP "\bhabaeus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhabaeus\b/habeas/g" *.tw
$GREP "\bhabeus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhabeus\b/habeas/g" *.tw
$GREP "\bHabsbourg\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bHabsbourg\b/Habsburg/g" *.tw
$GREP "\bhaemorrage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhaemorrage\b/haemorrhage/g" *.tw
$GREP "\bhalarious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhalarious\b/hilarious/g" *.tw
$GREP "\bhalp\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhalp\b/help/g" *.tw
$GREP "\bhapen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhapen\b/happen/g" *.tw
$GREP "\bhapened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhapened\b/happened/g" *.tw
$GREP "\bhapening\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhapening\b/happening/g" *.tw
$GREP "\bhappend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhappend\b/happened/g" *.tw
$GREP "\bhappended\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhappended\b/happened/g" *.tw
$GREP "\bhappenned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhappenned\b/happened/g" *.tw
$GREP "\bharased\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharased\b/harassed/g" *.tw
$GREP "\bharases\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharases\b/harasses/g" *.tw
$GREP "\bharasment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharasment\b/harassment/g" *.tw
$GREP "\bharasments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharasments\b/harassments/g" *.tw
$GREP "\bharassement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharassement\b/harassment/g" *.tw
$GREP "\bharras\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharras\b/harass/g" *.tw
$GREP "\bharrased\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrased\b/harassed/g" *.tw
$GREP "\bharrases\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrases\b/harasses/g" *.tw
$GREP "\bharrasing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrasing\b/harassing/g" *.tw
$GREP "\bharrasment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrasment\b/harassment/g" *.tw
$GREP "\bharrasments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrasments\b/harassments/g" *.tw
$GREP "\bharrassed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrassed\b/harassed/g" *.tw
$GREP "\bharrasses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrasses\b/harassed/g" *.tw
$GREP "\bharrassing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrassing\b/harassing/g" *.tw
$GREP "\bharrassment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrassment\b/harassment/g" *.tw
$GREP "\bharrassments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrassments\b/harassments/g" *.tw
$GREP "\bhasnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhasnt\b/hasn't/g" *.tw
$GREP "\bHatian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bHatian\b/Haitian/g" *.tw
$GREP "\bhaviest\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhaviest\b/heaviest/g" *.tw
$GREP "\bheadquarer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheadquarer\b/headquarter/g" *.tw
$GREP "\bheadquater\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheadquater\b/headquarter/g" *.tw
$GREP "\bheadquatered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheadquatered\b/headquartered/g" *.tw
$GREP "\bheadquaters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheadquaters\b/headquarters/g" *.tw
$GREP "\bhealthercare\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhealthercare\b/healthcare/g" *.tw
$GREP "\bheared\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheared\b/heard/g" *.tw
$GREP "\bheathy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheathy\b/healthy/g" *.tw
$GREP "\bHeidelburg\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bHeidelburg\b/Heidelberg/g" *.tw
$GREP "\bheigher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheigher\b/higher/g" *.tw
$GREP "\bheirarchy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheirarchy\b/hierarchy/g" *.tw
$GREP "\bheiroglyphics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheiroglyphics\b/hieroglyphics/g" *.tw
$GREP "\bhelment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhelment\b/helmet/g" *.tw
$GREP "\bhelpfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhelpfull\b/helpful/g" *.tw
$GREP "\bhelpped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhelpped\b/helped/g" *.tw
$GREP "\bhemmorhage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhemmorhage\b/hemorrhage/g" *.tw
$GREP "\bheridity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheridity\b/heredity/g" *.tw
$GREP "\bheroe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheroe\b/hero/g" *.tw
$GREP "\bheros\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheros\b/heroes/g" *.tw
$GREP "\bhertiage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhertiage\b/heritage/g" *.tw
$GREP "\bhertzs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhertzs\b/hertz/g" *.tw
$GREP "\bhesistant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhesistant\b/hesitant/g" *.tw
$GREP "\bheterogenous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheterogenous\b/heterogeneous/g" *.tw
$GREP "\bhieght\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhieght\b/height/g" *.tw
$GREP "\bhierachical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhierachical\b/hierarchical/g" *.tw
$GREP "\bhierachies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhierachies\b/hierarchies/g" *.tw
$GREP "\bhierachy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhierachy\b/hierarchy/g" *.tw
$GREP "\bhierarcical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhierarcical\b/hierarchical/g" *.tw
$GREP "\bhierarcy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhierarcy\b/hierarchy/g" *.tw
$GREP "\bhieroglph\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhieroglph\b/hieroglyph/g" *.tw
$GREP "\bhieroglphs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhieroglphs\b/hieroglyphs/g" *.tw
$GREP "\bhiger\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhiger\b/higher/g" *.tw
$GREP "\bhigest\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhigest\b/highest/g" *.tw
$GREP "\bhigway\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhigway\b/highway/g" *.tw
$GREP "\bhillarious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhillarious\b/hilarious/g" *.tw
$GREP "\bhimselv\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhimselv\b/himself/g" *.tw
$GREP "\bhinderance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhinderance\b/hindrance/g" *.tw
$GREP "\bhinderence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhinderence\b/hindrance/g" *.tw
$GREP "\bhindrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhindrence\b/hindrance/g" *.tw
$GREP "\bhipopotamus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhipopotamus\b/hippopotamus/g" *.tw
$GREP "\bhismelf\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhismelf\b/himself/g" *.tw
$GREP "\bhistocompatability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhistocompatability\b/histocompatibility/g" *.tw
$GREP "\bhistoricians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhistoricians\b/historians/g" *.tw
$GREP "\bhitsingles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhitsingles\b/hit singles/g" *.tw
$GREP "\bholf\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bholf\b/hold/g" *.tw
$GREP "\bholliday\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bholliday\b/holiday/g" *.tw
$GREP "\bhomestate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhomestate\b/home state/g" *.tw
$GREP "\bhomogeneize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhomogeneize\b/homogenize/g" *.tw
$GREP "\bhomogeneized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhomogeneized\b/homogenized/g" *.tw
$GREP "\bhonory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhonory\b/honorary/g" *.tw
$GREP "\bhorrifing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhorrifing\b/horrifying/g" *.tw
$GREP "\bhosited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhosited\b/hoisted/g" *.tw
$GREP "\bhospitible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhospitible\b/hospitable/g" *.tw
$GREP "\bhounour\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhounour\b/honour/g" *.tw
$GREP "\bhowver\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhowver\b/however/g" *.tw
$GREP "\bhsitorians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhsitorians\b/historians/g" *.tw
$GREP "\bhstory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhstory\b/history/g" *.tw
$GREP "\bhtey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhtey\b/they/g" *.tw
$GREP "\bhtikn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhtikn\b/think/g" *.tw
$GREP "\bhting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhting\b/thing/g" *.tw
$GREP "\bhtink\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhtink\b/think/g" *.tw
$GREP "\bhtis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhtis\b/this/g" *.tw
$GREP "\bhuminoid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhuminoid\b/humanoid/g" *.tw
$GREP "\bhumoural\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhumoural\b/humoral/g" *.tw
$GREP "\bhumurous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhumurous\b/humorous/g" *.tw
$GREP "\bhusban\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhusban\b/husband/g" *.tw
$GREP "\bhvae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhvae\b/have/g" *.tw
$GREP "\bhvaing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhvaing\b/having/g" *.tw
$GREP "\bhwihc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhwihc\b/which/g" *.tw
$GREP "\bhwile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhwile\b/while/g" *.tw
$GREP "\bhwole\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhwole\b/whole/g" *.tw
$GREP "\bhydogen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhydogen\b/hydrogen/g" *.tw
$GREP "\bhydropile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhydropile\b/hydrophile/g" *.tw
$GREP "\bhydropilic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhydropilic\b/hydrophilic/g" *.tw
$GREP "\bhydropobe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhydropobe\b/hydrophobe/g" *.tw
$GREP "\bhydropobic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhydropobic\b/hydrophobic/g" *.tw
$GREP "\bhygeine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhygeine\b/hygiene/g" *.tw
$GREP "\bhyjack\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhyjack\b/hijack/g" *.tw
$GREP "\bhyjacking\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhyjacking\b/hijacking/g" *.tw
$GREP "\bhypocracy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhypocracy\b/hypocrisy/g" *.tw
$GREP "\bhypocrasy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhypocrasy\b/hypocrisy/g" *.tw
$GREP "\bhypocricy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhypocricy\b/hypocrisy/g" *.tw
$GREP "\bhypocrit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhypocrit\b/hypocrite/g" *.tw
$GREP "\bhypocrits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhypocrits\b/hypocrites/g" *.tw
$GREP "\biconclastic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biconclastic\b/iconoclastic/g" *.tw
$GREP "\bidaeidae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidaeidae\b/idea/g" *.tw
$GREP "\bidaes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidaes\b/ideas/g" *.tw
$GREP "\bidealogies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidealogies\b/ideologies/g" *.tw
$GREP "\bidealogy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidealogy\b/ideology/g" *.tw
$GREP "\bidenticial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidenticial\b/identical/g" *.tw
$GREP "\bidentifers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidentifers\b/identifiers/g" *.tw
$GREP "\bideosyncratic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bideosyncratic\b/idiosyncratic/g" *.tw
$GREP "\bidiosyncracy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidiosyncracy\b/idiosyncrasy/g" *.tw
$GREP "\bIhaca\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bIhaca\b/Ithaca/g" *.tw
$GREP "\billegimacy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\billegimacy\b/illegitimacy/g" *.tw
$GREP "\billegitmate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\billegitmate\b/illegitimate/g" *.tw
$GREP "\billess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\billess\b/illness/g" *.tw
$GREP "\billiegal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\billiegal\b/illegal/g" *.tw
$GREP "\billution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\billution\b/illusion/g" *.tw
$GREP "\bilness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bilness\b/illness/g" *.tw
$GREP "\bilogical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bilogical\b/illogical/g" *.tw
$GREP "\bimagenary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimagenary\b/imaginary/g" *.tw
$GREP "\bimagin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimagin\b/imagine/g" *.tw
$GREP "\bimcomplete\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimcomplete\b/incomplete/g" *.tw
$GREP "\bimediately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimediately\b/immediately/g" *.tw
$GREP "\bimense\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimense\b/immense/g" *.tw
$GREP "\bimmediatley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmediatley\b/immediately/g" *.tw
$GREP "\bimmediatly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmediatly\b/immediately/g" *.tw
$GREP "\bimmidately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmidately\b/immediately/g" *.tw
$GREP "\bimmidiately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmidiately\b/immediately/g" *.tw
$GREP "\bimmitate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmitate\b/imitate/g" *.tw
$GREP "\bimmitated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmitated\b/imitated/g" *.tw
$GREP "\bimmitating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmitating\b/imitating/g" *.tw
$GREP "\bimmitator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmitator\b/imitator/g" *.tw
$GREP "\bimmunosupressant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmunosupressant\b/immunosuppressant/g" *.tw
$GREP "\bimpecabbly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimpecabbly\b/impeccably/g" *.tw
$GREP "\bimpedence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimpedence\b/impedance/g" *.tw
$GREP "\bimplamenting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimplamenting\b/implementing/g" *.tw
$GREP "\bimpliment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimpliment\b/implement/g" *.tw
$GREP "\bimplimented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimplimented\b/implemented/g" *.tw
$GREP "\bimploys\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimploys\b/employs/g" *.tw
$GREP "\bimportamt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimportamt\b/important/g" *.tw
$GREP "\bimpressario\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimpressario\b/impresario/g" *.tw
$GREP "\bimprioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimprioned\b/imprisoned/g" *.tw
$GREP "\bimprisonned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimprisonned\b/imprisoned/g" *.tw
$GREP "\bimprovision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimprovision\b/improvisation/g" *.tw
$GREP "\bimprovments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimprovments\b/improvements/g" *.tw
$GREP "\binablility\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binablility\b/inability/g" *.tw
$GREP "\binaccessable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binaccessable\b/inaccessible/g" *.tw
$GREP "\binadiquate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binadiquate\b/inadequate/g" *.tw
$GREP "\binadquate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binadquate\b/inadequate/g" *.tw
$GREP "\binadvertant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binadvertant\b/inadvertent/g" *.tw
$GREP "\binadvertantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binadvertantly\b/inadvertently/g" *.tw
$GREP "\binagurated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binagurated\b/inaugurated/g" *.tw
$GREP "\binaguration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binaguration\b/inauguration/g" *.tw
$GREP "\binappropiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binappropiate\b/inappropriate/g" *.tw
$GREP "\binaugures\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binaugures\b/inaugurates/g" *.tw
$GREP "\binbalance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binbalance\b/imbalance/g" *.tw
$GREP "\binbalanced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binbalanced\b/imbalanced/g" *.tw
$GREP "\binbetween\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binbetween\b/between/g" *.tw
$GREP "\bincarcirated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincarcirated\b/incarcerated/g" *.tw
$GREP "\bincidentially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincidentially\b/incidentally/g" *.tw
$GREP "\bincidently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincidently\b/incidentally/g" *.tw
$GREP "\binclreased\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binclreased\b/increased/g" *.tw
$GREP "\binclud\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binclud\b/include/g" *.tw
$GREP "\bincludng\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincludng\b/including/g" *.tw
$GREP "\bincompatabilities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatabilities\b/incompatibilities/g" *.tw
$GREP "\bincompatability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatability\b/incompatibility/g" *.tw
$GREP "\bincompatable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatable\b/incompatible/g" *.tw
$GREP "\bincompatablities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatablities\b/incompatibilities/g" *.tw
$GREP "\bincompatablity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatablity\b/incompatibility/g" *.tw
$GREP "\bincompatiblities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatiblities\b/incompatibilities/g" *.tw
$GREP "\bincompatiblity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatiblity\b/incompatibility/g" *.tw
$GREP "\bincompetance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompetance\b/incompetence/g" *.tw
$GREP "\bincompetant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompetant\b/incompetent/g" *.tw
$GREP "\bincomptable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincomptable\b/incompatible/g" *.tw
$GREP "\bincomptetent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincomptetent\b/incompetent/g" *.tw
$GREP "\binconsistant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binconsistant\b/inconsistent/g" *.tw
$GREP "\bincoroporated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincoroporated\b/incorporated/g" *.tw
$GREP "\bincorperation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincorperation\b/incorporation/g" *.tw
$GREP "\bincorportaed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincorportaed\b/incorporated/g" *.tw
$GREP "\bincorprates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincorprates\b/incorporates/g" *.tw
$GREP "\bincorruptable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincorruptable\b/incorruptible/g" *.tw
$GREP "\bincramentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincramentally\b/incrementally/g" *.tw
$GREP "\bincreadible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincreadible\b/incredible/g" *.tw
$GREP "\bincredable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincredable\b/incredible/g" *.tw
$GREP "\binctroduce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binctroduce\b/introduce/g" *.tw
$GREP "\binctroduced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binctroduced\b/introduced/g" *.tw
$GREP "\bincuding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincuding\b/including/g" *.tw
$GREP "\bincunabla\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincunabla\b/incunabula/g" *.tw
$GREP "\bindefinately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindefinately\b/indefinitely/g" *.tw
$GREP "\bindefineable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindefineable\b/undefinable/g" *.tw
$GREP "\bindefinitly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindefinitly\b/indefinitely/g" *.tw
$GREP "\bindentical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindentical\b/identical/g" *.tw
$GREP "\bindepedantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindepedantly\b/independently/g" *.tw
$GREP "\bindepedence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindepedence\b/independence/g" *.tw
$GREP "\bindependance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindependance\b/independence/g" *.tw
$GREP "\bindependant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindependant\b/independent/g" *.tw
$GREP "\bindependantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindependantly\b/independently/g" *.tw
$GREP "\bindependece\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindependece\b/independence/g" *.tw
$GREP "\bindependendet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindependendet\b/independent/g" *.tw
$GREP "\bindespensable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindespensable\b/indispensable/g" *.tw
$GREP "\bindespensible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindespensible\b/indispensable/g" *.tw
$GREP "\bindictement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindictement\b/indictment/g" *.tw
$GREP "\bindigineous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindigineous\b/indigenous/g" *.tw
$GREP "\bindipendence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindipendence\b/independence/g" *.tw
$GREP "\bindipendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindipendent\b/independent/g" *.tw
$GREP "\bindipendently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindipendently\b/independently/g" *.tw
$GREP "\bindispensible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindispensible\b/indispensable/g" *.tw
$GREP "\bindisputible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindisputible\b/indisputable/g" *.tw
$GREP "\bindisputibly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindisputibly\b/indisputably/g" *.tw
$GREP "\bindite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindite\b/indict/g" *.tw
$GREP "\bindividualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindividualy\b/individually/g" *.tw
$GREP "\bindpendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindpendent\b/independent/g" *.tw
$GREP "\bindpendently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindpendently\b/independently/g" *.tw
$GREP "\bindulgue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindulgue\b/indulge/g" *.tw
$GREP "\bindutrial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindutrial\b/industrial/g" *.tw
$GREP "\bindviduals\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindviduals\b/individuals/g" *.tw
$GREP "\binefficienty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binefficienty\b/inefficiently/g" *.tw
$GREP "\binevatible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binevatible\b/inevitable/g" *.tw
$GREP "\binevitible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binevitible\b/inevitable/g" *.tw
$GREP "\binevititably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binevititably\b/inevitably/g" *.tw
$GREP "\binfalability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfalability\b/infallibility/g" *.tw
$GREP "\binfallable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfallable\b/infallible/g" *.tw
$GREP "\binfectuous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfectuous\b/infectious/g" *.tw
$GREP "\binfered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfered\b/inferred/g" *.tw
$GREP "\binfilitrate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfilitrate\b/infiltrate/g" *.tw
$GREP "\binfilitrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfilitrated\b/infiltrated/g" *.tw
$GREP "\binfilitration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfilitration\b/infiltration/g" *.tw
$GREP "\binfinit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfinit\b/infinite/g" *.tw
$GREP "\binflamation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binflamation\b/inflammation/g" *.tw
$GREP "\binfluencial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfluencial\b/influential/g" *.tw
$GREP "\binfluented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfluented\b/influenced/g" *.tw
$GREP "\binfomation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfomation\b/information/g" *.tw
$GREP "\binformtion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binformtion\b/information/g" *.tw
$GREP "\binfrantryman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfrantryman\b/infantryman/g" *.tw
$GREP "\binfrigement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfrigement\b/infringement/g" *.tw
$GREP "\bingenius\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bingenius\b/ingenious/g" *.tw
$GREP "\bingreediants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bingreediants\b/ingredients/g" *.tw
$GREP "\binhabitans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binhabitans\b/inhabitants/g" *.tw
$GREP "\binherantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binherantly\b/inherently/g" *.tw
$GREP "\binheritence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binheritence\b/inheritance/g" *.tw
$GREP "\binital\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binital\b/initial/g" *.tw
$GREP "\binitally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binitally\b/initially/g" *.tw
$GREP "\binitation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binitation\b/initiation/g" *.tw
$GREP "\binitiaitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binitiaitive\b/initiative/g" *.tw
$GREP "\binlcuding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binlcuding\b/including/g" *.tw
$GREP "\binmigrant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binmigrant\b/immigrant/g" *.tw
$GREP "\binmigrants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binmigrants\b/immigrants/g" *.tw
$GREP "\binnoculated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binnoculated\b/inoculated/g" *.tw
$GREP "\binocence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binocence\b/innocence/g" *.tw
$GREP "\binofficial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binofficial\b/unofficial/g" *.tw
$GREP "\binot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binot\b/into/g" *.tw
$GREP "\binpeach\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binpeach\b/impeach/g" *.tw
$GREP "\binpending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binpending\b/impending/g" *.tw
$GREP "\binpenetrable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binpenetrable\b/impenetrable/g" *.tw
$GREP "\binpolite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binpolite\b/impolite/g" *.tw
$GREP "\binprisonment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binprisonment\b/imprisonment/g" *.tw
$GREP "\binproving\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binproving\b/improving/g" *.tw
$GREP "\binsectiverous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsectiverous\b/insectivorous/g" *.tw
$GREP "\binsensative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsensative\b/insensitive/g" *.tw
$GREP "\binseperable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binseperable\b/inseparable/g" *.tw
$GREP "\binsistance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsistance\b/insistence/g" *.tw
$GREP "\binsitution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsitution\b/institution/g" *.tw
$GREP "\binsitutions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsitutions\b/institutions/g" *.tw
$GREP "\binstade\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstade\b/instead/g" *.tw
$GREP "\binstatance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstatance\b/instance/g" *.tw
$GREP "\binstitue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstitue\b/institute/g" *.tw
$GREP "\binstuction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstuction\b/instruction/g" *.tw
$GREP "\binstuments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstuments\b/instruments/g" *.tw
$GREP "\binstutionalized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstutionalized\b/institutionalized/g" *.tw
$GREP "\binstutions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstutions\b/intuitions/g" *.tw
$GREP "\binsurence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsurence\b/insurance/g" *.tw
$GREP "\bintelectual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintelectual\b/intellectual/g" *.tw
$GREP "\binteligence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binteligence\b/intelligence/g" *.tw
$GREP "\binteligent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binteligent\b/intelligent/g" *.tw
$GREP "\bintenational\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintenational\b/international/g" *.tw
$GREP "\bintepretation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintepretation\b/interpretation/g" *.tw
$GREP "\bintepretator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintepretator\b/interpretor/g" *.tw
$GREP "\binterational\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterational\b/international/g" *.tw
$GREP "\binterchangable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterchangable\b/interchangeable/g" *.tw
$GREP "\binterchangably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterchangably\b/interchangeably/g" *.tw
$GREP "\bintercontinential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintercontinential\b/intercontinental/g" *.tw
$GREP "\bintercontinetal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintercontinetal\b/intercontinental/g" *.tw
$GREP "\binterelated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterelated\b/interrelated/g" *.tw
$GREP "\binterferance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterferance\b/interference/g" *.tw
$GREP "\binterfereing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterfereing\b/interfering/g" *.tw
$GREP "\bintergrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintergrated\b/integrated/g" *.tw
$GREP "\bintergration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintergration\b/integration/g" *.tw
$GREP "\binterm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterm\b/interim/g" *.tw
$GREP "\binternation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binternation\b/international/g" *.tw
$GREP "\binterpet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterpet\b/interpret/g" *.tw
$GREP "\binterrim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterrim\b/interim/g" *.tw
$GREP "\binterrugum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterrugum\b/interregnum/g" *.tw
$GREP "\bintertaining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintertaining\b/entertaining/g" *.tw
$GREP "\binterupt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterupt\b/interrupt/g" *.tw
$GREP "\bintervines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintervines\b/intervenes/g" *.tw
$GREP "\bintevene\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintevene\b/intervene/g" *.tw
$GREP "\bintial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintial\b/initial/g" *.tw
$GREP "\bintially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintially\b/initially/g" *.tw
$GREP "\bintrduced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrduced\b/introduced/g" *.tw
$GREP "\bintrest\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrest\b/interest/g" *.tw
$GREP "\bintrodued\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrodued\b/introduced/g" *.tw
$GREP "\bintruduced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintruduced\b/introduced/g" *.tw
$GREP "\bintrument\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrument\b/instrument/g" *.tw
$GREP "\bintrumental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrumental\b/instrumental/g" *.tw
$GREP "\bintruments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintruments\b/instruments/g" *.tw
$GREP "\bintrusted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrusted\b/entrusted/g" *.tw
$GREP "\bintutive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintutive\b/intuitive/g" *.tw
$GREP "\bintutively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintutively\b/intuitively/g" *.tw
$GREP "\binudstry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binudstry\b/industry/g" *.tw
$GREP "\binventer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binventer\b/inventor/g" *.tw
$GREP "\binvertibrates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binvertibrates\b/invertebrates/g" *.tw
$GREP "\binvestingate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binvestingate\b/investigate/g" *.tw
$GREP "\binvolvment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binvolvment\b/involvement/g" *.tw
$GREP "\birelevent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birelevent\b/irrelevant/g" *.tw
$GREP "\biresistable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biresistable\b/irresistible/g" *.tw
$GREP "\biresistably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biresistably\b/irresistibly/g" *.tw
$GREP "\biresistible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biresistible\b/irresistible/g" *.tw
$GREP "\biresistibly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biresistibly\b/irresistibly/g" *.tw
$GREP "\biritable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biritable\b/irritable/g" *.tw
$GREP "\biritated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biritated\b/irritated/g" *.tw
$GREP "\bironicly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bironicly\b/ironically/g" *.tw
$GREP "\birregardless\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birregardless\b/regardless/g" *.tw
$GREP "\birrelevent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birrelevent\b/irrelevant/g" *.tw
$GREP "\birreplacable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birreplacable\b/irreplaceable/g" *.tw
$GREP "\birresistable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birresistable\b/irresistible/g" *.tw
$GREP "\birresistably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birresistably\b/irresistibly/g" *.tw
$GREP "\bisnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bisnt\b/isn't/g" *.tw
$GREP "\bIsraelies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bIsraelies\b/Israelis/g" *.tw
$GREP "\bissueing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bissueing\b/issuing/g" *.tw
$GREP "\bitnroduced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bitnroduced\b/introduced/g" *.tw
$GREP "\biunior\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biunior\b/junior/g" *.tw
$GREP "\biwll\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biwll\b/will/g" *.tw
$GREP "\biwth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biwth\b/with/g" *.tw
$GREP "\bJanurary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJanurary\b/January/g" *.tw
$GREP "\bJanuray\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJanuray\b/January/g" *.tw
$GREP "\bJapanes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJapanes\b/Japanese/g" *.tw
$GREP "\bjaques\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjaques\b/jacques/g" *.tw
$GREP "\bjeapardy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjeapardy\b/jeopardy/g" *.tw
$GREP "\bjewllery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjewllery\b/jewellery/g" *.tw
$GREP "\bJohanine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJohanine\b/Johannine/g" *.tw
$GREP "\bjorunal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjorunal\b/journal/g" *.tw
$GREP "\bJospeh\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJospeh\b/Joseph/g" *.tw
$GREP "\bjouney\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjouney\b/journey/g" *.tw
$GREP "\bjournied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjournied\b/journeyed/g" *.tw
$GREP "\bjournies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjournies\b/journeys/g" *.tw
$GREP "\bjstu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjstu\b/just/g" *.tw
$GREP "\bjsut\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjsut\b/just/g" *.tw
$GREP "\bJuadaism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJuadaism\b/Judaism/g" *.tw
$GREP "\bJuadism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJuadism\b/Judaism/g" *.tw
$GREP "\bjudical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjudical\b/judicial/g" *.tw
$GREP "\bjudisuary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjudisuary\b/judiciary/g" *.tw
$GREP "\bjuducial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjuducial\b/judicial/g" *.tw
$GREP "\bjuristiction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjuristiction\b/jurisdiction/g" *.tw
$GREP "\bjuristictions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjuristictions\b/jurisdictions/g" *.tw
$GREP "\bkindergarden\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bkindergarden\b/kindergarten/g" *.tw
$GREP "\bklenex\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bklenex\b/kleenex/g" *.tw
$GREP "\bknifes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknifes\b/knives/g" *.tw
$GREP "\bknive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknive\b/knife/g" *.tw
$GREP "\bknowlege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknowlege\b/knowledge/g" *.tw
$GREP "\bknowlegeable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknowlegeable\b/knowledgeable/g" *.tw
$GREP "\bknwo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknwo\b/know/g" *.tw
$GREP "\bknwos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknwos\b/knows/g" *.tw
$GREP "\bkonw\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bkonw\b/know/g" *.tw
$GREP "\bkonws\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bkonws\b/knows/g" *.tw
$GREP "\bkwno\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bkwno\b/know/g" *.tw
$GREP "\blabratory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blabratory\b/laboratory/g" *.tw
$GREP "\blaguage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blaguage\b/language/g" *.tw
$GREP "\blaguages\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blaguages\b/languages/g" *.tw
$GREP "\blarg\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blarg\b/large/g" *.tw
$GREP "\blargst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blargst\b/largest/g" *.tw
$GREP "\blarrry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blarrry\b/larry/g" *.tw
$GREP "\blastr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blastr\b/last/g" *.tw
$GREP "\blattitude\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blattitude\b/latitude/g" *.tw
$GREP "\blaunhed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blaunhed\b/launched/g" *.tw
$GREP "\blavae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blavae\b/larvae/g" *.tw
$GREP "\blayed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blayed\b/laid/g" *.tw
$GREP "\blazyness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blazyness\b/laziness/g" *.tw
$GREP "\bleage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bleage\b/league/g" *.tw
$GREP "\bleathal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bleathal\b/lethal/g" *.tw
$GREP "\blefted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blefted\b/left/g" *.tw
$GREP "\blegitamate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blegitamate\b/legitimate/g" *.tw
$GREP "\blegitmate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blegitmate\b/legitimate/g" *.tw
$GREP "\bleibnitz\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bleibnitz\b/leibniz/g" *.tw
$GREP "\blenght\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blenght\b/length/g" *.tw
$GREP "\bleran\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bleran\b/learn/g" *.tw
$GREP "\blerans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blerans\b/learns/g" *.tw
$GREP "\bleutenant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bleutenant\b/lieutenant/g" *.tw
$GREP "\blevetate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blevetate\b/levitate/g" *.tw
$GREP "\blevetated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blevetated\b/levitated/g" *.tw
$GREP "\blevetates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blevetates\b/levitates/g" *.tw
$GREP "\blevetating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blevetating\b/levitating/g" *.tw
$GREP "\blevle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blevle\b/level/g" *.tw
$GREP "\bliasion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliasion\b/liaison/g" *.tw
$GREP "\bliason\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliason\b/liaison/g" *.tw
$GREP "\bliasons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliasons\b/liaisons/g" *.tw
$GREP "\blibary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blibary\b/library/g" *.tw
$GREP "\blibell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blibell\b/libel/g" *.tw
$GREP "\blibguistic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blibguistic\b/linguistic/g" *.tw
$GREP "\blibguistics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blibguistics\b/linguistics/g" *.tw
$GREP "\blibitarianisn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blibitarianisn\b/libertarianism/g" *.tw
$GREP "\blieing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blieing\b/lying/g" *.tw
$GREP "\bliek\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliek\b/like/g" *.tw
$GREP "\bliekd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliekd\b/liked/g" *.tw
$GREP "\bliesure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliesure\b/leisure/g" *.tw
$GREP "\blieuenant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blieuenant\b/lieutenant/g" *.tw
$GREP "\blieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blieved\b/lived/g" *.tw
$GREP "\bliftime\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliftime\b/lifetime/g" *.tw
$GREP "\blightyear\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blightyear\b/light year/g" *.tw
$GREP "\blightyears\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blightyears\b/light years/g" *.tw
$GREP "\blikelyhood\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blikelyhood\b/likelihood/g" *.tw
$GREP "\blinnaena\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blinnaena\b/linnaean/g" *.tw
$GREP "\blippizaner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blippizaner\b/lipizzaner/g" *.tw
$GREP "\bliquify\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliquify\b/liquefy/g" *.tw
$GREP "\blistners\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blistners\b/listeners/g" *.tw
$GREP "\blitature\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blitature\b/literature/g" *.tw
$GREP "\bliteraly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliteraly\b/literally/g" *.tw
$GREP "\bliterture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliterture\b/literature/g" *.tw
$GREP "\blittel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blittel\b/little/g" *.tw
$GREP "\blitterally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blitterally\b/literally/g" *.tw
$GREP "\bliuke\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliuke\b/like/g" *.tw
$GREP "\blivley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blivley\b/lively/g" *.tw
$GREP "\blmits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blmits\b/limits/g" *.tw
$GREP "\bloev\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bloev\b/love/g" *.tw
$GREP "\blonelyness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blonelyness\b/loneliness/g" *.tw
$GREP "\blongitudonal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blongitudonal\b/longitudinal/g" *.tw
$GREP "\blonley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blonley\b/lonely/g" *.tw
$GREP "\bloosing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bloosing\b/losing/g" *.tw
$GREP "\blotharingen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blotharingen\b/lothringen/g" *.tw
$GREP "\blsat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blsat\b/last/g" *.tw
$GREP "\blukid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blukid\b/likud/g" *.tw
$GREP "\blveo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blveo\b/love/g" *.tw
$GREP "\blvoe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blvoe\b/love/g" *.tw
$GREP "\bLybia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bLybia\b/Libya/g" *.tw
$GREP "\bmackeral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmackeral\b/mackerel/g" *.tw
$GREP "\bmagasine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagasine\b/magazine/g" *.tw
$GREP "\bmagizine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagizine\b/magazine/g" *.tw
$GREP "\bmagisine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagisine\b/magazine/g" *.tw
$GREP "\bmagincian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagincian\b/magician/g" *.tw
$GREP "\bmagnificient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagnificient\b/magnificent/g" *.tw
$GREP "\bmagolia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagolia\b/magnolia/g" *.tw
$GREP "\bmailny\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmailny\b/mainly/g" *.tw
$GREP "\bmaintainance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintainance\b/maintenance/g" *.tw
$GREP "\bmaintainence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintainence\b/maintenance/g" *.tw
$GREP "\bmaintance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintance\b/maintenance/g" *.tw
$GREP "\bmaintenence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintenence\b/maintenance/g" *.tw
$GREP "\bmaintinaing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintinaing\b/maintaining/g" *.tw
$GREP "\bmaintioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintioned\b/mentioned/g" *.tw
$GREP "\bmajoroty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmajoroty\b/majority/g" *.tw
$GREP "\bmakse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmakse\b/makes/g" *.tw
$GREP "\bMalcom\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMalcom\b/Malcolm/g" *.tw
$GREP "\bmaltesian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaltesian\b/Maltese/g" *.tw
$GREP "\bmamal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmamal\b/mammal/g" *.tw
$GREP "\bmamalian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmamalian\b/mammalian/g" *.tw
$GREP "\bmanagment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanagment\b/management/g" *.tw
$GREP "\bmaneouvre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaneouvre\b/manoeuvre/g" *.tw
$GREP "\bmaneouvred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaneouvred\b/manoeuvred/g" *.tw
$GREP "\bmaneouvres\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaneouvres\b/manoeuvres/g" *.tw
$GREP "\bmaneouvring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaneouvring\b/manoeuvring/g" *.tw
$GREP "\bmanisfestations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanisfestations\b/manifestations/g" *.tw
$GREP "\bmanoeuverability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanoeuverability\b/maneuverability/g" *.tw
$GREP "\bmantained\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmantained\b/maintained/g" *.tw
$GREP "\bmanufacturedd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanufacturedd\b/manufactured/g" *.tw
$GREP "\bmanufature\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanufature\b/manufacture/g" *.tw
$GREP "\bmanufatured\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanufatured\b/manufactured/g" *.tw
$GREP "\bmanufaturing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanufaturing\b/manufacturing/g" *.tw
$GREP "\bmanuver\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanuver\b/maneuver/g" *.tw
$GREP "\bmariage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmariage\b/marriage/g" *.tw
$GREP "\bmarjority\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarjority\b/majority/g" *.tw
$GREP "\bmarkes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarkes\b/marks/g" *.tw
$GREP "\bmarketting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarketting\b/marketing/g" *.tw
$GREP "\bmarmelade\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarmelade\b/marmalade/g" *.tw
$GREP "\bmarrage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarrage\b/marriage/g" *.tw
$GREP "\bmarraige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarraige\b/marriage/g" *.tw
$GREP "\bmarrtyred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarrtyred\b/martyred/g" *.tw
$GREP "\bmarryied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarryied\b/married/g" *.tw
$GREP "\bMassachussets\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMassachussets\b/Massachusetts/g" *.tw
$GREP "\bMassachussetts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMassachussetts\b/Massachusetts/g" *.tw
$GREP "\bmassmedia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmassmedia\b/mass media/g" *.tw
$GREP "\bmasterbation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmasterbation\b/masturbation/g" *.tw
$GREP "\bmataphysical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmataphysical\b/metaphysical/g" *.tw
$GREP "\bmateralists\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmateralists\b/materialist/g" *.tw
$GREP "\bmathamatics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathamatics\b/mathematics/g" *.tw
$GREP "\bmathematican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathematican\b/mathematician/g" *.tw
$GREP "\bmathematicas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathematicas\b/mathematics/g" *.tw
$GREP "\bmatheticians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmatheticians\b/mathematicians/g" *.tw
$GREP "\bmathmatically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathmatically\b/mathematically/g" *.tw
$GREP "\bmathmatician\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathmatician\b/mathematician/g" *.tw
$GREP "\bmathmaticians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathmaticians\b/mathematicians/g" *.tw
$GREP "\bmccarthyst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmccarthyst\b/mccarthyist/g" *.tw
$GREP "\bmchanics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmchanics\b/mechanics/g" *.tw
$GREP "\bmeaninng\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmeaninng\b/meaning/g" *.tw
$GREP "\bmechandise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmechandise\b/merchandise/g" *.tw
$GREP "\bmedacine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmedacine\b/medicine/g" *.tw
$GREP "\bmedeival\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmedeival\b/medieval/g" *.tw
$GREP "\bmedevial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmedevial\b/medieval/g" *.tw
$GREP "\bmediciney\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmediciney\b/mediciny/g" *.tw
$GREP "\bmedievel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmedievel\b/medieval/g" *.tw
$GREP "\bmediterainnean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmediterainnean\b/mediterranean/g" *.tw
$GREP "\bMediteranean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMediteranean\b/Mediterranean/g" *.tw
$GREP "\bmeerkrat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmeerkrat\b/meerkat/g" *.tw
$GREP "\bmelieux\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmelieux\b/milieux/g" *.tw
$GREP "\bmembranaphone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmembranaphone\b/membranophone/g" *.tw
$GREP "\bmemeber\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmemeber\b/member/g" *.tw
$GREP "\bmenally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmenally\b/mentally/g" *.tw
$GREP "\bmercentile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmercentile\b/mercantile/g" *.tw
$GREP "\bmessanger\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmessanger\b/messenger/g" *.tw
$GREP "\bmessenging\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmessenging\b/messaging/g" *.tw
$GREP "\bmetalic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetalic\b/metallic/g" *.tw
$GREP "\bmetalurgic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetalurgic\b/metallurgic/g" *.tw
$GREP "\bmetalurgical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetalurgical\b/metallurgical/g" *.tw
$GREP "\bmetalurgy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetalurgy\b/metallurgy/g" *.tw
$GREP "\bmetamorphysis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetamorphysis\b/metamorphosis/g" *.tw
$GREP "\bmetaphoricial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetaphoricial\b/metaphorical/g" *.tw
$GREP "\bmeterologist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmeterologist\b/meteorologist/g" *.tw
$GREP "\bmeterology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmeterology\b/meteorology/g" *.tw
$GREP "\bmethaphor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmethaphor\b/metaphor/g" *.tw
$GREP "\bmethaphors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmethaphors\b/metaphors/g" *.tw
$GREP "\bMichagan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMichagan\b/Michigan/g" *.tw
$GREP "\bmicoscopy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmicoscopy\b/microscopy/g" *.tw
$GREP "\bmidwifes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmidwifes\b/midwives/g" *.tw
$GREP "\bmileau\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmileau\b/milieu/g" *.tw
$GREP "\bmilennia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmilennia\b/millennia/g" *.tw
$GREP "\bmilennium\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmilennium\b/millennium/g" *.tw
$GREP "\bmileu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmileu\b/milieu/g" *.tw
$GREP "\bmiliary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiliary\b/military/g" *.tw
$GREP "\bmiligram\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiligram\b/milligram/g" *.tw
$GREP "\bmilion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmilion\b/million/g" *.tw
$GREP "\bmiliraty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiliraty\b/military/g" *.tw
$GREP "\bmillenia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillenia\b/millennia/g" *.tw
$GREP "\bmillenial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillenial\b/millennial/g" *.tw
$GREP "\bmillenialism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillenialism\b/millennialism/g" *.tw
$GREP "\bmillenium\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillenium\b/millennium/g" *.tw
$GREP "\bmillepede\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillepede\b/millipede/g" *.tw
$GREP "\bmillioniare\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillioniare\b/millionaire/g" *.tw
$GREP "\bmillitant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillitant\b/militant/g" *.tw
$GREP "\bmillitary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillitary\b/military/g" *.tw
$GREP "\bmillon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillon\b/million/g" *.tw
$GREP "\bmiltary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiltary\b/military/g" *.tw
$GREP "\bminature\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminature\b/miniature/g" *.tw
$GREP "\bminerial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminerial\b/mineral/g" *.tw
$GREP "\bministery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bministery\b/ministry/g" *.tw
$GREP "\bminsitry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminsitry\b/ministry/g" *.tw
$GREP "\bminstries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminstries\b/ministries/g" *.tw
$GREP "\bminstry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminstry\b/ministry/g" *.tw
$GREP "\bminumum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminumum\b/minimum/g" *.tw
$GREP "\bmirrorred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmirrorred\b/mirrored/g" *.tw
$GREP "\bmiscelaneous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiscelaneous\b/miscellaneous/g" *.tw
$GREP "\bmiscellanious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiscellanious\b/miscellaneous/g" *.tw
$GREP "\bmiscellanous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiscellanous\b/miscellaneous/g" *.tw
$GREP "\bmischeivous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmischeivous\b/mischievous/g" *.tw
$GREP "\bmischevious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmischevious\b/mischievous/g" *.tw
$GREP "\bmischievious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmischievious\b/mischievous/g" *.tw
$GREP "\bmisdameanor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisdameanor\b/misdemeanor/g" *.tw
$GREP "\bmisdameanors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisdameanors\b/misdemeanors/g" *.tw
$GREP "\bmisdemenor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisdemenor\b/misdemeanor/g" *.tw
$GREP "\bmisdemenors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisdemenors\b/misdemeanors/g" *.tw
$GREP "\bmisfourtunes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisfourtunes\b/misfortunes/g" *.tw
$GREP "\bmisile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisile\b/missile/g" *.tw
$GREP "\bMisouri\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMisouri\b/Missouri/g" *.tw
$GREP "\bmispell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmispell\b/misspell/g" *.tw
$GREP "\bmispelled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmispelled\b/misspelled/g" *.tw
$GREP "\bmispelling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmispelling\b/misspelling/g" *.tw
$GREP "\bmissen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmissen\b/mizzen/g" *.tw
$GREP "\bMissisipi\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMissisipi\b/Mississippi/g" *.tw
$GREP "\bMissisippi\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMissisippi\b/Mississippi/g" *.tw
$GREP "\bmissle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmissle\b/missile/g" *.tw
$GREP "\bmissonary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmissonary\b/missionary/g" *.tw
$GREP "\bmisterious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisterious\b/mysterious/g" *.tw
$GREP "\bmistery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmistery\b/mystery/g" *.tw
$GREP "\bmisteryous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisteryous\b/mysterious/g" *.tw
$GREP "\bmkae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmkae\b/make/g" *.tw
$GREP "\bmkaes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmkaes\b/makes/g" *.tw
$GREP "\bmkaing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmkaing\b/making/g" *.tw
$GREP "\bmkea\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmkea\b/make/g" *.tw
$GREP "\bmoderm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoderm\b/modem/g" *.tw
$GREP "\bmodle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmodle\b/model/g" *.tw
$GREP "\bmoent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoent\b/moment/g" *.tw
$GREP "\bmoeny\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoeny\b/money/g" *.tw
$GREP "\bmohammedans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmohammedans\b/muslims/g" *.tw
$GREP "\bmoil\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoil\b/mohel/g" *.tw
$GREP "\bmoil\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoil\b/soil/g" *.tw
$GREP "\bmoleclues\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoleclues\b/molecules/g" *.tw
$GREP "\bmomento\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmomento\b/memento/g" *.tw
$GREP "\bmonestaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmonestaries\b/monasteries/g" *.tw
$GREP "\bmonickers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmonickers\b/monikers/g" *.tw
$GREP "\bmonolite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmonolite\b/monolithic/g" *.tw
$GREP "\bmontains\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmontains\b/mountains/g" *.tw
$GREP "\bmontanous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmontanous\b/mountainous/g" *.tw
$GREP "\bMontnana\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMontnana\b/Montana/g" *.tw
$GREP "\bmonts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmonts\b/months/g" *.tw
$GREP "\bmontypic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmontypic\b/monotypic/g" *.tw
$GREP "\bmorgage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmorgage\b/mortgage/g" *.tw
$GREP "\bMorisette\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMorisette\b/Morissette/g" *.tw
$GREP "\bMorrisette\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMorrisette\b/Morissette/g" *.tw
$GREP "\bmorroccan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmorroccan\b/moroccan/g" *.tw
$GREP "\bmorrocco\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmorrocco\b/morocco/g" *.tw
$GREP "\bmorroco\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmorroco\b/morocco/g" *.tw
$GREP "\bmortage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmortage\b/mortgage/g" *.tw
$GREP "\bmosture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmosture\b/moisture/g" *.tw
$GREP "\bmotiviated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmotiviated\b/motivated/g" *.tw
$GREP "\bmounth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmounth\b/month/g" *.tw
$GREP "\bmovei\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmovei\b/movie/g" *.tw
$GREP "\bmovment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmovment\b/movement/g" *.tw
$GREP "\bmroe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmroe\b/more/g" *.tw
$GREP "\bmucuous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmucuous\b/mucous/g" *.tw
$GREP "\bmuder\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuder\b/murder/g" *.tw
$GREP "\bmudering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmudering\b/murdering/g" *.tw
$GREP "\bmuhammadan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuhammadan\b/muslim/g" *.tw
$GREP "\bmulticultralism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmulticultralism\b/multiculturalism/g" *.tw
$GREP "\bmultipled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmultipled\b/multiplied/g" *.tw
$GREP "\bmultiplers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmultiplers\b/multipliers/g" *.tw
$GREP "\bmunbers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmunbers\b/numbers/g" *.tw
$GREP "\bmuncipalities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuncipalities\b/municipalities/g" *.tw
$GREP "\bmuncipality\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuncipality\b/municipality/g" *.tw
$GREP "\bmunnicipality\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmunnicipality\b/municipality/g" *.tw
$GREP "\bmuscial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuscial\b/musical/g" *.tw
$GREP "\bmuscician\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuscician\b/musician/g" *.tw
$GREP "\bmuscicians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuscicians\b/musicians/g" *.tw
$GREP "\bmutiliated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmutiliated\b/mutilated/g" *.tw
$GREP "\bmyraid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmyraid\b/myriad/g" *.tw
$GREP "\bmysef\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmysef\b/myself/g" *.tw
$GREP "\bmysogynist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmysogynist\b/misogynist/g" *.tw
$GREP "\bmysogyny\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmysogyny\b/misogyny/g" *.tw
$GREP "\bmysterous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmysterous\b/mysterious/g" *.tw
$GREP "\bMythraic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMythraic\b/Mithraic/g" *.tw
$GREP "\bnaieve\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnaieve\b/naive/g" *.tw
$GREP "\bNaploeon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNaploeon\b/Napoleon/g" *.tw
$GREP "\bNapolean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNapolean\b/Napoleon/g" *.tw
$GREP "\bNapoleonian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNapoleonian\b/Napoleonic/g" *.tw
$GREP "\bnaturaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnaturaly\b/naturally/g" *.tw
$GREP "\bnaturely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnaturely\b/naturally/g" *.tw
$GREP "\bnaturual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnaturual\b/natural/g" *.tw
$GREP "\bnaturually\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnaturually\b/naturally/g" *.tw
$GREP "\bNazereth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNazereth\b/Nazareth/g" *.tw
$GREP "\bneccesarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneccesarily\b/necessarily/g" *.tw
$GREP "\bneccesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneccesary\b/necessary/g" *.tw
$GREP "\bneccessarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneccessarily\b/necessarily/g" *.tw
$GREP "\bneccessary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneccessary\b/necessary/g" *.tw
$GREP "\bneccessities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneccessities\b/necessities/g" *.tw
$GREP "\bnecesarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnecesarily\b/necessarily/g" *.tw
$GREP "\bnecesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnecesary\b/necessary/g" *.tw
$GREP "\bnecessiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnecessiate\b/necessitate/g" *.tw
$GREP "\bneglible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneglible\b/negligible/g" *.tw
$GREP "\bnegligable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnegligable\b/negligible/g" *.tw
$GREP "\bnegociate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnegociate\b/negotiate/g" *.tw
$GREP "\bnegociation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnegociation\b/negotiation/g" *.tw
$GREP "\bnegociations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnegociations\b/negotiations/g" *.tw
$GREP "\bnegotation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnegotation\b/negotiation/g" *.tw
$GREP "\bneigborhood\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneigborhood\b/neighborhood/g" *.tw
$GREP "\bneigbourhood\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneigbourhood\b/neighbourhood/g" *.tw
$GREP "\bneolitic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneolitic\b/neolithic/g" *.tw
$GREP "\bnessasarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnessasarily\b/necessarily/g" *.tw
$GREP "\bnessecary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnessecary\b/necessary/g" *.tw
$GREP "\bnestin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnestin\b/nesting/g" *.tw
$GREP "\bneverthless\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneverthless\b/nevertheless/g" *.tw
$GREP "\bnewletters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnewletters\b/newsletters/g" *.tw
$GREP "\bnickle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnickle\b/nickel/g" *.tw
$GREP "\bnightfa;;\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnightfa;;\b/nightfall/g" *.tw
$GREP "\bnightime\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnightime\b/nighttime/g" *.tw
$GREP "\bnineth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnineth\b/ninth/g" *.tw
$GREP "\bninteenth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bninteenth\b/nineteenth/g" *.tw
$GREP "\bninties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bninties\b/1990s/g" *.tw
$GREP "\bninty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bninty\b/ninety/g" *.tw
$GREP "\bnkow\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnkow\b/know/g" *.tw
$GREP "\bnkwo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnkwo\b/know/g" *.tw
$GREP "\bnmae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnmae\b/name/g" *.tw
$GREP "\bnoncombatents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoncombatents\b/noncombatants/g" *.tw
$GREP "\bnonsence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnonsence\b/nonsense/g" *.tw
$GREP "\bnontheless\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnontheless\b/nonetheless/g" *.tw
$GREP "\bnoone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoone\b/no one/g" *.tw
$GREP "\bnorhern\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnorhern\b/northern/g" *.tw
$GREP "\bnorthen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnorthen\b/northern/g" *.tw
$GREP "\bnorthereastern\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnorthereastern\b/northeastern/g" *.tw
$GREP "\bnotabley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnotabley\b/notably/g" *.tw
$GREP "\bnoteable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoteable\b/notable/g" *.tw
$GREP "\bnoteably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoteably\b/notably/g" *.tw
$GREP "\bnoteriety\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoteriety\b/notoriety/g" *.tw
$GREP "\bnoth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoth\b/north/g" *.tw
$GREP "\bnothern\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnothern\b/northern/g" *.tw
$GREP "\bnoticable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoticable\b/noticeable/g" *.tw
$GREP "\bnoticably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoticably\b/noticeably/g" *.tw
$GREP "\bnoticeing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoticeing\b/noticing/g" *.tw
$GREP "\bnoticible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoticible\b/noticeable/g" *.tw
$GREP "\bnotwhithstanding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnotwhithstanding\b/notwithstanding/g" *.tw
$GREP "\bnoveau\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoveau\b/nouveau/g" *.tw
$GREP "\bNovermber\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNovermber\b/November/g" *.tw
$GREP "\bnowdays\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnowdays\b/nowadays/g" *.tw
$GREP "\bnowe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnowe\b/now/g" *.tw
$GREP "\bnto\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnto\b/not/g" *.tw
$GREP "\bnucular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnucular\b/nuclear/g" *.tw
$GREP "\bnuculear\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnuculear\b/nuclear/g" *.tw
$GREP "\bnuisanse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnuisanse\b/nuisance/g" *.tw
$GREP "\bNullabour\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNullabour\b/Nullarbor/g" *.tw
$GREP "\bnumberous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnumberous\b/numerous/g" *.tw
$GREP "\bNuremburg\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNuremburg\b/Nuremberg/g" *.tw
$GREP "\bnusance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnusance\b/nuisance/g" *.tw
$GREP "\bnutritent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnutritent\b/nutrient/g" *.tw
$GREP "\bnutritents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnutritents\b/nutrients/g" *.tw
$GREP "\bnuturing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnuturing\b/nurturing/g" *.tw
$GREP "\bobediance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobediance\b/obedience/g" *.tw
$GREP "\bobediant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobediant\b/obedient/g" *.tw
$GREP "\bobession\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobession\b/obsession/g" *.tw
$GREP "\bobssessed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobssessed\b/obsessed/g" *.tw
$GREP "\bobstacal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobstacal\b/obstacle/g" *.tw
$GREP "\bobstancles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobstancles\b/obstacles/g" *.tw
$GREP "\bobstruced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobstruced\b/obstructed/g" *.tw
$GREP "\bocasion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasion\b/occasion/g" *.tw
$GREP "\bocasional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasional\b/occasional/g" *.tw
$GREP "\bocasionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasionally\b/occasionally/g" *.tw
$GREP "\bocasionaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasionaly\b/occasionally/g" *.tw
$GREP "\bocasioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasioned\b/occasioned/g" *.tw
$GREP "\bocasions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasions\b/occasions/g" *.tw
$GREP "\bocassion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassion\b/occasion/g" *.tw
$GREP "\bocassional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassional\b/occasional/g" *.tw
$GREP "\bocassionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassionally\b/occasionally/g" *.tw
$GREP "\bocassionaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassionaly\b/occasionally/g" *.tw
$GREP "\bocassioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassioned\b/occasioned/g" *.tw
$GREP "\bocassions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassions\b/occasions/g" *.tw
$GREP "\boccaison\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccaison\b/occasion/g" *.tw
$GREP "\boccassion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassion\b/occasion/g" *.tw
$GREP "\boccassional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassional\b/occasional/g" *.tw
$GREP "\boccassionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassionally\b/occasionally/g" *.tw
$GREP "\boccassionaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassionaly\b/occasionally/g" *.tw
$GREP "\boccassioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassioned\b/occasioned/g" *.tw
$GREP "\boccassions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassions\b/occasions/g" *.tw
$GREP "\boccationally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccationally\b/occasionally/g" *.tw
$GREP "\boccour\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccour\b/occur/g" *.tw
$GREP "\boccurance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurance\b/occurrence/g" *.tw
$GREP "\boccurances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurances\b/occurrences/g" *.tw
$GREP "\boccured\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccured\b/occurred/g" *.tw
$GREP "\boccurence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurence\b/occurrence/g" *.tw
$GREP "\boccurences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurences\b/occurrences/g" *.tw
$GREP "\boccuring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccuring\b/occurring/g" *.tw
$GREP "\boccurr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurr\b/occur/g" *.tw
$GREP "\boccurrance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurrance\b/occurrence/g" *.tw
$GREP "\boccurrances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurrances\b/occurrences/g" *.tw
$GREP "\boctohedra\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boctohedra\b/octahedra/g" *.tw
$GREP "\boctohedral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boctohedral\b/octahedral/g" *.tw
$GREP "\boctohedron\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boctohedron\b/octahedron/g" *.tw
$GREP "\bocuntries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocuntries\b/countries/g" *.tw
$GREP "\bocuntry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocuntry\b/country/g" *.tw
$GREP "\bocurr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocurr\b/occur/g" *.tw
$GREP "\bocurrance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocurrance\b/occurrence/g" *.tw
$GREP "\bocurred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocurred\b/occurred/g" *.tw
$GREP "\bocurrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocurrence\b/occurrence/g" *.tw
$GREP "\boffcers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffcers\b/officers/g" *.tw
$GREP "\boffcially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffcially\b/officially/g" *.tw
$GREP "\boffereings\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffereings\b/offerings/g" *.tw
$GREP "\boffical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffical\b/official/g" *.tw
$GREP "\boffically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffically\b/officially/g" *.tw
$GREP "\bofficals\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bofficals\b/officials/g" *.tw
$GREP "\bofficaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bofficaly\b/officially/g" *.tw
$GREP "\bofficialy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bofficialy\b/officially/g" *.tw
$GREP "\boffred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffred\b/offered/g" *.tw
$GREP "\boftenly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boftenly\b/often/g" *.tw
$GREP "\bomision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomision\b/omission/g" *.tw
$GREP "\bomited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomited\b/omitted/g" *.tw
$GREP "\bomiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomiting\b/omitting/g" *.tw
$GREP "\bomlette\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomlette\b/omelette/g" *.tw
$GREP "\bommision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bommision\b/omission/g" *.tw
$GREP "\bommited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bommited\b/omitted/g" *.tw
$GREP "\bommiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bommiting\b/omitting/g" *.tw
$GREP "\bommitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bommitted\b/omitted/g" *.tw
$GREP "\bommitting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bommitting\b/omitting/g" *.tw
$GREP "\bomniverous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomniverous\b/omnivorous/g" *.tw
$GREP "\bomniverously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomniverously\b/omnivorously/g" *.tw
$GREP "\bomre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomre\b/more/g" *.tw
$GREP "\bonyl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bonyl\b/only/g" *.tw
$GREP "\bopeness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopeness\b/openness/g" *.tw
$GREP "\boponent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boponent\b/opponent/g" *.tw
$GREP "\boportunity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boportunity\b/opportunity/g" *.tw
$GREP "\bopose\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopose\b/oppose/g" *.tw
$GREP "\boposite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boposite\b/opposite/g" *.tw
$GREP "\boposition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boposition\b/opposition/g" *.tw
$GREP "\boppenly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boppenly\b/openly/g" *.tw
$GREP "\boppinion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boppinion\b/opinion/g" *.tw
$GREP "\bopponant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopponant\b/opponent/g" *.tw
$GREP "\boppononent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boppononent\b/opponent/g" *.tw
$GREP "\boppositition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boppositition\b/opposition/g" *.tw
$GREP "\boppossed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boppossed\b/opposed/g" *.tw
$GREP "\bopprotunity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopprotunity\b/opportunity/g" *.tw
$GREP "\bopression\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopression\b/oppression/g" *.tw
$GREP "\bopressive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopressive\b/oppressive/g" *.tw
$GREP "\bopthalmic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopthalmic\b/ophthalmic/g" *.tw
$GREP "\bopthalmologist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopthalmologist\b/ophthalmologist/g" *.tw
$GREP "\bopthalmology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopthalmology\b/ophthalmology/g" *.tw
$GREP "\bopthamologist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopthamologist\b/ophthalmologist/g" *.tw
$GREP "\boptmizations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boptmizations\b/optimizations/g" *.tw
$GREP "\boptomism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boptomism\b/optimism/g" *.tw
$GREP "\borded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borded\b/ordered/g" *.tw
$GREP "\borganim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borganim\b/organism/g" *.tw
$GREP "\borganistion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borganistion\b/organisation/g" *.tw
$GREP "\borganiztion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borganiztion\b/organization/g" *.tw
$GREP "\borginal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borginal\b/original/g" *.tw
$GREP "\borginally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borginally\b/originally/g" *.tw
$GREP "\borginize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borginize\b/organise/g" *.tw
$GREP "\boridinarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boridinarily\b/ordinarily/g" *.tw
$GREP "\boriganaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boriganaly\b/originally/g" *.tw
$GREP "\boriginaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boriginaly\b/originally/g" *.tw
$GREP "\boriginially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boriginially\b/originally/g" *.tw
$GREP "\boriginnally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boriginnally\b/originally/g" *.tw
$GREP "\borigional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borigional\b/original/g" *.tw
$GREP "\borignally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borignally\b/originally/g" *.tw
$GREP "\borignially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borignially\b/originally/g" *.tw
$GREP "\botehr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\botehr\b/other/g" *.tw
$GREP "\boublisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boublisher\b/publisher/g" *.tw
$GREP "\bouevre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bouevre\b/oeuvre/g" *.tw
$GREP "\boustanding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boustanding\b/outstanding/g" *.tw
$GREP "\bovershaddowed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bovershaddowed\b/overshadowed/g" *.tw
$GREP "\boverthere\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boverthere\b/over there/g" *.tw
$GREP "\boverwelming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boverwelming\b/overwhelming/g" *.tw
$GREP "\boverwheliming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boverwheliming\b/overwhelming/g" *.tw
$GREP "\bowrk\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bowrk\b/work/g" *.tw
$GREP "\bowudl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bowudl\b/would/g" *.tw
$GREP "\boxigen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boxigen\b/oxygen/g" *.tw
$GREP "\boximoron\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boximoron\b/oxymoron/g" *.tw
$GREP "\bp0enis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bp0enis\b/penis/g" *.tw
$GREP "\bpaide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpaide\b/paid/g" *.tw
$GREP "\bpaitience\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpaitience\b/patience/g" *.tw
$GREP "\bpaleolitic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpaleolitic\b/paleolithic/g" *.tw
$GREP "\bpaliamentarian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpaliamentarian\b/parliamentarian/g" *.tw
$GREP "\bPalistian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPalistian\b/Palestinian/g" *.tw
$GREP "\bPalistinian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPalistinian\b/Palestinian/g" *.tw
$GREP "\bPalistinians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPalistinians\b/Palestinians/g" *.tw
$GREP "\bpallete\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpallete\b/palette/g" *.tw
$GREP "\bpamflet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpamflet\b/pamphlet/g" *.tw
$GREP "\bpamplet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpamplet\b/pamphlet/g" *.tw
$GREP "\bpantomine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpantomine\b/pantomime/g" *.tw
$GREP "\bPapanicalou\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPapanicalou\b/Papanicolaou/g" *.tw
$GREP "\bparalel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparalel\b/parallel/g" *.tw
$GREP "\bparalell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparalell\b/parallel/g" *.tw
$GREP "\bparalelly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparalelly\b/parallelly/g" *.tw
$GREP "\bparalely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparalely\b/parallelly/g" *.tw
$GREP "\bparallely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparallely\b/parallelly/g" *.tw
$GREP "\bparanthesis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparanthesis\b/parenthesis/g" *.tw
$GREP "\bparaphenalia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparaphenalia\b/paraphernalia/g" *.tw
$GREP "\bparellels\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparellels\b/parallels/g" *.tw
$GREP "\bparisitic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparisitic\b/parasitic/g" *.tw
$GREP "\bparituclar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparituclar\b/particular/g" *.tw
$GREP "\bparliment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparliment\b/parliament/g" *.tw
$GREP "\bparrakeets\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparrakeets\b/parakeets/g" *.tw
$GREP "\bparralel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparralel\b/parallel/g" *.tw
$GREP "\bparrallel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparrallel\b/parallel/g" *.tw
$GREP "\bparrallell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparrallell\b/parallel/g" *.tw
$GREP "\bparrallelly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparrallelly\b/parallelly/g" *.tw
$GREP "\bparrallely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparrallely\b/parallelly/g" *.tw
$GREP "\bpartialy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpartialy\b/partially/g" *.tw
$GREP "\bparticually\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparticually\b/particularly/g" *.tw
$GREP "\bparticualr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparticualr\b/particular/g" *.tw
$GREP "\bparticuarly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparticuarly\b/particularly/g" *.tw
$GREP "\bparticularily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparticularily\b/particularly/g" *.tw
$GREP "\bparticulary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparticulary\b/particularly/g" *.tw
$GREP "\bpary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpary\b/party/g" *.tw
$GREP "\bpased\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpased\b/passed/g" *.tw
$GREP "\bpasengers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpasengers\b/passengers/g" *.tw
$GREP "\bpasserbys\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpasserbys\b/passersby/g" *.tw
$GREP "\bpasttime\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpasttime\b/pastime/g" *.tw
$GREP "\bpastural\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpastural\b/pastoral/g" *.tw
$GREP "\bpaticular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpaticular\b/particular/g" *.tw
$GREP "\bpattented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpattented\b/patented/g" *.tw
$GREP "\bpavillion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpavillion\b/pavilion/g" *.tw
$GREP "\bpayed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpayed\b/paid/g" *.tw
$GREP "\bpblisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpblisher\b/publisher/g" *.tw
$GREP "\bpbulisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpbulisher\b/publisher/g" *.tw
$GREP "\bpeacefuland\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeacefuland\b/peaceful and/g" *.tw
$GREP "\bpeageant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeageant\b/pageant/g" *.tw
$GREP "\bpeaple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeaple\b/people/g" *.tw
$GREP "\bpeaples\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeaples\b/peoples/g" *.tw
$GREP "\bpeculure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeculure\b/peculiar/g" *.tw
$GREP "\bpedestrain\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpedestrain\b/pedestrian/g" *.tw
$GREP "\bpeformed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeformed\b/performed/g" *.tw
$GREP "\bpeice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeice\b/piece/g" *.tw
$GREP "\bPeloponnes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPeloponnes\b/Peloponnesus/g" *.tw
$GREP "\bpenatly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenatly\b/penalty/g" *.tw
$GREP "\bpenerator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenerator\b/penetrator/g" *.tw
$GREP "\bpenisula\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenisula\b/peninsula/g" *.tw
$GREP "\bpenisular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenisular\b/peninsular/g" *.tw
$GREP "\bpenninsula\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenninsula\b/peninsula/g" *.tw
$GREP "\bpenninsular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenninsular\b/peninsular/g" *.tw
$GREP "\bpennisula\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpennisula\b/peninsula/g" *.tw
$GREP "\bPennyslvania\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPennyslvania\b/Pennsylvania/g" *.tw
$GREP "\bpensle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpensle\b/pencil/g" *.tw
$GREP "\bpensinula\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpensinula\b/peninsula/g" *.tw
$GREP "\bpeom\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeom\b/poem/g" *.tw
$GREP "\bpeoms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeoms\b/poems/g" *.tw
$GREP "\bpeopel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeopel\b/people/g" *.tw
$GREP "\bpeopels\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeopels\b/peoples/g" *.tw
$GREP "\bpeotry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeotry\b/poetry/g" *.tw
$GREP "\bperade\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperade\b/parade/g" *.tw
$GREP "\bpercepted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpercepted\b/perceived/g" *.tw
$GREP "\bpercieve\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpercieve\b/perceive/g" *.tw
$GREP "\bpercieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpercieved\b/perceived/g" *.tw
$GREP "\bperenially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperenially\b/perennially/g" *.tw
$GREP "\bperfomance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperfomance\b/performance/g" *.tw
$GREP "\bperfomers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperfomers\b/performers/g" *.tw
$GREP "\bperformence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperformence\b/performance/g" *.tw
$GREP "\bperhasp\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperhasp\b/perhaps/g" *.tw
$GREP "\bperheaps\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperheaps\b/perhaps/g" *.tw
$GREP "\bperhpas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperhpas\b/perhaps/g" *.tw
$GREP "\bperipathetic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperipathetic\b/peripatetic/g" *.tw
$GREP "\bperistent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperistent\b/persistent/g" *.tw
$GREP "\bperjery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperjery\b/perjury/g" *.tw
$GREP "\bperjorative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperjorative\b/pejorative/g" *.tw
$GREP "\bpermanant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpermanant\b/permanent/g" *.tw
$GREP "\bpermenant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpermenant\b/permanent/g" *.tw
$GREP "\bpermenantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpermenantly\b/permanently/g" *.tw
$GREP "\bpermissable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpermissable\b/permissible/g" *.tw
$GREP "\bperogative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperogative\b/prerogative/g" *.tw
$GREP "\bperonal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperonal\b/personal/g" *.tw
$GREP "\bperpertrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperpertrated\b/perpetrated/g" *.tw
$GREP "\bperosnality\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperosnality\b/personality/g" *.tw
$GREP "\bperphas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperphas\b/perhaps/g" *.tw
$GREP "\bperpindicular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperpindicular\b/perpendicular/g" *.tw
$GREP "\bpersan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersan\b/person/g" *.tw
$GREP "\bperseverence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperseverence\b/perseverance/g" *.tw
$GREP "\bpersistance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersistance\b/persistence/g" *.tw
$GREP "\bpersistant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersistant\b/persistent/g" *.tw
$GREP "\bpersonell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersonell\b/personnel/g" *.tw
$GREP "\bpersonnell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersonnell\b/personnel/g" *.tw
$GREP "\bpersuded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersuded\b/persuaded/g" *.tw
$GREP "\bpersue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersue\b/pursue/g" *.tw
$GREP "\bpersued\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersued\b/pursued/g" *.tw
$GREP "\bpersuing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersuing\b/pursuing/g" *.tw
$GREP "\bpersuit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersuit\b/pursuit/g" *.tw
$GREP "\bpersuits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersuits\b/pursuits/g" *.tw
$GREP "\bpertubation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpertubation\b/perturbation/g" *.tw
$GREP "\bpertubations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpertubations\b/perturbations/g" *.tw
$GREP "\bpessiary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpessiary\b/pessary/g" *.tw
$GREP "\bpetetion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpetetion\b/petition/g" *.tw
$GREP "\bPharoah\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPharoah\b/Pharaoh/g" *.tw
$GREP "\bphenomenom\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenomenom\b/phenomenon/g" *.tw
$GREP "\bphenomenonal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenomenonal\b/phenomenal/g" *.tw
$GREP "\bphenomenonly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenomenonly\b/phenomenally/g" *.tw
$GREP "\bphenomonenon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenomonenon\b/phenomenon/g" *.tw
$GREP "\bphenomonon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenomonon\b/phenomenon/g" *.tw
$GREP "\bphenonmena\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenonmena\b/phenomena/g" *.tw
$GREP "\bPhilipines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPhilipines\b/Philippines/g" *.tw
$GREP "\bphilisopher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilisopher\b/philosopher/g" *.tw
$GREP "\bphilisophical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilisophical\b/philosophical/g" *.tw
$GREP "\bphilisophy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilisophy\b/philosophy/g" *.tw
$GREP "\bPhillipine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPhillipine\b/Philippine/g" *.tw
$GREP "\bPhillipines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPhillipines\b/Philippines/g" *.tw
$GREP "\bPhillippines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPhillippines\b/Philippines/g" *.tw
$GREP "\bphillosophically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphillosophically\b/philosophically/g" *.tw
$GREP "\bphilospher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilospher\b/philosopher/g" *.tw
$GREP "\bphilosphies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilosphies\b/philosophies/g" *.tw
$GREP "\bphilosphy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilosphy\b/philosophy/g" *.tw
$GREP "\bPhonecian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPhonecian\b/Phoenecian/g" *.tw
$GREP "\bphongraph\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphongraph\b/phonograph/g" *.tw
$GREP "\bphylosophical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphylosophical\b/philosophical/g" *.tw
$GREP "\bphysicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphysicaly\b/physically/g" *.tw
$GREP "\bpiblisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpiblisher\b/publisher/g" *.tw
$GREP "\bpich\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpich\b/pitch/g" *.tw
$GREP "\bpilgrimmage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpilgrimmage\b/pilgrimage/g" *.tw
$GREP "\bpilgrimmages\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpilgrimmages\b/pilgrimages/g" *.tw
$GREP "\bpinapple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpinapple\b/pineapple/g" *.tw
$GREP "\bpinnaple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpinnaple\b/pineapple/g" *.tw
$GREP "\bpinoneered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpinoneered\b/pioneered/g" *.tw
$GREP "\bplagarism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplagarism\b/plagiarism/g" *.tw
$GREP "\bplanation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplanation\b/plantation/g" *.tw
$GREP "\bplaned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplaned\b/planned/g" *.tw
$GREP "\bplantiff\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplantiff\b/plaintiff/g" *.tw
$GREP "\bplateu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplateu\b/plateau/g" *.tw
$GREP "\bplausable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplausable\b/plausible/g" *.tw
$GREP "\bplayright\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplayright\b/playwright/g" *.tw
$GREP "\bplaywrite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplaywrite\b/playwright/g" *.tw
$GREP "\bplaywrites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplaywrites\b/playwrights/g" *.tw
$GREP "\bpleasent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpleasent\b/pleasant/g" *.tw
$GREP "\bplebicite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplebicite\b/plebiscite/g" *.tw
$GREP "\bplesant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplesant\b/pleasant/g" *.tw
$GREP "\bpoenis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoenis\b/penis/g" *.tw
$GREP "\bpoeoples\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoeoples\b/peoples/g" *.tw
$GREP "\bpoety\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoety\b/poetry/g" *.tw
$GREP "\bpoisin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoisin\b/poison/g" *.tw
$GREP "\bpolical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolical\b/political/g" *.tw
$GREP "\bpolinator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolinator\b/pollinator/g" *.tw
$GREP "\bpolinators\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolinators\b/pollinators/g" *.tw
$GREP "\bpolitican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolitican\b/politician/g" *.tw
$GREP "\bpoliticans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoliticans\b/politicians/g" *.tw
$GREP "\bpoltical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoltical\b/political/g" *.tw
$GREP "\bpolute\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolute\b/pollute/g" *.tw
$GREP "\bpoluted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoluted\b/polluted/g" *.tw
$GREP "\bpolutes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolutes\b/pollutes/g" *.tw
$GREP "\bpoluting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoluting\b/polluting/g" *.tw
$GREP "\bpolution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolution\b/pollution/g" *.tw
$GREP "\bpolyphonyic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolyphonyic\b/polyphonic/g" *.tw
$GREP "\bpolysaccaride\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolysaccaride\b/polysaccharide/g" *.tw
$GREP "\bpolysaccharid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolysaccharid\b/polysaccharide/g" *.tw
$GREP "\bpomegranite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpomegranite\b/pomegranate/g" *.tw
$GREP "\bpomotion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpomotion\b/promotion/g" *.tw
$GREP "\bpoportional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoportional\b/proportional/g" *.tw
$GREP "\bpopoulation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpopoulation\b/population/g" *.tw
$GREP "\bpopularaty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpopularaty\b/popularity/g" *.tw
$GREP "\bpopulare\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpopulare\b/popular/g" *.tw
$GREP "\bpopuler\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpopuler\b/popular/g" *.tw
$GREP "\bporshan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bporshan\b/portion/g" *.tw
$GREP "\bporshon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bporshon\b/portion/g" *.tw
$GREP "\bportait\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bportait\b/portrait/g" *.tw
$GREP "\bportayed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bportayed\b/portrayed/g" *.tw
$GREP "\bportraing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bportraing\b/portraying/g" *.tw
$GREP "\bPortugese\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPortugese\b/Portuguese/g" *.tw
$GREP "\bportuguease\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bportuguease\b/portuguese/g" *.tw
$GREP "\bportugues\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bportugues\b/Portuguese/g" *.tw
$GREP "\bposess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposess\b/possess/g" *.tw
$GREP "\bposessed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposessed\b/possessed/g" *.tw
$GREP "\bposesses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposesses\b/possesses/g" *.tw
$GREP "\bposessing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposessing\b/possessing/g" *.tw
$GREP "\bposession\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposession\b/possession/g" *.tw
$GREP "\bposessions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposessions\b/possessions/g" *.tw
$GREP "\bposion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposion\b/poison/g" *.tw
$GREP "\bpossable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossable\b/possible/g" *.tw
$GREP "\bpossably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossably\b/possibly/g" *.tw
$GREP "\bposseses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposseses\b/possesses/g" *.tw
$GREP "\bpossesing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossesing\b/possessing/g" *.tw
$GREP "\bpossesion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossesion\b/possession/g" *.tw
$GREP "\bpossessess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossessess\b/possesses/g" *.tw
$GREP "\bpossibile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossibile\b/possible/g" *.tw
$GREP "\bpossibilty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossibilty\b/possibility/g" *.tw
$GREP "\bpossiblility\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossiblility\b/possibility/g" *.tw
$GREP "\bpossiblilty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossiblilty\b/possibility/g" *.tw
$GREP "\bpossiblities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossiblities\b/possibilities/g" *.tw
$GREP "\bpossiblity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossiblity\b/possibility/g" *.tw
$GREP "\bpossition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossition\b/position/g" *.tw
$GREP "\bPostdam\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPostdam\b/Potsdam/g" *.tw
$GREP "\bposthomous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposthomous\b/posthumous/g" *.tw
$GREP "\bpostion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpostion\b/position/g" *.tw
$GREP "\bpostive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpostive\b/positive/g" *.tw
$GREP "\bpotatos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpotatos\b/potatoes/g" *.tw
$GREP "\bpotrait\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpotrait\b/portrait/g" *.tw
$GREP "\bpotrayed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpotrayed\b/portrayed/g" *.tw
$GREP "\bpoulations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoulations\b/populations/g" *.tw
$GREP "\bpoverful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoverful\b/powerful/g" *.tw
$GREP "\bpoweful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoweful\b/powerful/g" *.tw
$GREP "\bpowerfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpowerfull\b/powerful/g" *.tw
$GREP "\bppublisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bppublisher\b/publisher/g" *.tw
$GREP "\bpractial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpractial\b/practical/g" *.tw
$GREP "\bpractially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpractially\b/practically/g" *.tw
$GREP "\bpracticaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpracticaly\b/practically/g" *.tw
$GREP "\bpracticioner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpracticioner\b/practitioner/g" *.tw
$GREP "\bpracticioners\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpracticioners\b/practitioners/g" *.tw
$GREP "\bpracticly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpracticly\b/practically/g" *.tw
$GREP "\bpractioner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpractioner\b/practitioner/g" *.tw
$GREP "\bpractioners\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpractioners\b/practitioners/g" *.tw
$GREP "\bprairy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprairy\b/prairie/g" *.tw
$GREP "\bprarie\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprarie\b/prairie/g" *.tw
$GREP "\bpraries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpraries\b/prairies/g" *.tw
$GREP "\bpratice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpratice\b/practice/g" *.tw
$GREP "\bpreample\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreample\b/preamble/g" *.tw
$GREP "\bprecedessor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprecedessor\b/predecessor/g" *.tw
$GREP "\bpreceed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreceed\b/precede/g" *.tw
$GREP "\bpreceeded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreceeded\b/preceded/g" *.tw
$GREP "\bpreceeding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreceeding\b/preceding/g" *.tw
$GREP "\bpreceeds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreceeds\b/precedes/g" *.tw
$GREP "\bprecentage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprecentage\b/percentage/g" *.tw
$GREP "\bprecice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprecice\b/precise/g" *.tw
$GREP "\bprecisly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprecisly\b/precisely/g" *.tw
$GREP "\bprecurser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprecurser\b/precursor/g" *.tw
$GREP "\bpredecesors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpredecesors\b/predecessors/g" *.tw
$GREP "\bpredicatble\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpredicatble\b/predictable/g" *.tw
$GREP "\bpredicitons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpredicitons\b/predictions/g" *.tw
$GREP "\bpredomiantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpredomiantly\b/predominately/g" *.tw
$GREP "\bprefered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprefered\b/preferred/g" *.tw
$GREP "\bprefering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprefering\b/preferring/g" *.tw
$GREP "\bpreferrably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreferrably\b/preferably/g" *.tw
$GREP "\bpregancies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpregancies\b/pregnancies/g" *.tw
$GREP "\bpreiod\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreiod\b/period/g" *.tw
$GREP "\bpreliferation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreliferation\b/proliferation/g" *.tw
$GREP "\bpremeire\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpremeire\b/premiere/g" *.tw
$GREP "\bpremeired\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpremeired\b/premiered/g" *.tw
$GREP "\bpremillenial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpremillenial\b/premillennial/g" *.tw
$GREP "\bpreminence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreminence\b/preeminence/g" *.tw
$GREP "\bpremission\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpremission\b/permission/g" *.tw
$GREP "\bPremonasterians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPremonasterians\b/Premonstratensians/g" *.tw
$GREP "\bpreocupation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreocupation\b/preoccupation/g" *.tw
$GREP "\bprepair\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprepair\b/prepare/g" *.tw
$GREP "\bprepartion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprepartion\b/preparation/g" *.tw
$GREP "\bprepatory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprepatory\b/preparatory/g" *.tw
$GREP "\bpreperation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreperation\b/preparation/g" *.tw
$GREP "\bpreperations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreperations\b/preparations/g" *.tw
$GREP "\bpreriod\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreriod\b/period/g" *.tw
$GREP "\bpresedential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresedential\b/presidential/g" *.tw
$GREP "\bpresense\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresense\b/presence/g" *.tw
$GREP "\bpresidenital\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresidenital\b/presidential/g" *.tw
$GREP "\bpresidental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresidental\b/presidential/g" *.tw
$GREP "\bpresitgious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresitgious\b/prestigious/g" *.tw
$GREP "\bprespective\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprespective\b/perspective/g" *.tw
$GREP "\bprestigeous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprestigeous\b/prestigious/g" *.tw
$GREP "\bprestigous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprestigous\b/prestigious/g" *.tw
$GREP "\bpresumabely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresumabely\b/presumably/g" *.tw
$GREP "\bpresumibly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresumibly\b/presumably/g" *.tw
$GREP "\bpretection\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpretection\b/protection/g" *.tw
$GREP "\bprevelant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprevelant\b/prevalent/g" *.tw
$GREP "\bpreverse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreverse\b/perverse/g" *.tw
$GREP "\bprevivous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprevivous\b/previous/g" *.tw
$GREP "\bpricipal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpricipal\b/principal/g" *.tw
$GREP "\bpriciple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriciple\b/principle/g" *.tw
$GREP "\bpriestood\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriestood\b/priesthood/g" *.tw
$GREP "\bprimarly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprimarly\b/primarily/g" *.tw
$GREP "\bprimative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprimative\b/primitive/g" *.tw
$GREP "\bprimatively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprimatively\b/primitively/g" *.tw
$GREP "\bprimatives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprimatives\b/primitives/g" *.tw
$GREP "\bprimordal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprimordal\b/primordial/g" *.tw
$GREP "\bprinciplaity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprinciplaity\b/principality/g" *.tw
$GREP "\bprincipaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprincipaly\b/principality/g" *.tw
$GREP "\bprincipial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprincipial\b/principal/g" *.tw
$GREP "\bprinciply\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprinciply\b/principally/g" *.tw
$GREP "\bprinicipal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprinicipal\b/principal/g" *.tw
$GREP "\bprivalege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivalege\b/privilege/g" *.tw
$GREP "\bprivaleges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivaleges\b/privileges/g" *.tw
$GREP "\bpriveledges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriveledges\b/privileges/g" *.tw
$GREP "\bprivelege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivelege\b/privilege/g" *.tw
$GREP "\bpriveleged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriveleged\b/privileged/g" *.tw
$GREP "\bpriveleges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriveleges\b/privileges/g" *.tw
$GREP "\bprivelige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivelige\b/privilege/g" *.tw
$GREP "\bpriveliged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriveliged\b/privileged/g" *.tw
$GREP "\bpriveliges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriveliges\b/privileges/g" *.tw
$GREP "\bprivelleges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivelleges\b/privileges/g" *.tw
$GREP "\bprivilage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivilage\b/privilege/g" *.tw
$GREP "\bpriviledge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriviledge\b/privilege/g" *.tw
$GREP "\bpriviledges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriviledges\b/privileges/g" *.tw
$GREP "\bprivledge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivledge\b/privilege/g" *.tw
$GREP "\bprivte\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivte\b/private/g" *.tw
$GREP "\bprobabilaty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobabilaty\b/probability/g" *.tw
$GREP "\bprobablistic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobablistic\b/probabilistic/g" *.tw
$GREP "\bprobablly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobablly\b/probably/g" *.tw
$GREP "\bprobalibity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobalibity\b/probability/g" *.tw
$GREP "\bprobaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobaly\b/probably/g" *.tw
$GREP "\bprobelm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobelm\b/problem/g" *.tw
$GREP "\bproccess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproccess\b/process/g" *.tw
$GREP "\bproccessing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproccessing\b/processing/g" *.tw
$GREP "\bprocedger\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprocedger\b/procedure/g" *.tw
$GREP "\bprocedings\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprocedings\b/proceedings/g" *.tw
$GREP "\bproceedure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproceedure\b/procedure/g" *.tw
$GREP "\bproces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproces\b/process/g" *.tw
$GREP "\bprocesser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprocesser\b/processor/g" *.tw
$GREP "\bproclaimation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproclaimation\b/proclamation/g" *.tw
$GREP "\bproclamed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproclamed\b/proclaimed/g" *.tw
$GREP "\bproclaming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproclaming\b/proclaiming/g" *.tw
$GREP "\bproclomation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproclomation\b/proclamation/g" *.tw
$GREP "\bprofesor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprofesor\b/professor/g" *.tw
$GREP "\bprofesser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprofesser\b/professor/g" *.tw
$GREP "\bproffesed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproffesed\b/professed/g" *.tw
$GREP "\bproffesion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproffesion\b/profession/g" *.tw
$GREP "\bproffesional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproffesional\b/professional/g" *.tw
$GREP "\bproffesor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproffesor\b/professor/g" *.tw
$GREP "\bprofilic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprofilic\b/prolific/g" *.tw
$GREP "\bprogessed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprogessed\b/progressed/g" *.tw
$GREP "\bprogidy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprogidy\b/prodigy/g" *.tw
$GREP "\bprogramable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprogramable\b/programmable/g" *.tw
$GREP "\bprohabition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprohabition\b/prohibition/g" *.tw
$GREP "\bprologomena\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprologomena\b/prolegomena/g" *.tw
$GREP "\bprominance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprominance\b/prominence/g" *.tw
$GREP "\bprominant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprominant\b/prominent/g" *.tw
$GREP "\bprominantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprominantly\b/prominently/g" *.tw
$GREP "\bpromiscous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpromiscous\b/promiscuous/g" *.tw
$GREP "\bpromotted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpromotted\b/promoted/g" *.tw
$GREP "\bpronomial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpronomial\b/pronominal/g" *.tw
$GREP "\bpronouced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpronouced\b/pronounced/g" *.tw
$GREP "\bpronounched\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpronounched\b/pronounced/g" *.tw
$GREP "\bpronounciation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpronounciation\b/pronunciation/g" *.tw
$GREP "\bproove\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproove\b/prove/g" *.tw
$GREP "\bprooved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprooved\b/proved/g" *.tw
$GREP "\bprophacy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprophacy\b/prophecy/g" *.tw
$GREP "\bpropietary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropietary\b/proprietary/g" *.tw
$GREP "\bpropmted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropmted\b/prompted/g" *.tw
$GREP "\bpropoganda\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropoganda\b/propaganda/g" *.tw
$GREP "\bpropogate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropogate\b/propagate/g" *.tw
$GREP "\bpropogates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropogates\b/propagates/g" *.tw
$GREP "\bpropogation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropogation\b/propagation/g" *.tw
$GREP "\bpropostion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropostion\b/proposition/g" *.tw
$GREP "\bpropotions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropotions\b/proportions/g" *.tw
$GREP "\bpropper\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropper\b/proper/g" *.tw
$GREP "\bpropperly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropperly\b/properly/g" *.tw
$GREP "\bproprietory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproprietory\b/proprietary/g" *.tw
$GREP "\bproseletyzing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproseletyzing\b/proselytizing/g" *.tw
$GREP "\bprotaganist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotaganist\b/protagonist/g" *.tw
$GREP "\bprotaganists\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotaganists\b/protagonists/g" *.tw
$GREP "\bprotocal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotocal\b/protocol/g" *.tw
$GREP "\bprotoganist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotoganist\b/protagonist/g" *.tw
$GREP "\bprotrayed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotrayed\b/portrayed/g" *.tw
$GREP "\bprotruberance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotruberance\b/protuberance/g" *.tw
$GREP "\bprotruberances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotruberances\b/protuberances/g" *.tw
$GREP "\bprouncements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprouncements\b/pronouncements/g" *.tw
$GREP "\bprovacative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovacative\b/provocative/g" *.tw
$GREP "\bprovded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovded\b/provided/g" *.tw
$GREP "\bprovicial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovicial\b/provincial/g" *.tw
$GREP "\bprovinicial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovinicial\b/provincial/g" *.tw
$GREP "\bprovisiosn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovisiosn\b/provision/g" *.tw
$GREP "\bprovisonal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovisonal\b/provisional/g" *.tw
$GREP "\bproximty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproximty\b/proximity/g" *.tw
$GREP "\bpseudononymous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpseudononymous\b/pseudonymous/g" *.tw
$GREP "\bpseudonyn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpseudonyn\b/pseudonym/g" *.tw
$GREP "\bpsuedo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpsuedo\b/pseudo/g" *.tw
$GREP "\bpsycology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpsycology\b/psychology/g" *.tw
$GREP "\bpsyhic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpsyhic\b/psychic/g" *.tw
$GREP "\bpubilsher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpubilsher\b/publisher/g" *.tw
$GREP "\bpubisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpubisher\b/publisher/g" *.tw
$GREP "\bpubliaher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpubliaher\b/publisher/g" *.tw
$GREP "\bpublically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublically\b/publicly/g" *.tw
$GREP "\bpublicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublicaly\b/publicly/g" *.tw
$GREP "\bpublicher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublicher\b/publisher/g" *.tw
$GREP "\bpublihser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublihser\b/publisher/g" *.tw
$GREP "\bpublisehr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublisehr\b/publisher/g" *.tw
$GREP "\bpubliser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpubliser\b/publisher/g" *.tw
$GREP "\bpublisger\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublisger\b/publisher/g" *.tw
$GREP "\bpublisheed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublisheed\b/published/g" *.tw
$GREP "\bpublisherr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublisherr\b/publisher/g" *.tw
$GREP "\bpublishher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublishher\b/publisher/g" *.tw
$GREP "\bpublishor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublishor\b/publisher/g" *.tw
$GREP "\bpublishre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublishre\b/publisher/g" *.tw
$GREP "\bpublissher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublissher\b/publisher/g" *.tw
$GREP "\bpubllisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpubllisher\b/publisher/g" *.tw
$GREP "\bpublsiher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublsiher\b/publisher/g" *.tw
$GREP "\bpublusher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublusher\b/publisher/g" *.tw
$GREP "\bpuchasing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpuchasing\b/purchasing/g" *.tw
$GREP "\bPucini\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPucini\b/Puccini/g" *.tw
$GREP "\bPuertorrican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPuertorrican\b/Puerto Rican/g" *.tw
$GREP "\bPuertorricans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPuertorricans\b/Puerto Ricans/g" *.tw
$GREP "\bpulisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpulisher\b/publisher/g" *.tw
$GREP "\bpumkin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpumkin\b/pumpkin/g" *.tw
$GREP "\bpuplisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpuplisher\b/publisher/g" *.tw
$GREP "\bpuritannical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpuritannical\b/puritanical/g" *.tw
$GREP "\bpurposedly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpurposedly\b/purposely/g" *.tw
$GREP "\bpurpotedly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpurpotedly\b/purportedly/g" *.tw
$GREP "\bpursuade\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpursuade\b/persuade/g" *.tw
$GREP "\bpursuaded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpursuaded\b/persuaded/g" *.tw
$GREP "\bpursuades\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpursuades\b/persuades/g" *.tw
$GREP "\bpususading\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpususading\b/persuading/g" *.tw
$GREP "\bputing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bputing\b/putting/g" *.tw
$GREP "\bpwoer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpwoer\b/power/g" *.tw
$GREP "\bpyscic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpyscic\b/psychic/g" *.tw
$GREP "\bquantaty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquantaty\b/quantity/g" *.tw
$GREP "\bquantitiy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquantitiy\b/quantity/g" *.tw
$GREP "\bquarantaine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquarantaine\b/quarantine/g" *.tw
$GREP "\bQueenland\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bQueenland\b/Queensland/g" *.tw
$GREP "\bquestonable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquestonable\b/questionable/g" *.tw
$GREP "\bquicklyu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquicklyu\b/quickly/g" *.tw
$GREP "\bquinessential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquinessential\b/quintessential/g" *.tw
$GREP "\bquitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquitted\b/quit/g" *.tw
$GREP "\bquizes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquizes\b/quizzes/g" *.tw
$GREP "\brabinnical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brabinnical\b/rabbinical/g" *.tw
$GREP "\bracaus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bracaus\b/raucous/g" *.tw
$GREP "\bradiactive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bradiactive\b/radioactive/g" *.tw
$GREP "\bradify\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bradify\b/ratify/g" *.tw
$GREP "\braelly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\braelly\b/really/g" *.tw
$GREP "\brarified\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brarified\b/rarefied/g" *.tw
$GREP "\breaccurring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breaccurring\b/recurring/g" *.tw
$GREP "\breacing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breacing\b/reaching/g" *.tw
$GREP "\breacll\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breacll\b/recall/g" *.tw
$GREP "\breadmition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breadmition\b/readmission/g" *.tw
$GREP "\brealitvely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brealitvely\b/relatively/g" *.tw
$GREP "\brealsitic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brealsitic\b/realistic/g" *.tw
$GREP "\brealtions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brealtions\b/relations/g" *.tw
$GREP "\brealy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brealy\b/really/g" *.tw
$GREP "\brealyl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brealyl\b/really/g" *.tw
$GREP "\breasearch\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breasearch\b/research/g" *.tw
$GREP "\brebiulding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brebiulding\b/rebuilding/g" *.tw
$GREP "\brebllions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brebllions\b/rebellions/g" *.tw
$GREP "\brebounce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brebounce\b/rebound/g" *.tw
$GREP "\breccomend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccomend\b/recommend/g" *.tw
$GREP "\breccomendations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccomendations\b/recommendations/g" *.tw
$GREP "\breccomended\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccomended\b/recommended/g" *.tw
$GREP "\breccomending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccomending\b/recommending/g" *.tw
$GREP "\breccommend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccommend\b/recommend/g" *.tw
$GREP "\breccommended\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccommended\b/recommended/g" *.tw
$GREP "\breccommending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccommending\b/recommending/g" *.tw
$GREP "\breccuring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccuring\b/recurring/g" *.tw
$GREP "\breceeded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breceeded\b/receded/g" *.tw
$GREP "\breceeding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breceeding\b/receding/g" *.tw
$GREP "\breceivedfrom\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breceivedfrom\b/received from/g" *.tw
$GREP "\brecepient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecepient\b/recipient/g" *.tw
$GREP "\brecepients\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecepients\b/recipients/g" *.tw
$GREP "\breceving\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breceving\b/receiving/g" *.tw
$GREP "\brechargable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brechargable\b/rechargeable/g" *.tw
$GREP "\breched\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breched\b/reached/g" *.tw
$GREP "\brecide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecide\b/reside/g" *.tw
$GREP "\brecided\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecided\b/resided/g" *.tw
$GREP "\brecident\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecident\b/resident/g" *.tw
$GREP "\brecidents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecidents\b/residents/g" *.tw
$GREP "\breciding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breciding\b/residing/g" *.tw
$GREP "\breciepents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breciepents\b/recipients/g" *.tw
$GREP "\breciept\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breciept\b/receipt/g" *.tw
$GREP "\brecieve\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecieve\b/receive/g" *.tw
$GREP "\brecieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecieved\b/received/g" *.tw
$GREP "\breciever\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breciever\b/receiver/g" *.tw
$GREP "\brecievers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecievers\b/receivers/g" *.tw
$GREP "\brecieves\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecieves\b/receives/g" *.tw
$GREP "\brecieving\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecieving\b/receiving/g" *.tw
$GREP "\brecipiant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecipiant\b/recipient/g" *.tw
$GREP "\brecipiants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecipiants\b/recipients/g" *.tw
$GREP "\brecived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecived\b/received/g" *.tw
$GREP "\brecivership\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecivership\b/receivership/g" *.tw
$GREP "\brecogise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecogise\b/recognise/g" *.tw
$GREP "\brecogize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecogize\b/recognize/g" *.tw
$GREP "\brecomend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecomend\b/recommend/g" *.tw
$GREP "\brecomended\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecomended\b/recommended/g" *.tw
$GREP "\brecomending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecomending\b/recommending/g" *.tw
$GREP "\brecomends\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecomends\b/recommends/g" *.tw
$GREP "\brecommedations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecommedations\b/recommendations/g" *.tw
$GREP "\brecompence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecompence\b/recompense/g" *.tw
$GREP "\breconaissance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breconaissance\b/reconnaissance/g" *.tw
$GREP "\breconcilation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breconcilation\b/reconciliation/g" *.tw
$GREP "\breconized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breconized\b/recognized/g" *.tw
$GREP "\breconnaisance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breconnaisance\b/reconnaissance/g" *.tw
$GREP "\breconnaissence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breconnaissence\b/reconnaissance/g" *.tw
$GREP "\brecontructed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecontructed\b/reconstructed/g" *.tw
$GREP "\brecordproducer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecordproducer\b/record producer/g" *.tw
$GREP "\brecquired\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecquired\b/required/g" *.tw
$GREP "\brecrational\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecrational\b/recreational/g" *.tw
$GREP "\brecrod\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecrod\b/record/g" *.tw
$GREP "\brecuiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecuiting\b/recruiting/g" *.tw
$GREP "\brecuring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecuring\b/recurring/g" *.tw
$GREP "\brecurrance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecurrance\b/recurrence/g" *.tw
$GREP "\brediculous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brediculous\b/ridiculous/g" *.tw
$GREP "\breedeming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breedeming\b/redeeming/g" *.tw
$GREP "\breenforced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breenforced\b/reinforced/g" *.tw
$GREP "\brefect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefect\b/reflect/g" *.tw
$GREP "\brefedendum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefedendum\b/referendum/g" *.tw
$GREP "\breferal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferal\b/referral/g" *.tw
$GREP "\breferece\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferece\b/reference/g" *.tw
$GREP "\brefereces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefereces\b/references/g" *.tw
$GREP "\brefered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefered\b/referred/g" *.tw
$GREP "\breferemce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferemce\b/reference/g" *.tw
$GREP "\breferemces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferemces\b/references/g" *.tw
$GREP "\breferencs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferencs\b/references/g" *.tw
$GREP "\breferenece\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferenece\b/reference/g" *.tw
$GREP "\brefereneced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefereneced\b/referenced/g" *.tw
$GREP "\brefereneces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefereneces\b/references/g" *.tw
$GREP "\breferiang\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferiang\b/referring/g" *.tw
$GREP "\brefering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefering\b/referring/g" *.tw
$GREP "\brefernce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefernce\b/reference/g" *.tw
$GREP "\brefernce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefernce\b/references/g" *.tw
$GREP "\brefernces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefernces\b/references/g" *.tw
$GREP "\breferrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferrence\b/reference/g" *.tw
$GREP "\breferrences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferrences\b/references/g" *.tw
$GREP "\breferrs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferrs\b/refers/g" *.tw
$GREP "\breffered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breffered\b/referred/g" *.tw
$GREP "\brefference\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefference\b/reference/g" *.tw
$GREP "\breffering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breffering\b/referring/g" *.tw
$GREP "\brefrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefrence\b/reference/g" *.tw
$GREP "\brefrences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefrences\b/references/g" *.tw
$GREP "\brefrers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefrers\b/refers/g" *.tw
$GREP "\brefridgeration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefridgeration\b/refrigeration/g" *.tw
$GREP "\brefridgerator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefridgerator\b/refrigerator/g" *.tw
$GREP "\brefromist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefromist\b/reformist/g" *.tw
$GREP "\brefusla\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefusla\b/refusal/g" *.tw
$GREP "\bregardes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bregardes\b/regards/g" *.tw
$GREP "\bregluar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bregluar\b/regular/g" *.tw
$GREP "\breguarly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breguarly\b/regularly/g" *.tw
$GREP "\bregulaion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bregulaion\b/regulation/g" *.tw
$GREP "\bregulaotrs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bregulaotrs\b/regulators/g" *.tw
$GREP "\bregularily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bregularily\b/regularly/g" *.tw
$GREP "\brehersal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brehersal\b/rehearsal/g" *.tw
$GREP "\breicarnation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breicarnation\b/reincarnation/g" *.tw
$GREP "\breigining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breigining\b/reigning/g" *.tw
$GREP "\breknown\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breknown\b/renown/g" *.tw
$GREP "\breknowned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breknowned\b/renowned/g" *.tw
$GREP "\brela\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brela\b/real/g" *.tw
$GREP "\brelaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelaly\b/really/g" *.tw
$GREP "\brelatiopnship\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelatiopnship\b/relationship/g" *.tw
$GREP "\brelativly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelativly\b/relatively/g" *.tw
$GREP "\brelected\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelected\b/reelected/g" *.tw
$GREP "\breleive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breleive\b/relieve/g" *.tw
$GREP "\breleived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breleived\b/relieved/g" *.tw
$GREP "\breleiver\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breleiver\b/reliever/g" *.tw
$GREP "\breleses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breleses\b/releases/g" *.tw
$GREP "\brelevence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelevence\b/relevance/g" *.tw
$GREP "\brelevent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelevent\b/relevant/g" *.tw
$GREP "\breliablity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breliablity\b/reliability/g" *.tw
$GREP "\brelient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelient\b/reliant/g" *.tw
$GREP "\breligeous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breligeous\b/religious/g" *.tw
$GREP "\breligous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breligous\b/religious/g" *.tw
$GREP "\breligously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breligously\b/religiously/g" *.tw
$GREP "\brelinqushment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelinqushment\b/relinquishment/g" *.tw
$GREP "\brelitavely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelitavely\b/relatively/g" *.tw
$GREP "\brelpacement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelpacement\b/replacement/g" *.tw
$GREP "\bremaing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bremaing\b/remaining/g" *.tw
$GREP "\bremeber\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bremeber\b/remember/g" *.tw
$GREP "\brememberable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brememberable\b/memorable/g" *.tw
$GREP "\brememberance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brememberance\b/remembrance/g" *.tw
$GREP "\bremembrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bremembrence\b/remembrance/g" *.tw
$GREP "\bremenant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bremenant\b/remnant/g" *.tw
$GREP "\bremenicent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bremenicent\b/reminiscent/g" *.tw
$GREP "\breminent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breminent\b/remnant/g" *.tw
$GREP "\breminescent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breminescent\b/reminiscent/g" *.tw
$GREP "\breminscent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breminscent\b/reminiscent/g" *.tw
$GREP "\breminsicent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breminsicent\b/reminiscent/g" *.tw
$GREP "\brendevous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brendevous\b/rendezvous/g" *.tw
$GREP "\brendezous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brendezous\b/rendezvous/g" *.tw
$GREP "\brenedered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brenedered\b/rende/g" *.tw
$GREP "\brenewl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brenewl\b/renewal/g" *.tw
$GREP "\brennovate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brennovate\b/renovate/g" *.tw
$GREP "\brennovated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brennovated\b/renovated/g" *.tw
$GREP "\brennovating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brennovating\b/renovating/g" *.tw
$GREP "\brennovation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brennovation\b/renovation/g" *.tw
$GREP "\brentors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brentors\b/renters/g" *.tw
$GREP "\breoccurrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breoccurrence\b/recurrence/g" *.tw
$GREP "\breorganision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breorganision\b/reorganisation/g" *.tw
$GREP "\brepblic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepblic\b/republic/g" *.tw
$GREP "\brepblican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepblican\b/republican/g" *.tw
$GREP "\brepblicans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepblicans\b/republicans/g" *.tw
$GREP "\brepblics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepblics\b/republics/g" *.tw
$GREP "\brepectively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepectively\b/respectively/g" *.tw
$GREP "\brepeition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepeition\b/repetition/g" *.tw
$GREP "\brepentence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepentence\b/repentance/g" *.tw
$GREP "\brepentent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepentent\b/repentant/g" *.tw
$GREP "\brepeteadly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepeteadly\b/repeatedly/g" *.tw
$GREP "\brepetion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepetion\b/repetition/g" *.tw
$GREP "\brepid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepid\b/rapid/g" *.tw
$GREP "\breponse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breponse\b/response/g" *.tw
$GREP "\breponsible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breponsible\b/responsible/g" *.tw
$GREP "\breportadly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breportadly\b/reportedly/g" *.tw
$GREP "\brepresantative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepresantative\b/representative/g" *.tw
$GREP "\brepresentive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepresentive\b/representative/g" *.tw
$GREP "\brepresentives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepresentives\b/representatives/g" *.tw
$GREP "\breproducable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breproducable\b/reproducible/g" *.tw
$GREP "\breprtoire\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breprtoire\b/repertoire/g" *.tw
$GREP "\brepsectively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepsectively\b/respectively/g" *.tw
$GREP "\breptition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breptition\b/repetition/g" *.tw
$GREP "\brepubic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepubic\b/republic/g" *.tw
$GREP "\brepubican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepubican\b/republican/g" *.tw
$GREP "\brepubicans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepubicans\b/republicans/g" *.tw
$GREP "\brepubics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepubics\b/republics/g" *.tw
$GREP "\brepubli\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepubli\b/republic/g" *.tw
$GREP "\brepublian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepublian\b/republican/g" *.tw
$GREP "\brepublians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepublians\b/republicans/g" *.tw
$GREP "\brepublis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepublis\b/republics/g" *.tw
$GREP "\brepulic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepulic\b/republic/g" *.tw
$GREP "\brepulican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepulican\b/republican/g" *.tw
$GREP "\brepulicans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepulicans\b/republicans/g" *.tw
$GREP "\brepulics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepulics\b/republics/g" *.tw
$GREP "\brequirment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brequirment\b/requirement/g" *.tw
$GREP "\brequred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brequred\b/required/g" *.tw
$GREP "\bresaurant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresaurant\b/restaurant/g" *.tw
$GREP "\bresembelance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresembelance\b/resemblance/g" *.tw
$GREP "\bresembes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresembes\b/resembles/g" *.tw
$GREP "\bresemblence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresemblence\b/resemblance/g" *.tw
$GREP "\bresevoir\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresevoir\b/reservoir/g" *.tw
$GREP "\bresidental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresidental\b/residential/g" *.tw
$GREP "\bresignement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresignement\b/resignment/g" *.tw
$GREP "\bresistable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresistable\b/resistible/g" *.tw
$GREP "\bresistence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresistence\b/resistance/g" *.tw
$GREP "\bresistent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresistent\b/resistant/g" *.tw
$GREP "\brespectivly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brespectivly\b/respectively/g" *.tw
$GREP "\bresponce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponce\b/response/g" *.tw
$GREP "\bresponibilities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponibilities\b/responsibilities/g" *.tw
$GREP "\bresponisble\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponisble\b/responsible/g" *.tw
$GREP "\bresponnsibilty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponnsibilty\b/responsibility/g" *.tw
$GREP "\bresponsability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponsability\b/responsibility/g" *.tw
$GREP "\bresponsibile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponsibile\b/responsible/g" *.tw
$GREP "\bresponsibilites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponsibilites\b/responsibilities/g" *.tw
$GREP "\bresponsiblities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponsiblities\b/responsibilities/g" *.tw
$GREP "\bresponsiblity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponsiblity\b/responsibility/g" *.tw
$GREP "\bressemblance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressemblance\b/resemblance/g" *.tw
$GREP "\bressemble\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressemble\b/resemble/g" *.tw
$GREP "\bressembled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressembled\b/resembled/g" *.tw
$GREP "\bressemblence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressemblence\b/resemblance/g" *.tw
$GREP "\bressembling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressembling\b/resembling/g" *.tw
$GREP "\bresssurecting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresssurecting\b/resurrecting/g" *.tw
$GREP "\bressurect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressurect\b/resurrect/g" *.tw
$GREP "\bressurected\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressurected\b/resurrected/g" *.tw
$GREP "\bressurection\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressurection\b/resurrection/g" *.tw
$GREP "\bressurrection\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressurrection\b/resurrection/g" *.tw
$GREP "\brestarant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestarant\b/restaurant/g" *.tw
$GREP "\brestarants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestarants\b/restaurants/g" *.tw
$GREP "\brestaraunt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestaraunt\b/restaurant/g" *.tw
$GREP "\brestaraunteur\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestaraunteur\b/restaurateur/g" *.tw
$GREP "\brestaraunteurs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestaraunteurs\b/restaurateurs/g" *.tw
$GREP "\brestaraunts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestaraunts\b/restaurants/g" *.tw
$GREP "\brestauranteurs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestauranteurs\b/restaurateurs/g" *.tw
$GREP "\brestauration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestauration\b/restoration/g" *.tw
$GREP "\brestauraunt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestauraunt\b/restaurant/g" *.tw
$GREP "\bresteraunt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresteraunt\b/restaurant/g" *.tw
$GREP "\bresteraunts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresteraunts\b/restaurants/g" *.tw
$GREP "\bresticted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresticted\b/restricted/g" *.tw
$GREP "\bresturant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresturant\b/restaurant/g" *.tw
$GREP "\bresturants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresturants\b/restaurants/g" *.tw
$GREP "\bresturaunt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresturaunt\b/restaurant/g" *.tw
$GREP "\bresturaunts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresturaunts\b/restaurants/g" *.tw
$GREP "\bresurecting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresurecting\b/resurrecting/g" *.tw
$GREP "\bretalitated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bretalitated\b/retaliated/g" *.tw
$GREP "\bretalitation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bretalitation\b/retaliation/g" *.tw
$GREP "\bretreive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bretreive\b/retrieve/g" *.tw
$GREP "\breturnd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breturnd\b/returned/g" *.tw
$GREP "\brevaluated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brevaluated\b/reevaluated/g" *.tw
$GREP "\breveiw\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breveiw\b/review/g" *.tw
$GREP "\breveral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breveral\b/reversal/g" *.tw
$GREP "\breversable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breversable\b/reversible/g" *.tw
$GREP "\brevolutionar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brevolutionar\b/revolutionary/g" *.tw
$GREP "\brewitten\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brewitten\b/rewritten/g" *.tw
$GREP "\brewriet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brewriet\b/rewrite/g" *.tw
$GREP "\brference\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brference\b/reference/g" *.tw
$GREP "\brferences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brferences\b/references/g" *.tw
$GREP "\brhymme\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brhymme\b/rhyme/g" *.tw
$GREP "\brhythem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brhythem\b/rhythm/g" *.tw
$GREP "\brhythim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brhythim\b/rhythm/g" *.tw
$GREP "\brhytmic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brhytmic\b/rhythmic/g" *.tw
$GREP "\brigourous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brigourous\b/rigorous/g" *.tw
$GREP "\brininging\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brininging\b/ringing/g" *.tw
$GREP "\bRockerfeller\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bRockerfeller\b/Rockefeller/g" *.tw
$GREP "\brococco\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brococco\b/rococo/g" *.tw
$GREP "\brocord\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brocord\b/record/g" *.tw
$GREP "\broomate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\broomate\b/roommate/g" *.tw
$GREP "\brougly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brougly\b/roughly/g" *.tw
$GREP "\brucuperate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brucuperate\b/recuperate/g" *.tw
$GREP "\brudimentatry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brudimentatry\b/rudimentary/g" *.tw
$GREP "\brulle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brulle\b/rule/g" *.tw
$GREP "\bruning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bruning\b/running/g" *.tw
$GREP "\brunnung\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brunnung\b/running/g" *.tw
$GREP "\brussina\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brussina\b/Russian/g" *.tw
$GREP "\bRussion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bRussion\b/Russian/g" *.tw
$GREP "\brwite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brwite\b/write/g" *.tw
$GREP "\brythem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brythem\b/rhythm/g" *.tw
$GREP "\brythim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brythim\b/rhythm/g" *.tw
$GREP "\brythm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brythm\b/rhythm/g" *.tw
$GREP "\brythmic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brythmic\b/rhythmic/g" *.tw
$GREP "\brythyms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brythyms\b/rhythms/g" *.tw
$GREP "\bsacrafice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsacrafice\b/sacrifice/g" *.tw
$GREP "\bsacreligious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsacreligious\b/sacrilegious/g" *.tw
$GREP "\bSacremento\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSacremento\b/Sacramento/g" *.tw
$GREP "\bsacrifical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsacrifical\b/sacrificial/g" *.tw
$GREP "\bsaftey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsaftey\b/safety/g" *.tw
$GREP "\bsafty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsafty\b/safety/g" *.tw
$GREP "\bsalery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsalery\b/salary/g" *.tw
$GREP "\bsanctionning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsanctionning\b/sanctioning/g" *.tw
$GREP "\bsandwhich\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsandwhich\b/sandwich/g" *.tw
$GREP "\bSanhedrim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSanhedrim\b/Sanhedrin/g" *.tw
$GREP "\bsantioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsantioned\b/sanctioned/g" *.tw
$GREP "\bsargant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsargant\b/sergeant/g" *.tw
$GREP "\bsargeant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsargeant\b/sergeant/g" *.tw
$GREP "\bsatelite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatelite\b/satellite/g" *.tw
$GREP "\bsatelites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatelites\b/satellites/g" *.tw
$GREP "\bSaterday\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSaterday\b/Saturday/g" *.tw
$GREP "\bSaterdays\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSaterdays\b/Saturdays/g" *.tw
$GREP "\bsatisfactority\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatisfactority\b/satisfactorily/g" *.tw
$GREP "\bsatric\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatric\b/satiric/g" *.tw
$GREP "\bsatrical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatrical\b/satirical/g" *.tw
$GREP "\bsatrically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatrically\b/satirically/g" *.tw
$GREP "\bsattelite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsattelite\b/satellite/g" *.tw
$GREP "\bsattelites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsattelites\b/satellites/g" *.tw
$GREP "\bsaught\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsaught\b/sought/g" *.tw
$GREP "\bsaveing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsaveing\b/saving/g" *.tw
$GREP "\bsaxaphone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsaxaphone\b/saxophone/g" *.tw
$GREP "\bscaleable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscaleable\b/scalable/g" *.tw
$GREP "\bscandanavia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscandanavia\b/Scandinavia/g" *.tw
$GREP "\bscaricity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscaricity\b/scarcity/g" *.tw
$GREP "\bscavanged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscavanged\b/scavenged/g" *.tw
$GREP "\bschedual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bschedual\b/schedule/g" *.tw
$GREP "\bscholarhip\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscholarhip\b/scholarship/g" *.tw
$GREP "\bscientfic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscientfic\b/scientific/g" *.tw
$GREP "\bscientifc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscientifc\b/scientific/g" *.tw
$GREP "\bscientis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscientis\b/scientist/g" *.tw
$GREP "\bscince\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscince\b/science/g" *.tw
$GREP "\bscinece\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscinece\b/science/g" *.tw
$GREP "\bscirpt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscirpt\b/script/g" *.tw
$GREP "\bscoll\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscoll\b/scroll/g" *.tw
$GREP "\bscreenwrighter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscreenwrighter\b/screenwriter/g" *.tw
$GREP "\bscrutinity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscrutinity\b/scrutiny/g" *.tw
$GREP "\bscuptures\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscuptures\b/sculptures/g" *.tw
$GREP "\bseach\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseach\b/search/g" *.tw
$GREP "\bseached\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseached\b/searched/g" *.tw
$GREP "\bseaches\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseaches\b/searches/g" *.tw
$GREP "\bsecratary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsecratary\b/secretary/g" *.tw
$GREP "\bsecretery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsecretery\b/secretary/g" *.tw
$GREP "\bsedereal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsedereal\b/sidereal/g" *.tw
$GREP "\bseeked\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseeked\b/sought/g" *.tw
$GREP "\bsegementation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsegementation\b/segmentation/g" *.tw
$GREP "\bseguoys\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseguoys\b/segues/g" *.tw
$GREP "\bseige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseige\b/siege/g" *.tw
$GREP "\bseing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseing\b/seeing/g" *.tw
$GREP "\bseinor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseinor\b/senior/g" *.tw
$GREP "\bseldomly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseldomly\b/seldom/g" *.tw
$GREP "\bsenarios\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsenarios\b/scenarios/g" *.tw
$GREP "\bsenstive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsenstive\b/sensitive/g" *.tw
$GREP "\bsensure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsensure\b/censure/g" *.tw
$GREP "\bseperate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperate\b/separate/g" *.tw
$GREP "\bseperated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperated\b/separated/g" *.tw
$GREP "\bseperately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperately\b/separately/g" *.tw
$GREP "\bseperates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperates\b/separates/g" *.tw
$GREP "\bseperating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperating\b/separating/g" *.tw
$GREP "\bseperation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperation\b/separation/g" *.tw
$GREP "\bseperatism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperatism\b/separatism/g" *.tw
$GREP "\bseperatist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperatist\b/separatist/g" *.tw
$GREP "\bsepina\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsepina\b/subpoena/g" *.tw
$GREP "\bsergent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsergent\b/sergeant/g" *.tw
$GREP "\bsettelement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsettelement\b/settlement/g" *.tw
$GREP "\bsettlment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsettlment\b/settlement/g" *.tw
$GREP "\bsevereal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsevereal\b/several/g" *.tw
$GREP "\bseverley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseverley\b/severely/g" *.tw
$GREP "\bseverly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseverly\b/severely/g" *.tw
$GREP "\bsevice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsevice\b/service/g" *.tw
$GREP "\bshadasloo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshadasloo\b/shadaloo/g" *.tw
$GREP "\bshaddow\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshaddow\b/shadow/g" *.tw
$GREP "\bshadoloo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshadoloo\b/shadaloo/g" *.tw
$GREP "\bsheild\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsheild\b/shield/g" *.tw
$GREP "\bsherif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsherif\b/sheriff/g" *.tw
$GREP "\bshineing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshineing\b/shining/g" *.tw
$GREP "\bshiped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshiped\b/shipped/g" *.tw
$GREP "\bshiping\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshiping\b/shipping/g" *.tw
$GREP "\bshopkeeepers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshopkeeepers\b/shopkeepers/g" *.tw
$GREP "\bshorly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshorly\b/shortly/g" *.tw
$GREP "\bshortwhile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshortwhile\b/short while/g" *.tw
$GREP "\bshoudl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshoudl\b/should/g" *.tw
$GREP "\bshouldnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshouldnt\b/should not/g" *.tw
$GREP "\bshreak\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshreak\b/shriek/g" *.tw
$GREP "\bshrinked\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshrinked\b/shrunk/g" *.tw
$GREP "\bsicne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsicne\b/since/g" *.tw
$GREP "\bsideral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsideral\b/sidereal/g" *.tw
$GREP "\bsiezure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsiezure\b/seizure/g" *.tw
$GREP "\bsiezures\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsiezures\b/seizures/g" *.tw
$GREP "\bsiginificant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsiginificant\b/significant/g" *.tw
$GREP "\bsignficant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignficant\b/significant/g" *.tw
$GREP "\bsignficiant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignficiant\b/significant/g" *.tw
$GREP "\bsignfies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignfies\b/signifies/g" *.tw
$GREP "\bsignifantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignifantly\b/significantly/g" *.tw
$GREP "\bsignificently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignificently\b/significantly/g" *.tw
$GREP "\bsignifigant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignifigant\b/significant/g" *.tw
$GREP "\bsignifigantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignifigantly\b/significantly/g" *.tw
$GREP "\bsignitories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignitories\b/signatories/g" *.tw
$GREP "\bsignitory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignitory\b/signatory/g" *.tw
$GREP "\bsimilarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimilarily\b/similarly/g" *.tw
$GREP "\bsimiliar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimiliar\b/similar/g" *.tw
$GREP "\bsimiliarity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimiliarity\b/similarity/g" *.tw
$GREP "\bsimiliarly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimiliarly\b/similarly/g" *.tw
$GREP "\bsimmilar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimmilar\b/similar/g" *.tw
$GREP "\bsimpley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimpley\b/simply/g" *.tw
$GREP "\bsimplier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimplier\b/simpler/g" *.tw
$GREP "\bsimultanous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimultanous\b/simultaneous/g" *.tw
$GREP "\bsimultanously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimultanously\b/simultaneously/g" *.tw
$GREP "\bsincerley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsincerley\b/sincerely/g" *.tw
$GREP "\bsingsog\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsingsog\b/singsong/g" *.tw
$GREP "\bSionist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSionist\b/Zionist/g" *.tw
$GREP "\bSionists\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSionists\b/Zionists/g" *.tw
$GREP "\bSixtin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSixtin\b/Sistine/g" *.tw
$GREP "\bSkagerak\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSkagerak\b/Skagerrak/g" *.tw
$GREP "\bskateing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bskateing\b/skating/g" *.tw
$GREP "\bslaugterhouses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bslaugterhouses\b/slaughterhouses/g" *.tw
$GREP "\bslighly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bslighly\b/slightly/g" *.tw
$GREP "\bslippy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bslippy\b/slippery/g" *.tw
$GREP "\bslowy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bslowy\b/slowly/g" *.tw
$GREP "\bsmae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsmae\b/same/g" *.tw
$GREP "\bsmealting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsmealting\b/smelting/g" *.tw
$GREP "\bsmoe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsmoe\b/some/g" *.tw
$GREP "\bsneeks\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsneeks\b/sneaks/g" *.tw
$GREP "\bsnese\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsnese\b/sneeze/g" *.tw
$GREP "\bsocalism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsocalism\b/socialism/g" *.tw
$GREP "\bsocities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsocities\b/societies/g" *.tw
$GREP "\bsoem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoem\b/some/g" *.tw
$GREP "\bsofware\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsofware\b/software/g" *.tw
$GREP "\bsohw\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsohw\b/show/g" *.tw
$GREP "\bsoilders\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoilders\b/soldiers/g" *.tw
$GREP "\bsolatary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsolatary\b/solitary/g" *.tw
$GREP "\bsoley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoley\b/solely/g" *.tw
$GREP "\bsoliders\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoliders\b/soldiers/g" *.tw
$GREP "\bsoliliquy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoliliquy\b/soliloquy/g" *.tw
$GREP "\bsoluable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoluable\b/soluble/g" *.tw
$GREP "\bsomene\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsomene\b/someone/g" *.tw
$GREP "\bsomtimes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsomtimes\b/sometimes/g" *.tw
$GREP "\bsomwhere\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsomwhere\b/somewhere/g" *.tw
$GREP "\bsophicated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsophicated\b/sophisticated/g" *.tw
$GREP "\bsophmore\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsophmore\b/sophomore/g" *.tw
$GREP "\bsorceror\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsorceror\b/sorcerer/g" *.tw
$GREP "\bsorrounding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsorrounding\b/surrounding/g" *.tw
$GREP "\bsotry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsotry\b/story/g" *.tw
$GREP "\bsoudn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoudn\b/sound/g" *.tw
$GREP "\bsoudns\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoudns\b/sounds/g" *.tw
$GREP "\bsountrack\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsountrack\b/soundtrack/g" *.tw
$GREP "\bsourth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsourth\b/south/g" *.tw
$GREP "\bsourthern\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsourthern\b/southern/g" *.tw
$GREP "\bsouvenier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsouvenier\b/souvenir/g" *.tw
$GREP "\bsouveniers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsouveniers\b/souvenirs/g" *.tw
$GREP "\bsoveits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoveits\b/soviets/g" *.tw
$GREP "\bsovereignity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsovereignity\b/sovereignty/g" *.tw
$GREP "\bsoverign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoverign\b/sovereign/g" *.tw
$GREP "\bsoverignity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoverignity\b/sovereignty/g" *.tw
$GREP "\bsoverignty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoverignty\b/sovereignty/g" *.tw
$GREP "\bspainish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspainish\b/Spanish/g" *.tw
$GREP "\bspeach\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspeach\b/speech/g" *.tw
$GREP "\bspecfic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspecfic\b/specific/g" *.tw
$GREP "\bspecifiying\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspecifiying\b/specifying/g" *.tw
$GREP "\bspeciman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspeciman\b/specimen/g" *.tw
$GREP "\bspectauclar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspectauclar\b/spectacular/g" *.tw
$GREP "\bspectaulars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspectaulars\b/spectaculars/g" *.tw
$GREP "\bspectum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspectum\b/spectrum/g" *.tw
$GREP "\bspeices\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspeices\b/species/g" *.tw
$GREP "\bspendour\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspendour\b/splendour/g" *.tw
$GREP "\bspermatozoan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspermatozoan\b/spermatozoon/g" *.tw
$GREP "\bspoace\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspoace\b/space/g" *.tw
$GREP "\bsponser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsponser\b/sponsor/g" *.tw
$GREP "\bsponsered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsponsered\b/sponsored/g" *.tw
$GREP "\bspontanous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspontanous\b/spontaneous/g" *.tw
$GREP "\bsponzored\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsponzored\b/sponsored/g" *.tw
$GREP "\bspoonfulls\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspoonfulls\b/spoonfuls/g" *.tw
$GREP "\bsppeches\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsppeches\b/speeches/g" *.tw
$GREP "\bspreaded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspreaded\b/spread/g" *.tw
$GREP "\bsprech\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsprech\b/speech/g" *.tw
$GREP "\bspred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspred\b/spread/g" *.tw
$GREP "\bspriritual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspriritual\b/spiritual/g" *.tw
$GREP "\bspritual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspritual\b/spiritual/g" *.tw
$GREP "\bsqaure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsqaure\b/square/g" *.tw
$GREP "\bstablility\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstablility\b/stability/g" *.tw
$GREP "\bstainlees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstainlees\b/stainless/g" *.tw
$GREP "\bstaion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstaion\b/station/g" *.tw
$GREP "\bstandars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstandars\b/standards/g" *.tw
$GREP "\bstange\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstange\b/strange/g" *.tw
$GREP "\bstartegic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstartegic\b/strategic/g" *.tw
$GREP "\bstartegies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstartegies\b/strategies/g" *.tw
$GREP "\bstartegy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstartegy\b/strategy/g" *.tw
$GREP "\bstateman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstateman\b/statesman/g" *.tw
$GREP "\bstatememts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstatememts\b/statements/g" *.tw
$GREP "\bstatment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstatment\b/statement/g" *.tw
$GREP "\bsteriods\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsteriods\b/steroids/g" *.tw
$GREP "\bsterotypes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsterotypes\b/stereotypes/g" *.tw
$GREP "\bstilus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstilus\b/stylus/g" *.tw
$GREP "\bstingent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstingent\b/stringent/g" *.tw
$GREP "\bstiring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstiring\b/stirring/g" *.tw
$GREP "\bstirrs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstirrs\b/stirs/g" *.tw
$GREP "\bstlye\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstlye\b/style/g" *.tw
$GREP "\bstomache\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstomache\b/stomach/g" *.tw
$GREP "\bstong\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstong\b/strong/g" *.tw
$GREP "\bstopry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstopry\b/story/g" *.tw
$GREP "\bstoreis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstoreis\b/stories/g" *.tw
$GREP "\bstorise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstorise\b/stories/g" *.tw
$GREP "\bstornegst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstornegst\b/strongest/g" *.tw
$GREP "\bstoyr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstoyr\b/story/g" *.tw
$GREP "\bstpo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstpo\b/stop/g" *.tw
$GREP "\bstradegies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstradegies\b/strategies/g" *.tw
$GREP "\bstradegy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstradegy\b/strategy/g" *.tw
$GREP "\bstratagically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstratagically\b/strategically/g" *.tw
$GREP "\bstreemlining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstreemlining\b/streamlining/g" *.tw
$GREP "\bstregth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstregth\b/strength/g" *.tw
$GREP "\bstrenghen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghen\b/strengthen/g" *.tw
$GREP "\bstrenghened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghened\b/strengthened/g" *.tw
$GREP "\bstrenghening\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghening\b/strengthening/g" *.tw
$GREP "\bstrenght\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenght\b/strength/g" *.tw
$GREP "\bstrenghten\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghten\b/strengthen/g" *.tw
$GREP "\bstrenghtened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghtened\b/strengthened/g" *.tw
$GREP "\bstrenghtening\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghtening\b/strengthening/g" *.tw
$GREP "\bstrengtened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrengtened\b/strengthened/g" *.tw
$GREP "\bstrenous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenous\b/strenuous/g" *.tw
$GREP "\bstrictist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrictist\b/strictest/g" *.tw
$GREP "\bstrikely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrikely\b/strikingly/g" *.tw
$GREP "\bstrnad\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrnad\b/strand/g" *.tw
$GREP "\bstructual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstructual\b/structural/g" *.tw
$GREP "\bstubborness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstubborness\b/stubbornness/g" *.tw
$GREP "\bstucture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstucture\b/structure/g" *.tw
$GREP "\bstuctured\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstuctured\b/structured/g" *.tw
$GREP "\bstuddy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstuddy\b/study/g" *.tw
$GREP "\bstuding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstuding\b/studying/g" *.tw
$GREP "\bstuggling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstuggling\b/struggling/g" *.tw
$GREP "\bsturcture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsturcture\b/structure/g" *.tw
$GREP "\bsubcatagories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubcatagories\b/subcategories/g" *.tw
$GREP "\bsubcatagory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubcatagory\b/subcategory/g" *.tw
$GREP "\bsubconsiously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubconsiously\b/subconsciously/g" *.tw
$GREP "\bsubjudgation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubjudgation\b/subjugation/g" *.tw
$GREP "\bsubmachne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubmachne\b/submachine/g" *.tw
$GREP "\bsubpecies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubpecies\b/subspecies/g" *.tw
$GREP "\bsubsidary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubsidary\b/subsidiary/g" *.tw
$GREP "\bsubsiduary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubsiduary\b/subsidiary/g" *.tw
$GREP "\bsubsquent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubsquent\b/subsequent/g" *.tw
$GREP "\bsubsquently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubsquently\b/subsequently/g" *.tw
$GREP "\bsubstace\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstace\b/substance/g" *.tw
$GREP "\bsubstancial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstancial\b/substantial/g" *.tw
$GREP "\bsubstatial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstatial\b/substantial/g" *.tw
$GREP "\bsubstituded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstituded\b/substituted/g" *.tw
$GREP "\bsubstract\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstract\b/subtract/g" *.tw
$GREP "\bsubstracted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstracted\b/subtracted/g" *.tw
$GREP "\bsubstracting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstracting\b/subtracting/g" *.tw
$GREP "\bsubstraction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstraction\b/subtraction/g" *.tw
$GREP "\bsubstracts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstracts\b/subtracts/g" *.tw
$GREP "\bsubtances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubtances\b/substances/g" *.tw
$GREP "\bsubterranian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubterranian\b/subterranean/g" *.tw
$GREP "\bsuburburban\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuburburban\b/suburban/g" *.tw
$GREP "\bsuccceeded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccceeded\b/succeeded/g" *.tw
$GREP "\bsucccesses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucccesses\b/successes/g" *.tw
$GREP "\bsuccedded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccedded\b/succeeded/g" *.tw
$GREP "\bsucceded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucceded\b/succeeded/g" *.tw
$GREP "\bsucceds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucceds\b/succeeds/g" *.tw
$GREP "\bsuccesful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccesful\b/successful/g" *.tw
$GREP "\bsuccesfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccesfully\b/successfully/g" *.tw
$GREP "\bsuccesfuly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccesfuly\b/successfully/g" *.tw
$GREP "\bsuccesion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccesion\b/succession/g" *.tw
$GREP "\bsuccesive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccesive\b/successive/g" *.tw
$GREP "\bsuccessfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccessfull\b/successful/g" *.tw
$GREP "\bsuccessully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccessully\b/successfully/g" *.tw
$GREP "\bsuccsess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccsess\b/success/g" *.tw
$GREP "\bsuccsessfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccsessfull\b/successful/g" *.tw
$GREP "\bsuceed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuceed\b/succeed/g" *.tw
$GREP "\bsuceeded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuceeded\b/succeeded/g" *.tw
$GREP "\bsuceeding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuceeding\b/succeeding/g" *.tw
$GREP "\bsuceeds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuceeds\b/succeeds/g" *.tw
$GREP "\bsucesful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucesful\b/successful/g" *.tw
$GREP "\bsucesfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucesfully\b/successfully/g" *.tw
$GREP "\bsucesfuly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucesfuly\b/successfully/g" *.tw
$GREP "\bsucesion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucesion\b/succession/g" *.tw
$GREP "\bsucess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucess\b/success/g" *.tw
$GREP "\bsucesses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucesses\b/successes/g" *.tw
$GREP "\bsucessful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessful\b/successful/g" *.tw
$GREP "\bsucessfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessfull\b/successful/g" *.tw
$GREP "\bsucessfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessfully\b/successfully/g" *.tw
$GREP "\bsucessfuly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessfuly\b/successfully/g" *.tw
$GREP "\bsucession\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucession\b/succession/g" *.tw
$GREP "\bsucessive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessive\b/successive/g" *.tw
$GREP "\bsucessor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessor\b/successor/g" *.tw
$GREP "\bsucessot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessot\b/successor/g" *.tw
$GREP "\bsucide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucide\b/suicide/g" *.tw
$GREP "\bsucidial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucidial\b/suicidal/g" *.tw
$GREP "\bsudent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsudent\b/student/g" *.tw
$GREP "\bsudents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsudents\b/students/g" *.tw
$GREP "\bsufferage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsufferage\b/suffrage/g" *.tw
$GREP "\bsufferred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsufferred\b/suffered/g" *.tw
$GREP "\bsufferring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsufferring\b/suffering/g" *.tw
$GREP "\bsufficent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsufficent\b/sufficient/g" *.tw
$GREP "\bsufficently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsufficently\b/sufficiently/g" *.tw
$GREP "\bsumary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsumary\b/summary/g" *.tw
$GREP "\bsunglases\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsunglases\b/sunglasses/g" *.tw
$GREP "\bsuop\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuop\b/soup/g" *.tw
$GREP "\bsuperceeded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuperceeded\b/superseded/g" *.tw
$GREP "\bsuperintendant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuperintendant\b/superintendent/g" *.tw
$GREP "\bsuphisticated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuphisticated\b/sophisticated/g" *.tw
$GREP "\bsuplimented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuplimented\b/supplemented/g" *.tw
$GREP "\bsupose\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupose\b/suppose/g" *.tw
$GREP "\bsuposed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuposed\b/supposed/g" *.tw
$GREP "\bsuposedly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuposedly\b/supposedly/g" *.tw
$GREP "\bsuposes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuposes\b/supposes/g" *.tw
$GREP "\bsuposing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuposing\b/supposing/g" *.tw
$GREP "\bsupplamented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupplamented\b/supplemented/g" *.tw
$GREP "\bsuppliementing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuppliementing\b/supplementing/g" *.tw
$GREP "\bsuppoed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuppoed\b/supposed/g" *.tw
$GREP "\bsupposingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupposingly\b/supposedly/g" *.tw
$GREP "\bsuppy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuppy\b/supply/g" *.tw
$GREP "\bsuprassing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprassing\b/surpassing/g" *.tw
$GREP "\bsupress\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupress\b/suppress/g" *.tw
$GREP "\bsupressed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupressed\b/suppressed/g" *.tw
$GREP "\bsupresses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupresses\b/suppresses/g" *.tw
$GREP "\bsupressing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupressing\b/suppressing/g" *.tw
$GREP "\bsuprise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprise\b/surprise/g" *.tw
$GREP "\bsuprised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprised\b/surprised/g" *.tw
$GREP "\bsuprising\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprising\b/surprising/g" *.tw
$GREP "\bsuprisingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprisingly\b/surprisingly/g" *.tw
$GREP "\bsuprize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprize\b/surprise/g" *.tw
$GREP "\bsuprized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprized\b/surprised/g" *.tw
$GREP "\bsuprizing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprizing\b/surprising/g" *.tw
$GREP "\bsuprizingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprizingly\b/surprisingly/g" *.tw
$GREP "\bsurfce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurfce\b/surface/g" *.tw
$GREP "\bsuround\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuround\b/surround/g" *.tw
$GREP "\bsurounded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurounded\b/surrounded/g" *.tw
$GREP "\bsurounding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurounding\b/surrounding/g" *.tw
$GREP "\bsuroundings\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuroundings\b/surroundings/g" *.tw
$GREP "\bsurounds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurounds\b/surrounds/g" *.tw
$GREP "\bsurplanted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurplanted\b/supplanted/g" *.tw
$GREP "\bsurpress\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurpress\b/suppress/g" *.tw
$GREP "\bsurpressed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurpressed\b/suppressed/g" *.tw
$GREP "\bsurprize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurprize\b/surprise/g" *.tw
$GREP "\bsurprized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurprized\b/surprised/g" *.tw
$GREP "\bsurprizing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurprizing\b/surprising/g" *.tw
$GREP "\bsurprizingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurprizingly\b/surprisingly/g" *.tw
$GREP "\bsurrepetitious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurrepetitious\b/surreptitious/g" *.tw
$GREP "\bsurrepetitiously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurrepetitiously\b/surreptitiously/g" *.tw
$GREP "\bsurreptious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurreptious\b/surreptitious/g" *.tw
$GREP "\bsurreptiously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurreptiously\b/surreptitiously/g" *.tw
$GREP "\bsurronded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurronded\b/surrounded/g" *.tw
$GREP "\bsurrouded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurrouded\b/surrounded/g" *.tw
$GREP "\bsurrouding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurrouding\b/surrounding/g" *.tw
$GREP "\bsurrundering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurrundering\b/surrendering/g" *.tw
$GREP "\bsurveilence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurveilence\b/surveillance/g" *.tw
$GREP "\bsurveill\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurveill\b/surveil/g" *.tw
$GREP "\bsurveyer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurveyer\b/surveyor/g" *.tw
$GREP "\bsurviver\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurviver\b/survivor/g" *.tw
$GREP "\bsurvivers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurvivers\b/survivors/g" *.tw
$GREP "\bsurvivied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurvivied\b/survived/g" *.tw
$GREP "\bsuseptable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuseptable\b/susceptible/g" *.tw
$GREP "\bsuseptible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuseptible\b/susceptible/g" *.tw
$GREP "\bsuspention\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuspention\b/suspension/g" *.tw
$GREP "\bswaer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bswaer\b/swear/g" *.tw
$GREP "\bswaers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bswaers\b/swears/g" *.tw
$GREP "\bswepth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bswepth\b/swept/g" *.tw
$GREP "\bswiming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bswiming\b/swimming/g" *.tw
$GREP "\bsyas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsyas\b/says/g" *.tw
$GREP "\bsymetrical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymetrical\b/symmetrical/g" *.tw
$GREP "\bsymetrically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymetrically\b/symmetrically/g" *.tw
$GREP "\bsymetry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymetry\b/symmetry/g" *.tw
$GREP "\bsymettric\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymettric\b/symmetric/g" *.tw
$GREP "\bsymmetral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymmetral\b/symmetric/g" *.tw
$GREP "\bsymmetricaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymmetricaly\b/symmetrically/g" *.tw
$GREP "\bsynagouge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsynagouge\b/synagogue/g" *.tw
$GREP "\bsyncronization\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsyncronization\b/synchronization/g" *.tw
$GREP "\bsynonomous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsynonomous\b/synonymous/g" *.tw
$GREP "\bsynonymns\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsynonymns\b/synonyms/g" *.tw
$GREP "\bsynphony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsynphony\b/symphony/g" *.tw
$GREP "\bsyphyllis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsyphyllis\b/syphilis/g" *.tw
$GREP "\bsypmtoms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsypmtoms\b/symptoms/g" *.tw
$GREP "\bsyrap\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsyrap\b/syrup/g" *.tw
$GREP "\bsysmatically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsysmatically\b/systematically/g" *.tw
$GREP "\bsytem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsytem\b/system/g" *.tw
$GREP "\bsytle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsytle\b/style/g" *.tw
$GREP "\btabacco\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btabacco\b/tobacco/g" *.tw
$GREP "\btahn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btahn\b/than/g" *.tw
$GREP "\btaht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btaht\b/that/g" *.tw
$GREP "\btalekd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btalekd\b/talked/g" *.tw
$GREP "\btargetted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btargetted\b/targeted/g" *.tw
$GREP "\btargetting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btargetting\b/targeting/g" *.tw
$GREP "\btast\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btast\b/taste/g" *.tw
$GREP "\btath\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btath\b/that/g" *.tw
$GREP "\btatoo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btatoo\b/tattoo/g" *.tw
$GREP "\btattooes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btattooes\b/tattoos/g" *.tw
$GREP "\btaxanomic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btaxanomic\b/taxonomic/g" *.tw
$GREP "\btaxanomy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btaxanomy\b/taxonomy/g" *.tw
$GREP "\bteached\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bteached\b/taught/g" *.tw
$GREP "\btechician\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechician\b/technician/g" *.tw
$GREP "\btechicians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechicians\b/technicians/g" *.tw
$GREP "\btechiniques\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechiniques\b/techniques/g" *.tw
$GREP "\btechnitian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechnitian\b/technician/g" *.tw
$GREP "\btechnnology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechnnology\b/technology/g" *.tw
$GREP "\btechnolgy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechnolgy\b/technology/g" *.tw
$GREP "\bteh\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bteh\b/the/g" *.tw
$GREP "\btehy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btehy\b/they/g" *.tw
$GREP "\btelelevision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btelelevision\b/television/g" *.tw
$GREP "\btelevsion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btelevsion\b/television/g" *.tw
$GREP "\btelphony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btelphony\b/telephony/g" *.tw
$GREP "\btemerature\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemerature\b/temperature/g" *.tw
$GREP "\btempalte\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btempalte\b/template/g" *.tw
$GREP "\btempaltes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btempaltes\b/templates/g" *.tw
$GREP "\btemparate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemparate\b/temperate/g" *.tw
$GREP "\btemperarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemperarily\b/temporarily/g" *.tw
$GREP "\btemperment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemperment\b/temperament/g" *.tw
$GREP "\btempertaure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btempertaure\b/temperature/g" *.tw
$GREP "\btemperture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemperture\b/temperature/g" *.tw
$GREP "\btemprary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemprary\b/temporary/g" *.tw
$GREP "\btenacle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btenacle\b/tentacle/g" *.tw
$GREP "\btenacles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btenacles\b/tentacles/g" *.tw
$GREP "\btendacy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btendacy\b/tendency/g" *.tw
$GREP "\btendancies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btendancies\b/tendencies/g" *.tw
$GREP "\btendancy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btendancy\b/tendency/g" *.tw
$GREP "\btennisplayer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btennisplayer\b/tennis player/g" *.tw
$GREP "\btepmorarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btepmorarily\b/temporarily/g" *.tw
$GREP "\bterrestial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterrestial\b/terrestrial/g" *.tw
$GREP "\bterriories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterriories\b/territories/g" *.tw
$GREP "\bterriory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterriory\b/territory/g" *.tw
$GREP "\bterritorist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterritorist\b/terrorist/g" *.tw
$GREP "\bterritoy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterritoy\b/territory/g" *.tw
$GREP "\bterroist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterroist\b/terrorist/g" *.tw
$GREP "\btesticlular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btesticlular\b/testicular/g" *.tw
$GREP "\btestomony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btestomony\b/testimony/g" *.tw
$GREP "\btghe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btghe\b/the/g" *.tw
$GREP "\btheather\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheather\b/theater/g" *.tw
$GREP "\btheese\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheese\b/these/g" *.tw
$GREP "\btheif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheif\b/thief/g" *.tw
$GREP "\btheives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheives\b/thieves/g" *.tw
$GREP "\bthemselfs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthemselfs\b/themselves/g" *.tw
$GREP "\bthemslves\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthemslves\b/themselves/g" *.tw
$GREP "\btherafter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btherafter\b/thereafter/g" *.tw
$GREP "\btherby\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btherby\b/thereby/g" *.tw
$GREP "\btheri\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheri\b/their/g" *.tw
$GREP "\btheyre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheyre\b/they're/g" *.tw
$GREP "\bthgat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthgat\b/that/g" *.tw
$GREP "\bthge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthge\b/the/g" *.tw
$GREP "\bthier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthier\b/their/g" *.tw
$GREP "\bthign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthign\b/thing/g" *.tw
$GREP "\bthigns\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthigns\b/things/g" *.tw
$GREP "\bthigsn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthigsn\b/things/g" *.tw
$GREP "\bthikn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthikn\b/think/g" *.tw
$GREP "\bthikns\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthikns\b/thinks/g" *.tw
$GREP "\bthiunk\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthiunk\b/think/g" *.tw
$GREP "\bthn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthn\b/then/g" *.tw
$GREP "\bthna\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthna\b/than/g" *.tw
$GREP "\bthne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthne\b/then/g" *.tw
$GREP "\bthnig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthnig\b/thing/g" *.tw
$GREP "\bthnigs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthnigs\b/things/g" *.tw
$GREP "\bthoughout\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthoughout\b/throughout/g" *.tw
$GREP "\bthreatend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthreatend\b/threatened/g" *.tw
$GREP "\bthreatning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthreatning\b/threatening/g" *.tw
$GREP "\bthreee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthreee\b/three/g" *.tw
$GREP "\bthreshhold\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthreshhold\b/threshold/g" *.tw
$GREP "\bthrid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthrid\b/third/g" *.tw
$GREP "\bthrorough\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthrorough\b/thorough/g" *.tw
$GREP "\bthroughly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthroughly\b/thoroughly/g" *.tw
$GREP "\bthrougout\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthrougout\b/throughout/g" *.tw
$GREP "\bthru\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthru\b/through/g" *.tw
$GREP "\bthsi\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthsi\b/this/g" *.tw
$GREP "\bthsoe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthsoe\b/those/g" *.tw
$GREP "\bthta\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthta\b/that/g" *.tw
$GREP "\bthyat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthyat\b/that/g" *.tw
$GREP "\btihkn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btihkn\b/think/g" *.tw
$GREP "\btihs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btihs\b/this/g" *.tw
$GREP "\btimne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btimne\b/time/g" *.tw
$GREP "\btje\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btje\b/the/g" *.tw
$GREP "\btjhe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btjhe\b/the/g" *.tw
$GREP "\btjpanishad\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btjpanishad\b/upanishad/g" *.tw
$GREP "\btkae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btkae\b/take/g" *.tw
$GREP "\btkaes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btkaes\b/takes/g" *.tw
$GREP "\btkaing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btkaing\b/taking/g" *.tw
$GREP "\btlaking\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btlaking\b/talking/g" *.tw
$GREP "\btobbaco\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btobbaco\b/tobacco/g" *.tw
$GREP "\btodays\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btodays\b/today's/g" *.tw
$GREP "\btodya\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btodya\b/today/g" *.tw
$GREP "\btoghether\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btoghether\b/together/g" *.tw
$GREP "\btoke\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btoke\b/took/g" *.tw
$GREP "\btolerence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btolerence\b/tolerance/g" *.tw
$GREP "\bTolkein\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bTolkein\b/Tolkien/g" *.tw
$GREP "\btomatos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btomatos\b/tomatoes/g" *.tw
$GREP "\btommorow\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btommorow\b/tomorrow/g" *.tw
$GREP "\btommorrow\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btommorrow\b/tomorrow/g" *.tw
$GREP "\btongiht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btongiht\b/tonight/g" *.tw
$GREP "\btoriodal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btoriodal\b/toroidal/g" *.tw
$GREP "\btormenters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btormenters\b/tormentors/g" *.tw
$GREP "\btornadoe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btornadoe\b/tornado/g" *.tw
$GREP "\btorpeados\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btorpeados\b/torpedoes/g" *.tw
$GREP "\btorpedos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btorpedos\b/torpedoes/g" *.tw
$GREP "\btortise \b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btortise \b/tortoise/g" *.tw
$GREP "\btothe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btothe\b/to the/g" *.tw
$GREP "\btoubles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btoubles\b/troubles/g" *.tw
$GREP "\btounge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btounge\b/tongue/g" *.tw
$GREP "\btowords\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btowords\b/towards/g" *.tw
$GREP "\btowrad\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btowrad\b/toward/g" *.tw
$GREP "\btradionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btradionally\b/traditionally/g" *.tw
$GREP "\btraditionaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btraditionaly\b/traditionally/g" *.tw
$GREP "\btraditionnal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btraditionnal\b/traditional/g" *.tw
$GREP "\btraditition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btraditition\b/tradition/g" *.tw
$GREP "\btradtionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btradtionally\b/traditionally/g" *.tw
$GREP "\btrafficed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrafficed\b/trafficked/g" *.tw
$GREP "\btrafficing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrafficing\b/trafficking/g" *.tw
$GREP "\btrafic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrafic\b/traffic/g" *.tw
$GREP "\btrancendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrancendent\b/transcendent/g" *.tw
$GREP "\btrancending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrancending\b/transcending/g" *.tw
$GREP "\btranform\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranform\b/transform/g" *.tw
$GREP "\btranformed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranformed\b/transformed/g" *.tw
$GREP "\btranscendance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranscendance\b/transcendence/g" *.tw
$GREP "\btranscendant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranscendant\b/transcendent/g" *.tw
$GREP "\btranscendentational\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranscendentational\b/transcendental/g" *.tw
$GREP "\btransending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransending\b/transcending/g" *.tw
$GREP "\btransesxuals\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransesxuals\b/transsexuals/g" *.tw
$GREP "\btransfered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransfered\b/transferred/g" *.tw
$GREP "\btransfering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransfering\b/transferring/g" *.tw
$GREP "\btransformaton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransformaton\b/transformation/g" *.tw
$GREP "\btransistion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransistion\b/transition/g" *.tw
$GREP "\btranslater\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranslater\b/translator/g" *.tw
$GREP "\btranslaters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranslaters\b/translators/g" *.tw
$GREP "\btransmissable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransmissable\b/transmissible/g" *.tw
$GREP "\btransporation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransporation\b/transportation/g" *.tw
$GREP "\btremelo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btremelo\b/tremolo/g" *.tw
$GREP "\btremelos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btremelos\b/tremolos/g" *.tw
$GREP "\btriguered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btriguered\b/triggered/g" *.tw
$GREP "\btriology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btriology\b/trilogy/g" *.tw
$GREP "\btroling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btroling\b/trolling/g" *.tw
$GREP "\btroup\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btroup\b/troupe/g" *.tw
$GREP "\btruely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btruely\b/truly/g" *.tw
$GREP "\btrustworthyness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrustworthyness\b/trustworthiness/g" *.tw
$GREP "\bTuscon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bTuscon\b/Tucson/g" *.tw
$GREP "\btust\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btust\b/trust/g" *.tw
$GREP "\btwelth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btwelth\b/twelfth/g" *.tw
$GREP "\btwon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btwon\b/town/g" *.tw
$GREP "\btwpo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btwpo\b/two/g" *.tw
$GREP "\btyhat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyhat\b/that/g" *.tw
$GREP "\btyhe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyhe\b/they/g" *.tw
$GREP "\btypcial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btypcial\b/typical/g" *.tw
$GREP "\btypicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btypicaly\b/typically/g" *.tw
$GREP "\btyranies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyranies\b/tyrannies/g" *.tw
$GREP "\btyrany\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyrany\b/tyranny/g" *.tw
$GREP "\btyrranies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyrranies\b/tyrannies/g" *.tw
$GREP "\btyrrany\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyrrany\b/tyranny/g" *.tw
$GREP "\bubiquitious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bubiquitious\b/ubiquitous/g" *.tw
$GREP "\bublisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bublisher\b/publisher/g" *.tw
$GREP "\buise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buise\b/use/g" *.tw
$GREP "\bUkranian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bUkranian\b/Ukrainian/g" *.tw
$GREP "\bultimely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bultimely\b/ultimately/g" *.tw
$GREP "\bunacompanied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunacompanied\b/unaccompanied/g" *.tw
$GREP "\bunahppy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunahppy\b/unhappy/g" *.tw
$GREP "\bunanymous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunanymous\b/unanimous/g" *.tw
$GREP "\bunathorised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunathorised\b/unauthorised/g" *.tw
$GREP "\bunavailible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunavailible\b/unavailable/g" *.tw
$GREP "\bunballance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunballance\b/unbalance/g" *.tw
$GREP "\bunbeknowst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunbeknowst\b/unbeknownst/g" *.tw
$GREP "\bunbeleivable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunbeleivable\b/unbelievable/g" *.tw
$GREP "\buncertainity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buncertainity\b/uncertainty/g" *.tw
$GREP "\bunchallengable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunchallengable\b/unchallengeable/g" *.tw
$GREP "\bunchangable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunchangable\b/unchangeable/g" *.tw
$GREP "\buncompetive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buncompetive\b/uncompetitive/g" *.tw
$GREP "\bunconcious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunconcious\b/unconscious/g" *.tw
$GREP "\bunconciousness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunconciousness\b/unconsciousness/g" *.tw
$GREP "\bunconfortability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunconfortability\b/discomfort/g" *.tw
$GREP "\buncontitutional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buncontitutional\b/unconstitutional/g" *.tw
$GREP "\bunconvential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunconvential\b/unconventional/g" *.tw
$GREP "\bundecideable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bundecideable\b/undecidable/g" *.tw
$GREP "\bunderstoon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunderstoon\b/understood/g" *.tw
$GREP "\bundesireable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bundesireable\b/undesirable/g" *.tw
$GREP "\bundetecable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bundetecable\b/undetectable/g" *.tw
$GREP "\bundoubtely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bundoubtely\b/undoubtedly/g" *.tw
$GREP "\bundreground\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bundreground\b/underground/g" *.tw
$GREP "\buneccesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buneccesary\b/unnecessary/g" *.tw
$GREP "\bunecessary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunecessary\b/unnecessary/g" *.tw
$GREP "\bunequalities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunequalities\b/inequalities/g" *.tw
$GREP "\bunforseen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunforseen\b/unforeseen/g" *.tw
$GREP "\bunforetunately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunforetunately\b/unfortunately/g" *.tw
$GREP "\bunforgetable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunforgetable\b/unforgettable/g" *.tw
$GREP "\bunforgiveable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunforgiveable\b/unforgivable/g" *.tw
$GREP "\bunfortunatley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunfortunatley\b/unfortunately/g" *.tw
$GREP "\bunfortunatly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunfortunatly\b/unfortunately/g" *.tw
$GREP "\bunfourtunately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunfourtunately\b/unfortunately/g" *.tw
$GREP "\bunihabited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunihabited\b/uninhabited/g" *.tw
$GREP "\bunilateraly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunilateraly\b/unilaterally/g" *.tw
$GREP "\bunilatreal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunilatreal\b/unilateral/g" *.tw
$GREP "\bunilatreally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunilatreally\b/unilaterally/g" *.tw
$GREP "\buninterruped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buninterruped\b/uninterrupted/g" *.tw
$GREP "\buninterupted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buninterupted\b/uninterrupted/g" *.tw
$GREP "\bUnitesStates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bUnitesStates\b/UnitedStates/g" *.tw
$GREP "\buniveral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buniveral\b/universal/g" *.tw
$GREP "\buniveristies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buniveristies\b/universities/g" *.tw
$GREP "\buniveristy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buniveristy\b/university/g" *.tw
$GREP "\buniverity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buniverity\b/university/g" *.tw
$GREP "\buniverstiy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buniverstiy\b/university/g" *.tw
$GREP "\bunivesities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunivesities\b/universities/g" *.tw
$GREP "\bunivesity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunivesity\b/university/g" *.tw
$GREP "\bunkown\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunkown\b/unknown/g" *.tw
$GREP "\bunlikey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunlikey\b/unlikely/g" *.tw
$GREP "\bunmistakeably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunmistakeably\b/unmistakably/g" *.tw
$GREP "\bunneccesarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunneccesarily\b/unnecessarily/g" *.tw
$GREP "\bunneccesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunneccesary\b/unnecessary/g" *.tw
$GREP "\bunneccessarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunneccessarily\b/unnecessarily/g" *.tw
$GREP "\bunneccessary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunneccessary\b/unnecessary/g" *.tw
$GREP "\bunnecesarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunnecesarily\b/unnecessarily/g" *.tw
$GREP "\bunnecesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunnecesary\b/unnecessary/g" *.tw
$GREP "\bunoffical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunoffical\b/unofficial/g" *.tw
$GREP "\bunoperational\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunoperational\b/nonoperational/g" *.tw
$GREP "\bunoticeable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunoticeable\b/unnoticeable/g" *.tw
$GREP "\bunplease\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunplease\b/displease/g" *.tw
$GREP "\bunplesant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunplesant\b/unpleasant/g" *.tw
$GREP "\bunprecendented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunprecendented\b/unprecedented/g" *.tw
$GREP "\bunprecidented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunprecidented\b/unprecedented/g" *.tw
$GREP "\bunrealisticly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunrealisticly\b/unrealistically/g" *.tw
$GREP "\bunrepentent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunrepentent\b/unrepentant/g" *.tw
$GREP "\bunrepetant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunrepetant\b/unrepentant/g" *.tw
$GREP "\bunrepetent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunrepetent\b/unrepentant/g" *.tw
$GREP "\bunsubstanciated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsubstanciated\b/unsubstantiated/g" *.tw
$GREP "\bunsuccesful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuccesful\b/unsuccessful/g" *.tw
$GREP "\bunsuccesfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuccesfully\b/unsuccessfully/g" *.tw
$GREP "\bunsuccessfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuccessfull\b/unsuccessful/g" *.tw
$GREP "\bunsucesful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsucesful\b/unsuccessful/g" *.tw
$GREP "\bunsucesfuly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsucesfuly\b/unsuccessfully/g" *.tw
$GREP "\bunsucessful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsucessful\b/unsuccessful/g" *.tw
$GREP "\bunsucessfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsucessfull\b/unsuccessful/g" *.tw
$GREP "\bunsucessfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsucessfully\b/unsuccessfully/g" *.tw
$GREP "\bunsuprised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprised\b/unsurprised/g" *.tw
$GREP "\bunsuprising\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprising\b/unsurprising/g" *.tw
$GREP "\bunsuprisingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprisingly\b/unsurprisingly/g" *.tw
$GREP "\bunsuprized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprized\b/unsurprised/g" *.tw
$GREP "\bunsuprizing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprizing\b/unsurprising/g" *.tw
$GREP "\bunsuprizingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprizingly\b/unsurprisingly/g" *.tw
$GREP "\bunsurprized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsurprized\b/unsurprised/g" *.tw
$GREP "\bunsurprizing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsurprizing\b/unsurprising/g" *.tw
$GREP "\bunsurprizingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsurprizingly\b/unsurprisingly/g" *.tw
$GREP "\buntill\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buntill\b/until/g" *.tw
$GREP "\buntranslateable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buntranslateable\b/untranslatable/g" *.tw
$GREP "\bunuseable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunuseable\b/unusable/g" *.tw
$GREP "\bunusuable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunusuable\b/unusable/g" *.tw
$GREP "\bunviersity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunviersity\b/university/g" *.tw
$GREP "\bunwarrented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunwarrented\b/unwarranted/g" *.tw
$GREP "\bunweildly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunweildly\b/unwieldy/g" *.tw
$GREP "\bunwieldly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunwieldly\b/unwieldy/g" *.tw
$GREP "\bupcomming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bupcomming\b/upcoming/g" *.tw
$GREP "\bupgradded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bupgradded\b/upgraded/g" *.tw
$GREP "\bupto\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bupto\b/up to/g" *.tw
$GREP "\busally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\busally\b/usually/g" *.tw
$GREP "\buseage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buseage\b/usage/g" *.tw
$GREP "\busefull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\busefull\b/useful/g" *.tw
$GREP "\busefuly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\busefuly\b/usefully/g" *.tw
$GREP "\buseing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buseing\b/using/g" *.tw
$GREP "\busualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\busualy\b/usually/g" *.tw
$GREP "\bususally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bususally\b/usually/g" *.tw
$GREP "\bvaccum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaccum\b/vacuum/g" *.tw
$GREP "\bvaccume\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaccume\b/vacuum/g" *.tw
$GREP "\bvacinity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvacinity\b/vicinity/g" *.tw
$GREP "\bvaguaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaguaries\b/vagaries/g" *.tw
$GREP "\bvaieties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaieties\b/varieties/g" *.tw
$GREP "\bvailidty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvailidty\b/validity/g" *.tw
$GREP "\bvaletta\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaletta\b/valletta/g" *.tw
$GREP "\bvaluble\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaluble\b/valuable/g" *.tw
$GREP "\bvalueable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvalueable\b/valuable/g" *.tw
$GREP "\bvarations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvarations\b/variations/g" *.tw
$GREP "\bvarient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvarient\b/variant/g" *.tw
$GREP "\bvariey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvariey\b/variety/g" *.tw
$GREP "\bvaring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaring\b/varying/g" *.tw
$GREP "\bvarities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvarities\b/varieties/g" *.tw
$GREP "\bvarity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvarity\b/variety/g" *.tw
$GREP "\bvasall\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvasall\b/vassal/g" *.tw
$GREP "\bvasalls\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvasalls\b/vassals/g" *.tw
$GREP "\bvegatarian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvegatarian\b/vegetarian/g" *.tw
$GREP "\bvegitable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvegitable\b/vegetable/g" *.tw
$GREP "\bvegitables\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvegitables\b/vegetables/g" *.tw
$GREP "\bvegtable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvegtable\b/vegetable/g" *.tw
$GREP "\bvehicule\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvehicule\b/vehicle/g" *.tw
$GREP "\bvell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvell\b/well/g" *.tw
$GREP "\bvenemous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvenemous\b/venomous/g" *.tw
$GREP "\bvengance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvengance\b/vengeance/g" *.tw
$GREP "\bvengence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvengence\b/vengeance/g" *.tw
$GREP "\bverfication\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bverfication\b/verification/g" *.tw
$GREP "\bverison\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bverison\b/version/g" *.tw
$GREP "\bverisons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bverisons\b/versions/g" *.tw
$GREP "\bvermillion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvermillion\b/vermilion/g" *.tw
$GREP "\bversitilaty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bversitilaty\b/versatility/g" *.tw
$GREP "\bversitlity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bversitlity\b/versatility/g" *.tw
$GREP "\bvetween\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvetween\b/between/g" *.tw
$GREP "\bveyr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bveyr\b/very/g" *.tw
$GREP "\bvigilence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvigilence\b/vigilance/g" *.tw
$GREP "\bvigourous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvigourous\b/vigorous/g" *.tw
$GREP "\bvillian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvillian\b/villain/g" *.tw
$GREP "\bvillification\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvillification\b/vilification/g" *.tw
$GREP "\bvillify\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvillify\b/vilify/g" *.tw
$GREP "\bvincinity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvincinity\b/vicinity/g" *.tw
$GREP "\bviolentce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bviolentce\b/violence/g" *.tw
$GREP "\bvirtualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvirtualy\b/virtually/g" *.tw
$GREP "\bvirutal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvirutal\b/virtual/g" *.tw
$GREP "\bvirutally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvirutally\b/virtually/g" *.tw
$GREP "\bvisable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvisable\b/visible/g" *.tw
$GREP "\bvisably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvisably\b/visibly/g" *.tw
$GREP "\bvisting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvisting\b/visiting/g" *.tw
$GREP "\bvistors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvistors\b/visitors/g" *.tw
$GREP "\bvitories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvitories\b/victories/g" *.tw
$GREP "\bvolcanoe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolcanoe\b/volcano/g" *.tw
$GREP "\bvoleyball\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvoleyball\b/volleyball/g" *.tw
$GREP "\bvolontary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolontary\b/voluntary/g" *.tw
$GREP "\bvolonteer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolonteer\b/volunteer/g" *.tw
$GREP "\bvolonteered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolonteered\b/volunteered/g" *.tw
$GREP "\bvolonteering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolonteering\b/volunteering/g" *.tw
$GREP "\bvolonteers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolonteers\b/volunteers/g" *.tw
$GREP "\bvolounteer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolounteer\b/volunteer/g" *.tw
$GREP "\bvolounteered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolounteered\b/volunteered/g" *.tw
$GREP "\bvolounteering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolounteering\b/volunteering/g" *.tw
$GREP "\bvolounteers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolounteers\b/volunteers/g" *.tw
$GREP "\bvolumne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolumne\b/volume/g" *.tw
$GREP "\bvreity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvreity\b/variety/g" *.tw
$GREP "\bvrey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvrey\b/very/g" *.tw
$GREP "\bvriety\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvriety\b/variety/g" *.tw
$GREP "\bvulnerablility\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvulnerablility\b/vulnerability/g" *.tw
$GREP "\bvyer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvyer\b/very/g" *.tw
$GREP "\bvyre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvyre\b/very/g" *.tw
$GREP "\bwaht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwaht\b/what/g" *.tw
$GREP "\bwarantee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwarantee\b/warranty/g" *.tw
$GREP "\bwardobe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwardobe\b/wardrobe/g" *.tw
$GREP "\bwarrent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwarrent\b/warrant/g" *.tw
$GREP "\bwarrriors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwarrriors\b/warriors/g" *.tw
$GREP "\bwasnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwasnt\b/wasn't/g" *.tw
$GREP "\bwass\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwass\b/was/g" *.tw
$GREP "\bwatn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwatn\b/want/g" *.tw
$GREP "\bwayword\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwayword\b/wayward/g" *.tw
$GREP "\bweaponary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bweaponary\b/weaponry/g" *.tw
$GREP "\bweas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bweas\b/was/g" *.tw
$GREP "\bwehn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwehn\b/when/g" *.tw
$GREP "\bweilded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bweilded\b/wielded/g" *.tw
$GREP "\bwendsay\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwendsay\b/Wednesday/g" *.tw
$GREP "\bwensday\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwensday\b/Wednesday/g" *.tw
$GREP "\bwereabouts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwereabouts\b/whereabouts/g" *.tw
$GREP "\bwhant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhant\b/want/g" *.tw
$GREP "\bwhants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhants\b/wants/g" *.tw
$GREP "\bwhcih\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhcih\b/which/g" *.tw
$GREP "\bwheras\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwheras\b/whereas/g" *.tw
$GREP "\bwherease\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwherease\b/whereas/g" *.tw
$GREP "\bwhereever\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhereever\b/wherever/g" *.tw
$GREP "\bwhic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhic\b/which/g" *.tw
$GREP "\bwhihc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhihc\b/which/g" *.tw
$GREP "\bwhith\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhith\b/with/g" *.tw
$GREP "\bwhlch\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhlch\b/which/g" *.tw
$GREP "\bwhn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhn\b/when/g" *.tw
$GREP "\bwholey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwholey\b/wholly/g" *.tw
$GREP "\bwhta\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhta\b/what/g" *.tw
$GREP "\bwhther\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhther\b/whether/g" *.tw
$GREP "\bwidesread\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwidesread\b/widespread/g" *.tw
$GREP "\bwief\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwief\b/wife/g" *.tw
$GREP "\bwierd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwierd\b/weird/g" *.tw
$GREP "\bwiew\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwiew\b/view/g" *.tw
$GREP "\bwih\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwih\b/with/g" *.tw
$GREP "\bwiht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwiht\b/with/g" *.tw
$GREP "\bwille\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwille\b/will/g" *.tw
$GREP "\bwillk\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwillk\b/will/g" *.tw
$GREP "\bwillingless\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwillingless\b/willingness/g" *.tw
$GREP "\bwirting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwirting\b/writing/g" *.tw
$GREP "\bwitheld\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwitheld\b/withheld/g" *.tw
$GREP "\bwithh\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwithh\b/with/g" *.tw
$GREP "\bwithing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwithing\b/within/g" *.tw
$GREP "\bwithold\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwithold\b/withhold/g" *.tw
$GREP "\bwitht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwitht\b/with/g" *.tw
$GREP "\bwitn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwitn\b/with/g" *.tw
$GREP "\bwiull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwiull\b/will/g" *.tw
$GREP "\bwnat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwnat\b/want/g" *.tw
$GREP "\bwnated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwnated\b/wanted/g" *.tw
$GREP "\bwnats\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwnats\b/wants/g" *.tw
$GREP "\bwohle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwohle\b/whole/g" *.tw
$GREP "\bwokr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwokr\b/work/g" *.tw
$GREP "\bwokring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwokring\b/working/g" *.tw
$GREP "\bwonderfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwonderfull\b/wonderful/g" *.tw
$GREP "\bwordlwide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwordlwide\b/worldwide/g" *.tw
$GREP "\bworkststion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bworkststion\b/workstation/g" *.tw
$GREP "\bworls\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bworls\b/world/g" *.tw
$GREP "\bworstened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bworstened\b/worsened/g" *.tw
$GREP "\bwoudl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwoudl\b/would/g" *.tw
$GREP "\bwresters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwresters\b/wrestlers/g" *.tw
$GREP "\bwriet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwriet\b/write/g" *.tw
$GREP "\bwriten\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwriten\b/written/g" *.tw
$GREP "\bwroet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwroet\b/wrote/g" *.tw
$GREP "\bwrok\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwrok\b/work/g" *.tw
$GREP "\bwroking\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwroking\b/working/g" *.tw
$GREP "\bwtih\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwtih\b/with/g" *.tw
$GREP "\bwupport\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwupport\b/support/g" *.tw
$GREP "\bxenophoby\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bxenophoby\b/xenophobia/g" *.tw
$GREP "\byaching\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byaching\b/yachting/g" *.tw
$GREP "\byaer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byaer\b/year/g" *.tw
$GREP "\byaerly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byaerly\b/yearly/g" *.tw
$GREP "\byaers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byaers\b/years/g" *.tw
$GREP "\byatch\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byatch\b/yacht/g" *.tw
$GREP "\byearm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byearm\b/year/g" *.tw
$GREP "\byeasr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byeasr\b/years/g" *.tw
$GREP "\byeild\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byeild\b/yield/g" *.tw
$GREP "\byeilding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byeilding\b/yielding/g" *.tw
$GREP "\byera\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byera\b/year/g" *.tw
$GREP "\byrea\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byrea\b/year/g" *.tw
$GREP "\byeras\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byeras\b/years/g" *.tw
$GREP "\byersa\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byersa\b/years/g" *.tw
$GREP "\byotube\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byotube\b/youtube/g" *.tw
$GREP "\byouseff\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byouseff\b/yousef/g" *.tw
$GREP "\byouself\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byouself\b/yourself/g" *.tw
$GREP "\bytou\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bytou\b/you/g" *.tw
$GREP "\byuo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byuo\b/you/g" *.tw
$GREP "\bzeebra\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bzeebra\b/zebra/g" *.tw
find . -name "*.tw.bak" -type f -print0 | xargs -0 /bin/rm -f
|
AshVaris/fc
|
fixSpellingMistakes2
|
none
|
mit
| 493,389 |
Player variables documentation - Pregmod
**anything labeled accepts string will return any string entered into it**
name:
your first name
accepts string
surname:
your last name
accepts string
0 - no surname
title:
(common in events)
your title's gender
0 - female
1 - male
ID:
The player's ID is always -1.
dick:
(common in events)
Player has a cock
0 - no
1 - yes
vagina:
(common in events)
Player has a pussy
0 - no
1 - yes
preg:
(uncommon in events)
How far along the your pregnancy is (pregMood kicks in at 24+ weeks)
-2 menopausal
-1 contraceptives
0 not pregnant
1 - 42 pregnant
43+ giving birth
pregType:
How many fetuses you are carrying
1 - 8
pregWeek:
How far along the your pregnancy is. (used for postpartum)
pregKnown:
Do you know you are pregnant (currently unused due to lack of menstrual cycle)
0 - no
1 - yes
belly:
(uncommon in events)
how big your belly is in CCs (preg only)
thresholds
100 - bloated
1500 - early pregnancy
5000 - obviously pregnant
10000 - very pregnant
15000 - full term
30000 - full term twins
45000 - full term triplets
60000 - full term quads
75000 - full term quints
90000 - full term sextuplets
105000 - full term septuplets
120000 - full term octuplets
mpreg:
used for <<KnockMeUp>> compatibility
pregSource:
who knocked you up
0 - unknown
-1 - Societal Elite
-2 - client
-3 - former master
-4 - male arc owner
-5 - citizen
-6 - self-impreg
pregMood:
(uncommon in events)($PC.preg >= 28)
how you act when heavily pregnant
0 - no change
1 - submissive and motherly
2 - aggressive and dominant
labor:
are you giving birth this week
0 - no
1 - yes
births:
how many children you've had
accepts int
boobsBonus:
(rare in events)
breast size
-1 - C-cup
-0.5 - D-cup
0 - DD-cup
1 - F-cup
2 - G-cup
3 - H-cup
degeneracy:
How strong/are there rumors about you doing unsavory things with your slaves
0 - 10 - occasional whispers
11 - 25 - minor rumors
26 - 50 - rumors
51 - 75 - bad rumors
70 - 100 - severe rumors
101+ - life ruining rumors
voiceImplant:
no effect
accent:
no effect
shoulders:
no effect
shouldersImplant:
no effect
boobs:
(common in events)
0 - masculine chest (if title = 1) or flat chested (if title = 0)(WIP)
1 - feminine bust
career:
Your career before becoming owner
"wealth"
"capitalist"
"mercenary"
"slaver"
"engineer"
"medicine"
"celebrity"
"escort"
"servant"
"gang"
rumor:
"wealth"
"diligence"
"force"
"social engineering"
"luck"
indenture:
no effect
indentureRestrictions:
no effect
birthWeek:
your week of birth in a year
accepts int between 0-51
age:
(uncommon in events)
your age (deprecated)
0 - young
1 - typical
2 - middle age
sexualEnergy:
how much fucking you can do in a week
accepts int
refreshment:
your favorite refreshment
accepts string
refreshmentType:
(uncommon in events)
The method of consumption of .refreshment
0 - smoked
1 - drank
2 - eaten
3 - snorted
4 - injected
5 - popped
6 - orally disolved
trading:
your trading skill
accepts int between -100 and 100
warfare:
your warfare skill
accepts int between -100 and 100
Hacking:
your hacking skill
accepts int between -100 and 100
slaving:
your slaving skill
accepts int between -100 and 100
engineering:
your engineering skill
accepts int between -100 and 100
medicine:
your medicine skill
accepts int between -100 and 100
cumTap:
how acclimated you are to taking huge loads
race:
your race
accepts string
origRace:
your original race
accpets string
skin:
your skin color
accepts string
origSkin:
your original skin tone
accepts string
markings:
do you have markings?
"none"
"freckles"
"heavily freckled"
eyeColor:
your eye color
accepts string
origEyeColor:
your original eye color
accepts string
hColor:
your hair color
accepts string
origHColor:
your original hair color
accepts string
nationality:
your nationality
accepts string
father:
your father
mother:
your mother
sisters:
how many sisters you have
daughters:
how many daughters you have
birthElite:
how many children you've carried for the SE
birthMaster:
how many children you've carried for your former master (servant start only)
birthDegenerate:
how many slave babies you've had
birthClient:
how many whoring babies you've had
birthOther:
untracked births
birthArcOwner:
how many children you've carried for other arc owners
birthCitizen:
how many children you've had by sex with citizens (not whoring)
birthSelf:
how many times you've giving birth to your own self-cest babies
slavesFathered:
how many babies you are the father of
slavesKnockedUp:
how many slaves you've gotten pregnant
intelligence:
3
face:
100
actualAge:
(uncommon in events)
your actualAge
16+
physicalAge:
your body's age
16+
visualAge:
(uncommon in events)
how old you look
16+
boobsImplant:
do you have breast implants
0 - no
1 - yes
butt:
how big your butt is
0 - normal
1 - big
2 - huge
3 - enormous
buttImplant:
do you have butt implants
0 - no
1 - yes
balls:
how big your balls are (requires dick == 1)
0 - normal
1 - big
2 - huge
ballsImplant:
how big your balls are (requires dick == 1)
0 - normal
1 - large
2 - huge
3 - enormous
4 - monstrous
ageImplant:
have your had age altering surgery
0 - no
1 - yes
newVag:
have you had a loose vagina restored
0 - no
1 - yes
reservedChildren:
how many of your children will be added to the incubator
fertDrugs:
are you on fertility supplements
0 - no
1 - yes
forcedFertDrugs:
have you been drugged with fertility drugs
0 - no
1+ - how many weeks they will remain in your system
staminaPills:
Are you taking pills to fuck more slaves each week?
0 - no
1 - yes
ovaryAge:
How old your ovaries are
Used to delay menopause temporarily
|
AshVaris/fc
|
player variables documentation - Pregmod.txt
|
Text
|
mit
| 5,772 |
Common problems:
How do I start the game?
-Run the compile file, go to folder "bin", click the "FC_Pregmod" and play. (Reccomendation: Drag it into incongito mode)
I get a error on gamestart.
-clear cookies
I can't save more than once or twice.
-Known issue caused by sugarcube level changes. Save to file doesn't have this problem and will likely avoid the first problem as well.
How to mod (basic doc):
1. All sources now in the src subdir, in separate files. 1 passage = 1 file.
2. Special files and dir's:
- src/config - configuration of the story is here.
- src/config/start.tw - contains list of .tw passage files, regenerated automatic, by building scripts. Do not change by hands. (origial passage Start from pregmod renamed and moved to src/events/intro/introSummary.tw)
- src/js/storyJS.tw - special passage with [script] tag - contain all native JavaScript from pregmod.
- devTools/tweeGo/targets/sugarcube-2/userlib.js - on original FC JS moved here (I deleted it after moving JS to storyJS.tw). Compare to storyJS.tw but do not copy file here. May conflict with src/js/storyJS.tw if copied.
- src/pregmod - I put all pregmod-only passages here.
- .gitignore - special file for git - to ignore some files. For example - compilation results.
3. Compilation:
Windows:
Run compile.bat - result will be file bin/FC_pregmod.html
Second run of compile.but will overwrite bin/FC_pregmod.html without prompt.
Linux:
Ensure executable permission on file "devTools/tweeGo/tweego" (not tweego.exe!)
Ensure executable permission on file "compile"
In the root dir of sources (where you see src, devTools, bin...) run command "./compile" from console
compile-git will produce the same result file but with current commit hash in filename.
Mac:
Not supported directly (I don't have access to Mac for testing).
But you can use linux compilation script if you download tweego for mac from here: https://bitbucket.org/tmedwards/tweego/downloads/ and replace linux executable with mac executable in ./devTools/tweeGo/ folder. This is not tested though, so be warned.
4. Simple comparing and merging with original FC:
Use meld tool. Place folder FreeCities (original FC sources tree) near FreeCitiesPregmod (this sources tree) and use command:
meld FreeCities FreeCitiesPregmod
or just select these folders in meld's GUI.
5. All modders will be wery grateful if any, who make some changes to game, with .html file also post his/her resulting src folder tree.
6. For contributors to pregmod: if you don't use git, then you need to post yours version of src folder tree, not just produced FC_pregmod.html file!!! This html file can't be reverted to proper sources, and useless as contribution!
7. Git workflow:
- Master branch is pregmod-master. Only Pregmodder can add something to it directly. Always contain his last public changes.
- pregmod-dev - branch with experimental code mainly by pregmodfan.
- Any contributions will be placed in separate branches like pregmod-mod-<something> (if it's ready to merge with master complete feature/mod) or pregmod-contrib-<something> if it's partial work until contributions is reviewed.
Typical cycle with git:
1. Make account on gitgud if you don't have usable one.
2. Fork main repository through gitgud interface. (Or pull changes from main repo if you already have fork.)
3. Clone your fork to local machine witn git client (Or pull changes if already cloned.)
4. Make you changes as you like, commit, and push result into your forked repository (with git client).
5. Make merge request through gitgud interface.
|
AshVaris/fc
|
readme.txt
|
Text
|
mit
| 3,708 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Areola_piercing_3_">
<circle id="XMLID_242_" class="st0" cx="536.5" cy="276.7" r="1.1"/>
<circle id="XMLID_241_" class="st0" cx="536.7" cy="279.7" r="1.1"/>
<circle id="XMLID_240_" class="st0" cx="531.5" cy="271.4" r="1.1"/>
<circle id="XMLID_239_" class="st0" cx="528.5" cy="271.8" r="1.1"/>
<circle id="XMLID_238_" class="st0" cx="532.6" cy="286.2" r="1.1"/>
<circle id="XMLID_237_" class="st0" cx="529.5" cy="286.2" r="1.1"/>
<circle id="XMLID_236_" class="st0" cx="524.8" cy="280.8" r="1.1"/>
<circle id="XMLID_235_" class="st0" cx="524.8" cy="278.1" r="1.1"/>
<ellipse id="XMLID_234_" class="st0" cx="467.2" cy="271" rx="0.5" ry="0.7"/>
<ellipse id="XMLID_233_" class="st0" cx="468.3" cy="270.5" rx="0.5" ry="0.7"/>
<ellipse id="XMLID_232_" class="st0" cx="466.3" cy="277.3" rx="0.5" ry="0.7"/>
<ellipse id="XMLID_231_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 918.0208 572.7028)" class="st0" cx="465.8" cy="275.5" rx="0.5" ry="0.7"/>
<ellipse id="XMLID_230_" class="st0" cx="472" cy="274" rx="0.5" ry="0.7"/>
<ellipse id="XMLID_229_" class="st0" cx="472.8" cy="276" rx="0.5" ry="0.7"/>
<ellipse id="XMLID_228_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 1007.9313 386.819)" class="st0" cx="470.3" cy="281.1" rx="0.5" ry="0.7"/>
<ellipse id="XMLID_227_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 1009.6696 387.3601)" class="st0" cx="471.5" cy="280.5" rx="0.5" ry="0.7"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 0 areola piercing.svg
|
svg
|
mit
| 1,862 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Boob_hvy_piercing_3_">
<path id="XMLID_226_" class="st0" d="M528.1,278.8c0.1,0-0.5,0.7-0.5,1.7c0,0.9,0.5,2,1.7,2.4c1.4,0.4,2.9-0.9,3.3-2
c0.4-1.1-0.3-2-0.2-2.1c0.2-0.1,1.1,1.2,0.9,2.4c-0.2,1.4-1.7,3.1-3.6,2.8c-1.4-0.2-2.8-1.3-2.8-2.8
C526.8,279.8,528.1,278.7,528.1,278.8z"/>
<path id="XMLID_225_" class="st0" d="M467.6,275.9c0,0-0.4,0.7-0.4,1.7c-0.1,0.9,0.3,2,0.9,2.4c0.9,0.5,2-0.7,2.3-1.9
c0.3-1.1-0.1-2,0-2.1s0.6,1.2,0.5,2.4c-0.2,1.4-1.3,3-2.6,2.8c-0.9-0.2-1.8-1.4-1.7-2.9C466.7,276.9,467.6,275.9,467.6,275.9z"/>
<path id="XMLID_224_" class="st0" d="M468.7,281.2c0.1-0.1,11.3,16.2,28.4,17.6c18.3,1.4,32.9-14.9,33.1-14.8
c0.2,0.2-13.4,17.1-32.5,15.7C479.2,298.4,468.6,281.3,468.7,281.2z"/>
<circle id="XMLID_223_" class="st0" cx="527.9" cy="278.7" r="1"/>
<circle id="XMLID_222_" class="st0" cx="532.4" cy="278.7" r="1"/>
<circle id="XMLID_221_" class="st0" cx="530.2" cy="276" r="1"/>
<circle id="XMLID_220_" class="st0" cx="530.4" cy="280.9" r="1"/>
<ellipse id="XMLID_219_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 985.4068 454.8795)" class="st0" cx="470.4" cy="275.7" rx="0.6" ry="0.8"/>
<ellipse id="XMLID_218_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 855.6479 655.2993)" class="st0" cx="467.6" cy="275.7" rx="0.6" ry="0.8"/>
<ellipse id="XMLID_217_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 296.3026 788.395)" class="st0" cx="468.2" cy="273.9" rx="0.6" ry="0.5"/>
<ellipse id="XMLID_216_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 707.4532 -212.5916)" class="st0" cx="469.2" cy="277.9" rx="0.6" ry="0.5"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 0 piercing heavy.svg
|
svg
|
mit
| 2,010 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Boob_piercing_3_">
<g id="XMLID_534_">
<circle id="XMLID_215_" class="st0" cx="527.9" cy="278.7" r="1"/>
<circle id="XMLID_214_" class="st0" cx="532.4" cy="278.7" r="1"/>
</g>
<g id="XMLID_531_">
<ellipse id="XMLID_213_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 985.4068 454.8795)" class="st0" cx="470.4" cy="275.7" rx="0.6" ry="0.8"/>
<ellipse id="XMLID_212_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 855.6479 655.2993)" class="st0" cx="467.6" cy="275.7" rx="0.6" ry="0.8"/>
</g>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 0 piercing.svg
|
svg
|
mit
| 939 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Areola_piercing_2_">
<circle id="XMLID_204_" class="st0" cx="520.9" cy="276.9" r="1.1"/>
<circle id="XMLID_203_" class="st0" cx="521.2" cy="280" r="1.1"/>
<circle id="XMLID_202_" class="st0" cx="516" cy="271.7" r="1.1"/>
<circle id="XMLID_201_" class="st0" cx="512.9" cy="272.1" r="1.1"/>
<circle id="XMLID_200_" class="st0" cx="517.1" cy="286.5" r="1.1"/>
<circle id="XMLID_199_" class="st0" cx="514" cy="286.5" r="1.1"/>
<circle id="XMLID_198_" class="st0" cx="509.4" cy="281" r="1.1"/>
<circle id="XMLID_197_" class="st0" cx="509.4" cy="278.4" r="1.1"/>
<ellipse id="XMLID_196_" class="st0" cx="451.7" cy="271.3" rx="0.5" ry="0.7"/>
<ellipse id="XMLID_195_" class="st0" cx="452.9" cy="270.8" rx="0.5" ry="0.7"/>
<ellipse id="XMLID_194_" class="st0" cx="450.8" cy="277.6" rx="0.5" ry="0.7"/>
<ellipse id="XMLID_193_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 887.0982 572.5067)" class="st0" cx="450.3" cy="275.7" rx="0.5" ry="0.7"/>
<ellipse id="XMLID_192_" class="st0" cx="456.5" cy="274.3" rx="0.5" ry="0.7"/>
<ellipse id="XMLID_191_" class="st0" cx="457.2" cy="276.2" rx="0.5" ry="0.7"/>
<ellipse id="XMLID_190_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 978.0084 392.5092)" class="st0" cx="454.9" cy="281.3" rx="0.5" ry="0.7"/>
<ellipse id="XMLID_189_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 979.7283 392.9969)" class="st0" cx="456.1" cy="280.8" rx="0.5" ry="0.7"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 1 areola piercing.svg
|
svg
|
mit
| 1,861 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Boob_hvy_piercing_2_">
<path id="XMLID_188_" class="st0" d="M512.7,279.1c0.1,0-0.5,0.7-0.5,1.7c0,0.9,0.5,2,1.7,2.4c1.4,0.4,2.9-0.9,3.3-2
c0.4-1.1-0.3-2-0.2-2.1c0.2-0.1,1.1,1.2,0.9,2.4c-0.2,1.4-1.7,3.1-3.6,2.8c-1.4-0.2-2.8-1.3-2.8-2.8
C511.3,280.1,512.6,279,512.7,279.1z"/>
<path id="XMLID_187_" class="st0" d="M452.1,276.1c0,0-0.4,0.7-0.4,1.7c-0.1,0.9,0.3,2,0.9,2.4c0.9,0.5,2-0.7,2.3-1.9
c0.3-1.1-0.1-2,0-2.1c0.1-0.1,0.6,1.2,0.5,2.4c-0.2,1.4-1.3,3-2.6,2.8c-0.9-0.2-1.8-1.4-1.7-2.9
C451.2,277.1,452.1,276.1,452.1,276.1z"/>
<path id="XMLID_186_" class="st0" d="M453.1,281.5c0.1-0.1,11.3,16.2,28.4,17.6c18.3,1.4,32.9-14.9,33.1-14.8
c0.2,0.2-13.4,17.1-32.5,15.7C463.7,298.7,453,281.6,453.1,281.5z"/>
<circle id="XMLID_185_" class="st0" cx="512.4" cy="279" r="1"/>
<circle id="XMLID_184_" class="st0" cx="516.8" cy="279" r="1"/>
<circle id="XMLID_183_" class="st0" cx="514.6" cy="276.2" r="1"/>
<circle id="XMLID_182_" class="st0" cx="515" cy="281.2" r="1"/>
<ellipse id="XMLID_181_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 954.8359 458.3842)" class="st0" cx="455" cy="276" rx="0.6" ry="0.8"/>
<ellipse id="XMLID_180_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 825.0893 652.1412)" class="st0" cx="452.1" cy="276" rx="0.6" ry="0.8"/>
<ellipse id="XMLID_179_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 277.3305 773.6921)" class="st0" cx="452.7" cy="274.3" rx="0.6" ry="0.5"/>
<ellipse id="XMLID_178_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 693.3712 -196.8819)" class="st0" cx="453.6" cy="278.1" rx="0.6" ry="0.5"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 1 piercing heavy.svg
|
svg
|
mit
| 2,008 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Boob_piercing_2_">
<g id="XMLID_494_">
<circle id="XMLID_177_" class="st0" cx="512.4" cy="279" r="1"/>
<circle id="XMLID_176_" class="st0" cx="516.8" cy="279" r="1"/>
</g>
<g id="XMLID_491_">
<ellipse id="XMLID_175_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 954.8359 458.3842)" class="st0" cx="455" cy="276" rx="0.6" ry="0.8"/>
<ellipse id="XMLID_174_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 825.0893 652.1412)" class="st0" cx="452.1" cy="276" rx="0.6" ry="0.8"/>
</g>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 1 piercing.svg
|
svg
|
mit
| 929 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Areola_piercing">
<circle id="XMLID_166_" class="st0" cx="522.2" cy="291.4" r="1.3"/>
<circle id="XMLID_165_" class="st0" cx="522.4" cy="295.3" r="1.3"/>
<circle id="XMLID_164_" class="st0" cx="516" cy="284.9" r="1.3"/>
<circle id="XMLID_163_" class="st0" cx="512.2" cy="285.4" r="1.3"/>
<circle id="XMLID_162_" class="st0" cx="517.4" cy="303.2" r="1.3"/>
<circle id="XMLID_161_" class="st0" cx="513.5" cy="303.2" r="1.3"/>
<circle id="XMLID_160_" class="st0" cx="507.8" cy="296.6" r="1.3"/>
<circle id="XMLID_159_" class="st0" cx="507.8" cy="293.2" r="1.3"/>
<ellipse id="XMLID_158_" class="st0" cx="436.2" cy="284.4" rx="0.7" ry="0.9"/>
<ellipse id="XMLID_157_" class="st0" cx="437.7" cy="283.9" rx="0.7" ry="0.9"/>
<ellipse id="XMLID_156_" class="st0" cx="435.1" cy="292.2" rx="0.7" ry="0.9"/>
<ellipse id="XMLID_155_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 854.8103 600.1753)" class="st0" cx="434.5" cy="289.9" rx="0.7" ry="0.9"/>
<ellipse id="XMLID_154_" class="st0" cx="442.2" cy="288.1" rx="0.7" ry="0.9"/>
<ellipse id="XMLID_153_" class="st0" cx="443.1" cy="290.5" rx="0.7" ry="0.9"/>
<ellipse id="XMLID_152_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 954.6022 427.724)" class="st0" cx="440.1" cy="296.9" rx="0.7" ry="0.9"/>
<ellipse id="XMLID_151_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 956.7655 427.9553)" class="st0" cx="441.6" cy="296.3" rx="0.7" ry="0.9"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 2 areola piercing.svg
|
svg
|
mit
| 1,863 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Boob_hvy_piercing">
<path id="XMLID_150_" class="st0" d="M511.9,294.1c0.1,0-0.7,0.9-0.6,2.1c0,1.1,0.7,2.6,2,2.9c1.8,0.5,3.6-1.1,4.1-2.5
c0.4-1.3-0.4-2.6-0.2-2.7s1.3,1.4,1.2,3c-0.2,1.8-2.1,3.8-4.4,3.6c-1.8-0.2-3.5-1.7-3.6-3.5C510.3,295.3,511.8,294,511.9,294.1z"/>
<path id="XMLID_149_" class="st0" d="M436.7,290.5c0,0-0.5,0.9-0.5,2c-0.1,1.1,0.4,2.6,1.2,3c1.2,0.6,2.5-0.9,2.8-2.3
c0.4-1.3-0.1-2.6,0-2.7c0.1-0.1,0.8,1.4,0.6,3c-0.3,1.8-1.7,3.7-3.2,3.4c-1.2-0.3-2.2-1.8-2.1-3.6
C435.6,291.7,436.7,290.5,436.7,290.5z"/>
<path id="XMLID_148_" class="st0" d="M438,297.1c0.1-0.1,14,20.1,35.3,21.9c22.7,1.8,40.8-18.6,41-18.4
c0.2,0.2-16.6,21.2-40.3,19.5C451.2,318.4,437.9,297.2,438,297.1z"/>
<circle id="XMLID_147_" class="st0" cx="511.6" cy="294" r="1.2"/>
<circle id="XMLID_146_" class="st0" cx="517.1" cy="294" r="1.2"/>
<circle id="XMLID_145_" class="st0" cx="514.3" cy="290.6" r="1.2"/>
<circle id="XMLID_144_" class="st0" cx="514.7" cy="296.8" r="1.2"/>
<ellipse id="XMLID_143_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 928.3824 489.6277)" class="st0" cx="440.2" cy="290.3" rx="0.8" ry="1"/>
<ellipse id="XMLID_142_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 791.3661 676.6553)" class="st0" cx="436.7" cy="290.3" rx="0.8" ry="1"/>
<ellipse id="XMLID_141_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 245.4174 775.3432)" class="st0" cx="437.4" cy="288.1" rx="0.8" ry="0.7"/>
<ellipse id="XMLID_140_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 694.4183 -168.4039)" class="st0" cx="438.7" cy="292.9" rx="0.8" ry="0.7"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 2 piercing heavy.svg
|
svg
|
mit
| 2,004 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Boob_piercing">
<g id="XMLID_454_">
<circle id="XMLID_139_" class="st0" cx="511.6" cy="294" r="1.2"/>
<circle id="XMLID_138_" class="st0" cx="517.1" cy="294" r="1.2"/>
</g>
<g id="XMLID_451_">
<ellipse id="XMLID_137_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 928.3824 489.6277)" class="st0" cx="440.2" cy="290.3" rx="0.8" ry="1"/>
<ellipse id="XMLID_136_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 791.3661 676.6553)" class="st0" cx="436.7" cy="290.3" rx="0.8" ry="1"/>
</g>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 2 piercing.svg
|
svg
|
mit
| 932 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Areola_piercing_4_">
<circle id="XMLID_128_" class="st0" cx="527.1" cy="304" r="1.6"/>
<circle id="XMLID_127_" class="st0" cx="527.4" cy="308.5" r="1.6"/>
<circle id="XMLID_126_" class="st0" cx="519.7" cy="296.1" r="1.6"/>
<circle id="XMLID_125_" class="st0" cx="515.1" cy="296.7" r="1.6"/>
<circle id="XMLID_124_" class="st0" cx="521.3" cy="318.2" r="1.6"/>
<circle id="XMLID_123_" class="st0" cx="516.7" cy="318.2" r="1.6"/>
<circle id="XMLID_122_" class="st0" cx="509.7" cy="310.2" r="1.6"/>
<circle id="XMLID_121_" class="st0" cx="509.7" cy="306.1" r="1.6"/>
<ellipse id="XMLID_120_" class="st0" cx="423.4" cy="295.4" rx="0.9" ry="1.1"/>
<ellipse id="XMLID_119_" class="st0" cx="425.1" cy="294.8" rx="0.9" ry="1.1"/>
<ellipse id="XMLID_118_" class="st0" cx="422" cy="304.8" rx="0.9" ry="1.1"/>
<ellipse id="XMLID_117_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 827.7614 624.0518)" class="st0" cx="421.3" cy="302.2" rx="0.9" ry="1.1"/>
<ellipse id="XMLID_116_" class="st0" cx="430.6" cy="300" rx="0.9" ry="1.1"/>
<ellipse id="XMLID_115_" class="st0" cx="431.7" cy="302.8" rx="0.9" ry="1.1"/>
<ellipse id="XMLID_114_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 935.8943 458.1015)" class="st0" cx="428.1" cy="310.4" rx="0.9" ry="1.1"/>
<ellipse id="XMLID_113_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 938.5138 458.1071)" class="st0" cx="429.9" cy="309.8" rx="0.9" ry="1.1"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 3 areola piercing.svg
|
svg
|
mit
| 1,863 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Boob_hvy_piercing_4_">
<path id="XMLID_112_" class="st0" d="M514.6,307.2c0.1,0-0.9,1.1-0.7,2.6c0,1.2,0.9,3.1,2.5,3.6c2.1,0.6,4.4-1.2,4.9-3
c0.5-1.6-0.4-3.1-0.2-3.2c0.2-0.1,1.6,1.7,1.4,3.6c-0.2,2.1-2.6,4.6-5.3,4.3c-2.1-0.2-4.2-2-4.3-4.2
C512.8,308.7,514.5,307.1,514.6,307.2z"/>
<path id="XMLID_111_" class="st0" d="M424,302.7c0,0-0.6,1.1-0.6,2.5c-0.1,1.2,0.4,3.1,1.4,3.6c1.4,0.7,3-1.1,3.5-2.8
c0.4-1.6-0.1-3.1,0-3.2s1,1.7,0.7,3.6c-0.4,2.1-2,4.5-3.8,4.1c-1.4-0.4-2.7-2.1-2.6-4.4C422.6,304.2,424,302.7,424,302.7z"/>
<path id="XMLID_110_" class="st0" d="M425.6,310.8c0.1-0.1,16.8,24.3,42.6,26.4c27.5,2.1,49.2-22.4,49.4-22.2
c0.2,0.2-20.1,25.6-48.7,23.5C441.4,336.5,425.5,310.9,425.6,310.8z"/>
<circle id="XMLID_109_" class="st0" cx="514.3" cy="307.1" r="1.5"/>
<circle id="XMLID_108_" class="st0" cx="520.9" cy="307.1" r="1.5"/>
<circle id="XMLID_107_" class="st0" cx="517.6" cy="303" r="1.5"/>
<circle id="XMLID_106_" class="st0" cx="518.1" cy="310.4" r="1.5"/>
<ellipse id="XMLID_105_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 907.0026 516.2271)" class="st0" cx="428.2" cy="302.5" rx="1" ry="1.2"/>
<ellipse id="XMLID_104_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 763.2371 697.7639)" class="st0" cx="424" cy="302.6" rx="1" ry="1.2"/>
<ellipse id="XMLID_103_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 218.8256 777.2117)" class="st0" cx="424.9" cy="299.8" rx="1" ry="0.9"/>
<ellipse id="XMLID_102_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 695.8627 -144.3055)" class="st0" cx="426.3" cy="305.8" rx="1" ry="0.9"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 3 piercing heavy.svg
|
svg
|
mit
| 2,007 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Boob_piercing_4_">
<g id="XMLID_414_">
<circle id="XMLID_101_" class="st0" cx="514.3" cy="307.1" r="1.5"/>
<circle id="XMLID_100_" class="st0" cx="520.9" cy="307.1" r="1.5"/>
</g>
<g id="XMLID_411_">
<ellipse id="XMLID_99_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 907.0026 516.2271)" class="st0" cx="428.2" cy="302.5" rx="1" ry="1.2"/>
<ellipse id="XMLID_98_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 763.2371 697.7639)" class="st0" cx="424" cy="302.6" rx="1" ry="1.2"/>
</g>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 3 piercing.svg
|
svg
|
mit
| 935 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Areola_piercing_5_">
<circle id="XMLID_90_" class="st0" cx="528.8" cy="333.9" r="2.1"/>
<circle id="XMLID_89_" class="st0" cx="529.2" cy="339.9" r="2.1"/>
<circle id="XMLID_88_" class="st0" cx="519.1" cy="323.7" r="2.1"/>
<circle id="XMLID_87_" class="st0" cx="513.1" cy="324.4" r="2.1"/>
<circle id="XMLID_86_" class="st0" cx="521.3" cy="352.5" r="2.1"/>
<circle id="XMLID_85_" class="st0" cx="515.2" cy="352.5" r="2.1"/>
<circle id="XMLID_84_" class="st0" cx="506.2" cy="342" r="2.1"/>
<circle id="XMLID_83_" class="st0" cx="506.2" cy="336.7" r="2.1"/>
<ellipse id="XMLID_82_" class="st0" cx="393.5" cy="322.8" rx="1.2" ry="1.4"/>
<ellipse id="XMLID_81_" class="st0" cx="395.7" cy="322" rx="1.2" ry="1.4"/>
<ellipse id="XMLID_80_" class="st0" cx="391.7" cy="335.1" rx="1.2" ry="1.4"/>
<ellipse id="XMLID_79_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 765.4359 681.4077)" class="st0" cx="390.8" cy="331.6" rx="1.2" ry="1.4"/>
<ellipse id="XMLID_78_" class="st0" cx="402.9" cy="328.7" rx="1.2" ry="1.4"/>
<ellipse id="XMLID_77_" class="st0" cx="404.3" cy="332.5" rx="1.2" ry="1.4"/>
<ellipse id="XMLID_76_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 891.3522 529.8864)" class="st0" cx="399.6" cy="342.4" rx="1.2" ry="1.4"/>
<ellipse id="XMLID_75_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 894.9265 529.0276)" class="st0" cx="402" cy="341.5" rx="1.2" ry="1.4"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 4 areola piercing.svg
|
svg
|
mit
| 1,847 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Boob_hvy_piercing_5_">
<path id="XMLID_74_" class="st0" d="M512.6,338.1c0.2,0-1.2,1.4-1,3.4c0,1.7,1.2,4.1,3.2,4.6c2.8,0.8,5.8-1.7,6.4-3.9
c0.7-2.1-0.5-4.1-0.3-4.2c0.3-0.1,2.1,2.2,1.8,4.8c-0.3,2.8-3.4,6-7,5.6c-2.8-0.3-5.4-2.7-5.6-5.4
C510.1,340,512.4,337.9,512.6,338.1z"/>
<path id="XMLID_73_" class="st0" d="M394.2,332.3c0,0-0.8,1.4-0.8,3.2c-0.2,1.7,0.5,4.1,1.8,4.8c1.8,1,3.9-1.4,4.4-3.6
c0.5-2.1-0.2-4.1,0-4.2c0.2-0.2,1.2,2.2,1,4.8c-0.4,2.8-2.7,5.9-5.1,5.3c-1.8-0.4-3.5-2.8-3.4-5.8
C392.5,334.3,394.2,332.3,394.2,332.3z"/>
<path id="XMLID_72_" class="st0" d="M396.3,342.8c0.2-0.2,21.9,31.6,55.5,34.4c35.8,2.8,64.2-29.2,64.5-29
c0.3,0.3-26.1,33.4-63.5,30.7C417,376.4,396.2,343,396.3,342.8z"/>
<circle id="XMLID_71_" class="st0" cx="512.1" cy="337.9" r="2"/>
<circle id="XMLID_70_" class="st0" cx="520.8" cy="337.9" r="2"/>
<circle id="XMLID_69_" class="st0" cx="516.5" cy="332.6" r="2"/>
<circle id="XMLID_68_" class="st0" cx="517" cy="342.3" r="2"/>
<ellipse id="XMLID_67_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 856.431 580.3391)" class="st0" cx="399.8" cy="332.1" rx="1.2" ry="1.5"/>
<ellipse id="XMLID_66_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 697.4272 749.1066)" class="st0" cx="394.2" cy="332.2" rx="1.2" ry="1.5"/>
<ellipse id="XMLID_65_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 155.0886 783.064)" class="st0" cx="395.4" cy="328.6" rx="1.2" ry="1.2"/>
<ellipse id="XMLID_64_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 699.5681 -87.4572)" class="st0" cx="397.3" cy="336.2" rx="1.2" ry="1.2"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 4 piercing heavy.svg
|
svg
|
mit
| 2,004 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Boob_piercing_5_">
<g id="XMLID_374_">
<circle id="XMLID_63_" class="st0" cx="512.1" cy="337.9" r="2"/>
<circle id="XMLID_62_" class="st0" cx="520.8" cy="337.9" r="2"/>
</g>
<g id="XMLID_371_">
<ellipse id="XMLID_61_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 856.431 580.3391)" class="st0" cx="399.8" cy="332.1" rx="1.2" ry="1.5"/>
<ellipse id="XMLID_60_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 697.4272 749.1066)" class="st0" cx="394.2" cy="332.2" rx="1.2" ry="1.5"/>
</g>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 4 piercing.svg
|
svg
|
mit
| 934 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Areola_piercing_1_">
<circle id="XMLID_52_" class="st0" cx="534.5" cy="375.3" r="2.8"/>
<circle id="XMLID_51_" class="st0" cx="535.1" cy="383.4" r="2.8"/>
<circle id="XMLID_50_" class="st0" cx="521.5" cy="361.5" r="2.8"/>
<circle id="XMLID_49_" class="st0" cx="513.5" cy="362.5" r="2.8"/>
<circle id="XMLID_48_" class="st0" cx="524.4" cy="400.3" r="2.8"/>
<circle id="XMLID_47_" class="st0" cx="516.3" cy="400.3" r="2.8"/>
<circle id="XMLID_46_" class="st0" cx="504" cy="386.2" r="2.8"/>
<circle id="XMLID_45_" class="st0" cx="504" cy="379" r="2.8"/>
<ellipse id="XMLID_44_" class="st0" cx="352.7" cy="360.5" rx="1.5" ry="1.9"/>
<ellipse id="XMLID_43_" class="st0" cx="355.6" cy="359.3" rx="1.5" ry="1.9"/>
<ellipse id="XMLID_42_" class="st0" cx="350.2" cy="377" rx="1.5" ry="1.9"/>
<ellipse id="XMLID_41_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 679.8478 760.7689)" class="st0" cx="349" cy="372.3" rx="1.5" ry="1.9"/>
<ellipse id="XMLID_40_" class="st0" cx="365.2" cy="368.4" rx="1.5" ry="1.9"/>
<ellipse id="XMLID_39_" class="st0" cx="367.1" cy="373.4" rx="1.5" ry="1.9"/>
<ellipse id="XMLID_38_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 831.1002 629.0543)" class="st0" cx="360.9" cy="386.8" rx="1.5" ry="1.9"/>
<ellipse id="XMLID_37_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 835.9724 627.3287)" class="st0" cx="364" cy="385.6" rx="1.5" ry="1.9"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 5 areola piercing.svg
|
svg
|
mit
| 1,841 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Boob_hvy_piercing_1_">
<path id="XMLID_36_" class="st0" d="M512.7,380.9c0.2,0-1.5,1.9-1.3,4.5c0,2.2,1.5,5.4,4.4,6.2c3.7,1.2,7.7-2.2,8.6-5.2
c1-2.8-0.7-5.4-0.4-5.6s2.8,3,2.5,6.4c-0.4,3.7-4.5,8.1-9.4,7.6c-3.7-0.4-7.4-3.6-7.6-7.4C509.4,383.6,512.6,380.7,512.7,380.9z"/>
<path id="XMLID_35_" class="st0" d="M353.6,373.3c0,0-1.2,1.9-1.2,4.4c-0.2,2.2,0.7,5.4,2.5,6.4c2.5,1.3,5.2-1.9,6-4.9
c0.7-2.8-0.2-5.4,0-5.6c0.2-0.2,1.7,3,1.3,6.4c-0.5,3.7-3.6,7.9-6.8,7.1c-2.5-0.5-4.7-3.7-4.5-7.7
C351.4,375.8,353.6,373.3,353.6,373.3z"/>
<path id="XMLID_34_" class="st0" d="M356.4,387.3c0.2-0.2,29.5,42.5,74.6,46.3c48.2,3.7,86.4-39.3,86.7-38.9
c0.4,0.4-35.2,45-85.4,41.4C384.3,432.4,356.3,387.6,356.4,387.3z"/>
<circle id="XMLID_33_" class="st0" cx="512.1" cy="380.7" r="2.7"/>
<circle id="XMLID_32_" class="st0" cx="523.9" cy="380.7" r="2.7"/>
<circle id="XMLID_31_" class="st0" cx="518" cy="373.6" r="2.7"/>
<circle id="XMLID_30_" class="st0" cx="518.7" cy="386.6" r="2.7"/>
<ellipse id="XMLID_29_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 787.6197 668.8575)" class="st0" cx="361" cy="373" rx="1.7" ry="2"/>
<ellipse id="XMLID_28_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 607.6005 819.9565)" class="st0" cx="353.6" cy="373.1" rx="1.7" ry="2"/>
<ellipse id="XMLID_27_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 67.8569 791.334)" class="st0" cx="355.1" cy="368.1" rx="1.7" ry="1.5"/>
<ellipse id="XMLID_26_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 705.519 -9.3184)" class="st0" cx="357.8" cy="378.5" rx="1.7" ry="1.5"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 5 piercing heavy.svg
|
svg
|
mit
| 1,999 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Boob_piercing_1_">
<g id="XMLID_334_">
<circle id="XMLID_25_" class="st0" cx="512.1" cy="380.7" r="2.7"/>
<circle id="XMLID_24_" class="st0" cx="523.9" cy="380.7" r="2.7"/>
</g>
<g id="XMLID_331_">
<ellipse id="XMLID_23_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 787.6197 668.8575)" class="st0" cx="361" cy="373" rx="1.7" ry="2"/>
<ellipse id="XMLID_22_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 607.6005 819.9565)" class="st0" cx="353.6" cy="373.1" rx="1.7" ry="2"/>
</g>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 5 piercing.svg
|
svg
|
mit
| 931 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Areola_piercing_6_">
<circle id="XMLID_409_" class="st0" cx="540.6" cy="426.4" r="3.7"/>
<circle id="XMLID_408_" class="st0" cx="541.4" cy="437.1" r="3.7"/>
<circle id="XMLID_407_" class="st0" cx="523.5" cy="408.3" r="3.7"/>
<circle id="XMLID_406_" class="st0" cx="512.9" cy="409.6" r="3.7"/>
<circle id="XMLID_405_" class="st0" cx="527.3" cy="459.3" r="3.7"/>
<circle id="XMLID_404_" class="st0" cx="516.6" cy="459.3" r="3.7"/>
<circle id="XMLID_403_" class="st0" cx="500.5" cy="440.8" r="3.7"/>
<circle id="XMLID_402_" class="st0" cx="500.5" cy="431.3" r="3.7"/>
<ellipse id="XMLID_401_" class="st0" cx="301.1" cy="406.9" rx="2" ry="2.5"/>
<ellipse id="XMLID_400_" class="st0" cx="305" cy="405.3" rx="2" ry="2.5"/>
<ellipse id="XMLID_399_" class="st0" cx="297.9" cy="428.6" rx="2" ry="2.5"/>
<ellipse id="XMLID_398_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 572.0126 858.504)" class="st0" cx="296.2" cy="422.5" rx="2" ry="2.5"/>
<ellipse id="XMLID_397_" class="st0" cx="317.7" cy="417.3" rx="2" ry="2.5"/>
<ellipse id="XMLID_396_" class="st0" cx="320.1" cy="424" rx="2" ry="2.5"/>
<ellipse id="XMLID_395_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 754.4891 751.8561)" class="st0" cx="311.9" cy="441.5" rx="2" ry="2.5"/>
<ellipse id="XMLID_394_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 760.9403 748.9292)" class="st0" cx="316.1" cy="439.9" rx="2" ry="2.5"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 6 areola piercing.svg
|
svg
|
mit
| 1,848 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Boob_hvy_piercing_6_">
<path id="XMLID_393_" class="st0" d="M511.9,433.8c0.2,0-2,2.5-1.8,6c0,2.9,2,7.1,5.7,8.2c4.9,1.5,10.2-2.9,11.4-6.9
c1.3-3.7-0.9-7.1-0.5-7.4c0.5-0.2,3.7,4,3.3,8.4c-0.5,4.9-6,10.7-12.4,9.9c-4.9-0.5-9.7-4.7-9.9-9.7
C507.5,437.3,511.7,433.6,511.9,433.8z"/>
<path id="XMLID_392_" class="st0" d="M302.3,423.7c0,0-1.5,2.5-1.5,5.7c-0.2,2.9,0.9,7.1,3.3,8.4c3.3,1.8,6.9-2.5,8-6.4
c0.9-3.7-0.2-7.1,0-7.4s2.2,4,1.8,8.4c-0.7,4.9-4.7,10.4-8.9,9.4c-3.3-0.7-6.2-4.9-6-10.2C299.4,427.1,302.3,423.7,302.3,423.7z"/>
<path id="XMLID_391_" class="st0" d="M306.1,442.2c0.2-0.2,38.9,55.9,98.3,61c63.4,4.9,113.8-51.7,114.2-51.3
c0.5,0.5-46.3,59.2-112.5,54.5C342.7,501.7,305.8,442.6,306.1,442.2z"/>
<circle id="XMLID_390_" class="st0" cx="511.1" cy="433.6" r="3.5"/>
<circle id="XMLID_389_" class="st0" cx="526.6" cy="433.6" r="3.5"/>
<circle id="XMLID_388_" class="st0" cx="518.8" cy="424.2" r="3.5"/>
<circle id="XMLID_387_" class="st0" cx="519.8" cy="441.3" r="3.5"/>
<ellipse id="XMLID_386_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 700.4802 778.1339)" class="st0" cx="312.1" cy="423.4" rx="2.2" ry="2.7"/>
<ellipse id="XMLID_385_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 494.4378 907.0223)" class="st0" cx="302.3" cy="423.5" rx="2.2" ry="2.7"/>
<ellipse id="XMLID_384_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 -41.1507 800.4734)" class="st0" cx="304.4" cy="416.9" rx="2.2" ry="2"/>
<ellipse id="XMLID_383_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 711.6222 88.2673)" class="st0" cx="307.9" cy="430.6" rx="2.2" ry="2"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 6 piercing heavy.svg
|
svg
|
mit
| 2,020 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Boob_piercing_6_">
<g id="XMLID_380_">
<circle id="XMLID_382_" class="st0" cx="511.1" cy="433.6" r="3.5"/>
<circle id="XMLID_381_" class="st0" cx="526.6" cy="433.6" r="3.5"/>
</g>
<g id="XMLID_372_">
<ellipse id="XMLID_379_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 700.4802 778.1339)" class="st0" cx="312.1" cy="423.4" rx="2.2" ry="2.7"/>
<ellipse id="XMLID_375_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 494.4378 907.0223)" class="st0" cx="302.3" cy="423.5" rx="2.2" ry="2.7"/>
</g>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 6 piercing.svg
|
svg
|
mit
| 943 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Areola_piercing_7_">
<circle id="XMLID_452_" class="st0" cx="549.1" cy="472.6" r="4.6"/>
<circle id="XMLID_450_" class="st0" cx="550.1" cy="485.6" r="4.6"/>
<circle id="XMLID_449_" class="st0" cx="528.2" cy="450.5" r="4.6"/>
<circle id="XMLID_448_" class="st0" cx="515.3" cy="452.1" r="4.6"/>
<circle id="XMLID_447_" class="st0" cx="532.8" cy="512.7" r="4.6"/>
<circle id="XMLID_446_" class="st0" cx="519.8" cy="512.7" r="4.6"/>
<circle id="XMLID_445_" class="st0" cx="500.2" cy="490.2" r="4.6"/>
<circle id="XMLID_444_" class="st0" cx="500.2" cy="478.6" r="4.6"/>
<ellipse id="XMLID_443_" class="st0" cx="257.4" cy="448.8" rx="2.4" ry="3"/>
<ellipse id="XMLID_442_" class="st0" cx="262.1" cy="447" rx="2.4" ry="3"/>
<ellipse id="XMLID_441_" class="st0" cx="253.4" cy="475.3" rx="2.4" ry="3"/>
<ellipse id="XMLID_440_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 480.3226 947.0313)" class="st0" cx="251.4" cy="467.8" rx="2.4" ry="3"/>
<ellipse id="XMLID_439_" class="st0" cx="277.5" cy="461.5" rx="2.4" ry="3"/>
<ellipse id="XMLID_438_" class="st0" cx="280.5" cy="469.6" rx="2.4" ry="3"/>
<ellipse id="XMLID_437_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 690.8691 861.9293)" class="st0" cx="270.5" cy="491" rx="2.4" ry="3"/>
<ellipse id="XMLID_436_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 698.752 857.9261)" class="st0" cx="275.6" cy="489.1" rx="2.4" ry="3"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 7 areola piercing.svg
|
svg
|
mit
| 1,848 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Boob_hvy_piercing_7_">
<path id="XMLID_435_" class="st0" d="M514.1,481.6c0.3,0-2.4,3-2.1,7.3c0,3.6,2.4,8.7,7,10c6,1.9,12.4-3.6,13.8-8.4
c1.6-4.6-1.1-8.7-0.6-9c0.6-0.3,4.6,4.8,4,10.3c-0.6,6-7.3,13-15.1,12.1c-6-0.6-11.8-5.7-12.1-11.8
C508.7,485.9,513.8,481.3,514.1,481.6z"/>
<path id="XMLID_434_" class="st0" d="M258.9,469.3c0,0-1.9,3-1.9,7c-0.3,3.6,1.1,8.7,4,10.3c4,2.1,8.4-3,9.7-7.8
c1.1-4.6-0.3-8.7,0-9s2.7,4.8,2.1,10.3c-0.9,6-5.7,12.7-10.8,11.4c-4-0.9-7.6-6-7.3-12.4C255.3,473.5,258.9,469.3,258.9,469.3z"/>
<path id="XMLID_433_" class="st0" d="M263.4,491.9c0.3-0.3,47.3,68.1,119.7,74.3c77.3,6,138.5-63,139.1-62.4
c0.6,0.6-56.4,72.1-137,66.4C308,564.3,263.1,492.3,263.4,491.9z"/>
<circle id="XMLID_432_" class="st0" cx="513.1" cy="481.3" r="4.3"/>
<circle id="XMLID_431_" class="st0" cx="532" cy="481.3" r="4.3"/>
<circle id="XMLID_430_" class="st0" cx="522.5" cy="469.9" r="4.3"/>
<circle id="XMLID_429_" class="st0" cx="523.7" cy="490.7" r="4.3"/>
<ellipse id="XMLID_428_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 627.4544 876.3939)" class="st0" cx="270.8" cy="468.9" rx="2.7" ry="3.3"/>
<ellipse id="XMLID_427_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 397.8483 986.4601)" class="st0" cx="258.8" cy="469.1" rx="2.7" ry="3.3"/>
<ellipse id="XMLID_426_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 -136.2163 811.5947)" class="st0" cx="261.3" cy="461.1" rx="2.7" ry="2.4"/>
<ellipse id="XMLID_425_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 719.8191 173.6128)" class="st0" cx="265.6" cy="477.7" rx="2.7" ry="2.4"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 7 piercing heavy.svg
|
svg
|
mit
| 2,009 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Boob_piercing_7_">
<g id="XMLID_422_">
<circle id="XMLID_424_" class="st0" cx="513.1" cy="481.3" r="4.3"/>
<circle id="XMLID_423_" class="st0" cx="532" cy="481.3" r="4.3"/>
</g>
<g id="XMLID_419_">
<ellipse id="XMLID_421_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 627.4544 876.3939)" class="st0" cx="270.8" cy="468.9" rx="2.7" ry="3.3"/>
<ellipse id="XMLID_420_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 397.8483 986.4601)" class="st0" cx="258.8" cy="469.1" rx="2.7" ry="3.3"/>
</g>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/boob 7 piercing.svg
|
svg
|
mit
| 941 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#010101;}
</style>
<g id="Clavicle">
<path id="XMLID_21_" class="st0" d="M521.3,220.4c3-2.7,20.4-6.8,35.2-9C544.9,214.8,526.5,216.8,521.3,220.4z"/>
<path id="XMLID_20_" class="st0" d="M511.3,220.1c-2.2-2.8-7.6-5.5-20.3-9.3C500.8,215.2,507.3,216.1,511.3,220.1z"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/clavicle.svg
|
svg
|
mit
| 665 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Clit_Hvy_piercing">
<circle id="XMLID_255_" class="st0" cx="488.3" cy="435.6" r="1.2"/>
<circle id="XMLID_254_" class="st0" cx="483.6" cy="436.1" r="1.2"/>
<path id="XMLID_253_" class="st0" d="M484,436.4c-0.1-0.1-3.5,1.9-3.2,5.1c0.3,2.7,2.9,4.5,5.6,4.4c2.6-0.2,4.9-2.4,4.9-4.9
c0-3.2-3.6-5-3.7-4.8s2.5,2.1,2.1,4.5c-0.2,1.6-1.9,3.6-4.1,3.6c-2-0.1-3.4-1.7-3.6-3.2C481.6,438.5,484.1,436.4,484,436.4z"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/clit piercing heavy.svg
|
svg
|
mit
| 831 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
.st1{fill:#4DB748;}
</style>
<g id="Smart_Clit_Piercing">
<circle id="XMLID_310_" class="st0" cx="488.3" cy="435.6" r="1.2"/>
<circle id="XMLID_1_" class="st0" cx="483.6" cy="436.1" r="1.2"/>
<path id="XMLID_311_" class="st0" d="M483.8,436.2c-0.1-0.1-2.3,3.3-1.1,5.5c1.4,2.7,6.4,2.1,7.4-0.8c0.8-2.4-1.6-5.4-1.8-5.3
c-0.1,0.1,1.4,2.5,0.5,4.4c-1,2.1-3.6,2.3-4.9,0.3C482.7,438.5,483.9,436.3,483.8,436.2z"/>
<rect id="XMLID_312_" x="482.9" y="443.1" transform="matrix(0.7488 0.6629 -0.6629 0.7488 418.3834 -210.2396)" class="st1" width="7.3" height="7.3"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/clit piercing smart.svg
|
svg
|
mit
| 973 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#787878;}
</style>
<g id="Clit_Piercing">
<circle id="XMLID_257_" class="st0" cx="488.3" cy="435.6" r="1.2"/>
<circle id="XMLID_256_" class="st0" cx="483.6" cy="436.1" r="1.2"/>
</g>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/clit piercing.svg
|
svg
|
mit
| 580 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#7e543e;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat auburn.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#3F4040;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat black.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#F4F1A3;}
</style>
<path id="Hair_Aft" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat blonde.svg
|
svg
|
mit
| 589 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#4685C5;}
</style>
<path id="Hair_Aft_5_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat blue.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#8D4F21;}
</style>
<path id="Hair_Aft_1_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat brown.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#5f3946;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat burgundy.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#663622;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat chestnut.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#6e4937;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat chocolate.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#a16145;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat copper.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#463325;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat dark brown.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 1000 1000"
style="enable-background:new 0 0 1000 1000;"
xml:space="preserve"
sodipodi:docname="hair aft neat darkbrown.svg"
inkscape:version="0.92.1 r15371"><metadata
id="metadata10"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs8" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1001"
id="namedview6"
showgrid="false"
inkscape:zoom="0.236"
inkscape:cx="-1508.4746"
inkscape:cy="500"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style2">
.st0{fill:#3F4040;}
</style><path
id="Hair_Aft_7_"
class="st0"
d="m 568.83729,121.38644 c 13.5,72.4 34.5,66.5 14,103.3 -43.3,47.7 -90.1,7 -98.1,-9.8 -41.1,-23.4 -0.3,-140.799999 48.3,-130.299999 33.3,7.2 33.3,19.499999 35.8,36.799999"
inkscape:connector-curvature="0"
style="fill:#463325;fill-opacity:1;" /></svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat darkbrown.svg
|
svg
|
mit
| 1,949 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#e6c78c;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat dirty blonde.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#da822d;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat ginger.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#ffdf31;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat golden.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#5FBA46;}
</style>
<path id="Hair_Aft_4_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat green.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#9e9fa4;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat grey.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#8d6f1f;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat hazel.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#D18CBC;}
</style>
<path id="Hair_Aft_6_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat pink.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#fcf3c1;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat platinum blonde.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 1000 1000"
style="enable-background:new 0 0 1000 1000;"
xml:space="preserve"
sodipodi:docname="hair aft neat platinumblonde.svg"
inkscape:version="0.92.1 r15371"><metadata
id="metadata10"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs8" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1001"
id="namedview6"
showgrid="false"
inkscape:zoom="0.236"
inkscape:cx="-1527.5424"
inkscape:cy="500"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style2">
.st0{fill:#3F4040;}
</style><path
id="Hair_Aft_7_"
class="st0"
d="m 568.83729,121.38644 c 13.5,72.4 34.5,66.5 14,103.3 -43.3,47.7 -90.1,7 -98.1,-9.8 -41.1,-23.4 -0.3,-140.799999 48.3,-130.299999 33.3,7.2 33.3,19.499999 35.8,36.799999"
inkscape:connector-curvature="0"
style="fill:#fcf3c1;fill-opacity:1" /></svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat platinumblonde.svg
|
svg
|
mit
| 1,953 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#662d91;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat purple.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BB2027;}
</style>
<path id="Hair_Aft_3_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat red.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#cdc9c6;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat silver.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#e5a88c;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat strawberry-blonde.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 1000 1000"
style="enable-background:new 0 0 1000 1000;"
xml:space="preserve"
sodipodi:docname="hair aft neat strawberry.svg"
inkscape:version="0.92.1 r15371"><metadata
id="metadata10"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs8" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1001"
id="namedview6"
showgrid="false"
inkscape:zoom="0.236"
inkscape:cx="-1656.7797"
inkscape:cy="500"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style2">
.st0{fill:#3F4040;}
</style><path
id="Hair_Aft_7_"
class="st0"
d="m 568.83729,121.38644 c 13.5,72.4 34.5,66.5 14,103.3 -43.3,47.7 -90.1,7 -98.1,-9.8 -41.1,-23.4 -0.3,-140.799999 48.3,-130.299999 33.3,7.2 33.3,19.499999 35.8,36.799999"
inkscape:connector-curvature="0"
style="fill:#e6c78c;fill-opacity:1" /></svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat strawberry.svg
|
svg
|
mit
| 1,949 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#ffffff;}
</style>
<path id="Hair_Aft_7_" class="st0" d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8
c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair aft neat white.svg
|
svg
|
mit
| 592 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#7e543e;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat auburn.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#3F4040;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat black.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#F4F1A3;}
</style>
<path id="Hair_Fore" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat blonde.svg
|
svg
|
mit
| 641 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#4685C5;}
</style>
<path id="Hair_Blue" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat blue.svg
|
svg
|
mit
| 641 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#8D4F21;}
</style>
<path id="Hair_Brown" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat brown.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#5f3946;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat burgundy.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#663622;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat chestnut.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#6e4937;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat chocolate.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#a16145;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat copper.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#463325;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat dark brown.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 1000 1000"
style="enable-background:new 0 0 1000 1000;"
xml:space="preserve"
sodipodi:docname="hair fore neat darkbrown.svg"
inkscape:version="0.92.1 r15371"><metadata
id="metadata10"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs8" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1166"
inkscape:window-height="991"
id="namedview6"
showgrid="false"
inkscape:zoom="0.236"
inkscape:cx="-16.949153"
inkscape:cy="500"
inkscape:window-x="-8"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style2">
.st0{fill:#3F4040;}
</style><path
id="Hair_Black"
class="st0"
d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5 c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"
style="fill:#463325;fill-opacity:1" /></svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat darkbrown.svg
|
svg
|
mit
| 1,937 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#e6c78c;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat dirty blonde.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#da822d;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat ginger.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#ffdf31;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat golden.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#5FBA46;}
</style>
<path id="Hair_Green" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat green.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#9e9fa4;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat grey.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#8d6f1f;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat hazel.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#D18CBC;}
</style>
<path id="Hair_Pink" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat pink.svg
|
svg
|
mit
| 641 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#fcf3c1;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat platinum blonde.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 1000 1000"
style="enable-background:new 0 0 1000 1000;"
xml:space="preserve"
sodipodi:docname="hair fore neat platinum.svg"
inkscape:version="0.92.1 r15371"><metadata
id="metadata10"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs8" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1166"
inkscape:window-height="991"
id="namedview6"
showgrid="false"
inkscape:zoom="0.236"
inkscape:cx="-777.54237"
inkscape:cy="500"
inkscape:window-x="-8"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style2">
.st0{fill:#3F4040;}
</style><path
id="Hair_Black"
class="st0"
d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5 c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"
style="fill:#fcf3c1;fill-opacity:1" /></svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat platinum.svg
|
svg
|
mit
| 1,927 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#662d91;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat purple.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BB2027;}
</style>
<path id="Hair_Red" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat red.svg
|
svg
|
mit
| 640 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#cdc9c6;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat silver.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#e5a88c;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat strawberry-blonde.svg
|
svg
|
mit
| 642 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 1000 1000"
style="enable-background:new 0 0 1000 1000;"
xml:space="preserve"
sodipodi:docname="hair fore neat strawberry.svg"
inkscape:version="0.92.1 r15371"><metadata
id="metadata10"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs8" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1166"
inkscape:window-height="991"
id="namedview6"
showgrid="false"
inkscape:zoom="0.236"
inkscape:cx="-777.54237"
inkscape:cy="500"
inkscape:window-x="-8"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style2">
.st0{fill:#3F4040;}
</style><path
id="Hair_Black"
class="st0"
d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5 c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"
style="fill:#e6c78c;fill-opacity:1" /></svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat strawberry.svg
|
svg
|
mit
| 1,929 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.st0{fill:#ffffff;}
</style>
<path id="Hair_Black" class="st0" d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5
c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"/>
</svg>
|
AshVaris/fc
|
resources/vector/body/addon/hair fore neat white.svg
|
svg
|
mit
| 642 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.