diff --git a/devNotes/AnatomyOfAFreeCitiesEvent.txt b/devNotes/AnatomyOfAFreeCitiesEvent.txt
index 9bb9a9f6cbfb277b8f686a46191c9065abf55c82..864a3f7f8ddf7bfadb9265ba340a5d9553fbd84a 100644
--- a/devNotes/AnatomyOfAFreeCitiesEvent.txt
+++ b/devNotes/AnatomyOfAFreeCitiesEvent.txt
@@ -15,14 +15,14 @@ Most events have some kind of precondition for when they happen. Scheduled event
 
 	NonRandomEvent (26-33)
 	<<elseif (_effectiveWeek == 14) && $badC != 1>>
-	<<set _valid = $slaves.find(function(s) { return s.curatives > 1 || s.inflationType == "curative"; })>>
-	<<if def _valid>>
-		<<set $badC = 1, $Event = "bad curatives">>
-		<<goto "Generic Plot Events">>
-	<<else>>
-		<<set $badC = 1>>
-		<<goto "Nonrandom Event">>
-	<</if>>
+		<<set _valid = $slaves.find(function(s) { return s.curatives > 1 || s.inflationType == "curative"; })>>
+		<<if def _valid>>
+			<<set $badC = 1, $Event = "bad curatives">>
+			<<goto "Generic Plot Events">>
+		<<else>>
+			<<set $badC = 1>>
+			<<goto "Nonrandom Event">>
+		<</if>>
 
 If it is week fourteen and the player hasn't ready seen the event, a check is then made for slaves that either are on curatives or have their implants filled by curatives. If it was successful then load the "bad curatives" generic event, if unsuccessful set the flag anyway and read from the Nonrandom Event passage.
 
@@ -30,21 +30,21 @@ Immediate effects
 
 Every event can have immediate effects, which happen when the event gets chosen. For most events, those are what should happen if the player ignores the event (by hitting "Continue" or the space bar on the keyboard). Choice effects (see below) can override or roll back those.
 
-		reRecuit (4-19)
-		<<if Array.isArray($recruit)>>
-	  <<if $cheatMode == 1>>
-		<<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */
-		''A random recruit event would have been selected from the following:''
-		<br>
-		<<for _i = 0; _i < $recruit.length; _i++>>
-			<<print "[[$recruit[_i]|RE recruit][$recruit = $recruit[" + _i + "]]]">>
+	reRecuit (4-19)
+	<<if Array.isArray($recruit)>>
+		<<if $cheatMode == 1>>
+			<<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */
+			''A random recruit event would have been selected from the following:''
 			<br>
-		<</for>>
-		<br><br>[[Go Back to Random Nonindividual Event|Random Nonindividual Event][$eventSlave = 0]]
-	  <<else>>
-		<<set $recruit = $recruit.random()>>
-		<<goto "RE recruit">>
-	  <</if>>
+			<<for _i = 0; _i < $recruit.length; _i++>>
+				<<print "[[$recruit[_i]|RE recruit][$recruit = $recruit[" + _i + "]]]">>
+				<br>
+			<</for>>
+			<br><br>[[Go Back to Random Nonindividual Event|Random Nonindividual Event][$eventSlave = 0]]
+		<<else>>
+			<<set $recruit = $recruit.random()>>
+			<<goto "RE recruit">>
+		<</if>>
 	<<else>>
 
 	If cheat mode is enabled and the user presses the space bar go back to the start.
@@ -72,17 +72,17 @@ Choices should also be hidden when they run against the game rules, like for exa
 
 	diary (313-325)
 	<<if $dairyFeedersUpgrade == 1>>
-	The milking machines can hold feeders in slaves' mouths and inject drugs into their bodies, ensuring ideal nutrition and production.
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;The feeders are
-	<<if $dairyFeedersSetting == 2>>
-		''industrial.'' [[Moderate|Dairy][$dairyFeedersSetting = 1, $dairyFeedersSettingChanged = -1]]
-	<<elseif $dairyFeedersSetting == 1>>
-		''active.'' [[Inactive|Dairy][$dairyFeedersSetting = 0]]<<if ($seeExtreme != 0) && ($dairyRestraintsSetting == 2)>> | [[Industrial|Dairy][$dairyFeedersSetting = 2, $dairyFeedersSettingChanged = 1]]<</if>>
-	<<else>>
-		''inactive.'' [[Active|Dairy][$dairyFeedersSetting = 1]]
-	<</if>>
+		The milking machines can hold feeders in slaves' mouths and inject drugs into their bodies, ensuring ideal nutrition and production.
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;The feeders are
+		<<if $dairyFeedersSetting == 2>>
+			''industrial.'' [[Moderate|Dairy][$dairyFeedersSetting = 1, $dairyFeedersSettingChanged = -1]]
+		<<elseif $dairyFeedersSetting == 1>>
+			''active.'' [[Inactive|Dairy][$dairyFeedersSetting = 0]]<<if ($seeExtreme != 0) && ($dairyRestraintsSetting == 2)>> | [[Industrial|Dairy][$dairyFeedersSetting = 2, $dairyFeedersSettingChanged = 1]]<</if>>
+		<<else>>
+			''inactive.'' [[Active|Dairy][$dairyFeedersSetting = 1]]
+		<</if>>
 	<<else>>
-	$dairyNameCaps is equipped to feed and clean slaves normally. [[Upgrade the milking machines with intubators|Dairy][$cash -= _Tmult1, $dairyFeedersUpgrade = 1]] //Costs ¤_Tmult1 and will increase upkeep costs//
+		$dairyNameCaps is equipped to feed and clean slaves normally. [[Upgrade the milking machines with intubators|Dairy][$cash -= _Tmult1, $dairyFeedersUpgrade = 1]] //Costs ¤_Tmult1 and will increase upkeep costs//
 	<</if>>
 
 	In order to enable the industrial feeder option both any of the see extreme content options has be enabled and the restraint's have to be already set to industrial.
@@ -100,9 +100,9 @@ For example this cut up version of "paternalist encounter" from REFS (l:106-139)
 
 	<</link>>
 	<<if $cash >= 2000>>
-	<br><<link "Take the poor slave girl into your custody">>
+		<br><<link "Take the poor slave girl into your custody">>
 
-	<br><<link "Publicly confront the citizen">>
+		<br><<link "Publicly confront the citizen">>
 
 	So here you can either, A) "Alert your drones and keep walking", B) if $cash is above 2000 you can take acquire the slave or C) "Publicly confront the citizen".
 
@@ -116,10 +116,10 @@ A choice doesn't need to have a specific effect. If your event has an immediate
 	<</replace>>
 	<</link>>
 	<<if $cash >= 2000>>
-	<br><<link "Take the poor slave girl into your custody">>
-	<<replace "#result">>
-	Confronting the citizen is simplicity in itself; he would not dare defy you under threat of arrest by your security drones and is unlikely to garner any sympathy from the public for his degradationist behaviors. As such, you are able to take civil ownership over the poor slave girl and take her into your care with only minimal compensation to the citizen. As you stride away from her former owner with the girl in your arms, she leans over to plant a chaste kiss of thanks on your cheek.
-	<<set $cash -= 2000>>
+		<br><<link "Take the poor slave girl into your custody">>
+		<<replace "#result">>
+		Confronting the citizen is simplicity in itself; he would not dare defy you under threat of arrest by your security drones and is unlikely to garner any sympathy from the public for his degradationist behaviors. As such, you are able to take civil ownership over the poor slave girl and take her into your care with only minimal compensation to the citizen. As you stride away from her former owner with the girl in your arms, she leans over to plant a chaste kiss of thanks on your cheek.
+		<<set $cash -= 2000>>
 		<<set $activeSlaveOneTimeMaxAge = 22>>
 		<<include "Generate New Slave">>
 		<<set $activeSlave.origin = "She was taken into your custody from an abusive owner.">>
@@ -131,8 +131,8 @@ A choice doesn't need to have a specific effect. If your event has an immediate
 		<<set $activeSlave.health = random(10,20)>>
 		<<include "New Slave Intro">>
 		<<set $nextLink = "AS Dump", $returnTo = "RIE Eligibility Check">>
-	<</replace>>
-	<</link>> // Taking custody of the girl will cost ¤2000. //
+		<</replace>>
+		<</link>> // Taking custody of the girl will cost ¤2000. //
 	<</if>>
 	<br><<link "Publicly confront the citizen">>
 	<<replace "#result">>
diff --git a/devNotes/Deepmurk_Vector_Art_Changelog.txt b/devNotes/Deepmurk_Vector_Art_Changelog.txt
index 29870a747edd4ee8d1d40a1369fb76ac4b32f69e..7763e6726d45363bcd33dcbd24ac6e18c9ae1993 100644
--- a/devNotes/Deepmurk_Vector_Art_Changelog.txt
+++ b/devNotes/Deepmurk_Vector_Art_Changelog.txt
@@ -469,37 +469,37 @@ v0.9 (05-05-2018)
 	-added belly outfit cybersuit
 	-added belly outfit fallen nun (base only)
 	-added belly outfit haltertop dress
-	-added belly outfit	hijab and ayaba
+	-added belly outfit hijab and ayaba
 	-added belly outfit latex catsuit
-	-added belly outfit	leotard
+	-added belly outfit leotard
 	-added belly outfit nice maid
-	-added belly outfit	slutty maid
+	-added belly outfit slutty maid
 	-added belly outfit military (base only)
-	-added belly outfit	minidress
+	-added belly outfit minidress
 	-added belly outfit monokini (base only)
-	-added belly outfit	nice nurse
-	-added belly outfit	slutty nurse (base only)
+	-added belly outfit nice nurse
+	-added belly outfit slutty nurse (base only)
 	-added belly outfit red army uniform (base only)
-	-added belly outfit	schoolgirl (base only)
+	-added belly outfit schoolgirl (base only)
 	-added belly outfit schutzstaffel (base only)
-	-added belly outfit	silken ballgown
+	-added belly outfit silken ballgown
 	-added belly outfit skimpy battldress (base only)
-	-added belly outfit	slave gown
-	-added belly outfit	spats and a tank top (base only)
+	-added belly outfit slave gown
+	-added belly outfit spats and a tank top (base only)
 	-added belly outfit succubus (base only)
-	-added belly outfit	suit nice (base only)
+	-added belly outfit suit nice (base only)
 	-added belly outfit suit slutty (base only)
-	-added belly outfit	bunny outfit
+	-added belly outfit bunny outfit
 	-added belly outfit chattel habit (base only)
-	-added belly outfit	conservative clothing (base only)
-	-added belly outfit	harem gauze (base only)
+	-added belly outfit conservative clothing (base only)
+	-added belly outfit harem gauze (base only)
 	-added belly outfit huipil
-	-added belly outfit	kimono (base only)
+	-added belly outfit kimono (base only)
 	-added belly outfit maternity dress
-	-added belly outfit	slutty qipao
-	-added belly outfit	toga
+	-added belly outfit slutty qipao
+	-added belly outfit toga
 	-added belly outfit western clothing
-	-added belly outfit	penitent nun (base only)
+	-added belly outfit penitent nun (base only)
 	-added belly outfit restrictive latex
 	-added freckles as misc facial feature
 	-added heavy freckles as misc facial feature
diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 63c884e3036e204cf6df16ec70e8feb349c20fad..a51390e2aeea4f0f92ed9728fd72a4601bad752e 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -18448,7 +18448,7 @@ window.rulesAssistantOptions = (function() {
 		constructor() {
 			const pairs = [
 				["No default setting", "no default setting"],
-				["Sizeable", 4],
+				["Sizable", 4],
 				["Cumslave", 6],
 				["Unlimited", 125],
 				["None", 0]
@@ -28723,7 +28723,7 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 				vignettes.push({
-					text: `a few partygoers were so impressed with ${his} provocative teasing that they left ${him} a sizeable tip,`,
+					text: `a few partygoers were so impressed with ${his} provocative teasing that they left ${him} a sizable tip,`,
 					type: "cash",
 					effect: 1,
 				});
@@ -30307,7 +30307,7 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 				vignettes.push({
-					text: `a few partygoers were so impressed with ${his} provocative teasing that they left ${him} a sizeable tip,`,
+					text: `a few partygoers were so impressed with ${his} provocative teasing that they left ${him} a sizable tip,`,
 					type: "cash",
 					effect: 1,
 				});
diff --git a/src/SecExp/attackHandler.tw b/src/SecExp/attackHandler.tw
index cf0e6fcd8bbd1cc06940a4d890b80b63368baf12..3a6fee13345822830ff5f66c5bba53a612be34c9 100644
--- a/src/SecExp/attackHandler.tw
+++ b/src/SecExp/attackHandler.tw
@@ -22,7 +22,7 @@
 	<</if>>
 <</for>>
 
-<<if $battleResult == 1 || $battleResult == -1>>	/* bribery/surrender check */
+<<if $battleResult == 1 || $battleResult == -1>> /* bribery/surrender check */
 	<<if $showBattleStatistics == 1>>
 		bribery chosen
 	<<else>>
@@ -1007,7 +1007,7 @@
 <<set _moraleTroopMod = Math.clamp($troopCount / 100,1,5)>>
 
 <<set _morale = ($secBotsMorale * $deployingBots + $militiaBaseMorale * _militiaMod * $deployingMilitia + $slaveBaseMorale * _slaveMod * $deployingSlaves + $mercBaseMorale * _mercMod * $deployingMercs + $SFBaseMorale * $SFIntervention * _SFMod) / ($deployingBots + $deployingMilitia +$deployingSlaves + $deployingMercs + $SFIntervention)>>
-<<set _morale = _morale + _morale * $secBarracksUpgrades.luxury * 0.05>>	/* barracks bonus */
+<<set _morale = _morale + _morale * $secBarracksUpgrades.luxury * 0.05>> /* barracks bonus */
 <<set _morale *= _moraleTroopMod>>
 <<set _baseHp = ($secBotsBaseHp * $deployingBots + $militiaBaseHp * $deployingMilitia + $slaveBaseHp * $deployingSlaves + $mercBaseHp * $deployingMercs + $SFBaseHp * $SFIntervention) / ($deployingBots + $deployingMilitia +$deployingSlaves + $deployingMercs + $SFIntervention)>>
 
diff --git a/src/SecExp/rebellionReport.tw b/src/SecExp/rebellionReport.tw
index bfcc21bb38764d8342d679058847998fc6e5fbcd..6842d78eb55a2d8e5cd8a54ec89b00f04dbf2abc 100644
--- a/src/SecExp/rebellionReport.tw
+++ b/src/SecExp/rebellionReport.tw
@@ -740,7 +740,7 @@
 		The damage to the structure will be @@.red;costly to repair@@.
 		<<set $cash -= 2000, $PC.engineering += .1>>
 	<<else>>
-		While the penthouse was left without a sizeable garrison, there was no dangerous assault against it. Let's hope we'll always be this lucky.
+		While the penthouse was left without a sizable garrison, there was no dangerous assault against it. Let's hope we'll always be this lucky.
 	<</if>>
 <<elseif $garrison.penthouse == 1>>
 	<<if random(1,100) <= 75>>
@@ -848,7 +848,7 @@
 		The damage to the structure will be @@.red;costly to repair@@.
 		<<set $cash -= 2000, $PC.engineering += .1>>
 	<<else>>
-		There was no sizeable assault against the penthouse. Let's hope we'll always be this lucky.
+		There was no sizable assault against the penthouse. Let's hope we'll always be this lucky.
 	<</if>>
 <<else>>
 	<<if random(1,100) <= 75>>
@@ -954,7 +954,7 @@
 			<</if>>
 		<</if>>
 	<<else>>
-		There was no sizeable assault against the penthouse. Let's hope we'll always be this lucky.
+		There was no sizable assault against the penthouse. Let's hope we'll always be this lucky.
 	<</if>>
 <</if>>
 
diff --git a/src/SecExp/riotControlCenter.tw b/src/SecExp/riotControlCenter.tw
index 5385f0867edb4c89acca05b09c7bda32eb693ce0..0b841bd366eaf64f39a42f0f61501f4dfd1a0880 100644
--- a/src/SecExp/riotControlCenter.tw
+++ b/src/SecExp/riotControlCenter.tw
@@ -87,7 +87,7 @@ The riot control center opens its guarded doors to you. The great chamber inside
 	<</if>>
 	<br>
 	<br>You can send out the squad to slow down the progress of hostile groups within the arcology:
-	 <<link "spend authority" "riotControlCenter">>
+	<<link "spend authority" "riotControlCenter">>
 		<<set $riotUpgrades.rapidUnitCost = 0>>
 	<</link>> |
 	<<link "spend reputation" "riotControlCenter">>
diff --git a/src/SecExp/securityHQ.tw b/src/SecExp/securityHQ.tw
index fddf8c26bc805f7717ce97b176749bb1da304835..bcba1d6f49ba30d577092b0670ba174aca63eb08 100644
--- a/src/SecExp/securityHQ.tw
+++ b/src/SecExp/securityHQ.tw
@@ -199,15 +199,15 @@ You have <span id="secHel"> <<print commaNum($secHelots)>> </span> slaves workin
 /* security level and upgrades */
 Your security level (@@.deepskyblue;<<print $security>>@@)
 <<if $security <= 20>>
-	 is dangerously low.
+	is dangerously low.
 <<elseif $security <= 40>>
-	 is low.
+	is low.
 <<elseif $security <= 60>>
-	 is decent.
+	is decent.
 <<elseif $security <= 80>>
-	 is good.
+	is good.
 <<else>>
-	 is great.
+	is great.
 <</if>>
 Considering the current upgrades the resting level for security is <<print $secRestPoint>>, while the effective maximum level is <<print Math.trunc($secRestPoint * (Math.clamp($secHelots,0,$reqHelots) / $reqHelots))>>.
 
@@ -252,15 +252,15 @@ Considering the current upgrades the resting level for security is <<print $secR
 /* crime level and upgrades */
 Your crime level (@@.orangered;<<print $crime>>@@)
 <<if $crime <= 20>>
-	 is very low.
+	is very low.
 <<elseif $crime <= $upgradeUpkeep>>
-	 is low.
+	is low.
 <<elseif $crime <= 60>>
-	 is average.
+	is average.
 <<elseif $crime <= $upgradeUpkeep>>
-	 is high.
+	is high.
 <<else>>
-	 is extremely high.
+	is extremely high.
 <</if>>
 Considering the current upgrades the maximum level of crime is <<print $crimeCap>>, while the effective maximum level is <<print Math.trunc(Math.clamp($crimeCap + ($crimeCap - $crimeCap * ($secHelots / $reqHelots)),0,100))>>.
 
@@ -318,7 +318,7 @@ Considering the current upgrades the maximum level of crime is <<print $crimeCap
 <br>
 
 <<if $intelUpgrades.sensors == 0>>
-	[[Install perimeter	sensors|securityHQ][$cash -= Math.trunc(5000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), $intelUpgrades.sensors = 1, $recon += 1, $reqHelots += 5, $secHQUpkeep += $upgradeUpkeep, $PC.hacking += 1]]
+	[[Install perimeter sensors|securityHQ][$cash -= Math.trunc(5000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), $intelUpgrades.sensors = 1, $recon += 1, $reqHelots += 5, $secHQUpkeep += $upgradeUpkeep, $PC.hacking += 1]]
 	<br>//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier))>>. Will increase recon capabilities, but will require 5 extra slaves in the headquarters and increases upkeep.//
 <<else>>
 	You have installed perimeter seismic sensors able to detect movement with high accuracy.
diff --git a/src/SecExp/seeUnit.tw b/src/SecExp/seeUnit.tw
index e44e03e59f439acb8d995cd47e0bc17fb9f5102c..95b82e8d174a289d9d17e39c519fadc6d0100694 100644
--- a/src/SecExp/seeUnit.tw
+++ b/src/SecExp/seeUnit.tw
@@ -270,7 +270,7 @@
 			<<set $cash -= $equipUpgradeCost * $slaveUnits[$targetIndex].maxTroops + 1000>>
 		<</link>>
 		Provide special training for the officers and the commissars of the unit.
-		<br>//Costs <<print cashFormat(($equipUpgradeCost * $slaveUnits[$targetIndex].maxTroops) + 1000)>> and will	increase the loyalty of the unit faster.//
+		<br>//Costs <<print cashFormat(($equipUpgradeCost * $slaveUnits[$targetIndex].maxTroops) + 1000)>> and will increase the loyalty of the unit faster.//
 	<<elseif $slaveUnits[$targetIndex].commissars == 1>>
 		<br>The unit has a commissar detachment, keeping under control the ambitions of the unit's officers.
 	<<else>>
diff --git a/src/SecExp/unitsBattleReport.tw b/src/SecExp/unitsBattleReport.tw
index c30475e2cf0eb5bcc1f6c0869ce12686fb435561..5f52786bee79f0e3286d04d56a0ebe056af214a7 100644
--- a/src/SecExp/unitsBattleReport.tw
+++ b/src/SecExp/unitsBattleReport.tw
@@ -16,7 +16,7 @@
 				$militiaUnits[_j].platoonName: no casualties.
 				<<if $militiaUnits[_j].training < 100>>
 					<<if random(1,100) > 60>>
-						 Experience has increased.
+						Experience has increased.
 						<<set $militiaUnits[_j].training += random(5,15) + $majorBattle * random(5,15)>>
 					<</if>>
 				<</if>>
diff --git a/src/SpecialForce/Firebase.tw b/src/SpecialForce/Firebase.tw
index aa0645cbe81e8b15500783a6afabf93dc593cf4c..80ac1c60964532d35f2c13df94188bc6c8449d1f 100644
--- a/src/SpecialForce/Firebase.tw
+++ b/src/SpecialForce/Firebase.tw
@@ -38,7 +38,7 @@
 
 				<<else>>examining a table with a map of the surrounding area, planning manuevers in the event of an attack.<</if>>
 
-			 She notices your entrance and turns her attention to you.
+			She notices your entrance and turns her attention to you.
 
 			<<if $SFColonel.Core == "brazen">>
 
diff --git a/src/SpecialForce/Upgrades.tw b/src/SpecialForce/Upgrades.tw
index a7b2ca06417ac852489e7a9ae689423e7653ecde..f21fd9b586cf55d8819871c8326aee4295d13656 100644
--- a/src/SpecialForce/Upgrades.tw
+++ b/src/SpecialForce/Upgrades.tw
@@ -24,13 +24,13 @@
 
 			<<else>>//Cannot afford to upgrade the Firebase.//<</if>>
 
-			 //Costs @@.yellowgreen;<<print cashFormat(_cF)>>@@ //
+			//Costs @@.yellowgreen;<<print cashFormat(_cF)>>@@ //
 
 		<<elseif $SFUnit.Firebase == _FU>>//The Firebase has been fully upgraded.//
 
 		<<else>>//More upgrades are required to unlock the next tier.//
 
-		<</if>>	<span style="float:right;"> <<print progress($SFUnit.Firebase)>> </span><br>
+		<</if>> <span style="float:right;"> <<print progress($SFUnit.Firebase)>> </span><br>
 
 
 
@@ -44,7 +44,7 @@
 
 			<<else>>//Cannot afford to upgrade the Armory.//<</if>>
 
-			 //Costs @@.yellowgreen;<<print cashFormat(_cA)>>@@ //
+			//Costs @@.yellowgreen;<<print cashFormat(_cA)>>@@ //
 
 		<<elseif $SFUnit.Armoury == _AU>>//The Armory has been fully upgraded.//
 
@@ -64,7 +64,7 @@
 
 			<<else>>//Cannot afford to upgrade the Drug Lab.//<</if>>
 
-			 //Costs @@.yellowgreen;<<print cashFormat(_cDrugs)>>@@ //
+			//Costs @@.yellowgreen;<<print cashFormat(_cDrugs)>>@@ //
 
 		<<elseif $SFUnit.Drugs == _DrugsU>>//The Drug Lab has been fully upgraded.//
 
@@ -80,11 +80,11 @@
 
 			<<if $cash >= _cDrones>>
 
-				<<link "Upgrade Drone Bay">><<set $SF.U = 1, $SFUnit.Drones++, $cash -= _cDrones>> <<goto "Firebase">>	<</link>>
+				<<link "Upgrade Drone Bay">><<set $SF.U = 1, $SFUnit.Drones++, $cash -= _cDrones>> <<goto "Firebase">> <</link>>
 
 			<<else>>//Cannot afford to upgrade the Drone Bay.//<</if>>
 
-			 //Costs @@.yellowgreen;<<print cashFormat(Math.ceil(45000*_Env*(1.15+($SF.Units/10))*(1.15+($SFUnit.Drones/100))*HSM()))>>@@ // <span style="float:right;"> <<print progress($SFUnit.Drones)>> </span>
+			//Costs @@.yellowgreen;<<print cashFormat(Math.ceil(45000*_Env*(1.15+($SF.Units/10))*(1.15+($SFUnit.Drones/100))*HSM()))>>@@ // <span style="float:right;"> <<print progress($SFUnit.Drones)>> </span>
 
 		<<elseif $SFUnit.Drones == _DU>>//The Drone Bay has been fully upgraded.//<span style="float:right;"> <<print progress($SFUnit.Drones)>> </span>
 
diff --git a/src/SpecialForce/WeeklyChoices.tw b/src/SpecialForce/WeeklyChoices.tw
index 28518ed6125f188312380d783c8c5df2ac5704f8..24b52c140e40c3bbc74430019b295561ce22ecd9 100644
--- a/src/SpecialForce/WeeklyChoices.tw
+++ b/src/SpecialForce/WeeklyChoices.tw
@@ -44,7 +44,7 @@
 <</if>>
 
 <<if $SFColonel.Talk === 0 && $SFColonel.Fun === 0 && $SFTradeShow.CanAttend === -1>> <span id="result0">
-<br><br>If you need me for anything else, let me know."<br>
+	<br><br>If you need me for anything else, let me know."<br>
 	<<if $SFColonel.Status >= 25>>
 		<<link "Walk with the Colonel on the surface.">> <<replace "#result0">>
 			<<set $SFColonel.Talk = 1>>
@@ -99,12 +99,13 @@
 				<<elseif $PC.medicine >= 30>>
 					Your moderate surgical skill ensures that you can close the citizen's wound, though not without likely scarring.
 				<<elseif $PC.medicine >= 10>>
-					Your basic surgical skill in medicine is sufficient only to stabilize the citizen's wounds before medical assistnance arrives.
+					Your basic surgical skill in medicine is sufficient only to stabilize the citizen's wounds before medical assistance arrives.
 				<<else>>
 					Your total lack of surgical skill causes the death of the citizen through repeated medical blunders.
 					<<set $arcologies[0].prosperity -= .25>><</if>>
 				<</if>>
-			<<set $SFColonel.Status += 2>> <</replace>> <</link>>
+			<<set $SFColonel.Status += 2>> <</replace>> 
+		<</link>>
 	<</if>>
 
 	<br> <<link "Talk in $SF.Lower's HQ.">> <<replace "#result0">> <span id="result1">
diff --git a/src/debugging/debugWidgets.tw b/src/debugging/debugWidgets.tw
index b4d13efc7b22536bd3b063747a4c3eaadd47dab3..ef640d1eacc76f2dc5ba350918d032cc65dc3032 100644
--- a/src/debugging/debugWidgets.tw
+++ b/src/debugging/debugWidgets.tw
@@ -22,7 +22,7 @@ The included "Go Back" link is intended to replace the usual NextButton.
 <br>
 Differences:
 <<if _diffArrayFromNew.length > 0>>
-	<<for _i = 0; _i < _diffArrayFromNew.length; _i++>>	/* Print variable names, and changed values. Will output the new values correctly, may not output old values correctly */
+	<<for _i = 0; _i < _diffArrayFromNew.length; _i++>> /* Print variable names, and changed values. Will output the new values correctly, may not output old values correctly */
 		<<if _diffArrayFromNew[_i].variable != "nextButton" && _diffArrayFromNew[_i].variable != "nextLink" && _diffArrayFromNew[_i].variable != "args">>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;Variable: <<print _diffArrayFromNew[_i].variable>>, Original Value: <<print _diffArrayFromNew[_i].oldVal>>, New Value: <<print _diffArrayFromNew[_i].newVal>>
 		<</if>>
diff --git a/src/events/intro/economyIntro.tw b/src/events/intro/economyIntro.tw
index 6eba2ad983b806b502e4b03a15b0485a0da8c2c4..48ee8f0b43fc1446f5cadfcfdb5d6365e9928080 100644
--- a/src/events/intro/economyIntro.tw
+++ b/src/events/intro/economyIntro.tw
@@ -49,7 +49,7 @@
 	<</if>>
 	<br>
 	<br>[[Play with static economy|Economy Intro][$difficultySwitch = 0]]
-	 */
+	*/
 
 	<br>
 	<br>[[Next|Trade Intro]]
diff --git a/src/facilities/nursery/nursery.tw b/src/facilities/nursery/nursery.tw
index 9e9c0c243619ac1191e988fb32f9240a5d433f06..94c8add244f7427e056697e3080002c7dc97e362 100644
--- a/src/facilities/nursery/nursery.tw
+++ b/src/facilities/nursery/nursery.tw
@@ -365,7 +365,7 @@ Reserve an eligible mother-to-be's child to be placed in a room upon birth. Of $
 <</if>>
 <<if $reservedChildrenNursery != 0 || _childrenReservedNursery == 1>> /* the oops I made it go negative somehow button */
 	<br>
-	 <<link "Clear all reserved children">>
+	<<link "Clear all reserved children">>
 		<<for _u = 0; _u < _SL; _u++>>
 			<<if $slaves[_u].reservedChildrenNursery != 0>>
 				<<set $slaves[_u].reservedChildrenNursery = 0>>
@@ -374,7 +374,7 @@ Reserve an eligible mother-to-be's child to be placed in a room upon birth. Of $
 		<<set $PC.reservedChildrenNursery = 0>>
 		<<set $reservedChildrenNursery = 0>>
 		<<goto "Nursery">>
-	 <</link>>
+	<</link>>
 <</if>>
 
 <br><br>
@@ -407,17 +407,17 @@ Target age for release: <<textbox "$targetAgeNursery" $targetAgeNursery "Nursery
 <br>
 <<if $nurseryMuscles == 1>>
 	<<if $nurseryMusclesSetting == 2>>
-		Children are purposefully getting more excercise than recommended; excessive muscle gain likely.
-		[[Limit excercise|Nursery][$nurseryMusclesSetting = 1]] | [[Disable|Nursery][$nurseryMusclesSetting = 0]]
+		Children are purposefully getting more exercise than recommended; excessive muscle gain likely.
+		[[Limit exercise|Nursery][$nurseryMusclesSetting = 1]] | [[Disable|Nursery][$nurseryMusclesSetting = 0]]
 	<<elseif $nurseryMusclesSetting == 1>>
-		Excercise is being carefully managed; children will be raised with average strength.
-		[[More excercise|Nursery][$nurseryMusclesSetting = 2]] | [[Disable|Nursery][$nurseryMusclesSetting = 0]]
+		Exercise is being carefully managed; children will be raised with average strength.
+		[[More exercise|Nursery][$nurseryMusclesSetting = 2]] | [[Disable|Nursery][$nurseryMusclesSetting = 0]]
 	<<elseif $nurseryMusclesSetting == 0>>
-		Children are no getting any excercise; they will likely be extremely weak.
+		Children are no getting any exercise; they will likely be extremely weak.
 		[[Allow|Nursery][$nurseryMusclesSetting = 1]]
 	<</if>>
 <<else>>
-	The children are not getting any excercise, meaning they will likely end up becoming weak and frail.
+	The children are not getting any exercise, meaning they will likely end up becoming weak and frail.
 	[[Allow the children to remain active|Nursery][$cash -= Math.trunc(1000*$upgradeMultiplierArcology), $nurseryMuscles = 1]] //Costs <<print cashFormat(Math.trunc(1000*$upgradeMultiplierArcology))>> and will increase upkeep costs//
 <</if>>
 <br>
diff --git a/src/gui/Encyclopedia/encyclopedia.tw b/src/gui/Encyclopedia/encyclopedia.tw
index 404a3ef2eb4c0c1ce840bcb754e5ef21e150ed4c..9ba39ede502bd249f548856b466c3bcd38d966d3 100644
--- a/src/gui/Encyclopedia/encyclopedia.tw
+++ b/src/gui/Encyclopedia/encyclopedia.tw
@@ -2184,7 +2184,7 @@ LORE: FREE CITIES CULTURE TOMORROW
 
  <br><br>For the first time in modern memory, people - slaves - in the Free Cities are, in large numbers, doing exactly what their doctors recommend. Properly managed slaves eat right, exercise regularly, and do not smoke, drink, or do recreational drugs. These simple but revolutionary changes mean that the more valuable classes of slave are healthier, on average, than any group of human beings has ever been.
 
- <br><br>Naturally, fetishism, competitiveness, and leisure have intersected to create in the Free Cities a constant escalation of physical one-upsmanship when it comes to the training of slaves. Wonderfully muscled specimens have become very common, with feats of athletic prowess cited alongside sexual accomplishments without any distinction. The arcology owners most @@.hotpink;[[devoted|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]]@@ to the human form are creating societies of uniform physical perfection unlike anything in human history.
+ <br><br>Naturally, fetishism, competitiveness, and leisure have intersected to create in the Free Cities a constant escalation of physical oneupmanship when it comes to the training of slaves. Wonderfully muscled specimens have become very common, with feats of athletic prowess cited alongside sexual accomplishments without any distinction. The arcology owners most @@.hotpink;[[devoted|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]]@@ to the human form are creating societies of uniform physical perfection unlike anything in human history.
 
  <br><br>&nbsp;&nbsp;&nbsp;&nbsp;-- Lawrence, J. K., and Bolingbroke, D. S., __Trends in Free Cities Culture, 2031__ //Journal of Modern Social Sciences, International Edition, February 2032////
 
@@ -2317,7 +2317,7 @@ LORE: INTERVIEWS
  <br>Well, Sir, those are my roles as one of the Prophet's many slave acolytes. In daily life, do you mean, Sir? Well, as I said I exercise a great deal. To maintain my body I must eat a lot, so I have to work hard or I will become fat. Other than that, I live up above us, Sir, in a lower level of the Prophet's penthouse, in a room with my wife. It's a simple life.
 
  <br><br>//Your wife?//
- <br>Yes, Sir, my wife Perserverance. There she is, Sir, on the other side of the plaza. One of the ones dressed like me. She has bigger boobs, but she isn't as pregnant right now. [points]
+ <br>Yes, Sir, my wife Perseverance. There she is, Sir, on the other side of the plaza. One of the ones dressed like me. She has bigger boobs, but she isn't as pregnant right now. [points]
 
  <br><br>//She looks a lot like you.//
  <br>Well, she should, Sir, we're sisters. The Prophet says that slave marriages between sisters are very holy, as long as no seed passes between them, and of course no seed can pass between us, because we both have pussies. I love her very much.
@@ -2929,7 +2929,7 @@ Error: bad title.
 <<if ["Slaves","Living Conditions","Enslaving People","From Rebellious to Devoted","Health","Devotion","Trust","Drugs and Their Effects","Gender","Nymphomania","Indentured Servants","Menial Slaves","Fuckdolls","Lingua Franca","Slave Score (Attractiveness)","Slave Score (Sexual)","The Corporation", "Gingering"].includes($encyclopedia)>>
 	<br><br>//Slaves//<br>
 	[[Enslaving People|Encyclopedia][$encyclopedia = "Enslaving People"]]
-	| [[Living Conditions|Encyclopedia][$encyclopedia = 	"Living Conditions"]]
+	| [[Living Conditions|Encyclopedia][$encyclopedia = "Living Conditions"]]
 	| [[Health|Encyclopedia][$encyclopedia = "Health"]]
 	| @@.hotpink;[[Devotion|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]]@@
 	| @@.mediumaquamarine;[[trust|Encyclopedia][$encyclopedia = "Trust"]]@@
diff --git a/src/interaction/researchLab.tw b/src/interaction/researchLab.tw
index 09a5cc2f0c7f4cdfdf9cbd2d8e2ce8138e19980a..184b9bdef8f8c85f08e6f75efd77c98690f24dbf 100644
--- a/src/interaction/researchLab.tw
+++ b/src/interaction/researchLab.tw
@@ -69,9 +69,9 @@
 			| [[x10|Research Lab][$researchLab.hired += 10,$cash -= 50000]]
 		<</if>>
 		scientists.<br>
-		 &nbsp;&nbsp;&nbsp;//Each scientist will require an initial fee of <<print cashFormat(5000)>> and incur <<print cashFormat(300)>> weekly.//
-		 <br>
-		 <<if $helots > 0>>
+		&nbsp;&nbsp;&nbsp;//Each scientist will require an initial fee of <<print cashFormat(5000)>> and incur <<print cashFormat(300)>> weekly.//
+		<br>
+		<<if $helots > 0>>
 			Assign [[x1|Research Lab][$researchLab.menials += 1,$helots -= 1]]
 			<<if ($researchLab.maxSpace - ($researchLab.hired + $researchLab.menials)) >= 5 && $helots >= 5>>
 				| [[x5|Research Lab][$researchLab.menials += 5,$helots -= 5]]
diff --git a/src/js/rulesAssistantOptions.tw b/src/js/rulesAssistantOptions.tw
index ca8a1473285ec7d36a186e4bc13cc666a159a87f..145dbbe763a66bfb941c18081b3ba9b8c7246eb7 100644
--- a/src/js/rulesAssistantOptions.tw
+++ b/src/js/rulesAssistantOptions.tw
@@ -1594,7 +1594,7 @@ window.rulesAssistantOptions = (function() {
 		constructor() {
 			const pairs = [
 				["No default setting", "no default setting"],
-				["Sizeable", 4],
+				["Sizable", 4],
 				["Cumslave", 6],
 				["Unlimited", 125],
 				["None", 0]
diff --git a/src/js/vignettes.tw b/src/js/vignettes.tw
index db6775f40dc6b43ad01d8c3e6d81902379ed2556..21d474568562dc7cd436513e4d68586965561a32 100644
--- a/src/js/vignettes.tw
+++ b/src/js/vignettes.tw
@@ -622,7 +622,7 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 				vignettes.push({
-					text: `a few partygoers were so impressed with ${his} provocative teasing that they left ${him} a sizeable tip,`,
+					text: `a few partygoers were so impressed with ${his} provocative teasing that they left ${him} a sizable tip,`,
 					type: "cash",
 					effect: 1,
 				});
@@ -2206,7 +2206,7 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 				vignettes.push({
-					text: `a few partygoers were so impressed with ${his} provocative teasing that they left ${him} a sizeable tip,`,
+					text: `a few partygoers were so impressed with ${his} provocative teasing that they left ${him} a sizable tip,`,
 					type: "cash",
 					effect: 1,
 				});
diff --git a/src/npc/descriptions/fAssistedSex.tw b/src/npc/descriptions/fAssistedSex.tw
index 23da2dfaf7d2d4969551171ca3fd8b6a0bf2e45d..ceda7ebf1cb2536cb4eed79f44f454203a5868a8 100644
--- a/src/npc/descriptions/fAssistedSex.tw
+++ b/src/npc/descriptions/fAssistedSex.tw
@@ -68,7 +68,7 @@ $he draws toward you, half-floating on a river of silent, groping hands. When $h
 		When you feel your own orgasm approaching, you pull out, ejaculating
 	<<elseif canDoAnal($activeSlave)>>
 		When you feel the tension within you reaching its apex, you signal to $his servants to hold $him in place. With $his silent menials, still as statues, anchoring $his bloated body at the perfect angle for fucking while contorting their anonymous bodies to frame $him in a manner that maximizes $his visual attractiveness, you grab hold of $his flanks and ram into $his asshole, driving $him to the first of many orgasms with just a few casual thrusts.
-		 <<= AnalVCheck()>>
+		<<= AnalVCheck()>>
 		When you feel your own orgasm approaching, you pull out, ejaculating
 	<<else>>
 		When you feel the tension with your reaching its apex, you signal to $his servants and they pull him forward. You ejaculate
diff --git a/src/npc/fFeelings.tw b/src/npc/fFeelings.tw
index 5d83c4bc8c0bce8194d862e452aa022d5b43d8c7..821749a25c3bc01744a8da8cc4d8071bd831c7e6 100644
--- a/src/npc/fFeelings.tw
+++ b/src/npc/fFeelings.tw
@@ -51,7 +51,7 @@
 	<<if !canTalk($activeSlave)>>
 		$He gestures that you're $his beloved <<Master>>. $He continues to sign<<if $activeSlave.accent == 3>>, using gestures to supplant $his poor $language<</if>>:
 	<<else>>
-		"<<if ($activeSlave.relationship == -3)>>I'm content with being your wife,<<else>>You're<</if>> my beloved <<Master>>, and you know	what'<<s>> be<<s>>t for me," $he <<say>>s.
+		"<<if ($activeSlave.relationship == -3)>>I'm content with being your wife,<<else>>You're<</if>> my beloved <<Master>>, and you know what'<<s>> be<<s>>t for me," $he <<say>>s.
 	<</if>>
 <<else>>
 	<<if !canTalk($activeSlave)>>
@@ -149,7 +149,7 @@ My favorite part of my body i<<s>>
 		<<elseif $PC.dick == 1>>
 			my tummy--and my womb! The slo<<sh>>y feeling when I'm all packed full of cum in both end<<s>> get<<s>> me <<s>>o incredibly horny. Sometimes I wonder what it would be like if I were ju<<s>>t a puffed up, cum-baloon of a woman, helple<<ss>> and filled with cum, over, and over, and - I'm <<s>>orry, <<Master>>. I'm being weird again, aren't I?
 		<<else>>
-			my mouth, I love how it	feel<<s>> to - to eat pu<<ss>>y, <<Master>>. I love eating out your pu<<ss>>y. E<<s>>pecially when it<<s>> been filled up with <<s>>ome yummy cum. Maybe you could let me eat cum out of your pu<<ss>>y soon?
+			my mouth, I love how it feel<<s>> to - to eat pu<<ss>>y, <<Master>>. I love eating out your pu<<ss>>y. E<<s>>pecially when it<<s>> been filled up with <<s>>ome yummy cum. Maybe you could let me eat cum out of your pu<<ss>>y soon?
 		<</if>>
 	<<elseif ($activeSlave.sexualFlaw == "attention whore") && ($activeSlave.fetishStrength > 95)>>
 		my whole $activeSlave.skin body, and whatever part of me i<<s>> be<<s>>t u<<s>>ed to make me look like a total <<s>>lut.
@@ -235,7 +235,7 @@ My favorite part of my body i<<s>>
 		<<if $activeSlave.anus > 1>>
 			taking big dick<<s>> up my a<<ss>> i<<s>> lot<<s>> of fun.
 		<<elseif $activeSlave.anus > 0>>
-			taking cock in my tight	a<<ss>> i<<s>> lot<<s>> of fun.
+			taking cock in my tight a<<ss>> i<<s>> lot<<s>> of fun.
 		<<else>>
 			I love my little virgin butthole, but I can't wait to get a<<ss>>raped for the fir<<s>>t time.
 		<</if>>
@@ -274,9 +274,9 @@ My favorite part of my body i<<s>>
 		<<if $activeSlave.lips > 40>>
 			my <<if $activeSlave.lips > 70>>huge <</if>>lip<<s>>, I like how everyone expect<<s>> to fa<<c>>efuck me.
 		<<elseif $PC.dick == 1>>
-			my mouth, I love how it	feel<<s>> to <<s>>uck dicks and drink all the cum.
+			my mouth, I love how it feel<<s>> to <<s>>uck dicks and drink all the cum.
 		<<else>>
-			my mouth, I love how it	feel<<s>> to eat pu<<ss>>y.
+			my mouth, I love how it feel<<s>> to eat pu<<ss>>y.
 		<</if>>
 	<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishStrength > 60)>>
 		my whole $activeSlave.skin body, I like how it feel<<s>> when everyone stare<<s>> at me getting fucked.
@@ -319,7 +319,7 @@ My favorite part of my body i<<s>>
 		<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls > 4)>>
 			my big breeder ball<<s>>, I imagine knocking another <<s>>lave up all the time.
 		<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls > 0)>>
-			my cock, I imagine knocking another	<<s>>lave up all the time.
+			my cock, I imagine knocking another <<s>>lave up all the time.
 		<<elseif ($activeSlave.weight > 95)>>
 			my big tummy, I can imagine my<<s>>elf pregnant.
 		<<elseif ($activeSlave.weight > 10)>>
@@ -558,7 +558,7 @@ My favorite part of my body i<<s>>
 			<<if $PC.vagina == 1>>Um, and your vagina, too.<</if>>
 		<</if>>
 	<<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishStrength > 60)>>
-		<<if $PC.dick == 1>>I love your cock, <<Master>>," $he <<say>>s	eagerly. "I<<if $activeSlave.anus == 0 || !canDoAnal($activeSlave)>>'d<</if>> love it in my backdoor.<</if>>
+		<<if $PC.dick == 1>>I love your cock, <<Master>>," $he <<say>>s eagerly. "I<<if $activeSlave.anus == 0 || !canDoAnal($activeSlave)>>'d<</if>> love it in my backdoor.<</if>>
 	<<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60)>>
 		<<if $PC.belly >= 10000>>
 			You, uh." $He looks down, hesitating. "Your belly i<<s>> <<s>>o big and wonderful, I ju<<s>>t want to feel it,
@@ -576,7 +576,7 @@ My favorite part of my body i<<s>>
 		<<if $PC.boobsBonus == 3>>Your brea<<s>>t<<s>> are giant, <<Master>>," $he <<say>>s eagerly. "I just want to bury my fa<<c>>e in them.
 		<<elseif $PC.boobsBonus == 2>>Your brea<<s>>t<<s>> are huge, <<Master>>," $he <<say>>s eagerly. "I love them.
 		<<elseif $PC.boobsBonus == 1>>Your brea<<s>>t<<s>> are so big and lovely, <<Master>>," $he <<say>>s eagerly. "I love them.
-		<<elseif $PC.boobs == 1>>Your brea<<s>>t<<s>> are incredible, <<Master>>," $he <<say>>s	eagerly. "I love them.
+		<<elseif $PC.boobs == 1>>Your brea<<s>>t<<s>> are incredible, <<Master>>," $he <<say>>s eagerly. "I love them.
 		<</if>>
 	<<elseif ($activeSlave.attrKnown == 1) && ($activeSlave.attrXX > 80)>>
 		<<if $PC.boobs == 1>>You're, uh." $He looks down, hesitating. "You're really hot, <<Master>>.<</if>>
@@ -599,7 +599,7 @@ My favorite part of my body i<<s>>
 			<<case "masochist">>
 				Being gelded," $he shivers, "hurt<<s>> <<s>>ometime<<s>>. Make<<s>> people want to hurt you. I like it.
 			<<case "humiliation">>
-				I don't mind being clipped." $He shivers. "Everyone	know<<s>>! It'<<s>> <<s>>o embarra<<ss>>ing.
+				I don't mind being clipped." $He shivers. "Everyone know<<s>>! It'<<s>> <<s>>o embarra<<ss>>ing.
 			<<case "dom">>
 				I <<s>>ometime<<s>> mi<<ss>> my ball<<s>>. It'<<s>> harder to be dominant without them.
 			<<case "sadist">>
@@ -607,7 +607,7 @@ My favorite part of my body i<<s>>
 			<<case "pregnancy">>
 				I <<s>>ometime<<s>> mi<<ss>> my ball<<s>>. I <<s>>till fanta<<s>>ize about getting the other girl<<s>> pregnant.
 			<<case "cumslut">>
-				I barely cum without my	ball<<s>>. I mi<<ss>>, you know, cleaning up after my<<s>>elf. With my mouth.
+				I barely cum without my ball<<s>>. I mi<<ss>>, you know, cleaning up after my<<s>>elf. With my mouth.
 			<<case "buttslut">>
 				I really like being clipped. I think it'<<s>> le<<ss>> di<<s>>tracting, you know, from my butthole. <<if $activeSlave.prostate > 0>>And I <<s>>till have my pro<<s>>tate which i<<s>> what matter<<s>>.<</if>>
 			<<case "boobs">>
@@ -752,7 +752,7 @@ My favorite part of my body i<<s>>
 <<case "intensive penis enhancement">>
 	<<if ($activeSlave.dick > 0)>>
 		<<if ($activeSlave.balls == 0)>>
-			I can feel my dick growing, <<Master>>, but	it'<<s>> <<s>>till <<s>>o <<s>>oft. I gue<<ss>> it'll just flop around more when I get buttfucked.
+			I can feel my dick growing, <<Master>>, but it'<<s>> <<s>>till <<s>>o <<s>>oft. I gue<<ss>> it'll just flop around more when I get buttfucked.
 		<<elseif ($activeSlave.fetishKnown == 1)>>
 			<<if ($activeSlave.fetish == "sadist") && ($activeSlave.fetishStrength > 60)>>
 				I can feel my dick growing, <<Master>>. I can ju<<s>>t imagine pushing it into <<s>>ome poor <<s>>truggling girl'<<s>> a<<ss>>hole.
@@ -816,7 +816,7 @@ My favorite part of my body i<<s>>
 <<case "intensive testicle enhancement">>
 	My ball<<s>> feel incredibly full, <<Master>>. They're really uncomfortable.
 	<<if ($activeSlave.fetishKnown == 1) && (($activeSlave.fetish == "dom") || ($activeSlave.fetish == "sadist")) && ($activeSlave.fetishStrength > 60)>>
-		But I can't wait to	for<<c>>e a bitch to take the whole load.
+		But I can't wait to for<<c>>e a bitch to take the whole load.
 	<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60)>>
 		I feel like I could fill a girl'<<s>> womb with cum with one orga<<s>>m.
 	<<else>>
@@ -1064,14 +1064,14 @@ My favorite part of my body i<<s>>
 <<elseif ($activeSlave.oralSkill + $activeSlave.vaginalSkill + $activeSlave.analSkill) >= 180>>
 	I'm really proud of my <<s>>e<<x>> <<s>>kill<<s>>, it's ni<<c>>e to be good at what you do.
 <<elseif ($activeSlave.whoreSkill >= 100)>>
-	I'm really proud of my whoring <<s>>kill<<s>>, pro<<s>>titution i<<s>> ju<<s>>t	a job like any other to me.
+	I'm really proud of my whoring <<s>>kill<<s>>, pro<<s>>titution i<<s>> ju<<s>>t a job like any other to me.
 <<elseif ($activeSlave.entertainSkill >= 100)>>
 	I'm really proud of my <<s>>kill<<s>>, I feel like I can make anyone want me.
 <<elseif ($activeSlave.analSkill >= 100)>>
 	<<if ($activeSlave.vagina == -1)>>
 	I'm really proud of my anal <<s>>kill<<s>>, I can take a dick a<<s>> well a<<s>> anyone.
 	<<else>>
-	I'm really proud of my anal	<<s>>kill<<s>>, it'<<s>> fun having three fuckhole<<s>>.
+	I'm really proud of my anal <<s>>kill<<s>>, it'<<s>> fun having three fuckhole<<s>>.
 	<</if>>
 <<elseif ($activeSlave.analSkill <= 30) && ($activeSlave.anus > 0)>>
 	I wish I were better at anal, if I could learn to relax getting buttfucked wouldn't hurt <<s>>o much.
@@ -1162,7 +1162,7 @@ My favorite part of my body i<<s>>
 <<if ($arcologies[0].FSSupremacistDecoration > 50) || ($arcologies[0].FSSubjugationistDecoration > 50) || ($arcologies[0].FSGenderRadicalistDecoration > 50) || ($arcologies[0].FSGenderFundamentalistDecoration > 50) || ($arcologies[0].FSPaternalistDecoration > 50) || ($arcologies[0].FSDegradationistDecoration > 50) || ($arcologies[0].FSBodyPuristDecoration > 50) || ($arcologies[0].FSTransformationFetishistDecoration > 50) || ($arcologies[0].FSSlimnessEnthusiastDecoration > 50) || ($arcologies[0].FSMaturityPreferentialistDecoration > 50) || ($arcologies[0].FSYouthPreferentialistDecoration > 50) || ($arcologies[0].FSAssetExpansionistDecoration > 50) || ($arcologies[0].FSPastoralistDecoration > 50) || ($arcologies[0].FSPhysicalIdealistDecoration > 50) || ($arcologies[0].FSChattelReligionistDecoration > 50) || ($arcologies[0].FSRomanRevivalistDecoration > 50) || ($arcologies[0].FSAztecRevivalistDecoration > 50) || ($arcologies[0].FSEgyptianRevivalistDecoration > 50) || ($arcologies[0].FSRepopulationFocusDecoration > 50) || ($arcologies[0].FSRestartDecoration > 50) || ($arcologies[0].FSHedonisticDecadence > 50)>>
 
 <<if ($activeSlave.devotion > 75)>>
-	I'll do everything I can to	<<s>>upport your vi<<s>>ion for the future.
+	I'll do everything I can to <<s>>upport your vi<<s>>ion for the future.
 <<elseif ($activeSlave.devotion > 50)>>
 	I do my be<<s>>t to <<s>>upport your vi<<s>>ion for the future.
 <<else>>
@@ -1218,7 +1218,7 @@ My favorite part of my body i<<s>>
 <</if>>
 <<if $arcologies[0].FSAssetExpansionist >= 10>>
 	<<if ($activeSlave.intelligence+$activeSlave.intelligenceImplant > 50)>>
-		I've been watching all the body	dysphoria on display lately; it's certainly novel.
+		I've been watching all the body dysphoria on display lately; it's certainly novel.
 	<<elseif ($activeSlave.energy > 95)>>
 		Thank you <<s>>o much for <<s>>upporting thi<<s>> new T&A expan<<s>>ion culture, <<Master>>. It'<<s>> like you made it ju<<s>>t for me. <<S>>o much eye candy!
 	<<elseif ($activeSlave.boobs > 1000)>>
@@ -1298,7 +1298,7 @@ My favorite part of my body i<<s>>
 	<<if ($activeSlave.race == $arcologies[0].FSSubjugationistRace)>>
 		I know that a<<s>> a $arcologies[0].FSSubjugationistRace <<s>>lave, it'<<s>> my proper pla<<c>>e to <<s>>erve.
 	<<else>>
-		<<S>>ince I'm not a $arcologies[0].FSSubjugationistRace	<<s>>lave, I'm a little afraid I don't fit into your vision of the future.
+		<<S>>ince I'm not a $arcologies[0].FSSubjugationistRace <<s>>lave, I'm a little afraid I don't fit into your vision of the future.
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSSupremacist >= 10>>
@@ -1351,7 +1351,7 @@ My favorite part of my body i<<s>>
 	<<elseif ($activeSlave.lactation > 0)>>
 		I'll do my be<<s>>t to make a<<s>> much milk for the arcology as I can.
 	<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls > 0)>>
-		I'll do my best to make	a<<s>> much cum for the arcology a<<s>> I can.
+		I'll do my best to make a<<s>> much cum for the arcology a<<s>> I can.
 	<<else>>
 		I wish I could make milk for the arcology.
 	<</if>>
diff --git a/src/npc/fSlaveImpregConsummate.tw b/src/npc/fSlaveImpregConsummate.tw
index a6e8b489dfc0d77cd563456f714d329ac298cd04..3375d36ad8daae6f4d52ce8b5105dfcf45641768 100644
--- a/src/npc/fSlaveImpregConsummate.tw
+++ b/src/npc/fSlaveImpregConsummate.tw
@@ -212,7 +212,7 @@ Next, you see to $activeSlave.slaveName.
 				<<set $impregnatrix.devotion += 4, $impregnatrix.anus = 1>>
 			<</if>>
 		<<else>>
-			 The two of them collapse into an exhausted, @@.hotpink;happy@@ pile of slave flesh.
+			The two of them collapse into an exhausted, @@.hotpink;happy@@ pile of slave flesh.
 		<</if>>
 	<</if>>
 	<<set $impregnatrix.oralCount += _penCountBonus, $oralTotal += _penCountBonus>>
diff --git a/src/npc/newSlaveIncestSex.tw b/src/npc/newSlaveIncestSex.tw
index 1ba2a1ffd5c54b9ae04ffbd6ff4cb6234c4fbd92..56c05d17f7f710b8bb2d415cf9de1b7eb7a04c11 100644
--- a/src/npc/newSlaveIncestSex.tw
+++ b/src/npc/newSlaveIncestSex.tw
@@ -117,7 +117,7 @@ As the _other's arousal grows, _othershe becomes more eager to please _otherher
 <br/><br/>
 You can tell how uncomfortable they are with you watching them, but as they become increasingly worked up, they lose their inhibitions. Soon, you are watching some fairly enthralling <<print $RecETSevent.replace("incest","") >> incest action at your office<<if _actions.length >>, including some enthusiastic <<print _actions.join(" and ")>><</if>>. Eventually, they bring each other to impressive mutual orgasms. Their lusty moans are muffled only by each others' crotches. Spent, exhausted, and with their faces covered in each others <<print _secretions.join(" and ")>>, they untangle to rest comfortably on your couch.
 <br/><br/>
-You indicate them to present themselves to you. Still shaking from the aftershocks of their orgasms, they stand side by side in front of you, panting, naked and with their	_genitals dripping mixed juices. You simply nod, showing your approval. They are visibly relieved, and not only sexually. They are more confident of having made the right choice in enslaving themselves to you, since you seem @@.mediumaquamarine;trustworthy@@ and @@.hotpink;sympathetic.@@ They hug again, kissing and licking the sexual fluids off each others' stained faces.
+You indicate them to present themselves to you. Still shaking from the aftershocks of their orgasms, they stand side by side in front of you, panting, naked and with their _genitals dripping mixed juices. You simply nod, showing your approval. They are visibly relieved, and not only sexually. They are more confident of having made the right choice in enslaving themselves to you, since you seem @@.mediumaquamarine;trustworthy@@ and @@.hotpink;sympathetic.@@ They hug again, kissing and licking the sexual fluids off each others' stained faces.
 <</replace>>
 <<set $relative.devotion += 4>>
 <<set $relative.trust += 4>>
diff --git a/src/npc/startingGirls/startingGirls.tw b/src/npc/startingGirls/startingGirls.tw
index db359a96d01eb6323b305326f3f47b7c149dea44..7e725659ab28be8b7b80e4c123e01cd316b2cee0 100644
--- a/src/npc/startingGirls/startingGirls.tw
+++ b/src/npc/startingGirls/startingGirls.tw
@@ -78,7 +78,7 @@
 					<<for _i = 0; _i < $slaves.length; _i++>><<if $slaves[_i].ID == _tempSlave.ID>><<set $slaves[_i].father = $activeSlave.father>><<break>><</if>><</for>>
 				<</if>>
 			<</if>>
-			<<if $activeSlave.mother && $activeSlave.father>> /% Propogate missing family information across existing slaves. Assumes monogamous reproduction, e.g. all sets of siblings have a pair of exclusive parents. %/
+			<<if $activeSlave.mother && $activeSlave.father>> /% Propagate missing family information across existing slaves. Assumes monogamous reproduction, e.g. all sets of siblings have a pair of exclusive parents. %/
 				<<for _i = 0; _i < $slaves.length; _i++>>
 					<<if $slaves[_i].mother == $activeSlave.mother>>
 					<<if $slaves[_i].father == 0>>
diff --git a/src/pregmod/FSuckle.tw b/src/pregmod/FSuckle.tw
index 10c42c8ef274468547cab61af22c3ee12ddc4b03..efa403e0f2c604a0b9186e719fee6de5bcc4e486 100644
--- a/src/pregmod/FSuckle.tw
+++ b/src/pregmod/FSuckle.tw
@@ -85,7 +85,7 @@ You <<if _mood == 2>>demand<<else>>beckon<</if>> $activeSlave.slaveName to
 	<<elseif $activeSlave.devotion < -20>>
 		Though $he is rebellious,
 		<<if _mood == 2>>
-			 seeing such a gravid person take such a predatory stance shakes $him and $he becomes more compliant.
+			seeing such a gravid person take such a predatory stance shakes $him and $he becomes more compliant.
 		<<else>>
 			$his inability to move and distaste for falling to the ground kept $him from giving $his help much trouble.
 		<</if>>
@@ -210,7 +210,7 @@ You <<if _mood == 2>>demand<<else>>beckon<</if>> $activeSlave.slaveName to
 		<</if>>
 	<<elseif $activeSlave.nipples == "inverted">>
 		<<if _mood == 2>>
-			 poking it with your finger as deep as you can. The inviting hole keeps all the delicious milk locked up, your instincts insisting that you pry out the flavor for yourself. The kicking in your middle settles it, you're taking a drink whether or not $his nipples agree.
+			poking it with your finger as deep as you can. The inviting hole keeps all the delicious milk locked up, your instincts insisting that you pry out the flavor for yourself. The kicking in your middle settles it, you're taking a drink whether or not $his nipples agree.
 		<<else>>
 			the inviting hole keeping all the delicious milk locked up, your instincts insisting that you pry out the flavor for yourself.
 		<</if>>
diff --git a/src/pregmod/beastFuck.tw b/src/pregmod/beastFuck.tw
index a9d8665557574b33b77b15594a6d848a080bae7e..a160e0ad97a31480433650b85c8f7d4b57cb55ce 100644
--- a/src/pregmod/beastFuck.tw
+++ b/src/pregmod/beastFuck.tw
@@ -133,7 +133,7 @@ before calling in the _animal.species. The _animal.species slowly saunters up to
 
 	<<if ($activeSlave.vagina == 0)>>The slave gives a loud <<if ($activeSlave.devotion > 20)>>moan<<else>>groan<</if>> as $his <<if !canDoVaginal($activeSlave)>>@@.lime;anal@@<</if>> @@.lime;virginity is taken from $him.@@<<if ($activeSlave.devotion <= -20)>>by force.<</if>><</if>>
 
-	 <<if $activeSlave.vagina == 0>>
+	<<if $activeSlave.vagina == 0>>
 		<<if ($activeSlave.devotion >= -20)>>
 			<<if $activeSlave.fetish == "masochistic">>
 				Losing $his virginity in such a painful manner has @@.hotpink;increased $his devotion to you.@@
@@ -141,7 +141,7 @@ before calling in the _animal.species. The _animal.species slowly saunters up to
 			<<elseif $activeSlave.fetish == "humiliation">>
 				Losing $his virginity in such a humiliating manner has @@.hotpink;increased $his devotion to you.@@
 				<<set $activeSlave.devotion += 10>>
-			 <<elseif $activeSlave.sexualQuirk == "perverted">>
+			<<elseif $activeSlave.sexualQuirk == "perverted">>
 				Losing $his virginity in such a perverted manner has @@.hotpink;increased $his devotion to you.@@
 				<<set $activeSlave.devotion += 10>>
 			<<elseif $activeSlave.behavioralQuirk == "sinful">>
diff --git a/src/pregmod/beastFucked.tw b/src/pregmod/beastFucked.tw
index 72aae7959c25ecdb54074660344f59501acfc826..dc26a275a6950e8b0adaee575a175f515d825272 100644
--- a/src/pregmod/beastFucked.tw
+++ b/src/pregmod/beastFucked.tw
@@ -159,7 +159,7 @@
 		<<if ($activeSlave.devotion <= 20)>>
 			and only the threat of worse punishment prevents $him from running out of the room.
 		<</if>>
-			 You have $him <<if ($activeSlave.clothing != "naked") && (_sexAct != "oral")>>take off $his clothing, then <</if>><<if _sexAct == "oral">>lay <<else>>kneel <</if>>down on the floor <<if _sexAct != "oral">>with $his ass in the air<<else>>on $his back<</if>>
+			You have $him <<if ($activeSlave.clothing != "naked") && (_sexAct != "oral")>>take off $his clothing, then <</if>><<if _sexAct == "oral">>lay <<else>>kneel <</if>>down on the floor <<if _sexAct != "oral">>with $his ass in the air<<else>>on $his back<</if>>
 	<<else>>
 		and $Bodyguard.slaveName has to physically prevent $him from running out of the room<<if random(1,100) > 75>><<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>>, resulting in a $activeSlave.minorInjury. <<else>>. <</if>>You <<if ($activeSlave.clothing != "naked")>>force $him to take off $his $activeSlave.clothing and <</if>>restrain $him on the floor <<if _sexAct != "oral">>with $his ass in the air<<else>>with a ring gag in $his mouth<</if>> -- all the while ignoring $his screams and pleas for mercy --
 	<</if>>
diff --git a/src/pregmod/electiveSurgery.tw b/src/pregmod/electiveSurgery.tw
index 8b369c63e7513933e87c9fa757476c16c68c8531..fa2dcaed302ae16fd022a2405a0ae1377244d255 100644
--- a/src/pregmod/electiveSurgery.tw
+++ b/src/pregmod/electiveSurgery.tw
@@ -371,8 +371,8 @@ You have @@.orange;$PC.skin skin.@@<<if $PC.skin != $PC.origSkin>> Your original
 	[[Have your male organs replaced with female ones|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 0, $PC.vagina = 1, $PC.newVag = 1, $cash -= 50000, $surgeryType = "male2female"]] |
 	[[Add a female reproductive tract|PC Surgery Degradation][$PC.vagina = 1, $PC.newVag = 1, $PC.preg = 0, WombFlush($PC), $cash -= 150000, $surgeryType = "male2herm"]]
 	<<if $PC.title > 0>>
-		 | [[Become a woman|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 0, $PC.storedCum += 10, $PC.vagina = 1, $PC.newVag = 1, $PC.preg = 0, $PC.title = 0, $PC.pronoun = "she", $PC.object = "her", $PC.possessive = "her", $cash -= 50000, $surgeryType = "male2truefemale"]]
-		 | [[Become a hermaphrodite girl|PC Surgery Degradation][$PC.vagina = 1, $PC.newVag = 1, $PC.preg = 0, WombFlush($PC), $PC.title = 0, $PC.pronoun = "she", $PC.object = "her", $PC.possessive = "her", $cash -= 150000, $surgeryType = "male2hermfemale"]]
+		| [[Become a woman|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 0, $PC.storedCum += 10, $PC.vagina = 1, $PC.newVag = 1, $PC.preg = 0, $PC.title = 0, $PC.pronoun = "she", $PC.object = "her", $PC.possessive = "her", $cash -= 50000, $surgeryType = "male2truefemale"]]
+		| [[Become a hermaphrodite girl|PC Surgery Degradation][$PC.vagina = 1, $PC.newVag = 1, $PC.preg = 0, WombFlush($PC), $PC.title = 0, $PC.pronoun = "she", $PC.object = "her", $PC.possessive = "her", $cash -= 150000, $surgeryType = "male2hermfemale"]]
 	<</if>>
 <<else>>
 	You have @@.orange;female genitalia@@ and a @@.orange;<<if $PC.title > 0>>masculine<<else>>feminine<</if>> appearance.@@
diff --git a/src/pregmod/fDick.tw b/src/pregmod/fDick.tw
index 92809dcfc1c96db5870e5b8b7f489fb3e637b5bb..1d4da7fcb08f9b2d6c578c008ec99f1f37a17ea4 100644
--- a/src/pregmod/fDick.tw
+++ b/src/pregmod/fDick.tw
@@ -55,7 +55,7 @@
 	<<else>>
 		hypertrophied
 	<</if>>
-	 dick, savoring every centimeter,
+	dick, savoring every centimeter,
 	<<if $activeSlave.dick <= 6>>
 		until you find yourself hilted and sitting on $his pelvis.
 	<<else>>
@@ -80,7 +80,7 @@
 		<<else>>
 			monstrous
 		<</if>>
-		 balls,
+		balls,
 	<<else>>
 		soft perineum,
 	<</if>>
diff --git a/src/pregmod/fSlaveSelfImpreg.tw b/src/pregmod/fSlaveSelfImpreg.tw
index d1b1341567efb62db9424a7690730202537a1c8a..c1b4e760ed5704b1629c95954a9a7cabab1c7093 100644
--- a/src/pregmod/fSlaveSelfImpreg.tw
+++ b/src/pregmod/fSlaveSelfImpreg.tw
@@ -11,7 +11,7 @@
 <<else>>
 	<<if ($activeSlave.devotion <= 20)>>
 		<<if ($activeSlave.devotion < -20)>>
-			 $activeSlave.slaveName despises you, and tends to resent everything you do on principle,
+			$activeSlave.slaveName despises you, and tends to resent everything you do on principle,
 		<<elseif ($activeSlave.devotion <= 20)>>
 			$activeSlave.slaveName dislikes you,
 		<</if>>
@@ -157,7 +157,7 @@
 					<<set $activeSlave.vagina = 1>>
 				<</if>>
 			<<else>>
-				 You instruct $him to fuck $himself; by this point, $he's too far gone to object. $His hands shake as $he lines $his cock up with $his own opening; $he lets out a sound halfway between a sob and a moan as $he penetrates $himself.
+				You instruct $him to fuck $himself; by this point, $he's too far gone to object. $His hands shake as $he lines $his cock up with $his own opening; $he lets out a sound halfway between a sob and a moan as $he penetrates $himself.
 			<</if>>
 			Without another partner to thrust against, $activeSlave.slaveName has to use $his remarkable shaft like a dildo, sliding it in and out of $his increasingly dripping sex. The potent mix of shame and arousal drives $him to orgasm quickly, and only a couple of minutes pass before you see $his shaft throbbing as $he fucks a baby into $his own belly.
 		<<else>>
diff --git a/src/pregmod/fillUpButt.tw b/src/pregmod/fillUpButt.tw
index f16ae1bd62b3589bc36585527df05f0dae740487..f74f2cec133de6a0e56af7f638ffa1c82b02d107 100644
--- a/src/pregmod/fillUpButt.tw
+++ b/src/pregmod/fillUpButt.tw
@@ -37,7 +37,7 @@ before calling $him over so you can play with $his
 <<elseif $activeSlave.butt <= 20>>
 	couch-like, super jiggly ass cheeks
 <</if>>
-	 before shoving the equipment into $his
+	before shoving the equipment into $his
 <<if ($activeSlave.anus > 3)>>
 	gaping anus.
 <<elseif ($activeSlave.anus == 3)>>
@@ -51,7 +51,7 @@ before calling $him over so you can play with $his
 <</if>>
 
 <<if $activeSlave.inflation > 1 && $activeSlave.preg > 1>>
-	$he looks uneasy at the prospect of that much fluid entering $his rear, far more than could be considered normal.
+	$He looks uneasy at the prospect of that much fluid entering $his rear, far more than could be considered normal.
 	<<set _pregDiscovery = 1>>
 <<else>>
 	<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.devotion >= -20)>>
diff --git a/src/pregmod/incubator.tw b/src/pregmod/incubator.tw
index 5ff0cdfd4b24cbca0891cdab60e9c79f1848a6f5..a35dbf33e3c2d4c900609be34c3c0c06e7345700 100644
--- a/src/pregmod/incubator.tw
+++ b/src/pregmod/incubator.tw
@@ -224,7 +224,7 @@ Reserve an eligible mother-to-be's child to be placed in a tank upon birth. Of $
 <</if>>
 <<if $reservedChildren != 0 || _childrenReserved == 1>> /* the oops I made it go negative somehow button */
 	<br>
-	 <<link "Clear all reserved children">>
+	<<link "Clear all reserved children">>
 		<<for _u = 0; _u < _SL; _u++>>
 			<<if $slaves[_u].reservedChildren != 0>>
 				<<set WombCleanGenericReserve($slaves[_u], 'incubator', 9999)>>
@@ -232,7 +232,7 @@ Reserve an eligible mother-to-be's child to be placed in a tank upon birth. Of $
 		<</for>>
 		<<set WombCleanGenericReserve($PC, 'incubator', 9999)>>
 		<<goto "Incubator">>
-	 <</link>>
+	<</link>>
 <</if>>
 
 <br><br>
diff --git a/src/pregmod/manageEconomy.tw b/src/pregmod/manageEconomy.tw
index 37164493d0bc464fdbc58ab5a94b15b530e3a36b..6c27560ea776b857b43bc7744853535f2f5f3c4a 100644
--- a/src/pregmod/manageEconomy.tw
+++ b/src/pregmod/manageEconomy.tw
@@ -152,13 +152,13 @@ Slave demand is
 	@@.yellow;''strong''@@
 <</if>>
 <<if $deltaDemand > 0>>
-	 and @@.green;''improving''@@
+	and @@.green;''improving''@@
 <<elseif $deltaDemand < 0>>
-	 and @@.red;''decreasing''@@
+	and @@.red;''decreasing''@@
 <</if>>
 <<if $deltaDemand != 0>>
 	<<if $demandTimer - $elapsedDemandTimer < 3>>
-		 but it might change soon
+		but it might change soon
 	<</if>>
 <</if>>
 <<if ($cheatMode) && ($cheatModeM)>>
@@ -192,13 +192,13 @@ Slave supply is
 	@@.yellow;''strong''@@
 <</if>>
 <<if $deltaSupply > 0>>
-	 and @@.red;''improving''@@
+	and @@.red;''improving''@@
 <<elseif $deltaSupply < 0>>
-	 and @@.green;''decreasing''@@
+	and @@.green;''decreasing''@@
 <</if>>
 <<if $deltaSupply != 0>>
 	<<if $supplyTimer - $elapsedDemandTimer < 3>>
-		 but it might change soon
+		but it might change soon
 	<</if>>
 <</if>>
 <<if ($cheatMode) && ($cheatModeM)>>
diff --git a/src/pregmod/managePersonalAffairs.tw b/src/pregmod/managePersonalAffairs.tw
index 62558bf7410a49d01402b090276e755882d765e5..60483a715d395c88f06e67df9f07d4b5e7faabfd 100644
--- a/src/pregmod/managePersonalAffairs.tw
+++ b/src/pregmod/managePersonalAffairs.tw
@@ -370,7 +370,7 @@ __Contraceptives and Fertility__
 
 <span id="miniscene">
 <<if $PC.preg < 6 && $PC.pregKnown == 1 && $PC.pregSource != -6>>
-	Your period is late, so the first thing you do is test yourself for a potential pregnancy: @@.lime;you are pregnant.@@	<<link "Abort your child">><<replace "#miniscene">><<set $PC.preg = 0, $PC.pregType = 0, $PC.pregSource = 0, $PC.pregKnown = 0, $PC.pregWeek = 0>><<set WombFlush($PC)>><<print "You take a syringe filled with abortifacients and make yourself comfortable. Injecting the vial through your belly into your womb, your close your eyes and wait for what is coming. Once you feel it is over, you clean yourself up and go on your way, child free.">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
+	Your period is late, so the first thing you do is test yourself for a potential pregnancy: @@.lime;you are pregnant.@@ <<link "Abort your child">><<replace "#miniscene">><<set $PC.preg = 0, $PC.pregType = 0, $PC.pregSource = 0, $PC.pregKnown = 0, $PC.pregWeek = 0>><<set WombFlush($PC)>><<print "You take a syringe filled with abortifacients and make yourself comfortable. Injecting the vial through your belly into your womb, your close your eyes and wait for what is coming. Once you feel it is over, you clean yourself up and go on your way, child free.">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 <<elseif $PC.labor == 1>>
 	You are beginning to feel contractions; you'll be giving birth soon.
 <<elseif $PC.preg >= 39>>
diff --git a/src/pregmod/reMaleArcologyOwner.tw b/src/pregmod/reMaleArcologyOwner.tw
index fbfc60f25b62bb3d64936f4f5f116041b3f6c5b3..9271047a14a8c6a129e6e080d51900936bc28ca9 100644
--- a/src/pregmod/reMaleArcologyOwner.tw
+++ b/src/pregmod/reMaleArcologyOwner.tw
@@ -50,7 +50,7 @@ He strikes a fine balance in conversation with you, firm enough to not overpower
 		<<elseif $PC.boobsBonus >= 2>>
 			You adjust your dress to better emphasize your huge <<if $PC.boobsImplant == 1>>fake tits<<else>>soft breasts<</if>> and head over to join to the
 			<<if _randomForeignFS > 90>> /* slimness */
-				 conversation between him and the woman trying to convince him to invest in her solar power concern. After a few minutes of you jiggling your cleavage around, however, it becomes apparent that this is not turning him on at all. He excuses himself and withdraws. You return to your <<if $PC.refreshmentType == 0>>$PC.refreshment<<elseif $PC.refreshmentType == 1>>glass of $PC.refreshment<<elseif $PC.refreshmentType == 2>>plate of $PC.refreshment<<elseif $PC.refreshmentType == 3>>pouch of $PC.refreshment<<elseif $PC.refreshmentType == 4>>syringe of $PC.refreshment<<elseif $PC.refreshmentType == 5>>bottle of $PC.refreshment<<elseif $PC.refreshmentType == 6>>sheet of $PC.refreshment<</if>>, consoling yourself that you are not exactly starved for company.
+				conversation between him and the woman trying to convince him to invest in her solar power concern. After a few minutes of you jiggling your cleavage around, however, it becomes apparent that this is not turning him on at all. He excuses himself and withdraws. You return to your <<if $PC.refreshmentType == 0>>$PC.refreshment<<elseif $PC.refreshmentType == 1>>glass of $PC.refreshment<<elseif $PC.refreshmentType == 2>>plate of $PC.refreshment<<elseif $PC.refreshmentType == 3>>pouch of $PC.refreshment<<elseif $PC.refreshmentType == 4>>syringe of $PC.refreshment<<elseif $PC.refreshmentType == 5>>bottle of $PC.refreshment<<elseif $PC.refreshmentType == 6>>sheet of $PC.refreshment<</if>>, consoling yourself that you are not exactly starved for company.
 			<<elseif _randomForeignFS > 80>> /* transformation */
 				conversation between him and the woman trying to convince him to invest in her solar power concern.
 				<<if $PC.boobsImplant != 1>>
diff --git a/src/pregmod/reMaleCitizenHookup.tw b/src/pregmod/reMaleCitizenHookup.tw
index fca1f8db4ca8f303f10096c54d08a98c49c5b006..fdb80dcf4f6d0c744cb7118940d6da1e87b3cac8 100644
--- a/src/pregmod/reMaleCitizenHookup.tw
+++ b/src/pregmod/reMaleCitizenHookup.tw
@@ -363,7 +363,7 @@ He's clearly attracted to you; even the most consummate actor would have difficu
 		<<else>>
 			young
 		<</if>>
-		 body
+		body
 		<<set $arcologies[0].FSYouthPreferentialist += 5>>
 	<<case "Maturity Preferentialist">>
 		mature body
diff --git a/src/pregmod/rePregInventor.tw b/src/pregmod/rePregInventor.tw
index 4cb5d012731578f371c1bbf6113b4306aa85ea68..a74cc3c0fea3c51ece975eac65458895d358062c 100644
--- a/src/pregmod/rePregInventor.tw
+++ b/src/pregmod/rePregInventor.tw
@@ -233,7 +233,7 @@
 		<<else>>
 			your pussy dripping with need in short order
 		<</if>>
-		 and, as the description continues, you move around behind your broodmother, pushing $him up onto $his tremendous womb so that you can fuck $him against it. $His belly squashes down slightly under your weight, but less than you'd expect—$he's so packed full of children that $his stomach resists changing shape. $He wiggles $his hips as you
+		and, as the description continues, you move around behind your broodmother, pushing $him up onto $his tremendous womb so that you can fuck $him against it. $His belly squashes down slightly under your weight, but less than you'd expect—$he's so packed full of children that $his stomach resists changing shape. $He wiggles $his hips as you
 		<<if $activeSlave.butt > 11>>
 			sink face first into $his warm, room filling ass cleavage
 		<<elseif $activeSlave.butt > 5>>
diff --git a/src/pregmod/reTheSirenStrikesBack.tw b/src/pregmod/reTheSirenStrikesBack.tw
index 4acae22f2132e800c02d3422552a9d10ad0c8d6f..2cd3a27a7b42ae3112a74ea0a7491dc8b3dbaaf9 100644
--- a/src/pregmod/reTheSirenStrikesBack.tw
+++ b/src/pregmod/reTheSirenStrikesBack.tw
@@ -48,8 +48,8 @@ Several weeks have passed since you gained the musical prodigy and you couldn't
 
 <<if def _ssb>>
 	<<run Enunciate(_ssb)>>
-	 Just as the little weasel at your feet finishes, _ssb.slaveName
-	 <<if canWalk(_ssb)>>
+	Just as the little weasel at your feet finishes, _ssb.slaveName
+	<<if canWalk(_ssb)>>
 		walks in,
 	<<else>>
 		is carried in,
diff --git a/src/pregmod/surrogacy.tw b/src/pregmod/surrogacy.tw
index f3a6ee56a5d99da4c43efcd2b9c4ac8e2cfc6020..fe4289a3a4e84556c27db27133799dc6b8c63a3f 100644
--- a/src/pregmod/surrogacy.tw
+++ b/src/pregmod/surrogacy.tw
@@ -17,7 +17,7 @@
 		<<run WombNormalizePreg($receptrix)>>
 		<<setLocalPronouns $receptrix>>
 		<<if $receptrix.fetish == "mindbroken">>
-			 $receptrix.slaveName leaves the surgery with a certain warmth in $his lower abdomen, $he knows that $he has been impregnated.
+			$receptrix.slaveName leaves the surgery with a certain warmth in $his lower abdomen, $he knows that $he has been impregnated.
 		<<elseif ($receptrix.fetish == "pregnancy") && ($receptrix.fetishStrength > 60) && ($receptrix.fetishKnown == 1)>>
 			<<if canSee($receptrix)>>
 				Since the surgery required only a local anesthetic, $receptrix.slaveName remained fully aware throughout the procedure. $He was overjoyed at the sight of the syringe containing $his future child emptying into $his womb.
@@ -79,7 +79,7 @@
 		<</if>>
 		<<setLocalPronouns $receptrix>>
 		<<if $receptrix.fetish == "mindbroken">>
-			 $receptrix.slaveName leaves the surgery with a certain warmth in $his lower abdomen, $he knows that $he has been impregnated.
+			$receptrix.slaveName leaves the surgery with a certain warmth in $his lower abdomen, $he knows that $he has been impregnated.
 		<<elseif ($receptrix.fetish == "pregnancy") && ($receptrix.fetishStrength > 60) && ($receptrix.fetishKnown == 1)>>
 			<<if canSee($receptrix)>>
 				Since the surgery required only a local anesthetic, $receptrix.slaveName remained fully aware throughout the procedure. $He was overjoyed at the sight of the syringe containing $his future child emptying into $his womb.
diff --git a/src/pregmod/widgets/playerDescriptionWidgets.tw b/src/pregmod/widgets/playerDescriptionWidgets.tw
index 0f0c002f76c5d52c5fe44de7f67c2a2324eee2d0..804e0783531fa9c0f851b2789d72c11e963d7fe3 100644
--- a/src/pregmod/widgets/playerDescriptionWidgets.tw
+++ b/src/pregmod/widgets/playerDescriptionWidgets.tw
@@ -400,7 +400,7 @@
 				<<else>>
 					eight babies
 				<</if>>
-				 in your belly.
+				in your belly.
 			<<elseif $PC.belly >= 75000>>
 				Your belly is starting to become worrying to you. You're positively gigantic and quite tired of it. The last thing on peoples' minds these days is fucking you too.
 			<<elseif $PC.belly >= 60000>>
@@ -821,7 +821,7 @@
 					Your slutty skirt is strained by your big butt.
 				<</if>>
 			<<else>>
-				 <<if $PC.butt > 2>>
+				<<if $PC.butt > 2>>
 					<<if $PC.buttImplant == 1>>
 						You had to get your slutty pants let out to contain your enormous rear. It still feels really tight, however, thanks to the implants.
 					<<else>>
diff --git a/src/pregmod/widgets/pregmodBirthWidgets.tw b/src/pregmod/widgets/pregmodBirthWidgets.tw
index 7af392aa4588f7dbca068d938950848e7c957d28..bc7ea6fb92e3e9887a56a29e45ac1b829a1abccc 100644
--- a/src/pregmod/widgets/pregmodBirthWidgets.tw
+++ b/src/pregmod/widgets/pregmodBirthWidgets.tw
@@ -316,7 +316,7 @@
 					$He begins desperately begging to be taken back to $his bed; instead you pull $him towards the couch and take a seat with $him in your lap, back against your front. Blushing thoroughly, $he gives a meek protest before focusing on the coming birth, rather than your wandering hands. $He begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby.
 					<<set $humiliation = 1>>
 				<</if>>
-				 $His child is promptly taken and, following a shower and a fresh change of clothes, $he is helped back to your office<<if $slaves[$i].devotion < -20>> where you are waiting to enjoy $his still very gravid body<</if>>.
+				$His child is promptly taken and, following a shower and a fresh change of clothes, $he is helped back to your office<<if $slaves[$i].devotion < -20>> where you are waiting to enjoy $his still very gravid body<</if>>.
 			<<else>>
 				While sitting nearby, $slaves[$i].slaveName's water breaks, startling $him. $He looks to you for guidance and you shake your head "no". Without permission to leave $he <<if $slaves[$i].devotion > 50>>decides to give you a show<<elseif $slaves[$i].devotion > 20>>reluctantly decides giving birth in front of you isn't so bad<<else>>begins to panic as $his contractions come sooner and sooner<<set $humiliation = 1>><</if>>.
 				<<ClothingBirth>>
diff --git a/src/pregmod/widgets/seBirthWidgets.tw b/src/pregmod/widgets/seBirthWidgets.tw
index 7677f9f52b4b8afb384ca4ba8fbd5a4c72bd8dc1..a07ebfd8eea340eae82292d2a34b859e884dbb16 100644
--- a/src/pregmod/widgets/seBirthWidgets.tw
+++ b/src/pregmod/widgets/seBirthWidgets.tw
@@ -322,9 +322,9 @@
 	<</if>>
 <</for>>
 
-/* Here support for partial birth cases but if slaves still NOT have broomother implant. Right now remaining babies will be lost, need to add research option for selective births. It should control labor and stop it after ready to birth babies out. Should be Repopulation FS research before broodmothers (their implant obviously have it as a part of functional). */
+/* Here support for partial birth cases but if slaves still NOT have broodmother implant. Right now remaining babies will be lost, need to add research option for selective births. It should control labor and stop it after ready to birth babies out. Should be Repopulation FS research before broodmothers (their implant obviously have it as a part of functional). */
 <<if $slaves[$i].broodmother == 0>>
-	<<if $slaves[$i].prematureBirth == 1>>  /* emergency birth, anything less than 23 weeks of age is not making it through this */
+	<<if $slaves[$i].prematureBirth == 1>> /* emergency birth, anything less than 23 weeks of age is not making it through this */
 		<<set $slaves[$i].curStillBirth = $slaves[$i].womb.length>>
 		<<set WombFlush($slaves[$i])>>
 	<<elseif $surgeryUpgrade == 1>>
@@ -542,7 +542,7 @@ This decriptions can be expanded with more outcomes later. But it's not practica
 		$He had exceedingly narrow hips, completely unsuitable for childbirth. As $he struggled on $his <<if _curBabies > 1>>first<</if>> child, $his pelvic bone strained under the pressure until it could no longer hold together and @@.red;agonizingly snapped.@@
 		<<if $slaves[$i].fetish != "mindbroken">>
 			<<if ($slaves[$i].fetish == "masochist")>>
-				 <<if $slaves[$i].fetishKnown == 0>>What would have made most girls blackout from pain sent $him into the lewdest orgasm you've seen today. $He @@.lightcoral;must get off to pain.@@.<<set $slaves[$i].fetishKnown = 1>><<else>> $He claims to have never climaxed so hard and @@.hotpink;wishes her hips could have stayed that narrow for next time.@@<</if>>
+				<<if $slaves[$i].fetishKnown == 0>>What would have made most girls blackout from pain sent $him into the lewdest orgasm you've seen today. $He @@.lightcoral;must get off to pain.@@.<<set $slaves[$i].fetishKnown = 1>><<else>> $He claims to have never climaxed so hard and @@.hotpink;wishes her hips could have stayed that narrow for next time.@@<</if>>
 				<<set $slaves[$i].devotion += 5>>
 			<<elseif $slaves[$i].devotion > 70>>
 				When $he comes to, $his pelvis has already been patched up. $He is just glad that $he managed to finish giving birth despite the hindrance.
diff --git a/src/societies/aztec/slaveSacrifice.tw b/src/societies/aztec/slaveSacrifice.tw
index ac87de4c2be890867ded5576a12e5839ffb9581e..2498931683f5097be1003c6b1ca99762beecf354 100644
--- a/src/societies/aztec/slaveSacrifice.tw
+++ b/src/societies/aztec/slaveSacrifice.tw
@@ -69,7 +69,7 @@
 			<<elseif ($activeSlave.sexualFlaw == "shamefast")>>
 				$He bursts into tears. "I'm going to be practically naked where everyone can <<s>>ee me!"
 			<<elseif ($activeSlave.sexualFlaw == "repressed")>>
-				 A big smile appears on $his face. "I'm going to be clean<<s>>ed. I'll be cleaned for the godde<<ss>>..."
+				A big smile appears on $his face. "I'm going to be clean<<s>>ed. I'll be cleaned for the godde<<ss>>..."
 			<</if>>
 		<<else>>
 			$He does $his best to control $himself and avoid punishment. "<<Master>>, I will do it. I'll do the peniten<<c>>e for the godde<<ss>>." $He holds $himself together until you dismiss $him; as $he turns to leave, the tears come fast, and $he almost runs into the doorframe on $his way out<<if canSee($activeSlave)>>, blinded with weeping<</if>>.
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index 5fec5ae7c28346943430831a08ee93a5a1da4800..c2db8f6695b315a04ded691b5f196a1096721794 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -3212,9 +3212,9 @@ Setting missing slave variables:
 		<<set _Slave.health = 205>>
 	<</if>>
 
- 	<<set _Slave.devotion = (_Slave.devotion*5)>>
+	<<set _Slave.devotion = (_Slave.devotion*5)>>
 	<<set _Slave.oldDevotion = (_Slave.oldDevotion*5)>>
- 	<<set _Slave.trust = (_Slave.trust*5)>>
+	<<set _Slave.trust = (_Slave.trust*5)>>
 	<<set _Slave.oldTrust = (_Slave.oldTrust*5)>>
 
 	<<if _Slave.fetishStrength == 0>>
@@ -3531,7 +3531,7 @@ Setting missing slave variables:
 		<</for>>
 	<</if>>
 	<<set _dontDeleteMe = 0>>
- 	<<if def $slaveIndices[_Slave.ID]>> /* are we still in the $slaves array? */
+	<<if def $slaveIndices[_Slave.ID]>> /* are we still in the $slaves array? */
 		<<set _dontDeleteMe = 1>>
 	<</if>>
 	<<if $traitor != 0>>
diff --git a/src/uncategorized/PESS.tw b/src/uncategorized/PESS.tw
index 3ef81948b8b8bbabe3b744475196d835a3a7eb4f..af621d31f8fd70ad8264d2ce80e9baacae8b3610 100644
--- a/src/uncategorized/PESS.tw
+++ b/src/uncategorized/PESS.tw
@@ -371,7 +371,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 <br><<link "It can wait until after some rough sex with the Concubine">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	When you enter your suite, the dim light reveals $activeSlave.slaveName waiting with $his beautiful body laid across the bed. When $he sees <<if ($PC.dick == 0)>>the big strap-on you're wearing<<else>>the kind of sex you're in the mood for<</if>>, $he turns over and pushes $his face down into the sheets. $He pulls $his knees under $himself and reaches back to pull $his <<if ($activeSlave.butt > 5)>>huge<<elseif ($activeSlave.butt > 2)>>sizeable<<else>>pretty<</if>> buttocks apart, relaxing and then clenching her <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>big<<else>>tight<</if>> asshole invitingly. $He starts <<if !canTalk($activeSlave)>>to point an inviting finger at her backdoor,<<else>>to <<say beg>> "Plea<<s>>e a<<ss>>rape me, M-" into the sheets,<</if>> but you interrupt her by shoving her forward so that $he's all the way face-down on the bed. $He knows how you like it and starts to wriggle, struggle, and whine as you roughly sodomize her, <<if ($PC.dick == 0)>>the strap-on<<else>>your cock<</if>> ramming straight up $his ass despite the uncomfortable angle, <<if ($activeSlave.butt > 5)>>which $his huge ass makes easier for her by limiting how deeply you can fuck her without $his buttocks spread wide.<<elseif ($activeSlave.butt > 2)>>which $his big behind makes easier for her by limiting how deeply you can fuck her.<<else>>which $his modest ass makes harder for her by allowing you to get really deep inside $his anus.<</if>> $He continues to wrestle with you, sometimes even managing to dislodge <<if ($PC.dick == 0)>>the strap-on<<else>>your dick<</if>>, allowing you the <<if ($PC.dick == 0)>>cruel delight<<else>>delicious sensation<</if>> of pushing it back up $his butt each time. Despite the pretense $his enjoyment is obvious;
+	When you enter your suite, the dim light reveals $activeSlave.slaveName waiting with $his beautiful body laid across the bed. When $he sees <<if ($PC.dick == 0)>>the big strap-on you're wearing<<else>>the kind of sex you're in the mood for<</if>>, $he turns over and pushes $his face down into the sheets. $He pulls $his knees under $himself and reaches back to pull $his <<if ($activeSlave.butt > 5)>>huge<<elseif ($activeSlave.butt > 2)>>sizable<<else>>pretty<</if>> buttocks apart, relaxing and then clenching her <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>big<<else>>tight<</if>> asshole invitingly. $He starts <<if !canTalk($activeSlave)>>to point an inviting finger at her backdoor,<<else>>to <<say beg>> "Plea<<s>>e a<<ss>>rape me, M-" into the sheets,<</if>> but you interrupt her by shoving her forward so that $he's all the way face-down on the bed. $He knows how you like it and starts to wriggle, struggle, and whine as you roughly sodomize her, <<if ($PC.dick == 0)>>the strap-on<<else>>your cock<</if>> ramming straight up $his ass despite the uncomfortable angle, <<if ($activeSlave.butt > 5)>>which $his huge ass makes easier for her by limiting how deeply you can fuck her without $his buttocks spread wide.<<elseif ($activeSlave.butt > 2)>>which $his big behind makes easier for her by limiting how deeply you can fuck her.<<else>>which $his modest ass makes harder for her by allowing you to get really deep inside $his anus.<</if>> $He continues to wrestle with you, sometimes even managing to dislodge <<if ($PC.dick == 0)>>the strap-on<<else>>your dick<</if>>, allowing you the <<if ($PC.dick == 0)>>cruel delight<<else>>delicious sensation<</if>> of pushing it back up $his butt each time. Despite the pretense $his enjoyment is obvious;
 	<<if ($activeSlave.dick > 0) && ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>>
 		despite $his chastity caged cock, $he's grinding against you as eagerly as a $girl making love with $his pussy.
 	<<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>>
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index 4e7f65944ea9543b634296454f1cdd27f9f03105..80d2d713ff54cf1df06b8ae919a55755e2eb1a02 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -3512,7 +3512,7 @@ You're nude, a consequence of <<if $Concubine != 0 && $Concubine.ID != $activeSl
 <<elseif $activeSlave.dick > 0>>
 	$His <<if $activeSlave.dick > 4>>big dick<<elseif $activeSlave.dick > 2>>dick<<else>>tiny dick<</if>> is as soft as ever, but there's a string of precum running between <<if $activeSlave.foreskin == 0>>its smooth tip<<else>>the soft foreskin that completely covers its tip<</if>> and $his inner thigh.
 <<elseif $activeSlave.clit > 0>>
-	$His <<if $activeSlave.clit > 1>>formidable<<else>>big<</if>> clit is visibly erect. <<if $activeSlave.clitPiercing > 1>>$His sizeable clit piercing never lets its hood completely cover hide $his bitch button, but it's completely retracted now,<<else>>$His delicate clitoral hood has been pushed back by $his female erection,<</if>> leaving $him proudly aroused.
+	$His <<if $activeSlave.clit > 1>>formidable<<else>>big<</if>> clit is visibly erect. <<if $activeSlave.clitPiercing > 1>>$His sizable clit piercing never lets its hood completely cover hide $his bitch button, but it's completely retracted now,<<else>>$His delicate clitoral hood has been pushed back by $his female erection,<</if>> leaving $him proudly aroused.
 <<elseif $activeSlave.labia > 0>>
 	$His <<if $activeSlave.labia > 1>>dangling<<else>>thick<</if>> labia are visibly swollen, flushing and growing prouder as the blood rushes to $his womanhood.
 <<elseif $activeSlave.vagina == -1>>
@@ -5943,20 +5943,20 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<<replace "#result">>
 	You laugh at $him kindly, and $he @@.mediumaquamarine;smiles with relief,@@ happy that you find $his wonderful and terrible sex drive amusing. After a cursory inspection, you
 	<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
-		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a <<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizeable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around with things shoved up $his asshole
+		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a <<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around with things shoved up $his asshole
 	<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
 		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
 		<<if canDoVaginal($activeSlave)>>
-			<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizeable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around naked with humiliating things shoved in $his body
+			<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around naked with humiliating things shoved in $his body
 		<<else>>
-			<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizeable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around naked with humiliating things shoved up $his asshole
+			<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around naked with humiliating things shoved up $his asshole
 		<</if>>
 	<<elseif ($activeSlave.fetish == "masochism") && ($activeSlave.fetishKnown == 1)>>
 		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
 		<<if canDoVaginal($activeSlave)>>
-			<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizeable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having painfully big things shoved up $his hole
+			<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having painfully big things shoved up $his hole
 		<<else>>
-			<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizeable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having painfully big things shoved up $his asshole
+			<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having painfully big things shoved up $his asshole
 		<</if>>
 	<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1) && $activeSlave.boobs > 300>>
 		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
@@ -5968,9 +5968,9 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<<else>>
 		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
 		<<if canDoVaginal($activeSlave)>>
-			<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizeable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself,
+			<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself,
 		<<else>>
-			<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizeable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks,
+			<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks,
 		<</if>>
 		and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he has a very short refractory period
 	<</if>>
@@ -10194,7 +10194,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<else>>
 			$He shudders with climax.
 		<</if>>
-		$He smiles	@@.mediumaquamarine;trustingly@@ up at you in the afterglow,
+		$He smiles @@.mediumaquamarine;trustingly@@ up at you in the afterglow,
 		<<if $activeSlave.balls > 0>>
 			her ejaculate
 			<<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>>
@@ -11810,13 +11810,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<elseif $activeSlave.butt > 1>>
 		moderate
 	<<else>>
-		meagre
+		meager
 	<</if>>
 	butt. You instruct $him that $he'll be allowed to talk if $he wants, but not yet, as you <<if $PC.dick == 0>>push a couple of fingers up<<else>>line your cock up with<</if>> her
 	<<if $activeSlave.anus > 2>>
 		gaping
 	<<elseif $activeSlave.anus > 1>>
-		sizeable
+		sizable
 	<<else>>
 		tight
 	<</if>>
@@ -11858,13 +11858,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<elseif $activeSlave.butt > 1>>
 		moderate
 	<<else>>
-		meagre
+		meager
 	<</if>>
 	butt. You instruct $him that $he'll be allowed to talk if $he wants, but not yet, as you <<if $PC.dick == 0>>push a dildo into<<else>>line your cock up with<</if>> her
 	<<if $activeSlave.anus > 2>>
 		gaping
 	<<elseif $activeSlave.anus > 1>>
-		sizeable
+		sizable
 	<<else>>
 		tight
 	<</if>>
@@ -13986,7 +13986,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<else>>
 		feminine
 	<</if>>
-	thighs quivering a little from supporting $his body in its perch atop the machine, and from the fullness of $his anus. $He knows this is going to be challenging, and is breathing deeply, doing her best to stay relaxed. You cannot resist slapping your	<<if $PC.dick == 1>>big cock lightly<<else>>lubricated strap-on<</if>> against $his cheek, producing a groan of apprehension.
+	thighs quivering a little from supporting $his body in its perch atop the machine, and from the fullness of $his anus. $He knows this is going to be challenging, and is breathing deeply, doing her best to stay relaxed. You cannot resist slapping your <<if $PC.dick == 1>>big cock lightly<<else>>lubricated strap-on<</if>> against $his cheek, producing a groan of apprehension.
 	<br><br>
 	You push her gently backward, letting her get accustomed to the new angle.<<if $activeSlave.boobs > 2000>> $His monstrous tits spread to either side of her <<if $activeSlave.belly >= 5000>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<else>>now upright torso<</if>>, and you take a moment to play with them as $he prepares $himself.<</if>>
 	<<if canDoVaginal($activeSlave)>>
diff --git a/src/uncategorized/RESSTR.tw b/src/uncategorized/RESSTR.tw
index c86a9241dcd5168435ac58cb926e4ddecc27a745..e24dd368bd3474284a3af3f1cc5ea3ce4dca9154 100644
--- a/src/uncategorized/RESSTR.tw
+++ b/src/uncategorized/RESSTR.tw
@@ -23,20 +23,20 @@
 /* Some scenes are also stored in useGuard.tw, walkPast.tw, and toychest.tw			*/
 
 <<if Array.isArray($RESSTRevent)>>
-  <<set $activeSlave = $eventSlave>>
-  <<if $cheatMode == 1>>
-	<<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */
-	''A random event would have been selected from the following:''
-	<br>
-	<<for _i = 0; _i < $RESSTRevent.length; _i++>>
-		<<print "[[$RESSTRevent[_i]|RESSTR][$RESSTRevent = $RESSTRevent[" + _i + "]]]">>
+	<<set $activeSlave = $eventSlave>>
+	<<if $cheatMode == 1>>
+		<<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */
+		''A random event would have been selected from the following:''
 		<br>
-	<</for>>
-	<br><br>[[Go Back to Random Individual Event|Random Individual Event][$activeSlave = 0]]
-  <<else>>
-	<<set $RESSTRevent = $RESSTRevent.random()>>
-	<<goto "RESSTR">>
-  <</if>>
+		<<for _i = 0; _i < $RESSTRevent.length; _i++>>
+			<<print "[[$RESSTRevent[_i]|RESSTR][$RESSTRevent = $RESSTRevent[" + _i + "]]]">>
+			<br>
+		<</for>>
+		<br><br>[[Go Back to Random Individual Event|Random Individual Event][$activeSlave = 0]]
+	<<else>>
+		<<set $RESSTRevent = $RESSTRevent.random()>>
+		<<goto "RESSTR">>
+	<</if>>
 <<else>>
 
 <<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Next Week">>
diff --git a/src/uncategorized/REroyalblood.tw b/src/uncategorized/REroyalblood.tw
index 54c369261fb33c8ded67b98739c304c905ae1652..0e3a121df66763e9b468687245deed9b21ebb65c 100644
--- a/src/uncategorized/REroyalblood.tw
+++ b/src/uncategorized/REroyalblood.tw
@@ -206,7 +206,7 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad
 <</link>> //You will be despised for this action, and trade will be greatly damaged.//
 <</if>>
 <<if $cash >= 35000>>
-<br><<link "Dispatch a sizeable amount of aid in exchange for the crown prince">>
+<br><<link "Dispatch a sizable amount of aid in exchange for the crown prince">>
 	<<replace "#result">>
 		You seize a tablet and practically roll out of your bed, working vigorously and using every feature of $assistantName to the utmost. It's not easy, but your credits pave your way to sending a flight of VTOLs laden with goods to the new arcology. They take off again with the crown prince aboard and in chains, where he rails against the uncaring metal walls of the VTOL for the breadth of his journey to your penthouse.
 		<br><br>
diff --git a/src/uncategorized/arcologyDescription.tw b/src/uncategorized/arcologyDescription.tw
index f6d34edeefd31c3d991b5146c31f9a9c5c0f99b8..f0ceda1fe02bc8c16d3256a8ece74bebb10463d9 100644
--- a/src/uncategorized/arcologyDescription.tw
+++ b/src/uncategorized/arcologyDescription.tw
@@ -388,7 +388,7 @@ Its<<if $weatherCladding == 2>> glorious<<elseif $weatherCladding > 0>> dull<<el
 		Near the penthouse the riot control center can be found. Here dissidents and dangerous political forces of $arcologies[0].name are carefully monitored and managed.
 	<</if>>
 	<<if $transportHub == 1>>
-		 The transport hub, in the commercial section of the arcology, deals with new arrivals to $arcologies[0].name via <<if $terrain != "oceanic" && $terrain != "marine">>land<<else>>sea<</if>> in addition to air.
+		The transport hub, in the commercial section of the arcology, deals with new arrivals to $arcologies[0].name via <<if $terrain != "oceanic" && $terrain != "marine">>land<<else>>sea<</if>> in addition to air.
 	<</if>>
 <</if>>
 
diff --git a/src/uncategorized/assistantEvents.tw b/src/uncategorized/assistantEvents.tw
index fafe1d9f27edf42affc29b61cf8aa75379a2c8cf..40a878531f729245762368e8b94f9ddbc4fcad4d 100644
--- a/src/uncategorized/assistantEvents.tw
+++ b/src/uncategorized/assistantEvents.tw
@@ -1335,7 +1335,7 @@ __Personal assistant appearances:__
 <br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Fairy">>
 	<<replace "#result">>
 	<<nobr>>
-	At your order, she installs the fairy appearance. She shrinks back down	and sprouts her wings. "Aww yeah, this is gonna be the best! Thanks, <<if $PC.title != 0>>Big Bro<<else>>Big Sis<</if>>!" Her avatar dances around ecstatically with her nude, slim form in plain view. "You can always customize me from the arcology management menu," she adds.
+	At your order, she installs the fairy appearance. She shrinks back down and sprouts her wings. "Aww yeah, this is gonna be the best! Thanks, <<if $PC.title != 0>>Big Bro<<else>>Big Sis<</if>>!" Her avatar dances around ecstatically with her nude, slim form in plain view. "You can always customize me from the arcology management menu," she adds.
 	<<set $assistantAppearance = "fairy">>
 	<</nobr>><</replace>>
 <</link>>
diff --git a/src/uncategorized/bodyModification.tw b/src/uncategorized/bodyModification.tw
index 4057afc56a0288fd800ded996583b42af4bb6647..4ad209d4b5974701cfa124f5aa75431b11bf943f 100644
--- a/src/uncategorized/bodyModification.tw
+++ b/src/uncategorized/bodyModification.tw
@@ -13,7 +13,7 @@
 
 <<if $brandApplied || $degradation>>
 	<<if $activeSlave.fuckdoll == 0>>
-		<<if canSee($activeSlave)>>There's a mirror on the ceiling, so $he can see<<else>>$He can't see, so you're careful to describe<</if>> $his new appearance.
+		<<if canSee($activeSlave)>>There's a mirror on the ceiling, so $he can see<<else>>$He can't see, so <<if canHear($activeSlave)>>you're careful to describe<<else>>$he must, by $himself, get a feel for<</if>><</if>> $his new appearance.
 	<</if>>
 	<<if $brandApplied>>
 		The smell of burnt flesh hangs in the air. Being branded @@.red;has hurt $his health a little.@@
@@ -21,312 +21,312 @@
 		<<unset $brandApplied>>
 	<</if>>
 	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
-	<<if $degradation > 1>>
-		<<if $degradation > 5>>
-			<<if $activeSlave.devotion <= 50 && $activeSlave.trust < -50>>
-				$He is appalled by the whorish spectacle you have made of $him. $He @@.gold;fears@@ you all the more for this but is so terrified of you it does not affect $his submission.
-				<<set $activeSlave.trust -= 10>>
-			<<elseif $activeSlave.devotion <= 50>>
-				$He is appalled by the whorish spectacle you have made of $him. $He @@.mediumorchid;hates@@ and @@.gold;fears@@ you for this.
-				<<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>>
+		<<if $degradation > 1>>
+			<<if $degradation > 5>>
+				<<if $activeSlave.devotion <= 50 && $activeSlave.trust < -50>>
+					$He is appalled by the whorish spectacle you have made of $him. $He @@.gold;fears@@ you all the more for this but is so terrified of you it does not affect $his submission.
+					<<set $activeSlave.trust -= 10>>
+				<<elseif $activeSlave.devotion <= 50>>
+					$He is appalled by the whorish spectacle you have made of $him. $He @@.mediumorchid;hates@@ and @@.gold;fears@@ you for this.
+					<<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>>
+				<<else>>
+					$He is shocked by the whorish spectacle you have made of $him. However, $he is so submissive to your will that $he @@.hotpink;accepts@@ that the slave <<if canSee($activeSlave)>>in the mirror<<else>>$he pictures<</if>> is who $he is now.
+					<<set $activeSlave.devotion += 4>>
+				<</if>>
+				<br><br>
 			<<else>>
-				$He is shocked by the whorish spectacle you have made of $him. However, $he is so submissive to your will that $he @@.hotpink;accepts@@ that the slave <<if canSee($activeSlave)>>in the mirror<<else>>$he pictures<</if>> is who $he is now.
-				<<set $activeSlave.devotion += 4>>
+				<<if $activeSlave.devotion < -20 && $activeSlave.trust < 20>>
+					$He is @@.gold;afraid@@ that $he has been permanently altered against $his will, but is also scared of your reaction to any objection and suppresses $his disgust.
+					<<set $activeSlave.trust -= 5>>
+				<<elseif $activeSlave.devotion < -20>>
+					$He is @@.mediumorchid;angry@@ and @@.gold;afraid@@ that $he has been permanently altered against $his will.
+					<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>>
+				<<else>>
+					$He is saddened to have been altered against $his will. However, $he realizes that $he is a slave, so $he @@.hotpink;accepts@@ your work.
+					<<set $activeSlave.devotion += 4>>
+				<</if>>
 			<</if>>
-			<br><br>
-		<<else>>
-			<<if $activeSlave.devotion < -20 && $activeSlave.trust < 20>>
-				$He is @@.gold;afraid@@ that $he has been permanently altered against $his will, but is also scared of your reaction to any objection and suppresses $his disgust.
-				<<set $activeSlave.trust -= 5>>
-			<<elseif $activeSlave.devotion < -20>>
-				$He is @@.mediumorchid;angry@@ and @@.gold;afraid@@ that $he has been permanently altered against $his will.
-				<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>>
-			<<else>>
-				$He is saddened to have been altered against $his will. However, $he realizes that $he is a slave, so $he @@.hotpink;accepts@@ your work.
-				<<set $activeSlave.devotion += 4>>
+			<<set $degradation = 0>>
+		<</if>>
+		<<set _slaveBeforeSession = getSlave($activeSlave.ID)>>
+		<<if $activeSlave.tonguePiercing != _slaveBeforeSession.tonguePiercing>>
+			<<if $activeSlave.fetishKnown>>
+				<<if $activeSlave.fetishStrength > 10>>
+					<<if $activeSlave.fetish == "cumslut">>
+						Since $he's an oral whore, $he's
+						<<if $activeSlave.tonguePiercing > _slaveBeforeSession.tonguePiercing>>
+							<<if $activeSlave.tonguePiercing > 1>>@@.hotpink;very happy@@ you took the time to personally pierce $his tongue so heavily<<else>>@@.hotpink;happy@@ to get a tongue piercing from you personally<</if>>. After all, $he's pretty sure it's a sign there will be plenty of <<if $PC.dick>>dick for $him to suck<<else>>pussy for $him to eat<</if>> in the future.
+							<<set $activeSlave.devotion += ($activeSlave.tonguePiercing-_slaveBeforeSession.tonguePiercing)*2>>
+						<<elseif $activeSlave.devotion <= 95>>
+							@@.mediumorchid;saddened@@ you decided to take out $his tongue piercings yourself. $He's afraid this means something about $his future as a suck slut.
+							<<set $activeSlave.devotion += ($activeSlave.tonguePiercing-_slaveBeforeSession.tonguePiercing)*2>>
+						<</if>>
+					<</if>>
+				<</if>>
+				<<if $activeSlave.sexualFlaw == "hates oral">>
+					$He has trouble thinking of $his mouth as a warm, wet, playful hole, so $his new piercings will be therapeutic. Having something to suck on at all times should force $him past $his hangups.
+				<</if>>
 			<</if>>
 		<</if>>
-		<<set $degradation = 0>>
-	<</if>>
-	<<set _slaveBeforeSession = getSlave($activeSlave.ID)>>
-	<<if $activeSlave.tonguePiercing != _slaveBeforeSession.tonguePiercing>>
-		<<if $activeSlave.fetishKnown>>
-			<<if $activeSlave.fetishStrength > 10>>
-			<<if $activeSlave.fetish == "cumslut">>
-				Since $he's an oral whore, $he's
-				<<if $activeSlave.tonguePiercing > _slaveBeforeSession.tonguePiercing>>
-					<<if $activeSlave.tonguePiercing > 1>>@@.hotpink;very happy@@ you took the time to personally pierce $his tongue so heavily<<else>>@@.hotpink;happy@@ to get a tongue piercing from you personally<</if>>. After all, $he's pretty sure it's a sign there will be plenty of <<if $PC.dick>>dick for $him to suck<<else>>pussy for $him to eat<</if>> in the future.
-					<<set $activeSlave.devotion += ($activeSlave.tonguePiercing-_slaveBeforeSession.tonguePiercing)*2>>
-				<<elseif $activeSlave.devotion <= 95>>
-					@@.mediumorchid;saddened@@ you decided to take out $his tongue piercings yourself. $He's afraid this means something about $his future as a suck slut.
-					<<set $activeSlave.devotion += ($activeSlave.tonguePiercing-_slaveBeforeSession.tonguePiercing)*2>>
+		<<if $activeSlave.nipplesPiercing+$activeSlave.areolaePiercing != _slaveBeforeSession.nipplesPiercing+_slaveBeforeSession.areolaePiercing>>
+			<<if $activeSlave.fetishKnown>>
+				<<if $activeSlave.fetishStrength > 10>>
+					<<if $activeSlave.fetish == "boobs">>
+						Since $he's fixated on $his boobs, $he's
+						<<if $activeSlave.nipplesPiercing+$activeSlave.areolaePiercing > _slaveBeforeSession.nipplesPiercing+_slaveBeforeSession.areolaePiercing>>
+							<<if $activeSlave.nipplesPiercing+$activeSlave.areolaePiercing > 2>>@@.hotpink;very happy@@ you took the time to personally pierce them so heavily<<else>>@@.hotpink;happy@@ to get nipple piercings from you personally<</if>>. As far as $he's concerned, more attention on $his tits is always good.
+							<<set $activeSlave.devotion += ($activeSlave.nipplesPiercing+$activeSlave.areolaePiercing-_slaveBeforeSession.nipplesPiercing-_slaveBeforeSession.areolaePiercing)*2>>
+						<<elseif $activeSlave.devotion <= 95>>
+							@@.mediumorchid;saddened@@ you decided to take out $his nipple piercings yourself. $He doesn't like anything that makes $his tits less distinctive.
+							<<set $activeSlave.devotion += ($activeSlave.tonguePiercing-_slaveBeforeSession.tonguePiercing)*2>>
+						<</if>>
+					<</if>>
 				<</if>>
 			<</if>>
-			<</if>>
-			<<if $activeSlave.sexualFlaw == "hates oral">>
-				$He has trouble thinking of $his mouth as a warm, wet, playful hole, so $his new piercings will be therapeutic. Having something to suck on at all times should force $him past $his hangups.
-			<</if>>
 		<</if>>
-	<</if>>
-	<<if $activeSlave.nipplesPiercing+$activeSlave.areolaePiercing != _slaveBeforeSession.nipplesPiercing+_slaveBeforeSession.areolaePiercing>>
-		<<if $activeSlave.fetishKnown>>
-		<<if $activeSlave.fetishStrength > 10>>
-		<<if $activeSlave.fetish == "boobs">>
-			Since $he's fixated on $his boobs, $he's
-			<<if $activeSlave.nipplesPiercing+$activeSlave.areolaePiercing > _slaveBeforeSession.nipplesPiercing+_slaveBeforeSession.areolaePiercing>>
-				<<if $activeSlave.nipplesPiercing+$activeSlave.areolaePiercing > 2>>@@.hotpink;very happy@@ you took the time to personally pierce them so heavily<<else>>@@.hotpink;happy@@ to get nipple piercings from you personally<</if>>. As far as $he's concerned, more attention on $his tits is always good.
-				<<set $activeSlave.devotion += ($activeSlave.nipplesPiercing+$activeSlave.areolaePiercing-_slaveBeforeSession.nipplesPiercing-_slaveBeforeSession.areolaePiercing)*2>>
-			<<elseif $activeSlave.devotion <= 95>>
-				@@.mediumorchid;saddened@@ you decided to take out $his nipple piercings yourself. $He doesn't like anything that makes $his tits less distinctive.
-				<<set $activeSlave.devotion += ($activeSlave.tonguePiercing-_slaveBeforeSession.tonguePiercing)*2>>
+		<<if $activeSlave.corsetPiercing != _slaveBeforeSession.corsetPiercing>>
+			<<if $activeSlave.fetishKnown>>
+				<<if $activeSlave.fetishStrength > 10>>
+					<<if $activeSlave.fetish == "masochist">>
+						Since $he's a pain whore,
+						<<if $activeSlave.corsetPiercing > _slaveBeforeSession.corsetPiercing>>
+							$he @@.hotpink;got off on@@ you giving $his a corset piercing personally. $He loved the feeling of the metal entering $his flesh.
+							<<set $activeSlave.devotion += ($activeSlave.corsetPiercing-_slaveBeforeSession.corsetPiercing)*2>>
+						<<elseif $activeSlave.devotion <= 95>>
+							$he's @@.mediumorchid;saddened@@ you decided to take out $his corset piercings yourself. $He'll miss the constant slight discomfort they gave $him.
+							<<set $activeSlave.devotion += ($activeSlave.corsetPiercing-_slaveBeforeSession.corsetPiercing)*2>>
+						<</if>>
+					<</if>>
+				<</if>>
 			<</if>>
 		<</if>>
-		<</if>>
-		<</if>>
-	<</if>>
-	<<if $activeSlave.corsetPiercing != _slaveBeforeSession.corsetPiercing>>
-		<<if $activeSlave.fetishKnown>>
-		<<if $activeSlave.fetishStrength > 10>>
-		<<if $activeSlave.fetish == "masochist">>
-			Since $he's a pain whore,
-			<<if $activeSlave.corsetPiercing > _slaveBeforeSession.corsetPiercing>>
-				$he @@.hotpink;got off on@@ you giving $his a corset piercing personally. $He loved the feeling of the metal entering $his flesh.
-				<<set $activeSlave.devotion += ($activeSlave.corsetPiercing-_slaveBeforeSession.corsetPiercing)*2>>
-			<<elseif $activeSlave.devotion <= 95>>
-				 $he's @@.mediumorchid;saddened@@ you decided to take out $his corset piercings yourself. $He'll miss the constant slight discomfort they gave $him.
-				<<set $activeSlave.devotion += ($activeSlave.corsetPiercing-_slaveBeforeSession.corsetPiercing)*2>>
+		<<if $activeSlave.vaginaPiercing != _slaveBeforeSession.vaginaPiercing>>
+			<<if $activeSlave.fetishKnown>>
+				<<if $activeSlave.fetishStrength > 10>>
+					<<if $activeSlave.fetish == "pregnancy">>
+						Since $he's a whore for impregnation, $he's
+						<<if $activeSlave.vaginaPiercing > _slaveBeforeSession.vaginaPiercing>>
+							<<if $activeSlave.vaginaPiercing > 1>>@@.hotpink;very happy@@ you took the time to personally pierce $his pussylips so heavily<<else>>@@.hotpink;happy@@ to get pussy piercings from you personally<</if>>. Like most pregnancy fetishists, $he's a little desperate for dick, and anything that points towards more bareback sex is appealing to $him.
+								<<set $activeSlave.devotion += ($activeSlave.vaginaPiercing-_slaveBeforeSession.vaginaPiercing)*2>>
+							<<elseif $activeSlave.devotion <= 95>>
+								@@.mediumorchid;saddened@@ you decided to take out $his pussy piercings yourself. Like most pregnancy fetishists, $he's a little desperate for dick, and $he's afraid of anything that points towards less attention focused on $his cunt.
+								<<set $activeSlave.devotion += ($activeSlave.vaginaPiercing-_slaveBeforeSession.vaginaPiercing)*2>>
+							<</if>>
+						<</if>>
+					<</if>>
+				<<if $activeSlave.sexualFlaw == "hates penetration">>
+					$He has trouble thinking of her vagina as a fuckhole rather than something special to protect and cherish, so her new piercings will be therapeutic. The constant, inescapable stimulation of her labia should force her past her hangups.
+				<</if>>
 			<</if>>
 		<</if>>
-		<</if>>
-		<</if>>
-	<</if>>
-	<<if $activeSlave.vaginaPiercing != _slaveBeforeSession.vaginaPiercing>>
-		<<if $activeSlave.fetishKnown>>
-			<<if $activeSlave.fetishStrength > 10>>
-			<<if $activeSlave.fetish == "pregnancy">>
-				Since $he's a whore for impregnation, $he's
-				<<if $activeSlave.vaginaPiercing > _slaveBeforeSession.vaginaPiercing>>
-					<<if $activeSlave.vaginaPiercing > 1>>@@.hotpink;very happy@@ you took the time to personally pierce $his pussylips so heavily<<else>>@@.hotpink;happy@@ to get pussy piercings from you personally<</if>>. Like most pregnancy fetishists, $he's a little desperate for dick, and anything that points towards more bareback sex is appealing to $him.
-					<<set $activeSlave.devotion += ($activeSlave.vaginaPiercing-_slaveBeforeSession.vaginaPiercing)*2>>
-				<<elseif $activeSlave.devotion <= 95>>
-					@@.mediumorchid;saddened@@ you decided to take out $his pussy piercings yourself. Like most pregnancy fetishists, $he's a little desperate for dick, and $he's afraid of anything that points towards less attention focused on $his cunt.
-					<<set $activeSlave.devotion += ($activeSlave.vaginaPiercing-_slaveBeforeSession.vaginaPiercing)*2>>
+		<<if $activeSlave.dickPiercing != _slaveBeforeSession.dickPiercing>>
+			<<if $activeSlave.fetishKnown>>
+				<<if $activeSlave.fetishStrength > 10>>
+					<<if $activeSlave.fetish == "pregnancy">>
+						Since $he's fixated on using $his cock to impregnate other slaves, $he's
+						<<if $activeSlave.dickPiercing > _slaveBeforeSession.dickPiercing>>
+							<<if $activeSlave.dickPiercing > 1>>@@.hotpink;very happy@@ you took the time to personally stick so much metal into $his dick<<if $activeSlave.scrotum>> and ballsack<</if>><<else>>@@.hotpink;happy@@ to get penis piercings from you personally<</if>>. $He's extremely proud of $his newly decorated member.
+							<<set $activeSlave.devotion += ($activeSlave.dickPiercing-_slaveBeforeSession.dickPiercing)*2>>
+						<<elseif $activeSlave.devotion <= 95>>
+							@@.mediumorchid;saddened@@ you decided to take out $his dick<<if $activeSlave.scrotum>> and ballsack<</if>> piercings yourself. $He passionately loves using $his penis, and $he's concerned you're planning to let $him do less of that.
+							<<set $activeSlave.devotion += ($activeSlave.dickPiercing-_slaveBeforeSession.dickPiercing)*2>>
+						<</if>>
+					<</if>>
 				<</if>>
 			<</if>>
-			<</if>>
-			<<if $activeSlave.sexualFlaw == "hates penetration">>
-				$He has trouble thinking of her vagina as a fuckhole rather than something special to protect and cherish, so her new piercings will be therapeutic. The constant, inescapable stimulation of her labia should force her past her hangups.
-			<</if>>
 		<</if>>
-	<</if>>
-	<<if $activeSlave.dickPiercing != _slaveBeforeSession.dickPiercing>>
-		<<if $activeSlave.fetishKnown>>
-		<<if $activeSlave.fetishStrength > 10>>
-		<<if $activeSlave.fetish == "pregnancy">>
-			Since $he's fixated on using $his cock to impregnate other slaves, $he's
-			<<if $activeSlave.dickPiercing > _slaveBeforeSession.dickPiercing>>
-				<<if $activeSlave.dickPiercing > 1>>@@.hotpink;very happy@@ you took the time to personally stick so much metal into $his dick<<if $activeSlave.scrotum>> and ballsack<</if>><<else>>@@.hotpink;happy@@ to get penis piercings from you personally<</if>>. $He's extremely proud of $his newly decorated member.
-				<<set $activeSlave.devotion += ($activeSlave.dickPiercing-_slaveBeforeSession.dickPiercing)*2>>
-			<<elseif $activeSlave.devotion <= 95>>
-				@@.mediumorchid;saddened@@ you decided to take out $his dick<<if $activeSlave.scrotum>> and ballsack<</if>> piercings yourself. $He passionately loves using $his penis, and $he's concerned you're planning to let $him do less of that.
-				<<set $activeSlave.devotion += ($activeSlave.dickPiercing-_slaveBeforeSession.dickPiercing)*2>>
+		<<if $activeSlave.anusPiercing != _slaveBeforeSession.anusPiercing>>
+			<<if $activeSlave.fetishKnown>>
+				<<if $activeSlave.fetishStrength > 10>>
+					<<if $activeSlave.fetish == "buttslut">>
+						Since $he's an anal slut, $he's
+						<<if $activeSlave.anusPiercing > _slaveBeforeSession.anusPiercing>>
+							<<if $activeSlave.anusPiercing > 1>>@@.hotpink;very happy@@ you took the time to personally pierce the entire area around $his whorish asspussy<<else>>@@.hotpink;happy@@ to get a piercing next to $his favorite hole from you personally<</if>>. $He can't wait to find out how the metal will feel against $his butthole when $he moves around.
+								<<set $activeSlave.devotion += ($activeSlave.anusPiercing-_slaveBeforeSession.anusPiercing)*2>>
+							<<elseif $activeSlave.devotion <= 95>>
+								@@.mediumorchid;saddened@@ you decided to take out $his backdoor piercings yourself. $He will miss the constant anal titillation, and $he's worried this means you're becoming less interested in $his butthole.
+								<<set $activeSlave.devotion += ($activeSlave.anusPiercing-_slaveBeforeSession.anusPiercing)*2>>
+							<</if>>
+						<</if>>
+					<</if>>
+					<<if $activeSlave.sexualFlaw == "hates anal">>
+						$He has trouble thinking of $his asshole as a sexy, fuckable hole, so $his new piercings will be therapeutic. The constant tickling back there should force $him past $his hangups.
+					<</if>>
 			<</if>>
 		<</if>>
-		<</if>>
-		<</if>>
-	<</if>>
-	<<if $activeSlave.anusPiercing != _slaveBeforeSession.anusPiercing>>
-		<<if $activeSlave.fetishKnown>>
-			<<if $activeSlave.fetishStrength > 10>>
-			<<if $activeSlave.fetish == "buttslut">>
-				Since $he's an anal slut, $he's
-				<<if $activeSlave.anusPiercing > _slaveBeforeSession.anusPiercing>>
-					<<if $activeSlave.anusPiercing > 1>>@@.hotpink;very happy@@ you took the time to personally pierce the entire area around $his whorish asspussy<<else>>@@.hotpink;happy@@ to get a piercing next to $his favorite hole from you personally<</if>>. $He can't wait to find out how the metal will feel against $his butthole when $he moves around.
-					<<set $activeSlave.devotion += ($activeSlave.anusPiercing-_slaveBeforeSession.anusPiercing)*2>>
-				<<elseif $activeSlave.devotion <= 95>>
-					@@.mediumorchid;saddened@@ you decided to take out $his backdoor piercings yourself. $He will miss the constant anal titillation, and $he's worried this means you're becoming less interested in $his butthole.
-					<<set $activeSlave.devotion += ($activeSlave.anusPiercing-_slaveBeforeSession.anusPiercing)*2>>
+		<<if $activeSlave.genes == "XY">>
+			<<if $activeSlave.attrXY <= 35>>
+				<<if $activeSlave.earPiercing+$activeSlave.nosePiercing+$activeSlave.eyebrowPiercing+$activeSlave.lipsPiercing+$activeSlave.navelPiercing > _slaveBeforeSession.earPiercing+_slaveBeforeSession.nosePiercing+_slaveBeforeSession.eyebrowPiercing+_slaveBeforeSession.lipsPiercing+_slaveBeforeSession.navelPiercing>>
+					$His girly new
+					<<if $activeSlave.nosePiercing == 1 && _slaveBeforeSession.nosePiercing == 0>>
+						pierced ears should help $him a little with $his issues about $his self-image as a fuckable slave girl.
+					<<elseif $activeSlave.nosePiercing == 1 && _slaveBeforeSession.nosePiercing == 0>>
+						nose piercing should make $his reflection in the mirror seem just a bit more fuckably feminine to $him.
+					<<elseif $activeSlave.eyebrowPiercing == 1 && _slaveBeforeSession.eyebrowPiercing == 0>>
+						facial piercing should help destroy $his vestiges of sexual identity outside of $his life as a hole for cocks.
+					<<elseif $activeSlave.lipsPiercing == 1 && _slaveBeforeSession.lipsPiercing == 0>>
+						facial piercing, just below $his pretty mouth, should help $him get used to the idea of it being a warm, wet hole for cocks.
+					<<elseif $activeSlave.navelPiercing == 1 && _slaveBeforeSession.navelPiercing == 0>>
+						navel piercing should help $his see $his naked body in a submissively sexual way, especially as $him turns to hide it and present $his asspussy.
+					<<else>>
+						new set of slutty facial piercings should help $him get used to the idea of being a girly slave meant to please dicks.
+					<</if>>
+					<<if $activeSlave.devotion < -20>>Unfortunately, that positive effect will have to wait until $he's a little less resistant to the idea of being a sex slave.<</if>>
 				<</if>>
 			<</if>>
-			<</if>>
-			<<if $activeSlave.sexualFlaw == "hates anal">>
-				$He has trouble thinking of $his asshole as a sexy, fuckable hole, so $his new piercings will be therapeutic. The constant tickling back there should force $him past $his hangups.
-			<</if>>
 		<</if>>
-	<</if>>
-	<<if $activeSlave.genes == "XY">>
-	<<if $activeSlave.attrXY <= 35>>
-	<<if $activeSlave.earPiercing+$activeSlave.nosePiercing+$activeSlave.eyebrowPiercing+$activeSlave.lipsPiercing+$activeSlave.navelPiercing > _slaveBeforeSession.earPiercing+_slaveBeforeSession.nosePiercing+_slaveBeforeSession.eyebrowPiercing+_slaveBeforeSession.lipsPiercing+_slaveBeforeSession.navelPiercing>>
-		$His girly new
-		<<if $activeSlave.nosePiercing == 1 && _slaveBeforeSession.nosePiercing == 0>>
-			pierced ears should help $him a little with $his issues about $his self-image as a fuckable slave girl.
-		<<elseif $activeSlave.nosePiercing == 1 && _slaveBeforeSession.nosePiercing == 0>>
-			nose piercing should make $his reflection in the mirror seem just a bit more fuckably feminine to $him.
-		<<elseif $activeSlave.eyebrowPiercing == 1 && _slaveBeforeSession.eyebrowPiercing == 0>>
-			facial piercing should help destroy $his vestiges of sexual identity outside of $his life as a hole for cocks.
-		<<elseif $activeSlave.lipsPiercing == 1 && _slaveBeforeSession.lipsPiercing == 0>>
-			facial piercing, just below $his pretty mouth, should help $him get used to the idea of it being a warm, wet hole for cocks.
-		<<elseif $activeSlave.navelPiercing == 1 && _slaveBeforeSession.navelPiercing == 0>>
-			navel piercing should help $his see $his naked body in a submissively sexual way, especially as $him turns to hide it and present $his asspussy.
-		<<else>>
-			new set of slutty facial piercings should help $him get used to the idea of being a girly slave meant to please dicks.
-		<</if>>
-		<<if $activeSlave.devotion < -20>>Unfortunately, that positive effect will have to wait until $he's a little less resistant to the idea of being a sex slave.<</if>>
-	<</if>>
-	<</if>>
-	<</if>>
-	<<if $activeSlave.anusTat != _slaveBeforeSession.anusTat>>
-	<<if canSee($activeSlave)>>
-	<<if canTalk($activeSlave)>>
-		<<if $activeSlave.anus > 3>>
-			<<set _anus = "anal gape">>
-		<<elseif $activeSlave.anus == 3>>
-			<<set _anus = "relaxed asspussy">>
-		<<elseif $activeSlave.anus == 2>>
-			<<set _anus = "soft butthole">>
-		<<else>>
-			<<set _anus = "tight butthole">>
-		<</if>>
-		<<if $activeSlave.anusTat == "bleached">>
-			$He knew $he was getting $his ass bleached, of course. The stinging sensation was hard to miss. Even so, $he cranes $his neck around as soon as possible to look at $his _anus in the mirror.
-		<<else>>
-			$He knew $he was getting $his asshole tattooed, of course. $He cranes $his neck around as soon as possible to look at $his _anus in the mirror.
-			<<if $activeSlave.butt > 5>>$His huge buttocks are still held apart by the spreaders used to give the tattooing actuators access to $his most intimate area, giving $him a good view.<</if>>
-		<</if>>
-		<<if $activeSlave.fetishKnown && $activeSlave.fetish == "buttslut">>
-			<<switch $activeSlave.anusTat>>
-			<<case "bleached">>
-				$He giggles at $his crinkled fuckhole's clean, fuckable appearance, and starts squeezing $his sphincter muscles experimentally. "Thank you, <<Master>>," $he gasps, flushing.
-			<<case "flowers" "tribal patterns">>
-				$He gasps at the beautiful design and then suddenly bursts into tears. "T-thank you, <<Master>>," $he blubbers. "I'm <<s>>-<<s>>uch an anal whore."
-			<<case "advertisements">>
-				$He stares, $his mouth working as $he spells out
-				<<if ($activeSlave.vagina > -1)>>
-					'Second Pussy.' $He smiles naughtily. "<<Master>>, it'<<s>> my //favorite// pu<<ss>>y,"
-				<<else>>
-					'Spit First.' $He smiles naughtily. "<<Master>>, that work<<s>> for me. Lube'<<s>> good too. Or, um, dry'<<s>> fine too,"
+		<<if $activeSlave.anusTat != _slaveBeforeSession.anusTat>>
+			<<if canSee($activeSlave)>>
+				<<if canTalk($activeSlave)>>
+					<<if $activeSlave.anus > 3>>
+						<<set _anus = "anal gape">>
+					<<elseif $activeSlave.anus == 3>>
+						<<set _anus = "relaxed asspussy">>
+					<<elseif $activeSlave.anus == 2>>
+						<<set _anus = "soft butthole">>
+					<<else>>
+						<<set _anus = "tight butthole">>
+					<</if>>
+					<<if $activeSlave.anusTat == "bleached">>
+						$He knew $he was getting $his ass bleached, of course. The stinging sensation was hard to miss. Even so, $he cranes $his neck around as soon as possible to look at $his _anus in the mirror.
+					<<else>>
+						$He knew $he was getting $his asshole tattooed, of course. $He cranes $his neck around as soon as possible to look at $his _anus in the mirror.
+						<<if $activeSlave.butt > 5>>$His huge buttocks are still held apart by the spreaders used to give the tattooing actuators access to $his most intimate area, giving $him a good view.<</if>>
+					<</if>>
+					<<if $activeSlave.fetishKnown && $activeSlave.fetish == "buttslut">>
+						<<switch $activeSlave.anusTat>>
+						<<case "bleached">>
+							$He giggles at $his crinkled fuckhole's clean, fuckable appearance, and starts squeezing $his sphincter muscles experimentally. "Thank you, <<Master>>," $he gasps, flushing.
+						<<case "flowers" "tribal patterns">>
+							$He gasps at the beautiful design and then suddenly bursts into tears. "T-thank you, <<Master>>," $he blubbers. "I'm <<s>>-<<s>>uch an anal whore."
+						<<case "advertisements">>
+							$He stares, $his mouth working as $he spells out
+							<<if ($activeSlave.vagina > -1)>>
+								'Second Pussy.' $He smiles naughtily. "<<Master>>, it'<<s>> my //favorite// pu<<ss>>y,"
+							<<else>>
+								'Spit First.' $He smiles naughtily. "<<Master>>, that work<<s>> for me. Lube'<<s>> good too. Or, um, dry'<<s>> fine too,"
+							<</if>>
+							$he giggles.
+						<<case "rude words">>
+							$He stares, $his mouth working as $he spells out
+							<<if ($activeSlave.vagina > -1)>>
+								'Fucktoy's Favorite Fuckhole.' $He smiles naughtily. "<<Master>>, it sure i<<s>>,"
+							<<else>>
+								'Sissy Slut's Sodomy Slit.' $He smiles naughtily. "<<Master>>, I love it when you fuck my lewd butt <<s>>lit,"
+							<</if>>
+							$he giggles.
+						<<case "sacrilege">>
+							$He stares, $his mouth working as $he reads the ring of Aramaic blasphemy around $his hole. Getting it, $he smiles naughtily. "<<Master>>, I'm a horrible little butthole <<s>>uccubu<<s>>. Plea<<s>>e, <<Master>>, feed me. I need cum in my a<<ss>> to <<s>>urvive."
+						<<case "sacrament">>
+							$He stares, $his mouth working as $he reads the ring of Aramaic around $his hole. Getting it, $he smiles beatifically. "<<Master>>, I alway<<s>> knew butt<<s>>e<<x>> was a <<s>>acrament."
+						<<case "degradation">>
+							$He stares, $his mouth working as $he spells out '<<if $PC.title == 1>>Master<<else>>Mistress<</if>> Made Me An Anal Slut.' $He smiles naughtily. "Oh <<Master>>, you did," $he <<say>>s gratefully. "And I love you for it."
+						<<case "counting">>
+							$He stares, realizing that the markings denote how many times $he's been sodomized. "<<Master>>, thank you, and, and, I hope I'll have to come back in here a lot," $he <<say>>s. "Um, becau<<s>>e I have to have that updated. Because I'm being fucked in the butt a lot," $he adds, wanting to be completely clear.
+						<<case "bovine patterns">>
+							$He stares at $his new cow's anus. Finally, $he focuses on the upsides of being permanently transformed like this. "<<Master>>, I hope thi<<s>> mean<<s>> I'll have to be fed up the butt a lot," $he <<say>>s, referencing the milking systems' anal feeders.
+						<<case "possessive">>
+							$He stares, realizing that the ring of numbers around $his anus give the date $he was enslaved by you. "Be<<s>t place for that date, <<Master>>," $he <<say>>s. "Being a butt <<s>>lut i<<s>> my life now."
+						<<case "paternalist">>
+							$He stares, $his mouth working as $he spells out '<<if $PC.title == 1>>Master<<else>>Mistress<</if>> Helped Me Love Anal.' "Oh <<Master>>, you did," $he coos. "You did! Thank you <<s>>o much for helping me become the anal <<s>>lut I wa<<s>> alway<<s>> meant to be!"
+						<</switch>>
+					<<elseif $activeSlave.devotion > 50>>
+						<<switch $activeSlave.anusTat>>
+						<<case "bleached">>
+							$He gasps at how closely the crinkled skin around $his anal opening matches the rest of $his $activeSlave.skin body. "Oh, it'<<s>> <<s>>o beautiful! Thank you, <<Master>>, thank you," $he exclaims lovingly.
+						<<case "flowers" "tribal patterns">>
+							$He gasps at the beautiful design. "It'<<s>> <<s>>o pretty, <<Master>>," $he <<say>>s. "Thank you. I love you <<s>>o much!"
+						<<case "advertisements" "rude words" "sacrilege" "sacrament" "degradation" "possessive" "paternalist">>
+							$He stares, $his mouth working as $he spells out the words tattooed in a ring around $his asshole. "Thank you, <<Master>>," $he <<say>>s devotedly. "I love you and I'll <<s>>erve you with my butthole a<<s>> be<<s>>t I can."
+						<<default>>
+							$He smiles, pleased at the mark of your attention to $his body. "Thank you, <<Master>>," $he <<say>>s devotedly. "I love you and I'll <<s>>erve you with my butthole a<<s>> be<<s>>t I can."
+						<</switch>>
+					<<elseif $activeSlave.sexualFlaw == "hates anal">>
+						$He stares,
+						<<switch $activeSlave.anusTat>>
+						<<case "bleached">>
+							horrified, and then shudders convulsively, but can't look away.
+						<<case "flowers" "tribal patterns">>
+							torn between fascination at the intricate design and horror at having $his anus permanently tattooed.
+						<<case "advertisements" "rude words" "sacrilege" "sacrament" "degradation" "possessive" "paternalist">>
+							$his mouth working as $he spells out the words tattooed in a ring around $his asshole. $He starts to cry as their meaning sinks in.
+						<<default>>
+							lower lip quivering.
+						<</switch>>
+						$He hates being assraped, and knows that this means there's lots of it in store for $him. "<<Master>>, p-plea<<s>>e," $he moans halfheartedly. "I d-don't like being b-butt f-fucked."
+					<<elseif $activeSlave.devotion > 20>>
+						$He stares,
+						<<switch $activeSlave.anusTat>>
+						<<case "bleached">>
+							fascinated. $He doesn't seem sure what to make of this.
+						<<case "flowers" "tribal patterns">>
+							torn between admiration of the pretty design and realization that $his anus has been permanently tattooed.
+						<<case "advertisements" "rude words" "sacrilege" "sacrament" "degradation" "possessive" "paternalist">>
+							$his mouth working as $he spells out the words tattooed in a ring around $his asshole. $He shudders a little as they sink in and $he internalizes what they say about $him and $his asshole.
+						<<default>>
+							realizing that $his anus has been permanently tattooed. It's yet another proof that $he's permanently a sex slave, and $his anus is for fucking.
+						<</switch>>
+						"Thank you, <<Master>>," $he <<say>>s, taking refuge in propriety. "Um, d-doe<<s>> thi<<s>> mean I'm going to be more of a, um, b-butt<<s>>lut?" $he asks hesitantly, not sounding very enthusiastic.
+					<<elseif $activeSlave.trust < -20>>
+						$He stares,
+						<<switch $activeSlave.anusTat>>
+						<<case "bleached">>
+							trying to process the appearance of what must seem like an unnaturally clean-looking hole.
+						<<case "flowers" "tribal patterns">>
+							struggling to process the fact that one of $his most intimate areas has been tattooed. Beautifully tattooed, but still.
+						<<case "advertisements" "rude words" "sacrilege" "sacrament" "degradation" "possessive" "paternalist">>
+							$his mouth working as $he spells out the words tattooed in a ring around $his asshole. $He shudders as $he does $his best to conceal $his feelings about such a permanent display of $his status as an anal slave.
+						<<default>>
+							looking sad as the meaning of a permanent display of $his status as an anal slave sinks in.
+						<</switch>>
+						After a short pause $he remembers $his duties and stammers, "T-thank you, <<Master>>." After a while longer $he turns $his head away, clearly not wanting to dwell on how $his anus is obviously being beautified to attract sexual attention.
+					<<else>>
+						<<switch $activeSlave.anusTat>>
+						<<case "bleached">>
+							$His face darkens as $he sees $his crinkled fuckhole's clean, fuckable appearance. "Don't you dare fucking a<<ss>>rape me!" $he bursts out.
+						<<case "flowers" "tribal patterns">>
+							$He's momentarily surprised by the pretty design, but then $his face darkens. "That'<<s>> permanent!" $he bursts out. "My a<<ss>>hole i<<s>> going to look like that forever!"
+						<<case "advertisements">>
+							$He stares, $his mouth working as $he spells out
+							<<if ($activeSlave.vagina > -1)>>
+								'Second Pussy.' $His face darkens. "No it'<<s>> not," $he bursts out. "Anal is dirty."
+							<<else>>
+								'Spit First.' $His face darkens. "Gro<<ss>>," $he bursts out. "Gro<<ss>> and wrong!"
+							<</if>>
+						<<case "rude words">>
+							$He stares, $his mouth working as $he spells out
+							<<if ($activeSlave.vagina > -1)>>
+								'Fucktoy's Favorite Fuckhole.' $His face darkens. "No it'<<s>> not," $he bursts out. "It'<<s>> my a<<ss>>!"
+							<<else>>
+								'Sissy Slut's Sodomy Slit.' $His face darkens. "No it'<<s>> not," $he bursts out. "I'm not a <<s>>i<<ss>>y! Or a <<s>>lut! And it'<<s>> not a slit!" Those are debatable, but they can all change, of course.
+							<</if>>
+						<<case "sacrilege" "sacrament">>
+							$He stares, $his mouth working as $he reads the ring of Aramaic around $his hole. $He doesn't understand it, but $he's not happy about having stuff permanently inscribed around $his ass.
+						<<case "degradation">>
+							$He stares, $his mouth working as $he spells out '<<if $PC.title == 1>>Master<<else>>Mistress<</if>> Made Me An Anal Slut.' $His face darkens. "No I'm not," $he bursts out. That remains to be seen.
+						<<case "counting">>
+							$He stares, realizing that the markings denote how many times $he's been sodomized. $His face darkens. "I <<s>>ee there'<<s>> room for more," $he bursts out. "Fucking gro<<ss>>."
+						<<case "bovine patterns">>
+							$He stares at $his new cow's anus. "Fucking gro<<ss>>," $he bursts out. "I'm not an animal." That remains to be seen.
+						<<case "possessive">>
+							$He stares, realizing that the ring of numbers around $his anus give the date $he was enslaved by you. $His face darkens. "Wor<<s>>t day of my life," $he bursts out.
+						<<case "paternalist">>
+							$He stares, $his mouth working as $he spells out '<<if $PC.title == 1>>Master<<else>>Mistress<</if>> Helped Me Love Anal.' "I don't," $he bursts out. "It'<<s>> fucking gro<<ss>>."
+						<</switch>>
+					<</if>>
 				<</if>>
-				$he giggles.
-			<<case "rude words">>
-				$He stares, $his mouth working as $he spells out
-				<<if ($activeSlave.vagina > -1)>>
-					'Fucktoy's Favorite Fuckhole.' $He smiles naughtily. "<<Master>>, it sure i<<s>>,"
-				<<else>>
-					'Sissy Slut's Sodomy Slit.' $He smiles naughtily. "<<Master>>, I love it when you fuck my lewd butt <<s>>lit,"
-				<</if>>
-				$he giggles.
-			<<case "sacrilege">>
-				$He stares, $his mouth working as $he reads the ring of Aramaic blasphemy around $his hole. Getting it, $he smiles naughtily. "<<Master>>, I'm a horrible little butthole <<s>>uccubu<<s>>. Plea<<s>>e, <<Master>>, feed me. I need cum in my a<<ss>> to <<s>>urvive."
-			<<case "sacrament">>
-				$He stares, $his mouth working as $he reads the ring of Aramaic around $his hole. Getting it, $he smiles beatifically. "<<Master>>, I alway<<s>> knew butt<<s>>e<<x>> was a <<s>>acrament."
-			<<case "degradation">>
-				$He stares, $his mouth working as $he spells out '<<if $PC.title == 1>>Master<<else>>Mistress<</if>> Made Me An Anal Slut.' $He smiles naughtily. "Oh <<Master>>, you did," $he <<say>>s gratefully. "And I love you for it."
-			<<case "counting">>
-				$He stares, realizing that the markings denote how many times $he's been sodomized. "<<Master>>, thank you, and, and, I hope I'll have to come back in here a lot," $he <<say>>s. "Um, becau<<s>>e I have to have that updated. Because I'm being fucked in the butt a lot," $he adds, wanting to be completely clear.
-			<<case "bovine patterns">>
-				$He stares at $his new cow's anus. Finally, $he focuses on the upsides of being permanently transformed like this. "<<Master>>, I hope thi<<s>> mean<<s>> I'll have to be fed up the butt a lot," $he <<say>>s, referencing the milking systems' anal feeders.
-			<<case "possessive">>
-				$He stares, realizing that the ring of numbers around $his anus give the date $he was enslaved by you. "Be<<s>t place for that date, <<Master>>," $he <<say>>s. "Being a butt <<s>>lut i<<s>> my life now."
-			<<case "paternalist">>
-				$He stares, $his mouth working as $he spells out '<<if $PC.title == 1>>Master<<else>>Mistress<</if>> Helped Me Love Anal.' "Oh <<Master>>, you did," $he coos. "You did! Thank you <<s>>o much for helping me become the anal <<s>>lut I wa<<s>> alway<<s>> meant to be!"
-			<</switch>>
-		<<elseif $activeSlave.devotion > 50>>
-			<<switch $activeSlave.anusTat>>
-			<<case "bleached">>
-				$He gasps at how closely the crinkled skin around $his anal opening matches the rest of $his $activeSlave.skin body. "Oh, it'<<s>> <<s>>o beautiful! Thank you, <<Master>>, thank you," $he exclaims lovingly.
-			<<case "flowers" "tribal patterns">>
-				$He gasps at the beautiful design. "It'<<s>> <<s>>o pretty, <<Master>>," $he <<say>>s. "Thank you. I love you <<s>>o much!"
-			<<case "advertisements" "rude words" "sacrilege" "sacrament" "degradation" "possessive" "paternalist">>
-				$He stares, $his mouth working as $he spells out the words tattooed in a ring around $his asshole. "Thank you, <<Master>>," $he <<say>>s devotedly. "I love you and I'll <<s>>erve you with my butthole a<<s>> be<<s>>t I can."
-			<<default>>
-				$He smiles, pleased at the mark of your attention to $his body. "Thank you, <<Master>>," $he <<say>>s devotedly. "I love you and I'll <<s>>erve you with my butthole a<<s>> be<<s>>t I can."
-			<</switch>>
-		<<elseif $activeSlave.sexualFlaw == "hates anal">>
-			$He stares,
-			<<switch $activeSlave.anusTat>>
-			<<case "bleached">>
-				horrified, and then shudders convulsively, but can't look away.
-			<<case "flowers" "tribal patterns">>
-				torn between fascination at the intricate design and horror at having $his anus permanently tattooed.
-			<<case "advertisements" "rude words" "sacrilege" "sacrament" "degradation" "possessive" "paternalist">>
-				$his mouth working as $he spells out the words tattooed in a ring around $his asshole. $He starts to cry as their meaning sinks in.
-			<<default>>
-				lower lip quivering.
-			<</switch>>
-			$He hates being assraped, and knows that this means there's lots of it in store for $him. "<<Master>>, p-plea<<s>>e," $he moans halfheartedly. "I d-don't like being b-butt f-fucked."
-		<<elseif $activeSlave.devotion > 20>>
-			$He stares,
-			<<switch $activeSlave.anusTat>>
-			<<case "bleached">>
-				fascinated. $He doesn't seem sure what to make of this.
-			<<case "flowers" "tribal patterns">>
-				torn between admiration of the pretty design and realization that $his anus has been permanently tattooed.
-			<<case "advertisements" "rude words" "sacrilege" "sacrament" "degradation" "possessive" "paternalist">>
-				$his mouth working as $he spells out the words tattooed in a ring around $his asshole. $He shudders a little as they sink in and $he internalizes what they say about $him and $his asshole.
-			<<default>>
-				realizing that $his anus has been permanently tattooed. It's yet another proof that $he's permanently a sex slave, and $his anus is for fucking.
-			<</switch>>
-			"Thank you, <<Master>>," $he <<say>>s, taking refuge in propriety. "Um, d-doe<<s>> thi<<s>> mean I'm going to be more of a, um, b-butt<<s>>lut?" $he asks hesitantly, not sounding very enthusiastic.
-		<<elseif $activeSlave.trust < -20>>
-			$He stares,
-			<<switch $activeSlave.anusTat>>
-			<<case "bleached">>
-				trying to process the appearance of what must seem like an unnaturally clean-looking hole.
-			<<case "flowers" "tribal patterns">>
-				struggling to process the fact that one of $his most intimate areas has been tattooed. Beautifully tattooed, but still.
-			<<case "advertisements" "rude words" "sacrilege" "sacrament" "degradation" "possessive" "paternalist">>
-				$his mouth working as $he spells out the words tattooed in a ring around $his asshole. $He shudders as $he does $his best to conceal $his feelings about such a permanent display of $his status as an anal slave.
-			<<default>>
-				looking sad as the meaning of a permanent display of $his status as an anal slave sinks in.
-			<</switch>>
-			After a short pause $he remembers $his duties and stammers, "T-thank you, <<Master>>." After a while longer $he turns $his head away, clearly not wanting to dwell on how $his anus is obviously being beautified to attract sexual attention.
-		<<else>>
-			<<switch $activeSlave.anusTat>>
-			<<case "bleached">>
-				$His face darkens as $he sees $his crinkled fuckhole's clean, fuckable appearance. "Don't you dare fucking a<<ss>>rape me!" $he bursts out.
-			<<case "flowers" "tribal patterns">>
-				$He's momentarily surprised by the pretty design, but then $his face darkens. "That'<<s>> permanent!" $he bursts out. "My a<<ss>>hole i<<s>> going to look like that forever!"
-			<<case "advertisements">>
-				$He stares, $his mouth working as $he spells out
-				<<if ($activeSlave.vagina > -1)>>
-					'Second Pussy.' $His face darkens. "No it'<<s>> not," $he bursts out. "Anal is dirty."
-				<<else>>
-					'Spit First.' $His face darkens. "Gro<<ss>>," $he bursts out. "Gro<<ss>> and wrong!"
-				<</if>>
-			<<case "rude words">>
-				$He stares, $his mouth working as $he spells out
-				<<if ($activeSlave.vagina > -1)>>
-					'Fucktoy's Favorite Fuckhole.' $His face darkens. "No it'<<s>> not," $he bursts out. "It'<<s>> my a<<ss>>!"
-				<<else>>
-					'Sissy Slut's Sodomy Slit.' $His face darkens. "No it'<<s>> not," $he bursts out. "I'm not a <<s>>i<<ss>>y! Or a <<s>>lut! And it'<<s>> not a slit!" Those are debatable, but they can all change, of course.
-				<</if>>
-			<<case "sacrilege" "sacrament">>
-				$He stares, $his mouth working as $he reads the ring of Aramaic around $his hole. $He doesn't understand it, but $he's not happy about having stuff permanently inscribed around $his ass.
-			<<case "degradation">>
-				$He stares, $his mouth working as $he spells out '<<if $PC.title == 1>>Master<<else>>Mistress<</if>> Made Me An Anal Slut.' $His face darkens. "No I'm not," $he bursts out. That remains to be seen.
-			<<case "counting">>
-				$He stares, realizing that the markings denote how many times $he's been sodomized. $His face darkens. "I <<s>>ee there'<<s>> room for more," $he bursts out. "Fucking gro<<ss>>."
-			<<case "bovine patterns">>
-				$He stares at $his new cow's anus. "Fucking gro<<ss>>," $he bursts out. "I'm not an animal." That remains to be seen.
-			<<case "possessive">>
-				$He stares, realizing that the ring of numbers around $his anus give the date $he was enslaved by you. $His face darkens. "Wor<<s>>t day of my life," $he bursts out.
-			<<case "paternalist">>
-				$He stares, $his mouth working as $he spells out '<<if $PC.title == 1>>Master<<else>>Mistress<</if>> Helped Me Love Anal.' "I don't," $he bursts out. "It'<<s>> fucking gro<<ss>>."
-			<</switch>>
+			<</if>>
 		<</if>>
 	<</if>>
-	<</if>>
-	<</if>>
-	<</if>>
 <</if>>
 
 /* 000-250-006 */
 <<if $seeImages == 1>>
-<<if $imageChoice == 1>>
-	<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 3 0>></div>
-<<else>>
-	<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 3 0>></div>
-<</if>>
+	<<if $imageChoice == 1>>
+		<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 3 0>></div>
+	<<else>>
+		<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 3 0>></div>
+	<</if>>
 <</if>>
 /* 000-250-006 */
 
@@ -555,17 +555,17 @@ Remove piercings from:
 /* TATTOOS */
 
 Tattoos:
-<<if $activeSlave.shouldersTat	!= 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<shouldersTatDescription>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.lipsTat		!= 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<lipsTatDescription>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.boobsTat		!= 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<boobsTatDescription>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.armsTat		!= 0 && $activeSlave.amp != 1>>	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<armsTatDescription>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.backTat		!= 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<backTatDescription>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.stampTat		!= 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<stampTatDescription>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.buttTat		!= 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<buttTatDescription>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.vaginaTat		!= 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<vaginaTatDescription>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.dickTat		!= 0 && $activeSlave.dick > 0>>	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<dickTatDescription>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.anusTat		!= 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<anusTatDescription>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.legsTat		!= 0 && $activeSlave.amp != 1>>	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<legsTatDescription>><<set _hasTat = 1>><</if>>
+<<if $activeSlave.shouldersTat != 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<shouldersTatDescription>><<set _hasTat = 1>><</if>>
+<<if $activeSlave.lipsTat != 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<lipsTatDescription>><<set _hasTat = 1>><</if>>
+<<if $activeSlave.boobsTat != 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<boobsTatDescription>><<set _hasTat = 1>><</if>>
+<<if $activeSlave.armsTat != 0 && $activeSlave.amp != 1>>	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<armsTatDescription>><<set _hasTat = 1>><</if>>
+<<if $activeSlave.backTat != 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<backTatDescription>><<set _hasTat = 1>><</if>>
+<<if $activeSlave.stampTat != 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<stampTatDescription>><<set _hasTat = 1>><</if>>
+<<if $activeSlave.buttTat != 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<buttTatDescription>><<set _hasTat = 1>><</if>>
+<<if $activeSlave.vaginaTat != 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<vaginaTatDescription>><<set _hasTat = 1>><</if>>
+<<if $activeSlave.dickTat != 0 && $activeSlave.dick > 0>>	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<dickTatDescription>><<set _hasTat = 1>><</if>>
+<<if $activeSlave.anusTat != 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<anusTatDescription>><<set _hasTat = 1>><</if>>
+<<if $activeSlave.legsTat != 0 && $activeSlave.amp != 1>>	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<legsTatDescription>><<set _hasTat = 1>><</if>>
 
 <br>&nbsp;&nbsp;&nbsp;&nbsp;
 Choose a tattoo style:
diff --git a/src/uncategorized/brothelReport.tw b/src/uncategorized/brothelReport.tw
index d6c0f9211a439c8730a5f010925e315df35eaa99..03bb2914699a4c8338ffdc15a2b015448b2f9f7b 100644
--- a/src/uncategorized/brothelReport.tw
+++ b/src/uncategorized/brothelReport.tw
@@ -141,7 +141,7 @@
 					$He shows off how even a cow like $slaves[$i].slaveName can achieve physical perfection.
 					<<set $madamCashBonus += 0.15>>
 				<<else>>
-					 A<<if ($slaves[$i].muscles < 30)>>n unmuscled,<</if>><<if ($slaves[$i].weight > 30)>> fat,<</if>> 'prestigious' <<if ($slaves[$i].lactation > 0)>>cow<<elseif (($slaves[$i].boobs-$slaves[$i].boobsImplant) > 6000)>>mass of titflesh<<else>>slave<</if>> like $slaves[$i].slaveName is woefully out of fashion, so $Milkmaid.slaveName tries to draw attention away from _him2.
+					A<<if ($slaves[$i].muscles < 30)>>n unmuscled,<</if>><<if ($slaves[$i].weight > 30)>> fat,<</if>> 'prestigious' <<if ($slaves[$i].lactation > 0)>>cow<<elseif (($slaves[$i].boobs-$slaves[$i].boobsImplant) > 6000)>>mass of titflesh<<else>>slave<</if>> like $slaves[$i].slaveName is woefully out of fashion, so $Milkmaid.slaveName tries to draw attention away from _him2.
 				<</if>>
 			<<else>>
 				<<if ($slaves[$i].lactation > 0) && (($slaves[$i].boobs-$slaves[$i].boobsImplant) > 6000)>>
diff --git a/src/uncategorized/corporationDevelopments.tw b/src/uncategorized/corporationDevelopments.tw
index dcd0a1cd4d1ef34a21c69386e799b88e334abea8..6fbe489d2ab98ad4905351f31495cb8f3e91598d 100644
--- a/src/uncategorized/corporationDevelopments.tw
+++ b/src/uncategorized/corporationDevelopments.tw
@@ -99,23 +99,23 @@ its human holdings.
 Since it is
 <<if _dividendPerShare > 5>> <<set _dividendPerShare = 5 * Math.floor(0.2 * Math.log(_dividendPerShare)/Math.log(1.25))>>
 	<<set _multplier = _dividendPerShare>>
-	 incredibly profitable, a massive dividend of @@.yellowgreen;<<print cashFormat(_dividendPerShare)>>@@
+	incredibly profitable, a massive dividend of @@.yellowgreen;<<print cashFormat(_dividendPerShare)>>@@
 <<elseif _dividendPerShare > 3>> <<set _multplier = 3>>
-	 extremely profitable, a huge dividend of @@.yellowgreen;¤3@@
+	extremely profitable, a huge dividend of @@.yellowgreen;¤3@@
 <<elseif _dividendPerShare > 2>> <<set _multplier = 2>>
-	 highly profitable, a huge dividend of @@.yellowgreen;¤2@@
+	highly profitable, a huge dividend of @@.yellowgreen;¤2@@
 <<elseif _dividendPerShare > 1>> <<set _multplier = 1>>
-	 very profitable, a large dividend of @@.yellowgreen;¤1@@
+	very profitable, a large dividend of @@.yellowgreen;¤1@@
 <<elseif _dividendPerShare > 0.5>> <<set _multplier = 0.5>>
-	 quite profitable, a moderate dividend of @@.yellowgreen;¤0.5@@
+	quite profitable, a moderate dividend of @@.yellowgreen;¤0.5@@
 <<elseif _dividendPerShare > 0.3>> <<set _multplier = 0.3>>
-	 acceptably profitable, a reasonable dividend of @@.yellowgreen;¤0.3@@
+	acceptably profitable, a reasonable dividend of @@.yellowgreen;¤0.3@@
 <<elseif _dividendPerShare > 0.2>> <<set _multplier = 0.2>>
-	 moderately profitable, a modest dividend of @@.yellowgreen;¤0.2@@
+	moderately profitable, a modest dividend of @@.yellowgreen;¤0.2@@
 <<elseif _dividendPerShare > 0.1>> <<set _multplier = 0.1>>
-	 modestly profitable, a small dividend of @@.yellowgreen;¤0.1@@
+	modestly profitable, a small dividend of @@.yellowgreen;¤0.1@@
 <<elseif $corpProfit > 0>> <<set _multplier = 1+Math.ceil(($corpProfit*0.2*$personalShares)/_totalShares)>>
-		bearly profitable, a meager dividend
+	barely profitable, a meager dividend
 <</if>>
 <<if _dividendPerShare >= 0.1>>/share<</if>> was paid out to stockholders; you received @@.yellowgreen;<<if _dividendPerShare >= 0.1>> <<print cashFormat($personalShares*_multplier)>> <<else>> <<print cashFormat(_multplier)>> <</if>>@@.
 <<if _dividendPerShare >= 0.1>>
@@ -572,7 +572,7 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p
 		<</if>>
 	<</link>>
 	| <<link "Invest Half">>
-		 <<if $generalAssetPrice*1000 < $corpCash>>
+		<<if $generalAssetPrice*1000 < $corpCash>>
 			<<set $generalAssets += (Math.trunc($corpCash/($generalAssetPrice*1000)))*500>>
 			<<set $corpCash -= (Math.trunc($corpCash/($generalAssetPrice*1000)))*($generalAssetPrice*500)>>
 			<<replace "#cashOnHand">>
@@ -584,13 +584,13 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p
 			<<replace "#update">>
 			<</replace>>
 		<<else>>
-		<<replace "#update">>
-			There are insufficient funds for additional purchases.
-		<</replace>>
+			<<replace "#update">>
+				There are insufficient funds for additional purchases.
+			<</replace>>
 		<</if>>
 	<</link>>
 	| <<link "Massive investment">>
-		 <<if $generalAssetPrice*1000 < $corpCash>>
+		<<if $generalAssetPrice*1000 < $corpCash>>
 			<<set $generalAssets += (Math.trunc($corpCash/($generalAssetPrice*500)))*500>>
 			<<set $corpCash -= (Math.trunc($corpCash/($generalAssetPrice*500)))*($generalAssetPrice*500)>>
 			<<replace "#cashOnHand">>
@@ -602,9 +602,9 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p
 			<<replace "#update">>
 			<</replace>>
 		<<else>>
-		<<replace "#update">>
-			There are insufficient funds for additional purchases.
-		<</replace>>
+			<<replace "#update">>
+				There are insufficient funds for additional purchases.
+			<</replace>>
 		<</if>>
 	<</link>>
 	| <<link "Sell">>
@@ -665,7 +665,7 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p
 	Slave prices are
 	<<if $slaveAssetPrice > 12>>@@.yellowgreen;very high@@<<elseif $slaveAssetPrice > 10>>@@.yellowgreen;high@@<<elseif $slaveAssetPrice == 10>>average<<elseif $slaveAssetPrice >= 8>>@@.gold;low@@<<else>>@@.gold;very low@@<</if>>.
 	| <<link "Buy">>
-		 <<if $slaveAssetPrice*500 < $corpCash>>
+		<<if $slaveAssetPrice*500 < $corpCash>>
 			<<set $slaveAssets += 500>>
 			<<set $corpCash -= 500*$slaveAssetPrice>>
 			<<replace "#cashOnHand">>
@@ -677,9 +677,9 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p
 			<<replace "#update">>
 			<</replace>>
 		<<else>>
-		<<replace "#update">>
-			There are insufficient funds for additional purchases.
-		<</replace>>
+			<<replace "#update">>
+				There are insufficient funds for additional purchases.
+			<</replace>>
 		<</if>>
 	<</link>>
 	| <<link "Invest Half">>
diff --git a/src/uncategorized/fsDevelopments.tw b/src/uncategorized/fsDevelopments.tw
index 65424c7a89be9406928846fbf78bef8497e726ea..6a61a36ab3965195bdd95c90c240b1a66a617715 100644
--- a/src/uncategorized/fsDevelopments.tw
+++ b/src/uncategorized/fsDevelopments.tw
@@ -209,14 +209,14 @@
 	<<case 7>>Maintaining seven societal goals requires @@.red;extremely unfocused social engineering.@@
 	<</switch>>
 <<else>>
-<<set _broadProgress += 2 - _societies>>
-<<switch _societies>>
-<<case 1>>Maintaining a single societal goal allows @@.green;very focused social engineering.@@
-<<case 2>>Maintaining two societal goals allows @@.green;focused social engineering.@@
-<<case 3>>Maintaining three societal goals requires @@.yellow;broad social engineering.@@
-<<case 4>>Maintaining four societal goals requires @@.red;unfocused social engineering.@@
-<<case 5>>Maintaining five societal goals requires @@.red;very unfocused social engineering.@@
-<</switch>>
+	<<set _broadProgress += 2 - _societies>>
+	<<switch _societies>>
+	<<case 1>>Maintaining a single societal goal allows @@.green;very focused social engineering.@@
+	<<case 2>>Maintaining two societal goals allows @@.green;focused social engineering.@@
+	<<case 3>>Maintaining three societal goals requires @@.yellow;broad social engineering.@@
+	<<case 4>>Maintaining four societal goals requires @@.red;unfocused social engineering.@@
+	<<case 5>>Maintaining five societal goals requires @@.red;very unfocused social engineering.@@
+	<</switch>>
 <</if>> /*closes FS count changes */
 <<if _broadProgress != 0>>
 	<<if $arcologies[0].FSSupremacist != "unset">>
@@ -310,16 +310,16 @@
 
 /* Promenade effects */
 <<for _i = 5; _i <= 7; _i++>>
-<<if $sectors[_i].type != "Shops">>
-<<if $sectors[_i].type != "Brothel">>
-<<if $sectors[_i].type != "Club">>
-	The $sectors[_i].type establishments on the Promenade help develop society.
-	<<set _changed_fs = $sectors[_i].type.replace(" ","")>>
-	<<= FSChange(_changed_fs, 4)>>
-	<<continue>>
-<</if>>
-<</if>>
-<</if>>
+	<<if $sectors[_i].type != "Shops">>
+		<<if $sectors[_i].type != "Brothel">>
+			<<if $sectors[_i].type != "Club">>
+				The $sectors[_i].type establishments on the Promenade help develop society.
+				<<set _changed_fs = $sectors[_i].type.replace(" ","")>>
+				<<= FSChange(_changed_fs, 4)>>
+				<<continue>>
+			<</if>>
+		<</if>>
+	<</if>>
 <</for>>
 
 /* PA FS bonuses */
@@ -328,62 +328,62 @@
 <<set _seed1 = 0, _seed2 = 0>>
 <<if $arcologies[0].FSSupremacist != "unset">>
 	<<if ($assistantAppearance == "amazon") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "succubus")>>
-	 <<set $arcologies[0].FSSupremacist += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed1 = 1>>
+		<<set $arcologies[0].FSSupremacist += 0.1*$FSSingleSlaveRep>>
+		<<set _seed1 = 1>>
 	<</if>>
 	<<if ($assistantFSAppearance == "supremacist")>>
-	 <<set $arcologies[0].FSSupremacist += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed2 = 2>>
+		<<set $arcologies[0].FSSupremacist += 0.1*$FSSingleSlaveRep>>
+		<<set _seed2 = 2>>
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSSubjugationist != "unset">>
 	<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "amazon") || ($assistantAppearance == "imp")>>
-	 <<set $arcologies[0].FSSubjugationist += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed1 = 1>>
+		<<set $arcologies[0].FSSubjugationist += 0.1*$FSSingleSlaveRep>>
+		<<set _seed1 = 1>>
 	<</if>>
 	<<if ($assistantFSAppearance == "subjugationist")>>
-	 <<set $arcologies[0].FSSubjugationist += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed2 = 2>>
+		<<set $arcologies[0].FSSubjugationist += 0.1*$FSSingleSlaveRep>>
+		<<set _seed2 = 2>>
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSGenderRadicalist != "unset">>
 	<<if ($assistantAppearance == "monstergirl") || ($assistantAppearance == "shemale") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
-	 <<set $arcologies[0].FSGenderRadicalist += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed1 = 1>>
+		<<set $arcologies[0].FSGenderRadicalist += 0.1*$FSSingleSlaveRep>>
+		<<set _seed1 = 1>>
 	<</if>>
 	<<if ($assistantFSAppearance == "gender radicalist")>>
-	 <<set $arcologies[0].FSGenderRadicalist += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed2 = 2>>
+		<<set $arcologies[0].FSGenderRadicalist += 0.1*$FSSingleSlaveRep>>
+		<<set _seed2 = 2>>
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSRepopulationFocus != "unset">>
 	<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
-	 <<set $arcologies[0].FSRepopulationFocus += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed1 = 1>>
+		<<set $arcologies[0].FSRepopulationFocus += 0.1*$FSSingleSlaveRep>>
+		<<set _seed1 = 1>>
 	<</if>>
 	<<if ($assistantFSAppearance == "repopulation focus")>>
-	 <<set $arcologies[0].FSRepopulationFocus += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed2 = 2>>
+		<<set $arcologies[0].FSRepopulationFocus += 0.1*$FSSingleSlaveRep>>
+		<<set _seed2 = 2>>
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSRestart != "unset">>
 	<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "goddess") || ($assistantAppearance == "loli") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch") || ($assistantAppearance == "incubus") || ($assistantAppearance == "angel")>>
-	 <<set $arcologies[0].FSRestart += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed1 = 1>>
+		<<set $arcologies[0].FSRestart += 0.1*$FSSingleSlaveRep>>
+		<<set _seed1 = 1>>
 	<</if>>
 	<<if ($assistantFSAppearance == "eugenics")>>
-	 <<set $arcologies[0].FSRestart += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed2 = 2>>
+		<<set $arcologies[0].FSRestart += 0.1*$FSSingleSlaveRep>>
+		<<set _seed2 = 2>>
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSGenderFundamentalist != "unset">>
 	<<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "loli") || ($assistantAppearance == "fairy") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "angel") || ($assistantAppearance == "cherub") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
-	 <<set $arcologies[0].FSGenderFundamentalist += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed1 = 1>>
+		<<set $arcologies[0].FSGenderFundamentalist += 0.1*$FSSingleSlaveRep>>
+		<<set _seed1 = 1>>
 	<</if>>
 	<<if ($assistantFSAppearance == "gender fundamentalist")>>
-	 <<set $arcologies[0].FSGenderFundamentalist += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed2 = 2>>
+		<<set $arcologies[0].FSGenderFundamentalist += 0.1*$FSSingleSlaveRep>>
+		<<set _seed2 = 2>>
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSPaternalist != "unset">>
@@ -468,12 +468,12 @@
 <</if>>
 <<if $arcologies[0].FSPastoralist != "unset">>
 	<<if ($assistantAppearance == "shemale") || ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
-			<<set $arcologies[0].FSPastoralist += 0.1*$FSSingleSlaveRep>>
-			<<set _seed1 = 1>>
+		<<set $arcologies[0].FSPastoralist += 0.1*$FSSingleSlaveRep>>
+		<<set _seed1 = 1>>
 	<</if>>
 	<<if ($assistantFSAppearance == "pastoralist")>>
-			<<set $arcologies[0].FSPastoralist += 0.1*$FSSingleSlaveRep>>
-			<<set _seed2 = 2>>
+		<<set $arcologies[0].FSPastoralist += 0.1*$FSSingleSlaveRep>>
+		<<set _seed2 = 2>>
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSPhysicalIdealist != "unset">>
@@ -488,32 +488,32 @@
 <</if>>
 <<if $arcologies[0].FSHedonisticDecadence != "unset">>
 	<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "imp") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
-	 <<set $arcologies[0].FSHedonisticDecadence += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed1 = 1>>
+		<<set $arcologies[0].FSHedonisticDecadence += 0.1*$FSSingleSlaveRep>>
+		<<set _seed1 = 1>>
 	<</if>>
 	<<if ($assistantFSAppearance == "hedonistic decadence")>>
-	 <<set $arcologies[0].FSHedonisticDecadence += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed2 = 2>>
+		<<set $arcologies[0].FSHedonisticDecadence += 0.1*$FSSingleSlaveRep>>
+		<<set _seed2 = 2>>
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSChattelReligionist != "unset">>
 	<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch") || ($assistantAppearance == "angel") || ($assistantAppearance == "cherub") || ($assistantAppearance == "imp")>>
-	 <<set $arcologies[0].FSChattelReligionist += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed1 = 1>>
+		<<set $arcologies[0].FSChattelReligionist += 0.1*$FSSingleSlaveRep>>
+		<<set _seed1 = 1>>
 	<</if>>
 	<<if ($assistantFSAppearance == "chattel religionist")>>
-	 <<set $arcologies[0].FSChattelReligionist += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed2 = 2>>
+		<<set $arcologies[0].FSChattelReligionist += 0.1*$FSSingleSlaveRep>>
+		<<set _seed2 = 2>>
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSRomanRevivalist != "unset">>
 	<<if ($assistantAppearance == "amazon") || ($assistantAppearance == "businesswoman") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
-	 <<set $arcologies[0].FSRomanRevivalist += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed1 = 1>>
+		<<set $arcologies[0].FSRomanRevivalist += 0.1*$FSSingleSlaveRep>>
+		<<set _seed1 = 1>>
 	<</if>>
 	<<if ($assistantFSAppearance == "roman revivalist")>>
-	 <<set $arcologies[0].FSRomanRevivalist += 0.1*$FSSingleSlaveRep>>
-	 <<set _seed2 = 2>>
+		<<set $arcologies[0].FSRomanRevivalist += 0.1*$FSSingleSlaveRep>>
+		<<set _seed2 = 2>>
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSAztecRevivalist != "unset">>
diff --git a/src/uncategorized/futureSociety.tw b/src/uncategorized/futureSociety.tw
index a010bc14021e8a6877989ff943967366b762ef35..c56784c23f67f520292e60b9da804632b08b9fbd 100644
--- a/src/uncategorized/futureSociety.tw
+++ b/src/uncategorized/futureSociety.tw
@@ -99,79 +99,79 @@
 /* FIRST FS STORING FOR RIVALRY */
 
 <<if $rivalryFS == 0>>
-<<if $arcologies[0].FSSubjugationist != "unset">>
-	<<set $rivalryFS = "Racial Subjugationism">>
-	<<set $rivalryFSRace = $arcologies[0].FSSubjugationistRace>>
-<</if>>
-<<if $arcologies[0].FSSupremacist != "unset">>
-	<<set $rivalryFS = "Racial Supremacism">>
-	<<set $rivalryFSRace = $arcologies[0].FSSupremacistRace>>
-<</if>>
-<<if $arcologies[0].FSGenderRadicalist != "unset">>
-	<<set $rivalryFS = "Gender Radicalism">>
-<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-	<<set $rivalryFS = "Gender Fundamentalism">>
-<</if>>
-<<if $arcologies[0].FSRepopulationFocus != "unset">>
-	<<set $rivalryFS = "Repopulation Focus">>
-<<elseif $arcologies[0].FSRestart != "unset">>
-	<<set $rivalryFS = "Eugenics">>
-<</if>>
-<<if $arcologies[0].FSPaternalist != "unset">>
-	<<set $rivalryFS = "Paternalism">>
-<<elseif $arcologies[0].FSDegradationist != "unset">>
-	<<set $rivalryFS = "Degradationism">>
-<</if>>
-<<if $arcologies[0].FSBodyPurist != "unset">>
-	<<set $rivalryFS = "Body Purism">>
-<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-	<<set $rivalryFS = "Transformation Fetishism">>
-<</if>>
-<<if $arcologies[0].FSYouthPreferentialist != "unset">>
-	<<set $rivalryFS = "Youth Preferentialism">>
-<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-	<<set $rivalryFS = "Maturity Preferentialism">>
-<</if>>
-<<if $arcologies[0].FSSlimnessEnthusiast != "unset">>
-	<<set $rivalryFS = "Slimness Enthusiasm">>
-<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-	<<set $rivalryFS = "Asset Expansionism">>
-<</if>>
-<<if $arcologies[0].FSPastoralist != "unset">>
-	<<set $rivalryFS = "Pastoralism">>
-<<elseif $arcologies[0].FSCummunism != "unset">>
-	<<set $rivalryFS = "Cummunism">>
-<</if>>
-<<if $arcologies[0].FSHedonisticDecadence != "unset">>
-	<<set $rivalryFS = "Hedonistic Decadence">>
-<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-	<<set $rivalryFS = "Physical Idealism">>
-<</if>>
-<<if $arcologies[0].FSChattelReligionist != "unset">>
-	<<set $rivalryFS = "Chattel Religionism">>
-<<elseif $arcologies[0].FSNull != "unset">>
-	<<set $rivalryFS = "Multiculturalism">>
-<</if>>
-<<if $arcologies[0].FSRomanRevivalist != "unset">>
-	<<set $rivalryFS = "Roman Revivalism">>
-<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-	<<set $rivalryFS = "Aztec Revivalism">>
-<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-	<<set $rivalryFS = "Egyptian Revivalism">>
-<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-	<<set $rivalryFS = "Edo Revivalism">>
-<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-	<<set $rivalryFS = "Arabian Revivalism">>
-<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-	<<set $rivalryFS = "Chinese Revivalism">>
-<</if>>
+	<<if $arcologies[0].FSSubjugationist != "unset">>
+		<<set $rivalryFS = "Racial Subjugationism">>
+		<<set $rivalryFSRace = $arcologies[0].FSSubjugationistRace>>
+	<</if>>
+	<<if $arcologies[0].FSSupremacist != "unset">>
+		<<set $rivalryFS = "Racial Supremacism">>
+		<<set $rivalryFSRace = $arcologies[0].FSSupremacistRace>>
+	<</if>>
+	<<if $arcologies[0].FSGenderRadicalist != "unset">>
+		<<set $rivalryFS = "Gender Radicalism">>
+	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+		<<set $rivalryFS = "Gender Fundamentalism">>
+	<</if>>
+	<<if $arcologies[0].FSRepopulationFocus != "unset">>
+		<<set $rivalryFS = "Repopulation Focus">>
+	<<elseif $arcologies[0].FSRestart != "unset">>
+		<<set $rivalryFS = "Eugenics">>
+	<</if>>
+	<<if $arcologies[0].FSPaternalist != "unset">>
+		<<set $rivalryFS = "Paternalism">>
+	<<elseif $arcologies[0].FSDegradationist != "unset">>
+		<<set $rivalryFS = "Degradationism">>
+	<</if>>
+	<<if $arcologies[0].FSBodyPurist != "unset">>
+		<<set $rivalryFS = "Body Purism">>
+	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+		<<set $rivalryFS = "Transformation Fetishism">>
+	<</if>>
+	<<if $arcologies[0].FSYouthPreferentialist != "unset">>
+		<<set $rivalryFS = "Youth Preferentialism">>
+	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+		<<set $rivalryFS = "Maturity Preferentialism">>
+	<</if>>
+	<<if $arcologies[0].FSSlimnessEnthusiast != "unset">>
+		<<set $rivalryFS = "Slimness Enthusiasm">>
+	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+		<<set $rivalryFS = "Asset Expansionism">>
+	<</if>>
+	<<if $arcologies[0].FSPastoralist != "unset">>
+		<<set $rivalryFS = "Pastoralism">>
+	<<elseif $arcologies[0].FSCummunism != "unset">>
+		<<set $rivalryFS = "Cummunism">>
+	<</if>>
+	<<if $arcologies[0].FSHedonisticDecadence != "unset">>
+		<<set $rivalryFS = "Hedonistic Decadence">>
+	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+		<<set $rivalryFS = "Physical Idealism">>
+	<</if>>
+	<<if $arcologies[0].FSChattelReligionist != "unset">>
+		<<set $rivalryFS = "Chattel Religionism">>
+	<<elseif $arcologies[0].FSNull != "unset">>
+		<<set $rivalryFS = "Multiculturalism">>
+	<</if>>
+	<<if $arcologies[0].FSRomanRevivalist != "unset">>
+		<<set $rivalryFS = "Roman Revivalism">>
+	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+		<<set $rivalryFS = "Aztec Revivalism">>
+	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+		<<set $rivalryFS = "Egyptian Revivalism">>
+	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+		<<set $rivalryFS = "Edo Revivalism">>
+	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+		<<set $rivalryFS = "Arabian Revivalism">>
+	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+		<<set $rivalryFS = "Chinese Revivalism">>
+	<</if>>
 <</if>>
 
 <<if $cheatMode == 1>>
-<center>
-//[[Cheat Edit Future Society|MOD_Edit FS Cheat][$cheater = 1]]//
-</center>
-<br><br>
+	<center>
+	//[[Cheat Edit Future Society|MOD_Edit FS Cheat][$cheater = 1]]//
+	</center>
+	<br><br>
 <</if>>
 
 <<if $FSCredits > 0>>
@@ -560,27 +560,27 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 	<<link "Rename your obedient slaves according to Paternalist custom">>
 	<<for $i = 0; $i < $slaves.length; $i++>>
 		<<if ($slaves[$i].devotion > 20) || (($slaves[$i].devotion >= -20) && ($slaves[$i].trust < -20))>>
-		<<set $toSearch = $slaves[$i].slaveName>>
-		<<if ($toSearch.indexOf("Miss") == -1)>>
-		<<if ($toSearch.indexOf("Ms.") == -1)>>
-		<<if ($toSearch.indexOf("Mrs.") == -1)>>
-		<<if ($slaves[$i].relationship > 4)>>
-		/*
-			<<for $j = 0; $j < $slaves.length; $j++>>
-			<<if ($slaves[$i].relationshipTarget == $slaves[$j].ID)>>
-				<<set $slaves[$i].slaveName = ("Mrs. " + $slaves[$i].slaveName + " " + $slaves[$j].slaveName)>>
+			<<set $toSearch = $slaves[$i].slaveName>>
+			<<if ($toSearch.indexOf("Miss") == -1)>>
+				<<if ($toSearch.indexOf("Ms.") == -1)>>
+					<<if ($toSearch.indexOf("Mrs.") == -1)>>
+						<<if ($slaves[$i].relationship > 4)>>
+							/*
+							<<for $j = 0; $j < $slaves.length; $j++>>
+								<<if ($slaves[$i].relationshipTarget == $slaves[$j].ID)>>
+									<<set $slaves[$i].slaveName = ("Mrs. " + $slaves[$i].slaveName + " " + $slaves[$j].slaveName)>>
+								<</if>>
+							<</for>>
+							*/
+							<<set $slaves[$i].slaveName = ("Mrs. " + $slaves[$i].slaveName)>>
+						<<elseif ($slaves[$i].actualAge > 24)>>
+							<<set $slaves[$i].slaveName = ("Ms. " + $slaves[$i].slaveName)>>
+						<<else>>
+							<<set $slaves[$i].slaveName = ("Miss " + $slaves[$i].slaveName)>>
+						<</if>>
+					<</if>>
+				<</if>>
 			<</if>>
-			<</for>>
-		*/
-				<<set $slaves[$i].slaveName = ("Mrs. " + $slaves[$i].slaveName)>>
-		<<elseif ($slaves[$i].actualAge > 24)>>
-			<<set $slaves[$i].slaveName = ("Ms. " + $slaves[$i].slaveName)>>
-		<<else>>
-			<<set $slaves[$i].slaveName = ("Miss " + $slaves[$i].slaveName)>>
-		<</if>>
-		<</if>>
-		<</if>>
-		<</if>>
 		<</if>>
 	<</for>>
 	<<replace "#mass">>
@@ -596,9 +596,9 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 	<br>''You are pursuing'' $arcologies[0].FSSupremacistRace superiority. //<<link "Abandon" "Future Society">><<run removeFS("FSSupremacist")>><<if $assistantFSAppearance == "supremacist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSSupremacist">>
 	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "amazon") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "succubus")>>
-	//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
+		<<if ($assistantAppearance == "amazon") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "succubus")>>
+			//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+		<</if>>
 	<</if>>
 <<else>>
 	<<if $FSCredits > 0>>
@@ -625,9 +625,9 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 	<br>''You are pursuing'' $arcologies[0].FSSubjugationistRace inferiority. //<<link "Abandon" "Future Society">><<run removeFS("FSSubjugationist")>><<if $assistantFSAppearance == "subjugationist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSSubjugationist">>
 	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "amazon") || ($assistantAppearance == "imp")>>
-	//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
+		<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "amazon") || ($assistantAppearance == "imp")>>
+			//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+		<</if>>
 	<</if>>
 <<else>>
 	<<if $FSCredits > 0>>
@@ -651,582 +651,588 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <</if>>
 
 <<if $seePreg != 0>>
-<<if $arcologies[0].FSRestart == "unset">>
-<<if $arcologies[0].FSRepopulationFocus != "unset">>
-	<br>''You are pursuing'' the belief that mass breeding will save humanity.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSRepopulationFocus")>><<if $assistantFSAppearance == "repopulation focus">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSRepopulationFocus" "clothesBoughtMaternityLingerie" "clothesBoughtMaternityDress" "clothesBoughtBelly">>
-  <<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
-	  //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+	<<if $arcologies[0].FSRestart == "unset">>
+		<<if $arcologies[0].FSRepopulationFocus != "unset">>
+			<br>''You are pursuing'' the belief that mass breeding will save humanity.
+			//<<link "Abandon" "Future Society">><<run removeFS("FSRepopulationFocus")>><<if $assistantFSAppearance == "repopulation focus">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+			<<FSChangeDecoration "FSRepopulationFocus" "clothesBoughtMaternityLingerie" "clothesBoughtMaternityDress" "clothesBoughtBelly">>
+			<<if $PAPublic == 1>>
+				<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
+					//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+				<</if>>
+			<</if>>
+		<<else>>
+			<<if ($FSCredits > 0)>>
+				<br>''''[[Repopulation Efforts|Future Society][$arcologies[0].FSRepopulationFocus = 4, $FSCredits -= 1]]: focus on mass breeding in order to repopulate the future world.
+			<<else>>
+				/*//''Repopulation Efforts'': societal fetishization of pregnancy.//*/
+			<</if>>
+		<</if>>
 	<</if>>
-  <</if>>
-<<else>>
-  <<if ($FSCredits > 0)>>
-	<br>''''[[Repopulation Efforts|Future Society][$arcologies[0].FSRepopulationFocus = 4, $FSCredits -= 1]]: focus on mass breeding in order to repopulate the future world.
-  <<else>>
-	/*//''Repopulation Efforts'': societal fetishization of pregnancy.//*/
-  <</if>>
-<</if>>
-<</if>>
 
-<<if $arcologies[0].FSRepopulationFocus == "unset">>
-<<if $arcologies[0].FSRestart != "unset">>
-<<if $arcologies[0].FSRestartDecoration != 100>>
-	<br>''You are pursuing'' Eugenics.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSRestart")>><<if $assistantFSAppearance == "eugenics">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSRestart">>
-<<else>>
-	<br>''You have established'' Eugenics.
-	<<if $eugenicsFullControl != 1>>
-		The Societal Elite will not permit you to abandon Eugenics.
-	<<else>>
-		//<<link "Abandon" "Future Society">><<run removeFS("FSRestart")>><<if $assistantFSAppearance == "eugenics">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//
-	<</if>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSRestart">>
-	The Societal Elite exist as the highest class, allowing you access to all manner of benefits
-	<<if $PAPublic == 1>>
-		<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "goddess") || ($assistantAppearance == "loli") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch") || ($assistantAppearance == "incubus") || ($assistantAppearance == "angel")>>
-			 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+	<<if $arcologies[0].FSRepopulationFocus == "unset">>
+		<<if $arcologies[0].FSRestart != "unset">>
+			<<if $arcologies[0].FSRestartDecoration != 100>>
+				<br>''You are pursuing'' Eugenics.
+				//<<link "Abandon" "Future Society">><<run removeFS("FSRestart")>><<if $assistantFSAppearance == "eugenics">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+				<<FSChangeDecoration "FSRestart">>
+			<<else>>
+				<br>''You have established'' Eugenics.
+				<<if $eugenicsFullControl != 1>>
+					The Societal Elite will not permit you to abandon Eugenics.
+				<<else>>
+					//<<link "Abandon" "Future Society">><<run removeFS("FSRestart")>><<if $assistantFSAppearance == "eugenics">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//
+				<</if>>
+				<br>&nbsp;&nbsp;&nbsp;&nbsp;
+				<<FSChangeDecoration "FSRestart">>
+				The Societal Elite exist as the highest class, allowing you access to all manner of benefits
+				<<if $PAPublic == 1>>
+					<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "goddess") || ($assistantAppearance == "loli") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch") || ($assistantAppearance == "incubus") || ($assistantAppearance == "angel")>>
+						//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+					<</if>>
+				<</if>>
+			<</if>>
+		<<else>>
+			<<if ($FSCredits > 0)>>
+				<br>''''[[Eugenics|Future Society][$arcologies[0].FSRestart = 4, $FSCredits -= 1]]: rebuilding society using restrictive breeding programs reserved solely for society's finest.
+			<<else>>
+				/*//''Complete Societal Reconstruction'': rebuilding society based off the elite.//*/
+			<</if>>
 		<</if>>
 	<</if>>
 <</if>>
-<<else>>
-  <<if ($FSCredits > 0)>>
-	<br>''''[[Eugenics|Future Society][$arcologies[0].FSRestart = 4, $FSCredits -= 1]]: rebuilding society using restrictive breeding programs reserved solely for society's finest.
-  <<else>>
-	/*//''Complete Societal Reconstruction'': rebuilding society based off the elite.//*/
-  <</if>>
-<</if>>
-<</if>>
-<</if>>
 
 <<if $seeDicks != 0 || $makeDicks == 1>>
-<<if $arcologies[0].FSGenderFundamentalist == "unset">>
-<<if $arcologies[0].FSGenderRadicalist != "unset">>
-	<br>''You are pursuing'' a radical redefinition of gender that identifies powerful people as male, and everyone else as female.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSGenderRadicalist")>><<if $assistantFSAppearance == "gender radicalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSGenderRadicalist">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "shemale") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Gender radicalism|Future Society][$arcologies[0].FSGenderRadicalist = 4, $FSCredits -= 1]]: a radical redefinition of gender that identifies powerful people as male, and everyone else as female.
-	<<else>>
-	/*//''Gender radicalism'': a radical redefinition of gender that identifies powerful people as male, and everyone else as female.//*/
+	<<if $arcologies[0].FSGenderFundamentalist == "unset">>
+		<<if $arcologies[0].FSGenderRadicalist != "unset">>
+			<br>''You are pursuing'' a radical redefinition of gender that identifies powerful people as male, and everyone else as female.
+			//<<link "Abandon" "Future Society">><<run removeFS("FSGenderRadicalist")>><<if $assistantFSAppearance == "gender radicalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+			<<FSChangeDecoration "FSGenderRadicalist">>
+			<<if $PAPublic == 1>>
+				<<if ($assistantAppearance == "shemale") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
+					//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+				<</if>>
+			<</if>>
+		<<else>>
+			<<if $FSCredits > 0>>
+				<br>''''[[Gender radicalism|Future Society][$arcologies[0].FSGenderRadicalist = 4, $FSCredits -= 1]]: a radical redefinition of gender that identifies powerful people as male, and everyone else as female.
+			<<else>>
+				/*//''Gender radicalism'': a radical redefinition of gender that identifies powerful people as male, and everyone else as female.//*/
+			<</if>>
+		<</if>>
 	<</if>>
 <</if>>
-<</if>>
-<</if>>
 
 <<if $arcologies[0].FSGenderRadicalist == "unset">>
-<<if $arcologies[0].FSGenderFundamentalist != "unset">>
-	<br>''You are pursuing'' gender traditionalism, including a societal preference for feminine slaves and support for slave pregnancy.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSGenderFundamentalist")>><<if $assistantFSAppearance == "gender fundamentalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSGenderFundamentalist" "clothesBoughtBunny">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "loli") || ($assistantAppearance == "fairy") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "angel") || ($assistantAppearance == "cherub") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Gender traditionalism|Future Society][$arcologies[0].FSGenderFundamentalist = 4, $FSCredits -= 1]]: a societal preference for feminine slaves and support for slave pregnancy.
+	<<if $arcologies[0].FSGenderFundamentalist != "unset">>
+		<br>''You are pursuing'' gender traditionalism, including a societal preference for feminine slaves and support for slave pregnancy.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSGenderFundamentalist")>><<if $assistantFSAppearance == "gender fundamentalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSGenderFundamentalist" "clothesBoughtBunny">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "loli") || ($assistantAppearance == "fairy") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "angel") || ($assistantAppearance == "cherub") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
+		<</if>>
 	<<else>>
-	/*//''Gender traditionalism'': a societal preference for feminine slaves and support for slave pregnancy.//*/
+		<<if $FSCredits > 0>>
+			<br>''''[[Gender traditionalism|Future Society][$arcologies[0].FSGenderFundamentalist = 4, $FSCredits -= 1]]: a societal preference for feminine slaves and support for slave pregnancy.
+		<<else>>
+			/*//''Gender traditionalism'': a societal preference for feminine slaves and support for slave pregnancy.//*/
+		<</if>>
 	<</if>>
 <</if>>
-<</if>>
 
 <<if $arcologies[0].FSDegradationist == "unset">>
-<<if $arcologies[0].FSPaternalist != "unset">>
-	<br>''You are pursuing'' a vision of slave improvement, including slaves' health, mental well-being, and education.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSPaternalist")>><<if $assistantFSAppearance == "paternalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSPaternalist" "clothesBoughtConservative">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "loli") || ($assistantAppearance == "fairy") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "angel") || ($assistantAppearance == "cherub")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Paternalism|Future Society][$arcologies[0].FSPaternalist = 4, $FSCredits -= 1]]: a vision of slave improvement, including slaves' health, mental well-being, and education.
+	<<if $arcologies[0].FSPaternalist != "unset">>
+		<br>''You are pursuing'' a vision of slave improvement, including slaves' health, mental well-being, and education.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSPaternalist")>><<if $assistantFSAppearance == "paternalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSPaternalist" "clothesBoughtConservative">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "loli") || ($assistantAppearance == "fairy") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "angel") || ($assistantAppearance == "cherub")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
+		<</if>>
 	<<else>>
-	/*//''Paternalism'': a vision of slave improvement, including slaves' health, mental well-being, and education.//*/
+		<<if $FSCredits > 0>>
+			<br>''''[[Paternalism|Future Society][$arcologies[0].FSPaternalist = 4, $FSCredits -= 1]]: a vision of slave improvement, including slaves' health, mental well-being, and education.
+		<<else>>
+			/*//''Paternalism'': a vision of slave improvement, including slaves' health, mental well-being, and education.//*/
+		<</if>>
 	<</if>>
 <</if>>
-<</if>>
 
 <<if $arcologies[0].FSPaternalist == "unset">>
-<<if $arcologies[0].FSDegradationist != "unset">>
-	<br>''You are pursuing'' slave degradation, a belief that slaves are not human and should not be treated decently.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSDegradationist")>><<if $assistantFSAppearance == "degradationist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSDegradationist" "clothesBoughtChains">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "monstergirl") || ($assistantAppearance == "businesswoman") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "succubus") || ($assistantAppearance == "incubus") || ($assistantAppearance == "imp")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Degradationism|Future Society][$arcologies[0].FSDegradationist = 4, $FSCredits -= 1]]: a belief that slaves are not human and should not be treated decently.
+	<<if $arcologies[0].FSDegradationist != "unset">>
+		<br>''You are pursuing'' slave degradation, a belief that slaves are not human and should not be treated decently.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSDegradationist")>><<if $assistantFSAppearance == "degradationist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSDegradationist" "clothesBoughtChains">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "monstergirl") || ($assistantAppearance == "businesswoman") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "succubus") || ($assistantAppearance == "incubus") || ($assistantAppearance == "imp")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
+		<</if>>
 	<<else>>
-	/*//''Degradation'': a belief that slaves are not human and should not be treated decently.//*/
+		<<if $FSCredits > 0>>
+			<br>''''[[Degradationism|Future Society][$arcologies[0].FSDegradationist = 4, $FSCredits -= 1]]: a belief that slaves are not human and should not be treated decently.
+		<<else>>
+			/*//''Degradation'': a belief that slaves are not human and should not be treated decently.//*/
+		<</if>>
 	<</if>>
 <</if>>
-<</if>>
 
 <<if $arcologies[0].FSTransformationFetishist == "unset">>
-<<if $arcologies[0].FSBodyPurist != "unset">>
-	<br>''You are pursuing'' societal disapproval of implant surgery.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSBodyPurist")>><<if $assistantFSAppearance == "body purist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSBodyPurist">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "amazon") || ($assistantAppearance == "goddess") || ($assistantAppearance == "loli") || ($assistantAppearance == "fairy") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "angel") || ($assistantAppearance == "succubus") || ($assistantAppearance == "incubus") || ($assistantAppearance == "witch")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Body Purism|Future Society][$arcologies[0].FSBodyPurist = 4, $FSCredits -= 1]]: societal disapproval of implant surgery.
+	<<if $arcologies[0].FSBodyPurist != "unset">>
+		<br>''You are pursuing'' societal disapproval of implant surgery.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSBodyPurist")>><<if $assistantFSAppearance == "body purist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSBodyPurist">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "amazon") || ($assistantAppearance == "goddess") || ($assistantAppearance == "loli") || ($assistantAppearance == "fairy") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "angel") || ($assistantAppearance == "succubus") || ($assistantAppearance == "incubus") || ($assistantAppearance == "witch")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
+		<</if>>
 	<<else>>
-	/*//''Body Purism'': societal disapproval of implant surgery.//*/
+		<<if $FSCredits > 0>>
+			<br>''''[[Body Purism|Future Society][$arcologies[0].FSBodyPurist = 4, $FSCredits -= 1]]: societal disapproval of implant surgery.
+		<<else>>
+			/*//''Body Purism'': societal disapproval of implant surgery.//*/
+		<</if>>
 	<</if>>
 <</if>>
-<</if>>
 
 <<if $arcologies[0].FSBodyPurist == "unset">>
-<<if $arcologies[0].FSTransformationFetishist != "unset">>
-	<br>''You are pursuing'' societal fetishization of implant surgery.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSTransformationFetishist")>><<if $assistantFSAppearance == "transformation fetishist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSTransformationFetishist">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "shemale") || ($assistantAppearance == "succubus") || ($assistantAppearance == "incubus") || ($assistantAppearance == "witch") || ($assistantAppearance == "ERROR_1606_APPEARANCE_FILE_CORRUPT")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if ($FSCredits > 0)>>
-	<br>''''[[Transformation Fetishism|Future Society][$arcologies[0].FSTransformationFetishist = 4, $FSCredits -= 1]]: societal fetishization of implant surgery.
+	<<if $arcologies[0].FSTransformationFetishist != "unset">>
+		<br>''You are pursuing'' societal fetishization of implant surgery.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSTransformationFetishist")>><<if $assistantFSAppearance == "transformation fetishist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSTransformationFetishist">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "shemale") || ($assistantAppearance == "succubus") || ($assistantAppearance == "incubus") || ($assistantAppearance == "witch") || ($assistantAppearance == "ERROR_1606_APPEARANCE_FILE_CORRUPT")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
+		<</if>>
 	<<else>>
-	/*//''Transformation Fetishism'': societal fetishization of implant surgery.//*/
+		<<if ($FSCredits > 0)>>
+			<br>''''[[Transformation Fetishism|Future Society][$arcologies[0].FSTransformationFetishist = 4, $FSCredits -= 1]]: societal fetishization of implant surgery.
+		<<else>>
+			/*//''Transformation Fetishism'': societal fetishization of implant surgery.//*/
+		<</if>>
 	<</if>>
 <</if>>
-<</if>>
 
 <<if $arcologies[0].FSMaturityPreferentialist == "unset">>
-<<if $arcologies[0].FSYouthPreferentialist != "unset">>
-	<br>''You are pursuing'' an accentuated societal preference for younger slaves.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSYouthPreferentialist")>><<if $assistantFSAppearance == "youth preferentialist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSYouthPreferentialist">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "shemale") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "loli") || ($assistantAppearance == "succubus") || ($assistantAppearance == "angel") || ($assistantAppearance == "cherub") || ($assistantAppearance == "imp") || ($assistantAppearance == "witch")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Youth Preferentialism|Future Society][$arcologies[0].FSYouthPreferentialist = 4, $FSCredits -= 1]]: increased interest in girls just past their majority.
+	<<if $arcologies[0].FSYouthPreferentialist != "unset">>
+		<br>''You are pursuing'' an accentuated societal preference for younger slaves.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSYouthPreferentialist")>><<if $assistantFSAppearance == "youth preferentialist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSYouthPreferentialist">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "shemale") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "loli") || ($assistantAppearance == "succubus") || ($assistantAppearance == "angel") || ($assistantAppearance == "cherub") || ($assistantAppearance == "imp") || ($assistantAppearance == "witch")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
+		<</if>>
 	<<else>>
-	/*//''Youth Preferentialism'': increased interest in girls just past their majority.//*/
+		<<if $FSCredits > 0>>
+			<br>''''[[Youth Preferentialism|Future Society][$arcologies[0].FSYouthPreferentialist = 4, $FSCredits -= 1]]: increased interest in girls just past their majority.
+		<<else>>
+			/*//''Youth Preferentialism'': increased interest in girls just past their majority.//*/
+		<</if>>
 	<</if>>
 <</if>>
-<</if>>
 
 <<if $arcologies[0].FSYouthPreferentialist == "unset">>
-<<if $arcologies[0].FSMaturityPreferentialist != "unset">>
-	<br>''You are pursuing'' a societal preference for older women.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSMaturityPreferentialist")>><<if $assistantFSAppearance == "maturity preferentialist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSMaturityPreferentialist">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "goddess") || ($assistantAppearance == "succubus") || ($assistantAppearance == "incubus") || ($assistantAppearance == "witch") || ($assistantAppearance == "angel")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Maturity Preferentialism|Future Society][$arcologies[0].FSMaturityPreferentialist = 4, $FSCredits -= 1]]: increased interest in mature slaves.
+	<<if $arcologies[0].FSMaturityPreferentialist != "unset">>
+		<br>''You are pursuing'' a societal preference for older women.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSMaturityPreferentialist")>><<if $assistantFSAppearance == "maturity preferentialist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSMaturityPreferentialist">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "goddess") || ($assistantAppearance == "succubus") || ($assistantAppearance == "incubus") || ($assistantAppearance == "witch") || ($assistantAppearance == "angel")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
+		<</if>>
 	<<else>>
-	/*//''Maturity Preferentialism'': increased interest in mature slaves.//*/
+		<<if $FSCredits > 0>>
+			<br>''''[[Maturity Preferentialism|Future Society][$arcologies[0].FSMaturityPreferentialist = 4, $FSCredits -= 1]]: increased interest in mature slaves.
+		<<else>>
+			/*//''Maturity Preferentialism'': increased interest in mature slaves.//*/
+		<</if>>
 	<</if>>
 <</if>>
-<</if>>
 
 <<if $arcologies[0].FSAssetExpansionist == "unset">>
-<<if $arcologies[0].FSSlimnessEnthusiast != "unset">>
-	<br>''You are supporting'' enthusiasm for slaves with girlish figures.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSSlimnessEnthusiast")>><<if $assistantFSAppearance == "slimness enthusiast">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSSlimnessEnthusiast">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "shemale") || ($assistantAppearance == "loli") || ($assistantAppearance == "cherub") || ($assistantAppearance == "imp") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Slimness Enthusiasm|Future Society][$arcologies[0].FSSlimnessEnthusiast = 4, $FSCredits -= 1]]: a fashion for slaves with girlish figures.
+	<<if $arcologies[0].FSSlimnessEnthusiast != "unset">>
+		<br>''You are supporting'' enthusiasm for slaves with girlish figures.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSSlimnessEnthusiast")>><<if $assistantFSAppearance == "slimness enthusiast">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSSlimnessEnthusiast">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "shemale") || ($assistantAppearance == "loli") || ($assistantAppearance == "cherub") || ($assistantAppearance == "imp") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
+		<</if>>
 	<<else>>
-	/*//''Slimness Enthusiasm'': a fashion for slaves with girlish figures.//*/
+		<<if $FSCredits > 0>>
+			<br>''''[[Slimness Enthusiasm|Future Society][$arcologies[0].FSSlimnessEnthusiast = 4, $FSCredits -= 1]]: a fashion for slaves with girlish figures.
+		<<else>>
+			/*//''Slimness Enthusiasm'': a fashion for slaves with girlish figures.//*/
+		<</if>>
 	<</if>>
 <</if>>
-<</if>>
 
 <<if $arcologies[0].FSSlimnessEnthusiast == "unset">>
-<<if $arcologies[0].FSAssetExpansionist != "unset">>
-	<br>''You are pursuing'' societal hunger for huge assets.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSAssetExpansionist")>><<if $assistantFSAppearance == "asset expansionist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSAssetExpansionist">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "shemale") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "succubus") || ($assistantAppearance == "incubus") || ($assistantAppearance == "witch")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Asset Expansionism|Future Society][$arcologies[0].FSAssetExpansionist = 4, $FSCredits -= 1]]: societal hunger for huge assets of whatever origin.
+	<<if $arcologies[0].FSAssetExpansionist != "unset">>
+		<br>''You are pursuing'' societal hunger for huge assets.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSAssetExpansionist")>><<if $assistantFSAppearance == "asset expansionist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSAssetExpansionist">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "shemale") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "succubus") || ($assistantAppearance == "incubus") || ($assistantAppearance == "witch")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
+		<</if>>
 	<<else>>
-	/*//''Asset Expansionism'': societal hunger for huge assets of whatever origin.//*/
+		<<if $FSCredits > 0>>
+			<br>''''[[Asset Expansionism|Future Society][$arcologies[0].FSAssetExpansionist = 4, $FSCredits -= 1]]: societal hunger for huge assets of whatever origin.
+		<<else>>
+			/*//''Asset Expansionism'': societal hunger for huge assets of whatever origin.//*/
+		<</if>>
 	<</if>>
 <</if>>
-<</if>>
 
 <<if $arcologies[0].FSPastoralist != "unset">>
 	<br>''You are pursuing'' societal normalization of slave milking.
 	//<<link "Abandon" "Future Society">><<run removeFS("FSPastoralist")>><<if $assistantFSAppearance == "pastoralist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSPastoralist" "clothesBoughtWestern">>
 	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "shemale") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
+		<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "shemale") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
+			//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+		<</if>>
 	<</if>>
 <<else>>
 	<<if $FSCredits > 0>>
-	<br>''''[[Slave Pastoralism|Future Society][$arcologies[0].FSPastoralist = 4, $FSCredits -= 1]]: societal acceptance of slave products like milk.
+		<br>''''[[Slave Pastoralism|Future Society][$arcologies[0].FSPastoralist = 4, $FSCredits -= 1]]: societal acceptance of slave products like milk.
 	<<else>>
-	/*//''Slave Pastoralism'': societal acceptance of slave products like milk.//*/
+		/*//''Slave Pastoralism'': societal acceptance of slave products like milk.//*/
 	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSHedonisticDecadence == "unset">>
-<<if $arcologies[0].FSPhysicalIdealist != "unset">>
-	<br>''You are pursuing'' societal reverence for the idealized human form, including height, health and muscle.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSPhysicalIdealist")>><<if $assistantFSAppearance == "physical idealist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSPhysicalIdealist" "clothesBoughtOil">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "amazon") || ($assistantAppearance == "shemale") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Physical Idealism|Future Society][$arcologies[0].FSPhysicalIdealist = 4, $FSCredits -= 1]]: societal reverence for the idealized human form, including height, health and muscle.
+	<<if $arcologies[0].FSPhysicalIdealist != "unset">>
+		<br>''You are pursuing'' societal reverence for the idealized human form, including height, health and muscle.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSPhysicalIdealist")>><<if $assistantFSAppearance == "physical idealist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSPhysicalIdealist" "clothesBoughtOil">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "amazon") || ($assistantAppearance == "shemale") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
+		<</if>>
 	<<else>>
-	/*//''Physical Idealism'': societal reverence for the idealized human form, including height, health and muscle.//*/
+		<<if $FSCredits > 0>>
+			<br>''''[[Physical Idealism|Future Society][$arcologies[0].FSPhysicalIdealist = 4, $FSCredits -= 1]]: societal reverence for the idealized human form, including height, health and muscle.
+		<<else>>
+			/*//''Physical Idealism'': societal reverence for the idealized human form, including height, health and muscle.//*/
+		<</if>>
 	<</if>>
 <</if>>
-<</if>>
 
 <<if $arcologies[0].FSPhysicalIdealist == "unset">>
-<<if $arcologies[0].FSHedonisticDecadence != "unset">>
-	<br>''You are pursuing'' societal normalization of overindulgence and immediate gratification. Be it food, drink, sex, drugs or whatever one's desire may be.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSHedonisticDecadence")>><<if $assistantFSAppearance == "hedonistic decadence">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSHedonisticDecadence">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "imp") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Hedonistic Decadence|Future Society][$arcologies[0].FSHedonisticDecadence = 4, $FSCredits -= 1]]: societal acceptance of overindulgence and immediate gratification. Be it food, drink, sex, drugs or whatever one's desire may be.
+	<<if $arcologies[0].FSHedonisticDecadence != "unset">>
+		<br>''You are pursuing'' societal normalization of overindulgence and immediate gratification. Be it food, drink, sex, drugs or whatever one's desire may be.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSHedonisticDecadence")>><<if $assistantFSAppearance == "hedonistic decadence">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSHedonisticDecadence">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "imp") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
+		<</if>>
 	<<else>>
-	/*//''HedonisticDecadence'': societal acceptance of over indulgence, particularly of food, drink, sex and drugs.//*/
+		<<if $FSCredits > 0>>
+			<br>''''[[Hedonistic Decadence|Future Society][$arcologies[0].FSHedonisticDecadence = 4, $FSCredits -= 1]]: societal acceptance of overindulgence and immediate gratification. Be it food, drink, sex, drugs or whatever one's desire may be.
+		<<else>>
+			/*//''HedonisticDecadence'': societal acceptance of over indulgence, particularly of food, drink, sex and drugs.//*/
+		<</if>>
 	<</if>>
 <</if>>
-<</if>>
 
 <<if $arcologies[0].FSNull == "unset">>
-<<if $arcologies[0].FSChattelReligionist != "unset">>
-	<br>''You are pursuing'' a new strain of religion that emphasizes the slaveholding portions of religious history.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSChattelReligionist")>><<if $assistantFSAppearance == "chattel religionist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSChattelReligionist" "clothesBoughtHabit">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch") || ($assistantAppearance == "angel") || ($assistantAppearance == "cherub") || ($assistantAppearance == "imp")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Chattel Religionism|Future Society][$arcologies[0].FSChattelReligionist = 4, $FSCredits -= 1]]: a new strain of religion that emphasizes the slaveholding portions of religious history.
+	<<if $arcologies[0].FSChattelReligionist != "unset">>
+		<br>''You are pursuing'' a new strain of religion that emphasizes the slaveholding portions of religious history.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSChattelReligionist")>><<if $assistantFSAppearance == "chattel religionist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSChattelReligionist" "clothesBoughtHabit">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch") || ($assistantAppearance == "angel") || ($assistantAppearance == "cherub") || ($assistantAppearance == "imp")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
+		<</if>>
 	<<else>>
-	/*//''Chattel Religionism'': a new strain of religion that emphasizes the slaveholding portions of religious history.//*/
+		<<if $FSCredits > 0>>
+			<br>''''[[Chattel Religionism|Future Society][$arcologies[0].FSChattelReligionist = 4, $FSCredits -= 1]]: a new strain of religion that emphasizes the slaveholding portions of religious history.
+		<<else>>
+			/*//''Chattel Religionism'': a new strain of religion that emphasizes the slaveholding portions of religious history.//*/
+		<</if>>
 	<</if>>
 <</if>>
-<</if>>
 
 <<if ($arcologies[0].FSAztecRevivalist == "unset") && ($arcologies[0].FSEgyptianRevivalist == "unset") && ($arcologies[0].FSEdoRevivalist == "unset") && ($arcologies[0].FSArabianRevivalist == "unset") && ($arcologies[0].FSChineseRevivalist == "unset")>>
-<<if $arcologies[0].FSRomanRevivalist != "unset">>
-	<br>''You are pursuing'' a vision of a new Rome.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSRomanRevivalist")>><<if $assistantFSAppearance == "roman revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSRomanRevivalist" "clothesBoughtToga">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "amazon") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Roman Revivalism|Future Society][$arcologies[0].FSRomanRevivalist = 4, $FSCredits -= 1]]: a vision of a new Rome.
+	<<if $arcologies[0].FSRomanRevivalist != "unset">>
+		<br>''You are pursuing'' a vision of a new Rome.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSRomanRevivalist")>><<if $assistantFSAppearance == "roman revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSRomanRevivalist" "clothesBoughtToga">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "amazon") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
+		<</if>>
 	<<else>>
-	/*//''Roman Revivalism'': a vision of a new Rome.//*/
+		<<if $FSCredits > 0>>
+			<br>''''[[Roman Revivalism|Future Society][$arcologies[0].FSRomanRevivalist = 4, $FSCredits -= 1]]: a vision of a new Rome.
+		<<else>>
+			/*//''Roman Revivalism'': a vision of a new Rome.//*/
+		<</if>>
 	<</if>>
 <</if>>
-<</if>>
 
 <<if ($arcologies[0].FSRomanRevivalist == "unset") && ($arcologies[0].FSEgyptianRevivalist == "unset") && ($arcologies[0].FSEdoRevivalist == "unset") && ($arcologies[0].FSArabianRevivalist == "unset") && ($arcologies[0].FSChineseRevivalist == "unset")>>
-<<if $arcologies[0].FSAztecRevivalist != "unset">>
-	<br>''You are pursuing'' a vision of a new Aztec Empire.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSAztecRevivalist")>><<if $assistantFSAppearance == "aztec revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSAztecRevivalist" "clothesBoughtHuipil">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "amazon") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Aztec Revivalism|Future Society][$arcologies[0].FSAztecRevivalist = 4, $FSCredits -= 1]]: a vision of a new Aztec Empire.
+	<<if $arcologies[0].FSAztecRevivalist != "unset">>
+		<br>''You are pursuing'' a vision of a new Aztec Empire.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSAztecRevivalist")>><<if $assistantFSAppearance == "aztec revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSAztecRevivalist" "clothesBoughtHuipil">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "amazon") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
+		<</if>>
 	<<else>>
-	/*//''Aztec Revivalism'': a vision of a new Aztec Empire.//*/
+		<<if $FSCredits > 0>>
+			<br>''''[[Aztec Revivalism|Future Society][$arcologies[0].FSAztecRevivalist = 4, $FSCredits -= 1]]: a vision of a new Aztec Empire.
+		<<else>>
+			/*//''Aztec Revivalism'': a vision of a new Aztec Empire.//*/
+		<</if>>
 	<</if>>
 <</if>>
-<</if>>
 
 <<if ($arcologies[0].FSRomanRevivalist == "unset") && ($arcologies[0].FSAztecRevivalist == "unset") && ($arcologies[0].FSEdoRevivalist == "unset") && ($arcologies[0].FSArabianRevivalist == "unset") && ($arcologies[0].FSChineseRevivalist == "unset")>>
-<<if $arcologies[0].FSEgyptianRevivalist != "unset">>
-	<br>''You are pursuing'' a vision of Pharaoh's Egypt.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSEgyptianRevivalist")>><<if $assistantFSAppearance == "egyptian revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSEgyptianRevivalist" "clothesBoughtEgypt">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Egyptian Revivalism|Future Society][$arcologies[0].FSEgyptianRevivalist = (4+$arcologies[0].FSEgyptianRevivalistInterest), $FSCredits -= 1, $arcologies[0].FSEgyptianRevivalistIncestPolicy = 0]]: a vision of a Pharaoh's Egypt.
+	<<if $arcologies[0].FSEgyptianRevivalist != "unset">>
+		<br>''You are pursuing'' a vision of Pharaoh's Egypt.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSEgyptianRevivalist")>><<if $assistantFSAppearance == "egyptian revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSEgyptianRevivalist" "clothesBoughtEgypt">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
+		<</if>>
 	<<else>>
-	/*//''Egyptian Revivalism'': a vision of Pharaoh's Egypt.//*/
+		<<if $FSCredits > 0>>
+			<br>''''[[Egyptian Revivalism|Future Society][$arcologies[0].FSEgyptianRevivalist = (4+$arcologies[0].FSEgyptianRevivalistInterest), $FSCredits -= 1, $arcologies[0].FSEgyptianRevivalistIncestPolicy = 0]]: a vision of a Pharaoh's Egypt.
+		<<else>>
+			/*//''Egyptian Revivalism'': a vision of Pharaoh's Egypt.//*/
+		<</if>>
 	<</if>>
 <</if>>
-<</if>>
 
 <<if ($arcologies[0].FSRomanRevivalist == "unset") && ($arcologies[0].FSAztecRevivalist == "unset") && ($arcologies[0].FSEgyptianRevivalist == "unset") && ($arcologies[0].FSArabianRevivalist == "unset") && ($arcologies[0].FSChineseRevivalist == "unset")>>
-<<if $arcologies[0].FSEdoRevivalist != "unset">>
-	<br>''You are pursuing'' a vision of Edo Japan.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSEdoRevivalist")>><<if $assistantFSAppearance == "edo revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSEdoRevivalist" "clothesBoughtKimono">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "amazon") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "loli") || ($assistantAppearance == "kitsune") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Edo Revivalism|Future Society][$arcologies[0].FSEdoRevivalist = 4, $FSCredits -= 1]]: a vision of Edo Japan.
-	<</if>>
-<</if>>
-<</if>>
-
-<<if ($arcologies[0].FSRomanRevivalist == "unset") && ($arcologies[0].FSAztecRevivalist == "unset") && ($arcologies[0].FSEgyptianRevivalist == "unset") && ($arcologies[0].FSEdoRevivalist == "unset") && ($arcologies[0].FSChineseRevivalist == "unset")>>
-<<if $arcologies[0].FSArabianRevivalist != "unset">>
-	<br>''You are pursuing'' a vision of the Sultanate of old.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSArabianRevivalist")>><<if $assistantFSAppearance == "arabian revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSArabianRevivalist" "clothesBoughtHarem">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Arabian Revivalism|Future Society][$arcologies[0].FSArabianRevivalist = 4, $FSCredits -= 1]]: a vision of the Sultanate of old.
-	<</if>>
-<</if>>
-<</if>>
-
-<<if ($arcologies[0].FSRomanRevivalist == "unset") && ($arcologies[0].FSAztecRevivalist == "unset") && ($arcologies[0].FSEgyptianRevivalist == "unset") && ($arcologies[0].FSEdoRevivalist == "unset") && ($arcologies[0].FSArabianRevivalist == "unset")>>
-<<if $arcologies[0].FSChineseRevivalist != "unset">>
-	<br>''You are pursuing'' a vision of ancient China.
-	//<<link "Abandon" "Future Society">><<run removeFS("FSChineseRevivalist")>><<if $assistantFSAppearance == "chinese revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<FSChangeDecoration "FSChineseRevivalist" "clothesBoughtQipao">>
-	<<if $PAPublic == 1>>
-	<<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
-	 //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
-	<</if>>
-	<</if>>
-<<else>>
-	<<if $FSCredits > 0>>
-	<br>''''[[Chinese Revivalism|Future Society][$arcologies[0].FSChineseRevivalist = 4, $FSCredits -= 1]]: a vision of ancient China.
-	<</if>>
-<</if>>
-<</if>>
-
-<<if $arcologies[0].FSChattelReligionist == "unset">>
-<<if $FSCreditCount == 4>>
-	<<if $arcologies[0].FSNull != "unset">>
-		<br>''You are permitting <<if $arcologies[0].FSNull <= 25>>basic<<elseif $arcologies[0].FSNull <= 50>>considerable<<elseif $arcologies[0].FSNull <= 75>>advanced<<else>>absolute<</if>>'' cultural freedom in your arcology.
-		<<if $arcologies[0].FSNull <= 25>>
-			//[[Abandon|Future Society][removeFS("FSNull")]]//
-		<<else>>
-			//[[Withdraw|Future Society][$arcologies[0].FSNull -= 25, $FSCredits += 1]]//
-		<</if>>
-		<<if $FSCredits > 0>>
-		<<if $arcologies[0].FSNull < $FSLockinLevel>>
-			<br>&nbsp;&nbsp;&nbsp;&nbsp;[[Advance|Future Society][$arcologies[0].FSNull += 25, $FSCredits -= 1]]: further commitment to allow your arcology's citizens cultural freedom.
-		<</if>>
+	<<if $arcologies[0].FSEdoRevivalist != "unset">>
+		<br>''You are pursuing'' a vision of Edo Japan.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSEdoRevivalist")>><<if $assistantFSAppearance == "edo revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSEdoRevivalist" "clothesBoughtKimono">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "amazon") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "loli") || ($assistantAppearance == "kitsune") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
+			//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
 		<</if>>
 	<<else>>
 		<<if $FSCredits > 0>>
-			<br>[[Multiculturalism|Future Society][$arcologies[0].FSNull = 25, $FSCredits -= 1]]: a commitment to allow your arcology's citizens cultural freedom.
-			<br>&nbsp;&nbsp;&nbsp;&nbsp;//This option is an alternative to societal advancement, and will not advance naturally.//
-		<</if>>
-	<</if>>
-<<elseif $FSCreditCount == 6>>
-	<<if $arcologies[0].FSNull != "unset">>
-		<br>''You are permitting <<if $arcologies[0].FSNull <= 17>>basic<<elseif $arcologies[0].FSNull <= 34>>some<<elseif $arcologies[0].FSNull <= 51>>considerable<<elseif $arcologies[0].FSNull <= 68>>great<<elseif $arcologies[0].FSNull <= 85>>advanced<<else>>absolute<</if>>'' cultural freedom in your arcology.
-		<<if $arcologies[0].FSNull <= 20>>
-			//[[Abandon|Future Society][removeFS("FSNull")]]//
+			<br>''''[[Edo Revivalism|Future Society][$arcologies[0].FSEdoRevivalist = 4, $FSCredits -= 1]]: a vision of Edo Japan.
 		<<else>>
-			//[[Withdraw|Future Society][$arcologies[0].FSNull -= 17, $FSCredits += 1]]//
-		<</if>>
-		<<if $FSCredits > 0>>
-		<<if $arcologies[0].FSNull < $FSLockinLevel>>
-			<br>&nbsp;&nbsp;&nbsp;&nbsp;[[Advance|Future Society][$arcologies[0].FSNull += 17, $FSCredits -= 1]]: further commitment to allow your arcology's citizens cultural freedom.
+			/*//''Edo Revivalism'': a vision of Edo Japan.//*/
 		<</if>>
+	<</if>>
+<</if>>
+
+<<if ($arcologies[0].FSRomanRevivalist == "unset") && ($arcologies[0].FSAztecRevivalist == "unset") && ($arcologies[0].FSEgyptianRevivalist == "unset") && ($arcologies[0].FSEdoRevivalist == "unset") && ($arcologies[0].FSChineseRevivalist == "unset")>>
+	<<if $arcologies[0].FSArabianRevivalist != "unset">>
+		<br>''You are pursuing'' a vision of the Sultanate of old.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSArabianRevivalist")>><<if $assistantFSAppearance == "arabian revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSArabianRevivalist" "clothesBoughtHarem">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
 		<</if>>
 	<<else>>
 		<<if $FSCredits > 0>>
-			<br>[[Multiculturalism|Future Society][$arcologies[0].FSNull = 17, $FSCredits -= 1]]: a commitment to allow your arcology's citizens cultural freedom.
-			<br>&nbsp;&nbsp;&nbsp;&nbsp;//This option is an alternative to societal advancement, and will not advance naturally.//
-		<</if>>
-	<</if>>
-<<elseif $FSCreditCount == 7>>
-	<<if $arcologies[0].FSNull != "unset">>
-		<br>''You are permitting <<if $arcologies[0].FSNull <= 15>>basic<<elseif $arcologies[0].FSNull <= 30>>some<<elseif $arcologies[0].FSNull <= 45>>notable<<elseif $arcologies[0].FSNull <= 60>>considerable<<elseif $arcologies[0].FSNull <= 75>>great<<elseif $arcologies[0].FSNull <= 90>>advanced<<else>>absolute<</if>>'' cultural freedom in your arcology.
-		<<if $arcologies[0].FSNull <= 20>>
-			//[[Abandon|Future Society][removeFS("FSNull")]]//
+			<br>''''[[Arabian Revivalism|Future Society][$arcologies[0].FSArabianRevivalist = 4, $FSCredits -= 1]]: a vision of the Sultanate of old.
 		<<else>>
-			//[[Withdraw|Future Society][$arcologies[0].FSNull -= 15, $FSCredits += 1]]//
-		<</if>>
-		<<if $FSCredits > 0>>
-		<<if $arcologies[0].FSNull < $FSLockinLevel>>
-			<br>&nbsp;&nbsp;&nbsp;&nbsp;[[Advance|Future Society][$arcologies[0].FSNull += 15, $FSCredits -= 1]]: further commitment to allow your arcology's citizens cultural freedom.
+			/*//''Arabian Revivalism'': a vision of the Sultanate of old.//*/
 		<</if>>
+	<</if>>
+<</if>>
+
+<<if ($arcologies[0].FSRomanRevivalist == "unset") && ($arcologies[0].FSAztecRevivalist == "unset") && ($arcologies[0].FSEgyptianRevivalist == "unset") && ($arcologies[0].FSEdoRevivalist == "unset") && ($arcologies[0].FSArabianRevivalist == "unset")>>
+	<<if $arcologies[0].FSChineseRevivalist != "unset">>
+		<br>''You are pursuing'' a vision of ancient China.
+		//<<link "Abandon" "Future Society">><<run removeFS("FSChineseRevivalist")>><<if $assistantFSAppearance == "chinese revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<FSChangeDecoration "FSChineseRevivalist" "clothesBoughtQipao">>
+		<<if $PAPublic == 1>>
+			<<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
+				//With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.//
+			<</if>>
 		<</if>>
 	<<else>>
 		<<if $FSCredits > 0>>
-			<br>[[Multiculturalism|Future Society][$arcologies[0].FSNull = 15, $FSCredits -= 1]]: a commitment to allow your arcology's citizens cultural freedom.
-			<br>&nbsp;&nbsp;&nbsp;&nbsp;//This option is an alternative to societal advancement, and will not advance naturally.//
+			<br>''''[[Chinese Revivalism|Future Society][$arcologies[0].FSChineseRevivalist = 4, $FSCredits -= 1]]: a vision of ancient China.
+		<<else>>
+			/*//''Chinese Revivalism'': a vision of ancient China./*//
 		<</if>>
 	<</if>>
-<<else>>
-	<<if $arcologies[0].FSNull != "unset">>
-		<br>''You are permitting <<if $arcologies[0].FSNull <= 20>>basic<<elseif $arcologies[0].FSNull <= 40>>considerable<<elseif $arcologies[0].FSNull <= 60>>great<<elseif $arcologies[0].FSNull <= 80>>advanced<<else>>absolute<</if>>'' cultural freedom in your arcology.
-		<<if $arcologies[0].FSNull <= 20>>
-			//[[Abandon|Future Society][removeFS("FSNull")]]//
+<</if>>
+
+<<if $arcologies[0].FSChattelReligionist == "unset">>
+	<<if $FSCreditCount == 4>>
+		<<if $arcologies[0].FSNull != "unset">>
+			<br>''You are permitting <<if $arcologies[0].FSNull <= 25>>basic<<elseif $arcologies[0].FSNull <= 50>>considerable<<elseif $arcologies[0].FSNull <= 75>>advanced<<else>>absolute<</if>>'' cultural freedom in your arcology.
+			<<if $arcologies[0].FSNull <= 25>>
+				//[[Abandon|Future Society][removeFS("FSNull")]]//
+			<<else>>
+				//[[Withdraw|Future Society][$arcologies[0].FSNull -= 25, $FSCredits += 1]]//
+			<</if>>
+			<<if $FSCredits > 0>>
+				<<if $arcologies[0].FSNull < $FSLockinLevel>>
+					<br>&nbsp;&nbsp;&nbsp;&nbsp;[[Advance|Future Society][$arcologies[0].FSNull += 25, $FSCredits -= 1]]: further commitment to allow your arcology's citizens cultural freedom.
+				<</if>>
+			<</if>>
 		<<else>>
-			//[[Withdraw|Future Society][$arcologies[0].FSNull -= 20, $FSCredits += 1]]//
+			<<if $FSCredits > 0>>
+				<br>[[Multiculturalism|Future Society][$arcologies[0].FSNull = 25, $FSCredits -= 1]]: a commitment to allow your arcology's citizens cultural freedom.
+				<br>&nbsp;&nbsp;&nbsp;&nbsp;//This option is an alternative to societal advancement, and will not advance naturally.//
+			<</if>>
 		<</if>>
-		<<if $FSCredits > 0>>
-		<<if $arcologies[0].FSNull < $FSLockinLevel>>
-			<br>&nbsp;&nbsp;&nbsp;&nbsp;[[Advance|Future Society][$arcologies[0].FSNull += 20, $FSCredits -= 1]]: further commitment to allow your arcology's citizens cultural freedom.
+	<<elseif $FSCreditCount == 6>>
+		<<if $arcologies[0].FSNull != "unset">>
+			<br>''You are permitting <<if $arcologies[0].FSNull <= 17>>basic<<elseif $arcologies[0].FSNull <= 34>>some<<elseif $arcologies[0].FSNull <= 51>>considerable<<elseif $arcologies[0].FSNull <= 68>>great<<elseif $arcologies[0].FSNull <= 85>>advanced<<else>>absolute<</if>>'' cultural freedom in your arcology.
+			<<if $arcologies[0].FSNull <= 20>>
+				//[[Abandon|Future Society][removeFS("FSNull")]]//
+			<<else>>
+				//[[Withdraw|Future Society][$arcologies[0].FSNull -= 17, $FSCredits += 1]]//
+			<</if>>
+			<<if $FSCredits > 0>>
+				<<if $arcologies[0].FSNull < $FSLockinLevel>>
+					<br>&nbsp;&nbsp;&nbsp;&nbsp;[[Advance|Future Society][$arcologies[0].FSNull += 17, $FSCredits -= 1]]: further commitment to allow your arcology's citizens cultural freedom.
+				<</if>>
+			<</if>>
+		<<else>>
+			<<if $FSCredits > 0>>
+				<br>[[Multiculturalism|Future Society][$arcologies[0].FSNull = 17, $FSCredits -= 1]]: a commitment to allow your arcology's citizens cultural freedom.
+				<br>&nbsp;&nbsp;&nbsp;&nbsp;//This option is an alternative to societal advancement, and will not advance naturally.//
+			<</if>>
 		<</if>>
+	<<elseif $FSCreditCount == 7>>
+		<<if $arcologies[0].FSNull != "unset">>
+			<br>''You are permitting <<if $arcologies[0].FSNull <= 15>>basic<<elseif $arcologies[0].FSNull <= 30>>some<<elseif $arcologies[0].FSNull <= 45>>notable<<elseif $arcologies[0].FSNull <= 60>>considerable<<elseif $arcologies[0].FSNull <= 75>>great<<elseif $arcologies[0].FSNull <= 90>>advanced<<else>>absolute<</if>>'' cultural freedom in your arcology.
+			<<if $arcologies[0].FSNull <= 20>>
+				//[[Abandon|Future Society][removeFS("FSNull")]]//
+			<<else>>
+				//[[Withdraw|Future Society][$arcologies[0].FSNull -= 15, $FSCredits += 1]]//
+			<</if>>
+			<<if $FSCredits > 0>>
+				<<if $arcologies[0].FSNull < $FSLockinLevel>>
+					<br>&nbsp;&nbsp;&nbsp;&nbsp;[[Advance|Future Society][$arcologies[0].FSNull += 15, $FSCredits -= 1]]: further commitment to allow your arcology's citizens cultural freedom.
+				<</if>>
+			<</if>>
+		<<else>>
+			<<if $FSCredits > 0>>
+				<br>[[Multiculturalism|Future Society][$arcologies[0].FSNull = 15, $FSCredits -= 1]]: a commitment to allow your arcology's citizens cultural freedom.
+				<br>&nbsp;&nbsp;&nbsp;&nbsp;//This option is an alternative to societal advancement, and will not advance naturally.//
+			<</if>>
 		<</if>>
 	<<else>>
-		<<if $FSCredits > 0>>
-			<br>[[Multiculturalism|Future Society][$arcologies[0].FSNull = 20, $FSCredits -= 1]]: a commitment to allow your arcology's citizens cultural freedom.
-			<br>&nbsp;&nbsp;&nbsp;&nbsp;//This option is an alternative to societal advancement, and will not advance naturally.//
+		<<if $arcologies[0].FSNull != "unset">>
+			<br>''You are permitting <<if $arcologies[0].FSNull <= 20>>basic<<elseif $arcologies[0].FSNull <= 40>>considerable<<elseif $arcologies[0].FSNull <= 60>>great<<elseif $arcologies[0].FSNull <= 80>>advanced<<else>>absolute<</if>>'' cultural freedom in your arcology.
+			<<if $arcologies[0].FSNull <= 20>>
+				//[[Abandon|Future Society][removeFS("FSNull")]]//
+			<<else>>
+				//[[Withdraw|Future Society][$arcologies[0].FSNull -= 20, $FSCredits += 1]]//
+			<</if>>
+			<<if $FSCredits > 0>>
+				<<if $arcologies[0].FSNull < $FSLockinLevel>>
+					<br>&nbsp;&nbsp;&nbsp;&nbsp;[[Advance|Future Society][$arcologies[0].FSNull += 20, $FSCredits -= 1]]: further commitment to allow your arcology's citizens cultural freedom.
+				<</if>>
+			<</if>>
+		<<else>>
+			<<if $FSCredits > 0>>
+				<br>[[Multiculturalism|Future Society][$arcologies[0].FSNull = 20, $FSCredits -= 1]]: a commitment to allow your arcology's citizens cultural freedom.
+				<br>&nbsp;&nbsp;&nbsp;&nbsp;//This option is an alternative to societal advancement, and will not advance naturally.//
+			<</if>>
 		<</if>>
 	<</if>>
 <</if>>
-<</if>>
 
 <br>
 
 /* FACILITY REDECORATION */
 <<if $brothel > 0>>
-<<run ValidateFacilityDecoration("brothelDecoration")>>
-<br>$brothelNameCaps is decorated in $brothelDecoration style.
-<<SetFacilityDecoration "brothelDecoration">>
+	<<run ValidateFacilityDecoration("brothelDecoration")>>
+	<br>$brothelNameCaps is decorated in $brothelDecoration style.
+	<<SetFacilityDecoration "brothelDecoration">>
 <</if>>
 
 <<if $club > 0>>
-<<run ValidateFacilityDecoration("clubDecoration")>>
-<br>$clubNameCaps is decorated in $clubDecoration style.
-<<SetFacilityDecoration "clubDecoration">>
+	<<run ValidateFacilityDecoration("clubDecoration")>>
+	<br>$clubNameCaps is decorated in $clubDecoration style.
+	<<SetFacilityDecoration "clubDecoration">>
 <</if>>
 
 <<if $dairy > 0>>
-<<run ValidateFacilityDecoration("dairyDecoration")>>
-<br>$dairyNameCaps is decorated in $dairyDecoration style.
-<<SetFacilityDecoration "dairyDecoration">>
+	<<run ValidateFacilityDecoration("dairyDecoration")>>
+	<br>$dairyNameCaps is decorated in $dairyDecoration style.
+	<<SetFacilityDecoration "dairyDecoration">>
 <</if>>
 
 <<if $farmyard > 0>>
-<<run ValidateFacilityDecoration("farmyardDecoration")>>
-<br>$farmyardNameCaps is decorated in $farmyardDecoration style.
-<<SetFacilityDecoration "farmyardDecoration">>
+	<<run ValidateFacilityDecoration("farmyardDecoration")>>
+	<br>$farmyardNameCaps is decorated in $farmyardDecoration style.
+	<<SetFacilityDecoration "farmyardDecoration">>
 <</if>>
 
 <<if $spa > 0>>
-<<run ValidateFacilityDecoration("spaDecoration")>>
-<br>$spaNameCaps is decorated in $spaDecoration style.
-<<SetFacilityDecoration "spaDecoration">>
+	<<run ValidateFacilityDecoration("spaDecoration")>>
+	<br>$spaNameCaps is decorated in $spaDecoration style.
+	<<SetFacilityDecoration "spaDecoration">>
 <</if>>
 
 <<if $nursery > 0>>
-<<run ValidateFacilityDecoration("nurseryDecoration")>>
-<br>$nurseryNameCaps is decorated in $nurseryDecoration style.
-<<SetFacilityDecoration "nurseryDecoration">>
+	<<run ValidateFacilityDecoration("nurseryDecoration")>>
+	<br>$nurseryNameCaps is decorated in $nurseryDecoration style.
+	<<SetFacilityDecoration "nurseryDecoration">>
 <</if>>
 
 <<if $clinic > 0>>
-<<run ValidateFacilityDecoration("clinicDecoration")>>
-<br>$clinicNameCaps is decorated in $clinicDecoration style.
-<<SetFacilityDecoration "clinicDecoration">>
+	<<run ValidateFacilityDecoration("clinicDecoration")>>
+	<br>$clinicNameCaps is decorated in $clinicDecoration style.
+	<<SetFacilityDecoration "clinicDecoration">>
 <</if>>
 
 <<if $schoolroom > 0>>
-<<run ValidateFacilityDecoration("schoolroomDecoration")>>
-<br>$schoolroomNameCaps is decorated in $schoolroomDecoration style.
-<<SetFacilityDecoration "schoolroomDecoration">>
+	<<run ValidateFacilityDecoration("schoolroomDecoration")>>
+	<br>$schoolroomNameCaps is decorated in $schoolroomDecoration style.
+	<<SetFacilityDecoration "schoolroomDecoration">>
 <</if>>
 
 <<if $cellblock > 0>>
-<<run ValidateFacilityDecoration("cellblockDecoration")>>
-<br>$cellblockNameCaps is decorated in $cellblockDecoration style.
-<<SetFacilityDecoration "cellblockDecoration">>
+	<<run ValidateFacilityDecoration("cellblockDecoration")>>
+	<br>$cellblockNameCaps is decorated in $cellblockDecoration style.
+	<<SetFacilityDecoration "cellblockDecoration">>
 <</if>>
 
 <<if $servantsQuarters > 0>>
-<<run ValidateFacilityDecoration("servantsQuartersDecoration")>>
-<br>$servantsQuartersNameCaps is decorated in $servantsQuartersDecoration style.
-<<SetFacilityDecoration "servantsQuartersDecoration">>
+	<<run ValidateFacilityDecoration("servantsQuartersDecoration")>>
+	<br>$servantsQuartersNameCaps is decorated in $servantsQuartersDecoration style.
+	<<SetFacilityDecoration "servantsQuartersDecoration">>
 <</if>>
 
 <<if $arcade > 0>>
-<<run ValidateFacilityDecoration("arcadeDecoration")>>
-<br>$arcadeNameCaps is decorated in $arcadeDecoration style.
-<<SetFacilityDecoration "arcadeDecoration">>
+	<<run ValidateFacilityDecoration("arcadeDecoration")>>
+	<br>$arcadeNameCaps is decorated in $arcadeDecoration style.
+	<<SetFacilityDecoration "arcadeDecoration">>
 <</if>>
 
 <<if $masterSuite > 0>>
-<<run ValidateFacilityDecoration("masterSuiteDecoration")>>
-<br>$masterSuiteNameCaps is decorated in $masterSuiteDecoration style.
-<<SetFacilityDecoration "masterSuiteDecoration">>
+	<<run ValidateFacilityDecoration("masterSuiteDecoration")>>
+	<br>$masterSuiteNameCaps is decorated in $masterSuiteDecoration style.
+	<<SetFacilityDecoration "masterSuiteDecoration">>
 <</if>>
diff --git a/src/uncategorized/genericPlotEvents.tw b/src/uncategorized/genericPlotEvents.tw
index 94ba54bd4735ba80e30b63cd95c9326a287e78fb..dcbce6fd8804946e753b418e64d331285c5eac25 100644
--- a/src/uncategorized/genericPlotEvents.tw
+++ b/src/uncategorized/genericPlotEvents.tw
@@ -196,11 +196,11 @@ in the capital city.
 <<if $PAidTarget != "seizedMission">>
 	They are deeply worried by the situation. There have been large riots over the past week, and yesterday they became seriously violent. The unrest is targeting
 	<<if $PAidTarget == "convent">>
-		 better-off citizens, including the caller. Though most of the nuns have already left, the leader and a few of her women are now stuck in the area and are running out of options as the riots lock down transportation.
+		better-off citizens, including the caller. Though most of the nuns have already left, the leader and a few of her women are now stuck in the area and are running out of options as the riots lock down transportation.
 	<<elseif $PAidTarget == "school">>
-		 better-off citizens, including the caller. Though most of the students have already made it out, the principal and a few students are now stuck in the area and are running out of options as the riots lock down transportation.
+		better-off citizens, including the caller. Though most of the students have already made it out, the principal and a few students are now stuck in the area and are running out of options as the riots lock down transportation.
 	<<elseif $PAidTarget == "housewives">>
-		 better-off citizens, including the caller. Though most of them have taken flights out, the leader and a few of them are now stuck in the area and are running out of options as the riots lock down transportation.
+		better-off citizens, including the caller. Though most of them have taken flights out, the leader and a few of them are now stuck in the area and are running out of options as the riots lock down transportation.
 	<<elseif $PAidTarget == "maternity">>
 		better-off citizens, including the caller. Though most of the patients have already left, several of the most pregnant are now stuck in the area and are running out of options as the riots lock down transportation.
 	<<elseif $PAidTarget == "conversion">>
diff --git a/src/uncategorized/lawCompliance.tw b/src/uncategorized/lawCompliance.tw
index 619d885eee6b42e66c09c8858d783a0718f2caeb..28df5c3a86b1cac6121f12f0155222d807aac920 100644
--- a/src/uncategorized/lawCompliance.tw
+++ b/src/uncategorized/lawCompliance.tw
@@ -51,7 +51,7 @@
 		<<set $activeSlave.muscles = random(50,100)>>
 		lifting weights,
 	<</if>>
-	 and $his health has been raised to an almost unnatural level.
+	and $his health has been raised to an almost unnatural level.
 	<<set $activeSlave.health = random(50,90)>>
 	<<set $activeSlave.weight = random(-20,0)>>
 <<elseif $arcologies[0].FSHedonisticDecadenceSMR == 1>>
diff --git a/src/uncategorized/main.tw b/src/uncategorized/main.tw
index 8b8a127ead3a768f6ed9ea2ed4a3f53fa0bf55e4..c0d357e11b991d672e555e73fb66945cd2ef58e5 100644
--- a/src/uncategorized/main.tw
+++ b/src/uncategorized/main.tw
@@ -459,7 +459,7 @@ Filter by assignment: |
 				<<set $slaves.filter(function(x){return x.assignment != ($jobTypes[" + _i + "].asgn)}).map(function(y){y.assignmentVisible = 0})>>
 				<<replace '#summarylist'>><<include 'Slave Summary'>><</replace>>
 			<</link>>
-		">>	|
+		">> |
 	<</if>>
 <</for>>
 
diff --git a/src/uncategorized/neighborsDevelopment.tw b/src/uncategorized/neighborsDevelopment.tw
index 7af350ada5696dd11e79467feb16160b3b7f2385..2a840b0d1943d66a8e3922d1ffda24023f535a6b 100644
--- a/src/uncategorized/neighborsDevelopment.tw
+++ b/src/uncategorized/neighborsDevelopment.tw
@@ -511,7 +511,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(Math.trunc((0.1*$arcol
 	<<if random(0,100) >= _Catchchance-(10*$arcologies[0].CyberEconomic)>>
 		<<set $arcologies[0].prosperity -= $arcologies[0].CyberEconomic*3, $rep -= random(100,200), _redHanded = 1>>
 		<<if $secExp == 1>>
-			 <<set $authority -= random(100,500)*$arcologies[0].CyberEconomic, $crime += random(10,25)>>
+			<<set $authority -= random(100,500)*$arcologies[0].CyberEconomic, $crime += random(10,25)>>
 		<</if>>
 		<<set $arcologies[0].prosperity = Math.clamp($arcologies[0].prosperity, 1, 300)>>
 	<</if>>
@@ -552,7 +552,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(Math.trunc((0.1*$arcol
 	<<if random(0,100) >= _Catchchance-(10*$arcologies[0].CyberReputation)>>
 		<<set $arcologies[0].prosperity -= $arcologies[0].CyberReputation*3, $rep -= random(100,200), _redHanded = 1>>
 		<<if $secExp == 1>>
-			 <<set $authority -= random(100,500)*$arcologies[0].CyberReputation, $crime += random(10,25)>>
+			<<set $authority -= random(100,500)*$arcologies[0].CyberReputation, $crime += random(10,25)>>
 		<</if>>
 		<<set $arcologies[0].prosperity = Math.clamp($arcologies[0].prosperity, 1, 300)>>
 	<</if>>
diff --git a/src/uncategorized/pCoupAftermath.tw b/src/uncategorized/pCoupAftermath.tw
index c7e62f385bcb3734a3bbfd5c57ca5cdf940f6ae9..871b1f9226c76aae60f35509e1820138dcc250d2 100644
--- a/src/uncategorized/pCoupAftermath.tw
+++ b/src/uncategorized/pCoupAftermath.tw
@@ -10,10 +10,10 @@ The face is vigorous, determined, <<if _num < $seeDicks>>and masculine. The very
 <<if $rivalSet != 0>>
 	And, as you suspected, it's one of your neighbors. It's the individual who owns
 	<<for $i = 0; $i < $arcologies.length; $i++>>
-	  <<if $arcologies[$i].rival == 1>>
-		'' $arcologies[$i].name.''
-		<<break>>
-	  <</if>>
+		<<if $arcologies[$i].rival == 1>>
+			'' $arcologies[$i].name.''
+			<<break>>
+		<</if>>
 	<</for>>
 	<br><br>
 <</if>>
@@ -44,17 +44,17 @@ You inquire as to whether there's any identifiable cause for the evident dislike
 	<<set $cash += 10000>>
 	<<set $rivalryPower = 1>>
 	<<if $rivalSet != 0>>
-	  <<for $i = 0; $i < $arcologies.length; $i++>>
-		<<if $arcologies[$i].rival == 1>>
-		  <<set $arcologies[$i].embargo = 2>>
-		  <<set $arcologies[$i].embargoTarget = 0>>
-		  <<set $arcologies[$i].influenceTarget = 0>>
-		  <<set $rivalOwner = $arcologies[$i].prosperity>>
-		  <<break>>
-		<</if>>
-	  <</for>>
+		<<for $i = 0; $i < $arcologies.length; $i++>>
+			<<if $arcologies[$i].rival == 1>>
+				<<set $arcologies[$i].embargo = 2>>
+				<<set $arcologies[$i].embargoTarget = 0>>
+				<<set $arcologies[$i].influenceTarget = 0>>
+				<<set $rivalOwner = $arcologies[$i].prosperity>>
+				<<break>>
+			<</if>>
+		<</for>>
 	<<else>>
-	  <<set $rivalOwner = $arcologies[0].prosperity>>
+		<<set $rivalOwner = $arcologies[0].prosperity>>
 	<</if>>
 	<</replace>>
 <</link>>
@@ -65,17 +65,17 @@ You inquire as to whether there's any identifiable cause for the evident dislike
 	<<set $cash -= 20000>>
 	<<set $rivalryPower = 5>>
 	<<if $rivalSet != 0>>
-	  <<for $i = 0; $i < $arcologies.length; $i++>>
-		<<if $arcologies[$i].rival == 1>>
-		  <<set $arcologies[$i].embargo = 3>>
-		  <<set $arcologies[$i].embargoTarget = 0>>
-		  <<set $arcologies[$i].influenceTarget = 0>>
-		  <<set $rivalOwner = $arcologies[$i].prosperity>>
-		  <<break>>
-		<</if>>
-	  <</for>>
+		<<for $i = 0; $i < $arcologies.length; $i++>>
+			<<if $arcologies[$i].rival == 1>>
+				<<set $arcologies[$i].embargo = 3>>
+				<<set $arcologies[$i].embargoTarget = 0>>
+				<<set $arcologies[$i].influenceTarget = 0>>
+				<<set $rivalOwner = $arcologies[$i].prosperity>>
+				<<break>>
+			<</if>>
+		<</for>>
 	<<else>>
-	  <<set $rivalOwner = $arcologies[0].prosperity>>
+		<<set $rivalOwner = $arcologies[0].prosperity>>
 	<</if>>
 	<</replace>>
 <</link>> //This will cost <<print cashFormat(20000)>>//
diff --git a/src/uncategorized/pRivalryActions.tw b/src/uncategorized/pRivalryActions.tw
index 67c326fc43c55acc4a67675d10bb612ec3adf10f..0ca00f0eb18169cec131dc37b226a069420365e9 100644
--- a/src/uncategorized/pRivalryActions.tw
+++ b/src/uncategorized/pRivalryActions.tw
@@ -3890,16 +3890,16 @@ You remind yourself that success in this conflict will not be defined by the tra
 	EKIA. Confirm, E. K. I. A. No other casualties, team exfiltrating."
 	<<set $rivalOwner = 0, $rivalryPower = 0>>
 	<<if $rivalSet != 0>>
-	  <<for _pra = 0; _pra < $arcologies.length; _pra++>>
-		<<if $arcologies[_pra].rival == 1>>
-		  <<set $arcologies[_pra].embargo = 0>>
-		  <<set $arcologies[_pra].embargoTarget = -1>>
-		  <<set $arcologies[_pra].influenceTarget = -1>>
-		  <<set $arcologies[_pra].rival = 0>>
-		  <<set $arcologies[_pra].government = "direct democracy">>
-		  <<break>>
-		<</if>>
-	  <</for>>
+		<<for _pra = 0; _pra < $arcologies.length; _pra++>>
+			<<if $arcologies[_pra].rival == 1>>
+				<<set $arcologies[_pra].embargo = 0>>
+				<<set $arcologies[_pra].embargoTarget = -1>>
+				<<set $arcologies[_pra].influenceTarget = -1>>
+				<<set $arcologies[_pra].rival = 0>>
+				<<set $arcologies[_pra].government = "direct democracy">>
+				<<break>>
+			<</if>>
+		<</for>>
 	<</if>>
 	<<if $hostageAnnounced == 1>>
 		$assistantName pauses. "Also confirm package is secure."
diff --git a/src/uncategorized/pRivalryVictory.tw b/src/uncategorized/pRivalryVictory.tw
index 71a7954aaa3f2536c7ba98caf9175310f07b0340..111fd052113be30648b9050066183bb66c46a4c9 100644
--- a/src/uncategorized/pRivalryVictory.tw
+++ b/src/uncategorized/pRivalryVictory.tw
@@ -19,16 +19,16 @@ For the first time, you receive a direct call from your rival. You pictured the
 	<<if $rivalSet != 0>>
 		<<if _num < $seeDicks>>His<<else>>Her<</if>> remaining liquid assets will go to satisfy her great debts, <<if _num < $seeDicks>>his<<else>>her<</if>> @@.yellowgreen;arcology holdings are yours.@@
 		<<for _prv = 0; _prv < $arcologies.length; _prv++>>
-		<<if $arcologies[_prv].rival == 1>>
-		  <<set $arcologies[_prv].embargo = 0>>
-		  <<set $arcologies[_prv].embargoTarget = -1>>
-		  <<set $arcologies[_prv].influenceTarget = -1>>
-		  <<set $arcologies[_prv].rival = 0>>
-		  <<set $arcologies[_prv].government = "direct democracy">>
-		  <<set $arcologies[_prv].PCminority += $arcologies[_prv].ownership>>
-		  <<set $arcologies[_prv].PCminority = Math.clamp($arcologies[_prv].PCminority, 0, 49)>>
-		  <<break>>
-		<</if>>
+			<<if $arcologies[_prv].rival == 1>>
+				<<set $arcologies[_prv].embargo = 0>>
+				<<set $arcologies[_prv].embargoTarget = -1>>
+				<<set $arcologies[_prv].influenceTarget = -1>>
+				<<set $arcologies[_prv].rival = 0>>
+				<<set $arcologies[_prv].government = "direct democracy">>
+				<<set $arcologies[_prv].PCminority += $arcologies[_prv].ownership>>
+				<<set $arcologies[_prv].PCminority = Math.clamp($arcologies[_prv].PCminority, 0, 49)>>
+				<<break>>
+			<</if>>
 		<</for>>
 		<<if $hostageAnnounced == 1>><<set $hostageRescued = 1>><</if>>
 	<<else>>
@@ -44,14 +44,14 @@ For the first time, you receive a direct call from your rival. You pictured the
 	<<if $rivalSet != 0>>
 		"All my remaining liquid assets have just been @@.red;carefully dispersed to deny you control of my arcology.@@ You'll get nothing from me." It's true. The financial self-destruction ensures that the fiscal wreckage goes to the arcology's citizens, not you.
 		<<for _prv = 0; _prv < $arcologies.length; _prv++>>
-		<<if $arcologies[_prv].rival == 1>>
-		  <<set $arcologies[_prv].embargo = 0>>
-		  <<set $arcologies[_prv].embargoTarget = -1>>
-		  <<set $arcologies[_prv].influenceTarget = -1>>
-		  <<set $arcologies[_prv].rival = 0>>
-		  <<set $arcologies[_prv].government = "direct democracy">>
-		  <<break>>
-		<</if>>
+			<<if $arcologies[_prv].rival == 1>>
+				<<set $arcologies[_prv].embargo = 0>>
+				<<set $arcologies[_prv].embargoTarget = -1>>
+				<<set $arcologies[_prv].influenceTarget = -1>>
+				<<set $arcologies[_prv].rival = 0>>
+				<<set $arcologies[_prv].government = "direct democracy">>
+				<<break>>
+			<</if>>
 		<</for>>
 		<<if $hostageAnnounced == 1>>
 			<br><br>
@@ -101,13 +101,13 @@ For the first time, you receive a direct call from your rival. You pictured the
 		"All my remaining liquid assets have just been @@.red;carefully dispersed to deny you control of my arcology.@@ You'll get nothing from me." It's true. The financial self-destruction ensures that the fiscal wreckage goes to the arcology's citizens, not you.
 		<<for _prv = 0; _prv < $arcologies.length; _prv++>>
 		<<if $arcologies[_prv].rival == 1>>
-		  <<set $arcologies[_prv].embargo = 0>>
-		  <<set $arcologies[_prv].embargoTarget = -1>>
-		  <<set $arcologies[_prv].influenceTarget = -1>>
-		  <<set $arcologies[_prv].rival = 0>>
-		  <<set $arcologies[_prv].government = "direct democracy">>
-		  <<if $arcologies[_prv].FSSupremacist > 20>><<set $rivalRace = $arcologies[_prv].FSSupremacistRace>><</if>>
-		  <<break>>
+			<<set $arcologies[_prv].embargo = 0>>
+			<<set $arcologies[_prv].embargoTarget = -1>>
+			<<set $arcologies[_prv].influenceTarget = -1>>
+			<<set $arcologies[_prv].rival = 0>>
+			<<set $arcologies[_prv].government = "direct democracy">>
+			<<if $arcologies[_prv].FSSupremacist > 20>><<set $rivalRace = $arcologies[_prv].FSSupremacistRace>><</if>>
+			<<break>>
 		<</if>>
 		<</for>>
 		<<if $hostageAnnounced == 1>>
diff --git a/src/uncategorized/pSlaveMedic.tw b/src/uncategorized/pSlaveMedic.tw
index 47376d137c8d6ccbdc823d601fa63d6a5c97b143..9b13787a83bb18415ec85ef81504d77582c90db0 100644
--- a/src/uncategorized/pSlaveMedic.tw
+++ b/src/uncategorized/pSlaveMedic.tw
@@ -31,7 +31,7 @@
 <<set $activeSlave.intelligence = random(51,95)>>
 <<set $activeSlave.intelligenceImplant = 15>>
 <<if $activeSlave.physicalAge >= 12>>
-  <<set $activeSlave.teeth = "cosmetic braces">>
+	<<set $activeSlave.teeth = "cosmetic braces">>
 <</if>>
 <<set $activeSlave.anus = 2>>
 <<set $activeSlave.hips = 1>>
@@ -43,9 +43,9 @@
 <<set $activeSlave.hLength = 35>>
 <<set $activeSlave.health = random(20,40)>>
 <<if $mercenaries >= 3>>
-  <<if $activeSlave.publicCount>><<set $activeSlave.publicCount += 39>><<else>><<set $activeSlave.publicCount = 39>><</if>>
+	<<if $activeSlave.publicCount>><<set $activeSlave.publicCount += 39>><<else>><<set $activeSlave.publicCount = 39>><</if>>
 <<else>>
-  <<if $activeSlave.publicCount>><<set $activeSlave.publicCount += 13>><<else>><<set $activeSlave.publicCount = 13>><</if>>
+	<<if $activeSlave.publicCount>><<set $activeSlave.publicCount += 13>><<else>><<set $activeSlave.publicCount = 13>><</if>>
 <</if>>
 
 You make a habit of dropping in on your mercenaries whenever you get the chance. You have regular meetings with their grizzled captain, of course, but turning up unannounced to get to know them is simply a matter of self-preservation. The better they like you, the more likely they are to think of more than their pay when deciding how to hazard themselves on your behalf.
@@ -89,9 +89,9 @@ When you enter the lounge of their <<if $barracks>>barracks<<else>>main living a
 <<set $activeSlave.stampTat = either("flowers", "tribal patterns")>>
 <<set $activeSlave.health = random(20,40)>>
 <<if $mercenaries >= 3>>
-  <<if $activeSlave.publicCount>><<set $activeSlave.publicCount += 39>><<else>><<set $activeSlave.publicCount = 39>><</if>>
+	<<if $activeSlave.publicCount>><<set $activeSlave.publicCount += 39>><<else>><<set $activeSlave.publicCount = 39>><</if>>
 <<else>>
-  <<if $activeSlave.publicCount>><<set $activeSlave.publicCount += 13>><<else>><<set $activeSlave.publicCount = 13>><</if>>
+	<<if $activeSlave.publicCount>><<set $activeSlave.publicCount += 13>><<else>><<set $activeSlave.publicCount = 13>><</if>>
 <</if>>
 
 You make a habit of dropping in on your mercenaries whenever you get the chance. You have regular meetings with their grizzled captain, of course, but turning up unannounced to get to know them is simply a matter of self-preservation. The better they like you, the more likely they are to think of more than their pay when deciding how to hazard themselves on your behalf.
diff --git a/src/uncategorized/peConcubineInterview.tw b/src/uncategorized/peConcubineInterview.tw
index 027277022548bcf6a4bf0473637933c539ec5d19..329ee50a65017e9a2a9cf22f6bad421eb886e2c5 100644
--- a/src/uncategorized/peConcubineInterview.tw
+++ b/src/uncategorized/peConcubineInterview.tw
@@ -394,7 +394,7 @@ You receive an official communication from a popular talk show ehosted in one of
 		$activeSlave.slaveName even manages to @@.green;respond well@@ to a probing question about your gender.
 		She <<if _lisps>>lisps<<else>>explains<</if>>, "You have to under<<s>>tand that all that non<<s>>en<<s>>e about men and women mean<<s>> le<<ss>> to u<<s>> in the Free Citie<<s>>. My <<Master>> i<<s>> a <<s>>u<<cc>>e<<ss>>ful and powerful woman.
 		<<if $PC.dick == 0>>
-			 We ju<<s>>t pay the right amount of attention to the <<s>>u<<cc>>e<<ss>> and the power." She quirks a corner of her mouth. "I know //I// do."
+			We ju<<s>>t pay the right amount of attention to the <<s>>u<<cc>>e<<ss>> and the power." She quirks a corner of her mouth. "I know //I// do."
 		<<else>>
 			She quirks a corner of her mouth. "And <<sh>>e ha<<s>> a //wonderful// cock."
 		<</if>>
diff --git a/src/uncategorized/ptWorkaround.tw b/src/uncategorized/ptWorkaround.tw
index c17d7acc6bd2915e5ad03fe017998a7fdeaabbd4..9c80831ef20a91fc732cc19c720912567c8aeb85 100644
--- a/src/uncategorized/ptWorkaround.tw
+++ b/src/uncategorized/ptWorkaround.tw
@@ -391,7 +391,7 @@
 		<<else>>
 			slave;
 		<</if>>
-		 @@.yellow;her assignment has defaulted to fostering devotion.@@
+		@@.yellow;her assignment has defaulted to fostering devotion.@@
 		<<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">>
 	<</if>>
 	<<set $activeSlave.training = 0>>
diff --git a/src/uncategorized/reDevotedMotherDaughter.tw b/src/uncategorized/reDevotedMotherDaughter.tw
index 0ca2dac80904e5fd20464b5656267f9e9b5f9c29..b393add88cc7021f5697ea6440bc7ab1346f2716 100644
--- a/src/uncategorized/reDevotedMotherDaughter.tw
+++ b/src/uncategorized/reDevotedMotherDaughter.tw
@@ -12,7 +12,7 @@ $slaves[$i].slaveName and her daughter $slaves[$j].slaveName are both good slave
 <span id="result">
 <br><<link "Spend the night sharing your bed with them, and each of them with the other">>
 	<<replace "#result">>
-	Neither of them bats an eye when you announce you're turning in early and that they'll be joining you. Since they're already naked, they get into your big soft bed before you and lie facing each other, with enough room in between them for you to take a central position. They clearly assume you'll start with one of them on each side of you, so they're quite surprised when you slide in behind $slaves[$i].slaveName instead. $slaves[$j].slaveName snuggles up to her mother happily enough, however. You extend the foreplay to hours, eventually bringing both of them to such a state of naked arousal that they begin grinding against each other as much as they do you. They get the idea, and things turn into a sort of unspoken mutual one-upsmanship between them. What starts with $slaves[$j].slaveName clearly feeling very daring as she sucks her mother's nipple ends with $slaves[$i].slaveName lying on her back getting fucked by you while she orally pleasures $slaves[$j].slaveName. You're face to face with $slaves[$j].slaveName and she groans happily into your mouth as $slaves[$i].slaveName moans into her fuckhole.
+	Neither of them bats an eye when you announce you're turning in early and that they'll be joining you. Since they're already naked, they get into your big soft bed before you and lie facing each other, with enough room in between them for you to take a central position. They clearly assume you'll start with one of them on each side of you, so they're quite surprised when you slide in behind $slaves[$i].slaveName instead. $slaves[$j].slaveName snuggles up to her mother happily enough, however. You extend the foreplay to hours, eventually bringing both of them to such a state of naked arousal that they begin grinding against each other as much as they do you. They get the idea, and things turn into a sort of unspoken mutual oneupmanship between them. What starts with $slaves[$j].slaveName clearly feeling very daring as she sucks her mother's nipple ends with $slaves[$i].slaveName lying on her back getting fucked by you while she orally pleasures $slaves[$j].slaveName. You're face to face with $slaves[$j].slaveName and she groans happily into your mouth as $slaves[$i].slaveName moans into her fuckhole.
 	@@.mediumaquamarine;They have both become more trusting of you.@@
 
 	<<set $slaves[$i].trust += 4, $slaves[$j].trust += 4, $slaves[$i].oralCount += 1, $slaves[$j].oralCount += 1, $oralTotal += 2>>
diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw
index f7f28b44d23a5bbb0e005f64491cac51968fd7a4..86394492a2e789cd0e34935bede4ac5bb0eea12b 100644
--- a/src/uncategorized/reFSAcquisition.tw
+++ b/src/uncategorized/reFSAcquisition.tw
@@ -1075,7 +1075,7 @@
 
 You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were.
 <br><br>
-This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. This proves to be right on the money in this case, though the woman isn't too terribly bedraggled; $his situation must be recent. $He asks to be enslaved with the crushing sadness most such people experience during their last free hours. "I'm pregnant," $he says through tears. "I know I'm not that pretty, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. But," and $he brings $his sizeable chest into view, "I've got pretty big boobs, and I started giving milk yesterday. I was searching the net, and I saw that you milk women, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. It seems like a better life than getting fucked all the time."
+This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. This proves to be right on the money in this case, though the woman isn't too terribly bedraggled; $his situation must be recent. $He asks to be enslaved with the crushing sadness most such people experience during their last free hours. "I'm pregnant," $he says through tears. "I know I'm not that pretty, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. But," and $he brings $his sizable chest into view, "I've got pretty big boobs, and I started giving milk yesterday. I was searching the net, and I saw that you milk women, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. It seems like a better life than getting fucked all the time."
 
 <<case "Pastoralist Two">>
 
@@ -1369,7 +1369,7 @@ The call comes in from an office, and you suppress the urge to check whether $as
 	<<case "Gender Fundamentalist Two">>
 		When $he arrives, $he is the very picture of a distraught and very pregnant mature woman. $He clearly feels some resentment at $his traditionalist home and family for selling $him into slavery, but $he has just as clearly heard enough about the Free Cities to know that $he's likely traded one form of marginalization for another.
 	<<case "Paternalist">>
-		$He speaks to you as a free woman throughout the enslavement process, but as soon as it is completed, $he stops and waits for instruction before talking. $He does not look directly at your face, but keeps $his gaze lower than that, and stands expectant and ready for commands. You are reminded of $his intelligence by $his precisely correct behavior for a new slave, even before you give any kind of direction.
+		$He speaks to you as a free $woman throughout the enslavement process, but as soon as it is completed, $he stops and waits for instruction before talking. $He does not look directly at your face, but keeps $his gaze lower than that, and stands expectant and ready for commands. You are reminded of $his intelligence by $his precisely correct behavior for a new slave, even before you give any kind of direction.
 	<<case "Paternalist Two">>
 		$He speaks to you as a free woman throughout the enslavement process, but as soon as it is completed, $he stops and waits for instruction before talking. $He may not have had many prospects in $his life back home, but if $he remains this obedient $he'll fit right in here in the Free Cities.
 	<<case "Degradationist">>
diff --git a/src/uncategorized/reFSNonconformist.tw b/src/uncategorized/reFSNonconformist.tw
index 6c0b299a2b42027072f9aacca68eb6bbeeae2d11..0794b39b34e5cceb875ff3078eea94d83de820c2 100644
--- a/src/uncategorized/reFSNonconformist.tw
+++ b/src/uncategorized/reFSNonconformist.tw
@@ -274,7 +274,7 @@ The nonconformist is far too prominent and prosperous to make this an easy dilem
 	<</nobr>><</replace>>
 <</link>> //This will cost <<print cashFormat(10000)>>//
 <<else>>
-//You lack the necessary ready cash to manage a nuanced solution//
+	//You lack the necessary ready cash to manage a nuanced solution//
 <</if>>
 <<if $PC.rumor == "force">>
 <br><<link "Leverage your reputation with some credible threats">>
diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw
index 004c2816a39dcd12f76201cb9e8c2542f0192b20..034c7298a3b3b3cc0b62102511be67a134395cfe 100644
--- a/src/uncategorized/reRecruit.tw
+++ b/src/uncategorized/reRecruit.tw
@@ -2631,7 +2631,7 @@ He explains that one of his servant <<= $girl>>s was impregnated by his fool of
 		<<case "farm cow">>
 			Making a video call to tell the association president you accept the asking price for $activeSlave.slaveName, you're drawn into a conversation with the skillful speaker, at the end of which you agree to be the honored guest for their convention. Who knows, new developments in the slave farming industry might actually prove interesting to learn about, and the pleasure of acquiring a new slave will make it worth your while even if it turns out to be boring. In short notice, the woman you just bought is brought to your penthouse where $he obediently strips and stands ready for your inspection.
 		<<case "farm bull">>
-			Making a video call to tell the association president you accept the asking price for $activeSlave.slaveName, you're drawn into a conversation with the skillful speaker, at the end of which you agree to be the honored guest for their convention. Who knows, new developments in the slave farming industry might actually prove interesting to learn about, and the pleasure of acquiring a new slave will make it worth your while even if it turns out to be boring. In short notice, the dickgirl you just bought is brought to your penthouse where $he obediently strips and stands ready for your inspection, a sizeable cock swinging between $his legs.
+			Making a video call to tell the association president you accept the asking price for $activeSlave.slaveName, you're drawn into a conversation with the skillful speaker, at the end of which you agree to be the honored guest for their convention. Who knows, new developments in the slave farming industry might actually prove interesting to learn about, and the pleasure of acquiring a new slave will make it worth your while even if it turns out to be boring. In short notice, the dickgirl you just bought is brought to your penthouse where $he obediently strips and stands ready for your inspection, a sizable cock swinging between $his legs.
 		<<case "farm virgin cow">>
 			Making a video call to tell the association president you accept the asking price for $activeSlave.slaveName, you're drawn into a conversation with the skillful speaker, at the end of which you agree to be the honored guest for their convention. Who knows, new developments in the slave farming industry might actually prove interesting to learn about, and the pleasure of acquiring a new slave will make it worth your while even if it turns out to be boring. In short notice, the young woman you just bought is brought to your penthouse where $he obediently strips and stands ready for your inspection.
 		<<case "orphan rebellious female">>
diff --git a/src/uncategorized/reShelterInspection.tw b/src/uncategorized/reShelterInspection.tw
index 3ee084fb499d40c01ac7366671b97d53a985aa50..b462889bddbb172864c0d5d20a843470157f3186 100644
--- a/src/uncategorized/reShelterInspection.tw
+++ b/src/uncategorized/reShelterInspection.tw
@@ -153,7 +153,7 @@ Not waiting to be greeted, the inspector looks up at the nearest camera and dema
 	<<elseif $subSlave.trust < -20>>
 		She is sufficiently afraid of you that she tells the inspector whatever she thinks you'd want her to say. The inspector, experienced at this, is not amused. She offers you a few choice words, makes notes on her tablet, and storms out.
 	<<elseif $subSlave.devotion <= 20>>
-		She does not like you and isn't particularly terrified of you, so she is not flattering. She's not stupid enough to really criticise you, but she is honest and makes no effort to conceal troubling particulars. The inspector takes copious notes. She offers you a few choice words, makes notes on her tablet, and storms out.
+		She does not like you and isn't particularly terrified of you, so she is not flattering. She's not stupid enough to really criticize you, but she is honest and makes no effort to conceal troubling particulars. The inspector takes copious notes. She offers you a few choice words, makes notes on her tablet, and storms out.
 	<<elseif $subSlave.anus > 2>>
 		She cooperates with the inspector, who pulls on a pair of latex gloves and performs a complete examination. When she pulls the girl's buttocks apart and probes the slave's asshole, she pulls her hand away as if scalded. "Oh my God," she says. "$subSlave.birthName, what happened to your anus?"
 		<br><br>
diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw
index 6949048369d2c749ef7a050209bd5d6203d69dd1..c119d9f9a61bb375a40238999430e208692a68f7 100644
--- a/src/uncategorized/remoteSurgery.tw
+++ b/src/uncategorized/remoteSurgery.tw
@@ -124,7 +124,7 @@ $His $activeSlave.faceShape face is
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	$He has working
 	<<if $activeSlave.eyes == -1>>
-		 eyes, but is nearsighted.
+		eyes, but is nearsighted.
 		<<if ($activeSlave.origEye != "implant")>>
 			[[Correct eyesight|Surgery Degradation][$activeSlave.eyes = 1, $cash -= $surgeryCost, $activeSlave.health -= 10, $surgeryType = "eyeFix"]]
 		<</if>>
@@ -345,7 +345,7 @@ Work on her chest:
 	<<elseif $activeSlave.boobs < 400>><<print either("pointy", "tiny")>>, <<print $activeSlave.boobs>>cc chest only fills an A-cup.
 	<<elseif $activeSlave.boobs < 500>><<print either("perky", "small")>>, <<print $activeSlave.boobs>>cc <<print either("tits", "breasts", "boobs", "bosom")>> would fill a B-cup.
 	<<elseif $activeSlave.boobs < 650>><<print either("healthy", "curved")>>, <<print $activeSlave.boobs>>cc <<print either("tits", "breasts", "boobs", "bust", "bosom")>> would fill a C-cup.
-	<<elseif $activeSlave.boobs < 800>><<print either("big", "sizeable")>>, <<print $activeSlave.boobs>>cc <<print either("tits", "breasts", "boobs", "bust", "bosom")>> would fill a D-cup.
+	<<elseif $activeSlave.boobs < 800>><<print either("big", "sizable")>>, <<print $activeSlave.boobs>>cc <<print either("tits", "breasts", "boobs", "bust", "bosom")>> would fill a D-cup.
 	<<elseif $activeSlave.boobs < 1000>><<print either("large", "big")>>, <<print $activeSlave.boobs>>cc <<print either("tits", "breasts", "boobs", "bust", "bosom")>> would fill a DD-cup.
 	<<elseif $activeSlave.boobs < 1200>><<print either("proud", "hefty")>>, <<print $activeSlave.boobs>>cc <<print either("tits", "breasts", "mammaries", "udders", "boobs")>> would fill an F-cup.
 	<<elseif $activeSlave.boobs < 1400>><<print either("hefty", "huge")>>, <<print $activeSlave.boobs>>cc <<print either("tits", "breasts", "mammaries", "udders")>> would fill a G-cup.
@@ -814,7 +814,7 @@ Work on $his sex:
 	<<elseif $activeSlave.clit == 2>>
 		a huge clit<<if ($seeCircumcision == 1) && $activeSlave.foreskin > 0>> with a hood<</if>>.
 	<<elseif $activeSlave.clit > 2>>
-		 an enormous clit<<if ($seeCircumcision == 1) && $activeSlave.foreskin > 0>> with a hood<</if>>.
+		an enormous clit<<if ($seeCircumcision == 1) && $activeSlave.foreskin > 0>> with a hood<</if>>.
 	<</if>>
 	<<if $activeSlave.clit > 0>>
 		<<if $activeSlave.indentureRestrictions < 2>>
diff --git a/src/uncategorized/reputation.tw b/src/uncategorized/reputation.tw
index 3c1faa2d32d2898766635340d01b0b1ca3cbc1e1..577f90d9d6bfc9041426517eb7cd8ba1cfd85a90 100644
--- a/src/uncategorized/reputation.tw
+++ b/src/uncategorized/reputation.tw
@@ -572,8 +572,13 @@ On formal occasions, you are announced as $PCTitle.
 		Society @@.green;approves@@ of your poor treatment of slave infants.
 		<<set $rep += 5*$FSSingleSlaveRep*($arcologies[0].FSDegradationist/$FSLockinLevel)>>
 	<<elseif $arcologies[0].FSRestart != "unset">>
-		The Societal Elite @@.red;strongly disapproves@@ of your creating an economic incentive for the lower classes to breed and sell infants, holding back acceptance of your new society.
-		<<set $failedElite += 5, $arcologies[0].FSRestart -= $FSSingleSlaveRep, $rep -= (5*$FSSingleSlaveRep*($arcologies[0].FSRestart/$FSLockinLevel))+($rep/40)>>
+		<<$eugenicsFullControl != 1>>
+			The Societal Elite @@.red;strongly disapproves@@ of your creating an economic incentive for the lower classes to breed and sell infants, holding back acceptance of your new society.
+			<<set $failedElite += 5>>
+		<<else>>
+			Society @@.red;strongly disapproves@@ of your creating an economic incentive for the lower classes to breed and sell infants, holding back acceptance of your new society.
+		<</if>>
+		<<set $arcologies[0].FSRestart -= $FSSingleSlaveRep, $rep -= (5*$FSSingleSlaveRep*($arcologies[0].FSRestart/$FSLockinLevel))+($rep/40)>>
 	<<elseif $arcologies[0].FSPaternalist != "unset">>
 		Society @@.red;greatly despises@@ your poor treatment of slave infants.
 		<<set $rep -= (25*$FSSingleSlaveRep*($arcologies[0].FSPaternalist/$FSLockinLevel))+($rep/20)>>
@@ -722,19 +727,19 @@ On formal occasions, you are announced as $PCTitle.
 <</if>>
 
 <<if $alwaysSubsidizeRep == 1>>
-<<if $rep <= 19900>>
-	<<set $rep += 100>>
-	Reputation subsidized as planned.
-	<<if $PC.degeneracy > 1>>
+	<<if $rep <= 19900>>
+		<<set $rep += 100>>
+		Reputation subsidized as planned.
+		<<if $PC.degeneracy > 1>>
+			<<set $PC.degeneracy -= 1>>
+		<</if>>
+	<<elseif $PC.degeneracy > 1>>
 		<<set $PC.degeneracy -= 1>>
+		Rumors quelled as planned.
+	<<else>>
+		<<set $cash += 1000>>
+		Reputation subsidy reclaimed this week since your reputation is capped.
 	<</if>>
-<<elseif $PC.degeneracy > 1>>
-	<<set $PC.degeneracy -= 1>>
-	Rumors quelled as planned.
-<<else>>
-	<<set $cash += 1000>>
-	Reputation subsidy reclaimed this week since your reputation is capped.
-<</if>>
 <</if>>
 
 <<if $failedElite > 1>>
@@ -773,7 +778,7 @@ On formal occasions, you are announced as $PCTitle.
 			<<set $eliteFail = $topClass - 20>>
 		<</if>>
 		<<if $arcologies[0].prosperity > 50>>
-		<<set $arcologies[0].prosperity -= random(20,40)>>
+			<<set $arcologies[0].prosperity -= random(20,40)>>
 		<</if>>
 	<<elseif $failedElite > 250>>
 		The Societal Elite @@.red;are openly discussing leaving@@. It would be in your best interests to appease them.
diff --git a/src/uncategorized/resSale.tw b/src/uncategorized/resSale.tw
index 436e002489c0a6f576f53a74ac381768d119c1b9..31e65940c6530856310543e1603264f87be4572c 100644
--- a/src/uncategorized/resSale.tw
+++ b/src/uncategorized/resSale.tw
@@ -288,7 +288,7 @@ You pause for a moment, and she plunges on: "<<if $PC.title == 1>>Sir<<else>>Ma'
 	<<else>>
 		<<switch $assistantAppearance>>
 		<<case "monstergirl">>
-			 "And I love to fuck futas!" she shouts, dicks painfully erect.
+			"And I love to fuck futas!" she shouts, dicks painfully erect.
 		<<case "shemale">>
 			"And I love to fuck futas!" she shouts, cock painfully erect.
 		<<case "amazon">>
diff --git a/src/uncategorized/saDrugs.tw b/src/uncategorized/saDrugs.tw
index 79d60b353ee68a1894054c0b8b11fee660a6dd52..529e54eaca6b9791d629ebc3f68cfd8789b9509d 100644
--- a/src/uncategorized/saDrugs.tw
+++ b/src/uncategorized/saDrugs.tw
@@ -1104,13 +1104,13 @@
 
 <<case "labor supressors">>
 	<<set $slaves[$i].chem += 2>>
- 	<<if WombBirthReady($slaves[$i], 60) > 0>>
+	<<if WombBirthReady($slaves[$i], 60) > 0>>
 		<<set $slaves[$i].health -= 20>>
 		<<set $slaves[$i].labor = 1>>
 		<<set $slaves[$i].induce = 1>>
 		<<set $birthee = 1>>
 		$He has been ready to give birth for some time now. Suppressing birth for so long @@.red;greatly affects $his health.@@ $He may @@.red;have trouble@@ giving birth to $his oversized child<<if $slaves[$i].pregType > 1>>ren<</if>>. $He seems to be in distress, $his body is @@.red;forcing $his child<<if $slaves[$i].pregType > 1>>ren<</if>> out!@@
- 	<<elseif WombBirthReady($slaves[$i], 50) > 0>>
+	<<elseif WombBirthReady($slaves[$i], 50) > 0>>
 		<<set $slaves[$i].health -= 20>>
 		$He has been ready to give birth for some time now. Suppressing birth for so long @@.red;greatly affects $his health.@@ $He may @@.red;have trouble@@ giving birth to $his oversized child<<if $slaves[$i].pregType > 1>>ren<</if>>.
 	<<elseif WombBirthReady($slaves[$i], 40) > 0>>
diff --git a/src/uncategorized/saGetMilked.tw b/src/uncategorized/saGetMilked.tw
index de004e58b98435a7e3d7a6887734967bcd83a280..4f408fedff99978f7b107c3f1174c46df18bb261 100644
--- a/src/uncategorized/saGetMilked.tw
+++ b/src/uncategorized/saGetMilked.tw
@@ -255,7 +255,7 @@ gets milked this week.
 		<<elseif ($slaves[$i].dick > 4)>>
 			big
 		<<elseif ($slaves[$i].dick > 3)>>
-			sizeable
+			sizable
 		<<elseif ($slaves[$i].dick > 2)>>
 			moderate
 		<<elseif ($slaves[$i].dick > 1)>>
diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw
index a412993c04c390949d33296e1f6f7a97dd1300d5..832d25956b51f18403fff8f9ec749964a4b0cdd1 100644
--- a/src/uncategorized/saLongTermEffects.tw
+++ b/src/uncategorized/saLongTermEffects.tw
@@ -6250,7 +6250,7 @@
 		<<elseif $slaves[$i].fetish == "mindbroken">>
 			$He tries $his best to stay still to minimize the amount of discomfort $he's in.
 		<<else>>
-			 This is @@.mediumorchid;very worrying@@ to $him. $He moans in discomfort
+			This is @@.mediumorchid;very worrying@@ to $him. $He moans in discomfort
 			<<if $slaves[$i].bellyPreg > 100>>
 				with each movement within $him.
 			<<else>>
diff --git a/src/uncategorized/saPleaseYou.tw b/src/uncategorized/saPleaseYou.tw
index b7634f74a0e2436dab9ab6c3574f89908e62a3a7..006a2ec4a4658c798b6d26a209609b4a600b424f 100644
--- a/src/uncategorized/saPleaseYou.tw
+++ b/src/uncategorized/saPleaseYou.tw
@@ -51,7 +51,7 @@ serves you this week.
 					<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 9>>
 				<<else>>
 					<<set _vaginalUse = random(3,7)>>
-					 on occasion.
+					on occasion.
 					<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>>
 				<</if>>
 				$He doesn't react, even if $his body does.
@@ -66,7 +66,7 @@ serves you this week.
 					<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 9>>
 				<<else>>
 					<<set _vaginalUse = random(3,7)>>
-					 on occasion; the threat of
+					on occasion; the threat of
 					<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>>
 				<</if>>
 				rape fills $him with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@
@@ -88,7 +88,7 @@ serves you this week.
 			<<else>>
 				<<if ($fuckSlaves <= $PC.sexualEnergy/2)>>
 					<<set _vaginalUse = random(21,40)>>
-					 several times a day; constant,
+					several times a day; constant,
 					<<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>>
 				<<elseif ($fuckSlaves <= $PC.sexualEnergy)>>
 					<<set _vaginalUse = random(7,14)>>
@@ -197,7 +197,7 @@ serves you this week.
 					<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 9>>
 				<<else>>
 					<<set _analUse = random(3,7)>>
-					 on occasion.
+					on occasion.
 					<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>>
 				<</if>>
 				$He doesn't react, even if $his body does.
@@ -332,7 +332,7 @@ serves you this week.
 					<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 9>>
 				<<else>>
 					<<set _oralUse = random(3,7)>>
-					 on occasion.
+					on occasion.
 					<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>>
 				<</if>>
 				$He absentmindedly follows your lead.
@@ -372,7 +372,7 @@ serves you this week.
 				<<if ($PC.dick == 1)>>get a blowjob<<if $PC.vagina == 1>> and some pussy licking<</if>> from $him<<else>>let $him eat you out<</if>>
 				<<if ($fuckSlaves <= $PC.sexualEnergy/2)>>
 					<<set _oralUse = random(21,40)>>
-					 several times a day; constantly
+					several times a day; constantly
 					<<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>>
 				<<elseif ($fuckSlaves <= $PC.sexualEnergy)>>
 					<<set _oralUse = random(7,14)>>
@@ -469,7 +469,7 @@ serves you this week.
 					<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 9>>
 				<<else>>
 					<<set _mammaryUse = random(3,7)>>
-					 on occasion.
+					on occasion.
 					<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>>
 				<</if>>
 				$He absentmindedly follows your lead.
@@ -514,7 +514,7 @@ serves you this week.
 					$him on occasion; the threat of
 					<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>>
 				<</if>>
-				 sexual abuse fills $him with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@
+				sexual abuse fills $him with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@
 			<<elseif ($slaves[$i].devotion <= 20)>>
 				play with $his tits
 				<<if ($fuckSlaves <= $PC.sexualEnergy/2)>>
@@ -701,7 +701,7 @@ serves you this week.
 					on occasion;
 					<<set $slaves[$i].devotion -= 3, $slaves[$i].trust += 3>>
 				<</if>>
-				 getting to dominantly fuck $his '<<= WrittenMaster($slaves[$i])>>' @@.mediumorchid;builds $his self-confidence,@@ yet @@.mediumaquamarine;makes $his more trusting@@ of you.
+				getting to dominantly fuck $his '<<= WrittenMaster($slaves[$i])>>' @@.mediumorchid;builds $his self-confidence,@@ yet @@.mediumaquamarine;makes $his more trusting@@ of you.
 			<<else>>
 				<<if ($fuckSlaves <= $PC.sexualEnergy/2)>>
 					<<set _penetrativeUse = random(21,40)>>
diff --git a/src/uncategorized/saRelationships.tw b/src/uncategorized/saRelationships.tw
index 30b8cb1c2ea4293f556adc41cc200162e5950a74..eeb4e1c549b2ac29459b96fed555be512f89c00f 100644
--- a/src/uncategorized/saRelationships.tw
+++ b/src/uncategorized/saRelationships.tw
@@ -956,7 +956,7 @@
 				<<if (_SlaveI.devotion + _SlaveI.trust > 170) && (random(1, 2) == 1)>>
 					She's very devoted to you, and strongly trusts both you and her place as a slave. Since she is just friends with _SlaveJ.slaveName,
 					<<if _SlaveI.sexualQuirk == "romantic">>
-						and persistently interprets sex in the most romantic possible terms, she has decided that she wants to be yours in her heart as well as her	<<if _SlaveI.vagina > -1>>pussy<<else>>butthole<</if>>. @@.lightgreen;She's become emotionally bonded to you!@@
+						and persistently interprets sex in the most romantic possible terms, she has decided that she wants to be yours in her heart as well as her <<if _SlaveI.vagina > -1>>pussy<<else>>butthole<</if>>. @@.lightgreen;She's become emotionally bonded to you!@@
 						<<set _SlaveI.relationship = -2>>
 					<<elseif _SlaveI.energy > 90>>
 						and is a total sex addict, she begins to think of sex as her only meaningful emotional connection with people. @@.lightgreen;She's become an emotional slut!@@
diff --git a/src/uncategorized/saServeThePublic.tw b/src/uncategorized/saServeThePublic.tw
index 22299fd36a0aa3f5752fb18ab770ef2d892b9ca7..a6c62ccb1bf5c9b871e557fae78d5d3adcc9dd3c 100644
--- a/src/uncategorized/saServeThePublic.tw
+++ b/src/uncategorized/saServeThePublic.tw
@@ -309,9 +309,9 @@ $His appearance attracted $beauty members of the public (<<print Math.trunc($bea
 	<<set $slaves[$i].health -= 3>>
 	<<if canDoAnal($slaves[$i])>>
 		<<set _injuryChance = random(1,100)>>
- 	<<else>>
+	<<else>>
 		<<set _injuryChance = random(1,80)>>
- 	<</if>>
+	<</if>>
 	<<if (_injuryChance > 80)>>
 		<<set $slaves[$i].minorInjury = "sore ass">>
 		Rough anal with a careless citizen left $him with a @@.red;$slaves[$i].minorInjury.@@
@@ -860,7 +860,7 @@ $His appearance attracted $beauty members of the public (<<print Math.trunc($bea
 			<</if>>
 		<</if>>
 	<<case "mindbroken">>
-		$He receives less attention because $he just lies there, mind broken.
+		$He receives less attention because $he just lies there, motionlessly.
 	<</switch>>
 <</if>>
 
diff --git a/src/uncategorized/saServeYourOtherSlaves.tw b/src/uncategorized/saServeYourOtherSlaves.tw
index 0d2dca01db7704cd37ebdf4beab92328f4243555..b91d117ae1e5b9587cec322ef3f8645502316a8c 100644
--- a/src/uncategorized/saServeYourOtherSlaves.tw
+++ b/src/uncategorized/saServeYourOtherSlaves.tw
@@ -284,8 +284,8 @@ is serving ''$slaves[_dom].slaveName'' this week.
 				<<else>>
 					<<print nippleColor($slaves[_dom])>> nipples
 				<</if>>
-				 being roughly handled by $slaves[$i].slaveName's _subRace fingers. Afterward, $slaves[_dom].slaveName lavishes kisses on _his2 satisfactory top. $slaves[_dom].slaveName @@.hotpink;enjoys a week of constant submission,@@ and even though $he's technically being used, $slaves[$i].slaveName @@.hotpink;doesn't mind the fun.@@
-				 <<set _fingerBang = random(9,12)>>
+				being roughly handled by $slaves[$i].slaveName's _subRace fingers. Afterward, $slaves[_dom].slaveName lavishes kisses on _his2 satisfactory top. $slaves[_dom].slaveName @@.hotpink;enjoys a week of constant submission,@@ and even though $he's technically being used, $slaves[$i].slaveName @@.hotpink;doesn't mind the fun.@@
+				<<set _fingerBang = random(9,12)>>
 				<<set $slaves[_dom].mammaryCount += _fingerBang, $mammaryTotal += _fingerBang>>
 			<</if>>
 		<</if>>
diff --git a/src/uncategorized/saWhore.tw b/src/uncategorized/saWhore.tw
index 9e6b4bbbdec5982c93f74766699a521b24a3ba09..19a0fe15c666b5ae0279295c2bf87b799e3ec2a6 100644
--- a/src/uncategorized/saWhore.tw
+++ b/src/uncategorized/saWhore.tw
@@ -870,7 +870,7 @@ $His appearance attracted $beauty customers (<<print Math.trunc($beauty/7)>> a d
 		<</if>>
 	<</if>>
 <<case "mindbroken">>
-	$He gets less ¤ because $he just lies there, mind broken.
+	$He gets less ¤ because $he just lies there, motionlessly.
 <</switch>>
 <</if>>
 <</if>>
diff --git a/src/uncategorized/saWorkTheFarm.tw b/src/uncategorized/saWorkTheFarm.tw
index f532c22f67f76ba76dc5c81faebdf76be58b4db0..7d0d38dc35f6c1d520b898b5cf90b9bfb92c8e59 100644
--- a/src/uncategorized/saWorkTheFarm.tw
+++ b/src/uncategorized/saWorkTheFarm.tw
@@ -255,7 +255,7 @@ gets milked this week.
 		<<elseif ($slaves[$i].dick > 4)>>
 			big
 		<<elseif ($slaves[$i].dick > 3)>>
-			sizeable
+			sizable
 		<<elseif ($slaves[$i].dick > 2)>>
 			moderate
 		<<elseif ($slaves[$i].dick > 1)>>
diff --git a/src/uncategorized/seIndependenceDay.tw b/src/uncategorized/seIndependenceDay.tw
index 38da5d2e957d174afbe9fbc29b265ccc59bf7c0a..b4cff865dfe642d73dbed35df8f2ebbd72703b55 100644
--- a/src/uncategorized/seIndependenceDay.tw
+++ b/src/uncategorized/seIndependenceDay.tw
@@ -270,12 +270,12 @@ In the Free Cities, Independence Day falls on the day when the Free City achieve
 			You rhapsodize about how wonderful sex with a tight young girl is, and encourage citizens who haven't done so to give it a try.
 		<</if>>
 	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
- 		<<if $arcologies[0].FSMaturityPreferentialist >= 90>>
+		<<if $arcologies[0].FSMaturityPreferentialist >= 90>>
 			You almost lose track of time rhapsodizing about mature women, but it's not like your citizens ever tire of the subject.
- 		<<elseif $arcologies[0].FSMaturityPreferentialist >= 40>>
+		<<elseif $arcologies[0].FSMaturityPreferentialist >= 40>>
 			You rhapsodize about how wonderful sex with a mature woman is, and encourage citizens who haven't done so to give it a try.
- 		<</if>>
- 	<</if>>
+		<</if>>
+	<</if>>
 	<<if $arcologies[0].FSRepopulationFocus != "unset">>
 		<<if $arcologies[0].FSRepopulationFocus >= 90>>
 			You rhapsodize on the wonderful display of pregnancies you see daily, and affirm that the arcology will continue to be a bastion of the future.
diff --git a/src/uncategorized/seNicaeaAnnouncement.tw b/src/uncategorized/seNicaeaAnnouncement.tw
index acac9dad07c85174e928f17d596e8a5b4c60af0c..c0ccb72e8c99101894648d893b2e88b9fc5a2e2f 100644
--- a/src/uncategorized/seNicaeaAnnouncement.tw
+++ b/src/uncategorized/seNicaeaAnnouncement.tw
@@ -35,7 +35,7 @@ Hosting a new religion's first synod will be expensive and time-consuming, but w
 	<<else>>
 		"Wonderful," says the evangelistic lady slaveowner. She orders that the newly consecrated slave approach her, and ends the call.
 	<</if>>
-	You have a tremendous amount of work to do, and not much time to do it. You immediately set aside a sizeable sum as an initial budget for the event itself. The first major decision you'll need to make about the council is who to invite. As one of Chattel Religionism's most prominent figures, you have a good idea of who you'd have to include to ensure that the council's agreements have as much weight as possible; $assistantName immediately begins collating background information on potential attendees, to assist you further.
+	You have a tremendous amount of work to do, and not much time to do it. You immediately set aside a sizable sum as an initial budget for the event itself. The first major decision you'll need to make about the council is who to invite. As one of Chattel Religionism's most prominent figures, you have a good idea of who you'd have to include to ensure that the council's agreements have as much weight as possible; $assistantName immediately begins collating background information on potential attendees, to assist you further.
 	<<set $nicaeaInvolvement = 1, $nicaeaPower += 1, $nicaeaInfluence = 1, $nicaeaName = "Council of " + $arcologies[0].name, $cash -= 10000>>
 	<</replace>>
 <</link>> //This will cost <<print cashFormat(10000)>>, and influencing the outcome will likely require further investment//
diff --git a/src/uncategorized/seNonlethalPit.tw b/src/uncategorized/seNonlethalPit.tw
index 22e78c6f3d56c0ec05d1c5f503108052f80fa49c..870da67d4a10e6388624697f16679c2dd7945e4b 100644
--- a/src/uncategorized/seNonlethalPit.tw
+++ b/src/uncategorized/seNonlethalPit.tw
@@ -1004,7 +1004,7 @@
 	<<if $pitBG == 0 || ($Bodyguard.ID != _loser.ID)>>
 		<<set $fighterIDs.push(_loser.ID)>>
 	<</if>>
-<<else>>	/*if an animal is using the slave*/
+<<else>> /*if an animal is using the slave*/
 	<<set $activeSlave = _fighterOne>>
 
 	<<if canDoVaginal($activeSlave)>>
diff --git a/src/uncategorized/seRaiding.tw b/src/uncategorized/seRaiding.tw
index e7dbef613a1455f561a137b077787f3c12d833ff..c0162be8dfb40036e3fab8de938e882c4d541c99 100644
--- a/src/uncategorized/seRaiding.tw
+++ b/src/uncategorized/seRaiding.tw
@@ -6,7 +6,7 @@ The leader of your $mercenariesTitle has contacted you from the world outside yo
 <<if $SF.Toggle && $SF.Active >= 1 && (($SFUnit.Satellite >= 1 && $SatLaunched > 0) || $SFUnit.SpacePlane >= 1)>>
 	By having access to the use of $SF.Lower's
 	<<if $SFUnit.Satellite >= 1 && $SatLaunched > 0>>
-		 satellite
+		satellite
 	<</if>>
 	<<if $SFUnit.SpacePlane >= 1>>
 		space plane
diff --git a/src/uncategorized/shops.tw b/src/uncategorized/shops.tw
index 164c7ed81cbe137b42ee519e048e1856322d8c09..dcbe2327ad3b8ccddf939b816a8a4761f883a5d6 100644
--- a/src/uncategorized/shops.tw
+++ b/src/uncategorized/shops.tw
@@ -37,7 +37,7 @@ This is a section of the promenade
 	dedicated to Maturity Preferentialism. It's not immediately apparent, though the stores here offer fashions that are obviously designed to flatter mature women, and anti-aging products of all kinds are prominently displayed. What there are, though, are quite a number of pretty, scantily clad female citizens here, obviously retired from sexual slavery and looking to slake their still trained libidos with any handsome fellow citizen interested.
 	<span id="result"><<link "Hook up with a MILF">><<replace "#result">>Many of them recognize you, and it's immediately apparent that you have your choice of pretty much every retired slave present. You select the prettiest and make out with her for a while, among many admirers, until you feel like bringing her over to a nearby bench and doing her. <<if $PC.dick == 0>>She's as eager as a teenager to have a lesbian experience in public, and can't stop giggling as you fuck.<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>Like many recently retired slaves in your arcology, she's gotten pregnant as a free woman, and it's supercharged her sex drive. No matter what you do to her, she just wants more.<<elseif $arcologies[0].FSGenderRadicalist != "unset">>She's got a big dick, and clearly has close friends among the other recently retired girls, but is very willing to be your bottom, especially in public.<<else>>She was horny to begin with, but the foreplay and the naughtiness of doing it out in public has her as eager as a teenager, and she goes wild.<</if>><</replace>><</link>></span>
 <<case "Slimness Enthusiast">>
-	dedicated to Slimness Enthusiasm. The shops here are quite varied. Some, like the tailors, only betray their focus on slim slaves by their selections of lingerie for petite breasts and trim hips. There are a large number of contract slave exercisers and slave dieticians, since many citizens who can afford a slave need assistance there.
+	dedicated to Slimness Enthusiasm. The shops here are quite varied. Some, like the tailors, only betray their focus on slim slaves by their selections of lingerie for petite breasts and trim hips. There are a large number of contract slave exercisers and slave dietitians, since many citizens who can afford a slave need assistance there.
 	<span id="result"><<link "Tour the trainers">><<replace "#result">>You decide to put in an appearance and look around the trainers. They're very eager to show you around, of course, and have you seen looking around; your expertise in keeping slaves slender is well known. The most inspiring sight you're shown is a long row of slaves on treadmills, running as fast as their individual fitness can support. They do this nude, since none of them have boobs big enough to require support, offering the sight of a long row of cute butts covered in a sheen of feminine sweat.<</replace>><</link>></span>
 <<case "Asset Expansionist">>
 	dedicated to Asset Expansionism. The sector's focus is unmissable, even in the clothes stores. Many of the bras on offer look like a cross between an engineering marvel and a bad joke, and there are dresses that look like parachutes when they aren't on a mannequin or worn by a slave salesgirl. Then there's the crane store.
diff --git a/src/uncategorized/slaveAssignmentsReport.tw b/src/uncategorized/slaveAssignmentsReport.tw
index ec39a886a71c731a736b961898fa63956faa905e..79e9389ba35342d10a9e1c04c3d977764fc69fc2 100644
--- a/src/uncategorized/slaveAssignmentsReport.tw
+++ b/src/uncategorized/slaveAssignmentsReport.tw
@@ -592,16 +592,16 @@
 			<br><br>
 			/** Old code: <<= '<div id="button-' + _str + '" class="unStaffed">' + _facSubArr[1] + ' is currently unstaffed</div>'>> */
 		<<else>>
-		<<if _facSubArr[1] == "Rules Assistant">>
-			<<= '<button type="button"' + _disTxt + ' id="button-' + _str + '" class="buttonBar' + _accText + '" data-after="' + '">' + _facSubArr[1] + ' Report</button>'>> /** Yes, display the bar with information */
-		<<else>>
-		   	 <<= '<button type="button"' + _disTxt + ' id="button-' + _str + '" class="buttonBar' + _accText + '" data-after="' + _facSubArr[3] + ' slaves in ' + _facSubArr[1] + '">' + _facSubArr[1] + ' Report</button>'>> /** Yes, display the bar with information */
+			<<if _facSubArr[1] == "Rules Assistant">>
+				<<= '<button type="button"' + _disTxt + ' id="button-' + _str + '" class="buttonBar' + _accText + '" data-after="' + '">' + _facSubArr[1] + ' Report</button>'>> /** Yes, display the bar with information */
+			<<else>>
+				<<= '<button type="button"' + _disTxt + ' id="button-' + _str + '" class="buttonBar' + _accText + '" data-after="' + _facSubArr[3] + ' slaves in ' + _facSubArr[1] + '">' + _facSubArr[1] + ' Report</button>'>> /** Yes, display the bar with information */
 			<</if>>
-		   <<if $useAccordion == 0>>
+			<<if $useAccordion == 0>>
 				<br>
 				<<include `_facSubArr[0]`>> /** not using accordion -- just include the report under the disabled button above */
 				<br>
-		   <</if>>
+			<</if>>
 		<</if>>
 		<div class="accHidden">
 			<<if $useAccordion == 1>>
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index 0325fc9b2bebf95336073eef77ece7e5d86b27a3..b180b3a89870bfd9b57dd6c03c0f7ed96590d138 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -847,7 +847,7 @@
 	<</if>>
 	| 	<<link "Succubus costume">><<set $activeSlave.clothes = "a succubus outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>>
 	<<if isItemAccessible("nice business attire")>>
-		|	 <<link "Suit (nice)">><<set $activeSlave.clothes = "nice business attire",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>>
+		| 	<<link "Suit (nice)">><<set $activeSlave.clothes = "nice business attire",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>>
 	<</if>>
 	| 	<<link "Suit (slutty)">><<set $activeSlave.clothes = "slutty business attire",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>>
 	<<if isItemAccessible("a sweater and cutoffs")>>
@@ -949,7 +949,7 @@
 	| <<link "Silken ribbon">><<set $activeSlave.collar = "silk ribbon">><<replace "#collar">>$activeSlave.collar<</replace>><</link>>
 	| <<link "Heavy gold">><<set $activeSlave.collar = "heavy gold">><<replace "#collar">>$activeSlave.collar<</replace>><</link>>
 	| <<link "Pretty jewelry">><<set $activeSlave.collar = "pretty jewelry">><<replace "#collar">>$activeSlave.collar<</replace>><</link>>
-	 <<if ($seeAge != 0)>>
+	<<if ($seeAge != 0)>>
 		| <<link "Nice retirement counter">><<set $activeSlave.collar = "nice retirement counter">><<replace "#collar">>$activeSlave.collar<</replace>><</link>>
 	<</if>>
 	| <<link "Bell">><<set $activeSlave.collar = "bell collar">><<replace "#collar">>$activeSlave.collar<</replace>><</link>>
diff --git a/src/uncategorized/slaveShelter.tw b/src/uncategorized/slaveShelter.tw
index d1970ba81f61ecc14dd4a52cf0001587c2ad3eba..758ef6a40973a0738da0c677d6e9256166f91c27 100644
--- a/src/uncategorized/slaveShelter.tw
+++ b/src/uncategorized/slaveShelter.tw
@@ -72,8 +72,8 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.behavioralFlaw = either("odd", "hates men", "hates women")>>
 	<<set $shelterSlave.sexualFlaw = either("hates anal", "hates oral", "hates penetration", "apathetic")>>
 <<case "blind">>
- 	<<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>>
- 	<<set $activeSlaveOneTimeMaxAge = 22>>
+	<<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>>
+	<<set $activeSlaveOneTimeMaxAge = 22>>
 	<<set $oneTimeDisableDisability = 1>>
 	<<include "Generate New Slave">>
 	<<set $shelterSlave = $activeSlave>>
@@ -89,8 +89,8 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.sexualFlaw = "hates oral">>
 	<<set $shelterSlave.canRecruit = 0>>
 <<case "deaf">>
- 	<<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>>
- 	<<set $activeSlaveOneTimeMaxAge = 22>>
+	<<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>>
+	<<set $activeSlaveOneTimeMaxAge = 22>>
 	<<set $oneTimeDisableDisability = 1>>
 	<<include "Generate New Slave">>
 	<<set $shelterSlave = $activeSlave>>
@@ -104,8 +104,8 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.sexualFlaw = "hates oral">>
 	<<set $shelterSlave.canRecruit = 0>>
 <<case "broken womb">>
- 	<<set $activeSlaveOneTimeMinAge = 6>>
- 	<<set $activeSlaveOneTimeMaxAge = 22>>
+	<<set $activeSlaveOneTimeMinAge = 6>>
+	<<set $activeSlaveOneTimeMaxAge = 22>>
 	<<set $oneTimeDisableDisability = 1>>
 	<<include "Generate XX Slave">>
 	<<set $shelterSlave = $activeSlave>>
diff --git a/src/uncategorized/slaveSummary.tw b/src/uncategorized/slaveSummary.tw
index 9ec2d94c981f6cf6f99101b6f6054888361c11e3..29b846d728a56adb786b5050f56c441aa364625e 100644
--- a/src/uncategorized/slaveSummary.tw
+++ b/src/uncategorized/slaveSummary.tw
@@ -330,7 +330,7 @@
 	<<if (_Slave.breedingMark != 1 || $propOutcome == 0)>>
 	<<if (_Slave.devotion > 50) || ((_Slave.devotion >= -50) && (_Slave.trust < -20)) || (_Slave.trust < -50) || (_Slave.trust > 50)>>
 		<br style="clear:both" /><<if $lineSeparations == 0>><br><<else>><hr style="margin:0"><</if>><<if ($seeImages == 1) && ($seeSummaryImages == 1)>><div class="imageRef smlImg"><<SlaveArt _Slave 1>></div><</if>>
- 		[[_slaveName|Slave Interact][$activeSlave = $slaves[_ssi]]]
+		[[_slaveName|Slave Interact][$activeSlave = $slaves[_ssi]]]
 	<<else>>
 		<br>//_Slave.slaveName must be either more fearful of you or devoted to you//
 		<<continue>>
@@ -375,7 +375,7 @@
 	<<if (_Slave.devotion >= -20) || ((_Slave.devotion >= -50) && (_Slave.trust < -20)) || (_Slave.trust < -50)>>
 		<<if (_Slave.intelligenceImplant < 30) || (_Slave.voice != 0 && _Slave.accent+$schoolroomUpgradeLanguage > 2) || (_Slave.oralSkill <= 10+$schoolroomUpgradeSkills*20) || (_Slave.whoreSkill <= 10+$schoolroomUpgradeSkills*20) || (_Slave.entertainSkill <= 10+$schoolroomUpgradeSkills*20) || (_Slave.analSkill < 10+$schoolroomUpgradeSkills*20) || ((_Slave.vagina >= 0) && (_Slave.vaginalSkill < 10+$schoolroomUpgradeSkills*20))>>
 			<br style="clear:both" /><<if $lineSeparations == 0>><br><<else>><hr style="margin:0"><</if>><<if ($seeImages == 1) && ($seeSummaryImages == 1)>><div class="imageRef smlImg"><<SlaveArt _Slave 1>></div><</if>>
- 			[[_slaveName|Slave Interact][$activeSlave = $slaves[_ssi]]]
+			[[_slaveName|Slave Interact][$activeSlave = $slaves[_ssi]]]
 		<<else>>
 			<br>//_Slave.slaveName already has a basic education//
 			<<continue>>
diff --git a/src/uncategorized/spa.tw b/src/uncategorized/spa.tw
index 53d72b5ec081414cc85d3141ef41e3661fad8f99..0f90e9373b11c6aa6ac0109d0e90b6bb11a5e80e 100644
--- a/src/uncategorized/spa.tw
+++ b/src/uncategorized/spa.tw
@@ -138,7 +138,7 @@ $spaNameCaps
 <</if>>
 
 <<if $spaSlaves > 0>>
-	 | <<link "''Prise a slave out of $spaName''">>
+	| <<link "''Prise a slave out of $spaName''">>
 		<<replace #ComingGoing>>
 			<<spaAssignmentFilter>>
 			<<set $Flag = 1>>
diff --git a/src/uncategorized/surgeryDegradation.tw b/src/uncategorized/surgeryDegradation.tw
index 44349661b0da63cc2fb664594ea3f3101ca26375..437a2ada7b229d3695c6ebcbb91e09ba59057a19 100644
--- a/src/uncategorized/surgeryDegradation.tw
+++ b/src/uncategorized/surgeryDegradation.tw
@@ -47,7 +47,7 @@
 			<<set $activeSlave.nipples = "huge">>
 		<</if>>
 		<<if $activeSlave.fetish == "mindbroken">>
-			 As with all invasive surgery @@.red;$his health has been affected.@@
+			As with all invasive surgery @@.red;$his health has been affected.@@
 		<<elseif ($activeSlave.sexualFlaw == "breast growth")>>
 			<<if canSee($activeSlave)>>$He can hardly believe what $he is seeing. The immense bust $he managed to grow has been all but stripped from $him. $His face fills with disbelief as $his flatness dawns on $him<<else>>$He immediately notices the lack of an immense weight hanging off $his chest. $His face fills with disbelief as $his flatness dawns on $him<</if>>. <<if $activeSlave.amp != 1>>$His hands immediately dart to grope $his tits, but $he only ends up grabbing air. $His face twitches, $his mind unable to comprehend why this has happened to $him. $His hands fall to $his sides as $his will breaks.<<else>> $He tries to squirm, and finds $he is no longer pinned by $his tits. $His face twitches, $his mind unable to comprehend why this has happened to $him. $He sobs once as $his will to go on breaks apart.<</if>> $He loved $his enormous breasts, and now that they are gone, $he has nothing to live for. @@.red;Your apparent theft of $his obsession has broken $his mind@@. As with all invasive surgery @@.red;$his health has been affected.@@
 			<<set $activeSlave.trust = -50, $activeSlave.devotion = -50>>
diff --git a/src/uncategorized/toychest.tw b/src/uncategorized/toychest.tw
index f7e2acf4fe4a161b68685db99bd69e2e49b2d8cb..559147c9d7dc2954ca619f3d2ff1331291fc7c24 100644
--- a/src/uncategorized/toychest.tw
+++ b/src/uncategorized/toychest.tw
@@ -208,7 +208,7 @@
 	<<case "a nice pony outfit" "a slutty pony outfit">>
 		Her bondage pony outfit reinforces the atmosphere of submission to your will.
 	<<case "a sports bra" "sport shorts and a t-shirt" "sport shorts and a sports bra" "sport shorts">>
-		Her athletlic clothing gives the office a more youthful vibe.
+		Her athletic clothing gives the office a more youthful vibe.
 	<<case "a skimpy loincloth">>
 		Her skimpy loincloth gives the office a more barbaric and raw atmosphere.
 	<<default>>
diff --git a/src/uncategorized/wardrobe.tw b/src/uncategorized/wardrobe.tw
index 81ff69161206be3a9009ed663ebc49d8c368319a..6a1ad029a756c64df55689777ab60a1064485bfa 100644
--- a/src/uncategorized/wardrobe.tw
+++ b/src/uncategorized/wardrobe.tw
@@ -205,7 +205,7 @@ The room containing all the clothes and accessories you have available to dress
 
 <br>
 <<if !isItemAccessible("boyshorts")>>
-	[[Order a shipment of undergarmets|Wardrobe][$cash -= 5000, $clothesBoughtUnderwear = 1]]
+	[[Order a shipment of undergarments|Wardrobe][$cash -= 5000, $clothesBoughtUnderwear = 1]]
 	//Costs <<print cashFormat(5000)>>//
 <<else>>
 	You are well stocked with underwear.
diff --git a/src/utility/birthWidgets.tw b/src/utility/birthWidgets.tw
index 06c832b580b1aae3cccaaf42f180d6d0f0b6b45e..f1c9c1c7a776223abeff8d51c90f62dbcb0e86fc 100644
--- a/src/utility/birthWidgets.tw
+++ b/src/utility/birthWidgets.tw
@@ -532,7 +532,7 @@
 		<<set $humiliation = 1>>
 
 <<case "take classes">>
-	 Or $he would have been, had <<if $assistantName == "your personal assistant">>your personal assistant<<else>>$assistantName<</if>> allowed it. Since $he can't leave the lesson, $he tries $his best to hold back the upcoming birth, not without your assistant noticing. As punishment for poor planning, $he is forbidden from leaving. Additionally, $his birth will be turned into a live broadcast.
+	Or $he would have been, had <<if $assistantName == "your personal assistant">>your personal assistant<<else>>$assistantName<</if>> allowed it. Since $he can't leave the lesson, $he tries $his best to hold back the upcoming birth, not without your assistant noticing. As punishment for poor planning, $he is forbidden from leaving. Additionally, $his birth will be turned into a live broadcast.
 	<<set $humiliation = 1>>
 	<<ClothingBirth>>
 	Exhausted from the birth, $he is permitted a short break as $his child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> removed to be cleaned up before the lesson is continued.
@@ -618,11 +618,11 @@
 		<<ClothingBirth>>
 		$He gathers $his newborn<<if $slaves[$i].pregType > 1>>s<</if>> and recovers $his strength before finding a servant to give $his child<<if $slaves[$i].pregType > 1>>ren<</if>> to. $He resumes $his previous task, feeling much lighter.
 	<<else>>
-		 <<if _birthScene < 40>>
+		<<if _birthScene < 40>>
 			While walking through the penthouse on the way to $his next assignment, $slaves[$i].slaveName's water breaks. Unable to reach the prepared birthing room in time, $he finds a secluded nook to give birth in.
 			<<ClothingBirth>>
 			$He gathers $his newborn<<if $slaves[$i].pregType > 1>>s<</if>> and recovers $his strength before finding a servant to give $his child<<if $slaves[$i].pregType > 1>>ren<</if>> to before hurrying to $his assignment.
-		 <<elseif _birthScene > 66 && $slaves[$i].rivalry == 3 && isSlaveAvailable($slaves[_bw]) && canWalk($slaves[_bw])>>
+		<<elseif _birthScene > 66 && $slaves[$i].rivalry == 3 && isSlaveAvailable($slaves[_bw]) && canWalk($slaves[_bw])>>
 			While hustling through the penthouse on $his way to give birth, $slaves[$i].slaveName finds $his path blocked by $slaves[_bw].slaveName. Seeing $his distress brings a grin to _his2 face. _He2 quickly rushes the laboring $slaves[$i].slaveName, circling around behind $him and hooking $him under the arms. _He2 forces the poor girl into the cafeteria and holds $him in place, leaving $him with no other option than to begin giving birth in front of $his audience.
 			<<set $humiliation = 1>>
 			<<ClothingBirth>>
@@ -1227,12 +1227,12 @@ Feeling childbirth approaching, $slaves[$i].slaveName is helped to $his prepared
 <<switch $slaves[$i].assignment>>
 
 <<case "work a glory hole">>
-	 Since $he is unable to leave $his box, $he doesn't have far to go. $He quickly finishes the waiting dick before shifting $himself into a slightly, though not by much, more comfortable position. $He begins laboring on $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. However, $he soon finds that $he is incapable of actually giving birth to $his child<<if $slaves[$i].pregType > 1>>ren<</if>>. As blood begins to seep from $his nethers, $he desperately tries to get anyone's attention.
+	Since $he is unable to leave $his box, $he doesn't have far to go. $He quickly finishes the waiting dick before shifting $himself into a slightly, though not by much, more comfortable position. $He begins laboring on $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. However, $he soon finds that $he is incapable of actually giving birth to $his child<<if $slaves[$i].pregType > 1>>ren<</if>>. As blood begins to seep from $his nethers, $he desperately tries to get anyone's attention.
 	<br><br>
 	Only after several complaints of a non-functional glory hole is $he checked up on. $His gravid corpse, <<if $slaves[$i].mpreg == 1>>asshole<<else>>vagina<</if>> agape, is all that remains of the unfortunate $slaves[$i].slaveName.
 
 <<case "stay confined">>
-	 Since $he is locked in a cell, $he doesn't have far to go. Reluctantly, $he begins laboring on $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. However, $he soon finds that $he is incapable of actually giving birth to $his child<<if $slaves[$i].pregType > 1>>ren<</if>>. As blood begins to seep from $his nethers, $he desperately tries to get anyone's attention.
+	Since $he is locked in a cell, $he doesn't have far to go. Reluctantly, $he begins laboring on $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. However, $he soon finds that $he is incapable of actually giving birth to $his child<<if $slaves[$i].pregType > 1>>ren<</if>>. As blood begins to seep from $his nethers, $he desperately tries to get anyone's attention.
 	<br><br>
 	Only once meal time comes around and food shoved into $his cell does anyone think something is amiss. When the food isn't desperately snatched away, $his cell is opened and $he checked up on. $His gravid corpse, propped up in the corner, <<if $slaves[$i].mpreg == 1>>asshole<<else>>vagina<</if>> agape, is all that remains of the unfortunate $slaves[$i].slaveName.
 
@@ -1240,7 +1240,7 @@ Feeling childbirth approaching, $slaves[$i].slaveName is helped to $his prepared
 	Or $he would have been, if $he weren't locked in an arcade cabinet. A gush of liquid pours from the $slaves[$i].slaveName's cunt, followed by the attendant in charge of the arcade hanging an "out of order" sign on $his exposed rear. While $his mouth is filled with a customer's dick, $his body instinctively attempts laboring on $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. However, $he soon finds that $he is incapable of actually giving birth to $his child<<if $slaves[$i].pregType > 1>>ren<</if>>. As blood begins to seep from $his nethers, $he desperately tries to get anyone's attention. The attendant rushes to $his aid, but fails to get the cabinet open in time to save $slaves[$i].slaveName. $He and $his child<<if $slaves[$i].pregType > 1>>ren<</if>> were an unfortunate loss.
 
 <<case "be confined in the cellblock">>
-	 Since $he is locked in a cell, $he doesn't have far to go. Reluctantly, $he begins laboring on $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. However, $he soon finds that $he is incapable of actually giving birth to $his child<<if $slaves[$i].pregType > 1>>ren<</if>>. As blood begins to seep from $his nethers, $he desperately tries to get anyone's attention.
+	Since $he is locked in a cell, $he doesn't have far to go. Reluctantly, $he begins laboring on $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. However, $he soon finds that $he is incapable of actually giving birth to $his child<<if $slaves[$i].pregType > 1>>ren<</if>>. As blood begins to seep from $his nethers, $he desperately tries to get anyone's attention.
 	<br><br>
 	Only once meal time comes around and food shoved into $his cell does anyone think something is amiss. When the food isn't desperately snatched away, $his cell is opened and $he checked up on. $His gravid corpse, propped up in the corner, <<if $slaves[$i].mpreg == 1>>asshole<<else>>vagina<</if>> agape, is all that remains of the unfortunate $slaves[$i].slaveName.
 
@@ -1505,7 +1505,7 @@ Feeling childbirth approaching, $slaves[$i].slaveName is helped to $his prepared
 	<<if $slaves[$i].fetish == "mindbroken">>
 		Instinctively, $he begins to push out <<if $slaves[$i].broodmother > 0>><<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby<<else>>$his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>><</if>>, indifferent to the obvious wetness forming <<if $slaves[$i].mpreg == 1>>under $his rear<<else>>over $his crotch<</if>>.
 	<<else>>
-	 	Quickly $he spreads $his legs apart and begins pushing out <<if $slaves[$i].broodmother > 0>><<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby<<else>>$his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>><</if>>. $He can't hide what's going on with how skimpy the huipil is<<if $slaves[$i].fetish == "humiliation">> but that only makes it more exciting<<else>> so $he bears with it<</if>>.
+		Quickly $he spreads $his legs apart and begins pushing out <<if $slaves[$i].broodmother > 0>><<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby<<else>>$his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>><</if>>. $He can't hide what's going on with how skimpy the huipil is<<if $slaves[$i].fetish == "humiliation">> but that only makes it more exciting<<else>> so $he bears with it<</if>>.
 	<</if>>
 
 <<case "a bunny outfit">>
diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw
index 01304d20e110edd27077d5fe82ff7cf506029cc8..324d24ca9d17b269cc9334ac4aabde0053e03fd3 100644
--- a/src/utility/descriptionWidgetsFlesh.tw
+++ b/src/utility/descriptionWidgetsFlesh.tw
@@ -1271,7 +1271,7 @@ $His
 	<<case "partially inverted">>
 		_nipColor, partially inverted nipples are causing $him some discomfort as the milkers haul against them.
 	<<case "inverted">>
-		 _nipColor, inverted nipples are being kept painfully protruded by the milkers' powerful suction.
+		_nipColor, inverted nipples are being kept painfully protruded by the milkers' powerful suction.
 	<<case "huge">>
 		huge _nipColor nipples fill the milkers completely.
 	<<case "fuckable">>
@@ -3030,7 +3030,7 @@ $He's got a
 			<<else>>
 				pussy is concealed by $his beautiful halter top dress.
 			<</if>>
-		 <<case "a ball gown">>
+		<<case "a ball gown">>
 			$activeSlave.slaveName's
 			<<if $activeSlave.dick > 3>>
 				cock tents the front of $his fabulous silken ball gown.
@@ -4927,14 +4927,14 @@ $He's got a
 				<<else>>
 					$His clit is quite large.
 				<</if>>
-				 $His lack of hood makes it even more prominent.
+				$His lack of hood makes it even more prominent.
 			<<elseif ($activeSlave.clit == 2)>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit is huge and visibly erect.
 				<<else>>
 					$His clit is huge.
 				<</if>>
-				 Lack of hood combined with its size means $he can't wear any clothes without being constantly stimulated.
+				Lack of hood combined with its size means $he can't wear any clothes without being constantly stimulated.
 			<<elseif ($activeSlave.clit == 3)>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit is enormous, and since it's erect with arousal, it juts out proudly.
@@ -4961,35 +4961,35 @@ $He's got a
 				<<else>>
 					$His clit is quite large.
 				<</if>>
-				 $His clitoral hood is stretched thin trying to cover it.
+				$His clitoral hood is stretched thin trying to cover it.
 			<<elseif ($activeSlave.clit == 2)>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit is huge and visibly erect.
 				<<else>>
 					$His clit is huge.
 				<</if>>
-				 $His small hood is no longer able to cover it completely and large part of $his clitoris is always exposed.
+				$His small hood is no longer able to cover it completely and large part of $his clitoris is always exposed.
 			<<elseif ($activeSlave.clit == 3)>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit is enormous, and since it's erect with arousal, it juts out proudly.
 				<<else>>
 					$His clit is enormous, almost a pseudophallus.
 				<</if>>
-				 $His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
+				$His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
 			<<elseif ($activeSlave.clit == 4)>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.
 				<<else>>
 					$His clit has reached the size of an average penis.
 				<</if>>
-				 $His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
+				$His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
 			<<else>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit is massive, having reached the size of a large penis. It is semi-erect since lack of erectile tissues means it can never become fully erect.
 				<<else>>
 					$His clit is massive, having reached the size of a large penis.
 				<</if>>
-				 $His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
+				$His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
 			<</if>>
 		<<elseif ($activeSlave.foreskin == 2)>>
 			<<if ($activeSlave.clit == 1)>>
@@ -4998,35 +4998,35 @@ $He's got a
 				<<else>>
 					$His clit is quite large.
 				<</if>>
-				 It is completely covered by its hood.
+				It is completely covered by its hood.
 			<<elseif ($activeSlave.clit == 2)>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit is huge and visibly erect.
 				<<else>>
 					$His clit is huge.
 				<</if>>
-				 Its hood is stretched thin trying to cover it.
+				Its hood is stretched thin trying to cover it.
 			<<elseif ($activeSlave.clit == 3)>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit is enormous, and since it's erect with arousal, it juts out proudly.
 				<<else>>
 					$His clit is enormous, almost a pseudophallus.
 				<</if>>
-				 It's large enough that the hood can cover only half of it.
+				It's large enough that the hood can cover only half of it.
 			<<elseif ($activeSlave.clit == 4)>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.
 				<<else>>
 					$His clit has reached the size of an average penis.
 				<</if>>
-				 $His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
+				$His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
 			<<else>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit is massive, having reached the size of a large penis. It is semi-erect since lack of erectile tissues means it can never become fully erect.
 				<<else>>
 					$His clit is massive, having reached the size of a large penis.
 				<</if>>
-				 $His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
+				$His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
 			<</if>>
 		<<elseif ($activeSlave.foreskin == 3)>>
 			<<if ($activeSlave.clit == 1)>>
@@ -5035,35 +5035,35 @@ $He's got a
 				<<else>>
 					$His clit is quite large.
 				<</if>>
-				 The hood covering it is quite large making stimulation difficult.
+				The hood covering it is quite large making stimulation difficult.
 			<<elseif ($activeSlave.clit == 2)>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit is huge and visibly erect.
 				<<else>>
 					$His clit is huge.
 				<</if>>
-				 $His large hood completely covers it.
+				$His large hood completely covers it.
 			<<elseif ($activeSlave.clit == 3)>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit is enormous, and since it's erect with arousal, it juts out proudly.
 				<<else>>
 					$His clit is enormous, almost a pseudophallus.
 				<</if>>
-				 $His large hood covers all but the tip of $his clit even when aroused.
+				$His large hood covers all but the tip of $his clit even when aroused.
 			<<elseif ($activeSlave.clit == 4)>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.
 				<<else>>
 					$His clit has reached the size of an average penis.
 				<</if>>
-				 Even $his large hood can't cover it, leaving over half of the clit exposed.
+				Even $his large hood can't cover it, leaving over half of the clit exposed.
 			<<else>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit is massive, having reached the size of a large penis. It is semi-erect since lack of erectile tissues means it can never become fully erect.
 				<<else>>
 					$His clit is massive, having reached the size of a large penis.
 				<</if>>
-				 $His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
+				$His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
 			<</if>>
 		<<else>>
 			<<if ($activeSlave.clit == 1)>>
@@ -5072,35 +5072,35 @@ $He's got a
 				<<else>>
 					$His clit is quite large.
 				<</if>>
-				 $His large thick hood covering it makes any stimulation difficult.
+				$His large thick hood covering it makes any stimulation difficult.
 			<<elseif ($activeSlave.clit == 2)>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit is huge and visibly erect.
 				<<else>>
 					$His clit is huge.
 				<</if>>
-				 $His large thick hood covering it makes any stimulation difficult.
+				$His large thick hood covering it makes any stimulation difficult.
 			<<elseif ($activeSlave.clit == 3)>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit is enormous, and since it's erect with arousal, it juts out proudly.
 				<<else>>
 					$His clit is enormous, almost a pseudophallus.
 				<</if>>
-				 Matching its size is the thick hood covering it.
+				Matching its size is the thick hood covering it.
 			<<elseif ($activeSlave.clit == 4)>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.
 				<<else>>
 					$His clit has reached the size of an average penis.
 				<</if>>
-				 $His large hood covering over half of it adds to its penis-like appearance.
+				$His large hood covering over half of it adds to its penis-like appearance.
 			<<else>>
 				<<if ($activeSlave.devotion > 50)>>
 					$His clit is massive, having reached the size of a large penis. It is semi-erect, since lack of erectile tissues means it can never reach full erection.
 				<<else>>
 					$His clit is massive, having reached the size of a large penis.
 				<</if>>
-				 Not even its large hood can contain it, leaving over half of it exposed.
+				Not even its large hood can contain it, leaving over half of it exposed.
 			<</if>>
 		<</if>>
 	<</if>>
@@ -16527,7 +16527,7 @@ $He has
 			$activeSlave.actualAge years old<<if $showAgeDetail == 1 && ($seeAge != 0)>>; <<if $activeSlave.birthWeek == 51>>$his birthday is next week<<else>>$his birthday is in <<print 52-$activeSlave.birthWeek>> weeks<</if>><</if>>.
 		<</if>>
 	<<elseif $activeSlave.actualAge < 20>>
-	 	 in $his final year as a teenager at age 19<<if $showAgeDetail == 1 && ($seeAge != 0)>>; <<if $activeSlave.birthWeek == 51>>$his birthday is next week<<else>>$his birthday is in <<print 52-$activeSlave.birthWeek>> weeks<</if>><</if>>.
+		in $his final year as a teenager at age 19<<if $showAgeDetail == 1 && ($seeAge != 0)>>; <<if $activeSlave.birthWeek == 51>>$his birthday is next week<<else>>$his birthday is in <<print 52-$activeSlave.birthWeek>> weeks<</if>><</if>>.
 	<<elseif $activeSlave.actualAge < 26>>
 		a young woman,
 		<<if $showAgeDetail == 1>>
diff --git a/src/utility/descriptionWidgetsPiercings.tw b/src/utility/descriptionWidgetsPiercings.tw
index 48d6f6977ebb20869018f73a2cecd77adb230d8b..38aef64662ee067480a01eca7013ad3b3c645232 100644
--- a/src/utility/descriptionWidgetsPiercings.tw
+++ b/src/utility/descriptionWidgetsPiercings.tw
@@ -443,7 +443,7 @@ $He has a corset piercing, a ladder of steel rings running up each side of $his
 
 <<case "a mini dress">>
 	these are clipped into the mini dress covering them, making it almost a part of $his body.
- 	 <<if $activeSlave.devotion > 50>>
+	<<if $activeSlave.devotion > 50>>
 		$He couldn't remove it, even if $he wanted to.
 	<<elseif $activeSlave.devotion >= -20>>
 		$He couldn't remove it, even if $he were inclined to try.
diff --git a/src/utility/descriptionWidgetsStyle.tw b/src/utility/descriptionWidgetsStyle.tw
index ef8cd936145ad220596243d4f110980a16ece7ee..67e7394057e60a31cf4f9e17e59798c9af7cad77 100644
--- a/src/utility/descriptionWidgetsStyle.tw
+++ b/src/utility/descriptionWidgetsStyle.tw
@@ -464,7 +464,7 @@ $activeSlave.slaveName is
 	<</if>>
 
 <<case "a bunny outfit">>
- 	 a strapless satin teddy with a beribboned rosette over $his left hip, printed with $his name.
+	a strapless satin teddy with a beribboned rosette over $his left hip, printed with $his name.
 	<<if ($activeSlave.amp != 1)>>
 		The ensemble includes sheer black hose $he wears with
 		<<footwearDescription>>
@@ -3298,7 +3298,7 @@ $His
 <</widget>>
 
 <<widget "nailsDescription">>
-	 <<if $activeSlave.amp == 1>>
+	<<if $activeSlave.amp == 1>>
 		$He has no hands, and thus, no nails.
 	<<elseif $activeSlave.nails == 1>>
 		$His nails are long and elegant.
@@ -5457,7 +5457,7 @@ $His
 			<<else>>
 				tight
 			<</if>>
-			 butthole.
+			butthole.
 		<</if>>
 	<<case "a cheerleader outfit">>
 		If $he bends over even slightly, the hem of $his skirt rides up to reveal $his
diff --git a/src/utility/extendedFamilyWidgets.tw b/src/utility/extendedFamilyWidgets.tw
index c647a6e65e8b51d6979f4c8b68237c5e47d49ba5..f20aa4b9af45111edc55d5806f5142939fa25ff1 100644
--- a/src/utility/extendedFamilyWidgets.tw
+++ b/src/utility/extendedFamilyWidgets.tw
@@ -334,15 +334,15 @@
 /*testtest uncle passage - determines how many uncles a slave has*/
 <<for $i = 0; $i < $slaves.length; $i++>>
 	<<if $slaves[$i].ID != $activeSlave.ID>>
-	<<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>>
-		<<for $j = 0; $j < $slaves.length; $j++>>
-			<<if $slaves[$j].genes == "XY">>
-			<<if areSisters($slaves[$j], $slaves[$i]) == 1 || areSisters($slaves[$j], $slaves[$i]) == 2>>
-				<<set $children.push($slaves[$j])>>
-			<</if>>
-			<</if>>
-		<</for>>
-	<</if>>
+		<<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>>
+			<<for $j = 0; $j < $slaves.length; $j++>>
+				<<if $slaves[$j].genes == "XY">>
+					<<if areSisters($slaves[$j], $slaves[$i]) == 1 || areSisters($slaves[$j], $slaves[$i]) == 2>>
+						<<set $children.push($slaves[$j])>>
+					<</if>>
+				<</if>>
+			<</for>>
+		<</if>>
 	<</if>>
 <</for>>
 <<if $children.length > 0>>
@@ -458,28 +458,28 @@
 <</for>>
 <<if $activeSlave.genes == "XY" && $children.length > 0>>
 	$He
-<<if $children.length > 2>>
-	is @@.lightgreen;your nephew along with
-	<<for $j = 0; $j < $children.length; $j++>>
-		<<if $j < $children.length-1>>
-			$children[$j].slaveName,
-		<<else>>
-			 and $children[$j].slaveName.@@
-		<</if>>
-	<</for>>
-<<elseif $children.length > 1>>
-	is @@.lightgreen;your nephew along with $children[0].slaveName.@@
-<<elseif $children.length > 0>>
-<<for $i = 0; $i < $slaves.length; $i++>>
-	<<if $slaves[$i].ID != $activeSlave.ID && $activeSlave.genes == "XY">>
-	<<if areSisters($slaves[$i], $PC) == 1 || areSisters($slaves[$i], $PC) == 2>>
-	<<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>>
-		is @@.lightgreen;your nephew.@@
-	<</if>>
-	<</if>>
+	<<if $children.length > 2>>
+		is @@.lightgreen;your nephew along with
+		<<for $j = 0; $j < $children.length; $j++>>
+			<<if $j < $children.length-1>>
+				$children[$j].slaveName,
+			<<else>>
+				and $children[$j].slaveName.@@
+			<</if>>
+		<</for>>
+	<<elseif $children.length > 1>>
+		is @@.lightgreen;your nephew along with $children[0].slaveName.@@
+	<<elseif $children.length > 0>>
+		<<for $i = 0; $i < $slaves.length; $i++>>
+			<<if $slaves[$i].ID != $activeSlave.ID && $activeSlave.genes == "XY">>
+				<<if areSisters($slaves[$i], $PC) == 1 || areSisters($slaves[$i], $PC) == 2>>
+					<<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>>
+						is @@.lightgreen;your nephew.@@
+					<</if>>
+				<</if>>
+			<</if>>
+		<</for>>
 	<</if>>
-<</for>>
-<</if>>
 <</if>>
 <<set $children = []>>