diff --git a/src/art/assistantArt.js b/src/art/assistantArt.js
index 1b8b1175ce1d15172092b0c9335f72a6bf931862..9588a5dcfdb7330c280e0a90acc7373966577683 100644
--- a/src/art/assistantArt.js
+++ b/src/art/assistantArt.js
@@ -8,7 +8,7 @@ window.assistantArt = function assistantArt(sizePlacement) {
 	const V = State.variables;
 	let fileName = "";
 
-	if (V.seeAvatar !== 1) {return;}
+	if (V.seeAvatar !== 1) { return; }
 
 	if (V.imageChoice === 0 || V.imageChoice === 1) {
 		if (V.imageChoice === 1) {
diff --git a/src/art/vector_revamp/vectorRevampedArtControl.js b/src/art/vector_revamp/vectorRevampedArtControl.js
index cd88ec52e2bbb7e562cdd0355f8cd7f706cab5b8..ac04a40c9e17caa7be2b7a3e8dd94e5f15e5f84c 100644
--- a/src/art/vector_revamp/vectorRevampedArtControl.js
+++ b/src/art/vector_revamp/vectorRevampedArtControl.js
@@ -34,26 +34,24 @@ class ArtStyleEntry {
 		this.name = name;
 	}
 
-	toString()
-	{
+	toString() {
 		let keys = Object.keys(this);
 		let styleArray = [];
-		if (keys !== null && keys !== undefined)
-		{
+		if (keys !== null && keys !== undefined) {
 			let styleObj = this;
 			keys.forEach(function(key) {
-				if(key !== "name") {
+				if (key !== "name") {
 					let value = styleObj[key];
-					styleArray.push(key + ":" + value);
+					styleArray.push(`${key}:${value}`);
 				}
 			});
 
-			let styleValue = styleArray.join(";") + ";";
+			let styleValue = `${styleArray.join(";")};`;
 
-			let cssDef = "{ " + styleValue + " }";	// not sure if there should be padding here
+			let cssDef = `{ ${styleValue} }`;	// not sure if there should be padding here
 
 			if (this.name.length > 0)
-				cssDef = "." + this.name + cssDef;
+				cssDef = `.${this.name}${cssDef}`;
 
 			return cssDef;
 		}
@@ -78,8 +76,7 @@ class ArtStyleControl {
 		let lipsColor = this.lips.fill;
 		let lipsOpacity = this.lips["fill-opacity"];
 
-		switch(this.artSlave.makeup)
-		{
+		switch (this.artSlave.makeup) {
 			case 1:
 				// Nice
 				lipsColor = "#ff69b4";
@@ -145,8 +142,7 @@ class ArtStyleControl {
 
 		let eyeLens = eyeColorSplit[0];
 
-		switch(eyeLens)
-		{
+		switch (eyeLens) {
 			case "demonic":
 				this.eyeball.fill = this.iris.fill;
 				break;
@@ -371,9 +367,9 @@ class ArtStyleControl {
 
 		let artDisplayClass = this.artDisplayClass;
 
-		stylesValues.push("." + artDisplayClass + " " + mainStyle.toString());
+		stylesValues.push(`.${artDisplayClass} ${mainStyle.toString()}`);
 		this.styles.forEach(function(style) {
-			stylesValues.push("." + artDisplayClass + " " + style.toString());
+			stylesValues.push(`.${artDisplayClass} ${style.toString()}`);
 		});
 
 		return stylesValues.join(" ");
@@ -396,23 +392,23 @@ class ClothingControl {
 				showHeadHighlight: true
 			},
 			styleSettings: {
-				skin: { fill: defaultOutfitColor },
-				arm: { fill: defaultOutfitColor },
-				penis: { fill: defaultOutfitColor },
-				legsSkin: { fill: defaultOutfitColor },
-				feetSkin: { fill: defaultOutfitColor },
-				torso: { fill: defaultOutfitColor },
-				buttSkin: { fill: defaultOutfitColor },
-				head: { fill: defaultOutfitColor },
-				neckSkin: { fill: defaultOutfitColor },
-				boob: { fill: defaultOutfitColor },
-				areola: { fill: areolaColor },
-				labia: { fill: areolaColor },
-				bellySkin: { fill: defaultOutfitColor },
-				bellyUpperSkin: { fill: defaultOutfitColor },
-				shoe: { fill: defaultOutfitColor },
-				labiaSkin: { fill: defaultOutfitColor },
-				lips: { fill: areolaColor }
+				skin: {fill: defaultOutfitColor},
+				arm: {fill: defaultOutfitColor},
+				penis: {fill: defaultOutfitColor},
+				legsSkin: {fill: defaultOutfitColor},
+				feetSkin: {fill: defaultOutfitColor},
+				torso: {fill: defaultOutfitColor},
+				buttSkin: {fill: defaultOutfitColor},
+				head: {fill: defaultOutfitColor},
+				neckSkin: {fill: defaultOutfitColor},
+				boob: {fill: defaultOutfitColor},
+				areola: {fill: areolaColor},
+				labia: {fill: areolaColor},
+				bellySkin: {fill: defaultOutfitColor},
+				bellyUpperSkin: {fill: defaultOutfitColor},
+				shoe: {fill: defaultOutfitColor},
+				labiaSkin: {fill: defaultOutfitColor},
+				lips: {fill: areolaColor}
 			}
 		};
 	}
@@ -429,9 +425,9 @@ class ClothingControl {
 				showNipplesPiercings: false
 			},
 			styleSettings: {
-				bellySkin: { fill: "#FFFFFF" },
-				bellyUpperSkin: { fill: "#FFFFFF" },
-				bellyDetails: { "fill-opacity": 0 }
+				bellySkin: {fill: "#FFFFFF"},
+				bellyUpperSkin: {fill: "#FFFFFF"},
+				bellyDetails: {"fill-opacity": 0}
 			}
 		};
 	}
@@ -442,8 +438,8 @@ class ClothingControl {
 				showBellyPiercings: false
 			},
 			styleSettings: {
-				bellySkin: { fill: "#FFFFFF" },
-				bellyDetails: { "fill-opacity": 0 }
+				bellySkin: {fill: "#FFFFFF"},
+				bellyDetails: {"fill-opacity": 0}
 			}
 		};
 	}
@@ -465,17 +461,17 @@ class ClothingControl {
 				showBellyPiercings: false
 			},
 			styleSettings: {
-				skin: { fill: defaultOutfitColor },
-				arm: { fill: defaultOutfitColor },
-				legsSkin: { fill: defaultOutfitColor },
-				feetSkin: { fill: defaultOutfitColor },
-				torso: { fill: defaultOutfitColor },
-				buttSkin: { fill: defaultOutfitColor },
-				head: { fill: defaultOutfitColor },
-				neckSkin: { fill: defaultOutfitColor },
-				bellySkin: { fill: defaultOutfitColor },
-				bellyUpperSkin: { fill: defaultOutfitColor },
-				shoe: { fill: defaultOutfitColor }
+				skin: {fill: defaultOutfitColor},
+				arm: {fill: defaultOutfitColor},
+				legsSkin: {fill: defaultOutfitColor},
+				feetSkin: {fill: defaultOutfitColor},
+				torso: {fill: defaultOutfitColor},
+				buttSkin: {fill: defaultOutfitColor},
+				head: {fill: defaultOutfitColor},
+				neckSkin: {fill: defaultOutfitColor},
+				bellySkin: {fill: defaultOutfitColor},
+				bellyUpperSkin: {fill: defaultOutfitColor},
+				shoe: {fill: defaultOutfitColor}
 			}
 		};
 	}
@@ -497,23 +493,23 @@ class ClothingControl {
 				showNipplesPiercings: false
 			},
 			styleSettings: {
-				skin: { fill: defaultOutfitColor },
-				scrotum: { fill: defaultOutfitColor },
-				arm: { fill: defaultOutfitColor },
-				penis: { fill: defaultOutfitColor },
-				legsSkin: { fill: defaultOutfitColor },
-				feetSkin: { fill: defaultOutfitColor },
-				torso: { fill: defaultOutfitColor },
-				buttSkin: { fill: defaultOutfitColor },
-
-				neckSkin: { fill: defaultOutfitColor },
-				boob: { fill: defaultOutfitColor },
-				areola: { fill: areolaColor },
-				labia: { fill: areolaColor },
-				bellySkin: { fill: defaultOutfitColor },
-				bellyUpperSkin: { fill: defaultOutfitColor },
-				shoe: { fill: defaultOutfitColor },
-				labiaSkin: { fill: defaultOutfitColor }
+				skin: {fill: defaultOutfitColor},
+				scrotum: {fill: defaultOutfitColor},
+				arm: {fill: defaultOutfitColor},
+				penis: {fill: defaultOutfitColor},
+				legsSkin: {fill: defaultOutfitColor},
+				feetSkin: {fill: defaultOutfitColor},
+				torso: {fill: defaultOutfitColor},
+				buttSkin: {fill: defaultOutfitColor},
+
+				neckSkin: {fill: defaultOutfitColor},
+				boob: {fill: defaultOutfitColor},
+				areola: {fill: areolaColor},
+				labia: {fill: areolaColor},
+				bellySkin: {fill: defaultOutfitColor},
+				bellyUpperSkin: {fill: defaultOutfitColor},
+				shoe: {fill: defaultOutfitColor},
+				labiaSkin: {fill: defaultOutfitColor}
 			}
 		};
 	}
@@ -524,7 +520,7 @@ class ClothingControl {
 				showLegHighlight: true,
 				showTorsoHighlight: true,
 				showBoobsHighlight: true,
-				showHeadHighlight:true,
+				showHeadHighlight: true,
 			},
 			styleSettings: {
 
@@ -545,21 +541,21 @@ class ClothingControl {
 				showNipplesPiercings: false
 			},
 			styleSettings: {
-				skin: { fill: defaultOutfitColor },
-				scrotum: { fill: defaultOutfitColor },
-				arm: { fill: defaultOutfitColor },
-				penis: { fill: defaultOutfitColor },
-				legsSkin: { fill: defaultOutfitColor },
-				feetSkin: { fill: defaultOutfitColor },
-				torso: { fill: defaultOutfitColor },
-				buttSkin: { fill: defaultOutfitColor },
-				boob: { fill: defaultOutfitColor },
-				areola: { fill: defaultOutfitColor },
-				bellySkin: { fill: defaultOutfitColor },
-				bellyUpperSkin: { fill: defaultOutfitColor },
-				shoe: { fill: defaultOutfitColor },
-				muscleTone: { "fill-opacity": 0 },
-				bellyDetails: { "fill-opacity": 0 }
+				skin: {fill: defaultOutfitColor},
+				scrotum: {fill: defaultOutfitColor},
+				arm: {fill: defaultOutfitColor},
+				penis: {fill: defaultOutfitColor},
+				legsSkin: {fill: defaultOutfitColor},
+				feetSkin: {fill: defaultOutfitColor},
+				torso: {fill: defaultOutfitColor},
+				buttSkin: {fill: defaultOutfitColor},
+				boob: {fill: defaultOutfitColor},
+				areola: {fill: defaultOutfitColor},
+				bellySkin: {fill: defaultOutfitColor},
+				bellyUpperSkin: {fill: defaultOutfitColor},
+				shoe: {fill: defaultOutfitColor},
+				muscleTone: {"fill-opacity": 0},
+				bellyDetails: {"fill-opacity": 0}
 			}
 		};
 	}
@@ -578,16 +574,16 @@ class ClothingControl {
 				showNipples: false
 			},
 			styleSettings: {
-				skin: { fill: defaultOutfitColor },
-				scrotum: { fill: defaultOutfitColor },
-				penis: { fill: defaultOutfitColor },
-				torso: { fill: defaultOutfitColor },
-				boob: { fill: defaultOutfitColor },
-				areola: { fill: defaultOutfitColor },
-				bellySkin: { fill: defaultOutfitColor },
-				bellyUpperSkin: { fill: defaultOutfitColor },
-				muscleTone: { "fill-opacity": 0 },
-				bellyDetails: { "fill-opacity": 0 }
+				skin: {fill: defaultOutfitColor},
+				scrotum: {fill: defaultOutfitColor},
+				penis: {fill: defaultOutfitColor},
+				torso: {fill: defaultOutfitColor},
+				boob: {fill: defaultOutfitColor},
+				areola: {fill: defaultOutfitColor},
+				bellySkin: {fill: defaultOutfitColor},
+				bellyUpperSkin: {fill: defaultOutfitColor},
+				muscleTone: {"fill-opacity": 0},
+				bellyDetails: {"fill-opacity": 0}
 			}
 		};
 	}
@@ -638,23 +634,20 @@ class RevampedArtControl {
 		this.pubicTattooText = "";
 
 		let clothing = this.getClothing();
-		if (clothing !== null)
-		{
+		if (clothing !== null) {
 			if (clothing.bodySettings !== null)
 				this.applyClothingSettings(clothing.bodySettings);
 			if (clothing.styleSettings !== null)
 				this.applyClothingStyleSettings(clothing.styleSettings);
 		}
 
-		if (!globalShowHighlights)
-		{
+		if (!globalShowHighlights) {
 			this.showLegHighlight = false;
 			this.showTorsoHighlight = false;
 			this.showBoobsHighlight = false;
 			this.showHeadHighlight = false;
 		}
-		if (!globalShowBodyMods)
-		{
+		if (!globalShowBodyMods) {
 			this.showPussyPiercings = false;
 			this.showBellyPiercings = false;
 			this.showPenisPiercings = false;
@@ -685,7 +678,7 @@ class RevampedArtControl {
 		if (this.artSlave.fuckdoll > 0)
 			return this.clothingControl.fuckdoll;
 		let clothing = null;
-		switch(this.artSlave.clothes) {
+		switch (this.artSlave.clothes) {
 			case "a nice maid outfit":
 				clothing = this.clothingControl.niceMaid;
 				break;
@@ -729,11 +722,9 @@ class RevampedArtControl {
 
 		if (this.artSlave.waist < -40) {
 			torsoSize = this.artSlave.weight > 30 ? "Hourglass" : "Unnatural";
-		}
-		else if (this.artSlave.waist <= 10) {
+		} else if (this.artSlave.waist <= 10) {
 			torsoSize = this.artSlave.weight > 30 ? "Normal" : "Hourglass";
-		}
-		else {
+		} else {
 			torsoSize = "Normal";
 		}
 
@@ -745,17 +736,13 @@ class RevampedArtControl {
 
 		if (this.artSlave.devotion > 50) {
 			leftArmType = "High";
-		}
-		else if (this.artSlave.trust >= -20) {
+		} else if (this.artSlave.trust >= -20) {
 			if (this.artSlave.devotion <= 20) {
 				leftArmType = "Low";
-			}
-			else
-			{
+			} else {
 				leftArmType = "Mid";
 			}
-		}
-		else {
+		} else {
 			leftArmType = "Mid";
 		}
 
@@ -767,17 +754,13 @@ class RevampedArtControl {
 
 		if (this.artSlave.devotion > 50) {
 			rightArmType = "High";
-		}
-		else if (this.artSlave.trust >= -20) {
+		} else if (this.artSlave.trust >= -20) {
 			if (this.artSlave.devotion <= 20) {
 				rightArmType = "Low";
-			}
-			else
-			{
+			} else {
 				rightArmType = "High";
 			}
-		}
-		else {
+		} else {
 			rightArmType = "Mid";
 		}
 
@@ -819,47 +802,46 @@ class RevampedArtControl {
 		if (this.artSlave.hLength === 0)
 			return result;
 
-		switch(this.artSlave.hStyle)
-		{
+		switch (this.artSlave.hStyle) {
 			case "neat":
-				result.push("Art_Vector_Revamp_Hair_Back_Neat_" + this.hairLength);
+				result.push(`Art_Vector_Revamp_Hair_Back_Neat_${this.hairLength}`);
 				break;
 			case "bun":
 			case "up":
-				result.push("Art_Vector_Revamp_Hair_Back_Bun_" + this.hairLength);
+				result.push(`Art_Vector_Revamp_Hair_Back_Bun_${this.hairLength}`);
 				break;
 			case "tails":
-				result.push("Art_Vector_Revamp_Hair_Back_Tails_" + this.hairLength);
+				result.push(`Art_Vector_Revamp_Hair_Back_Tails_${this.hairLength}`);
 				break;
 			case "ponytail":
-				result.push("Art_Vector_Revamp_Hair_Back_Ponytail_" + this.hairLength);
+				result.push(`Art_Vector_Revamp_Hair_Back_Ponytail_${this.hairLength}`);
 				break;
 			case "braided":
-				result.push("Art_Vector_Revamp_Hair_Back_Braids_" + this.hairLength);
+				result.push(`Art_Vector_Revamp_Hair_Back_Braids_${this.hairLength}`);
 				break;
 			case "curled":
-				result.push("Art_Vector_Revamp_Hair_Back_Curled_" + this.hairLength);
+				result.push(`Art_Vector_Revamp_Hair_Back_Curled_${this.hairLength}`);
 				break;
 			case "cornrows":
-				result.push("Art_Vector_Revamp_Hair_Back_Cornrows_" + this.hairLength);
+				result.push(`Art_Vector_Revamp_Hair_Back_Cornrows_${this.hairLength}`);
 				break;
 			case "strip":
-				result.push("Art_Vector_Revamp_Hair_Back_Shaved_Sides_" + this.hairLength);
+				result.push(`Art_Vector_Revamp_Hair_Back_Shaved_Sides_${this.hairLength}`);
 				break;
 			case "luxurious":
-				result.push("Art_Vector_Revamp_Hair_Back_Luxurious_" + this.hairLength);
+				result.push(`Art_Vector_Revamp_Hair_Back_Luxurious_${this.hairLength}`);
 				break;
 			case "afro":
-				result.push("Art_Vector_Revamp_Hair_Back_Afro_" + this.hairLength);
+				result.push(`Art_Vector_Revamp_Hair_Back_Afro_${this.hairLength}`);
 				break;
 			case "permed":
-				result.push("Art_Vector_Revamp_Hair_Back_Permed_" + this.hairLength);
+				result.push(`Art_Vector_Revamp_Hair_Back_Permed_${this.hairLength}`);
 				break;
 			case "dreadlocks":
-				result.push("Art_Vector_Revamp_Hair_Back_Dreadlocks_" + this.hairLength);
+				result.push(`Art_Vector_Revamp_Hair_Back_Dreadlocks_${this.hairLength}`);
 				break;
 			default:
-				result.push("Art_Vector_Revamp_Hair_Back_Messy_" + this.hairLength);
+				result.push(`Art_Vector_Revamp_Hair_Back_Messy_${this.hairLength}`);
 		}
 
 		return result;
@@ -873,16 +855,13 @@ class RevampedArtControl {
 
 		if (this.artSlave.amp === 1) {
 			result.push("Art_Vector_Revamp_Arm_Stump");
-		}
-		else {
-			result.push("Art_Vector_Revamp_Arm_Right_"+this.rightArmType);
-			result.push("Art_Vector_Revamp_Arm_Left_"+this.leftArmType);
+		} else {
+			result.push(`Art_Vector_Revamp_Arm_Right_${this.rightArmType}`);
+			result.push(`Art_Vector_Revamp_Arm_Left_${this.leftArmType}`);
 		}
 
-		if (this.showArmHair && (this.artSlave.amp === 1 || (this.leftArmType === "High" && this.artSlave.amp !== 1)))
-		{
-			switch(this.artSlave.underArmHStyle)
-			{
+		if (this.showArmHair && (this.artSlave.amp === 1 || (this.leftArmType === "High" && this.artSlave.amp !== 1))) {
+			switch (this.artSlave.underArmHStyle) {
 				case "bushy":
 					result.push("Art_Vector_Revamp_Arm_Up_Hair_Bushy");
 					break;
@@ -911,7 +890,7 @@ class RevampedArtControl {
 		else
 			buttSize = 0;
 
-		result.push("Art_Vector_Revamp_Butt_" + buttSize);
+		result.push(`Art_Vector_Revamp_Butt_${buttSize}`);
 
 		return result;
 	}
@@ -921,24 +900,20 @@ class RevampedArtControl {
 
 		if (this.artSlave.amp === 1) {
 			result.push("Art_Vector_Revamp_Stump");
-		}
-		else {
+		} else {
 			let legSize = "Normal";
 
 			if (this.artSlave.hips < 0) {
 				legSize = this.artSlave.weight > 95 ? "Normal" : "Narrow";
-			}
-			else if (this.artSlave.hips === 0) {
+			} else if (this.artSlave.hips === 0) {
 				legSize = this.artSlave.weight > 95 ? "Wide" : "Normal";
-			}
-			else if (this.artSlave.hips > 0) {
+			} else if (this.artSlave.hips > 0) {
 				legSize = "Wide";
 			}
 
-			result.push("Art_Vector_Revamp_Leg_" + legSize);
+			result.push(`Art_Vector_Revamp_Leg_${legSize}`);
 
-			if (this.showLegHighlight)
-			{
+			if (this.showLegHighlight) {
 				result.push("Art_Vector_Revamp_Leg_Highlights2");
 				result.push("Art_Vector_Revamp_Leg_Highlights1");
 			}
@@ -954,8 +929,7 @@ class RevampedArtControl {
 			return result;
 		}
 
-		switch(this.artSlave.shoes)
-		{
+		switch (this.artSlave.shoes) {
 			case "heels":
 				result.push("Art_Vector_Revamp_Shoes_Heel");
 				break;
@@ -978,18 +952,15 @@ class RevampedArtControl {
 	get torsoLayer() {
 		let result = [];
 
-		result.push("Art_Vector_Revamp_Torso_" + this.torsoSize);
+		result.push(`Art_Vector_Revamp_Torso_${this.torsoSize}`);
 		result.push("Art_Vector_Revamp_Clavicle");
-		if (this.showTorsoHighlight)
-		{
+		if (this.showTorsoHighlight) {
 			result.push("Art_Vector_Revamp_Torso_Highlights2");
 			result.push("Art_Vector_Revamp_Torso_Highlights1");
 		}
 
-		if (this.showArmHair && this.leftArmType !== "High" && this.artSlave.amp !== 1)
-		{
-			switch(this.artSlave.underArmHStyle)
-			{
+		if (this.showArmHair && this.leftArmType !== "High" && this.artSlave.amp !== 1) {
+			switch (this.artSlave.underArmHStyle) {
 				case "bushy":
 					result.push("Art_Vector_Revamp_Arm_Down_Hair_Bushy");
 					break;
@@ -1021,13 +992,11 @@ class RevampedArtControl {
 		if (this.artSlave.physicalAge < 12)
 			return result;
 
-		if (this.artSlave.vaginaTat === "rude words")
-		{
+		if (this.artSlave.vaginaTat === "rude words") {
 			this.pubicTattooText = this.artSlave.dick !== 0 ? "Useless" : "Fucktoy";
 			result.push("Art_Vector_Revamp_Pussy_Tattoo");
 		}
-		switch(this.artSlave.pubicHStyle)
-		{
+		switch (this.artSlave.pubicHStyle) {
 			case "strip":
 			case "in a strip":
 				result.push("Art_Vector_Revamp_Pubic_Hair_Strip");
@@ -1095,16 +1064,15 @@ class RevampedArtControl {
 	get torsoOutfitLayer() {
 		let result = [];
 
-		switch(this.artSlave.clothes)
-		{
+		switch (this.artSlave.clothes) {
 			case "uncomfortable straps":
-				result.push("Art_Vector_Revamp_Torso_Outfit_Straps_" + this.torsoSize);
+				result.push(`Art_Vector_Revamp_Torso_Outfit_Straps_${this.torsoSize}`);
 				break;
 			case "a nice maid outfit":
-				result.push("Art_Vector_Revamp_Torso_Outfit_Maid_" + this.torsoSize);
+				result.push(`Art_Vector_Revamp_Torso_Outfit_Maid_${this.torsoSize}`);
 				break;
 			case "a slutty maid outfit":
-				result.push("Art_Vector_Revamp_Torso_Outfit_Maid_Lewd_" + this.torsoSize);
+				result.push(`Art_Vector_Revamp_Torso_Outfit_Maid_Lewd_${this.torsoSize}`);
 				break;
 			default:
 		}
@@ -1131,7 +1099,7 @@ class RevampedArtControl {
 		else
 			ballsSize = 0;
 
-		result.push("Art_Vector_Revamp_Balls_" + ballsSize);
+		result.push(`Art_Vector_Revamp_Balls_${ballsSize}`);
 
 		return result;
 	}
@@ -1139,23 +1107,18 @@ class RevampedArtControl {
 	get bellyLayer() {
 		let result = [];
 
-		if (this.bellyLevel > 0)
-		{
-			result.push("Art_Vector_Revamp_Belly_" + this.bellyLevel);
+		if (this.bellyLevel > 0) {
+			result.push(`Art_Vector_Revamp_Belly_${this.bellyLevel}`);
 
-			if (this.showBellyPiercings)
-			{
+			if (this.showBellyPiercings) {
 				if (this.artSlave.navelPiercing >= 1)
-					result.push("Art_Vector_Revamp_Belly_" + this.bellyLevel + "_Piercing");
+					result.push(`Art_Vector_Revamp_Belly_${this.bellyLevel}_Piercing`);
 
 				if (this.artSlave.navelPiercing === 2)
-					result.push("Art_Vector_Revamp_Belly_" + this.bellyLevel + "_Piercing_Heavy");
+					result.push(`Art_Vector_Revamp_Belly_${this.bellyLevel}_Piercing_Heavy`);
 			}
-		}
-		else
-		{
-			if (this.showBellyPiercings)
-			{
+		} else {
+			if (this.showBellyPiercings) {
 				if (this.artSlave.navelPiercing >= 1)
 					result.push("Art_Vector_Revamp_Navel_Piercing");
 
@@ -1195,24 +1158,21 @@ class RevampedArtControl {
 		if (!this.showPenis || penisSize < 0)
 			return result;
 
-		if (canAchieveErection(this.artSlave) && (this.artSlave.chastityPenis !== 1))
-		{
-			result.push("Art_Vector_Revamp_Penis_" + penisSize);
+		if (canAchieveErection(this.artSlave) && (this.artSlave.chastityPenis !== 1)) {
+			result.push(`Art_Vector_Revamp_Penis_${penisSize}`);
 
 			if (!this.showPenisPiercings)
 				return result;
 
 			if (this.artSlave.dickPiercing === 1)
-				result.push("Art_Vector_Revamp_Penis_" + penisSize + "_Piercing");
+				result.push(`Art_Vector_Revamp_Penis_${penisSize}_Piercing`);
 			else if (this.artSlave.dickPiercing === 2)
-				result.push("Art_Vector_Revamp_Penis_" + penisSize + "_Piercing_Heavy");
-		}
-		else
-		{
-			result.push("Art_Vector_Revamp_Flaccid_" + penisSize);
+				result.push(`Art_Vector_Revamp_Penis_${penisSize}_Piercing_Heavy`);
+		} else {
+			result.push(`Art_Vector_Revamp_Flaccid_${penisSize}`);
 
 			if (this.artSlave.chastityPenis === 1) {
-				result.push("Art_Vector_Revamp_Chastity_Cage_" + penisSize);
+				result.push(`Art_Vector_Revamp_Chastity_Cage_${penisSize}`);
 			}
 		}
 
@@ -1222,14 +1182,11 @@ class RevampedArtControl {
 	get boobLayer() {
 		let result = [];
 
-		if (this.artSlave.boobs < 300)
-		{
-			if (this.showNipples)
-			{
+		if (this.artSlave.boobs < 300) {
+			if (this.showNipples) {
 				let areolaeShape = "Normal";
 
-				switch(this.artSlave.areolae)
-				{
+				switch (this.artSlave.areolae) {
 					case 0:
 						areolaeShape = "Normal";
 						break;
@@ -1244,8 +1201,7 @@ class RevampedArtControl {
 						break;
 					default:
 				}
-				switch(this.artSlave.areolaeShape)
-				{
+				switch (this.artSlave.areolaeShape) {
 					case "heart":
 						areolaeShape = "Heart";
 						break;
@@ -1255,18 +1211,16 @@ class RevampedArtControl {
 					default:
 				}
 
-				result.push("Art_Vector_Revamp_Boob_None_Areola_" + areolaeShape);
+				result.push(`Art_Vector_Revamp_Boob_None_Areola_${areolaeShape}`);
 			}
-		}
-		else
-		{
+		} else {
 			let artScaleFactor = 0.804354*Math.log(0.00577801*this.artSlave.boobs);
 
 			let boobRightArtTranslationX = 270*((-1*artScaleFactor) + 1);
 			let boobLeftArtTranslationX = 320*((-1*artScaleFactor) + 1);
 			let artTranslationX = -283.841*artScaleFactor+285.349;
 			let artTranslationY = 198*((-1*artScaleFactor) + 1);
-			let artBoobTransform = "matrix(" + artScaleFactor +",0,0," + artScaleFactor + "," + artTranslationX + "," + artTranslationY + ")";
+			let artBoobTransform = `matrix(${artScaleFactor},0,0,${artScaleFactor},${artTranslationX},${artTranslationY})`;
 
 			this.artTransform = artBoobTransform;
 
@@ -1275,35 +1229,29 @@ class RevampedArtControl {
 
 			let size = "Small";
 
-			if (this.artSlave.boobs < 600)
-			{
+			if (this.artSlave.boobs < 600) {
 				artScaleFactor = 0.360674*Math.log(0.0266667*this.artSlave.boobs);
 
 				boobRightArtTranslationX = 240*((-1*artScaleFactor) + 1);
 				boobLeftArtTranslationX = 300*((-1*artScaleFactor) + 1);
 				artTranslationY = 250*((-1*artScaleFactor) + 1);
 				size = "Small";
-			}
-			else if (this.artSlave.boobs < 15000)
-			{
+			} else if (this.artSlave.boobs < 15000) {
 				size = "Medium";
-			}
-			else {
+			} else {
 				size = "Huge";
 				boobRightArtTranslationX = 252*((-1*artScaleFactor) + 1);
 				boobLeftArtTranslationX = 315*((-1*artScaleFactor) + 1);
 			}
 
-			this.boobRightArtTransform = "matrix(" + artScaleFactor +",0,0," + artScaleFactor + "," + boobRightArtTranslationX + "," + artTranslationY + ")";
-			this.boobLeftArtTransform = "matrix(" + artScaleFactor +",0,0," + artScaleFactor + "," + boobLeftArtTranslationX + "," + artTranslationY + ")";
-			result.push("Art_Vector_Revamp_Boob_" + size);
+			this.boobRightArtTransform = `matrix(${artScaleFactor},0,0,${artScaleFactor},${boobRightArtTranslationX},${artTranslationY})`;
+			this.boobLeftArtTransform = `matrix(${artScaleFactor},0,0,${artScaleFactor},${boobLeftArtTranslationX},${artTranslationY})`;
+			result.push(`Art_Vector_Revamp_Boob_${size}`);
 
-			if (this.showNipples)
-			{
+			if (this.showNipples) {
 				let areolaeShape = "Normal";
 
-				switch(this.artSlave.areolae)
-				{
+				switch (this.artSlave.areolae) {
 					case 0:
 						areolaeShape = "Normal";
 						break;
@@ -1318,8 +1266,7 @@ class RevampedArtControl {
 						break;
 					default:
 				}
-				switch(this.artSlave.areolaeShape)
-				{
+				switch (this.artSlave.areolaeShape) {
 					case "heart":
 						areolaeShape = "Heart";
 						break;
@@ -1329,13 +1276,12 @@ class RevampedArtControl {
 					default:
 				}
 
-				result.push("Art_Vector_Revamp_Boob_" + size + "_Areolae_" + areolaeShape);
-				result.push("Art_Vector_Revamp_Boob_" + size + "_Nipples");
+				result.push(`Art_Vector_Revamp_Boob_${size}_Areolae_${areolaeShape}`);
+				result.push(`Art_Vector_Revamp_Boob_${size}_Nipples`);
 			}
-			if (this.showBoobsHighlight)
-			{
-				result.push("Art_Vector_Revamp_Boob_" + size + "_Highlights2");
-				result.push("Art_Vector_Revamp_Boob_" + size + "_Highlights1");
+			if (this.showBoobsHighlight) {
+				result.push(`Art_Vector_Revamp_Boob_${size}_Highlights2`);
+				result.push(`Art_Vector_Revamp_Boob_${size}_Highlights1`);
 			}
 		}
 
@@ -1345,88 +1291,71 @@ class RevampedArtControl {
 	get boobAddonLayer() {
 		let result = [];
 
-		if (this.showNipplesPiercings)
-		{
+		if (this.showNipplesPiercings) {
 			let size = "Small";
 
-			if (this.artSlave.boobs < 600)
-			{
+			if (this.artSlave.boobs < 600) {
 				size = "Small";
-			}
-			else if (this.artSlave.boobs < 15000)
-			{
+			} else if (this.artSlave.boobs < 15000) {
 				size = "Medium";
-			}
-			else {
+			} else {
 				size = "Huge";
 			}
 
-			if (this.artSlave.nipplesPiercing === 1)
-			{
+			if (this.artSlave.nipplesPiercing === 1) {
 				if (this.artSlave.boobs < 300)
 					result.push("Art_Vector_Revamp_Boob_None_Piercing");
 				else
-					result.push("Art_Vector_Revamp_Boob_" + size + "_Piercing");
-			}
-			else if (this.artSlave.nipplesPiercing === 2)
-			{
+					result.push(`Art_Vector_Revamp_Boob_${size}_Piercing`);
+			} else if (this.artSlave.nipplesPiercing === 2) {
 				if (this.artSlave.boobs < 300)
 					result.push("Art_Vector_Revamp_Boob_None_Piercing_Heavy");
 				else
-					result.push("Art_Vector_Revamp_Boob_" + size + "_Piercing_Heavy");
+					result.push(`Art_Vector_Revamp_Boob_${size}_Piercing_Heavy`);
 			}
 
-			if (this.artSlave.areolaePiercing === 1)
-			{
+			if (this.artSlave.areolaePiercing === 1) {
 				if (this.artSlave.boobs < 300)
 					result.push("Art_Vector_Revamp_Boob_None_Areola_Piercing");
 				else
-					result.push("Art_Vector_Revamp_Boob_" + size + "_Areola_Piercing");
-			}
-			else if (this.artSlave.areolaePiercing === 2)
-			{
+					result.push(`Art_Vector_Revamp_Boob_${size}_Areola_Piercing`);
+			} else if (this.artSlave.areolaePiercing === 2) {
 				if (this.artSlave.boobs < 300)
 					result.push("Art_Vector_Revamp_Boob_None_Areola_Piercing_Heavy");
 				else
-					result.push("Art_Vector_Revamp_Boob_" + size + "_Areola_Piercing_Heavy");
+					result.push(`Art_Vector_Revamp_Boob_${size}_Areola_Piercing_Heavy`);
 			}
 		}
 
-		switch(this.artSlave.clothes)
-		{
+		switch (this.artSlave.clothes) {
 			case "uncomfortable straps":
 				// if (this.artSlave.boobs >= 300)
 				// result.push("Art_Vector_Revamp_Boob_Outfit_Straps");
 				break;
 			case "a nice maid outfit":
-				if (this.artSlave.boobs >= 300)
-				{
-					if (this.artSlave.boobs < 600)
-					{
+				if (this.artSlave.boobs >= 300) {
+					if (this.artSlave.boobs < 600) {
 						let artScaleFactor = 0.288539*Math.log(0.106667*this.artSlave.boobs);
 						let artTranslationX = 270*((-1*artScaleFactor) + 1);
 						let artTranslationY = 198*((-1*artScaleFactor) + 1);// -198.438*artScaleFactor+203.274;
-						let artBoobTransform = "matrix(" + artScaleFactor +",0,0," + artScaleFactor + "," + artTranslationX + "," + artTranslationY + ")";
+						let artBoobTransform = `matrix(${artScaleFactor},0,0,${artScaleFactor},${artTranslationX},${artTranslationY})`;
 
 						this.boobOutfitArtTransform = artBoobTransform;
 
 						result.push("Art_Vector_Revamp_Boob_Small_Outfit_Maid");
-					}
-					else if (this.artSlave.boobs < 15000)
-					{
+					} else if (this.artSlave.boobs < 15000) {
 						let artScaleFactor = 0.155334*Math.log(1.04167*this.artSlave.boobs);
 						let artTranslationX = 270*((-1.25*artScaleFactor) + 1.25);
 						let artTranslationY = 198*((-0.8*artScaleFactor) + 0.8);// -198.438*artScaleFactor+203.274;
-						let artBoobTransform = "matrix(" + artScaleFactor +",0,0," + artScaleFactor + "," + artTranslationX + "," + artTranslationY + ")";
+						let artBoobTransform = `matrix(${artScaleFactor},0,0,${artScaleFactor},${artTranslationX},${artTranslationY})`;
 
 						this.boobOutfitArtTransform = artBoobTransform;
 						result.push("Art_Vector_Revamp_Boob_Medium_Outfit_Maid");
-					}
-					else {
+					} else {
 						let artScaleFactor = 1.56609*Math.log(0.00017373*this.artSlave.boobs);
 						let artTranslationX = 340*((-1*artScaleFactor) + 1);
 						let artTranslationY = 153*((-1*artScaleFactor) + 1);// -198.438*artScaleFactor+203.274;
-						let artBoobTransform = "matrix(" + artScaleFactor +",0,0," + artScaleFactor + "," + artTranslationX + "," + artTranslationY + ")";
+						let artBoobTransform = `matrix(${artScaleFactor},0,0,${artScaleFactor},${artTranslationX},${artTranslationY})`;
 
 						this.boobOutfitArtTransform = artBoobTransform;
 						result.push("Art_Vector_Revamp_Boob_Huge_Outfit_Maid");
@@ -1451,8 +1380,7 @@ class RevampedArtControl {
 	get collarLayer() {
 		let result = [];
 
-		switch(this.artSlave.collar)
-		{
+		switch (this.artSlave.collar) {
 			case "leather with cowbell":
 				result.push("Art_Vector_Revamp_Collar_Cowbell");
 				break;
@@ -1519,50 +1447,39 @@ class RevampedArtControl {
 		if (!this.showEyes)
 			return result;
 
-		if (this.artSlave.devotion > 50)
-		{
+		if (this.artSlave.devotion > 50) {
 			result.push("Art_Vector_Revamp_Eyes_Happy");
 			result.push("Art_Vector_Revamp_Eyes_Happy_Highlights");
 
-			if (this.showHeadPiercings)
-			{
+			if (this.showHeadPiercings) {
 				if (this.artSlave.eyebrowPiercing === 1)
 					result.push("Art_Vector_Revamp_Head_Eyebrow_Happy_Piercing");
 				else if (this.artSlave.eyebrowPiercing === 2)
 					result.push("Art_Vector_Revamp_Head_Eyebrow_Happy_Piercing_Heavy");
 			}
-		}
-		else if (this.artSlave.devotion >= 0)
-		{
+		} else if (this.artSlave.devotion >= 0) {
 			result.push("Art_Vector_Revamp_Eyes_Shy");
 			result.push("Art_Vector_Revamp_Eyes_Shy_Highlights");
 
-			if (this.showHeadPiercings)
-			{
+			if (this.showHeadPiercings) {
 				if (this.artSlave.eyebrowPiercing === 1)
 					result.push("Art_Vector_Revamp_Head_Eyebrow_Shy_Piercing");
 				else if (this.artSlave.eyebrowPiercing === 2)
 					result.push("Art_Vector_Revamp_Head_Eyebrow_Shy_Piercing_Heavy");
 			}
-		}
-		else if (this.artSlave.devotion >= -50)
-		{
+		} else if (this.artSlave.devotion >= -50) {
 			result.push("Art_Vector_Revamp_Eyes_Closed");
 
-			if (this.showHeadPiercings)
-			{
+			if (this.showHeadPiercings) {
 				if (this.artSlave.eyebrowPiercing === 1)
 					result.push("Art_Vector_Revamp_Head_Eyebrow_Closed_Piercing");
 				else if (this.artSlave.eyebrowPiercing === 2)
 					result.push("Art_Vector_Revamp_Head_Eyebrow_Closed_Piercing_Heavy");
 			}
-		}
-		else
-		{
+		} else {
 			result.push("Art_Vector_Revamp_Eyes_Angry");
 			result.push("Art_Vector_Revamp_Eyes_Angry_Highlights");
-			if (this.showHeadPiercings)
-			{
+			if (this.showHeadPiercings) {
 				if (this.artSlave.eyebrowPiercing === 1)
 					result.push("Art_Vector_Revamp_Head_Eyebrow_Angry_Piercing");
 				else if (this.artSlave.eyebrowPiercing === 2)
@@ -1593,26 +1510,21 @@ class RevampedArtControl {
 		else
 			lipsSize = "Thin";
 
-		if (this.artSlave.trust > 20)
-		{
-			result.push("Art_Vector_Revamp_Makeup_Mouth_Happy_" + lipsSize);
-			result.push("Art_Vector_Revamp_Mouth_Happy_" + lipsSize);
+		if (this.artSlave.trust > 20) {
+			result.push(`Art_Vector_Revamp_Makeup_Mouth_Happy_${lipsSize}`);
+			result.push(`Art_Vector_Revamp_Mouth_Happy_${lipsSize}`);
 
-			if (this.showHeadPiercings)
-			{
+			if (this.showHeadPiercings) {
 				if (this.artSlave.lipsPiercing === 1)
 					result.push("Art_Vector_Revamp_Head_Mouth_Happy_Piercing");
 				else if (this.artSlave.lipsPiercing === 2)
 					result.push("Art_Vector_Revamp_Head_Mouth_Happy_Piercing_Heavy");
 			}
-		}
-		else
-		{
-			result.push("Art_Vector_Revamp_Makeup_Mouth_Angry_" + lipsSize);
-			result.push("Art_Vector_Revamp_Mouth_Angry_" + lipsSize);
+		} else {
+			result.push(`Art_Vector_Revamp_Makeup_Mouth_Angry_${lipsSize}`);
+			result.push(`Art_Vector_Revamp_Mouth_Angry_${lipsSize}`);
 
-			if (this.showHeadPiercings)
-			{
+			if (this.showHeadPiercings) {
 				if (this.artSlave.lipsPiercing === 1)
 					result.push("Art_Vector_Revamp_Head_Mouth_Angry_Piercing");
 				else if (this.artSlave.lipsPiercing === 2)
@@ -1626,8 +1538,7 @@ class RevampedArtControl {
 		let result = [];
 
 		if (this.showEyes) {
-			switch(this.artSlave.eyewear)
-			{
+			switch (this.artSlave.eyewear) {
 				case "corrective glasses":
 				case "glasses":
 				case "blurring glasses":
@@ -1637,10 +1548,8 @@ class RevampedArtControl {
 			}
 		}
 
-		if (this.showMouth)
-		{
-			switch(this.artSlave.collar)
-			{
+		if (this.showMouth) {
+			switch (this.artSlave.collar) {
 				case "dildo gag":
 					result.push("Art_Vector_Revamp_Dildo_Gag");
 					break;
@@ -1664,8 +1573,7 @@ class RevampedArtControl {
 		if (this.artSlave.hLength === 0)
 			return result;
 
-		switch(this.artSlave.hStyle)
-		{
+		switch (this.artSlave.hStyle) {
 			case "neat":
 				result.push("Art_Vector_Revamp_Hair_Fore_Neat");
 				break;
diff --git a/src/endWeek/saServeThePublic.js b/src/endWeek/saServeThePublic.js
index 1bc85472b47026ea2386a96533f92c9ca35f1870..51482125667352efccb6996ed5e778e0a7bd9056 100644
--- a/src/endWeek/saServeThePublic.js
+++ b/src/endWeek/saServeThePublic.js
@@ -999,19 +999,19 @@ window.saServeThePublic = (function saServeThePublic() {
 				slave.need -= slave.sexAmount;
 			} else if (slave.energy > 80) {
 				r += ` With ${his} powerful sex drive ${he} rarely has to fake an orgasm.`;
-				slave.need -= (slave.sexAmount * .9);
+				slave.need -= (slave.sexAmount * 0.9);
 			} else if (slave.aphrodisiacs > 0 || slave.inflationType === "aphrodisiac") {
 				r += ` With ${his} aphrodisiac boosted libido, it's barely possible to discern ${him} from a natural nymphomaniac.`;
-				slave.need -= (slave.sexAmount * .9);
+				slave.need -= (slave.sexAmount * 0.9);
 			} else if (slave.energy > 60) {
 				r += ` With ${his} good sex drive ${he} often orgasms with citizens.`;
-				slave.need -= (slave.sexAmount * .8);
+				slave.need -= (slave.sexAmount * 0.8);
 			} else if (slave.energy > 40) {
 				r += ` With ${his} average sex drive ${he} occasionally orgasms with citizens.`;
-				slave.need -= (slave.sexAmount * .5);
+				slave.need -= (slave.sexAmount * 0.5);
 			} else if (slave.energy > 20) {
 				r += ` With ${his} poor sex drive ${he} almost never orgasms with citizens.`;
-				slave.need -= (slave.sexAmount * .1);
+				slave.need -= (slave.sexAmount * 0.1);
 			} else {
 				r += ` Since ${he}'s frigid, ${he} rarely experiences authentic arousal with citizens.`;
 			}
diff --git a/src/endWeek/saWhore.js b/src/endWeek/saWhore.js
index e06de99988a3c4b88a01ba70b27ab853449f6b74..4e1c1f70eaf6ae538e25be637f4d0b6aa402a2c6 100644
--- a/src/endWeek/saWhore.js
+++ b/src/endWeek/saWhore.js
@@ -227,9 +227,9 @@ window.saWhore = (function saWhore() {
 		beauty = Math.trunc(beauty * beautyMultiplier);
 		if ((slave.hears === -1 && slave.earwear !== "hearing aids") || (slave.hears === 0 && slave.earwear === "muffling ear plugs") ||(slave.hears === -2)) {
 			if (!canHear(slave)) {
-				beauty *= .75;
+				beauty *= 0.75;
 			} else {
-				beauty *= .90;
+				beauty *= 0.90;
 			}
 		}
 		if (beauty > 210) {
@@ -1164,19 +1164,19 @@ window.saWhore = (function saWhore() {
 				slave.need -= beauty;
 			} else if (slave.energy > 80) {
 				r += ` With ${his} powerful sex drive ${he} rarely has to fake an orgasm.`;
-				slave.need -= (beauty * .9);
+				slave.need -= (beauty * 0.9);
 			} else if (slave.aphrodisiacs > 0 || slave.inflationType === "aphrodisiac") {
 				r += ` With ${his} aphrodisiac boosted libido, it's barely possible to discern ${him} from a natural nymphomaniac.`;
-				slave.need -= (beauty * .9);
+				slave.need -= (beauty * 0.9);
 			} else if (slave.energy > 60) {
 				r += ` With ${his} good sex drive ${he} often orgasms with customers.`;
-				slave.need -= (beauty * .8);
+				slave.need -= (beauty * 0.8);
 			} else if (slave.energy > 40) {
 				r += ` With ${his} average sex drive ${he} occasionally orgasms with customers.`;
-				slave.need -= (beauty * .5);
+				slave.need -= (beauty * 0.5);
 			} else if (slave.energy > 20) {
 				r += ` With ${his} poor sex drive ${he} almost never orgasms with customers.`;
-				slave.need -= (beauty * .1);
+				slave.need -= (beauty * 0.1);
 			} else {
 				r += ` Since ${he}'s frigid, ${he} rarely experiences authentic arousal at work.`;
 			}
diff --git a/src/facilities/nursery/nurseryReport.tw b/src/facilities/nursery/nurseryReport.tw
index cf6603bfa0bd969f8cb6cb72ba0f655ac76c4ebd..625ee08ab13cd3a2515b1dd454ce48227cc1430a 100644
--- a/src/facilities/nursery/nurseryReport.tw
+++ b/src/facilities/nursery/nurseryReport.tw
@@ -95,7 +95,7 @@
 	&nbsp;&nbsp;&nbsp;&nbsp;''<<if (_NL > 1)>>There are _NL slaves<<else>>There is one slave<</if>> resting and recuperating in the nursery.''
 	<<if ($arcologies[0].FSHedonisticDecadence > 0) && (_NL == 0)>>
 		Society @@.green;approves@@ of your slaves being pampered this way, greatly advancing your laid back culture.
-		<<= FSChange("Hedonism", 1)>>
+		<<= FutureSocieties.Change("Hedonistic", 1)>>
 	<</if>>
 <</if>>
 
diff --git a/src/js/eventSelectionJS.js b/src/js/eventSelectionJS.js
index 447ce06e37084a57bb52a36bc3d41e1180cca067..bb9d91a2f3f676c44c97405d66e06b84d089efdc 100644
--- a/src/js/eventSelectionJS.js
+++ b/src/js/eventSelectionJS.js
@@ -873,7 +873,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) {
 						if (eventSlave.ovaries === 1) {
 							if (eventSlave.pubertyXX === 0) {
 								if (eventSlave.preg === 0) {
-									if (eventSlave.physicalAge >= eventSlave.pubertyAgeXX - .5) {
+									if (eventSlave.physicalAge >= eventSlave.pubertyAgeXX - 0.5) {
 										State.variables.RESSevent.push("first period");
 										State.variables.RESSevent.push("first period");
 										State.variables.RESSevent.push("first period");
@@ -891,7 +891,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) {
 						if (canPenetrate(eventSlave)) {
 							if (eventSlave.balls > 0) {
 								if (eventSlave.pubertyXY === 0) {
-									if (eventSlave.physicalAge >= eventSlave.pubertyAgeXY - .5) {
+									if (eventSlave.physicalAge >= eventSlave.pubertyAgeXY - 0.5) {
 										State.variables.RESSevent.push("wet dreams");
 										State.variables.RESSevent.push("wet dreams");
 										State.variables.RESSevent.push("wet dreams");
@@ -1103,7 +1103,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) {
 			}
 
 			if (eventSlave.boobs > 800) {
-				if (Math.floor(eventSlave.boobsImplant / eventSlave.boobs) >= .60) {
+				if (Math.floor(eventSlave.boobsImplant / eventSlave.boobs) >= 0.60) {
 					if (eventSlave.devotion > 20) {
 						State.variables.RESSevent.push("implant inspection");
 					}
@@ -2331,7 +2331,7 @@ window.generateRandomEventPoolServant = function(eventSlave) {
 						if (eventSlave.ovaries === 1) {
 							if (eventSlave.pubertyXX === 0) {
 								if (eventSlave.preg === 0) {
-									if (eventSlave.physicalAge >= eventSlave.pubertyAgeXX - .5) {
+									if (eventSlave.physicalAge >= eventSlave.pubertyAgeXX - 0.5) {
 										State.variables.RESSevent.push("first period");
 										State.variables.RESSevent.push("first period");
 										State.variables.RESSevent.push("first period");
@@ -2349,7 +2349,7 @@ window.generateRandomEventPoolServant = function(eventSlave) {
 						if (canPenetrate(eventSlave)) {
 							if (eventSlave.balls > 0) {
 								if (eventSlave.pubertyXY === 0) {
-									if (eventSlave.physicalAge >= eventSlave.pubertyAgeXY - .5) {
+									if (eventSlave.physicalAge >= eventSlave.pubertyAgeXY - 0.5) {
 										State.variables.RESSevent.push("wet dreams");
 										State.variables.RESSevent.push("wet dreams");
 										State.variables.RESSevent.push("wet dreams");
diff --git a/src/js/familyTreeJS.js b/src/js/familyTreeJS.js
index 86fd4260f54d20ff3ff63cf9b7071aea879f49fc..e6cc775d6bbd8e31139499d44c3e0e72056e3de5 100644
--- a/src/js/familyTreeJS.js
+++ b/src/js/familyTreeJS.js
@@ -153,7 +153,7 @@ window.renderFamilyTree = function(slaves, filterID) {
 				} else {
 					ssym = '?';
 				}
-				return `${d.name }(${ssym})`;
+				return `${d.name}(${ssym})`;
 			})
 			.attr('dy', 4)
 			.attr('dx', function(d) {
@@ -179,13 +179,13 @@ window.renderFamilyTree = function(slaves, filterID) {
 
 		let ticked = function() {
 			link
-				.attr('x1', function(d) {return d.source.x;})
-				.attr('y1', function(d) {return d.source.y;})
-				.attr('x2', function(d) {return d.target.x;})
-				.attr('y2', function(d) {return d.target.y;});
+				.attr('x1', function(d) { return d.source.x; })
+				.attr('y1', function(d) { return d.source.y; })
+				.attr('x2', function(d) { return d.target.x; })
+				.attr('y2', function(d) { return d.target.y; });
 
 			node
-				.attr("transform", function(d) {return `translate(${ d.x }, ${ d.y })`;});
+				.attr("transform", function(d) { return `translate(${d.x}, ${d.y})`; });
 		};
 
 		simulation.nodes(data.nodes)
@@ -229,7 +229,7 @@ window.buildFamilyTree = function(slaves = State.variables.slaves, filterID) {
 	let kids = {};
 
 	let fake_pc = {
-		slaveName: `${State.variables.PC.name }(You)`,
+		slaveName: `${State.variables.PC.name}(You)`,
 		mother: State.variables.PC.mother,
 		father: State.variables.PC.father,
 		dick: State.variables.PC.dick,
@@ -548,8 +548,13 @@ window.updateFamilyTree = function(activeSlave = lastActiveSlave, slaves = lastS
 	function getSlave(id, expectedGenes) {
 		if (id === -1) {
 			return {
-"slaveName": "YOU", "ID": id, "physicalAge": PC.physicalAge, "genes": PC.genes, "father": PC.father, "mother": PC.mother
-};
+				"slaveName": "YOU",
+				"ID": id,
+				"physicalAge": PC.physicalAge,
+				"genes": PC.genes,
+				"father": PC.father,
+				"mother": PC.mother
+			};
 		}
 		if (id === 0) {
 			return {"slaveName": "-", "ID": id, "genes": expectedGenes};
@@ -641,14 +646,14 @@ window.updateFamilyTree = function(activeSlave = lastActiveSlave, slaves = lastS
 				let children = shouldAddChildren?spouseToChild[key]:[];
 				let spouse = getSlave(key, (slaves.genes === "XX") ? "unknownXY" : (slaves.genes === "XY") ? "unknownXX" : "unknown");
 				let spouseName;
-				if (spouse.ID !== slave.ID){
-					spouseName = spouse.slaveName + (spouse.physicalAge?(`&nbsp;(${ spouse.physicalAge })`):"");
+				if (spouse.ID !== slave.ID) {
+					spouseName = spouse.slaveName + (spouse.physicalAge?(`&nbsp;(${spouse.physicalAge})`):"");
 				} else {
 					spouseName = (spouse.ID === -1) ? "(yourself)" : "(themselves)";
 				}
 				let marriage = {
 					"spouse": {"name": spouseName, "class": spouse.genes},
-					"children": children.map(function(x) {return slaveInfo_(x, activeSlaveId, slavesAdded, depth + 1);}),
+					"children": children.map(function(x) { return slaveInfo_(x, activeSlaveId, slavesAdded, depth + 1); }),
 				};
 				data.marriages.push(marriage);
 			}
diff --git a/src/js/futureSocietyJS.js b/src/js/futureSocietyJS.js
index 0cf8241d6f110e96569e12045d167cfd317679de..48a68b277ba50a9049b0e3a709f171b73041cb59 100644
--- a/src/js/futureSocietyJS.js
+++ b/src/js/futureSocietyJS.js
@@ -1,7 +1,36 @@
 window.FutureSocieties = (function() {
+	const FSString2Property = { // blame Hedonism and Eugenics for this
+		Supremacist: "FSSupremacist",
+		Subjugationist: "FSSubjugationist",
+		GenderRadicalist: "FSGenderRadicalist",
+		GenderFundamentalist: "FSGenderFundamentalist",
+		Degradationist: "FSDegradationist",
+		Paternalist: "FSPaternalist",
+		BodyPurist: "FSBodyPurist",
+		TransformationFetishist: "FSTransformationFetishist",
+		YouthPreferentialist: "FSYouthPreferentialist",
+		MaturityPreferentialist: "FSMaturityPreferentialist",
+		SlimnessEnthusiast: "FSSlimnessEnthusiast",
+		AssetExpansionist: "FSAssetExpansionist",
+		Pastoralist: "FSPastoralist",
+		PhysicalIdealist: "FSPhysicalIdealist",
+		Hedonistic: "FSHedonisticDecadence",
+		ChattelReligionist: "FSChattelReligionist",
+		RomanRevivalist: "FSRomanRevivalist",
+		EgyptianRevivalist: "FSEgyptianRevivalist",
+		EdoRevivalist: "FSEdoRevivalist",
+		ArabianRevivalist: "FSArabianRevivalist",
+		ChineseRevivalist: "FSChineseRevivalist",
+		AztecRevivalist: "FSAztecRevivalist",
+		RepopulationFocus: "FSRepopulationFocus",
+		Eugenics: "FSRestart"
+	};
+
 	return {
 		remove: removeFS,
-		DecorationCleanup: DecorationCleanup
+		DecorationCleanup: DecorationCleanup,
+		Change: FSChange,
+		ChangePorn: FSChangePorn
 	};
 
 	// call as FutureSocieties.remove(FS)
@@ -132,36 +161,10 @@ window.FutureSocieties = (function() {
 	/* decoration should be passed as "facilityDecoration" in quotes. For example, ValidateFacilityDecoration("brothelDecoration"). The quotes are important, do not pass it as a story variable. */
 	function ValidateFacilityDecoration(decoration) {
 		const V = State.variables;
-		const decorationToFSName = {
-			standard: "standard",
-			Supremacist: "FSSupremacist",
-			Subjugationist: "FSSubjugationist",
-			'Gender Radicalist': "FSGenderRadicalist",
-			'Gender Fundamentalist': "FSGenderFundamentalist",
-			Degradationist: "FSDegradationist",
-			Paternalist: "FSPaternalist",
-			'Body Purist': "FSBodyPurist",
-			'Transformation Fetishist': "FSTransformationFetishist",
-			'Youth Preferentialist': "FSYouthPreferentialist",
-			'Maturity Preferentialist': "FSMaturityPreferentialist",
-			'Slimness Enthusiast': "FSSlimnessEnthusiast",
-			'Asset Expansionist': "FSAssetExpansionist",
-			Pastoralist: "FSPastoralist",
-			'Physical Idealist': "FSPhysicalIdealist",
-			Hedonistic: "FSHedonisticDecadence",
-			'Chattel Religionist': "FSChattelReligionist",
-			'Roman Revivalist': "FSRomanRevivalist",
-			'Egyptian Revivalist': "FSEgyptianRevivalist",
-			'Edo Revivalist': "FSEdoRevivalist",
-			'Arabian Revivalist': "FSArabianRevivalist",
-			'Chinese Revivalist': "FSChineseRevivalist",
-			'Aztec Revivalist': "FSAztecRevivalist",
-			'Repopulation Focus': "FSRepopulationFocus",
-			Eugenics: "FSRestart"
-		};
-		const activeFS = decorationToFSName[V[decoration]];
+		const FSString = V[decoration].replace(/ /g, ''); // removes spaces
+		const activeFS = FSString2Property[FSString]; // gets the property name
 
-		if (activeFS === "standard") {
+		if (FSString === "standard") {
 			// nothing to do
 		} else if (activeFS === undefined) {
 			// eslint-disable-next-line no-console
@@ -175,259 +178,27 @@ window.FutureSocieties = (function() {
 			V[decoration] = "standard";
 		}
 	}
-})();
 
-window.FSChange = function FSChange(FS, magnitude, bonusMultiplier = 1) {
-	const V = State.variables;
-	let errorMessage = '';
+	function FSChange(FSString, magnitude, bonusMultiplier = 1) {
+		const V = State.variables;
+		const arcology = V.arcologies[0];
+		const activeFS = FSString2Property[FSString];
 
-	switch (FS) {
-		case 'Supremacist':
-			if (Number.isFinite(V.arcologies[0].FSSupremacist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSSupremacist / V.FSLockinLevel) / 3, 'futureSocieties'); // Reducing the reputation impact of slaves that are not adhering to societal ideals properly
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSSupremacist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSSupremacist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'Subjugationist':
-			if (Number.isFinite(V.arcologies[0].FSSubjugationist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSSubjugationist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSSubjugationist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSSubjugationist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'GenderRadicalist':
-			if (Number.isFinite(V.arcologies[0].FSGenderRadicalist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSGenderRadicalist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSGenderRadicalist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSGenderRadicalist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'GenderFundamentalist':
-			if (Number.isFinite(V.arcologies[0].FSGenderFundamentalist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSGenderFundamentalist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSGenderFundamentalist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSGenderFundamentalist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'Paternalist':
-			if (Number.isFinite(V.arcologies[0].FSPaternalist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSPaternalist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSPaternalist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSPaternalist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'Degradationist':
-			if (Number.isFinite(V.arcologies[0].FSDegradationist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSDegradationist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSDegradationist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSDegradationist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'AssetExpansionist':
-			if (Number.isFinite(V.arcologies[0].FSAssetExpansionist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSAssetExpansionist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSAssetExpansionist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSAssetExpansionist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'SlimnessEnthusiast':
-			if (Number.isFinite(V.arcologies[0].FSSlimnessEnthusiast)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSSlimnessEnthusiast / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSSlimnessEnthusiast / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSSlimnessEnthusiast += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'TransformationFetishist':
-			if (Number.isFinite(V.arcologies[0].FSTransformationFetishist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSTransformationFetishist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSTransformationFetishist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSTransformationFetishist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'BodyPurist':
-			if (Number.isFinite(V.arcologies[0].FSBodyPurist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSBodyPurist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSBodyPurist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSBodyPurist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'MaturityPreferentialist':
-			if (Number.isFinite(V.arcologies[0].FSMaturityPreferentialist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSMaturityPreferentialist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSMaturityPreferentialist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSMaturityPreferentialist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'YouthPreferentialist':
-			if (Number.isFinite(V.arcologies[0].FSYouthPreferentialist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSYouthPreferentialist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSYouthPreferentialist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSYouthPreferentialist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'Pastoralist':
-			if (Number.isFinite(V.arcologies[0].FSPastoralist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSPastoralist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSPastoralist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSPastoralist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'PhysicalIdealist':
-			if (Number.isFinite(V.arcologies[0].FSPhysicalIdealist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSPhysicalIdealist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSPhysicalIdealist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSPhysicalIdealist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'ChattelReligionist':
-			if (Number.isFinite(V.arcologies[0].FSChattelReligionist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSChattelReligionist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSChattelReligionist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSChattelReligionist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'RomanRevivalist':
-			if (Number.isFinite(V.arcologies[0].FSRomanRevivalist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSRomanRevivalist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSRomanRevivalist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSRomanRevivalist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'AztecRevivalist':
-			if (Number.isFinite(V.activeArcology.FSAztecRevivalist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSAztecRevivalist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSAztecRevivalist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSAztecRevivalist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'EgyptianRevivalist':
-			if (Number.isFinite(V.arcologies[0].FSEgyptianRevivalist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSEgyptianRevivalist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSEgyptianRevivalist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSEgyptianRevivalist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'EdoRevivalist':
-			if (Number.isFinite(V.arcologies[0].FSEdoRevivalist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSEdoRevivalist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSEdoRevivalist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSEdoRevivalist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'ArabianRevivalist':
-			if (Number.isFinite(V.arcologies[0].FSArabianRevivalist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSArabianRevivalist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSArabianRevivalist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSArabianRevivalist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'ChineseRevivalist':
-			if (Number.isFinite(V.arcologies[0].FSChineseRevivalist)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSChineseRevivalist / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSChineseRevivalist / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSChineseRevivalist += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'Repopulationist':
-			if (Number.isFinite(V.arcologies[0].FSRepopulationFocus)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSRepopulationFocus / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSRepopulationFocus / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSRepopulationFocus += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'Eugenics':
-			if (Number.isFinite(V.arcologies[0].FSRestart)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSRestart / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSRestart / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSRestart += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		case 'Hedonism':
-			if (Number.isFinite(V.arcologies[0].FSHedonisticDecadence)) {
-				if (magnitude < 0) {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSHedonisticDecadence / V.FSLockinLevel) / 3, 'futureSocieties');
-				} else {
-					repX(magnitude * V.FSSingleSlaveRep * (V.arcologies[0].FSHedonisticDecadence / V.FSLockinLevel), 'futureSocieties');
-				}
-				V.arcologies[0].FSHedonisticDecadence += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
-			}
-			break;
-		default:
-			errorMessage += `<span class="red">ERROR: bad FS reference</span>`;
+		if (activeFS === undefined) {
+			return "<span class='red'>ERROR: bad FS reference</span>";
+		} else if (Number.isFinite(arcology[activeFS])) {
+			if (magnitude < 0) {
+				repX(magnitude * V.FSSingleSlaveRep * (arcology[activeFS] / V.FSLockinLevel) / 3, 'futureSocieties'); // Reducing the reputation impact of slaves that are not adhering to societal ideals properly
+			} else {
+				repX(magnitude * V.FSSingleSlaveRep * (arcology[activeFS] / V.FSLockinLevel), 'futureSocieties');
+			}
+			arcology[activeFS] += 0.05 * magnitude * V.FSSingleSlaveRep * bonusMultiplier;
+		}
 	}
-	return errorMessage;
-};
 
-window.FSChangePorn = function FSChangePorn(FS, magnitude) {
-	return FSChange(FS, magnitude, State.variables.pornFameBonus);
-};
+	/* call as FutureSocieties.ChangePorn() */
+	/* FSString should be in the FSString2Property object above */
+	function FSChangePorn(FSString, magnitude) {
+		return FSChange(FSString, magnitude, State.variables.pornFameBonus);
+	}
+})();
diff --git a/src/js/slaveSummaryWidgets.js b/src/js/slaveSummaryWidgets.js
index 4a9e4264ba4f5651fe3986ae4f8da5e1435589e7..80b68ee363befa96a1b860a7d0eafdc9f1782237 100644
--- a/src/js/slaveSummaryWidgets.js
+++ b/src/js/slaveSummaryWidgets.js
@@ -276,7 +276,7 @@ window.SlaveSummaryUncached = (function() {
 			long_sex_quirk(slave);
 		}
 		if (slave.custom.label) {
-			r += `<strong><span class="yellow">${capFirstChar(slave.custom.label)}</span></strong>`;
+			r += `<strong><span class="yellow">${capFirstChar(slave.custom.label)}.</span></strong>`;
 		}
 		if ((slave.relationship !== 0) || (slave.relation !== 0) || (V.abbreviateClothes === 2) || (V.abbreviateRulesets === 2)) {
 			r += `<br>`;
diff --git a/src/neighbor/arcologyOpinion.js b/src/neighbor/arcologyOpinion.js
index 7984ae34aa4a54911c93b3d6ad91fa70611bd814..b5cbc5905bf858a0fc77c4610d92902d89d27a64 100644
--- a/src/neighbor/arcologyOpinion.js
+++ b/src/neighbor/arcologyOpinion.js
@@ -1,8 +1,8 @@
 window.arcologyOpinion = function() {
 	const V = State.variables;
 
-	if (typeof V.activeArcology.FSNull === "undefined") {V.activeArcology.FSNull = "unset";}
-	if (typeof V.targetArcology.FSNull === "undefined") {V.targetArcology.FSNull = "unset";}
+	if (typeof V.activeArcology.FSNull === "undefined") { V.activeArcology.FSNull = "unset"; }
+	if (typeof V.targetArcology.FSNull === "undefined") { V.targetArcology.FSNull = "unset"; }
 
 	let opinion = 0;
 
diff --git a/src/pregmod/newChildIntro.tw b/src/pregmod/newChildIntro.tw
index 55b4f22cf87edabd3e3a688aeb47f35266123c3f..3039033157793d31c3ad3cf6a8d5ae4e21b56337 100644
--- a/src/pregmod/newChildIntro.tw
+++ b/src/pregmod/newChildIntro.tw
@@ -649,10 +649,10 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 	You drag $him to the body modification studio and strap $him down with $his $brandTarget clear and defenseless. $He doesn't understand what's on, becoming even more confused as disinfectant is applied to $his $brandTarget. $He can't see the approaching brand, <<if !canSee($activeSlave)>>of course, <</if>>but eventually $he feels the radiated heat on $his skin and manages to get one inarticulate, wordless noise of terror out before the dreadful sizzling noise and the sweet smell of burning flesh. If $he trusted you at all before, @@.mediumorchid;$he doesn't now,@@ and $he's got the @@.gold;agonizing@@ @@.red;injury@@ to remind $him should $he start to forget.
 	<<if ($arcologies[0].FSSubjugationistRace == $activeSlave.race) && ($arcologies[0].FSSubjugationist > 0)>>
 		Society @@.green;approves@@ of your purchase and branding of an inferior $activeSlave.race person; this advances the idea that $activeSlave.race people ought to be enslaved.
-		<<= FSChange("Subjugationist", 2)>>
+		<<= FutureSocieties.Change("Subjugationist", 2)>>
 	<<elseif ($arcologies[0].FSSupremacistRace == $activeSlave.race) && ($arcologies[0].FSSupremacist > 0)>>
 		Society @@.red;disapproves@@ of your purchase and branding of <<if $activeSlave.race == "amerindian" || $activeSlave.race == "asian" || $activeSlave.race == "indo-aryan">>an<<else>>a<</if>> $activeSlave.race person; this reduces support for the idea that $activeSlave.race people are superior.
-		<<= FSChange("Supremacist", -2)>>
+		<<= FutureSocieties.Change("Supremacist", -2)>>
 	<</if>>
 <</replace>>
 <</link>>
@@ -675,7 +675,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 				<<set $failedElite -= 5>>
 			<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
 				Society @@.green;approves@@ of your promptly putting a new slave in $him; this advances the idea that all slaves should bear their masters' babies.
-				<<= FSChange("GenderFundamentalist", 2)>>
+				<<= FutureSocieties.Change("GenderFundamentalist", 2)>>
 			<</if>>
 			<<set $activeSlave.preg = 1>>
 			<<set $activeSlave.pregType = setPregType($activeSlave)>>
@@ -846,11 +846,11 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 						Righting yourself, you grab the gloating slave, drag $him to the autosurgery and strap $him face-down with $his legs spread. $He doesn't understand what's happening, but giggles at the sensations running through $his numb body. $He's so drugged and drowsy with @@.red;surgical recovery@@ that it takes a while for $him to figure out what's happened. When $he does, $his poor mind scarcely processes the @@.gold;horror@@ of what's happened. $He spends the rest of the week dimly trying to find where $his balls went.
 						<<if $arcologies[0].FSGenderRadicalist != "unset">>
 							Society @@.green;approves@@ of your promptly gelding $him; this advances the idea that all societal inferiors can be made female.
-							<<= FSChange("GenderRadicalist", 2)>>
+							<<= FutureSocieties.Change("GenderRadicalist", 2)>>
 						<</if>>
 						<<if $arcologies[0].FSRestart != "unset" && $activeSlave.pubertyXY == 1>>
 							Society @@.green;approves@@ of your promptly gelding $him; this advances the idea that all only the elite should breed.
-							<<= FSChange("Eugenics", 2)>>
+							<<= FutureSocieties.Change("Eugenics", 2)>>
 						<</if>>
 						<<set $activeSlave.devotion -= 25>>
 						<<set $activeSlave.trust -= 50>>
@@ -912,11 +912,11 @@ You beckon the curious $girl to your hefty breasts, having noticed how hungrily
 					Righting yourself, you grab the cowering slave, drag $him to the autosurgery and strap $him face-down with $his legs spread. $He doesn't understand what's happening, but giggles at the sensations running through $his numb body. $He's so drugged and drowsy with @@.red;surgical recovery@@ that it takes a while for $him to figure out what's happened. When $he does, $his poor mind scarcely processes the @@.gold;horror@@ of what's happened. $He spends the rest of the week dimly trying to find where $his balls went.
 					<<if $arcologies[0].FSGenderRadicalist != "unset">>
 						Society @@.green;approves@@ of your promptly gelding $him; this advances the idea that all societal inferiors can be made female.
-						<<= FSChange("GenderRadicalist", 2)>>
+						<<= FutureSocieties.Change("GenderRadicalist", 2)>>
 					<</if>>
 					<<if $arcologies[0].FSRestart != "unset">>
 						Society @@.green;approves@@ of your promptly gelding $him; this advances the idea that all only the elite should breed.
-						<<= FSChange("Eugenics", 2)>>
+						<<= FutureSocieties.Change("Eugenics", 2)>>
 					<</if>>
 					<<set $activeSlave.devotion -= 25>>
 					<<set $activeSlave.trust -= 50>>
@@ -986,7 +986,7 @@ You beckon the curious $girl to your hefty breasts, having noticed how hungrily
 		Since $he came out of the tank rather unhealthy, you give $him a comprehensive medical exam with the help of the remote surgery. You apply care to @@.green;address@@ some of the most outstanding concerns. After the checkup, $he happily @@.mediumaquamarine;expresses $his thanks@@ for making $him feel better.
 		<<if $arcologies[0].FSPaternalist != "unset">>
 			Society @@.green;approves@@ of your promptly seeing to your stock's health; this advances the idea that all slaveowners should look after their slaves.
-			<<= FSChange("Paternalist", 2)>>
+			<<= FutureSocieties.Change("Paternalist", 2)>>
 		<</if>>
 	<</replace>>
 	<</link>>
@@ -1003,11 +1003,11 @@ You beckon the curious $girl to your hefty breasts, having noticed how hungrily
 		You escort $him to the remote surgery and strap $him face-down with $his legs spread. $He doesn't understand what's happening, but giggles at the sensations running through $his numb body. $He's so drugged and drowsy with @@.red;surgical recovery@@ that it takes a while for $him to figure out what's happened. When $he does, $his poor mind scarcely processes the @@.gold;horror@@ of what's happened. $He spends the rest of the week dimly trying to find where $his balls went.
 		<<if $arcologies[0].FSGenderRadicalist != "unset">>
 			Society @@.green;approves@@ of your promptly gelding $him; this advances the idea that all societal inferiors can be made female.
-			<<= FSChange("GenderRadicalist", 2)>>
+			<<= FutureSocieties.Change("GenderRadicalist", 2)>>
 		<</if>>
 		<<if $arcologies[0].FSRestart != "unset" && $activeSlave.pubertyXY == 1>>
 			Society @@.green;approves@@ of your promptly gelding $him; this advances the idea that all only the elite should breed.
-			<<= FSChange("Eugenics", 2)>>
+			<<= FutureSocieties.Change("Eugenics", 2)>>
 		<</if>>
 	<</replace>>
 	<</link>>
diff --git a/src/pregmod/widgets/deathWidgets.tw b/src/pregmod/widgets/deathWidgets.tw
index 287e9aa7a132b14bda088511a4970fe863d5d37e..f1a1672739bd898e7fdf5379f61603922251bb00 100644
--- a/src/pregmod/widgets/deathWidgets.tw
+++ b/src/pregmod/widgets/deathWidgets.tw
@@ -142,7 +142,7 @@
 		<</if>>
 		<<if ($arcologies[0].FSPaternalist != "unset") && ($args[0].actualAge < 75)>>
 			Allowing a slave to die under your care @@.red;severely damages@@ your image as a caring slaveowner and @@.red;calls into question@@ your paternalistic resolve.
-			<<= FSChange("Paternalist", -10)>>
+			<<= FutureSocieties.Change("Paternalist", -10)>>
 		<</if>>
 	<</if>>
 <</widget>>
diff --git a/src/uncategorized/fsDevelopments.tw b/src/uncategorized/fsDevelopments.tw
index 22c7ada6eaa006024dcc0baae2951aaf3d10a8ab..c11d0e860b302238a95a02f3e3db4d7e5b493bb8 100644
--- a/src/uncategorized/fsDevelopments.tw
+++ b/src/uncategorized/fsDevelopments.tw
@@ -285,27 +285,27 @@
 <<if $secExp == 1>>
 	<<if $slaveWatch == 1>>
 		The Slave Mistreatment Watch helps many slaves, easing your citizens into the paternalist ideals it represents.
-		<<= FSChange("Paternalist", 2)>>
+		<<= FutureSocieties.Change("Paternalist", 2)>>
 	<</if>>
 
 	<<if $noSubhumansInArmy == 1>>
 		Your army is free of subhumans, further cementing their lower status in the eyes of your citizens.
-		<<= FSChange("Subjugationist", 2)>>
+		<<= FutureSocieties.Change("Subjugationist", 2)>>
 	<</if>>
 
 	<<if $pregExemption == 1>>
 		Pregnant citizens are allowed and encouraged to avoid military service, making their value evident to all citizens.
-		<<= FSChange("Repopulationist", 2)>>
+		<<= FutureSocieties.Change("RepopulationFocus", 2)>>
 	<</if>>
 
 	<<if $eliteOfficers == 1>>
 		Purity in leadership is fundamental in your army, helping eugenics ideals spread in the populace.
-		<<= FSChange("Eugenics", 2)>>
+		<<= FutureSocieties.Change("Eugenics", 2)>>
 	<</if>>
 
 	<<if $liveTargets == 1>>
 		Disobedient slaves are used in shooting ranges and military drills as live targets, furthering degradationist ideals.
-		<<= FSChange("Degradationist", 2)>>
+		<<= FutureSocieties.Change("Degradationist", 2)>>
 	<</if>>
 <</if>>
 
@@ -316,7 +316,7 @@
 			<<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)>>
+				<<= FutureSocieties.Change(_changed_fs, 4)>>
 				<<continue>>
 			<</if>>
 		<</if>>
diff --git a/src/uncategorized/masterSuiteReport.tw b/src/uncategorized/masterSuiteReport.tw
index fef272985d3aab7d8d040bb0ee1cbdfd55f0c0da..4413b1664d6089b08b43fab50d3341f40687c4f2 100644
--- a/src/uncategorized/masterSuiteReport.tw
+++ b/src/uncategorized/masterSuiteReport.tw
@@ -47,7 +47,7 @@
 	seeing to your pleasure in the master suite.'' Such sexual opulence @@.green;improves@@ your reputation.
 	<<if ($arcologies[0].FSEgyptianRevivalist > 0) && (_DL >= 5)>>
 		Society @@.green;approves@@ of your keeping a large number of women. This advances the Egyptian revivalist ideal of multiple concubinage.
-		<<= FSChange("EgyptianRevivalist", 2)>>
+		<<= FutureSocieties.Change("EgyptianRevivalist", 2)>>
 	<</if>>
 	<<if (_masterSuitePregnantSlaves >= 1)>>
 		The suite is supporting the pregnancies of the slaves
@@ -63,7 +63,7 @@
 		<</if>>
 		<<if ($arcologies[0].FSHedonisticDecadence > 0)>>
 			Society @@.green;approves@@ of the pampering your pregnant harem receives. This advances the ideal that everyone's desires should be fulfilled.
-			<<= FSChange("Hedonism", 1)>>
+			<<= FutureSocieties.Change("Hedonistic", 1)>>
 		<</if>>
 	<</if>>
 	<<if _DL > 1>>
diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw
index c89d32a34ec22fa0703d43ebb5dc7032fdadfc57..ae5878acf0526b0e1f4e849e1e554bc14c0c517f 100644
--- a/src/uncategorized/newSlaveIntro.tw
+++ b/src/uncategorized/newSlaveIntro.tw
@@ -961,7 +961,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 			Since $he's in rough shape, you give $him a comprehensive medical exam with the help of the remote surgery. You apply care to @@.green;address@@ some of the most outstanding concerns. Whatever gratitude $he might have felt for prompt medical attention is balanced by fear of the remote surgery and the nagging (and accurate) feeling that $he's being treated like livestock, but $he does @@.mediumaquamarine;begin to hope@@ $he'll be well treated.
 			<<if $arcologies[0].FSPaternalist != "unset">>
 				Society @@.green;approves@@ of your promptly seeing to your stock's health; this advances the idea that all slaveowners should look after their slaves.
-				<<= FSChange("Paternalist", 2)>>
+				<<= FutureSocieties.Change("Paternalist", 2)>>
 			<</if>>
 		<</replace>>
 		<<set $activeSlave.health += 10>>
@@ -1015,10 +1015,10 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 		You drag $him to the body modification studio and strap $him down with $his $brandTarget clear and defenseless. $He doesn't understand what's coming for a while, even as disinfectant is applied to $his $brandTarget. $He can't see the approaching brand, <<if !canSee($activeSlave)>>of course, <</if>>but eventually $he feels the radiated heat on $his skin and manages to get one inarticulate, wordless noise of terror out before the dreadful sizzling noise and the sweet smell of burning flesh. If $he didn't know $he was a slave before, @@.mediumorchid;$he does now,@@ and $he's got the @@.gold;agonizing@@ @@.red;injury@@ to prove it.
 		<<if ($arcologies[0].FSSubjugationistRace == $activeSlave.race) && ($arcologies[0].FSSubjugationist > 0)>>
 			Society @@.green;approves@@ of your purchase and branding of an inferior $activeSlave.race person; this advances the idea that $activeSlave.race people ought to be enslaved.
-			<<= FSChange("Subjugationist", 2)>>
+			<<= FutureSocieties.Change("Subjugationist", 2)>>
 		<<elseif ($arcologies[0].FSSupremacistRace == $activeSlave.race) && ($arcologies[0].FSSupremacist > 0)>>
 			Society @@.red;disapproves@@ of your purchase and branding of <<if $activeSlave.race == "amerindian" || $activeSlave.race == "asian" || $activeSlave.race == "indo-aryan">>an<<else>>a<</if>> $activeSlave.race person; this reduces support for the idea that $activeSlave.race people are superior.
-			<<= FSChange("Supremacist", -2)>>
+			<<= FutureSocieties.Change("Supremacist", -2)>>
 		<</if>>
 	<</replace>>
 	<<set $activeSlave.brand = $brandDesign>>
@@ -1092,10 +1092,10 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 				<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 50>>
 			<</if>>
 			Society @@.green;approves@@ of your promptly rendering $him sterile; this advances the idea that only the elite should breed.
-			<<= FSChange("Eugenics", 1)>>
+			<<= FutureSocieties.Change("Eugenics", 1)>>
 			<<if $activeSlave.pregKnown == 1>>
 				Since you snuffed out an unworthy life in the process, the sterilization has an even @@.green;bigger impact.@@
-				<<= FSChange("Eugenics", 2)>>
+				<<= FutureSocieties.Change("Eugenics", 2)>>
 			<</if>>
 		<</replace>>
 		<<set $activeSlave.preg = -3>>
@@ -1129,11 +1129,11 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 				You drag $him to the remote surgery and strap $him face-down with $his legs spread. $He doesn't understand what's happening, since the anesthetics totally deprive $him of any sensation. $He's so drugged and drowsy with @@.red;surgical recovery@@ that it takes a while for $him to figure out what's happened. When $he does, $his poor mind scarcely processes the @@.gold;horror@@ of what's happened. $He numbly carries on, terrified.
 				<<if $arcologies[0].FSGenderRadicalist != "unset">>
 					Society @@.green;approves@@ of your promptly gelding $him; this advances the idea that all societal inferiors can be made female.
-					<<= FSChange("GenderRadicalist", 2)>>
+					<<= FutureSocieties.Change("GenderRadicalist", 2)>>
 				<</if>>
 				<<if $arcologies[0].FSRestart != "unset" && $activeSlave.pubertyXY == 1>>
 					Society @@.green;approves@@ of your promptly gelding $him; this advances the idea that all only the elite should breed.
-					<<= FSChange("Eugenics", 2)>>
+					<<= FutureSocieties.Change("Eugenics", 2)>>
 				<</if>>
 			<</replace>>
 			<<set $activeSlave.balls = 0, $activeSlave.scrotum = 0>>
@@ -1147,7 +1147,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 			$He almost passes out from @@.gold;sheer horror.@@ Instead, $he collapses and tries desperately to vomit. Fortunately, $he doesn't have anything to bring up. $He's reduced to impotent weeping and retching as $he begins to process the stress of having had $his parts cut off.
 			<<if $arcologies[0].FSRestart != "unset">>
 				Society @@.green;approves@@ of you stripping away everything from society's inferiors.
-				<<= FSChange("Eugenics", 3)>>
+				<<= FutureSocieties.Change("Eugenics", 3)>>
 			<</if>>
 		<</replace>>
 		<<set $activeSlave.chastityVagina = 0,$activeSlave.dick = 0,$activeSlave.foreskin = 0,$activeSlave.ovaries = 0,$activeSlave.preg = -2,$activeSlave.pregKnown = 0,$activeSlave.pregSource = 0,$activeSlave.pregType = 0,$activeSlave.pregWeek = -4,$activeSlave.vagina = -1,$activeSlave.skill.vaginal = 0>>
@@ -1346,10 +1346,10 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 				<<set $failedElite += 5>>
 			<<elseif $arcologies[0].FSGenderFundamentalist != "unset" && $activeSlave.mpreg == 0>>
 				Society @@.green;approves@@ of your promptly putting a new slave in $him; this advances the idea that all slaves should bear their masters' babies.
-				<<= FSChange("GenderFundamentalist", 2)>>
+				<<= FutureSocieties.Change("GenderFundamentalist", 2)>>
 			<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
 				Society @@.red;is disgusted@@ by you promptly knocking up $his ass; babies come from women, not men.
-				<<= FSChange("GenderFundamentalist", -2)>>
+				<<= FutureSocieties.Change("GenderFundamentalist", -2)>>
 			<</if>>
 		<</replace>>
 		<<set $activeSlave.preg = 1>>
diff --git a/src/uncategorized/nextWeek.tw b/src/uncategorized/nextWeek.tw
index d356b58a95ece518d12c6492f77f4b1de11b2378..9e04cfb6cd3badc42e999ec4ad83577c910e10af 100644
--- a/src/uncategorized/nextWeek.tw
+++ b/src/uncategorized/nextWeek.tw
@@ -183,17 +183,17 @@
 		<<set $slaves[_i].dickAccessory = "none", $slaves[_i].chastityPenis = 0, $slaves[_i].dickTat = 0, $slaves[_i].dickPiercing = 0>>
 	<</if>>
 	<<if $slaves[_i].amp == 1>>
-		<<set $activeSlave.missingArms = 3, $activeSlave.missingLegs = 3>>
+		<<set $slaves[_i].missingArms = 3, $slaves[_i].missingLegs = 3>>
 	<</if>>
 	<<if $slaves[_i].missingArms == 3>>
-		<<if (["hands", "left hand", "left lower arm", "left upper arm", "left wrist", "lower arms", "right hand", "right lower arm", "right upper arm", "right wrist", "upper arms", "wrists"]includes($slaves[_i].brandLocation))>>
+		<<if (["hands", "left hand", "left lower arm", "left upper arm", "left wrist", "lower arms", "right hand", "right lower arm", "right upper arm", "right wrist", "upper arms", "wrists"].includes($slaves[_i].brandLocation))>>
 			<<set $slaves[_i].brand = 0>>
 			<<set $slaves[_i].brandLocation = 0>>
 		<</if>>
 	<</if>>
 	<<if $slaves[_i].missingLegs == 3>>
 		<<set $slaves[_i].heels = 0, $slaves[_i].shoes = "none", $slaves[_i].legAccessory = "none", $slaves[_i].legsTat = 0,  $slaves[_i].heightImplant = 0>>
-		<<if (["ankles", "calves", "feet", "left ankle", "left calf", "left foot", "left thigh", "right ankle", "right calf", "right foot", "right thigh", "thighs"]includes($slaves[_i].brandLocation))>>
+		<<if (["ankles", "calves", "feet", "left ankle", "left calf", "left foot", "left thigh", "right ankle", "right calf", "right foot", "right thigh", "thighs"].includes($slaves[_i].brandLocation))>>
 			<<set $slaves[_i].brand = 0>>
 			<<set $slaves[_i].brandLocation = 0>>
 		<</if>>
diff --git a/src/uncategorized/persBusiness.tw b/src/uncategorized/persBusiness.tw
index 7116025fa293a938e9eb642a3fa966cebe65b51e..77972cff8e4eef5027f06f3f894ff65574eff72d 100644
--- a/src/uncategorized/persBusiness.tw
+++ b/src/uncategorized/persBusiness.tw
@@ -24,7 +24,7 @@
 	@@.red;You are in debt.@@ This week, interest came to <<print cashFormat(_cashX, "personalBusiness")>>.
 	<<if $arcologies[0].FSRomanRevivalist != "unset">>
 		Society @@.red;very strongly disapproves@@ of your being in debt; this damages the idea that you model yourself on what a Roman leader should be.
-		<<= FSChange("RomanRevivalist", -10)>>
+		<<= FutureSocieties.Change("RomanRevivalist", -10)>>
 	<</if>>
 	<<if $cash < 0 && $cash > -25000 && $arcologies[0].FSRestartDecoration == 100>>
 		<<if $eugenicsFullControl != 1>>
@@ -360,7 +360,7 @@
 	<<run cashX(_income, "personalBusiness")>>
 	<<if $arcologies[0].FSRomanRevivalist != "unset">>
 		Society @@.green;approves@@ of your close attention to your own affairs; this advances your image as a <<if $PC.title == 1>>well-rounded Roman man<<else>>responsible Roman lady<</if>>.
-		<<= FSChange("RomanRevivalist", 2)>>
+		<<= FutureSocieties.Change("RomanRevivalist", 2)>>
 	<</if>>
 <<elseif ($cash > 1000)>>
 	<<set _income = Math.trunc(Math.min(3000 * Math.log($cash), $cash * 0.07))>>
diff --git a/src/uncategorized/reputation.tw b/src/uncategorized/reputation.tw
index da4ea4c2e3beaebe5f7261688efa0034e0ff0b67..5935dee8cd39cf78e18daa3a32315a269282883c 100644
--- a/src/uncategorized/reputation.tw
+++ b/src/uncategorized/reputation.tw
@@ -13,10 +13,10 @@ On formal occasions, you are announced as $PCTitle.
 		<<if $nicaeaAchievement == "slaves">>
 			<<if $slaves.length > 50>>
 				@@.green;strongly approve@@ of the large
-				<<= FSChange("ChattelReligionist", 5)>>
+				<<= FutureSocieties.Change("ChattelReligionist", 5)>>
 			<<elseif $slaves.length > 20>>
 				@@.green;approve@@ of the good
-				<<= FSChange("ChattelReligionist", 2)>>
+				<<= FutureSocieties.Change("ChattelReligionist", 2)>>
 			<<else>>
 				are not impressed by the
 			<</if>>
@@ -24,10 +24,10 @@ On formal occasions, you are announced as $PCTitle.
 		<<elseif $nicaeaAchievement == "devotion">>
 			<<if $averageDevotion > 80>>
 				@@.green;strongly approve@@ of the worshipfulness
-				<<= FSChange("ChattelReligionist", 5)>>
+				<<= FutureSocieties.Change("ChattelReligionist", 5)>>
 			<<elseif $averageDevotion > 50>>
 				@@.green;approve@@ of the devotion
-				<<= FSChange("ChattelReligionist", 2)>>
+				<<= FutureSocieties.Change("ChattelReligionist", 2)>>
 			<<else>>
 				are not impressed by the devotion
 			<</if>>
@@ -35,10 +35,10 @@ On formal occasions, you are announced as $PCTitle.
 		<<else>>
 			<<if $averageTrust > 50>>
 				@@.green;strongly approve@@ of the great trust your slaves place in you.
-				<<= FSChange("ChattelReligionist", 5)>>
+				<<= FutureSocieties.Change("ChattelReligionist", 5)>>
 			<<elseif $averageTrust > 20>>
 				@@.green;approve@@ of the trust your slaves place in you.
-				<<= FSChange("ChattelReligionist", 2)>>
+				<<= FutureSocieties.Change("ChattelReligionist", 2)>>
 			<<else>>
 				are not impressed by the fear many of your slaves feel towards you.
 			<</if>>
@@ -143,7 +143,7 @@ On formal occasions, you are announced as $PCTitle.
 			Your reputation is so well-established that society has accepted your notoriously feminine appearance despite how unusual it is for a prominent slaveowner to look like you do.
 			<<if $arcologies[0].FSGenderRadicalist > 30>>
 				Indeed, society sees you as entirely male, since you are powerful, and @@.green;strongly approves@@ of your nonconformity; this advances the redefinition of gender around power.
-				<<= FSChange("GenderRadicalist", 5)>>
+				<<= FutureSocieties.Change("GenderRadicalist", 5)>>
 			<<elseif $arcologies[0].FSGenderFundamentalist > 30>>
 				Indeed, society has been reconciled to female leadership, preferring to see you as a mother figure.
 			<</if>>
@@ -151,14 +151,14 @@ On formal occasions, you are announced as $PCTitle.
 			Society accepts you as an arcology owner, since it has become open-minded about power and gender.
 			<<if $arcologies[0].FSGenderRadicalist > 50>>
 				Indeed, society sees you as fundamentally male, since you are powerful, and @@.green;strongly approves@@ of your audacity; this advances the redefinition of gender around power.
-				<<= FSChange("GenderRadicalist", 5)>>
+				<<= FutureSocieties.Change("GenderRadicalist", 5)>>
 			<</if>>
 		<<else>>
 			Most prominent slaveowners are male, and your obviously feminine appearance makes it @@.red;harder for you to maintain your reputation.@@
 			<<run repX(forceNeg(Math.min(($rep*0.05), 500)), "PCappearance")>>
 			<<if $arcologies[0].FSGenderFundamentalist > 10>>
 				Society @@.red;strongly resents@@ your being an arcology owner; this damages the idea that women should not be in positions of responsibility.
-				<<= FSChange("GenderFundamentalist", -5)>>
+				<<= FutureSocieties.Change("GenderFundamentalist", -5)>>
 			<</if>>
 		<</if>>
 	<<elseif ($PC.boobs == 1) || $PC.title == 0>>
@@ -166,7 +166,7 @@ On formal occasions, you are announced as $PCTitle.
 			Your reputation is so strong that society has accepted your feminine appearance despite how unusual it is for a prominent slaveowner to look like you do.
 			<<if $arcologies[0].FSGenderRadicalist > 30>>
 				Indeed, society sees you as entirely male, since you are powerful, and @@.green;strongly approves@@ of your nonconformity; this advances the redefinition of gender around power.
-				<<= FSChange("GenderRadicalist", 5)>>
+				<<= FutureSocieties.Change("GenderRadicalist", 5)>>
 			<<elseif $arcologies[0].FSGenderFundamentalist > 30>>
 				Indeed, society has been reconciled to your feminine appearance, seeing you as a person apart.
 			<</if>>
@@ -174,14 +174,14 @@ On formal occasions, you are announced as $PCTitle.
 			Society accepts you as an arcology owner, since it has become open-minded anyone who has a cock and fucks.
 			<<if $arcologies[0].FSGenderRadicalist > 30>>
 				Indeed, society sees you as dominant, since you fuck bitches, and @@.green;strongly approves@@ of your nonconformity; this advances the redefinition of gender around power.
-				<<= FSChange("GenderRadicalist", 5)>>
+				<<= FutureSocieties.Change("GenderRadicalist", 5)>>
 			<</if>>
 		<<else>>
 			Most prominent slaveowners are very masculine, and your feminine appearance makes it @@.red;harder for you to maintain your reputation.@@
 			<<run repX(forceNeg(Math.min(($rep*0.025), 250)), "PCappearance")>>
 			<<if $arcologies[0].FSGenderFundamentalist > 30>>
 				Society @@.red;strongly resents@@ your being an arcology owner; this damages the idea that feminine people should not be in positions of responsibility.
-				<<= FSChange("GenderFundamentalist", -5)>>
+				<<= FutureSocieties.Change("GenderFundamentalist", -5)>>
 			<</if>>
 		<</if>>
 	<<elseif ($PC.dick == 0) || ($PC.vagina == 1)>>
@@ -189,7 +189,7 @@ On formal occasions, you are announced as $PCTitle.
 			Your reputation is so strong that society has accepted your unorthodox arrangement downstairs, for an arcology owner.
 			<<if $arcologies[0].FSGenderRadicalist > 30>>
 				Indeed, society sees you as entirely male, since you are powerful, and @@.green;strongly approves@@ of your nonconformity; this advances the redefinition of gender around power.
-				<<= FSChange("GenderRadicalist", 5)>>
+				<<= FutureSocieties.Change("GenderRadicalist", 5)>>
 			<<elseif $arcologies[0].FSGenderFundamentalist > 30>>
 				Indeed, society has been reconciled to your strangeness, seeing you as a person apart.
 			<</if>>
@@ -197,14 +197,14 @@ On formal occasions, you are announced as $PCTitle.
 			Society accepts you as an arcology owner, since it has become open-minded about the exact genital layout of powerful people.
 			<<if $arcologies[0].FSGenderRadicalist > 30>>
 				Indeed, society sees you as dominant, since you are powerful, and @@.green;strongly approves@@ of your nonconformity; this advances the redefinition of gender around power.
-				<<= FSChange("GenderRadicalist", 5)>>
+				<<= FutureSocieties.Change("GenderRadicalist", 5)>>
 			<</if>>
 		<<else>>
 			Most prominent slaveowners are very masculine, and though your unorthodox arrangement downstairs isn't obvious when you're clothed, the rumors are unavoidable and it's @@.red;harder for you to maintain your reputation.@@
 			<<run repX(forceNeg(Math.min(($rep*0.025), 250)), "PCappearance")>>
 			<<if $arcologies[0].FSGenderFundamentalist > 30>>
 				Society @@.red;strongly resents@@ your being an arcology owner; this damages the idea that people who are not men should not be in positions of responsibility.
-				<<= FSChange("GenderFundamentalist", -5)>>
+				<<= FutureSocieties.Change("GenderFundamentalist", -5)>>
 			<</if>>
 		<</if>>
 	<</if>>
@@ -219,16 +219,16 @@ On formal occasions, you are announced as $PCTitle.
 				You are so well regarded that society has acquiesced that getting penetrated is not a sure sign of femininity.
 			<<else>>
 				Society views getting fucked as sign of femininity and is @@.red;strongly against your sexual preferences.@@
-				<<= FSChange("GenderRadicalist", -1)>>
+				<<= FutureSocieties.Change("GenderRadicalist", -1)>>
 				<<run repX(-1000, "PCactions")>>
 			<</if>>
 		<<elseif $arcologies[0].FSGenderFundamentalist != "unset" && $PC.vagina == 1 && $PC.title == 0>>
 			<<if $rep > 10000>>
 				Society has grown accustomed to your efforts enough to not care that you enjoy slave dick. In fact, it even @@.green;strengthens@@ traditional gender roles, even though you insist on breaking them.
-				<<= FSChange("GenderFundamentalist", 1)>>
+				<<= FutureSocieties.Change("GenderFundamentalist", 1)>>
 			<<else>>
 				Society wonders if you would be happier in a whore house getting fucked all day instead of trying to lead an arcology. Your efforts @@.red;strongly support@@ the idea that women should not be in positions of responsibility.
-				<<= FSChange("GenderFundamentalist", -3)>>
+				<<= FutureSocieties.Change("GenderFundamentalist", -3)>>
 				<<run repX(-1000, "PCactions")>>
 			<</if>>
 		<<else>>
@@ -257,7 +257,7 @@ On formal occasions, you are announced as $PCTitle.
 <<if $arcologies[0].FSSupremacist != "unset">>
 	<<if ($PC.race == $arcologies[0].FSSupremacistRace)>>
 		Since you are a member of the $PC.race race, society @@.green;strongly approves@@ of your ownership of the arcology.
-		<<= FSChange("Supremacist", 5)>>
+		<<= FutureSocieties.Change("Supremacist", 5)>>
 	<</if>>
 <<elseif $arcologies[0].FSSubjugationist != "unset">>
 	<<if ($PC.race == $arcologies[0].FSSubjugationistRace)>>
@@ -432,101 +432,101 @@ On formal occasions, you are announced as $PCTitle.
 <<if $arcologies[0].FSRomanRevivalist != "unset">>
 	<<if $mercenaries > 0>>
 		Society @@.green;approves@@ of how you are providing for the defense of the state, as should all citizens of the new Rome.
-		<<= FSChange("RomanRevivalist", $mercenaries)>>
+		<<= FutureSocieties.Change("RomanRevivalist", $mercenaries)>>
 	<</if>>
 		<<if ($slaves.length > 20) && ($cash > 50000)>>
 		Society @@.green;strongly approves@@ of your wealth and prosperity, fit goals for the <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>new Roman man<<else>>rising Roman lady<</if>>.
-		<<= FSChange("RomanRevivalist", 5)>>
+		<<= FutureSocieties.Change("RomanRevivalist", 5)>>
 	<</if>>
 	<<if $language != "Latin">>
 		Continuing to use $language as the lingua franca of $arcologies[0].name rather than the storied Latin @@.red;disappoints@@ society and causes doubt about your revivalist project.
-		<<= FSChange("RomanRevivalist", -2)>>
+		<<= FutureSocieties.Change("RomanRevivalist", -2)>>
 	<</if>>
 <<elseif $arcologies[0].FSAztecRevivalist != "unset">>
 	<<if $PC.visualAge >= 35>>
 		Society @@.green;approves@@ of your advancing age, which advances the ancient Aztec ideal of an experienced leader of the people.
-		<<= FSChange("AztecRevivalist", 1)>>
+		<<= FutureSocieties.Change("AztecRevivalist", 1)>>
 	<</if>>
 	<<if $HeadGirl == 0>>
 		Society @@.red;disapproves@@ of you not having a Head Girl as an advisor and assistant.
-		<<= FSChange("AztecRevivalist", -2)>>
+		<<= FutureSocieties.Change("AztecRevivalist", -2)>>
 	<<else>>
 		Society @@.green;approves@@ of your reliance on a Head Girl as an advisor and assistant.
-		<<= FSChange("AztecRevivalist", 2)>>
+		<<= FutureSocieties.Change("AztecRevivalist", 2)>>
 	<</if>>
 	<<if $PC.warfare < 0>>
 		Society @@.red;greatly disapproves@@ of your feebleness in the arts of war.
-		<<= FSChange("AztecRevivalist", -4)>>
+		<<= FutureSocieties.Change("AztecRevivalist", -4)>>
 	<<elseif $PC.warfare < 50>>
 		Society @@.red;disapproves@@ of you not being properly trained in the arts of war.
-		<<= FSChange("AztecRevivalist", -2)>>
+		<<= FutureSocieties.Change("AztecRevivalist", -2)>>
 	<<else>>
 		Society @@.green;approves@@ of having a leader that is trained in the arts of war.
-		<<= FSChange("AztecRevivalist", 2)>>
+		<<= FutureSocieties.Change("AztecRevivalist", 2)>>
 	<</if>>
 	<<if $language != "Nahuatl">>
 		Continuing to use $language as the lingua franca of $arcologies[0].name rather than the revived Nahuatl @@.red;disappoints@@ society and causes doubt about your revivalist project.
-		<<= FSChange("AztecRevivalist", -3)>>
+		<<= FutureSocieties.Change("AztecRevivalist", -3)>>
 	<</if>>
 <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
 	<<if $racialVarieties.length > 4>>
 		Society @@.green;strongly approves@@ of how you own a cornucopia of different races, which advances the ancient Egyptian ideal of cosmopolitan sex slavery.
-		<<= FSChange("EgyptianRevivalist", 5)>>
+		<<= FutureSocieties.Change("EgyptianRevivalist", 5)>>
 	<</if>>
 	<<if $language != "Ancient Egyptian">>
 		Continuing to use $language as the lingua franca of $arcologies[0].name rather than revived Ancient Egyptian @@.red;disappoints@@ society and causes doubt about your revivalist project.
-		<<= FSChange("EgyptianRevivalist", -2)>>
+		<<= FutureSocieties.Change("EgyptianRevivalist", -2)>>
 	<</if>>
 <<elseif $arcologies[0].FSEdoRevivalist != "unset">>
 	<<set _threshold = Math.trunc($rep/2000)>>
 	<<if $publicServants <= _threshold>>
 		Society @@.red;disapproves@@ of your failure to provide for cultural development by offering public servants or club slaves in a number that befits your reputation.
-		<<= FSChange("EdoRevivalist", -2)>>
+		<<= FutureSocieties.Change("EdoRevivalist", -2)>>
 	<<else>>
 		Society @@.green;approves@@ of your provision for cultural development by offering public servants and club slaves in a number that befits your reputation.
-		<<= FSChange("EdoRevivalist", 2)>>
+		<<= FutureSocieties.Change("EdoRevivalist", 2)>>
 	<</if>>
 	<<if $language != "Japanese">>
 		Continuing to use $language as the lingua franca of $arcologies[0].name rather than pure Japanese @@.red;disappoints@@ society and causes doubt about your revivalist project.
-		<<= FSChange("EdoRevivalist", -2)>>
+		<<= FutureSocieties.Change("EdoRevivalist", -2)>>
 	<</if>>
 <<elseif $arcologies[0].FSArabianRevivalist != "unset">>
 	<<if $fuckSlaves < $rep/3500>>
 		Society @@.red;disapproves@@ of the small size of your harem, feeling that you do not have enough fucktoys or slaves in your master suite for your reputation.
-		<<= FSChange("ArabianRevivalist", -2)>>
+		<<= FutureSocieties.Change("ArabianRevivalist", -2)>>
 	<<else>>
 		Society @@.green;approves@@ of the size of your harem, feeling that you have a good number of fucktoys and slaves in your master suite for your reputation.
-		<<= FSChange("ArabianRevivalist", 2)>>
+		<<= FutureSocieties.Change("ArabianRevivalist", 2)>>
 	<</if>>
 	<<if $language != "Arabic">>
 		Continuing to use $language as the lingua franca of $arcologies[0].name rather than the Arabic in which the word of God was passed to Muhammad @@.red;disappoints@@ society and causes doubt about your revivalist project.
-		<<= FSChange("ArabianRevivalist", -2)>>
+		<<= FutureSocieties.Change("ArabianRevivalist", -2)>>
 	<</if>>
 <<elseif $arcologies[0].FSChineseRevivalist != "unset">>
 	<<if $HeadGirl == 0>>
 		Society @@.red;disapproves@@ of your failure to rely on a Head Girl, as proper imperial administration requires,
-		<<= FSChange("ChineseRevivalist", -2)>>
+		<<= FutureSocieties.Change("ChineseRevivalist", -2)>>
 	<<else>>
 		Society @@.green;approves@@ of your reliance on a Head Girl, as proper imperial administration requires,
-		<<= FSChange("ChineseRevivalist", 2)>>
+		<<= FutureSocieties.Change("ChineseRevivalist", 2)>>
 	<</if>>
 	<<if $Recruiter == 0>>
 		@@.red;disapproves@@ of your failure to maintain a Recruiter to expand the Middle Kingdom,
-		<<= FSChange("ChineseRevivalist", -2)>>
+		<<= FutureSocieties.Change("ChineseRevivalist", -2)>>
 	<<else>>
 		@@.green;approves@@ of your maintaining a Recruiter to expand the Middle Kingdom,
-		<<= FSChange("ChineseRevivalist", 2)>>
+		<<= FutureSocieties.Change("ChineseRevivalist", 2)>>
 	<</if>>
 	<<if $Bodyguard == 0>>
 		and @@.red;disapproves@@ of your failure to keep a Bodyguard as befits a proper imperial palace.
-		<<= FSChange("ChineseRevivalist", -2)>>
+		<<= FutureSocieties.Change("ChineseRevivalist", -2)>>
 	<<else>>
 		and @@.green;approves@@ of your keeping a Bodyguard, as befits a proper imperial palace.
-		<<= FSChange("ChineseRevivalist", 2)>>
+		<<= FutureSocieties.Change("ChineseRevivalist", 2)>>
 	<</if>>
 	<<if $language != "Chinese">>
 		Continuing to use $language as the lingua franca of $arcologies[0].name rather than the Chinese of the Middle Kingdom @@.red;disappoints@@ society and causes doubt about your revivalist project.
-		<<= FSChange("ChineseRevivalist", -2)>>
+		<<= FutureSocieties.Change("ChineseRevivalist", -2)>>
 	<</if>>
 <</if>>
 
@@ -534,19 +534,19 @@ On formal occasions, you are announced as $PCTitle.
 	<<if $IntelligenceEugenicsSMR == 1 || $HeightEugenicsSMR == 1 || $FaceEugenicsSMR == 1>>
 		Society @@.red;disapproves@@ of your policies sterilizing potential mothers. Your insistence on eugenics hinders adoption of your new society.
 		<<set _noEugenics = -1*($IntelligenceEugenicsSMR+$HeightEugenicsSMR+$FaceEugenicsSMR)>>
-		<<= FSChange("Repopulationist", _noEugenics)>>
+		<<= FutureSocieties.Change("RepopulationFocus", _noEugenics)>>
 	<</if>>
 <<elseif $arcologies[0].FSPaternalist != "unset">>
 	<<if $IntelligenceEugenicsSMR == 1 || $HeightEugenicsSMR == 1 || $FaceEugenicsSMR == 1>>
 		Society @@.red;disapproves@@ of your policies forcefully sterilizing slaves, especially when they snuff out the life growing within them.
 		<<set _noEugenics = -1*($IntelligenceEugenicsSMR+$HeightEugenicsSMR+$FaceEugenicsSMR)>>
-		<<= FSChange("Paternalist", _noEugenics)>>
+		<<= FutureSocieties.Change("Paternalist", _noEugenics)>>
 	<</if>>
 <<elseif ($arcologies[0].FSRestart != "unset") && $arcologies[0].FSPaternalist == "unset">>
 	<<if ($IntelligenceEugenicsSMR == 1 || $HeightEugenicsSMR == 1 || $FaceEugenicsSMR == 1) && $arcologies[0].FSRestartSMR != 1>>
 		Society @@.green; approves@@ of your slave eugenics policies, easing them into more thorough eugenics.
 		<<set _yesEugenics = ($IntelligenceEugenicsSMR+$HeightEugenicsSMR+$FaceEugenicsSMR)>>
-		<<= FSChange("Eugenics", _yesEugenics)>>
+		<<= FutureSocieties.Change("Eugenics", _yesEugenics)>>
 		<<set $failedElite -= 1*($IntelligenceEugenicsSMR+$HeightEugenicsSMR+$FaceEugenicsSMR)>>
 	<<elseif $arcologies[0].FSRestartSMR == 1>>
 		<<set $failedElite -= 2*($IntelligenceEugenicsSMR+$HeightEugenicsSMR+$FaceEugenicsSMR)>>
@@ -565,20 +565,20 @@ On formal occasions, you are announced as $PCTitle.
 <<if $shelterAbuse > 5>>
 	<<if $arcologies[0].FSPaternalist != "unset">>
 		You are on the Slave Shelter's public list of abusive slaveowners. Society @@.red;disapproves@@ of your falling foul of such a well regarded charity.
-		<<= FSChange("Paternalist", -2)>>
+		<<= FutureSocieties.Change("Paternalist", -2)>>
 	<<elseif $arcologies[0].FSDegradationist != "unset">>
 		You are on the Slave Shelter's public list of abusive slaveowners. Your citizens find this hilarious, and @@.green;approve@@ of your taking advantage of a pack of idiots.
-		<<= FSChange("Degradationist", 2)>>
+		<<= FutureSocieties.Change("Degradationist", 2)>>
 	<</if>>
 <</if>>
 
 <<if $TCR.schoolPresent == 1>>
 	<<if $arcologies[0].FSRestart != "unset">>
 		Your Eugenics focused society @@.red;disagrees@@ with the local branch of The Cattle Ranch's views on slave breeding. Until society sees them as nothing more than mindless cattle and not human, they are in conflict with current reproduction standards.
-		<<= FSChange("Eugenics", -1)>>
+		<<= FutureSocieties.Change("Eugenics", -1)>>
 	<<elseif $arcologies[0].FSPaternalist != "unset">>
 		While they can't stop what happens to slaves outside of your arcology, they can @@.red;disapprove and protest@@ you allowing a branch of the mentally and physically abusive Cattle Ranch to be established in your arcology.
-		<<= FSChange("Paternalist", -2)>>
+		<<= FutureSocieties.Change("Paternalist", -2)>>
 	<</if>>
 <</if>>
 
@@ -612,7 +612,7 @@ On formal occasions, you are announced as $PCTitle.
 	Your citizens
 	<<if $arcologies[0].FSPaternalist >= 80>>
 		are so paternalistic that they @@.green;approve@@ of
-		<<= FSChange("Paternalist", 2)>>
+		<<= FutureSocieties.Change("Paternalist", 2)>>
 	<<elseif $arcologies[0].FSPaternalist >= 40>>
 		are paternalistic enough to tolerate
 	<<else>>
@@ -625,23 +625,23 @@ On formal occasions, you are announced as $PCTitle.
 <<if $citizenOrphanageTotal > 0>>
 	<<if $arcologies[0].FSPaternalist != "unset">>
 		The public @@.green;approves@@ of the way you're providing for $citizenOrphanageTotal of your slaves' children to be raised as citizens.
-		<<= FSChange("Paternalist", $citizenOrphanageTotal)>>
+		<<= FutureSocieties.Change("Paternalist", $citizenOrphanageTotal)>>
 		<<if $privateOrphanageTotal > 0>>
 			Raising <<print num($privateOrphanageTotal)>> of your slaves' children privately is considered even more @@.green;impressive.@@
 			<<set _care = $privateOrphanageTotal*2>>
-			<<= FSChange("Paternalist", _care)>>
+			<<= FutureSocieties.Change("Paternalist", _care)>>
 		<</if>>
 	<<elseif $arcologies[0].FSDegradationist != "unset">>
 		The public @@.red;disapproves@@ of the way you're providing for $citizenOrphanageTotal of your slaves' children to be raised as citizens.
 		<<set _care = -$citizenOrphanageTotal>>
-		<<= FSChange("Degradationist", _care)>>
+		<<= FutureSocieties.Change("Degradationist", _care)>>
 		<<if $privateOrphanageTotal > 0>>Fortunately your raising slaves' children privately is not publicly known.<</if>>
 	<</if>>
 <<elseif $privateOrphanageTotal > 0>>
 	<<if $arcologies[0].FSPaternalist != "unset">>
 		Raising <<print num($privateOrphanageTotal)>> of your slaves' children privately is considered extremely @@.green;impressive.@@
 		<<set _care = $privateOrphanageTotal*2>>
-		<<= FSChange("Paternalist", _care)>>
+		<<= FutureSocieties.Change("Paternalist", _care)>>
 	<<elseif $arcologies[0].FSDegradationist != "unset">>
 		Fortunately your raising slaves' children privately is not publicly known.
 	<</if>>
@@ -649,7 +649,7 @@ On formal occasions, you are announced as $PCTitle.
 <<if $breederOrphanageTotal > 0 && $arcologies[0].FSRepopulationFocus != "unset">>
 	The public @@.green;approves@@ of the way you've dedicated <<print num($breederOrphanageTotal)>> of your slaves' children to be raised into future breeders.
 	<<set _futureBreeders = Math.round((($breederOrphanageTotal/100)+1))>>
-	<<= FSChange("Repopulationist", _futureBreeders)>>
+	<<= FutureSocieties.Change("RepopulationFocus", _futureBreeders)>>
 <</if>>
 
 <<if $arcologies[0].FSNull != "unset">>
diff --git a/src/uncategorized/saDevotion.tw b/src/uncategorized/saDevotion.tw
index d5a910ae55cc8da24e638eb9aedee598c4c95c1e..ac0879165c6f8f30bf4f0dab9068ed324e0757f7 100644
--- a/src/uncategorized/saDevotion.tw
+++ b/src/uncategorized/saDevotion.tw
@@ -242,7 +242,7 @@
 				Since $he loves you, $he has mixed feelings about the prospect, but $he prefers to think of it as your way of looking after $him. It's $his favorite subject, and $his strong feelings about it
 				<<if $arcologies[0].FSPaternalist != "unset">>
 					advances paternalistic ideals and @@.green;improves your reputation.@@
-					<<= FSChange("Paternalist", 2)>>
+					<<= FutureSocieties.Change("Paternalist", 2)>>
 				<<else>>
 					@@.green;improves your reputation.@@
 					<<run repX($FSSingleSlaveRep*2, "retirement", $slaves[$i])>>
@@ -261,7 +261,7 @@
 				Since $he loves you, $he has mixed feelings about the prospect, but $he prefers to think of it as your way of looking after $him. This
 				<<if $arcologies[0].FSPaternalist != "unset">>
 					advances paternalistic ideals and @@.green;improves your reputation.@@
-					<<= FSChange("Paternalist", 2)>>
+					<<= FutureSocieties.Change("Paternalist", 2)>>
 				<<else>>
 					@@.green;improves your reputation.@@
 					<<run repX($FSSingleSlaveRep, "retirement", $slaves[$i])>>
@@ -336,7 +336,7 @@
 				Since $he loves you, $he has mixed feelings about the prospect, but $he prefers to think of it as your way of looking after $him. It's $his favorite subject, and $his strong feelings about it
 				<<if $arcologies[0].FSPaternalist != "unset">>
 					advances paternalistic ideals and @@.green;improves your reputation.@@
-					<<= FSChange("Paternalist", 2)>>
+					<<= FutureSocieties.Change("Paternalist", 2)>>
 				<<else>>
 					@@.green;improves your reputation.@@
 					<<run repX($FSSingleSlaveRep*2, "retirement", $slaves[$i])>>
@@ -355,7 +355,7 @@
 				Since $he loves you, $he has mixed feelings about the prospect, but $he prefers to think of it as your way of looking after $him. This
 				<<if $arcologies[0].FSPaternalist != "unset">>
 					advances paternalistic ideals and @@.green;improves your reputation.@@
-					<<= FSChange("Paternalist", 2)>>
+					<<= FutureSocieties.Change("Paternalist", 2)>>
 				<<else>>
 					@@.green;improves your reputation.@@
 					<<run repX($FSSingleSlaveRep, "retirement", $slaves[$i])>>
diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw
index 955cdcd441c82a7ce500aff67bba08f2ff2c62cc..f5d5fe4205c93acc2f4feb343445bfd1cdebae4f 100644
--- a/src/uncategorized/saLongTermEffects.tw
+++ b/src/uncategorized/saLongTermEffects.tw
@@ -2716,7 +2716,7 @@
 									<<set $slaves[$i].fetishStrength = 100>>
 									<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 										Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-										<<= FSChange("Hedonism", 2)>>
+										<<= FutureSocieties.Change("Hedonistic", 2)>>
 									<</if>>
 								<</if>>
 							<<elseif $slaves[$i].aphrodisiacs > 0 || $slaves[$i].inflationType == "aphrodisiac">>
@@ -2726,7 +2726,7 @@
 									<<set $slaves[$i].fetishStrength = 100>>
 									<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 										Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-										<<= FSChange("Hedonism", 2)>>
+										<<= FutureSocieties.Change("Hedonistic", 2)>>
 									<</if>>
 								<</if>>
 							<</if>>
@@ -2739,7 +2739,7 @@
 								<<set $slaves[$i].fetishStrength = 100>>
 								<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 									Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-									<<= FSChange("Hedonism", 2)>>
+									<<= FutureSocieties.Change("Hedonistic", 2)>>
 								<</if>>
 							<<elseif $slaves[$i].inflation != 0 && $slaves[$i].inflationType == "cum">>
 								In addition to being an orally fixated cumslut, $he is required to keep $his belly bloated with cum at all times, making $his life revolve around being full of cum. @@.yellow;$He's become psychologically addicted to cum.@@
@@ -2747,7 +2747,7 @@
 								<<set $slaves[$i].fetishStrength = 100>>
 								<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 									Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-									<<= FSChange("Hedonism", 2)>>
+									<<= FutureSocieties.Change("Hedonistic", 2)>>
 								<</if>>
 							<<elseif $cockFeeder != 0>>
 								In addition to being an orally fixated cumslut, $he eats by sucking dick. @@.yellow;$He's become psychologically addicted to cum.@@
@@ -2755,7 +2755,7 @@
 								<<set $slaves[$i].fetishStrength = 100>>
 								<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 									Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-									<<= FSChange("Hedonism", 2)>>
+									<<= FutureSocieties.Change("Hedonistic", 2)>>
 								<</if>>
 							<<elseif $slaves[$i].aphrodisiacs > 0 || $slaves[$i].inflationType == "aphrodisiac">>
 								<<if $slaves[$i].addict > 2>>
@@ -2764,7 +2764,7 @@
 									<<set $slaves[$i].fetishStrength = 100>>
 									<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 										Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-										<<= FSChange("Hedonism", 2)>>
+										<<= FutureSocieties.Change("Hedonistic", 2)>>
 									<</if>>
 								<</if>>
 							<</if>>
@@ -2779,7 +2779,7 @@
 										<<set $slaves[$i].fetishStrength = 100>>
 										<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 											Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-											<<= FSChange("Hedonism", 2)>>
+											<<= FutureSocieties.Change("Hedonistic", 2)>>
 										<</if>>
 									<<elseif $slaves[$i].chastityVagina>>
 										$He has a powerful sex drive, and since $his pussy's off limits, $he sinks ever deeper into $his identity as a helpless anal slut. @@.yellow;$He's become psychologically addicted to getting assfucked.@@
@@ -2787,7 +2787,7 @@
 										<<set $slaves[$i].fetishStrength = 100>>
 										<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 											Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-											<<= FSChange("Hedonism", 2)>>
+											<<= FutureSocieties.Change("Hedonistic", 2)>>
 										<</if>>
 									<</if>>
 								<</if>>
@@ -2798,7 +2798,7 @@
 									<<set $slaves[$i].fetishStrength = 100>>
 									<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 										Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-										<<= FSChange("Hedonism", 2)>>
+										<<= FutureSocieties.Change("Hedonistic", 2)>>
 									<</if>>
 								<</if>>
 							<</if>>
@@ -2811,7 +2811,7 @@
 								<<set $slaves[$i].fetishStrength = 100>>
 								<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 									Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-									<<= FSChange("Hedonism", 2)>>
+									<<= FutureSocieties.Change("Hedonistic", 2)>>
 								<</if>>
 							<<elseif $slaves[$i].aphrodisiacs > 0 || $slaves[$i].inflationType == "aphrodisiac">>
 								<<if $slaves[$i].addict > 2>>
@@ -2820,7 +2820,7 @@
 									<<set $slaves[$i].fetishStrength = 100>>
 									<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 										Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-										<<= FSChange("Hedonism", 2)>>
+										<<= FutureSocieties.Change("Hedonistic", 2)>>
 									<</if>>
 								<</if>>
 							<</if>>
@@ -2833,7 +2833,7 @@
 								<<set $slaves[$i].fetishStrength = 100>>
 								<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 									Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-									<<= FSChange("Hedonism", 2)>>
+									<<= FutureSocieties.Change("Hedonistic", 2)>>
 								<</if>>
 							<<elseif $slaves[$i].drugs == "hyper breast injections">>
 								$He loves $his tits, and watching them steadily swell from the hyper injections starts to hold more fascination for $him than mere sex. @@.yellow;$His sexual identity is now dominated by $his swelling boobs.@@
@@ -2841,7 +2841,7 @@
 								<<set $slaves[$i].fetishStrength = 100>>
 								<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 									Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-									<<= FSChange("Hedonism", 2)>>
+									<<= FutureSocieties.Change("Hedonistic", 2)>>
 								<</if>>
 							<<elseif $slaves[$i].geneticQuirks.gigantomastia == 2 && $slaves[$i].boobs-$slaves[$i].boobsImplant >= 25000>>
 								$He loves $his tits, and measuring their weekly growth from gigantomastia starts to hold more fascination for $him than mere sex. @@.yellow;$His sexual identity is now dominated by $his swelling boobs.@@
@@ -2849,7 +2849,7 @@
 								<<set $slaves[$i].fetishStrength = 100>>
 								<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 									Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-									<<= FSChange("Hedonism", 2)>>
+									<<= FutureSocieties.Change("Hedonistic", 2)>>
 								<</if>>
 							<<elseif ($slaves[$i].hormoneBalance >= 100) && ($slaves[$i].boobs < 1000)>>
 								$He loves $his tits, and feeling them grow under female hormone treatments starts to hold more fascination for $him than mere sex. @@.yellow;$His sexual identity is now dominated by $his swelling boobs.@@
@@ -2857,7 +2857,7 @@
 								<<set $slaves[$i].fetishStrength = 100>>
 								<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 									Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-									<<= FSChange("Hedonism", 2)>>
+									<<= FutureSocieties.Change("Hedonistic", 2)>>
 								<</if>>
 							<<elseif $slaves[$i].aphrodisiacs > 0 || $slaves[$i].inflationType == "aphrodisiac">>
 								<<if $slaves[$i].addict > 2>>
@@ -2866,7 +2866,7 @@
 									<<set $slaves[$i].fetishStrength = 100>>
 									<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 										Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-										<<= FSChange("Hedonism", 2)>>
+										<<= FutureSocieties.Change("Hedonistic", 2)>>
 									<</if>>
 								<</if>>
 							<</if>>
@@ -2880,7 +2880,7 @@
 									<<set $slaves[$i].fetishStrength = 100>>
 									<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 										Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-										<<= FSChange("Hedonism", 2)>>
+										<<= FutureSocieties.Change("Hedonistic", 2)>>
 									<</if>>
 								<</if>>
 							<<elseif $slaves[$i].aphrodisiacs > 0 || $slaves[$i].inflationType == "aphrodisiac">>
@@ -2890,7 +2890,7 @@
 									<<set $slaves[$i].fetishStrength = 100>>
 									<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 										Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-										<<= FSChange("Hedonism", 2)>>
+										<<= FutureSocieties.Change("Hedonistic", 2)>>
 									<</if>>
 								<</if>>
 							<</if>>
@@ -2905,7 +2905,7 @@
 										<<set $slaves[$i].fetishStrength = 100>>
 										<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 											Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-											<<= FSChange("Hedonism", 2)>>
+											<<= FutureSocieties.Change("Hedonistic", 2)>>
 										<</if>>
 									<</if>>
 								<</if>>
@@ -2916,7 +2916,7 @@
 									<<set $slaves[$i].fetishStrength = 100>>
 									<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 										Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-										<<= FSChange("Hedonism", 2)>>
+										<<= FutureSocieties.Change("Hedonistic", 2)>>
 									<</if>>
 								<</if>>
 							<</if>>
@@ -2929,7 +2929,7 @@
 								<<set $slaves[$i].fetishStrength = 100>>
 								<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 									Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-									<<= FSChange("Hedonism", 2)>>
+									<<= FutureSocieties.Change("Hedonistic", 2)>>
 								<</if>>
 							<<elseif ($slaves[$i].assignment == "work in the dairy") && ($dairyRestraintsSetting >= 2)>>
 								Strapped into a milking machine's tender, penetrative embrace, $his masochistic tendencies darken into sexual appreciation for $his life as a human factory. @@.yellow;$He's descended into true self hatred.@@
@@ -2937,7 +2937,7 @@
 								<<set $slaves[$i].fetishStrength = 100>>
 								<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 									Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-									<<= FSChange("Hedonism", 2)>>
+									<<= FutureSocieties.Change("Hedonistic", 2)>>
 								<</if>>
 							<<elseif $slaves[$i].aphrodisiacs > 0 || $slaves[$i].inflationType == "aphrodisiac">>
 								<<if $slaves[$i].addict > 2>>
@@ -2946,7 +2946,7 @@
 									<<set $slaves[$i].fetishStrength = 100>>
 									<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 										Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-										<<= FSChange("Hedonism", 2)>>
+										<<= FutureSocieties.Change("Hedonistic", 2)>>
 									<</if>>
 								<</if>>
 							<</if>>
@@ -2964,7 +2964,7 @@
 								<<set $slaves[$i].fetishStrength = 100>>
 								<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 									Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-									<<= FSChange("Hedonism", 2)>>
+									<<= FutureSocieties.Change("Hedonistic", 2)>>
 								<</if>>
 							<<elseif $slaves[$i].bellyPreg > 100 && $slaves[$i].pregKnown == 1 && $slaves[$i].pregSource == -1 && $slaves[$i].breedingMark == 1 && $propOutcome == 1 && $slaves[$i].devotion > 75>>
 								$He's been marked to be the bearer of your offspring and is growing larger by the day with your child. $He is to be nothing more than a vessel for your children, and as such @@.yellow;has become obsessed with carrying them.@@
@@ -2972,7 +2972,7 @@
 								<<set $slaves[$i].fetishStrength = 100>>
 								<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 									Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-									<<= FSChange("Hedonism", 2)>>
+									<<= FutureSocieties.Change("Hedonistic", 2)>>
 								<</if>>
 							<<elseif $slaves[$i].bellyPreg >= 120000>>
 								$He's so overfull with life that $he starts to pay much more sexual attention to pregnancy than to impregnation. @@.yellow;$He's become obsessed with breeding.@@
@@ -2980,7 +2980,7 @@
 								<<set $slaves[$i].fetishStrength = 100>>
 								<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 									Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-									<<= FSChange("Hedonism", 2)>>
+									<<= FutureSocieties.Change("Hedonistic", 2)>>
 								<</if>>
 							<<elseif $slaves[$i].counter.births > 10>>
 								$He's been bred so much that $he starts to pay as much sexual attention to pregnancy as to impregnation. @@.yellow;$He's become obsessed with breeding.@@
@@ -2988,7 +2988,7 @@
 								<<set $slaves[$i].fetishStrength = 100>>
 								<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 									Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-									<<= FSChange("Hedonism", 2)>>
+									<<= FutureSocieties.Change("Hedonistic", 2)>>
 								<</if>>
 							<<elseif ($slaves[$i].assignment == "work in the dairy") && ($dairyPregSetting >= 2) && ($slaves[$i].pregKnown == 1)>>
 								With $his womanhood fucked full of cum and fertility drugs, $his pregnancy fetish deepens into true perversity. @@.yellow;$He's become obsessed with breeding.@@
@@ -2996,7 +2996,7 @@
 								<<set $slaves[$i].fetishStrength = 100>>
 								<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 									Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-									<<= FSChange("Hedonism", 2)>>
+									<<= FutureSocieties.Change("Hedonistic", 2)>>
 								<</if>>
 							<<elseif $slaves[$i].aphrodisiacs > 0 || $slaves[$i].inflationType == "aphrodisiac">>
 								<<if $slaves[$i].addict > 2>>
@@ -3005,7 +3005,7 @@
 									<<set $slaves[$i].fetishStrength = 100>>
 									<<if $arcologies[0].FSHedonisticDecadence != "unset">>
 										Allowing $him to indulge in $his fetish to the point of obsession advances hedonism and @@.green;bolsters your reputation.@@
-										<<= FSChange("Hedonism", 2)>>
+										<<= FutureSocieties.Change("Hedonistic", 2)>>
 									<</if>>
 								<</if>>
 							<</if>>
@@ -5183,19 +5183,19 @@
 				<<else>>
 					Society @@.red;disapproves@@ of your keeping a slave of the $arcologies[0].FSSupremacistRace race in a degrading, public role; this also holds back acceptance of $arcologies[0].FSSupremacistRace superiority.
 				<</if>>
-				<<= FSChangePorn("Supremacist", -1)>>
+				<<= FutureSocieties.ChangePorn("Supremacist", -1)>>
 				<<switch $slaves[$i].assignment>>
 				<<case "work in the brothel">><<run getSlaveStatisticData($slaves[$i], $facility.brothel).rep -= $FSSingleSlaveRep*($arcologies[0].FSSupremacist/$FSLockinLevel)>>
 				<</switch>>
 			<<elseif ($slaves[$i].assignment == "be your Head Girl")>>
 				Society @@.green;strongly approves@@ of your keeping a slave of the $arcologies[0].FSSupremacistRace race in a position of leadership as your Head Girl, advancing the notion that those of the $arcologies[0].FSSupremacistRace race should be in positions of authority over others.
-				<<= FSChangePorn("Supremacist", 2)>>
+				<<= FutureSocieties.ChangePorn("Supremacist", 2)>>
 			<<elseif ($slaves[$i].assignment == "recruit girls")>>
 				Society @@.green;strongly approves@@ of your keeping a slave of the $arcologies[0].FSSupremacistRace race in a position of leadership as your recruiter, advancing the notion that it is only natural that those of the $arcologies[0].FSSupremacistRace race should lead the charge in enslaving others.
-				<<= FSChangePorn("Supremacist", 2)>>
+				<<= FutureSocieties.ChangePorn("Supremacist", 2)>>
 			<<elseif ($slaves[$i].assignment == "be your Concubine")>>
 				Society @@.green;strongly approves@@ of your keeping a slave of the $arcologies[0].FSSupremacistRace race in a position of importance as your concubine, advancing the notion that the most favored of your bedslaves should naturally be of the $arcologies[0].FSSupremacistRace race.
-				<<= FSChangePorn("Supremacist", 2)>>
+				<<= FutureSocieties.ChangePorn("Supremacist", 2)>>
 				/* Code contributed by Anon1888 */
 			<<else>>
 				Society does not disapprove of your keeping a slave of the $arcologies[0].FSSupremacistRace race, since $he is not in a publicly degrading role.
@@ -5206,20 +5206,20 @@
 					<<if def _saLTE>>
 						<<if ($slaves[$i].race != _saLTE.race) && ($arcologies[0].FSSupremacistRace == "mixed race")>>
 							Society @@.lightgreen;approves@@ of your using slave breeders like $slaves[$i].slaveName to propagate the $arcologies[0].FSSupremacistRace civilization.
-							<<= FSChangePorn("Supremacist", 2)>>
+							<<= FutureSocieties.ChangePorn("Supremacist", 2)>>
 						<<elseif $slaves[$i].race != _saLTE.race>>
 							Society @@.red;strongly disapproves@@ of your allowing a pure $arcologies[0].FSSupremacistRace slave to be miscegenated by _saLTE.slaveName.
-							<<= FSChangePorn("Supremacist", -2)>>
+							<<= FutureSocieties.ChangePorn("Supremacist", -2)>>
 						<<else>>
 							Society @@.green;strongly approves@@ of your using slave breeders like $slaves[$i].slaveName to propagate the $arcologies[0].FSSupremacistRace civilization.
-							<<= FSChangePorn("Supremacist", 2)>>
+							<<= FutureSocieties.ChangePorn("Supremacist", 2)>>
 						<</if>>
 					<</if>>
 				<</if>>
 			<</if>>
 			<<if $slaves[$i].fuckdoll > 0>>
 				Society @@.red;strongly disapproves@@ of your owning a $arcologies[0].FSSupremacistRace Fuckdoll.
-				<<= FSChangePorn("Supremacist", -2)>>
+				<<= FutureSocieties.ChangePorn("Supremacist", -2)>>
 			<</if>>
 		<<else>>
 			<<if $arcologies[0].FSSupremacist >= $FSLockinLevel*0.5>>
@@ -5227,10 +5227,10 @@
 			<<else>>
 				Society @@.green;approves@@ of your keeping a slave of an inferior race; this also advances $arcologies[0].FSSupremacistRace superiority.
 			<</if>>
-			<<= FSChangePorn("Supremacist", 1)>>
+			<<= FutureSocieties.ChangePorn("Supremacist", 1)>>
 			<<if $slaves[$i].fuckdoll > 0>>
 				Society @@.green;approves@@ of your keeping a Fuckdoll of an inferior race.
-				<<= FSChangePorn("Supremacist", 1)>>
+				<<= FutureSocieties.ChangePorn("Supremacist", 1)>>
 			<</if>>
 		<</if>>
 	<</if>>
@@ -5242,16 +5242,16 @@
 			<<else>>
 				Society @@.green;approves@@ of your keeping a slave of the subject $arcologies[0].FSSubjugationistRace race; this also advances $arcologies[0].FSSubjugationistRace inferiority.
 			<</if>>
-			<<= FSChangePorn("Subjugationist", 1)>>
+			<<= FutureSocieties.ChangePorn("Subjugationist", 1)>>
 			<<if $slaves[$i].ovaries == 0>>
 				<<if $slaves[$i].balls == 0 || $slaves[$i].vasectomy == 1>>
 					Society @@.green;approves@@ of $slaves[$i].slaveName's <<if $slaves[$i].vasectomy == 1 && $slaves[$i].balls > 0>>vasectomy<<elseif $slaves[$i].dick > 0>>gelding<<else>>sterilization<</if>>, which ensures that $he will not propagate the $arcologies[0].FSSubjugationistRace race.
-					<<= FSChangePorn("Subjugationist", 1)>>
+					<<= FutureSocieties.ChangePorn("Subjugationist", 1)>>
 				<</if>>
 			<</if>>
 			<<if $slaves[$i].fuckdoll > 0>>
 				Society @@.green;approves@@ of your keeping a Fuckdoll of the $arcologies[0].FSSubjugationistRace race.
-				<<= FSChangePorn("Subjugationist", 1)>>
+				<<= FutureSocieties.ChangePorn("Subjugationist", 1)>>
 			<</if>>
 		<<else>>
 			<<if $slaves[$i].pregKnown == 1 && $slaves[$i].pregSource > 0>>
@@ -5259,7 +5259,7 @@
 				<<if ndef _lte>>@@.red;Error, pregSource not found.@@<</if>>
 				<<if _lte.race == $arcologies[0].FSSubjugationistRace>>
 					Society @@.red;strongly disapproves@@ of your allowing $slaves[$i].slaveName to be miscegenated by a $arcologies[0].FSSubjugationistRace subhuman like _lte.slaveName.
-					<<= FSChangePorn("Subjugationist", -2)>>
+					<<= FutureSocieties.ChangePorn("Subjugationist", -2)>>
 				<</if>>
 			<</if>>
 		<</if>>
@@ -5268,52 +5268,52 @@
 	<<if $arcologies[0].FSYouthPreferentialist != "unset">>
 		<<if ($slaves[$i].geneMods.NCS > 0) && ($slaves[$i].visualAge <= 18)>>
 			Society @@.green;strongly approves@@ of you keeping $slaves[$i].slaveName forever young and youthening; this furthers the fashion for young slaves.
-			<<= FSChangePorn("YouthPreferentialist", 2)>>
+			<<= FutureSocieties.ChangePorn("YouthPreferentialist", 2)>>
 		<<elseif ($slaves[$i].visualAge < 30)>>
 			Society @@.green;approves@@ of $slaves[$i].slaveName's youthful body; $he furthers the fashion for young slaves.
 			<<set _youth_rep_change = ((30-$slaves[$i].visualAge)/5)>>
-			<<= FSChangePorn("YouthPreferentialist", _youth_rep_change)>>
+			<<= FutureSocieties.ChangePorn("YouthPreferentialist", _youth_rep_change)>>
 		<</if>>
 	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
 		<<if ($slaves[$i].visualAge >= 30)>>
 			Society @@.green;approves@@ of $slaves[$i].slaveName's mature body; $he furthers the fashion for older ladies.
 			<<set _maturity_rep_change = (($slaves[$i].visualAge-25)/5)>>
-			<<= FSChangePorn("MaturityPreferentialist", _maturity_rep_change)>>
+			<<= FutureSocieties.ChangePorn("MaturityPreferentialist", _maturity_rep_change)>>
 		<</if>>
 	<</if>>
 
 	<<if $arcologies[0].FSGenderRadicalist != "unset">>
 		<<if ($slaves[$i].balls > 0) && ($slaves[$i].dick > 0) && ($slaves[$i].hormoneBalance >= 100)>>
 			Society @@.green;approves@@ of your heavy hormonal feminization of $slaves[$i].slaveName; this advances public interest in <<= $girl>>s with soft little dicks.
-			<<= FSChangePorn("GenderRadicalist", 1)>>
+			<<= FutureSocieties.ChangePorn("GenderRadicalist", 1)>>
 		<<elseif ($slaves[$i].balls > 0) && ($slaves[$i].pubertyXY == 0) && ($slaves[$i].physicalAge >= $potencyAge)>>
 			Society @@.green;approves@@ of you keeping $slaves[$i].slaveName from going through puberty; this advances public interest in <<= $girl>>s with soft little dicks.
-			<<= FSChangePorn("GenderRadicalist", 2)>>
+			<<= FutureSocieties.ChangePorn("GenderRadicalist", 2)>>
 		<<elseif ($slaves[$i].dick > 0) && ($slaves[$i].balls == 0)>>
 			Society @@.green;approves@@ of your keeping a gelded slave; this advances public interest in <<= $girl>>s with soft dickclits.
-			<<= FSChangePorn("GenderRadicalist", 1)>>
+			<<= FutureSocieties.ChangePorn("GenderRadicalist", 1)>>
 		<<elseif ($slaves[$i].dick > 0) && ($slaves[$i].anus > 0) && ($slaves[$i].devotion > 20) && ($slaves[$i].trust >= -20)>>
 			Society @@.green;approves@@ of your keeping a contented dickgirl bottom; this advances public interest in <<= $girl>>s who get hard when assfucked.
-			<<= FSChangePorn("GenderRadicalist", 1)>>
+			<<= FutureSocieties.ChangePorn("GenderRadicalist", 1)>>
 		<</if>>
 	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
 		<<if $arcologies[0].FSRestart == "unset">>
 			<<if ($slaves[$i].bellyPreg >= 1500)>>
 				Society <<if $arcologies[0].FSGenderFundamentalist >= $FSLockinLevel*0.5>>@@.green;strongly approves@@<<else>>@@.green;approves@@<</if>> of your keeping a pregnant slave; this also supports the idea that slave women should bear babies.
-				<<= FSChangePorn("GenderFundamentalist", 1)>>
+				<<= FutureSocieties.ChangePorn("GenderFundamentalist", 1)>>
 			<<elseif ($slaves[$i].preg == 0) && isFertile($slaves[$i])>>
 				Society <<if $arcologies[0].FSGenderFundamentalist >= $FSLockinLevel*0.5>>@@.green;strongly approves@@<<else>>@@.green;approves@@<</if>> of your keeping a slave fertile; this also supports the idea that slave women should bear babies.
-				<<= FSChangePorn("GenderFundamentalist", 1)>>
+				<<= FutureSocieties.ChangePorn("GenderFundamentalist", 1)>>
 			<</if>>
 		<<else>>
 			<<if ($slaves[$i].hips > $slaves[$i].shoulders)>>
 				Society @@.green;approves@@ of keeping a slave with a feminine figure.
-				<<= FSChangePorn("GenderFundamentalist", 1)>>
+				<<= FutureSocieties.ChangePorn("GenderFundamentalist", 1)>>
 			<</if>>
 		<</if>>
 		<<if ($slaves[$i].devotion <= 95) && canPenetrate($slaves[$i])>>
 			Society @@.red;disapproves@@ of $slaves[$i].slaveName's stiff, unrestrained dick, since $he isn't even worshipful of you.
-			<<= FSChangePorn("GenderFundamentalist", -1)>>
+			<<= FutureSocieties.ChangePorn("GenderFundamentalist", -1)>>
 		<</if>>
 	<</if>>
 
@@ -5321,13 +5321,13 @@
 		<<if $slaves[$i].preg > $slaves[$i].pregData.normalBirth/1.33>>
 			<<if $slaves[$i].pregType >= 20>>
 				Society is @@.green;very pleased@@ at $slaves[$i].slaveName's dedication to pregnancy.
-				<<= FSChangePorn("Repopulationist", 5)>>
+				<<= FutureSocieties.ChangePorn("RepopulationFocus", 5)>>
 			<<elseif $slaves[$i].pregType >= 10>>
 				Society is @@.green;pleased@@ by $slaves[$i].slaveName's abnormally large pregnancy.
-				<<= FSChangePorn("Repopulationist", 3)>>
+				<<= FutureSocieties.ChangePorn("RepopulationFocus", 3)>>
 			<<else>>
 				Society is @@.green;pleased@@ by $slaves[$i].slaveName's advanced pregnancy.
-				<<= FSChangePorn("Repopulationist", 2)>>
+				<<= FutureSocieties.ChangePorn("RepopulationFocus", 2)>>
 			<</if>>
 			<<if $arcologies[0].FSSubjugationist != "unset" && ($slaves[$i].race == $arcologies[0].FSSubjugationistRace)>>
 				They just wish it wasn't <<print $arcologies[0].FSSubjugationistRace>>, of course.
@@ -5338,11 +5338,11 @@
 			$slaves[$i].slaveName is so fat, society just assumes there is a baby somewhere in there, though they wish it was more obvious.
 			<<if $slaves[$i].pregWeek < 0>>
 				But fortunately for $him, word of $his recent birth has gotten around @@.green;reassuring the masses@@ that $he can still bear children.
-				<<= FSChangePorn("Repopulationist", 2)>>
+				<<= FutureSocieties.ChangePorn("RepopulationFocus", 2)>>
 			<<elseif $slaves[$i].collar == "preg biometrics">>
 				<<if $slaves[$i].preg > 0>>
 					@@.green;Their wish is granted@@ by $slaves[$i].slaveName's collar revealing $his womb's secret<<if $slaves[$i].pregType > 1>>s<</if>> even when $his body is trying its best to keep <<if $slaves[$i].pregType > 1>>them<<else>>it<</if>> hidden.
-					<<= FSChangePorn("Repopulationist", 1)>>
+					<<= FutureSocieties.ChangePorn("RepopulationFocus", 1)>>
 					<<if $arcologies[0].FSSubjugationist != "unset" && ($slaves[$i].race == $arcologies[0].FSSubjugationistRace)>>
 						They just wish it wasn't <<print $arcologies[0].FSSubjugationistRace>>, of course.
 					<<elseif $arcologies[0].FSSupremacist != "unset" && ($slaves[$i].race == $arcologies[0].FSSupremacistRace)>>
@@ -5350,12 +5350,12 @@
 					<</if>>
 				<<elseif $slaves[$i].preg <= 0>>
 					@@.red;The illusion is shattered@@ by $slaves[$i].slaveName's collar revealing $his vacant womb.
-					<<= FSChangePorn("Repopulationist", -2)>>
+					<<= FutureSocieties.ChangePorn("RepopulationFocus", -2)>>
 				<</if>>
 			<</if>>
 		<<elseif $slaves[$i].bellyPreg >= 1500>>
 			Society is @@.green;pleased@@ by $slaves[$i].slaveName's pregnancy.
-			<<= FSChangePorn("Repopulationist", 1)>>
+			<<= FutureSocieties.ChangePorn("RepopulationFocus", 1)>>
 			<<if $arcologies[0].FSSubjugationist != "unset" && ($slaves[$i].race == $arcologies[0].FSSubjugationistRace)>>
 				They just wish it wasn't <<print $arcologies[0].FSSubjugationistRace>>, of course.
 			<<elseif $arcologies[0].FSSupremacist != "unset" && ($slaves[$i].race == $arcologies[0].FSSupremacistRace)>>
@@ -5369,7 +5369,7 @@
 			<<run repX(0.1*$FSSingleSlaveRep, "futureSocieties", $slaves[$i])>>
 		<<elseif $slaves[$i].collar == "preg biometrics" && $slaves[$i].preg > 0>>
 			Society is @@.green;pleased@@ by $slaves[$i].slaveName's collar revealing $his womb's secret<<if $slaves[$i].pregType > 1>>s<</if>> even when $his body is trying its best to keep <<if $slaves[$i].pregType > 1>>them<<else>>it<</if>> hidden.
-			<<= FSChangePorn("Repopulationist", 1)>>
+			<<= FutureSocieties.ChangePorn("RepopulationFocus", 1)>>
 			<<if $arcologies[0].FSSubjugationist != "unset" && ($slaves[$i].race == $arcologies[0].FSSubjugationistRace)>>
 				They just wish it wasn't <<print $arcologies[0].FSSubjugationistRace>>, of course.
 			<<elseif $arcologies[0].FSSupremacist != "unset" && ($slaves[$i].race == $arcologies[0].FSSupremacistRace)>>
@@ -5377,7 +5377,7 @@
 			<</if>>
 		<<elseif $slaves[$i].pregWeek < 0>>
 			Society is @@.green;pleased@@ by $slaves[$i].slaveName's recent birth.
-			<<= FSChangePorn("Repopulationist", 2)>>
+			<<= FutureSocieties.ChangePorn("RepopulationFocus", 2)>>
 		<<elseif setup.fakeBellies.includes($bellyAccessory)>>
 			Society is @@.green;placated@@ by $slaves[$i].slaveName's fake belly.
 			<<run repX(0.01*$FSSingleSlaveRep, "futureSocieties", $slaves[$i])>>
@@ -5385,21 +5385,21 @@
 			Society is perfectly fine with $slaves[$i].slaveName not reproducing. $His belly is still unattractively small, however.
 		<<elseif ($slaves[$i].ovaries == 0 && $slaves[$i].mpreg == 0) || ($slaves[$i].preg < -1) || ($slaves[$i].pubertyXX == 0)>>
 			Society is @@.red;mildly disappointed@@ that $slaves[$i].slaveName is unable to become pregnant.
-			<<= FSChangePorn("Repopulationist", -1)>>
+			<<= FutureSocieties.ChangePorn("RepopulationFocus", -1)>>
 		<<elseif $slaves[$i].preg == -1>>
 			Society is @@.red;disapproving@@ of $slaves[$i].slaveName's contraceptive regimen.
-			<<= FSChangePorn("Repopulationist", -2)>>
+			<<= FutureSocieties.ChangePorn("RepopulationFocus", -2)>>
 		<<else>>
 			Society is @@.red;disapproving@@ of $slaves[$i].slaveName's flat, unimpregnated stomach.
-			<<= FSChangePorn("Repopulationist", -2)>>
+			<<= FutureSocieties.ChangePorn("RepopulationFocus", -2)>>
 		<</if>>
 		<<if $slaves[$i].abortionTat > 0>>
 			Society @@.red;is disgusted@@ by the tally of aborted children adorning $his skin.
-			<<= FSChangePorn("Repopulationist", -1)>>
+			<<= FutureSocieties.ChangePorn("RepopulationFocus", -1)>>
 		<</if>>
 		<<if $slaves[$i].birthsTat > 0>>
 			Society @@.green;is pleased@@ by the tally of succesful births adorning $his skin.
-			<<= FSChangePorn("Repopulationist", 1)>>
+			<<= FutureSocieties.ChangePorn("RepopulationFocus", 1)>>
 		<</if>>
 	<<elseif $arcologies[0].FSRepopulationFocusPregPolicy == 1>>
 		<<if $slaves[$i].preg > 30>>
@@ -5412,44 +5412,44 @@
 	<<elseif $arcologies[0].FSRestart != "unset">>
 		<<if $slaves[$i].chastityVagina>>
 			Society is @@.green;mildly pleased@@ at you keeping $his vagina in check.
-			<<= FSChangePorn("Eugenics", 1)>>
+			<<= FutureSocieties.ChangePorn("Eugenics", 1)>>
 		<</if>>
 		<<if $slaves[$i].chastityPenis>>
 			Society is @@.green;mildly pleased@@ at you keeping $his dick in check.
-			<<= FSChangePorn("Eugenics", 1)>>
+			<<= FutureSocieties.ChangePorn("Eugenics", 1)>>
 		<</if>>
 		<<if $slaves[$i].breedingMark == 1 && $propOutcome == 1>>
 			<<if $slaves[$i].pregKnown == 1 && $slaves[$i].pregSource == -1>>
 				The Societal Elite @@.green;are pleased@@ your child is growing within $him. The mark covering $his lower belly, coupled with $his gravidity and blessing, @@.green;enamors@@ your populace.
 				<<set $failedElite -= 5+$slaves[$i].pregType>>
-				<<= FSChangePorn("Eugenics", 3)>>
+				<<= FutureSocieties.ChangePorn("Eugenics", 3)>>
 				<<if $slaves[$i].abortionTat > 0>>
 					The tally of aborted children adorning $his middle @@.red;is worrying,@@ however.
-					<<= FSChangePorn("Eugenics", -1)>>
+					<<= FutureSocieties.ChangePorn("Eugenics", -1)>>
 				<</if>>
 			<</if>>
 		<<else>>
 			<<if $slaves[$i].preg > $slaves[$i].pregData.normalBirth/1.33>>
 				<<if $slaves[$i].pregType >= 10>>
 					Society is @@.red;furious@@ at $slaves[$i].slaveName's infested womb.
-					<<= FSChangePorn("Eugenics", -10)>>
+					<<= FutureSocieties.ChangePorn("Eugenics", -10)>>
 				<<elseif $slaves[$i].pregType >= 4>>
 					Society is @@.red;disgusted@@ by $slaves[$i].slaveName's abnormally large pregnancy.
-					<<= FSChangePorn("Eugenics", -5)>>
+					<<= FutureSocieties.ChangePorn("Eugenics", -5)>>
 				<<else>>
 					Society is @@.red;greatly displeased@@ by $slaves[$i].slaveName's advanced pregnancy.
-					<<= FSChangePorn("Eugenics", -3)>>
+					<<= FutureSocieties.ChangePorn("Eugenics", -3)>>
 				<</if>>
 			<<elseif $slaves[$i].bellyPreg >= 1500>>
 				Society is @@.red;very displeased@@ by $slaves[$i].slaveName's pregnancy.
-				<<= FSChangePorn("Eugenics", -2)>>
+				<<= FutureSocieties.ChangePorn("Eugenics", -2)>>
 			<<elseif $slaves[$i].preg < -1 and $slaves[$i].vagina > -1>>
 				Society is @@.green;pleased@@ that $slaves[$i].slaveName is unable to become pregnant.
-				<<= FSChangePorn("Eugenics", 2)>>
+				<<= FutureSocieties.ChangePorn("Eugenics", 2)>>
 			<</if>>
 			<<if $slaves[$i].abortionTat > 0>>
 				The tally of aborted pregnancies adorning $his middle shows @@.green;just how responsible@@ of an owner $he has.
-				<<= FSChangePorn("Eugenics", 1)>>
+				<<= FutureSocieties.ChangePorn("Eugenics", 1)>>
 			<</if>>
 			<<if $slaves[$i].pregKnown == 1 && $eugenicsFullControl != 1>>
 				The Societal Elite @@.red;judge you@@ for keeping pregnant slaves. It falls to the slaveowner to deal with subhuman pregnancies and you are failing in your duties as a member of the Elite.
@@ -5458,16 +5458,16 @@
 		<</if>>
 		<<if $slaves[$i].balls > 0 && $slaves[$i].vasectomy == 0>>
 			Society @@.red;disapproves@@ of $his working testicles.
-			<<= FSChangePorn("Eugenics", -$slaves[$i].balls)>>
+			<<= FutureSocieties.ChangePorn("Eugenics", -$slaves[$i].balls)>>
 		<<elseif $slaves[$i].dick > 0 && $slaves[$i].balls > 0 && $slaves[$i].vasectomy == 1>>
 			Society @@.green;approves@@ of $his vasectomy.
-			<<= FSChangePorn("Eugenics", 1)>>
+			<<= FutureSocieties.ChangePorn("Eugenics", 1)>>
 		<<elseif $slaves[$i].dick > 0 && $slaves[$i].balls > 0 && $slaves[$i].ballType == "sterile">>
 			Society @@.green;approves@@ of $his useless testicles.
-			<<= FSChangePorn("Eugenics", 1)>>
+			<<= FutureSocieties.ChangePorn("Eugenics", 1)>>
 		<<elseif $slaves[$i].dick > 0 && $slaves[$i].balls == 0>>
 			Society @@.green;approves@@ of $his lack of testicles.
-			<<= FSChangePorn("Eugenics", 2)>>
+			<<= FutureSocieties.ChangePorn("Eugenics", 2)>>
 		<</if>>
 	<</if>>
 	<<if $arcologies[0].FSRepopulationFocusMilfPolicy == 1 && $slaves[$i].counter.birthsTotal > 0>>
@@ -5478,68 +5478,68 @@
 	<<if $arcologies[0].FSPaternalist != "unset">>
 		<<if ($slaves[$i].geneMods.NCS > 0) && ($slaves[$i].visualAge <= $potencyAge) && ($slaves[$i].physicalAge >= $potencyAge)>>
 			Society @@.green;approves@@ of you keeping $slaves[$i].slaveName perpetually young and innocent looking so you can keep taking care of $him; this advances paternalistic ideals.
-			<<= FSChangePorn("Paternalist", 1)>>
+			<<= FutureSocieties.ChangePorn("Paternalist", 1)>>
 		<<elseif ($slaves[$i].intelligenceImplant >= 15) && ($slaves[$i].fetish != "mindbroken")>>
 			Society @@.green;approves@@ of $slaves[$i].slaveName being properly educated; this advances ideas about slave improvement.
-			<<= FSChangePorn("Paternalist", 1)>>
+			<<= FutureSocieties.ChangePorn("Paternalist", 1)>>
 		<<elseif ($slaves[$i].intelligenceImplant < 15) && ($slaves[$i].intelligence+$slaves[$i].intelligenceImplant < -15) && ($slaves[$i].fetish != "mindbroken")>>
 			Society @@.red;disapproves@@ of $slaves[$i].slaveName being stupid and uneducated; this holds back ideas about slave improvement.
-			<<= FSChangePorn("Paternalist", -1)>>
+			<<= FutureSocieties.ChangePorn("Paternalist", -1)>>
 		<</if>>
 		<<if ($slaves[$i].health > 80)>>
 			Society @@.green;approves@@ of $his shining health; this advances belief in a slaveowner's duty.
-			<<= FSChangePorn("Paternalist", 1)>>
+			<<= FutureSocieties.ChangePorn("Paternalist", 1)>>
 		<</if>>
 		<<if ($slaves[$i].devotion+$slaves[$i].trust > 180)>>
 			<<if ($slaves[$i].relationship == -3)>>
 				Society @@.green;approves very strongly@@ of $his happiness as your wife; this advances paternalistic ideals.
-				<<= FSChangePorn("Paternalist", 5)>>
+				<<= FutureSocieties.ChangePorn("Paternalist", 5)>>
 			<<elseif ($slaves[$i].relationship == -2)>>
 				Society @@.green;strongly approves@@ of $his emotional bond to you; this advances paternalistic ideals.
-				<<= FSChangePorn("Paternalist", 2)>>
+				<<= FutureSocieties.ChangePorn("Paternalist", 2)>>
 			<<else>>
 				Society @@.green;approves@@ of $his attachment to you; this advances paternalistic ideals.
-				<<= FSChangePorn("Paternalist", 1)>>
+				<<= FutureSocieties.ChangePorn("Paternalist", 1)>>
 			<</if>>
 		<<else>>
 			<<if ($slaves[$i].devotion > 95)>>
 				Society @@.green;approves@@ of $his attachment to you; this advances paternalistic ideals.
-				<<= FSChangePorn("Paternalist", 1)>>
+				<<= FutureSocieties.ChangePorn("Paternalist", 1)>>
 			<</if>>
 			<<if ($slaves[$i].trust > 95)>>
 				Society @@.green;approves@@ of $his trust in you; this advances paternalistic ideals.
-				<<= FSChangePorn("Paternalist", 1)>>
+				<<= FutureSocieties.ChangePorn("Paternalist", 1)>>
 			<</if>>
 		<</if>>
 		<<if ($slaves[$i].choosesOwnAssignment == 1)>>
 			Society @@.green;approves@@ of $slaves[$i].slaveName being allowed to choose $his own job, advancing ideals about slave self-actualization.
-			<<= FSChangePorn("Paternalist", 1)>>
+			<<= FutureSocieties.ChangePorn("Paternalist", 1)>>
 		<</if>>
 		<<if ($slaves[$i].relationship == -3)>>
 			<<if $slaves[$i].fetish == "mindbroken">>
 				Society is mixed over your marriage to the mindbroken girl; on one hand $he had no consent, but on the other, you @@.green;surely must love $him@@ to marry $him.
-				<<= FSChangePorn("Paternalist", 1)>>
+				<<= FutureSocieties.ChangePorn("Paternalist", 1)>>
 			<<elseif ($slaves[$i].devotion <= 20)>>
 				Society is @@.red;thoroughly disgusted@@ that you took $his hand in marriage by force.
-				<<= FSChangePorn("Paternalist", -3)>>
+				<<= FutureSocieties.ChangePorn("Paternalist", -3)>>
 			<</if>>
 		<</if>>
 		<<if ($modScore > 15 || ($piercingScore > 8 && $tatScore > 5))>>
 			Society @@.red;disapproves@@ of $his degrading body modifications, which dulls the public interest in letting slaves choose their own appearance.
-			<<= FSChangePorn("Paternalist", -1)>>
+			<<= FutureSocieties.ChangePorn("Paternalist", -1)>>
 		<</if>>
 		<<if $slaves[$i].fuckdoll > 0>>
 			Society @@.red;strongly disapproves@@ of your owning a Fuckdoll.
-			<<= FSChangePorn("Paternalist", -2)>>
+			<<= FutureSocieties.ChangePorn("Paternalist", -2)>>
 		<</if>>
 	<<elseif $arcologies[0].FSDegradationist != "unset">>
 		<<if ($slaves[$i].fetish == "mindbroken")>>
 			Society @@.green;approves@@ of $his broken spirit; $he serves as an example of a soulless fuckpuppet.
-			<<= FSChangePorn("Degradationist", 1)>>
+			<<= FutureSocieties.ChangePorn("Degradationist", 1)>>
 		<<else>>
 			<<if ($slaves[$i].trust <= 4)>>
 				Society @@.green;approves@@ of $slaves[$i].slaveName's fear of you.
-				<<= FSChangePorn("Degradationist", 1)>>
+				<<= FutureSocieties.ChangePorn("Degradationist", 1)>>
 			<<else>>
 				<<if ($slaves[$i].assignment == "be your Head Girl")>>
 					Society accepts $slaves[$i].slaveName trusting you, since $he is your Head Girl and keeps the other slaves down.
@@ -5549,39 +5549,39 @@
 					Society reluctantly accepts of $slaves[$i].slaveName trusting you, since $he is worshipful of you.
 				<<else>>
 					Society @@.red;disapproves@@ of $slaves[$i].slaveName being trusting of you; $he is not being properly degraded for $his role.
-					<<= FSChangePorn("Degradationist", -1)>>
+					<<= FutureSocieties.ChangePorn("Degradationist", -1)>>
 				<</if>>
 			<</if>>
 		<</if>>
 		<<if ($slaves[$i].assignment == "work a glory hole") || ($slaves[$i].assignment == "be confined in the arcade")>>
 			Society @@.green;approves@@ of how $he is restrained for involuntary use, seeing this as the future of sexual relations.
-			<<= FSChangePorn("Degradationist", 1)>>
+			<<= FutureSocieties.ChangePorn("Degradationist", 1)>>
 		<</if>>
 		<<if ($modScore > 15 || ($piercingScore > 8 && $tatScore > 5))>>
 			Society @@.green;approves@@ of $his many body modifications, which advances the public taste for such degradation of slave bodies.
-			<<= FSChangePorn("Degradationist", 1)>>
+			<<= FutureSocieties.ChangePorn("Degradationist", 1)>>
 		<</if>>
 		<<if $slaves[$i].abortionTat > 0 && $arcologies[0].FSRepopulationFocus == "unset">>
 			Society @@.green;<<if $arcologies[0].FSRestart != "unset">>greatly <</if>>approves@@ of $his tally of aborted children.
 			<<if $arcologies[0].FSRestart != "unset">>
-				<<= FSChangePorn("Degradationist", 2)>>
+				<<= FutureSocieties.ChangePorn("Degradationist", 2)>>
 			<<else>>
-				<<= FSChangePorn("Degradationist", 1)>>
+				<<= FutureSocieties.ChangePorn("Degradationist", 1)>>
 			<</if>>
 		<</if>>
 		<<if $slaves[$i].voice != 0>>
 			<<if $slaves[$i].lips > 95>>
 				Society @@.green;approves@@ of the way $his mouth, with its useless ability to speak, has been replaced with an appealing hole.
-				<<= FSChangePorn("Degradationist", 1)>>
+				<<= FutureSocieties.ChangePorn("Degradationist", 1)>>
 			<</if>>
 		<</if>>
 		<<if ($slaves[$i].choosesOwnAssignment == 1)>>
 			Society @@.red;disapproves@@ of $slaves[$i].slaveName being allowed to choose $his own job; this holds back ideas about slave degradation.
-			<<= FSChangePorn("Degradationist", -1)>>
+			<<= FutureSocieties.ChangePorn("Degradationist", -1)>>
 		<</if>>
 		<<if $slaves[$i].fuckdoll > 0>>
 			Society @@.green;approves@@ of your owning a Fuckdoll.
-			<<= FSChangePorn("Degradationist", 1)>>
+			<<= FutureSocieties.ChangePorn("Degradationist", 1)>>
 		<</if>>
 	<</if>>
 
@@ -5589,50 +5589,50 @@
 	<<if ($slaves[$i].scars != 0) && ($slaves[$i].scars != 6)>>
 		<<if $arcologies[0].FSDegradationist != "unset">>
 			Society @@.green;mildly approves@@ of your slave's scarring; this encourages the further abuse of slaves.
-			<<= FSChangePorn("Degradationist", 1)>>
+			<<= FutureSocieties.ChangePorn("Degradationist", 1)>>
 		<<elseif $arcologies[0].FSPaternalist != "unset">>
 			Society @@.red;mildly disapproves@@ of your scarred slaves, viewing them as a sign of mistreatment.
-			<<= FSChangePorn("Paternalist", -1)>>
+			<<= FutureSocieties.ChangePorn("Paternalist", -1)>>
 		<</if>>
 	<</if>>
 
 	<<if $arcologies[0].FSBodyPurist != "unset">>
 		<<if ($slaves[$i].boobsImplant == 0) && ($slaves[$i].buttImplant == 0) && ($slaves[$i].lipsImplant == 0) && ($slaves[$i].bellyImplant == -1)>>
 			Society @@.green;approves@@ of $slaves[$i].slaveName's natural body; this supports the fashion for surgically untouched slaves.
-			<<= FSChangePorn("BodyPurist", 1)>>
+			<<= FutureSocieties.ChangePorn("BodyPurist", 1)>>
 		<<else>>
 			Society @@.red;disapproves@@ of $slaves[$i].slaveName's implants; this holds back acceptance of the idea that slaves should be all-natural.
-			<<= FSChangePorn("BodyPurist", -1)>>
+			<<= FutureSocieties.ChangePorn("BodyPurist", -1)>>
 		<</if>>
 		<<if ($slaves[$i].corsetPiercing == 0 && $piercingScore < 3 && $tatScore < 2)>>
 			Society @@.green;approves@@ of $his unmarked, unblemished skin, advancing the fashion for unspoiled slaves.
-			<<= FSChangePorn("BodyPurist", 1)>>
+			<<= FutureSocieties.ChangePorn("BodyPurist", 1)>>
 		<</if>>
 		<<if ($slaves[$i].earShape != "normal" && $slaves[$i].earShape != "damaged") || $slaves[$i].earT != "none">>
 			Society finds $his inhuman ears @@.red;appalling.@@
-			<<= FSChangePorn("BodyPurist", -1)>>
+			<<= FutureSocieties.ChangePorn("BodyPurist", -1)>>
 		<</if>>
 		<<if $slaves[$i].horn != "none" || $slaves[$i].tail != "none">>
 			Society @@.red;is disgusted@@ by $his inhuman attributes.
-			<<= FSChangePorn("BodyPurist", -1)>>
+			<<= FutureSocieties.ChangePorn("BodyPurist", -1)>>
 		<</if>>
 		<<if $slaves[$i].faceImplant <= 5 && $slaves[$i].race == $slaves[$i].origRace>>
 			Society @@.green;approves@@ of $his natural, untouched appearance, advancing the fashion for unaltered slaves.
-			<<= FSChangePorn("BodyPurist", 1)>>
+			<<= FutureSocieties.ChangePorn("BodyPurist", 1)>>
 		<<else>>
 			Society @@.red;disapproves@@ of $slaves[$i].slaveName's surgical beautification; this holds back acceptance of the idea that a natural slave is a beautiful slave.
-			<<= FSChangePorn("BodyPurist", -2)>>
+			<<= FutureSocieties.ChangePorn("BodyPurist", -2)>>
 		<</if>>
 		<<if $slaves[$i].fuckdoll == 0>>
 			<<if $slaves[$i].vagina == 0 && $slaves[$i].anus == 0 && $slaves[$i].counter.vaginal == 0 && $slaves[$i].counter.anal == 0>>
 				Society @@.green;strongly approves@@ of $his intact holes, idolizing $his pristine body.
-				<<= FSChangePorn("BodyPurist", 3)>>
+				<<= FutureSocieties.ChangePorn("BodyPurist", 3)>>
 			<<elseif $slaves[$i].vagina == 0 && $slaves[$i].counter.vaginal == 0>>
 				Society @@.green;approves@@ of $his intact hymen, advancing ideals of pure, fresh slaves.
-				<<= FSChangePorn("BodyPurist", 1)>>
+				<<= FutureSocieties.ChangePorn("BodyPurist", 1)>>
 			<<elseif $slaves[$i].anus == 0 && $slaves[$i].counter.anal == 0>>
 				Society @@.green;approves@@ of $his intact anus, advancing ideals of pure, fresh slaves.
-				<<= FSChangePorn("BodyPurist", 1)>>
+				<<= FutureSocieties.ChangePorn("BodyPurist", 1)>>
 			<</if>>
 		<</if>>
 
@@ -5640,61 +5640,61 @@
 		<<set _transformed = 0>>
 		<<if ($slaves[$i].boobsImplant > 0) && ($slaves[$i].buttImplant > 0) && ($slaves[$i].lipsImplant > 0)>>
 			Society @@.green;approves@@ of $slaves[$i].slaveName's thoroughly modified body; this supports the fashion for surgically upgraded slaves.
-			<<= FSChangePorn("TransformationFetishist", 1)>>
+			<<= FutureSocieties.ChangePorn("TransformationFetishist", 1)>>
 			<<set _transformed = 1>>
 		<</if>>
 		<<if ($slaves[$i].lipsImplant/$slaves[$i].lips >= .50) || ($slaves[$i].buttImplant/$slaves[$i].butt >= .50 && $slaves[$i].butt >= 6) || ($slaves[$i].buttImplant/$slaves[$i].butt >= .25 && $slaves[$i].butt >= 3) || ($slaves[$i].boobsImplant/$slaves[$i].boobs >= .75 && $slaves[$i].boobs >= 10000) || ($slaves[$i].boobsImplant/$slaves[$i].boobs >= .50 && $slaves[$i].boobs >= 2000) || ($slaves[$i].boobsImplant/$slaves[$i].boobs >= .25 && $slaves[$i].boobs >= 1000) || ($slaves[$i].boobsImplant/$slaves[$i].boobs >= .10 && $slaves[$i].boobs >= 400)>>
 			Society @@.green;approves@@ of $his obvious implants.
-			<<= FSChangePorn("TransformationFetishist", 1)>>
+			<<= FutureSocieties.ChangePorn("TransformationFetishist", 1)>>
 			<<set _transformed = 1>>
 		<</if>>
 		<<if ($slaves[$i].bellyImplant >= 1500)>>
 			Society @@.green;mildly approves@@ of $slaves[$i].slaveName's belly bulging implant; this supports interest in more unusual implantations.
-			<<= FSChangePorn("TransformationFetishist", 1)>>
+			<<= FutureSocieties.ChangePorn("TransformationFetishist", 1)>>
 			<<set _transformed = 1>>
 		<</if>>
 		<<if ($slaves[$i].amp == 1) || ($slaves[$i].waist < -95) || ($slaves[$i].teeth == "pointy") || ($slaves[$i].teeth == "removable") || ($slaves[$i].hips == 3)>>
 			Society @@.green;approves@@ of $his extreme surgeries; interest in $him stirs interest in transformations of all kinds.
-			<<= FSChangePorn("TransformationFetishist", 1)>>
+			<<= FutureSocieties.ChangePorn("TransformationFetishist", 1)>>
 			<<set _transformed = 1>>
 		<</if>>
 		<<if $slaves[$i].faceImplant > 30 || $slaves[$i].race != $slaves[$i].origRace>>
 			Society @@.green;approves@@ of $his surgically improved appearance; this supports the fashion for surgical corrections.
-			<<= FSChangePorn("TransformationFetishist", 1)>>
+			<<= FutureSocieties.ChangePorn("TransformationFetishist", 1)>>
 		<</if>>
 		<<if $slaves[$i].faceImplant > 95 && $slaves[$i].face > 40>>
 			Society @@.green;approves@@ of $his beautiful face, considering it's uncanny nature a boon rather than a fault; this supports the belief that there is no such thing as too much surgery.
-			<<= FSChangePorn("TransformationFetishist", 1)>>
+			<<= FutureSocieties.ChangePorn("TransformationFetishist", 1)>>
 			<<set _transformed = 1>>
 		<</if>>
 		<<if ($slaves[$i].amp < 0) || $slaves[$i].earT != "none" || $slaves[$i].horn != "none" || $slaves[$i].tail != "none">>
 			Society @@.green;strongly approves@@ of $his transhuman body.
-			<<= FSChangePorn("TransformationFetishist", 1)>>
+			<<= FutureSocieties.ChangePorn("TransformationFetishist", 1)>>
 			<<set _transformed = 1>>
 		<</if>>
 		<<if ($slaves[$i].dick > 8)>>
 			Society @@.green;approves@@ of $his monolithic dick, since it's such an obvious transformation masterpiece.
-			<<= FSChangePorn("TransformationFetishist", 1)>>
+			<<= FutureSocieties.ChangePorn("TransformationFetishist", 1)>>
 			<<set _transformed = 1>>
 		<</if>>
 		<<if ($slaves[$i].lips > 95)>>
 			Society @@.green;approves@@ of $his absurd facepussy as a transformation of $his mouth into nothing more than another fuckhole.
-			<<= FSChangePorn("TransformationFetishist", 1)>>
+			<<= FutureSocieties.ChangePorn("TransformationFetishist", 1)>>
 			<<set _transformed = 1>>
 		<</if>>
 		<<if ($slaves[$i].nipples == "fuckable")>>
 			Society @@.green;approves@@ of $slaves[$i].slaveName's fuckable nipples; this supports interest in more unusual body modifications.
-			<<= FSChangePorn("TransformationFetishist", 1)>>
+			<<= FutureSocieties.ChangePorn("TransformationFetishist", 1)>>
 			<<set _transformed = 1>>
 		<</if>>
 		<<if $slaves[$i].fuckdoll > 0>>
 			Society @@.green;approves@@ of your owning a Fuckdoll.
-			<<= FSChangePorn("TransformationFetishist", 1)>>
+			<<= FutureSocieties.ChangePorn("TransformationFetishist", 1)>>
 			<<set _transformed = 1>>
 		<</if>>
 		<<if _transformed == 0>>
 			Society @@.red;disapproves@@ of $slaves[$i].slaveName's lack of obvious transformations; $he does not advance the ideal of body modification.
-			<<= FSChangePorn("TransformationFetishist", -1)>>
+			<<= FutureSocieties.ChangePorn("TransformationFetishist", -1)>>
 		<</if>>
 	<</if>>
 
@@ -5711,52 +5711,52 @@
 			<</if>>
 			<<if _slimAccept == 1>>
 				Society @@.green;approves@@ of $slaves[$i].slaveName's graceful, girlish form; $he furthers the fashion for slaves like $him.
-				<<= FSChangePorn("SlimnessEnthusiast", 1)>>
+				<<= FutureSocieties.ChangePorn("SlimnessEnthusiast", 1)>>
 			<</if>>
 		<</if>>
 		<<if ($slaves[$i].butt > 4) && ($slaves[$i].boobs > 800)>>
 			Society @@.red;disapproves@@ of $slaves[$i].slaveName's boorishly large tits and ass; $he damages the fashion for slender slaves.
-			<<= FSChangePorn("SlimnessEnthusiast", -1)>>
+			<<= FutureSocieties.ChangePorn("SlimnessEnthusiast", -1)>>
 		<</if>>
 	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
 		<<if ($slaves[$i].geneMods.NCS > 0)>>
 			Society @@.green;strongly disaproves @@ of $slaves[$i].slaveName who can't get bigger; $His shrinking body hurts the fashion for Asset expansion.
-			<<= FSChangePorn("AssetExpansionist", -2)>>
+			<<= FutureSocieties.ChangePorn("AssetExpansionist", -2)>>
 		<</if>>
 		<<if ($slaves[$i].boobs > 2000)>>
 			Society @@.green;approves@@ of $slaves[$i].slaveName's huge tits; $his breasts further the fashion for bouncing boobs on slaves.
-			<<= FSChangePorn("AssetExpansionist", 1)>>
+			<<= FutureSocieties.ChangePorn("AssetExpansionist", 1)>>
 		<</if>>
 		<<if ($slaves[$i].butt > 7)>>
 			Society @@.green;approves@@ of $his massive ass; $his butt furthers the fashion for big behinds on slaves.
-			<<= FSChangePorn("AssetExpansionist", 1)>>
+			<<= FutureSocieties.ChangePorn("AssetExpansionist", 1)>>
 		<</if>>
 		<<if ($slaves[$i].dick > 8)>>
 			Society @@.green;approves@@ of $his massive member, which might be nonfunctional, but is a wonder of expansionism.
 			<<set _Dic = $slaves[$i].dick-8>>
-			<<= FSChangePorn("AssetExpansionist", _Dic, $pornFameBonus)>>
+			<<= FutureSocieties.ChangePorn("AssetExpansionist", _Dic, $pornFameBonus)>>
 		<<elseif ($slaves[$i].dick > 6)>>
 			Society @@.green;approves@@ of $his enormous penis; $his cock furthers the fashion for dangling dicks on slaves.
-			<<= FSChangePorn("AssetExpansionist", 1)>>
+			<<= FutureSocieties.ChangePorn("AssetExpansionist", 1)>>
 		<</if>>
 		<<if ($slaves[$i].balls > 6)>>
 			Society @@.green;approves@@ of $his swinging balls; $his nuts further the fashion for tremendous testicles on slaves.
-			<<= FSChangePorn("AssetExpansionist", 1)>>
+			<<= FutureSocieties.ChangePorn("AssetExpansionist", 1)>>
 		<</if>>
 		<<if ($slaves[$i].lips > 95)>>
 			Society @@.green;approves@@ of $his expanded lips.
-			<<= FSChangePorn("AssetExpansionist", 1)>>
+			<<= FutureSocieties.ChangePorn("AssetExpansionist", 1)>>
 		<</if>>
 	<</if>>
 
 	<<if $arcologies[0].FSPastoralist != "unset">>
 		<<if ($slaves[$i].lactation > 0)>>
 			Society @@.green;approves@@ of $slaves[$i].slaveName's milky udders; the sight of $his creamy milk encourages the public taste for dairy straight from the nipple.
-			<<= FSChangePorn("Pastoralist", 1)>>
+			<<= FutureSocieties.ChangePorn("Pastoralist", 1)>>
 		<</if>>
 		<<if ($slaves[$i].assignment == "get milked") && ($slaves[$i].balls > 0)>>
 			Society @@.green;approves@@ of how $slaves[$i].slaveName gets cockmilked; the sight of $his product encourages experimentation with cum-based concoctions.
-			<<= FSChangePorn("Pastoralist", 1)>>
+			<<= FutureSocieties.ChangePorn("Pastoralist", 1)>>
 		<</if>>
 	<</if>>
 
@@ -5764,93 +5764,93 @@
 		<<if $arcologies[0].FSPhysicalIdealistLaw == 1>>
 			<<if ($slaves[$i].muscles > 50)>>
 				Society @@.green;approves@@ of $slaves[$i].slaveName's commitment to fitness; but thinks $his muscles are too big and vascular.
-				<<= FSChangePorn("PhysicalIdealist", 1)>>
+				<<= FutureSocieties.ChangePorn("PhysicalIdealist", 1)>>
 			<<elseif ($slaves[$i].muscles > 20)>>
 				Society @@.green;strongly approves@@ of $slaves[$i].slaveName's fit body; physical enthusiasts see $him as the optimal example of feminine fitness.
-				<<= FSChangePorn("PhysicalIdealist", 2)>>
+				<<= FutureSocieties.ChangePorn("PhysicalIdealist", 2)>>
 			<<elseif ($slaves[$i].muscles > 5)>>
 				Society @@.green;approves@@ of $slaves[$i].slaveName's toned form; the public sees potential in those guns.
-				<<= FSChangePorn("PhysicalIdealist", 1)>>
+				<<= FutureSocieties.ChangePorn("PhysicalIdealist", 1)>>
 			<</if>>
 		<<else>>
 			<<if ($slaves[$i].muscles > 95)>>
 				Society @@.green;strongly approves@@ of $slaves[$i].slaveName's glorious muscles; everyone wants to train a slave to look as swole as $him.
-				<<= FSChangePorn("PhysicalIdealist", 2)>>
+				<<= FutureSocieties.ChangePorn("PhysicalIdealist", 2)>>
 			<<elseif ($slaves[$i].muscles > 30)>>
 				Society @@.green;approves@@ of $slaves[$i].slaveName's fit body; physical enthusiasts see $him as on $his way to something great.
-				<<= FSChangePorn("PhysicalIdealist", 1)>>
+				<<= FutureSocieties.ChangePorn("PhysicalIdealist", 1)>>
 			<<elseif ($slaves[$i].muscles > 5)>>
 				Society @@.green;approves@@ of $slaves[$i].slaveName's toned form; the public sees potential in those guns.
-				<<= FSChangePorn("PhysicalIdealist", 1)>>
+				<<= FutureSocieties.ChangePorn("PhysicalIdealist", 1)>>
 			<</if>>
 		<</if>>
 		<<if ($slaves[$i].height >= 185)>>
 			Society @@.green;approves@@ of how tall $he is; the sexual advantages of $his height are impressed on the public mind.
-			<<= FSChangePorn("PhysicalIdealist", 1)>>
+			<<= FutureSocieties.ChangePorn("PhysicalIdealist", 1)>>
 		<</if>>
 		<<if ($slaves[$i].health > 80)>>
 			Society @@.green;approves@@ of $his health; the expectation that slaves should be kept perfectly healthy grows.
-			<<= FSChangePorn("PhysicalIdealist", 1)>>
+			<<= FutureSocieties.ChangePorn("PhysicalIdealist", 1)>>
 		<</if>>
 	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
 		<<if ($slaves[$i].weight > 160)>>
 			Society @@.green;strongly approves@@ of $slaves[$i].slaveName's glorious rolls; everyone wants to own a pillowy slave like $him.
-			<<= FSChangePorn("Hedonism", 3)>>
+			<<= FutureSocieties.ChangePorn("Hedonistic", 3)>>
 		<<elseif ($slaves[$i].weight > 95)>>
 			Society @@.green;approves@@ of $slaves[$i].slaveName's fat body; it shows just how much luxurious your life must be to pamper a slave as much as $him.
-			<<= FSChangePorn("Hedonism", 2)>>
+			<<= FutureSocieties.ChangePorn("Hedonistic", 2)>>
 		<<elseif ($slaves[$i].weight > 30)>>
 			Society @@.green;approves@@ of $slaves[$i].slaveName's chubby form; the public enjoys the sight of a well rounded slave.
-			<<= FSChangePorn("Hedonism", 1)>>
+			<<= FutureSocieties.ChangePorn("Hedonistic", 1)>>
 		<</if>>
 		<<if ($slaves[$i].muscles < -30)>>
 			Society @@.green;approves@@ of how soft $he is; the sexual advantages of being able to effortlessly overpower $him are not lost on them.
-			<<= FSChangePorn("Hedonism", 1)>>
+			<<= FutureSocieties.ChangePorn("Hedonistic", 1)>>
 		<</if>>
 		<<if ($slaves[$i].fetishStrength > 95)>>
 			Society @@.green;approves@@ of $his intense fetish; the expectation that everyone's deepest desires should be fulfilled grows.
-			<<= FSChangePorn("Hedonism", 1)>>
+			<<= FutureSocieties.ChangePorn("Hedonistic", 1)>>
 		<</if>>
 		<<if (_para > 0)>>
 			Society @@.green;is pleased@@ that $he is allowed to fully indulge $his paraphilia.
-			<<= FSChangePorn("Hedonism", 1)>>
+			<<= FutureSocieties.ChangePorn("Hedonistic", 1)>>
 		<<elseif (_para < 0)>>
 			Society @@.red;frowns@@ upon $him not being allowed to indulge in $his paraphilia.
-			<<= FSChangePorn("Hedonism", -2)>>
+			<<= FutureSocieties.ChangePorn("Hedonistic", -2)>>
 		<</if>>
 	<</if>>
 
 	<<if $arcologies[0].FSChattelReligionist != "unset">>
 		<<if ["cruel retirement counter", "tight steel", "uncomfortable leather"].includes($slaves[$i].collar)>>
 			Society @@.green;approves@@ of $slaves[$i].slaveName's collar as an expression of the old ideal of mortification of the flesh, advancing the combination of religious originalism and modern slavery.
-			<<= FSChangePorn("ChattelReligionist", 1)>>
+			<<= FutureSocieties.ChangePorn("ChattelReligionist", 1)>>
 		<</if>>
 		<<if ["a burqa", "a chattel habit", "a fallen nuns habit", "a hijab and abaya", "a klan robe", "a niqab and abaya", "a penitent nuns habit", "a succubus outfit"].includes($slaves[$i].clothes)>>
 			Society @@.green;approves@@ of $his religiously themed clothing, strengthening the connection between sexual servitude and faith.
-			<<= FSChangePorn("ChattelReligionist", 1)>>
+			<<= FutureSocieties.ChangePorn("ChattelReligionist", 1)>>
 		<<elseif ["a bunny outfit", "a hijab and blouse", "a huipil", "a kimono", "a military uniform", "a nice maid outfit", "a nice nurse outfit", "a slutty qipao", "a toga", "body oil", "chains", "conservative clothing", "nice business attire", "no clothing", "shibari ropes", "uncomfortable straps"].includes($slaves[$i].clothes)>>
 			Society accepts $his spartan clothing, seeing it as permissible under the new religious mores.
 		<<elseif ($slaves[$i].fuckdoll == 0)>>
 			Society @@.red;disapproves@@ of $his unnecessarily gaudy attire; this slows acceptance of a link between faith and sexual servitude.
-			<<= FSChangePorn("ChattelReligionist", -1)>>
+			<<= FutureSocieties.ChangePorn("ChattelReligionist", -1)>>
 		<</if>>
 		<<if ($slaves[$i].devotion > 95)>>
 			Society @@.green;approves@@ of $his devotion to you as a companion to religious devotion, seeing both as the model for holy slaves.
-			<<= FSChangePorn("ChattelReligionist", 1)>>
+			<<= FutureSocieties.ChangePorn("ChattelReligionist", 1)>>
 		<</if>>
 		<<if ($slaves[$i].trust > 95)>>
 			Society @@.green;strongly approves@@ of $his faith in you as a companion to faith in God, seeing both as the model for righteous slaves of the future.
-			<<= FSChangePorn("ChattelReligionist", 2)>>
+			<<= FutureSocieties.ChangePorn("ChattelReligionist", 2)>>
 		<</if>>
 		<<if ($slaves[$i].behavioralFlaw == "devout")>>
 			Society does not disapprove of $his devout adherence to an old world faith, having confidence that you'll bring $him around, and looking forward to seeing $him converted into a holy sex object.
 		<<elseif ($slaves[$i].behavioralQuirk == "sinful")>>
 			Society @@.green;strongly approves@@ of $his eagerness to transgress against the old world religious mores $he once held dear.
-			<<= FSChangePorn("ChattelReligionist", 2)>>
+			<<= FutureSocieties.ChangePorn("ChattelReligionist", 2)>>
 		<</if>>
 		<<if $slaves[$i].shouldersTat == "sacrilege" && $slaves[$i].lipsTat == "sacrilege" && $slaves[$i].boobsTat == "sacrilege" && $slaves[$i].armsTat == "sacrilege" && $slaves[$i].backTat == "sacrilege" && $slaves[$i].stampTat == "sacrilege" && $slaves[$i].buttTat == "sacrilege" && $slaves[$i].vaginaTat == "sacrilege" && $slaves[$i].dickTat == "sacrilege" && $slaves[$i].anusTat == "sacrilege" && $slaves[$i].legsTat == "sacrilege" && $slaves[$i].fuckdoll == 0>>
 			Society @@.green;enjoys the sight@@ of the religious sacrilege scrawled across $his skin.
-			<<= FSChangePorn("ChattelReligionist", 1)>>
+			<<= FutureSocieties.ChangePorn("ChattelReligionist", 1)>>
 		<</if>>
 	<</if>>
 
@@ -5865,7 +5865,7 @@
 					<<if ($slaves[$i].trust > 20) && ($slaves[$i].health > 40)>>
 						<<if $arcologies[0].FSPaternalist != "unset">>
 							Society @@.green;strongly approves@@ of how you've brought a shelter girl health and happiness.
-							<<= FSChangePorn("Paternalist", 2)>>
+							<<= FutureSocieties.ChangePorn("Paternalist", 2)>>
 							<<switch $slaves[$i].assignment>>
 							<<case "work in the brothel">><<run getSlaveStatisticData($slaves[$i], $facility.brothel).rep += 2*$FSSingleSlaveRep*($arcologies[0].FSPaternalist/$FSLockinLevel)>>
 							<</switch>>
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index b17f823c62a3d07dcd78162c29e8cef6b10d68ff..3ea1c19b6a4aff32d912c1b5e70d812b4f57d4d0 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -1287,27 +1287,28 @@ Aphrodisiacs: <span id="aphrodisiacs"><strong><<if $activeSlave.aphrodisiacs > 1
 						All _reservedIncubator of $his children will be placed in $incubatorName.
 					<</if>>
 					<<if (_reservedIncubator + _reservedNursery < _WL) && ($reservedChildren < $freeTanks)>>
-						<<link "Keep another child" "Slave Interact">><<set WombAddToGenericReserve($activeSlave, "incubator", 1)>><</link>>
+						<<link "Keep another child" "Slave Interact">><<set WombAddToGenericReserve($activeSlave, "incubator", 1)>><<set $slaves[$slaveIndices[$activeSlave.ID]] = $activeSlave>><<set $reservedChildren = FetusGlobalReserveCount("incubator")>><</link>>
 						<<if _reservedIncubator > 0>>
-							| <<link "Keep one less child" "Slave Interact">><<set WombCleanGenericReserve($activeSlave, "incubator", 1)>><</link>>
+							| <<link "Keep one less child" "Slave Interact">><<set WombCleanGenericReserve($activeSlave, "incubator", 1)>><<set $slaves[$slaveIndices[$activeSlave.ID]] = $activeSlave>><<set $reservedChildren = FetusGlobalReserveCount("incubator")>><</link>>
 						<</if>>
 						<<if _reservedIncubator > 1>>
-							| <<link "Keep none of $his children" "Slave Interact">><<set WombCleanGenericReserve($activeSlave, "incubator", 9999)>><</link>>
+							| <<link "Keep none of $his children" "Slave Interact">><<set WombCleanGenericReserve($activeSlave, "incubator", 9999)>><<set $slaves[$slaveIndices[$activeSlave.ID]] = $activeSlave>><<set $reservedChildren = FetusGlobalReserveCount("incubator")>><</link>>
 						<</if>>
 						<<if ($reservedChildren + _WL - _reservedIncubator) <= $freeTanks>>
-							| <<link "Keep the rest of $his children" "Slave Interact">><<set WombAddToGenericReserve($activeSlave, "incubator", 9999)>><</link>>
+							| <<link "Keep the rest of $his children" "Slave Interact">><<set WombAddToGenericReserve($activeSlave, "incubator", 9999)>><<set $slaves[$slaveIndices[$activeSlave.ID]] = $activeSlave>><<set $reservedChildren = FetusGlobalReserveCount("incubator")>><</link>>
 						<</if>>
 					<<elseif (_reservedIncubator == _WL) || ($reservedChildren == $freeTanks) || (_reservedIncubator - _reservedNursery >= 0)>>
-						<<link "Keep one less child" "Slave Interact">><<set WombCleanGenericReserve($activeSlave, "incubator", 1)>><</link>>
+						<<link "Keep one less child" "Slave Interact">><<set WombCleanGenericReserve($activeSlave, "incubator", 1)>><<set $slaves[$slaveIndices[$activeSlave.ID]] = $activeSlave>><<set $reservedChildren = FetusGlobalReserveCount("incubator")>><</link>>
 						<<if _reservedIncubator > 1>>
-							| <<link "Keep none of $his children" "Slave Interact">><<set WombCleanGenericReserve($activeSlave, "incubator", 9999)>><</link>>
+							| <<link "Keep none of $his children" "Slave Interact">><<set WombCleanGenericReserve($activeSlave, "incubator", 9999)>><<set $slaves[$slaveIndices[$activeSlave.ID]] = $activeSlave>><<set $reservedChildren = FetusGlobalReserveCount("incubator")>><</link>>
 						<</if>>
 					<</if>>
 				<<elseif $reservedChildren < $freeTanks>>
 					$He is pregnant and you have <<if $freeTanks == 1>>an<</if>> @@.lime;available aging tank<<if $freeTanks > 1>>s<</if>>.@@
-					<<print "[[Keep "+ ((_WL > 1) ? "a" : "the") +" child|Slave Interact][WombAddToGenericReserve($activeSlave, 'incubator', 1)]]">>
+					<<set _cCount = (_WL > 1 ? "a" : "the")>>
+					<<link "Keep _cCount child" "Slave Interact">><<set WombAddToGenericReserve($activeSlave, "incubator", 1)>><<set $slaves[$slaveIndices[$activeSlave.ID]] = $activeSlave>><<set $reservedChildren = FetusGlobalReserveCount("incubator")>><</link>>
 					<<if (_WL > 1) && ($reservedChildren + _WL) <= $freeTanks>>
-						| <<link "Keep all of $his children" "Slave Interact">><<set WombAddToGenericReserve($activeSlave, "incubator", 9999)>><</link>>
+						| <<link "Keep all of $his children" "Slave Interact">><<set WombAddToGenericReserve($activeSlave, "incubator", 9999)>><<set $slaves[$slaveIndices[$activeSlave.ID]] = $activeSlave>><<set $reservedChildren = FetusGlobalReserveCount("incubator")>><</link>>
 					<</if>>
 				<<elseif $reservedChildren == $freeTanks>>
 					You have no available tanks for $his children.
diff --git a/src/uncategorized/spaReport.tw b/src/uncategorized/spaReport.tw
index 373786f19e3f8a4a7fe92d49d1cf6ca61170bf0e..7f980bb7ec219df927110cf3f647542eecc951c3 100644
--- a/src/uncategorized/spaReport.tw
+++ b/src/uncategorized/spaReport.tw
@@ -206,7 +206,7 @@
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;Since $he doesn't have enough girls to occupy all $his time, the spa takes in citizens' slaves on a contract basis and $he helps them too, earning @@.yellowgreen;<<print cashFormat(_seed)>>.@@
 		<<if ($arcologies[0].FSHedonisticDecadence > 0) && (_DL == 0)>>
 			Society @@.green;loves@@ being allowed to lounge in your spa, greatly advancing your laid back culture.
-			<<= FSChange("Hedonism", 2)>>
+			<<= FutureSocieties.Change("Hedonistic", 2)>>
 		<</if>>
 	<</if>>
 	<<if (_DL > 0)>><br><br><</if>>
@@ -216,7 +216,7 @@
 	&nbsp;&nbsp;&nbsp;&nbsp;''<<if (_DL > 1)>>There are _DL slaves<<else>>There is one slave<</if>> resting and recuperating in the spa.''
 	<<if ($arcologies[0].FSHedonisticDecadence > 0) && (_DL == 0)>>
 		Society @@.green;approves@@ of your slaves being pampered this way, greatly advancing your laid back culture.
-		<<= FSChange("Hedonism", 1)>>
+		<<= FutureSocieties.Change("Hedonistic", 1)>>
 	<</if>>
 <</if>>