diff --git a/js/003-data/gameVariableData.js b/js/003-data/gameVariableData.js
index 27f6c98773faa6c6a09d203e4e894b93cb7cd39e..b859b9718de84ccb55cad8f0f9e0a02895929dcc 100644
--- a/js/003-data/gameVariableData.js
+++ b/js/003-data/gameVariableData.js
@@ -649,6 +649,7 @@ App.Data.resetOnNGPlus = {
 		/** @type {App.Entity.Animal} */
 		feline: null,
 	},
+	animalType: null,
 	canine: [],
 	hooved: [],
 	feline: [],
diff --git a/src/005-passages/interactPassages.js b/src/005-passages/interactPassages.js
index ad4143cd9536f8f827b21539dcdf9d35a9e4cc72..96a797b5b1d1dff2ac02747d0d20545f80d1a6fd 100644
--- a/src/005-passages/interactPassages.js
+++ b/src/005-passages/interactPassages.js
@@ -9,7 +9,7 @@ new App.DomPassage("Slave Interact",
 );
 
 /* ### Single Interaction ### */
-new App.DomPassage("BeastFucked", () => App.Interact.fAnimal(getSlave(V.AS), V.animalType));
+new App.DomPassage("FAnimal", () => App.Interact.fAnimal(getSlave(V.AS), V.animalType));
 
 new App.DomPassage("SlaveOnSlaveFeeding",
 	() => {
diff --git a/src/endWeek/saLongTermEffects.js b/src/endWeek/saLongTermEffects.js
index 5994a4517e07ced2ed699c2a1b0f575efd65c5b2..ffd4fa19f3efdf8345cb6a1b3502b348449177a9 100644
--- a/src/endWeek/saLongTermEffects.js
+++ b/src/endWeek/saLongTermEffects.js
@@ -753,10 +753,20 @@ App.SlaveAssignment.longTermEffects = (function() {
 			}
 		}
 		/* NCS helps primary sexual maturity */
-		if (slave.geneMods.NCS === 0) {
-			slave.hormoneBalance = Math.clamp(slave.hormoneBalance, -400, 400);
-		} else {
-			slave.hormoneBalance = Math.clamp(slave.hormoneBalance * 1.5, -400, 400);
+		if (slave.geneMods.NCS === 1) {
+			if (slave.genes === "XX" && slave.hormoneBalance > 0 && slave.pubertyXX === 0) {
+				slave.hormoneBalance = Math.clamp(slave.hormoneBalance * 1.5, -400, 400);
+			} else if (slave.genes === "XY" && slave.hormoneBalance < 0 && slave.pubertyXY === 0) {
+				slave.hormoneBalance = Math.clamp(slave.hormoneBalance * 1.5, -400, 400);
+			} else if ((slave.ovaries === 1 || slave.mpreg === 1) && slave.pubertyXX === 0) {
+				slave.hormoneBalance += 20;
+			} else if (slave.balls > 0 && slave.pubertyXY === 0) {
+				slave.hormoneBalance -= 20;
+			} else if (slave.genes === "XX") {
+				slave.hormoneBalance += 5;
+			} else if (slave.genes === "XY") {
+				slave.hormoneBalance -= 5;
+			}
 		}
 		/* androgyny really wants to sit around 0 and will fight changes to do so */
 		if (slave.geneticQuirks.androgyny === 2) {
@@ -766,6 +776,7 @@ App.SlaveAssignment.longTermEffects = (function() {
 				slave.hormoneBalance += 10;
 			}
 		}
+		slave.hormoneBalance = Math.clamp(slave.hormoneBalance, -400, 400);
 		let supp = 0;
 		if (slave.drugs !== "hormone blockers") {
 			r.push(App.SlaveAssignment.hormonesEffects(slave));
diff --git a/src/interaction/siWork.js b/src/interaction/siWork.js
index b48e346a5c60cc45644866849f42001a7c3532db..e9791109be21ea89aa1afad47e035b881e941027 100644
--- a/src/interaction/siWork.js
+++ b/src/interaction/siWork.js
@@ -463,13 +463,13 @@ App.UI.SlaveInteract.work = function(slave) {
 			}
 			if (V.seeBestiality) {
 				if (V.farmyardKennels > 0 && V.active.canine) {
-					sexOptions.push({text: `Have a ${V.active.canine.species} mount ${him}`, scene: `BeastFucked`, update: {animalType: "canine"}});
+					sexOptions.push({text: `Have a ${V.active.canine.species} mount ${him}`, scene: `FAnimal`, update: {animalType: "canine"}});
 				}
 				if (V.farmyardStables > 0 && V.active.hooved) {
-					sexOptions.push({text: `Let a ${V.active.hooved.species} mount ${him}`, scene: `BeastFucked`, update: {animalType: "hooved"}});
+					sexOptions.push({text: `Let a ${V.active.hooved.species} mount ${him}`, scene: `FAnimal`, update: {animalType: "hooved"}});
 				}
 				if (V.farmyardCages > 0 && V.active.feline) {
-					sexOptions.push({text: `Have a ${V.active.feline.species} mount ${him}`, scene: `BeastFucked`, update: {animalType: "feline"}});
+					sexOptions.push({text: `Have a ${V.active.feline.species} mount ${him}`, scene: `FAnimal`, update: {animalType: "feline"}});
 				}
 			}
 			sexOptions.push({text: `Abuse ${him}`, scene: `FAbuse`});
diff --git a/src/js/utilsMisc.js b/src/js/utilsMisc.js
index ab9e8f6928c3a475339641231554e4dd3d127654..27574a559520d9b2545c348285433c9a5f5299ea 100644
--- a/src/js/utilsMisc.js
+++ b/src/js/utilsMisc.js
@@ -1,3 +1,35 @@
+/**
+A categorizer is used to "slice" a value range into distinct categories in an efficient manner.
+
+If the values are objects their property named 'value' will be set to whatever
+the value used for the choice was. This is important for getters, where it can be accessed
+via this.value.
+
+--- Example ---
+Original SugarCube code
+<<if _Slave.muscles > 95>>
+	Musc++
+<<elseif _Slave.muscles > 30>>
+	Musc+
+<<elseif _Slave.muscles > 5>>
+	Toned
+<<elseif _Slave.muscles > -6>>
+<<elseif _Slave.muscles > -31>>
+	<span class="red">weak</span>
+<<elseif _Slave.muscles > -96>>
+	<span class="red">weak+</span>
+<<else>>
+	<span class="red">weak++</span>
+<</if>>
+
+As a categorizer
+<<if ndef $cats>><<set $cats = {}>><</if>>
+<<if ndef $cats.muscleCat>>
+	<!-- This only gets set once, skipping much of the code evaluation, and can be set outside of the code in an "init" passage for further optimization -->
+	<<set $cats.muscleCat = new Categorizer([96, 'Musc++'], [31, 'Musc+'], [6, 'Toned'], [-5, ''], [-30, '<span class="red">weak</span>'], [-95, '<span class="red">weak+</span>'], [-Infinity, '<span class="red">weak++</span>'])>>
+<</if>>
+<<print $cats.muscleCat.cat(_Slave.muscles)>>
+*/
 globalThis.Categorizer = class {
 	/**
 	 * @param  {...[]} pairs
diff --git a/src/js/utilsSlave.js b/src/js/utilsSlave.js
index 7fe0dfa2104d40451b511d56e8f12467db8edaef..13898c71a394dad76b01256a05825f855074a7c4 100644
--- a/src/js/utilsSlave.js
+++ b/src/js/utilsSlave.js
@@ -877,39 +877,12 @@ globalThis.Intelligence = (function() {
 		config: _config,
 	};
 })();
-/*
-A categorizer is used to "slice" a value range into distinct categories in an efficient manner.
-
-If the values are objects their property named 'value' will be set to whatever
-the value used for the choice was. This is important for getters, where it can be accessed
-via this.value.
-
---- Example ---
-Original SugarCube code
-<<if _Slave.muscles > 95>>
-	Musc++
-<<elseif _Slave.muscles > 30>>
-	Musc+
-<<elseif _Slave.muscles > 5>>
-	Toned
-<<elseif _Slave.muscles > -6>>
-<<elseif _Slave.muscles > -31>>
-	<span class="red">weak</span>
-<<elseif _Slave.muscles > -96>>
-	<span class="red">weak+</span>
-<<else>>
-	<span class="red">weak++</span>
-<</if>>
-
-As a categorizer
-<<if ndef $cats>><<set $cats = {}>><</if>>
-<<if ndef $cats.muscleCat>>
-	<!-- This only gets set once, skipping much of the code evaluation, and can be set outside of the code in an "init" passage for further optimization -->
-	<<set $cats.muscleCat = new Categorizer([96, 'Musc++'], [31, 'Musc+'], [6, 'Toned'], [-5, ''], [-30, '<span class="red">weak</span>'], [-95, '<span class="red">weak+</span>'], [-Infinity, '<span class="red">weak++</span>'])>>
-<</if>>
-<<print $cats.muscleCat.cat(_Slave.muscles)>>
-*/
 
+/**
+ * Takes a string with a baked in pronoun ("Her mother offered her") and returns it with SC variable pronouns("$His mother offered $him")
+ * @param {string} slavetext
+ * @returns {string}
+ */
 globalThis.pronounReplacer = function(slavetext) {
 	switch (slavetext) {
 		case "After her short but very promising slave racing career, during which she made it through several competitions as a virgin, many people fondly remember fantasizing about taking her.":
@@ -1372,6 +1345,11 @@ globalThis.pronounReplacer = function(slavetext) {
 	return slavetext;
 };
 
+/**
+ * Describes a slaves pre-slavery career in a gender sensitive way.  If career is "a dominatrix" but the slave is male and the pronoun system is on, returns "a dominator"
+ * @param {App.Entity.SlaveState} slave
+ * @returns {FC.Zeroable<string>}
+ */
 globalThis.convertCareer = function(slave) {
 	let job = slave.career;
 	if ((V.diversePronouns === 1) && (slave.pronoun === App.Data.Pronouns.Kind.male)) {
@@ -3444,14 +3422,6 @@ globalThis.slaveSkillIncrease = function(targetSkill, slave, skillIncrease = 1)
 	return r;
 };
 
-/*
-//Example
-getBestSlaves({part:"butt", count: 5});
-getBestSlaves({part:"boobs"});//defaults to top 3
-getBestSlaves({part:"dick", smallest:true, filter:(slave)=>slave.dick > 0});//defaults to top 3
-getBestSlaves({part:slave=>slave.intelligence+slave.intelligenceImplant});
-*/
-
 /**
  * Generates a new slave ID that is guaranteed to be unused
  * @returns {number} slave ID
diff --git a/src/js/utilsSlaves.js b/src/js/utilsSlaves.js
index 79222bba4de3558011b209d9be326bb6d86eba17..56de9d67046c5b315738aeffce056f910fe6f582 100644
--- a/src/js/utilsSlaves.js
+++ b/src/js/utilsSlaves.js
@@ -122,6 +122,11 @@ globalThis.slaveSortMinor = function(slaves) {
  */
 
 /**
+ * Example:
+ * getBestSlaves({part:"butt", count: 5});
+ * getBestSlaves({part:"boobs"});//defaults to top 3
+ * getBestSlaves({part:"dick", smallest:true, filter:(slave)=>slave.dick > 0});//defaults to top 3
+ * getBestSlaves({part:slave=>slave.intelligence+slave.intelligenceImplant});
  * @param {getBestSlavesParams} params
  * @returns {App.Entity.SlaveState[]} sorted from best to worst
  */
@@ -180,6 +185,10 @@ App.Utils.masterSuiteAverages = (function() {
 	};
 })();
 
+/**
+ * Updates the globals roomsPopulation and dormitoryPopulation
+ * @returns {void}
+ */
 globalThis.penthouseCensus = function() {
 	function occupiesRoom(slave) {
 		if (slave.rules.living !== "luxurious") {
diff --git a/src/npc/interaction/fAnimal.js b/src/npc/interaction/fAnimal.js
index e835c9e40aa0b1784e43d4d6732aed37cb4a3209..b52ad4888599654dbcb6a34a360044334186b2a2 100644
--- a/src/npc/interaction/fAnimal.js
+++ b/src/npc/interaction/fAnimal.js
@@ -1,4 +1,3 @@
-
 /**
  * @param {App.Entity.SlaveState} slave
  * @param {string} type
diff --git a/src/npc/interaction/fAnimal.tw b/src/npc/interaction/fAnimal.tw
new file mode 100644
index 0000000000000000000000000000000000000000..c0212e4bbfbf3efddb7fdb86f8b91c48acfe0698
--- /dev/null
+++ b/src/npc/interaction/fAnimal.tw
@@ -0,0 +1,5 @@
+:: FAnimal [nobr no-history]
+
+/* TODO: This passage only exists because siWork is not currently set up to handle pure DOM scenes. Remove this once fixed. */
+
+<<includeDOM App.Interact.fAnimal(getSlave($AS), $animalType)>>
diff --git a/src/pregmod/beastFuck.tw b/src/pregmod/beastFuck.tw
deleted file mode 100644
index 6eebc83fe48806db591616e46bcfa80d7a7ab4da..0000000000000000000000000000000000000000
--- a/src/pregmod/beastFuck.tw
+++ /dev/null
@@ -1,375 +0,0 @@
-:: BeastFuck [nobr]
-
-<<run App.Utils.setLocalPronouns($activeSlave)>>
-
-/*THIS WILL ALL NEED TO BE COMPLETELY REWORKED*/
-
-/*
-<<if $species == "horse">>
-	<<set _animal = {species: "horse", dickSize: "huge", ballType: "horse"}>>
-<<elseif $species == "dog">>
-	<<set _animal = {species: "dog", dickSize: "large", ballType: "dog"}>>
-<</if>>
-
-<<if canWalk($activeSlave)>>
-	You call $him over and tell $him you want to watch $him fuck a _animal.species.
-<<else>>
-	You order another slave to bring $activeSlave.slaveName over. Once $he is situated, you tell $him that you want to watch $him fuck a _animal.species.
-<</if>>
-
-<<if ($activeSlave.fetish != "mindbroken")>>
-	<<if ($activeSlave.devotion > 50)>>
-		<<if (canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)) || (canDoAnal($activeSlave) && ($activeSlave.anus > 0))>>
-			<<if $activeSlave.fetish == "masochistic">>
-				$activeSlave.slaveName's face visibly brightens at the thought of the pain involved.
-			<<elseif $activeSlave.fetish == "humiliation">>
-				$activeSlave.slaveName's face visibly brightens at the thought of the humiliation involved.
-			<<elseif $activeSlave.sexualQuirk == "perverted">>
-				$activeSlave.slaveName's face visibly brightens at the thought of the committing such a perverted act.
-			<<elseif $activeSlave.behavioralQuirk == "sinful">>
-				$activeSlave.slaveName's face visibly brightens at the thought of committing such a sinful act.
-			<<else>>
-				$activeSlave.slaveName looks visibly disturbed, but is so attentive to your will that $he quickly agrees.
-			<</if>>
-		<<else>>
-			<<if $activeSlave.fetish == "masochistic">>
-				$activeSlave.slaveName's face visibly brightens at the thought of the pain soon to come, although $he seems a bit hesitant at the thought of giving $his <<if !canDoVaginal($activeSlave)>>anal<</if>> virginity to an animal.
-			<<elseif $activeSlave.fetish == "humiliation">>
-				$activeSlave.slaveName's face visibly brightens at the thought of the humiliation soon to come, although $he seems a bit hesitant at the thought of giving $his <<if !canDoVaginal($activeSlave)>>anal<</if>> virginity to an animal.
-			<<elseif $activeSlave.sexualQuirk == "perverted">>
-				$activeSlave.slaveName's face visibly brightens at the thought of the perversion soon to come, although $he seems a bit hesitant at the thought of giving $his <<if !canDoVaginal($activeSlave)>>anal<</if>> virginity to an animal.
-			<<elseif $activeSlave.behavioralQuirk == "sinful">>
-				$activeSlave.slaveName's face visibly brightens at the thought of the sinfulness soon to come, although $he seems a bit hesitant at the thought of giving $his <<if !canDoVaginal($activeSlave)>>anal<</if>> virginity to an animal.
-			<<else>>
-				$activeSlave.slaveName looks visibly shaken at the thought of having $his precious <<if !canDoVaginal($activeSlave)>>anal <</if>>virginity taken by an animal, but is so attentive to your will that $he agrees.
-			<</if>>
-		<</if>>
-	<</if>>
-
-	<<if ($activeSlave.devotion > 20) && ($activeSlave.devotion <= 50)>>
-		<<if (canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)) || (canDoAnal($activeSlave) && ($activeSlave.anus > 0))>>
-			<<if $activeSlave.fetish == "masochistic">>
-				$activeSlave.slaveName isn't too keen on the idea of fucking a _animal.species, but the thought of the pain involved convinces $him to comply.
-			<<elseif $activeSlave.fetish == "humiliation">>
-				$activeSlave.slaveName isn't too keen on the idea of fucking a _animal.species, but the thought of the humiliation involved convinces $him to comply.
-			<<elseif $activeSlave.sexualQuirk == "perverted">>
-				$activeSlave.slaveName isn't too keen on the idea of being fucked by a _animal.species, but the thought of the perversion of fucking an animal soon convinces $him to comply.
-			<<elseif $activeSlave.behavioralQuirk == "sinful">>
-				$activeSlave.slaveName isn't too keen on the idea of being fucked by a _animal.species, but the thought of the sinfulness of fucking an animal soon convinces $him to comply.
-			<<else>>
-				$activeSlave.slaveName tries in vain to conceal $his horror, but quickly regains $his composure.
-			<</if>>
-		<<else>>
-			<<if $activeSlave.fetish == "masochistic">>
-				$activeSlave.slaveName clearly has some reservations about having $his <<if !canDoVaginal($activeSlave)>>anal <</if>>virginity taken by a _animal.species, but the thought of the pain that comes with it soon convinces $him to comply.
-			<<elseif $activeSlave.fetish == "humiliation">>
-				$activeSlave.slaveName clearly has some reservations about having $his <<if !canDoVaginal($activeSlave)>>anal <</if>>virginity taken by a _animal.species, but the thought of the humiliation that comes with it soon convinces $him to comply.
-			<<elseif $activeSlave.sexualQuirk == "perverted">>
-				$activeSlave.slaveName clearly has some reservations about having $his <<if !canDoVaginal($activeSlave)>>anal <</if>>virginity taken by a _animal.species, but the thought of the perversion of fucking an animal soon convinces $him to comply.
-			<<elseif $activeSlave.behavioralQuirk == "sinful">>
-				$activeSlave.slaveName clearly has some reservations about having $his <<if !canDoVaginal($activeSlave)>>anal <</if>>virginity taken by a _animal.species, but the thought of the sinfulness of fucking an animal soon convinces $him to comply.
-			<<else>>
-				$activeSlave.slaveName tries in vain to conceal $his horror at the thought of having $his <<if !canDoVaginal($activeSlave)>>rosebud<<else>>pearl<</if>> taken by a beast, but quickly regains $his composure.
-			<</if>>
-		<</if>>
-	<</if>>
-
-	<<if ($activeSlave.devotion > -20) && ($activeSlave.devotion <= 20)>>
-		<<if (canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)) || (canDoAnal($activeSlave) && ($activeSlave.anus > 0))>>
-			<<if $activeSlave.fetish == "masochistic">>
-				$activeSlave.slaveName looks disgusted at the thought of fucking a _animal.species at first, but the thought of the pain that comes with it seems to spark a small flame of lust in $him.
-			<<elseif $activeSlave.fetish == "humiliation">>
-				$activeSlave.slaveName looks disgusted at the thought of fucking a _animal.species at first, but the thought of the humiliation that comes with it seems to spark a small flame of lust in $him.
-			<<elseif $activeSlave.sexualQuirk == "perverted">>
-				$activeSlave.slaveName looks disgusted at the thought of fucking a _animal.species at first, but the thought of the perversion that comes with it seems to spark a small flame of lust in $him.
-			<<elseif $activeSlave.behavioralQuirk == "sinful">>
-				$activeSlave.slaveName looks disgusted at the thought of fucking a _animal.species at first, but the thought of the sinfulness that comes with it seems to spark a small flame of lust in $him.
-			<<else>>
-				$activeSlave.slaveName tries in vain to conceal $his horror,
-			<</if>>
-		<<else>>
-			<<if $activeSlave.fetish == "masochistic">>
-				$activeSlave.slaveName looks disgusted at the thought of giving up $his <<if !canDoVaginal($activeSlave)>>anal <</if>>virginity to a _animal.species, but the thought of the pain that comes with it soon sparks a small flame of lust in $him.
-			<<elseif $activeSlave.fetish == "humiliation">>
-				$activeSlave.slaveName looks disgusted at the thought of giving up $his <<if !canDoVaginal($activeSlave)>>anal <</if>>virginity to a _animal.species, but the thought of the humiliation that comes with it soon sparks a small flame of lust in $him.
-			<<elseif $activeSlave.sexualQuirk == "perverted">>
-				$activeSlave.slaveName looks disgusted at the thought of giving up $his <<if !canDoVaginal($activeSlave)>>anal <</if>>virginity to a _animal.species, but the thought of the perversion of fucking an animal soon sparks a small flame of lust in $him.
-			<<elseif $activeSlave.behavioralQuirk == "sinful">>
-				$activeSlave.slaveName looks disgusted at the thought of giving up $his <<if !canDoVaginal($activeSlave)>>anal <</if>>virginity to a _animal.species, but the thought of the sinfulness of fucking an animal soon sparks a small flame of lust in $him.
-			<<else>>
-				$activeSlave.slaveName tries in vain to conceal $his horror at the thought of giving $his <<if !canDoVaginal($activeSlave)>>anal <</if>>virginity to an animal, and only the threat of a far worse punishment keeps $him from running out of the room.
-			<</if>>
-		<</if>>
-	<</if>>
-
-	<<if ($activeSlave.devotion < -20)>>
-		$activeSlave.slaveName's face contorts into a mixture of <<if ($activeSlave.devotion < -50)>>hatred, anger, and disgust, <<else>>anger and disgust, <</if>>
-	<</if>>
-
-<<else>>
-	$activeSlave.slaveName nods $his head dumbly, $his eyes vacant<<if !canSee($activeSlave)>> as always<</if>>.
-<</if>>
-
-<<if hasAnyLegs($activeSlave)>>
-	<<if $activeSlave.devotion > -20>>
-		<<if ($activeSlave.devotion <= 20) && ($activeSlave.fetish != "mindbroken") && ($activeSlave.fetish != "masochistic") && ($activeSlave.fetish != "humiliation") && ($activeSlave.sexualQuirk != "perverted") && ($activeSlave.behavioralQuirk != "sinful")>>and only the threat of worse punishment prevents $him from <<if canWalk($activeSlave)>>running<<else>>trying to run<</if>> out of the room.<</if>> You have $him <<if ($activeSlave.clothes != "no clothing")>>take off $his clothing and <</if>>kneel down on the floor with $his ass in the air,
-	<<else>>
-		and you have to physically prevent $him from <<if canWalk($activeSlave)>>running<<else>>trying to run<</if>> out of the room. You <<if ($activeSlave.clothes != "no clothing")>>force $him to take off $his $activeSlave.clothes and <</if>>restrain $him on the floor with $his ass in the air — all the while ignoring $his screams and pleas for mercy —
-	<</if>>
-<<else>>
-	You <<if ($activeSlave.clothes != "no clothing")>>take off $his $activeSlave.clothes and <</if>>place $him on the ground with a cushion under $his hips, $his ass in the air,
-<</if>>
-
-before calling in the _animal.species. The _animal.species slowly saunters up to the <<if ($activeSlave.devotion <= 20)>>bound <</if>>slave and takes it position <<if canWalk($activeSlave)>>behind <<else>>above <</if>>$him. You can see its _animal.dickSize penis slowly come to attention as its animalistic brain realizes that it's standing <<if canWalk($activeSlave)>>behind <<else>>above <</if>>a warm hole that needs to be filled with seed.
-
-<<if (_animal.species == "dog")>>
-	<<if canWalk($activeSlave)>>
-		The dog clambers up to mount $activeSlave.slaveName, eliciting a squeal from the $girl as its claws dig into $his flesh.
-	<<else>>
-		The dog takes a few curious sniffs, then lines its cock up with $activeSlave.slaveName's <<if canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>.
-	<</if>>
-	It takes a couple of tries, but it finally manages to sink its cock into $his <<if canDoVaginal($activeSlave)>><<if ($activeSlave.fetish == "masochistic") || ($activeSlave.fetish == "humiliation") || ($activeSlave.sexualQuirk == "perverted") || ($activeSlave.behavioralQuirk == "sinful")>>wet <</if>>pussy<<else>>ass<</if>>.
-
-	<<if ($activeSlave.vagina == 0)>>The slave gives a loud <<if ($activeSlave.devotion > 20)>>moan<<else>>groan<</if>> as $his <<if !canDoVaginal($activeSlave)>>@@.lime;anal@@<</if>> @@.lime;virginity is taken from $him.@@<<if ($activeSlave.devotion <= -20)>>by force.<</if>><</if>>
-
-	<<if $activeSlave.vagina == 0>>
-		<<if ($activeSlave.devotion >= -20)>>
-			<<if $activeSlave.fetish == "masochistic">>
-				Losing $his virginity in such a painful manner has @@.hotpink;increased $his devotion to you.@@
-				<<set $activeSlave.devotion += 10>>
-			<<elseif $activeSlave.fetish == "humiliation">>
-				Losing $his virginity in such a humiliating manner has @@.hotpink;increased $his devotion to you.@@
-				<<set $activeSlave.devotion += 10>>
-			<<elseif $activeSlave.sexualQuirk == "perverted">>
-				Losing $his virginity in such a perverted manner has @@.hotpink;increased $his devotion to you.@@
-				<<set $activeSlave.devotion += 10>>
-			<<elseif $activeSlave.behavioralQuirk == "sinful">>
-				Losing $his virginity in such a sinful manner has @@.hotpink;increased $his devotion to you.@@
-				<<set $activeSlave.devotion += 10>>
-			<<else>>
-				<<if $activeSlave.devotion > 50>>
-					Since $he is well broken, losing $his virginity in such a manner has @@.hotpink;increased $his submission to you.@@
-					<<set $activeSlave.devotion += 5>>
-				<<elseif ($activeSlave.devotion >= -20) && ($activeSlave.devotion < 50)>>
-					Losing $his virginity in such a manner has @@.hotpink;increased $his submission to you,@@ though $he is @@.gold;fearful@@ that you'll decide to only use $him to sate your animals' lust.
-					<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5>>
-				<<elseif ($activeSlave.devotion >= -50) && ($activeSlave.devotion < -20)>>
-					$He is clearly @@.mediumorchid;unhappy@@ in the manner in which $his virginity has been taken, and $he @@.gold;fears@@ you'll decide to only use $him to sate your animals' lust.
-					<<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>>
-				<</if>>
-			<</if>>
-		<<else>>
-			Having $his pearl of great price taken by a mere beast has @@.mediumorchid;reinforced the hatred $he holds towards you,@@ and $he is @@.gold;terrified@@ you'll only use $him as a plaything for your animals.
-			<<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>>
-		<</if>>
-	<</if>>
-
-	The hound wastes no time in beginning to hammer away at $his <<if canDoVaginal($activeSlave)>>cunt<<else>>asshole<</if>>, causing $activeSlave.slaveName to moan uncontrollably as its thick, veiny member probes the depths of $his <<if (canDoVaginal($activeSlave))>>pussy<<else>>asshole<</if>>.
-	A few short minutes later, $he gives a loud groan <<if ($activeSlave.fetish == "masochist") || ($activeSlave.fetish == "humiliation") || $activeSlave.sexualQuirk == "perverted" || $activeSlave.behavioralQuirk == "sinful">>and shakes in orgasm <</if>>as the dog's knot begins to swell and its penis begins to erupt a thick stream of jizz into $him.
-	After almost a minute, the dog has finally finished cumming and its knot is sufficiently small enough that the dog is able to pull its cock out, causing a stream of cum to slide out of $his <<if ($activeSlave.vagina <= 2)>>@@.lime;now-gaping <<if (canDoVaginal($activeSlave))>>pussy<<else>>asshole<</if>>@@<<else>>
-	<<if canDoVaginal($activeSlave)>>
-		<<if $activeSlave.vagina == 3>>
-			loose
-		<<elseif $activeSlave.vagina <= 9>>
-			cavernous
-		<<else>>
-			ruined
-		<</if>>
-	<<else>>
-		<<if $activeSlave.anus == 0>>
-			virgin
-		<<elseif $activeSlave.anus == 1>>
-			tight
-		<<elseif $activeSlave.anus == 2>>
-			loose
-		<<elseif $activeSlave.anus == 3>>
-			very loose
-		<<else>>
-			gaping
-		<</if>>
-	<</if>> <<if canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>><</if>>. Having finished its business, the dog runs off, presumably in search of food.
-
-	<<if (canDoVaginal($activeSlave)) && ($activeSlave.vagina < 3)>>
-		<<set $activeSlave.vagina = 3>>
-	<<elseif (canDoAnal($activeSlave)) && ($activeSlave.anus < 2)>>
-		<<set $activeSlave.anus = 2>>
-	<</if>>
-
-<<elseif (_animal.species == "horse")>>
-	The horse stands over $him as another slave lines its massive phallus up with $activeSlave.slaveName's <<if canDoVaginal($activeSlave)>><<if ($activeSlave.fetish == "masochistic") || ($activeSlave.fetish == "humiliation") || ($activeSlave.sexualQuirk == "perverted") || ($activeSlave.behavioralQuirk == "sinful")>>wet <</if>>pussy<<else>>ass<</if>>.
-
-	With a slight thrust, it enters $him and begins to fuck $him. $activeSlave.slaveName can't help but give a loud groan as the huge cock <<if ($activeSlave.vagina <= 2)>>@@.lime;stretches@@<<else>>@@.lime;enters@@<</if>> @@.lime;$his@@
-	<<if canDoVaginal($activeSlave)>>
-		<<if $activeSlave.vagina == 0>>
-			@@.lime;virgin@@
-		<<elseif $activeSlave.vagina == 1>>
-			@@.lime;tight@@
-		<<elseif $activeSlave.vagina == 2>>
-			@@.lime;reasonably tight@@
-		<<elseif $activeSlave.vagina == 3>>
-			@@.lime;loose@@
-		<<elseif $activeSlave.vagina <= 9>>
-			@@.lime;cavernous@@
-		<<else>>
-			@@.lime;ruined@@
-		<</if>>
-	<<else>>
-		<<if $activeSlave.anus == 0>>
-			@@.lime;virgin@@
-		<<elseif $activeSlave.anus == 1>>
-			@@.lime;tight@@
-		<<elseif $activeSlave.anus == 2>>
-			@@.lime;loose tight@@
-		<<elseif $activeSlave.anus == 3>>
-			@@.lime;very loose@@
-		<<else>>
-			@@.lime;gaping@@
-		<</if>>
-	<</if>>
-	<<if (canDoVaginal($activeSlave))>>@@.lime;pussy@@<<else>>@@.lime;asshole@@<</if>>.
-
-	<<if canDoVaginal($activeSlave)>>
-		<<if $activeSlave.vagina == 0>>
-			<<if ($activeSlave.devotion >= -20)>>
-				<<if $activeSlave.fetish == "masochistic">>
-					@@.lime;Losing $his virginity@@ in such a painful manner has @@.hotpink;increased $his devotion to you.@@
-					<<set $activeSlave.devotion += 10>>
-				<<elseif $activeSlave.fetish == "humiliation">>
-					@@.lime;Losing $his virginity@@ in such a humiliating manner has @@.hotpink;increased $his devotion to you.@@
-					<<set $activeSlave.devotion += 10>>
-				<<elseif $activeSlave.sexualQuirk == "perverted">>
-					@@.lime;Losing $his virginity@@ in such a perverted manner has @@.hotpink;increased $his devotion to you.@@
-					<<set $activeSlave.devotion += 10>>
-				<<elseif $activeSlave.behavioralQuirk == "sinful">>
-					@@.lime;Losing $his virginity@@ in such a sinful manner has @@.hotpink;increased $his devotion to you.@@
-					<<set $activeSlave.devotion += 10>>
-				<<else>>
-					<<if $activeSlave.devotion > 50>>
-						Since $he is well broken, @@.lime;losing $his virginity@@ in such a manner has @@.hotpink;increased $his submission to you.@@
-						<<set $activeSlave.devotion += 5>>
-					<<elseif ($activeSlave.devotion >= -20) && ($activeSlave.devotion < 50)>>
-						@@.lime;Losing $his virginity@@ in such a manner has @@.hotpink;increased $his submission to you,@@ though $he is @@.gold;fearful@@ that you'll decide to only use $him to sate your animals' lust.
-						<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5>>
-					<<elseif ($activeSlave.devotion >= -50) && ($activeSlave.devotion < -20)>>
-						$He is clearly @@.mediumorchid;unhappy@@ in the manner in which $his virginity has been taken, and $he @@.gold;fears@@ you'll decide to only use $him to sate your animals' lust.
-						<<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>>
-					<</if>>
-				<</if>>
-			<<else>>
-				Having $his @@.lime;pearl of great price taken@@ by a mere beast has @@.mediumorchid;reinforced the hatred $he holds towards you,@@ and $he is @@.gold;terrified@@ you'll only use $him as a plaything for your animals.
-				<<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $activeSlave.anus == 0>>
-			<<if ($activeSlave.devotion >= -20)>>
-				<<if $activeSlave.fetish == "masochistic">>
-					@@.lime;Losing $his anal virginity@@ in such a painful manner has @@.hotpink;increased $his devotion to you.@@
-					<<set $activeSlave.devotion += 10>>
-				<<elseif $activeSlave.fetish == "humiliation">>
-					@@.lime;Losing $his anal virginity@@ in such a humiliating manner has @@.hotpink;increased $his devotion to you.@@
-					<<set $activeSlave.devotion += 10>>
-				<<elseif $activeSlave.sexualQuirk == "perverted">>
-					@@.lime;Losing $his anal virginity@@ in such a perverted manner has @@.hotpink;increased $his devotion to you.@@
-					<<set $activeSlave.devotion += 10>>
-				<<elseif $activeSlave.behavioralQuirk == "sinful">>
-					@@.lime;Losing $his anal virginity@@ in such a sinful manner has @@.hotpink;increased $his devotion to you.@@
-					<<set $activeSlave.devotion += 10>>
-				<<else>>
-					<<if $activeSlave.devotion > 50>>
-						Since $he is well broken, @@.lime;losing $his anal virginity@@ in such a manner has @@.hotpink;increased $his submission to you.@@
-						<<set $activeSlave.devotion += 5>>
-					<<elseif ($activeSlave.devotion >= -20) && ($activeSlave.devotion < 50)>>
-						@@.lime;Losing $his anal virginity@@ in such a manner has @@.hotpink;increased $his submission to you,@@ though $he is @@.gold;fearful@@ that you'll decide to only use $him to sate your animals' lust.
-						<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5>>
-					<<elseif ($activeSlave.devotion >= -50) && ($activeSlave.devotion < -20)>>
-						$He is clearly @@.mediumorchid;unhappy@@ in the manner in which @@.lime;$his anal virginity has been taken,@@ and $he @@.gold;fears@@ you'll decide to only use $him to sate your animals' lust.
-						<<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>>
-					<</if>>
-				<</if>>
-			<<else>>
-				Having @@.lime;$his rosebud taken@@ by a mere beast has @@.mediumorchid;reinforced the hatred $he holds towards you,@@ and $he is @@.gold;terrified@@ you'll only use $him as a plaything for your animals.
-				<<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>>
-			<</if>>
-		<</if>>
-	<</if>>
-
-	The stallion begins to thrust faster and faster, causing $activeSlave.slaveName to moan and groan in pain as the <<if canDoVaginal($activeSlave)>> tip rams $his cervix<<else>> huge horsecock fills $him completely<</if>>. Before too long, the horse's movements begin to slow, and you can see its large testicles contract slightly as it begins to fill $activeSlave.slaveName's <<if (canDoVaginal($activeSlave))>>pussy<<else>>asshole<</if>> to the brim with thick horse semen.
-	After what seems like an impossibly long time, the horse's dick finally begins to soften and it finally pulls out. You have a servant lead the horse away, with a fresh apple as a treat for its good performance.
-
-	<<if (canDoVaginal($activeSlave)) && ($activeSlave.vagina < 4)>>
-		<<set $activeSlave.vagina = 4>>
-	<<elseif (canDoAnal($activeSlave)) && ($activeSlave.anus < 4)>>
-		<<set $activeSlave.anus = 4>>
-	<</if>>
-<</if>>
-
-<<if (random(1,100) > (100 + $activeSlave.devotion))>>
-	<<if canDoVaginal($activeSlave)>>
-		<<if ($activeSlave.energy <= 95) && ($activeSlave.sexualFlaw != "hates penetration")>>
-			Having a _animal.species fuck $him by force has given $him a @@.red;hatred of penetration.@@
-			<<set $activeSlave.sexualFlaw = "hates penetration">>
-		<</if>>
-	<<else>>
-		<<if ($activeSlave.energy <= 95) && ($activeSlave.sexualFlaw != "hates anal")>>
-			Having a _animal.species fuck $him by force has given $him a @@.red;hatred of anal penetration.@@
-			<<set $activeSlave.sexualFlaw = "hates anal">>
-		<</if>>
-	<</if>>
-<</if>>
-
-<<if $postSexCleanUp > 0>>
-	<<if ($activeSlave.vagina == 3)>>
-		Cum drips out of $his fucked-out hole.
-	<<elseif ($activeSlave.vagina == 2)>>
-		Cum drips out of $his stretched vagina.
-	<<elseif ($activeSlave.vagina == 1)>>
-		$His still-tight vagina keeps its load inside $him.
-	<<elseif ($activeSlave.vagina < 0)>>
-		Cum drips out of $his girly ass.
-	<<else>>
-		Its cum slides right out of $his gaping hole.
-	<</if>>
-
-	<<if canWalk($activeSlave)>>
-		$He uses <<if $activeSlave.vagina > 0>>a quick douche to clean $his <<if $activeSlave.vagina < 2>>tight<<elseif $activeSlave.vagina > 3>>loose<</if>> pussy<<else>>an enema to clean $his <<if $activeSlave.anus < 2>>tight<<elseif $activeSlave.anus < 3>>used<<else>>gaping<</if>> butthole<</if>>,
-
-		<<switch $activeSlave.assignment>>
-		<<case "work in the brothel">>
-			just like $he does between each customer.
-		<<case "serve in the club">>
-			just like $he does in the club.
-		<<case "work in the dairy">>
-			to avoid besmirching the nice clean dairy.
-		<<case "work as a farmhand">>
-			to avoid tainting the food in $farmyardName.
-		<<case "work as a servant">>
-			mostly to keep everything $he has to clean from getting any dirtier.
-		<<case "whore">>
-			before returning to offering it for sale.
-		<<case "serve the public">>
-			before returning to offering it for free.
-		<<case "rest">>
-			before crawling back into bed.
-		<<case "get milked">>
-			<<if $activeSlave.lactation > 0>>before going to get $his uncomfortably milk-filled tits drained<<else>>and then rests until $his balls are ready to be drained again<</if>>.
-		<<case "be a servant">>
-			since $his chores didn't perform themselves while you used $his fuckhole.
-		<<case "please you">>
-			before returning to await your next use of $his fuckhole, as though nothing had happened.
-		<<case "be a subordinate slave">>
-			though it's only a matter of time before another slave decides to play with $his fuckhole.
-		<<case "be your Head Girl">>
-			worried that $his charges got up to trouble while $he enjoyed $his <<= getWrittenTitle($activeSlave)>>'s use.
-		<<case "guard you">>
-			so $he can be fresh and ready for more sexual use even as $he guards your person.
-		<<case "be the Schoolteacher">>
-			before $he returns to teaching $his classes.
-		<<default>>
-			before $he returns to $activeSlave.assignment.
-		<</switch>>
-	<</if>>
-<</if>>
-
-<<set $species = 0>>
-*/
\ No newline at end of file