diff --git a/src/facilities/farmyard/farmyard.tw b/src/facilities/farmyard/farmyard.tw
index fa2afef1a024459a14cc7365483fe86142e2c563..ff47e477539b9191d95a20226e4a05477775b560 100644
--- a/src/facilities/farmyard/farmyard.tw
+++ b/src/facilities/farmyard/farmyard.tw
@@ -463,7 +463,7 @@ $farmyardNameCaps is an oasis of growth in the midst of the jungle of steel and
 
 <br><hr><br>
 <<if $Farmer != 0>>
-<<set $Flag = 2>>
+<<set $SlaveSummaryFiler = "leading">>
 	<<include "Slave Summary">>
 <<else>>
 	You do not have a slave serving as a Farmer. [[Appoint one|Farmer Select]]
@@ -483,7 +483,7 @@ $farmyardNameCaps is an oasis of growth in the midst of the jungle of steel and
 			''$farmyardNameCaps is full and cannot hold any more slaves''
 		<<elseif ($slaves.length > $farmyardSlaves)>>
 			<<resetAssignmentFilter>>
-			<<set $Flag = 0>>
+			<<set $SlaveSummaryFiler = "assignable">>
 			<<include "Slave Summary">>
 		<</if>>
 	</div>
@@ -493,7 +493,7 @@ $farmyardNameCaps is an oasis of growth in the midst of the jungle of steel and
 	<div class="content">
 		<<if $farmyardSlaves > 0>>
 			<<farmyardAssignmentFilter>>
-			<<set $Flag = 1>>
+			<<set $SlaveSummaryFiler = "occupying">>
 			<<include "Slave Summary">>
 			<<resetAssignmentFilter>>
 		<<else>>
diff --git a/src/facilities/nursery/childSummary.tw b/src/facilities/nursery/childSummary.tw
index cb3b48b4025de4e187cf84a6b5ac0b42388d7b7b..df36e3788188cb1d9f73b786eb9763f4a958e20d 100644
--- a/src/facilities/nursery/childSummary.tw
+++ b/src/facilities/nursery/childSummary.tw
@@ -4,12 +4,12 @@
 	"Main":						 c => (c.assignmentVisible == 1),
 	"Nursery":					   c => (c.assignmentVisible == 1 && c.fuckdoll == 0),
 	"Personal Attention Select":	c => (c.assignmentVisible == 1 && c.fuckdoll <= 0) && (
-			($Flag == 0 && c.assignment != "be a child")
-		|| ($Flag == 1 && c.assignment == "be a child")
+			($SlaveSummaryFiler == "assignable" && c.assignment != "be a child")
+		|| ($SlaveSummaryFiler == "occupying" && c.assignment == "be a child")
 	),
-	"New Game Plus":				c => (($Flag == 0 && c.assignment != "be imported") || ($Flag != 0 && c.assignment == "be imported")),
-	"Rules Slave Select":		   c => (($Flag == 0 && !ruleSlaveSelected(s, $currentRule)) || ($Flag != 0 && ruleSlaveSelected(s, $currentRule))),
-	"Rules Slave Exclude":		  c => (($Flag == 0 && !ruleSlaveExcluded(s, $currentRule)) || ($Flag != 0 && ruleSlaveExcluded(s, $currentRule))),
+	"New Game Plus":				c => (($SlaveSummaryFiler == "assignable" && c.assignment != "be imported") || ($SlaveSummaryFiler != 0 && c.assignment == "be imported")),
+	"Rules Slave Select":		   c => (($SlaveSummaryFiler == "assignable" && !ruleSlaveSelected(s, $currentRule)) || ($SlaveSummaryFiler != 0 && ruleSlaveSelected(s, $currentRule))),
+	"Rules Slave Exclude":		  c => (($SlaveSummaryFiler == "assignable" && !ruleSlaveExcluded(s, $currentRule)) || ($SlaveSummaryFiler != 0 && ruleSlaveExcluded(s, $currentRule))),
 }>>
 <<set _Pass = passage(), _CL = $cribs.length, $assignTo = _Pass, _indexed = 0,
 	_passagePreFilter = (c => c.assignment != "be your agent" && c.assignment != "live with your agent" && (!setup.passagePreFilters.hasOwnProperty(_Pass) || setup.passagePreFilters[_Pass](c))),
@@ -24,9 +24,9 @@
 <<if $useSlaveListInPageJSNavigation == 1>>
 	<<set _Count = _indexSlavesIdxs.length>>
 	/* Useful for finding weird combinations — usages of this passage that don't yet generate the quick index.
-	*	<<print 'pass/count/indexed/flag::[' + _Pass + '/' + _Count + '/' + _indexed + '/' + $Flag + ']'>>
+	*	<<print 'pass/count/indexed/flag::[' + _Pass + '/' + _Count + '/' + _indexed + '/' + $SlaveSummaryFiler + ']'>>
 	*/
-	<<if ((_Count > 1) && (_indexed == 0) && (((_Pass == 'Main') && (ndef $Flag) && (($useSlaveSummaryTabs == 0) || ($childAssignmentTab == "all"))) || ($Flag == 1)))>>
+	<<if ((_Count > 1) && (_indexed == 0) && (((_Pass == 'Main') && (ndef $SlaveSummaryFiler) && (($useSlaveSummaryTabs == 0) || ($childAssignmentTab == "all"))) || ($SlaveSummaryFiler == "occupying")))>>
 		<<set _indexed = 1, _counter = 0, _buttons = [], _offset = -50>>
 		<<if (/Select/i.test(_Pass))>>
 			<<set _offset = -25>>
@@ -129,13 +129,13 @@
 	<</link>>
 
 <<case "New Game Plus">>
-	<<if $Flag == 0>>
+	<<if $SlaveSummaryFiler == "assignable">>
 		<br>__''@@.pink;_Child.slaveName@@''__
 	<<else>>
 		<br>__''@@.pink;_Child.slaveName@@''__
 	<</if>>
 <<case "Rules Slave Select">>
-	<<if $Flag == 0>>
+	<<if $SlaveSummaryFiler == "assignable">>
 		<br>__''
 		[[_childName|Rules Slave Select Workaround][$activeSlave = $cribs[_csi]]]''__
 	<<else>>
@@ -143,7 +143,7 @@
 		[[_childName|Rules Slave Deselect Workaround][$activeSlave = $cribs[_csi]]]''__
 	<</if>>
 <<case "Rules Slave Exclude">>
-	<<if $Flag == 0>>
+	<<if $SlaveSummaryFiler == "assignable">>
 		<br>__''
 		[[_childName|Rules Slave Exclude Workaround][$activeSlave = $cribs[_csi]]]''__
 	<<else>>
@@ -208,7 +208,7 @@ will
 
 <</if>> /* closes _numFacilities */
 
-<<if ((_Pass != 'Main') || (def $Flag) || ($useSlaveSummaryTabs == 0) || ($childAssignmentTab == "all"))>>
+<<if ((_Pass != 'Main') || (def $SlaveSummaryFiler) || ($useSlaveSummaryTabs == 0) || ($childAssignmentTab == "all"))>>
 	<<print '<span id="slave-' + $cribs[_csi].ID + '">&nbsp;</span>'>>
 <</if>>
 <br>
@@ -225,14 +225,14 @@ will
 	<<continue>>
 <<case "New Game Plus">>
 	<br><<if $seeImages != 1 || $seeSummaryImages != 1 || $imageChoice == 1>>&nbsp;&nbsp;&nbsp;&nbsp;<</if>>
-	<<if $Flag === 0>>
+	<<if $SlaveSummaryFiler === "assignable">>
 		<<link "Add to import list" "New Game Plus">>
-			<<set $cribsToImport += 1,$Flag = 1>>
+			<<set $cribsToImport += 1,$SlaveSummaryFiler = "occupying">>
 			<<= assignJob($cribs[_csi], "be imported")>>
 		<</link>>
 	<<else>>
 		<<link "Remove from import list" "New Game Plus">>
-			<<set $cribsToImport -= 1,$Flag = 0>>
+			<<set $cribsToImport -= 1,$SlaveSummaryFiler = "assignable">>
 			<<= removeJob($cribs[_csi], $cribs[_csi].assignment)>>
 		<</link>>
 	<</if>>
diff --git a/src/facilities/nursery/nursery.tw b/src/facilities/nursery/nursery.tw
index b8b2810635dd579145a571ce2cc9c571e0ecac85..715258fee35ae053ec813070f6fe09fd5651e5cb 100644
--- a/src/facilities/nursery/nursery.tw
+++ b/src/facilities/nursery/nursery.tw
@@ -1,6 +1,6 @@
 :: Nursery [nobr]
 
-<<set $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Nursery", $showEncyclopedia = 1, $encyclopedia = "Nursery", $nurserySlaves = $NurseryiIDs.length, $Flag = 0>>
+<<set $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Nursery", $showEncyclopedia = 1, $encyclopedia = "Nursery", $nurserySlaves = $NurseryiIDs.length, $SlaveSummaryFiler = "assignable">>
 <<set $targetAgeNursery = Number($targetAgeNursery) || $minimumSlaveAge>>
 <<set $targetAgeNursery = Math.clamp($targetAgeNursery, $minimumSlaveAge, 42)>>
 
@@ -118,7 +118,7 @@ $nurseryNameCaps
 
 <br><br>
 <<if $Matron != 0>>
-	<<set $Flag = 2>>
+	<<set $SlaveSummaryFiler = "leading">>
 	<<include "Slave Summary">>
 <<else>>
 	You do not have a slave serving as a Matron. [[Appoint one|Matron Select]]
@@ -137,7 +137,7 @@ $nurseryNameCaps
 	<div class="content">
 		<<if $nurserySlaves > 0>>
 			<<nurseryAssignmentFilter>>
-			<<set $Flag = 1>>
+			<<set $SlaveSummaryFiler = "occupying">>
 			<<include "Slave Summary">>
 			<<resetAssignmentFilter>>
 		<<else>>
@@ -152,7 +152,7 @@ $nurseryNameCaps
 			''$nurseryNameCaps is full and cannot hold any more slaves''
 		<<elseif ($slaves.length > $nurserySlaves)>>
 			<<resetAssignmentFilter>>
-			<<set $Flag = 0>>
+			<<set $SlaveSummaryFiler = "assignable">>
 			<<include "Slave Summary">>
 		<</if>>
 	</div>
diff --git a/src/facilities/schoolroom/schoolroomFramework.js b/src/facilities/schoolroom/schoolroomFramework.js
index b207a406c61ff4e4c806f5856940b563897409e3..0ec97695b7b4774678bbd4026f428b000ef94bc6 100644
--- a/src/facilities/schoolroom/schoolroomFramework.js
+++ b/src/facilities/schoolroom/schoolroomFramework.js
@@ -11,7 +11,7 @@ App.Data.Facilities.schoolroom = {
 	},
 	defaultJob: "student",
 	manager: {
-		position: "teacher",
+		position: "schoolteacher",
 		assignment: "be the Schoolteacher",
 		careers: ["a child prodigy", "a coach", "a dean", "a historian", "a librarian", "a principal", "a private instructor", "a professor", "a scholar", "a scientist", "a teacher's pet", "a teacher", "a teaching assistant", "an archaeologist", "an astronaut", "an economist"],
 		skill: "teacher",
diff --git a/src/interaction/prostheticConfig.tw b/src/interaction/prostheticConfig.tw
index 4ecb8e9b0e8f6c8aded1d7d8812f4c32cfb8c8d5..4fdee1954eae47ae8574cc2adc8f59ecc629d795 100644
--- a/src/interaction/prostheticConfig.tw
+++ b/src/interaction/prostheticConfig.tw
@@ -272,7 +272,7 @@ Fit prosthetics to $him:
 <<for _p range setup.prostheticIDs>>
 	<<if _p != "erectile">> /* exclude erectile implant */
 	<<if $adjustProsthetics.findIndex(function(p) {return p.id == _p && p.slaveID == $activeSlave.ID}) != -1 || $researchLab.tasks.findIndex(function(p) {return p.type == "craftFit" && p.id == _p && p.slaveID == $activeSlave.ID}) != -1>><br>
-		//<<= capitalizeFirstLetter(addA(setup.prosthetics[_p].name))>> is already being fitted to this $him.//
+		//<<= capitalizeFirstLetter(addA(setup.prosthetics[_p].name))>> is already being fitted to $him.//
 	<<elseif setup.prosthetics[_p].level > $prostheticsUpgrade>><br>
 		//You need better contracts to buy <<= addA(setup.prosthetics[_p].name)>>.//
 	<<elseif $activeSlave.readyProsthetics.findIndex(function(p) {return p.id == _p}) == -1>>
diff --git a/src/js/PenthouseNaming.js b/src/js/PenthouseNaming.js
index 2df44f652f07d3cc675630f57efad64c2aa24eff..6e85f6ab59a4e61cc0f9708a1031132165704503 100644
--- a/src/js/PenthouseNaming.js
+++ b/src/js/PenthouseNaming.js
@@ -1,7 +1,7 @@
 /**
  * @return {string}
  */
-window.MasterSuiteUIName = function () {
+window.MasterSuiteUIName = function() {
 	const V = State.variables;
 	const name = (V.masterSuiteNameCaps === "The Master Suite") ? "Master Suite" : V.masterSuiteNameCaps;
 	return `<<link "${name}""Master Suite">><</link>> `;
@@ -10,7 +10,7 @@ window.MasterSuiteUIName = function () {
 /**
  * @return {string}
  */
-window.HeadGirlSuiteUIName = function () {
+window.HeadGirlSuiteUIName = function() {
 	const V = State.variables;
 	const name = (V.HGSuiteNameCaps === "The Head Girl Suite") ? "Head Girl Suite" : V.HGSuiteNameCaps;
 	return `<<link "${name}""Head Girl Suite">><</link>> `;
@@ -19,7 +19,7 @@ window.HeadGirlSuiteUIName = function () {
 /**
  * @return {string}
  */
-window.ServantQuartersUIName = function () {
+window.ServantQuartersUIName = function() {
 	const V = State.variables;
 	const name = (V.servantsQuartersNameCaps === "The Servants' Quarters") ? "Servants' Quarters" : V.servantsQuartersNameCaps;
 	return `<<link "${name}""Servants' Quarters">><</link>> `;
@@ -37,7 +37,7 @@ window.SpaUIName = function() {
 /**
  * @return {string}
  */
-window.NurseryUIName = function () {
+window.NurseryUIName = function() {
 	const V = State.variables;
 	const name = (V.nurseryNameCaps === "The Nursery") ? "Nursery" : V.nurseryNameCaps;
 	return `<<link "${name}""Nursery">><</link>> `;
@@ -46,7 +46,7 @@ window.NurseryUIName = function () {
 /**
  * @return {string}
  */
-window.ClinicUIName = function () {
+window.ClinicUIName = function() {
 	const V = State.variables;
 	const name = (V.clinicNameCaps === "The Clinic") ? "Clinic" : V.clinicNameCaps;
 	return `<<link "${name}""Clinic">><</link>> `;
@@ -55,7 +55,7 @@ window.ClinicUIName = function () {
 /**
  * @return {string}
  */
-window.SchoolRoomUIName = function () {
+window.SchoolRoomUIName = function() {
 	const V = State.variables;
 	const name = (V.schoolroomNameCaps === "The Schoolroom") ? "Schoolroom" : V.schoolroomNameCaps;
 	return `<<link "${name}""Schoolroom">><</link>> `;
@@ -64,7 +64,7 @@ window.SchoolRoomUIName = function () {
 /**
  * @return {string}
  */
-window.CellblockUIName = function () {
+window.CellblockUIName = function() {
 	const V = State.variables;
 	const name = (V.cellblockNameCaps === "The Cellblock") ? "Cellblock" : V.cellblockNameCaps;
 	return `<<link "${name}""Cellblock">><</link>> `;
@@ -73,7 +73,7 @@ window.CellblockUIName = function () {
 /**
  * @return {string}
  */
-window.IncubatorUIName = function () {
+window.IncubatorUIName = function() {
 	const V = State.variables;
 	const name = (V.incubatorNameCaps === "The Incubator") ? "Incubator" : V.incubatorNameCaps;
 	return `<<link "${name}""Incubator">><</link>> `;
diff --git a/src/js/assayJS.js b/src/js/assayJS.js
index 64e903c05d796f3cdd2f363e25994ced98c4efea..3d5e1305b5349b4ddaba21c8ce3f2a22b071eda9 100644
--- a/src/js/assayJS.js
+++ b/src/js/assayJS.js
@@ -169,12 +169,12 @@ window.newSlave = /** @param {App.Entity.SlaveState} slave */ function newSlave(
 		/* Store non-albino stats in genePool */
 		if (slave.geneticQuirks.albinism === 2) {
 			const albInd = V.genePool.findIndex(function(s) { return s.ID === slave.ID; });
-			V.genePool.genePool[albInd].origSkin = slave.albinismOverride.skin;
-			V.genePool.genePool[albInd].origEye = slave.albinismOverride.eyeColor;
-			V.genePool.genePool[albInd].origHColor = slave.albinismOverride.hColor;
-			V.genePool.genePool[albInd].underArmHColor = slave.albinismOverride.hColor;
-			V.genePool.genePool[albInd].pubicHColor = slave.albinismOverride.hColor;
-			V.genePool.genePool[albInd].eyebrowHColor = slave.albinismOverride.hColor;
+			V.genePool[albInd].origSkin = slave.albinismOverride.skin;
+			V.genePool[albInd].origEye = slave.albinismOverride.eyeColor;
+			V.genePool[albInd].origHColor = slave.albinismOverride.hColor;
+			V.genePool[albInd].underArmHColor = slave.albinismOverride.hColor;
+			V.genePool[albInd].pubicHColor = slave.albinismOverride.hColor;
+			V.genePool[albInd].eyebrowHColor = slave.albinismOverride.hColor;
 			slave.albinismOverride = 0;
 		}
 	} else {
diff --git a/src/js/optionsMacro.js b/src/js/optionsMacro.js
index 25de71e2e3cd7fba75161cf3d1826d9199bb33a0..8f20091d84b6f360183a058ccc1756ad38a5495c 100644
--- a/src/js/optionsMacro.js
+++ b/src/js/optionsMacro.js
@@ -21,7 +21,7 @@ Macro.add('options', {
 	skipArgs : false,
 	tags	 : ['option', 'comment', 'optionlt', 'optionlte', 'optiongt', 'optiongte',
 				'optiondefault', 'optionif'],
-	handler : function () {
+	handler : function() {
 		try {
 			var currentOption = this.payload[0].args[0];
 			var currentOptionIsNumber = typeof currentOption === "number";
@@ -111,9 +111,7 @@ Macro.add('options', {
 					} else {
 						throw new Error("Missing variable to <<options>>");
 					}
-
 				}
-
 			}
 
 			var showSelectedOption = true; //this.payload.length !== 3 || !description;
diff --git a/src/js/pregJS.js b/src/js/pregJS.js
index f9ddf6030ec983b663cea2838f5ae20140bee947..8b4d7eb1d511814346e5309ed7e4d556e5fa9fbf 100644
--- a/src/js/pregJS.js
+++ b/src/js/pregJS.js
@@ -7,12 +7,12 @@ window.getPregBellySize = function(s) {
 	var fetuses = s.pregType;
 	var phi = 1.618;
 
-	if(gestastionWeek <= 32) {
+	if (gestastionWeek <= 32) {
 		targetLen = ((0.00006396 * Math.pow(gestastionWeek, 4)) - (0.005501 * Math.pow(gestastionWeek, 3)) + (0.161 * Math.pow(gestastionWeek, 2)) - (0.76 * gestastionWeek) + 0.208);
-	} else if(gestastionWeek <= 106) {
+	} else if (gestastionWeek <= 106) {
 		targetLen = ((-0.0000004675 * Math.pow(gestastionWeek, 4)) + (0.0001905 * Math.pow(gestastionWeek, 3)) - (0.029 * Math.pow(gestastionWeek, 2)) + (2.132 * gestastionWeek) - 16.575);
 	} else {
-		targetLen = ((-0.00003266 * Math.pow(gestastionWeek,2)) + (0.076 * gestastionWeek) + 43.843);
+		targetLen = ((-0.00003266 * Math.pow(gestastionWeek, 2)) + (0.076 * gestastionWeek) + 43.843);
 	}
 
 	var bellySize = ((4 / 3) * (Math.PI) * (phi / 2) * (Math.pow((targetLen / 2), 3)) * fetuses);
@@ -22,38 +22,38 @@ window.getPregBellySize = function(s) {
 /** @param {App.Entity.SlaveState} slave */
 window.bellyAdjective = function(slave) {
 	slave = slave || State.variables.activeSlave;
-	if(slave.belly >= 1500) {
-		if(slave.belly >= 1000000) {
-			if(slave.preg > slave.pregData.normalBirth/4) {
+	if (slave.belly >= 1500) {
+		if (slave.belly >= 1000000) {
+			if (slave.preg > slave.pregData.normalBirth/4) {
 				return 'unfathomably distended, brimming with life';
 			} else {
 				return 'unfathomable';
 			}
-		} else if(slave.belly >= 750000) {
-			if(slave.preg > slave.pregData.normalBirth/4) {
+		} else if (slave.belly >= 750000) {
+			if (slave.preg > slave.pregData.normalBirth/4) {
 				return 'monolithic bulging';
 			} else {
 				return 'monolithic';
 			}
-		} else if(slave.belly >= 600000) {
-			if(slave.preg > slave.pregData.normalBirth/4) {
+		} else if (slave.belly >= 600000) {
+			if (slave.preg > slave.pregData.normalBirth/4) {
 				return 'titanic bulging';
 			} else {
 				return 'titanic';
 			}
-		} else if(slave.belly >= 450000) {
-			if(slave.preg > slave.pregData.normalBirth/4) {
+		} else if (slave.belly >= 450000) {
+			if (slave.preg > slave.pregData.normalBirth/4) {
 				return 'gigantic bulgy';
 			} else {
 				return 'gigantic';
 			}
-		} else if(slave.belly >= 300000) {
+		} else if (slave.belly >= 300000) {
 			return 'massive';
-		} else if(slave.belly >= 100000) {
+		} else if (slave.belly >= 100000) {
 			return 'giant';
-		} else if(slave.belly >= 15000) {
+		} else if (slave.belly >= 15000) {
 			return 'huge';
-		} else if(slave.belly >= 10000) {
+		} else if (slave.belly >= 10000) {
 			return 'big';
 		} else {
 			return 'swollen';
@@ -81,301 +81,301 @@ window.setPregType = function(actor) {
 
 	*/
 
-	if(actor.broodmother < 1) { // Broodmothers should be not processed here. Necessary now.
-		if(typeof actor.readyOva === "number" && actor.readyOva !== 0) {
+	if (actor.broodmother < 1) { // Broodmothers should be not processed here. Necessary now.
+		if (typeof actor.readyOva === "number" && actor.readyOva !== 0) {
 			ovum = actor.readyOva; //just single override; for delayed impregnation cases
-		} else if(actor.ID === -1) {
-			if(actor.geneticQuirks.fertility === 2 && actor.geneticQuirks.hyperFertility === 2) { // Do not mix with sperm
-				if(actor.fertDrugs === 1) {
+		} else if (actor.ID === -1) {
+			if (actor.geneticQuirks.fertility === 2 && actor.geneticQuirks.hyperFertility === 2) { // Do not mix with sperm
+				if (actor.fertDrugs === 1) {
 					ovum += jsEither([2, 3, 3, 3, 3, 4, 4, 5]);
 				} else {
 					ovum += jsEither([1, 1, 2, 2, 3, 3, 4]);
 				}
-				if(actor.forcedFertDrugs > 0) {
+				if (actor.forcedFertDrugs > 0) {
 					ovum += jsEither([3, 3, 4, 4, 5]);
 				}
-			} else if(actor.geneticQuirks.hyperFertility === 2) { // Predisposed to multiples
-				if(actor.fertDrugs === 1) {
+			} else if (actor.geneticQuirks.hyperFertility === 2) { // Predisposed to multiples
+				if (actor.fertDrugs === 1) {
 					ovum += jsEither([1, 2, 2, 2, 2, 3, 3, 4]);
 				} else {
 					ovum += jsEither([0, 1, 1, 1, 1, 1, 2, 3]);
 				}
-				if(actor.forcedFertDrugs > 0) {
+				if (actor.forcedFertDrugs > 0) {
 					ovum += jsEither([2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4]);
 				}
-			} else if(actor.geneticQuirks.fertility === 2) { // Predisposed to twins
-				if(actor.fertDrugs === 1) {
+			} else if (actor.geneticQuirks.fertility === 2) { // Predisposed to twins
+				if (actor.fertDrugs === 1) {
 					ovum += jsEither([1, 1, 2, 2, 2, 2, 3, 3]);
 				} else {
 					ovum += jsEither([0, 0, 0, 1, 1, 1, 1, 1, 1, 2]);
 				}
-				if(actor.forcedFertDrugs > 0) {
+				if (actor.forcedFertDrugs > 0) {
 					ovum += jsEither([1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4]);
 				}
 			} else {
-				if(actor.fertDrugs === 1) {
+				if (actor.fertDrugs === 1) {
 					ovum += jsEither([0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3]);
 				} else {
 					ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
 				}
-				if(actor.forcedFertDrugs > 0) {
+				if (actor.forcedFertDrugs > 0) {
 					ovum += jsEither([0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 4]);
 				}
 			}
 			ovum = Math.clamp(ovum, 0, 8);
-		} else if(actor.pregType === 0) {
-			if(actor.eggType === "horse" || actor.eggType === "cow") {
-				if(actor.geneticQuirks.fertility === 2 && actor.geneticQuirks.hyperFertility === 2) { // Do not mix with sperm
+		} else if (actor.pregType === 0) {
+			if (actor.eggType === "horse" || actor.eggType === "cow") {
+				if (actor.geneticQuirks.fertility === 2 && actor.geneticQuirks.hyperFertility === 2) { // Do not mix with sperm
 					ovum += jsEither([0, 0, 0, 0, 0, 0, 1]);
 					fertilityStack += .8;
-				} else if(actor.geneticQuirks.hyperFertility === 2) { // Predisposed to multiples
+				} else if (actor.geneticQuirks.hyperFertility === 2) { // Predisposed to multiples
 					fertilityStack += .4;
-				} else if(actor.geneticQuirks.fertility === 2) { // Predisposed to twins
+				} else if (actor.geneticQuirks.fertility === 2) { // Predisposed to twins
 					fertilityStack += .2;
 				}
-				if(actor.ovaImplant === "fertility") {
+				if (actor.ovaImplant === "fertility") {
 					fertilityStack += .3;
 				}
-				if(actor.hormones === 2) {
+				if (actor.hormones === 2) {
 					fertilityStack += .2;
 				}
-				if(actor.hormoneBalance >= 200) {
+				if (actor.hormoneBalance >= 200) {
 					fertilityStack += .3;
 				}
-				if(actor.diet === "fertility") {
+				if (actor.diet === "fertility") {
 					fertilityStack += .3;
 				}
-				if(State.variables.masterSuitePregnancyFertilitySupplements === 1 && ((actor.assignment === "serve in the master suite" || actor.assignment === "be your Concubine"))) {
+				if (State.variables.masterSuitePregnancyFertilitySupplements === 1 && ((actor.assignment === "serve in the master suite" || actor.assignment === "be your Concubine"))) {
 					fertilityStack += .5;
 				}
-				if(State.variables.reproductionFormula === 1 && (State.variables.week-actor.weekAcquired > 0)) {
+				if (State.variables.reproductionFormula === 1 && (State.variables.week-actor.weekAcquired > 0)) {
 					fertilityStack += .2;
 				}
-				if(actor.drugs === "super fertility drugs") {
+				if (actor.drugs === "super fertility drugs") {
 					fertilityStack += 1.6;
-				} else if(actor.drugs === "fertility drugs") {
+				} else if (actor.drugs === "fertility drugs") {
 					fertilityStack += .6;
 				}
 				fertilityStack = Math.floor(fertilityStack);
-				if(State.variables.seeHyperPreg === 1) {
-					if(actor.drugs === "super fertility drugs") {
+				if (State.variables.seeHyperPreg === 1) {
+					if (actor.drugs === "super fertility drugs") {
 						ovum += jsRandom(0, fertilityStack*2);
 					} else {
 						ovum += jsRandom(0, fertilityStack);
 					}
-					if(actor.ovaImplant === "sympathy") {
+					if (actor.ovaImplant === "sympathy") {
 						ovum *= 2;
 					}
 				} else {
 					ovum += jsRandom(0, fertilityStack);
-					if(actor.ovaImplant === "sympathy") {
+					if (actor.ovaImplant === "sympathy") {
 						ovum *= 2;
-						if(ovum > 4) {
+						if (ovum > 4) {
 							ovum = 4;
 						}
-					} else if(ovum > 3) {
+					} else if (ovum > 3) {
 						ovum = 3;
 					}
 				}
-			} else if(actor.eggType === "dog") {
-				if(actor.geneticQuirks.fertility === 2 && actor.geneticQuirks.hyperFertility === 2) { // Do not mix with sperm
+			} else if (actor.eggType === "dog") {
+				if (actor.geneticQuirks.fertility === 2 && actor.geneticQuirks.hyperFertility === 2) { // Do not mix with sperm
 					ovum += jsEither([1, 2, 2, 3]);
 					fertilityStack++;
 					fertilityStack++;
 					fertilityStack++;
-				} else if(actor.geneticQuirks.hyperFertility === 2) { // Predisposed to multiples
+				} else if (actor.geneticQuirks.hyperFertility === 2) { // Predisposed to multiples
 					ovum += jsEither([0, 1, 1, 2]);
 					fertilityStack++;
 					fertilityStack++;
-				} else if(actor.geneticQuirks.fertility === 2) { // Predisposed to twins
+				} else if (actor.geneticQuirks.fertility === 2) { // Predisposed to twins
 					ovum += jsEither([0, 0, 0, 0, 1]);
 					fertilityStack++;
 				}
-				if(actor.ovaImplant === "fertility") {
+				if (actor.ovaImplant === "fertility") {
 					ovum += jsEither([0, 0, 0, 0, 1]);
 					fertilityStack++;
 				}
-				if(actor.hormones === 2) {
+				if (actor.hormones === 2) {
 					ovum += jsEither([0, 0, 0, 1, 1, 1, 1, 2]);
 					fertilityStack++;
 				}
-				if(actor.hormoneBalance >= 200) {
+				if (actor.hormoneBalance >= 200) {
 					ovum += jsEither([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2]);
 					fertilityStack++;
 				}
-				if(actor.diet === "fertility") {
+				if (actor.diet === "fertility") {
 					ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 1]);
 					fertilityStack++;
 				}
-				if(State.variables.masterSuitePregnancyFertilitySupplements === 1 && ((actor.assignment === "serve in the master suite" || actor.assignment === "be your Concubine"))) {
+				if (State.variables.masterSuitePregnancyFertilitySupplements === 1 && ((actor.assignment === "serve in the master suite" || actor.assignment === "be your Concubine"))) {
 					ovum += jsEither([0, 0, 0, 1, 1, 2, 2, 2, 3, 3]);
 					fertilityStack++;
 					fertilityStack++;
 				}
-				if(State.variables.reproductionFormula === 1 && (State.variables.week-actor.weekAcquired > 0)) {
+				if (State.variables.reproductionFormula === 1 && (State.variables.week-actor.weekAcquired > 0)) {
 					fertilityStack++;
 				}
-				if(actor.drugs === "super fertility drugs") {
+				if (actor.drugs === "super fertility drugs") {
 					ovum += jsEither([1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5]);
 					fertilityStack++;
 					fertilityStack++;
 					fertilityStack++;
 					fertilityStack++;
 					fertilityStack++;
-				} else if(actor.drugs === "fertility drugs") {
+				} else if (actor.drugs === "fertility drugs") {
 					ovum += jsEither([0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3]);
 					fertilityStack++;
 				}
-				if(State.variables.seeHyperPreg === 1) {
-					if(actor.drugs === "super fertility drugs") {
+				if (State.variables.seeHyperPreg === 1) {
+					if (actor.drugs === "super fertility drugs") {
 						ovum += jsRandom(0, fertilityStack*2);
 					} else {
 						ovum += jsRandom(0, fertilityStack);
 					}
-					if(actor.ovaImplant === "sympathy") {
+					if (actor.ovaImplant === "sympathy") {
 						ovum *= 2;
 					}
 				} else {
 					ovum += jsRandom(0, fertilityStack);
-					if(actor.ovaImplant === "sympathy") {
+					if (actor.ovaImplant === "sympathy") {
 						ovum *= 2;
-						if(ovum > 8) {
+						if (ovum > 8) {
 							ovum = jsEither([6, 8]);
 						}
-					} else if(ovum > 8) {
+					} else if (ovum > 8) {
 						ovum = jsRandom(6, 8);
 					}
 				}
-			} else if(actor.eggType === "pig") {
-				if(actor.geneticQuirks.fertility === 2 && actor.geneticQuirks.hyperFertility === 2) { // Do not mix with sperm
+			} else if (actor.eggType === "pig") {
+				if (actor.geneticQuirks.fertility === 2 && actor.geneticQuirks.hyperFertility === 2) { // Do not mix with sperm
 					ovum += jsRandom(4, 8);
 					fertilityStack += 16;
-				} else if(actor.geneticQuirks.hyperFertility === 2) { // Predisposed to multiples
+				} else if (actor.geneticQuirks.hyperFertility === 2) { // Predisposed to multiples
 					ovum += jsRandom(2, 6);
 					fertilityStack += 10;
-				} else if(actor.geneticQuirks.fertility === 2) { // Predisposed to twins
+				} else if (actor.geneticQuirks.fertility === 2) { // Predisposed to twins
 					ovum += jsRandom(2, 4);
 					fertilityStack += 6;
 				}
-				if(actor.ovaImplant === "fertility") {
+				if (actor.ovaImplant === "fertility") {
 					ovum += jsRandom(4, 12);
 					fertilityStack += 6;
 				}
-				if(actor.hormones === 2) {
+				if (actor.hormones === 2) {
 					ovum += jsRandom(0, 4);
 					fertilityStack += 3;
 				}
-				if(actor.hormoneBalance >= 200) {
+				if (actor.hormoneBalance >= 200) {
 					ovum += jsRandom(0, 4);
 					fertilityStack += 3;
 				}
-				if(actor.diet === "fertility") {
+				if (actor.diet === "fertility") {
 					ovum += jsRandom(4, 10);
 					fertilityStack += 6;
 				}
-				if(State.variables.masterSuitePregnancyFertilitySupplements === 1 && ((actor.assignment === "serve in the master suite" || actor.assignment === "be your Concubine"))) {
+				if (State.variables.masterSuitePregnancyFertilitySupplements === 1 && ((actor.assignment === "serve in the master suite" || actor.assignment === "be your Concubine"))) {
 					ovum += jsRandom(8, 16);
 					fertilityStack += 10;
 				}
-				if(State.variables.reproductionFormula === 1 && (State.variables.week-actor.weekAcquired > 0)) {
+				if (State.variables.reproductionFormula === 1 && (State.variables.week-actor.weekAcquired > 0)) {
 					fertilityStack += 2;
 				}
-				if(actor.drugs === "super fertility drugs") {
+				if (actor.drugs === "super fertility drugs") {
 					ovum += jsRandom(10, 40);
 					fertilityStack += 32;
-				} else if(actor.drugs === "fertility drugs") {
+				} else if (actor.drugs === "fertility drugs") {
 					ovum += jsRandom(10, 20);
 					fertilityStack += 16;
 				}
-				if(State.variables.seeHyperPreg === 1) {
-					if(actor.drugs === "super fertility drugs") {
+				if (State.variables.seeHyperPreg === 1) {
+					if (actor.drugs === "super fertility drugs") {
 						ovum += jsRandom(fertilityStack/2, fertilityStack*2);
 					} else {
 						ovum += jsRandom(fertilityStack/4, fertilityStack);
 					}
-					if(actor.ovaImplant === "sympathy") {
+					if (actor.ovaImplant === "sympathy") {
 						ovum *= 2;
 					}
 				} else {
 					ovum += jsRandom(0, fertilityStack);
-					if(actor.ovaImplant === "sympathy") {
+					if (actor.ovaImplant === "sympathy") {
 						ovum *= 2;
-						if(ovum > 76) {
+						if (ovum > 76) {
 							ovum = jsEither([70, 72, 74, 76]);
 						}
-					} else if(ovum > 75) {
+					} else if (ovum > 75) {
 						ovum = jsRandom(60, 75);
 					}
 				}
 			} else {
-				if(actor.geneticQuirks.fertility === 2 && actor.geneticQuirks.hyperFertility === 2) { // Do not mix with sperm
+				if (actor.geneticQuirks.fertility === 2 && actor.geneticQuirks.hyperFertility === 2) { // Do not mix with sperm
 					ovum += jsEither([1, 2, 2, 3]);
 					fertilityStack++;
 					fertilityStack++;
 					fertilityStack++;
 					fertilityStack++;
-				} else if(actor.geneticQuirks.hyperFertility === 2) { // Predisposed to multiples
+				} else if (actor.geneticQuirks.hyperFertility === 2) { // Predisposed to multiples
 					ovum += jsEither([0, 1, 1, 2]);
 					fertilityStack++;
 					fertilityStack++;
-				} else if(actor.geneticQuirks.fertility === 2) { // Predisposed to twins
+				} else if (actor.geneticQuirks.fertility === 2) { // Predisposed to twins
 					ovum += jsEither([0, 0, 0, 0, 1]);
 					fertilityStack++;
 				} else {
 					ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 1]); //base chance for twins
 				}
-				if(actor.ovaImplant === "fertility") {
+				if (actor.ovaImplant === "fertility") {
 					ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
 					fertilityStack++;
 				}
-				if(actor.hormones === 2) {
+				if (actor.hormones === 2) {
 					ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2]);
 					fertilityStack++;
 				}
-				if(actor.hormoneBalance >= 200) {
+				if (actor.hormoneBalance >= 200) {
 					ovum += jsEither([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2]);
 					fertilityStack++;
 				}
-				if(actor.diet === "fertility") {
+				if (actor.diet === "fertility") {
 					ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
 					fertilityStack++;
 				}
-				if(State.variables.masterSuitePregnancyFertilitySupplements === 1 && ((actor.assignment === "serve in the master suite" || actor.assignment === "be your Concubine"))) {
+				if (State.variables.masterSuitePregnancyFertilitySupplements === 1 && ((actor.assignment === "serve in the master suite" || actor.assignment === "be your Concubine"))) {
 					ovum += jsEither([0, 0, 0, 1, 1, 2, 2, 2, 3, 3]);
 					fertilityStack++;
 					fertilityStack++;
 				}
-				if(State.variables.reproductionFormula === 1 && (State.variables.week-actor.weekAcquired > 0)) {
+				if (State.variables.reproductionFormula === 1 && (State.variables.week-actor.weekAcquired > 0)) {
 					fertilityStack++;
 				}
-				if(actor.drugs === "super fertility drugs") {
+				if (actor.drugs === "super fertility drugs") {
 					ovum += jsEither([1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5]);
 					fertilityStack++;
 					fertilityStack++;
 					fertilityStack++;
 					fertilityStack++;
 					fertilityStack++;
-				} else if(actor.drugs === "fertility drugs") {
+				} else if (actor.drugs === "fertility drugs") {
 					ovum += jsEither([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3]);
 					fertilityStack++;
 				}
-				if(State.variables.seeHyperPreg === 1) {
-					if(actor.drugs === "super fertility drugs") {
+				if (State.variables.seeHyperPreg === 1) {
+					if (actor.drugs === "super fertility drugs") {
 						ovum += jsRandom(0, fertilityStack*2);
 					} else {
 						ovum += jsRandom(0, fertilityStack);
 					}
-					if(actor.ovaImplant === "sympathy") {
+					if (actor.ovaImplant === "sympathy") {
 						ovum *= 2;
 					}
 				} else {
 					ovum += jsRandom(0, fertilityStack);
-					if(actor.ovaImplant === "sympathy") {
+					if (actor.ovaImplant === "sympathy") {
 						ovum *= 2;
-						if(ovum > 12) {
+						if (ovum > 12) {
 							ovum = jsEither([10, 12]);
 						}
-					} else if(ovum > 12) {
+					} else if (ovum > 12) {
 						ovum = jsRandom(6, 12);
 					}
 				}
@@ -406,9 +406,8 @@ window.knockMeUp = function(target, chance, hole, fatherID, displayOverride) {
 		He = capFirstChar(pronouns.pronoun);
 	}
 	if (V.seePreg !== 0) {
-		if (jsRandom(0,99) < (chance + (V.reproductionFormula*((target.pregSource <= 0) ? ((target.ID === -1) ? 0 : 10) : 20)))) {
+		if (jsRandom(0, 99) < (chance + (V.reproductionFormula*((target.pregSource <= 0) ? ((target.ID === -1) ? 0 : 10) : 20)))) {
 			if (target.mpreg === hole) {
-
 				if (target.pregWeek <= 0) {
 					target.preg = 1;
 					target.pregSource = (!fatherID ? 0 : fatherID);
@@ -432,9 +431,7 @@ window.knockMeUp = function(target, chance, hole, fatherID, displayOverride) {
 				} else {
 					target.pregKnown = 1;
 				}
-
 			} else if (hole === 2) {
-
 				if (target.pregWeek <= 0) {
 					target.preg = 1;
 					target.pregSource = (!fatherID ? 0 : fatherID);
@@ -479,12 +476,10 @@ window.knockMeUp = function(target, chance, hole, fatherID, displayOverride) {
 };
 
 window.getIncubatorReserved = function(/*slaves*/) {
-
 	return FetusGlobalReserveCount("incubator");
 };
 
-window.getNurseryReserved = function (/*slaves*/) {
-
+window.getNurseryReserved = function(/*slaves*/) {
 	return FetusGlobalReserveCount("nursery");
 };
 
diff --git a/src/js/quickListJS.js b/src/js/quickListJS.js
index 66f91135143c858f09bd7aef04c43d3156ba3168..60ad59a54442e5d5155b8b0f844f6c24a97dee38 100644
--- a/src/js/quickListJS.js
+++ b/src/js/quickListJS.js
@@ -1,7 +1,7 @@
 /* eslint-disable no-undef */
-window.sortDomObjects = function (objects, attrName, reverse = 0) {
+window.sortDomObjects = function(objects, attrName, reverse = 0) {
 	reverse = (reverse) ? -1 : 1;
-	function sortingByAttr (a, b) {
+	function sortingByAttr(a, b) {
 		var aVal = a.getAttribute(attrName);
 		var bVal = b.getAttribute(attrName);
 		var aInt = parseInt(aVal);
@@ -14,21 +14,21 @@ window.sortDomObjects = function (objects, attrName, reverse = 0) {
 	return objects.toArray().sort(sortingByAttr);
 };
 
-window.sortButtonsByDevotion = function () {
+window.sortButtonsByDevotion = function() {
 	var $sortedButtons = $('#qlWrapper button').remove();
 	$sortedButtons = sortDomObjects($sortedButtons, 'data-devotion');
 	$($sortedButtons).appendTo($('#qlWrapper'));
 	quickListBuildLinks();
 };
 
-window.sortButtonsByTrust = function () {
+window.sortButtonsByTrust = function() {
 	var $sortedButtons = $('#qlWrapper button').remove();
 	$sortedButtons = sortDomObjects($sortedButtons, 'data-trust');
 	$($sortedButtons).appendTo($('#qlWrapper'));
 	quickListBuildLinks();
 };
 
-window.quickListBuildLinks = function () {
+window.quickListBuildLinks = function() {
 	$("[data-scroll-to]").click(function() {
 		var $this = $(this), $toElement = $this.attr('data-scroll-to');
 		// note the * 1 enforces $offset to be an integer, without
@@ -42,31 +42,31 @@ window.quickListBuildLinks = function () {
 	});
 };
 
-window.sortIncubatorPossiblesByName = function () {
+window.sortIncubatorPossiblesByName = function() {
 	var $sortedIncubatorPossibles = $('#qlIncubator div.possible').detach();
 	$sortedIncubatorPossibles = sortDomObjects($sortedIncubatorPossibles, 'data-name');
 	$($sortedIncubatorPossibles).appendTo($('#qlIncubator'));
 };
 
-window.sortIncubatorPossiblesByPregnancyWeek = function () {
+window.sortIncubatorPossiblesByPregnancyWeek = function() {
 	var $sortedIncubatorPossibles = $('#qlIncubator div.possible').detach();
 	$sortedIncubatorPossibles = sortDomObjects($sortedIncubatorPossibles, 'data-preg-week');
 	$($sortedIncubatorPossibles).appendTo($('#qlIncubator'));
 };
 
-window.sortIncubatorPossiblesByPregnancyCount = function () {
+window.sortIncubatorPossiblesByPregnancyCount = function() {
 	var $sortedIncubatorPossibles = $('#qlIncubator div.possible').detach();
 	$sortedIncubatorPossibles = sortDomObjects($sortedIncubatorPossibles, 'data-preg-count');
 	$($sortedIncubatorPossibles).appendTo($('#qlIncubator'));
 };
 
-window.sortIncubatorPossiblesByReservedSpots = function () {
+window.sortIncubatorPossiblesByReservedSpots = function() {
 	var $sortedIncubatorPossibles = $('#qlIncubator div.possible').detach();
 	$sortedIncubatorPossibles = sortDomObjects($sortedIncubatorPossibles, 'data-reserved-spots');
 	$($sortedIncubatorPossibles).appendTo($('#qlIncubator'));
 };
 
-window.sortIncubatorPossiblesByPreviousSort = function () {
+window.sortIncubatorPossiblesByPreviousSort = function() {
 	var sort = State.variables.sortIncubatorList;
 	if ('unsorted' !== sort) {
 		if ('Name' === sort) {
@@ -81,31 +81,31 @@ window.sortIncubatorPossiblesByPreviousSort = function () {
 	}
 };
 
-window.sortNurseryPossiblesByName = function () {
+window.sortNurseryPossiblesByName = function() {
 	var $sortedNurseryPossibles = $('#qlNursery div.possible').detach();
 	$sortedNurseryPossibles = sortDomObjects($sortedNurseryPossibles, 'data-name');
 	$($sortedNurseryPossibles).appendTo($('#qlNursery'));
 };
 
-window.sortNurseryPossiblesByPregnancyWeek = function () {
+window.sortNurseryPossiblesByPregnancyWeek = function() {
 	var $sortedNurseryPossibles = $('#qlNursery div.possible').detach();
 	$sortedNurseryPossibles = sortDomObjects($sortedNurseryPossibles, 'data-preg-week');
 	$($sortedNurseryPossibles).appendTo($('#qlNursery'));
 };
 
-window.sortNurseryPossiblesByPregnancyCount = function () {
+window.sortNurseryPossiblesByPregnancyCount = function() {
 	var $sortedNurseryPossibles = $('#qlNursery div.possible').detach();
 	$sortedNurseryPossibles = sortDomObjects($sortedNurseryPossibles, 'data-preg-count');
 	$($sortedNurseryPossibles).appendTo($('#qlNursery'));
 };
 
-window.sortNurseryPossiblesByReservedSpots = function () {
+window.sortNurseryPossiblesByReservedSpots = function() {
 	var $sortedNurseryPossibles = $('#qlNursery div.possible').detach();
 	$sortedNurseryPossibles = sortDomObjects($sortedNurseryPossibles, 'data-reserved-spots');
 	$($sortedNurseryPossibles).appendTo($('#qlNursery'));
 };
 
-window.sortNurseryPossiblesByPreviousSort = function () {
+window.sortNurseryPossiblesByPreviousSort = function() {
 	var sort = State.variables.sortNurseryList;
 	if ('unsorted' !== sort) {
 		if ('Name' === sort) {
diff --git a/src/js/rbuttonJS.js b/src/js/rbuttonJS.js
index 8c37e7336e3da3cdf4b56975ae41eb9b304c04ba..dfc4bbf63676b7ee9d8e3677e6402756f641c9b5 100644
--- a/src/js/rbuttonJS.js
+++ b/src/js/rbuttonJS.js
@@ -60,37 +60,33 @@ Macro.add('rbutton', {
 		*/
 		jQuery(el)
 			.attr({
-				id : `${this.name}-${varId}-${TempState[this.name][varId]++}`,
-				name : `${this.name}-${varId}`,
-				type : 'radio',
-				tabindex : 0 // for accessibility
+				id: `${this.name}-${varId}-${TempState[this.name][varId]++}`,
+				name: `${this.name}-${varId}`,
+				type: 'radio',
+				tabindex: 0 // for accessibility
 			})
 			.addClass(`macro-${this.name}`)
-			.on('change', function () {
+			.on('change', function() {
 				if (this.checked) {
 					Wikifier.setValue(varName, checkValue);
 
-					if (replaceID.length > 0 && replaceText.length > 0){
-
+					if (replaceID.length > 0 && replaceText.length > 0) {
 						var replaceEl = document.getElementById(replaceID);
 						//alert (replaceEl);
 						if (replaceEl !== null) {
 							replaceEl.innerHTML = replaceText;
 						}
-
 					}
 				}
 			})
-			.ready (function () {
+			.ready(function() {
 			//alert ("DOM finished");
-				if (el.checked && replaceID.length > 0 && replaceText.length > 0){
-
+				if (el.checked && replaceID.length > 0 && replaceText.length > 0) {
 					var replaceEl = document.getElementById(replaceID);
 					//alert (replaceEl);
 					if (replaceEl !== null) {
 						replaceEl.innerHTML = replaceText;
 					}
-
 				}
 			})
 			.appendTo(this.output);
diff --git a/src/js/relationshipChecks.js b/src/js/relationshipChecks.js
index 4c8cd40cee79a6aa58570f1ba6d1a5338d4ab625..6507db75550936deff4929d2eed5760f90ca1a3b 100644
--- a/src/js/relationshipChecks.js
+++ b/src/js/relationshipChecks.js
@@ -1,4 +1,4 @@
-window.rivalryTerm = function (id) {
+window.rivalryTerm = function(id) {
 	if (id.rivalry === 1) {
 		return `growing rival`;
 	} else if (id.rivalry === 2) {
@@ -7,7 +7,7 @@ window.rivalryTerm = function (id) {
 		return `bitter rival`;
 	}
 };
-window.relationshipTerm = function (id) {
+window.relationshipTerm = function(id) {
 	if (id.relationship === 1) {
 		return `friend`;
 	} else if (id.relationship === 2) {
@@ -20,7 +20,7 @@ window.relationshipTerm = function (id) {
 		return `slave wife`;
 	}
 };
-window.relationshipTermShort = function (id) {
+window.relationshipTermShort = function(id) {
 	if (id.relationship === 1) {
 		return `friend`;
 	} else if (id.relationship === 2) {
diff --git a/src/js/rulesAssistant.js b/src/js/rulesAssistant.js
index 591f4222a886d9379b0f80685a99fbb14ddcc33b..3e5f00e1fed25307841e426c16248445b6e40221 100644
--- a/src/js/rulesAssistant.js
+++ b/src/js/rulesAssistant.js
@@ -3,7 +3,7 @@
  * @param {Object[]} rules
  * @returns {boolean}
 */
-window.hasSurgeryRule = function (slave, rules) {
+window.hasSurgeryRule = function(slave, rules) {
 	return rules.some(
 		rule => ruleApplied(slave, rule) && rule.set.autoSurgery > 0);
 };
@@ -364,6 +364,7 @@ window.emptyDefaultRule = function emptyDefaultRule() {
 			surgery_faceShape: "no default setting",
 			surgery_lips: "no default setting",
 			surgery_holes: "no default setting",
+			surgery_tummy: "no default setting",
 			surgery_hair: "no default setting",
 			surgery_bodyhair: "no default setting",
 			surgery_vasectomy: "no default setting",
diff --git a/src/js/rulesAssistantOptions.js b/src/js/rulesAssistantOptions.js
index 7bd075e22fea34b3e754d64794b98f7b05f4c46f..cb0de4b17f8beb346b64a8d675bfa588615c779b 100644
--- a/src/js/rulesAssistantOptions.js
+++ b/src/js/rulesAssistantOptions.js
@@ -479,7 +479,7 @@ window.rulesAssistantOptions = (function() {
 		constructor(root) {
 			super("Current rule", V.defaultRules.map(i => [i.name, i]));
 			this.setValue(current_rule.name);
-			this.onchange = function (rule) {
+			this.onchange = function(rule) {
 				V.currentRule = rule.ID;
 				reload(root);
 			};
@@ -1111,6 +1111,7 @@ window.rulesAssistantOptions = (function() {
 			this.appendChild(new ButtSurgeryList());
 			this.appendChild(new BreastSurgeryList());
 			this.appendChild(new TighteningSurgeryList());
+			this.appendChild(new TummyTuckSurgeryList());
 			this.appendChild(new BodyHairSurgeryList());
 			this.appendChild(new HairSurgeryList());
 			if (V.bellyImplants > 0)
@@ -2270,7 +2271,7 @@ window.rulesAssistantOptions = (function() {
 
 		setValue(val) {
 			if (val === undefined) val = this.combine();
-			this.label.innerText = val + " ";
+			this.label.innerText = `${val} `;
 			current_rule.set.eyeColor = val;
 		}
 	}
@@ -3541,6 +3542,19 @@ window.rulesAssistantOptions = (function() {
 		}
 	}
 
+	class TummyTuckSurgeryList extends List {
+		constructor() {
+			const items = [
+				["no default setting"],
+				["tuck", 1],
+			];
+			super("Tummy Tuck", items);
+			this.setValue(current_rule.set.surgery_tummy);
+			this.onchange = (value) => current_rule.set.surgery_tummy = value;
+		}
+	}
+
+
 	class BodyHairSurgeryList extends List {
 		constructor() {
 			const items = [
diff --git a/src/js/rulesAutosurgery.js b/src/js/rulesAutosurgery.js
index 7d8181cf8da63b1384b33f7c4804e9ee517cf04e..5a670f0b3218267af6ae077fe4edabdac61758e6 100644
--- a/src/js/rulesAutosurgery.js
+++ b/src/js/rulesAutosurgery.js
@@ -428,7 +428,7 @@ window.rulesAutosurgery = (function() {
 				cashX(forceNeg(V.surgeryCost), "slaveSurgery", slave);
 				if (V.PC.medicine >= 100) slave.health -= 5;
 				else slave.health -= 10;
-			} else if ((slave.bellySagPreg > 0 || slave.bellySag > 0) && thisSurgery.surgery_cosmetic > 0) {
+			} else if ((slave.bellySagPreg > 0 || slave.bellySag > 0) && (thisSurgery.surgery_cosmetic > 0 || thisSurgery.surgery_tummy > 0 )) {
 				surgeries.push("a tummy tuck");
 				slave.bellySag = 0;
 				slave.bellySagPreg = 0;
diff --git a/src/js/slaveStatsChecker.js b/src/js/slaveStatsChecker.js
index 2ecea065d7933c6a59f0dfd1d121cc4280ace806..6381032237a4fbe06a9d0374a27e8fb43b545629 100644
--- a/src/js/slaveStatsChecker.js
+++ b/src/js/slaveStatsChecker.js
@@ -156,7 +156,7 @@ window.SlaveStatsChecker = (function() {
 	}
 }());
 
-window.isSlim = /** @param {App.Entity.SlaveState} slave */ function (slave) {
+window.isSlim = /** @param {App.Entity.SlaveState} slave */ function(slave) {
 	let slim = false;
 	const ArcologyZero = State.variables.arcologies[0];
 
@@ -184,7 +184,7 @@ window.isSlim = /** @param {App.Entity.SlaveState} slave */ function (slave) {
 	return slim;
 };
 
-window.slimPass = /** @param {App.Entity.SlaveState} slave */ function (slave) {
+window.slimPass = /** @param {App.Entity.SlaveState} slave */ function(slave) {
 	let slimPass = 0;
 	const ArcologyZero = State.variables.arcologies[0];
 
diff --git a/src/js/slaveSummaryWidgets.js b/src/js/slaveSummaryWidgets.js
index b7b14df26beee0491ee5bbee6dc61573bec1df6f..074ae80a31132dd6defb7362c93d7de9802348d8 100644
--- a/src/js/slaveSummaryWidgets.js
+++ b/src/js/slaveSummaryWidgets.js
@@ -18,10 +18,11 @@ window.SlaveSummary = /** @param {App.Entity.SlaveState} slave */ function Slave
 		}
 		//this.output.appendChild(setup.summaryCache[State.temporary.Slave.ID].cloneNode(true))
 		return setup.summaryCache[slave.ID];
-	} else return SlaveSummaryUncached(slave);
+	}
+	return SlaveSummaryUncached(slave);
 };
 
-window.SlaveSummaryUncached = (function () {
+window.SlaveSummaryUncached = (function() {
 	"use strict";
 	let V;
 	let r;
@@ -3850,7 +3851,7 @@ window.SlaveSummaryUncached = (function () {
 	function short_extended_family(slave) {
 		let handled = 0;
 		if (slave.mother > 0) {
-			const _ssj = V.slaves.findIndex(function (s) {
+			const _ssj = V.slaves.findIndex(function(s) {
 				return s.ID === slave.mother;
 			});
 			if (_ssj !== -1) {
@@ -3876,7 +3877,7 @@ window.SlaveSummaryUncached = (function () {
 			r += `${V.missingTable[slave.mother].fullName}'s daughter `;
 		}
 		if (slave.father > 0 && slave.father !== slave.mother) {
-			const _ssj = V.slaves.findIndex(function (s) {
+			const _ssj = V.slaves.findIndex(function(s) {
 				return s.ID === slave.father;
 			});
 			if (_ssj !== -1) {
@@ -3902,7 +3903,7 @@ window.SlaveSummaryUncached = (function () {
 			r += `${V.missingTable[slave.father].fullName}'s daughter`;
 		}
 		if (slave.daughters === 1) {
-			let _ssj = V.slaves.findIndex(function (s) {
+			let _ssj = V.slaves.findIndex(function(s) {
 				return s.mother === slave.ID;
 			});
 			if (_ssj !== -1) {
@@ -3914,7 +3915,7 @@ window.SlaveSummaryUncached = (function () {
 				}
 			}
 			r += " ";
-			_ssj = V.slaves.findIndex(function (s) {
+			_ssj = V.slaves.findIndex(function(s) {
 				return s.father === slave.ID;
 			});
 			if (_ssj !== -1) {
@@ -3930,7 +3931,7 @@ window.SlaveSummaryUncached = (function () {
 			r += `multiple daughters `;
 		}
 		if (slave.sisters === 1) {
-			const _ssj = V.slaves.findIndex(function (s) {
+			const _ssj = V.slaves.findIndex(function(s) {
 				return areSisters(s, slave) > 0;
 			});
 			if (_ssj !== -1) {
@@ -3946,7 +3947,7 @@ window.SlaveSummaryUncached = (function () {
 			r += `multiple sisters `;
 		}
 		if (slave.relationship > 0 && handled !== 1) {
-			const _ssj = V.slaves.findIndex(function (s) {
+			const _ssj = V.slaves.findIndex(function(s) {
 				return s.ID === slave.relationshipTarget;
 			});
 			if (_ssj !== -1) {
@@ -3967,7 +3968,7 @@ window.SlaveSummaryUncached = (function () {
 	/** @param {App.Entity.SlaveState} slave */
 	function short_legacy_family(slave) {
 		if (slave.relation !== 0) {
-			const _ssj = V.slaves.findIndex(function (s) {
+			const _ssj = V.slaves.findIndex(function(s) {
 				return s.ID === slave.relationTarget;
 			});
 			if (_ssj !== -1) {
@@ -3975,7 +3976,7 @@ window.SlaveSummaryUncached = (function () {
 			}
 		}
 		if (slave.relationship > 0) {
-			const _ssj = V.slaves.findIndex(function (s) {
+			const _ssj = V.slaves.findIndex(function(s) {
 				return s.ID === slave.relationshipTarget;
 			});
 			if (_ssj !== -1) {
@@ -4007,7 +4008,7 @@ window.SlaveSummaryUncached = (function () {
 	function short_rival(slave) {
 		if (slave.rivalry !== 0) {
 			r += `&nbsp;&nbsp;&nbsp;&nbsp;`;
-			const _ssj = V.slaves.findIndex(function (s) {
+			const _ssj = V.slaves.findIndex(function(s) {
 				return s.ID === slave.rivalryTarget;
 			});
 			if (_ssj !== -1) {
@@ -4028,7 +4029,7 @@ window.SlaveSummaryUncached = (function () {
 	function long_extended_family(slave) {
 		let handled = 0;
 		if (slave.mother > 0) {
-			const _ssj = V.slaves.findIndex(function (s) {
+			const _ssj = V.slaves.findIndex(function(s) {
 				return s.ID === slave.mother;
 			});
 			if (_ssj !== -1) {
@@ -4055,7 +4056,7 @@ window.SlaveSummaryUncached = (function () {
 			r += `${V.missingTable[slave.mother].fullName}'s <span class="lightgreen">daughter.</span> `;
 		}
 		if (slave.father > 0 && slave.father !== slave.mother) {
-			const _ssj = V.slaves.findIndex(function (s) {
+			const _ssj = V.slaves.findIndex(function(s) {
 				return s.ID === slave.father;
 			});
 			if (_ssj !== -1) {
@@ -4082,7 +4083,7 @@ window.SlaveSummaryUncached = (function () {
 			r += `${V.missingTable[slave.father].fullName}'s <span class="lightgreen">daughter.</span> `;
 		}
 		if (slave.daughters === 1) {
-			let _ssj = V.slaves.findIndex(function (s) {
+			let _ssj = V.slaves.findIndex(function(s) {
 				return s.mother === slave.ID;
 			});
 			if (_ssj !== -1) {
@@ -4094,7 +4095,7 @@ window.SlaveSummaryUncached = (function () {
 				}
 				r += `.</span> `;
 			}
-			_ssj = V.slaves.findIndex(function (s) {
+			_ssj = V.slaves.findIndex(function(s) {
 				return s.father === slave.ID;
 			});
 			if (_ssj !== -1) {
@@ -4116,7 +4117,7 @@ window.SlaveSummaryUncached = (function () {
 			}
 		}
 		if (slave.sisters === 1) {
-			const _ssj = V.slaves.findIndex(function (s) {
+			const _ssj = V.slaves.findIndex(function(s) {
 				return areSisters(s, slave) > 0;
 			});
 			if (_ssj !== -1) {
@@ -4138,7 +4139,7 @@ window.SlaveSummaryUncached = (function () {
 			}
 		}
 		if (slave.relationship > 0 && handled !== 1) {
-			const _ssj = V.slaves.findIndex(function (s) {
+			const _ssj = V.slaves.findIndex(function(s) {
 				return s.ID === slave.relationshipTarget;
 			});
 			if (_ssj !== -1) {
@@ -4158,7 +4159,7 @@ window.SlaveSummaryUncached = (function () {
 	/** @param {App.Entity.SlaveState} slave */
 	function long_legacy_family(slave) {
 		if (slave.relation !== 0) {
-			const _ssj = V.slaves.findIndex(function (s) {
+			const _ssj = V.slaves.findIndex(function(s) {
 				return s.ID === slave.relationTarget;
 			});
 			if (_ssj !== -1) {
@@ -4174,7 +4175,7 @@ window.SlaveSummaryUncached = (function () {
 			}
 		}
 		if (slave.relationship > 0) {
-			const _ssj = V.slaves.findIndex(function (s) {
+			const _ssj = V.slaves.findIndex(function(s) {
 				return s.ID === slave.relationshipTarget;
 			});
 			if (_ssj !== -1) {
@@ -4206,7 +4207,7 @@ window.SlaveSummaryUncached = (function () {
 	function long_rival(slave) {
 		if (slave.rivalry !== 0) {
 			r += `&nbsp;&nbsp;&nbsp;&nbsp;`;
-			const _ssj = V.slaves.findIndex(function (s) {
+			const _ssj = V.slaves.findIndex(function(s) {
 				return s.ID === slave.rivalryTarget;
 			});
 			if (_ssj !== -1) {
@@ -4615,7 +4616,7 @@ window.SlaveSummaryUncached = (function () {
 				break;
 			case "porcelain mask":
 				r += `Porcelain mask.`;
-				break
+				break;
 			default:
 				break;
 		}
@@ -4824,81 +4825,117 @@ window.SlaveSummaryUncached = (function () {
 App.UI.PassageSlaveFilers = {
 	"Main": s => (s.assignmentVisible === 1),
 	"Personal Attention Select": s => (s.assignmentVisible === 1 && s.fuckdoll <= 0),
-	"Agent Select": s => (s.fuckdoll === 0 && s.devotion > 20 && s.intelligence + s.intelligenceImplant > 15 && s.intelligenceImplant >= 15 && canWalk(s) && canSee(s) && canHear(s) && canTalk(s) && s.broodmother < 2 && (s.breedingMark !== 1 || State.variables.propOutcome === 0)),
-	"BG Select": s => (s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && s.assignment !== "guard you" && canWalk(s) && canSee(s) && canHear(s) && (s.breedingMark !== 1 || State.variables.propOutcome === 0)),
-	"Recruiter Select": s => (s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && s.assignment !== "recruit girls" && canWalk(s) && canSee(s) && canTalk(s)),
-	"HG Select": s => (s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && s.assignment !== "be your Head Girl" && canWalk(s) && canHear(s) && canSee(s) && canTalk(s)),
+	"Agent Select": s => ((s.fuckdoll === 0 && s.devotion > 20 && s.intelligence + s.intelligenceImplant > 15 && s.intelligenceImplant >= 15 && canWalk(s) && canSee(s) && canHear(s) && canTalk(s) && s.broodmother < 2 && (s.breedingMark !== 1 || State.variables.propOutcome === 0)) &&
+		((State.variables.SlaveSummaryFiler !== "experienced") ||
+		(State.variables.SlaveSummaryFiler === "experienced" && App.Entity.facilities.arcologyAgent.manager.slaveHasExperience(s)))),
+	"BG Select": s => ((s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && s.assignment !== "guard you" && canWalk(s) && canSee(s) && canHear(s) && (s.breedingMark !== 1 || State.variables.propOutcome === 0)) &&
+		((State.variables.SlaveSummaryFiler !== "experienced") ||
+		(State.variables.SlaveSummaryFiler === "experienced" && App.Entity.facilities.armory.manager.slaveHasExperience(s)))),
+	"Recruiter Select": s => ((s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && s.assignment !== "recruit girls" && canWalk(s) && canSee(s) && canTalk(s)) &&
+		((State.variables.SlaveSummaryFiler !== "experienced") ||
+		(State.variables.SlaveSummaryFiler === "experienced" && App.Entity.facilities.penthouse.manager.slaveHasExperience(s)))),
+	"HG Select": s => ((s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && s.assignment !== "be your Head Girl" && canWalk(s) && canHear(s) && canSee(s) && canTalk(s)) &&
+		((State.variables.SlaveSummaryFiler !== "experienced") ||
+		(State.variables.SlaveSummaryFiler === "experienced" && App.Entity.facilities.headGirlSuite.manager.slaveHasExperience(s)))),
 	"Head Girl Suite": s => (s.assignmentVisible === 1 && s.fuckdoll <= 0 && (
-		(State.variables.Flag === 0 && s.assignment !== "be your Head Girl" && s.indentureRestrictions <= 0 && (s.breedingMark !== 1 || State.variables.propOutcome === 0)) ||
-		(State.variables.Flag !== 0 && s.assignment === "live with your Head Girl"))),
+		(State.variables.SlaveSummaryFiler === "assignable" && s.assignment !== "be your Head Girl" && s.indentureRestrictions <= 0 && (s.breedingMark !== 1 || State.variables.propOutcome === 0)) ||
+		(State.variables.SlaveSummaryFiler !== "assignable" && s.assignment === "live with your Head Girl"))),
 	"Subordinate Targeting": s => (s.devotion >= -20 && s.fuckdoll === 0 && State.variables.activeSlave.ID !== s.ID && (State.variables.activeSlave.amp !== 1 || s.amp !== 1)),
-	"Spa": s => (s.assignmentVisible === 1 && s.fuckdoll <= 0 && (
-		(State.variables.Flag === 0 && s.assignment !== "rest in the spa") ||
-		(State.variables.Flag === 1 && s.assignment === "rest in the spa") ||
-		(State.variables.Flag !== 0 && State.variables.Flag !== 1 && s.ID === State.variables.Attendant.ID))),
-	"Attendant Select": s => (s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && canWalk(s) && canHear(s)),
+	"Spa": s => ((s.assignmentVisible === 1 && s.fuckdoll <= 0 && (
+		(State.variables.SlaveSummaryFiler === "assignable" && s.assignment !== "rest in the spa") ||
+		(State.variables.SlaveSummaryFiler === "occupying" && s.assignment === "rest in the spa") ||
+		(State.variables.SlaveSummaryFiler === "leading" && s.ID === State.variables.Attendant.ID))) ||
+		(s.assignmentVisible === 0 && s.fuckdoll <= 0 && (
+			(State.variables.SlaveSummaryFiler === "transferable" && s.assignment !== "rest in the spa")))),
+	"Attendant Select": s => ((s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && canWalk(s) && canHear(s)) &&
+		((State.variables.SlaveSummaryFiler !== "experienced") ||
+		(State.variables.SlaveSummaryFiler === "experienced" && App.Entity.facilities.spa.manager.slaveHasExperience(s)))),
 	"Nursery": s => (s.assignmentVisible === 1 && s.fuckdoll <= 0 && (s.devotion > 20 || s.trust > 20) && (
-		(State.variables.Flag === 0 && s.assignment !== "work as a nanny") ||
-		(State.variables.Flag === 1 && s.assignment === "work as a nanny") ||
-		(State.variables.Flag !== 0 && State.variables.Flag !== 1 && s.ID === State.variables.Matron.ID))),
-	"Matron Select": s => (s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && canWalk(s) && canHear(s)),
+		(State.variables.SlaveSummaryFiler === "assignable" && s.assignment !== "work as a nanny") ||
+		(State.variables.SlaveSummaryFiler === "occupying" && s.assignment === "work as a nanny") ||
+		(State.variables.SlaveSummaryFiler === "leading" && s.ID === State.variables.Matron.ID))),
+	"Matron Select": s => ((s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && canWalk(s) && canHear(s)) &&
+		((State.variables.SlaveSummaryFiler !== "experienced") ||
+		(State.variables.SlaveSummaryFiler === "experienced" && App.Entity.facilities.nursery.manager.slaveHasExperience(s)))),
 	"Brothel": s => (s.assignmentVisible === 1 && s.fuckdoll <= 0 && (
-		(State.variables.Flag === 0 && s.assignment !== "work in the brothel") ||
-		(State.variables.Flag === 1 && s.assignment === "work in the brothel") ||
-		(State.variables.Flag !== 0 && State.variables.Flag !== 1 && s.ID === State.variables.Madam.ID))),
-	"Madam Select": s => (s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && s.intelligence + s.intelligenceImplant >= -50 && canWalk(s) && canSee(s) && canHear(s) && (s.breedingMark !== 1 || State.variables.propOutcome === 0)),
+		(State.variables.SlaveSummaryFiler === "assignable" && s.assignment !== "work in the brothel") ||
+		(State.variables.SlaveSummaryFiler === "occupying" && s.assignment === "work in the brothel") ||
+		(State.variables.SlaveSummaryFiler === "leading" && s.ID === State.variables.Madam.ID))),
+	"Madam Select": s => ((s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && s.intelligence + s.intelligenceImplant >= -50 && canWalk(s) && canSee(s) && canHear(s) && (s.breedingMark !== 1 || State.variables.propOutcome === 0)) &&
+		((State.variables.SlaveSummaryFiler !== "experienced") ||
+		(State.variables.SlaveSummaryFiler === "experienced" && App.Entity.facilities.brothel.manager.slaveHasExperience(s)))),
 	"Club": s => (s.assignmentVisible === 1 && s.fuckdoll <= 0 && (
-		(State.variables.Flag === 0 && s.assignment !== "serve in the club") ||
-		(State.variables.Flag === 1 && s.assignment === "serve in the club") ||
-		(State.variables.Flag !== 0 && State.variables.Flag !== 1 && s.ID === State.variables.DJ.ID))),
-	"DJ Select": s => (s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && s.intelligence + s.intelligenceImplant >= -50 && canTalk(s) && canHear(s) && canWalk(s) && (s.breedingMark !== 1 || State.variables.propOutcome === 0)),
-	"Clinic": s => (s.assignmentVisible === 1 && s.fuckdoll <= 0 && (
-		(State.variables.Flag === 0 && s.assignment !== "get treatment in the clinic") ||
-		(State.variables.Flag === 1 && s.assignment === "get treatment in the clinic") ||
-		(State.variables.Flag !== 0 && State.variables.Flag !== 1 && s.ID === State.variables.Nurse.ID))),
-	"Nurse Select": s => (s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && canWalk(s) && canSee(s)),
-	"Schoolroom": s => (s.assignmentVisible === 1 && s.fuckdoll <= 0 && (
-		(State.variables.Flag === 0 && s.fetish !== "mindbroken" && s.assignment !== "learn in the schoolroom") ||
-		(State.variables.Flag === 1 && s.assignment === "learn in the schoolroom") ||
-		(State.variables.Flag !== 0 && State.variables.Flag !== 1 && s.ID === State.variables.Schoolteacher.ID))),
-	"Schoolteacher Select": s => (s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && canTalk(s) && canHear(s) && canSee(s)),
+		(State.variables.SlaveSummaryFiler === "assignable" && s.assignment !== "serve in the club") ||
+		(State.variables.SlaveSummaryFiler === "occupying" && s.assignment === "serve in the club") ||
+		(State.variables.SlaveSummaryFiler === "leading" && s.ID === State.variables.DJ.ID))),
+	"DJ Select": s => ((s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && s.intelligence + s.intelligenceImplant >= -50 && canTalk(s) && canHear(s) && canWalk(s) && (s.breedingMark !== 1 || State.variables.propOutcome === 0)) &&
+		((State.variables.SlaveSummaryFiler !== "experienced") ||
+		(State.variables.SlaveSummaryFiler === "experienced" && App.Entity.facilities.club.manager.slaveHasExperience(s)))),
+	"Clinic": s => ((s.assignmentVisible === 1 && s.fuckdoll <= 0 && (
+		(State.variables.SlaveSummaryFiler === "assignable" && s.assignment !== "get treatment in the clinic") ||
+		(State.variables.SlaveSummaryFiler === "occupying" && s.assignment === "get treatment in the clinic") ||
+		(State.variables.SlaveSummaryFiler === "leading" && s.ID === State.variables.Nurse.ID))) ||
+		(s.assignmentVisible === 0 && s.fuckdoll <= 0 && (
+			(State.variables.SlaveSummaryFiler === "transferable" && s.assignment !== "get treatment in the clinic")))),
+	"Nurse Select": s => ((s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && canWalk(s) && canSee(s)) &&
+		((State.variables.SlaveSummaryFiler !== "experienced") ||
+		(State.variables.SlaveSummaryFiler === "experienced" && App.Entity.facilities.clinic.manager.slaveHasExperience(s)))),
+	"Schoolroom": s => ((s.assignmentVisible === 1 && s.fuckdoll <= 0 && (
+		(State.variables.SlaveSummaryFiler === "assignable" && s.fetish !== "mindbroken" && s.assignment !== "learn in the schoolroom") ||
+		(State.variables.SlaveSummaryFiler === "occupying" && s.assignment === "learn in the schoolroom") ||
+		(State.variables.SlaveSummaryFiler === "leading" && s.ID === State.variables.Schoolteacher.ID))) ||
+		(s.assignmentVisible === 0 && s.fuckdoll <= 0 && (
+			(State.variables.SlaveSummaryFiler === "transferable" && s.assignment !== "learn in the schoolroom")))),
+	"Schoolteacher Select": s => ((s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && canTalk(s) && canHear(s) && canSee(s)) &&
+		((State.variables.SlaveSummaryFiler !== "experienced") ||
+		(State.variables.SlaveSummaryFiler === "experienced" && App.Entity.facilities.schoolroom.manager.slaveHasExperience(s)))),
 	"Dairy": s => (s.assignmentVisible === 1 && s.fuckdoll <= 0 && (
-		(State.variables.Flag === 0 && s.assignment !== "work in the dairy") ||
-		(State.variables.Flag === 1 && s.assignment === "work in the dairy") ||
-		(State.variables.Flag !== 0 && State.variables.Flag !== 1 && s.ID === State.variables.Milkmaid.ID))),
-	"Milkmaid Select": s => (s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 20 && canWalk(s) && canSee(s) && canHear(s)),
+		(State.variables.SlaveSummaryFiler === "assignable" && s.assignment !== "work in the dairy") ||
+		(State.variables.SlaveSummaryFiler === "occupying" && s.assignment === "work in the dairy") ||
+		(State.variables.SlaveSummaryFiler === "leading" && s.ID === State.variables.Milkmaid.ID))),
+	"Milkmaid Select": s => ((s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 20 && canWalk(s) && canSee(s) && canHear(s)) &&
+		((State.variables.SlaveSummaryFiler !== "experienced") ||
+		(State.variables.SlaveSummaryFiler === "experienced" && App.Entity.facilities.dairy.manager.slaveHasExperience(s)))),
 	"Farmyard": s => (s.assignmentVisible === 1 && s.fuckdoll <= 0 && (
-		(State.variables.Flag === 0 && s.assignment !== "work as a farmhand") ||
-		(State.variables.Flag === 1 && s.assignment === "work as a farmhand") ||
-		(State.variables.Flag !== 0 && State.variables.Flag !== 1 && s.ID === State.variables.Farmer.ID))),
-	"Farmer Select": s => (s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && canWalk(s) && canSee(s) && canHear(s)),
+		(State.variables.SlaveSummaryFiler === "assignable" && s.assignment !== "work as a farmhand") ||
+		(State.variables.SlaveSummaryFiler === "occupying" && s.assignment === "work as a farmhand") ||
+		(State.variables.SlaveSummaryFiler === "leading" && s.ID === State.variables.Farmer.ID))),
+	"Farmer Select": s => ((s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && canWalk(s) && canSee(s) && canHear(s)) &&
+		((State.variables.SlaveSummaryFiler !== "experienced") ||
+		(State.variables.SlaveSummaryFiler === "experienced" && App.Entity.facilities.farm.manager.slaveHasExperience(s)))),
 	"Servants' Quarters": s => (s.assignmentVisible === 1 && s.fuckdoll <= 0 && (
-		(State.variables.Flag === 0 && s.assignment !== "work as a servant") ||
-		(State.variables.Flag === 1 && s.assignment === "work as a servant") ||
-		(State.variables.Flag !== 0 && State.variables.Flag !== 1 && s.ID === State.variables.Stewardess.ID))),
-	"Stewardess Select": s => (s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && s.intelligence + s.intelligenceImplant >= -50 && canWalk(s) && canSee(s) && canHear(s)),
+		(State.variables.SlaveSummaryFiler === "assignable" && s.assignment !== "work as a servant") ||
+		(State.variables.SlaveSummaryFiler === "occupying" && s.assignment === "work as a servant") ||
+		(State.variables.SlaveSummaryFiler === "leading" && s.ID === State.variables.Stewardess.ID))),
+	"Stewardess Select": s => ((s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && s.intelligence + s.intelligenceImplant >= -50 && canWalk(s) && canSee(s) && canHear(s)) &&
+		((State.variables.SlaveSummaryFiler !== "experienced") ||
+		(State.variables.SlaveSummaryFiler === "experienced" && App.Entity.facilities.servantsQuarters.manager.slaveHasExperience(s)))),
 	"Master Suite": s => (s.assignmentVisible === 1 && s.fuckdoll <= 0 && (
-		(State.variables.Flag === 0 && s.assignment !== "serve in the master suite") ||
-		(State.variables.Flag === 1 && s.assignment === "serve in the master suite") ||
-		(State.variables.Flag !== 0 && State.variables.Flag !== 1 && s.ID === State.variables.Concubine.ID))),
-	"Concubine Select": s => (s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && s.amp !== 1),
+		(State.variables.SlaveSummaryFiler === "assignable" && s.assignment !== "serve in the master suite") ||
+		(State.variables.SlaveSummaryFiler === "occupying" && s.assignment === "serve in the master suite") ||
+		(State.variables.SlaveSummaryFiler === "leading" && s.ID === State.variables.Concubine.ID))),
+	"Concubine Select": s => ((s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && s.amp !== 1) &&
+		((State.variables.SlaveSummaryFiler !== "experienced") ||
+		(State.variables.SlaveSummaryFiler === "experienced" && App.Entity.facilities.masterSuite.manager.slaveHasExperience(s)))),
 	"Cellblock": s => (s.assignmentVisible === 1 && s.fuckdoll <= 0 && s.fetish !== "mindbroken" && (
-		(State.variables.Flag === 0 && s.assignment !== "be confined in the cellblock") ||
-		(State.variables.Flag === 1 && s.assignment === "be confined in the cellblock") ||
-		(State.variables.Flag !== 0 && State.variables.Flag !== 1 && s.ID === State.variables.Wardeness.ID))),
-	"Wardeness Select": s => (s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && canWalk(s) && canSee(s) && canHear(s)),
+		(State.variables.SlaveSummaryFiler === "assignable" && s.assignment !== "be confined in the cellblock") ||
+		(State.variables.SlaveSummaryFiler === "occupying" && s.assignment === "be confined in the cellblock") ||
+		(State.variables.SlaveSummaryFiler === "leading" && s.ID === State.variables.Wardeness.ID))),
+	"Wardeness Select": s => ((s.assignmentVisible === 1 && s.fuckdoll === 0 && s.devotion > 50 && canWalk(s) && canSee(s) && canHear(s)) &&
+		((State.variables.SlaveSummaryFiler !== "experienced") ||
+		(State.variables.SlaveSummaryFiler === "experienced" && App.Entity.facilities.cellblock.manager.slaveHasExperience(s)))),
 	"Arcade": s => (s.assignmentVisible === 1 && (State.variables.arcade >= State.variables.arcadeSlaves || State.variables.arcadeUpgradeFuckdolls === 1) && (
-		(State.variables.Flag === 0 && s.assignment !== "be confined in the arcade") ||
-		(State.variables.Flag !== 0 && s.assignment === "be confined in the arcade"))),
+		(State.variables.SlaveSummaryFiler === "assignable" && s.assignment !== "be confined in the arcade") ||
+		(State.variables.SlaveSummaryFiler !== "assignable" && s.assignment === "be confined in the arcade"))),
 	"Pit": s => (s.assignmentVisible === 1 && s.fuckdoll === 0 && (
-		(State.variables.Flag === 0 && !State.variables.fighterIDs.includes(s.ID) && canWalk(s) && (s.assignment !== "guard you") && (s.assignment !== "work in the dairy" || State.variables.dairyRestraintsSetting < 2)) ||
-		(State.variables.Flag !== 0 && State.variables.fighterIDs.includes(s.ID)))),
+		(State.variables.SlaveSummaryFiler === "assignable" && !State.variables.fighterIDs.includes(s.ID) && canWalk(s) && (s.assignment !== "guard you") && (s.assignment !== "work in the dairy" || State.variables.dairyRestraintsSetting < 2)) ||
+		(State.variables.SlaveSummaryFiler !== "assignable" && State.variables.fighterIDs.includes(s.ID)))),
 	"Coursing Association": s => (s.assignmentVisible === 1 && s.fuckdoll === 0 && (
-		(State.variables.Flag === 0 && canWalk(s) && State.variables.Lurcher.ID !== s.ID) ||
-		(State.variables.Flag !== 0 && State.variables.Lurcher.ID === s.ID))),
-	"New Game Plus": s => ((State.variables.Flag === 0 && s.assignment !== "be imported") || (State.variables.Flag !== 0 && s.assignment === "be imported")),
-	"Rules Slave Select": s => ((State.variables.Flag === 0 && !ruleSlaveSelected(s, State.variables.currentRule)) || (State.variables.Flag !== 0 && ruleSlaveSelected(s, State.variables.currentRule))),
-	"Rules Slave Exclude": s => ((State.variables.Flag === 0 && !ruleSlaveExcluded(s, State.variables.currentRule)) || (State.variables.Flag !== 0 && ruleSlaveExcluded(s, State.variables.currentRule))),
+		(State.variables.SlaveSummaryFiler === "assignable" && canWalk(s) && State.variables.Lurcher.ID !== s.ID) ||
+		(State.variables.SlaveSummaryFiler !== "assignable" && State.variables.Lurcher.ID === s.ID))),
+	"New Game Plus": s => ((State.variables.SlaveSummaryFiler === "assignable" && s.assignment !== "be imported") || (State.variables.SlaveSummaryFiler !== "assignable" && s.assignment === "be imported")),
+	"Rules Slave Select": s => ((State.variables.SlaveSummaryFiler === "assignable" && !ruleSlaveSelected(s, State.variables.currentRule)) || (State.variables.SlaveSummaryFiler !== "assignable" && ruleSlaveSelected(s, State.variables.currentRule))),
+	"Rules Slave Exclude": s => ((State.variables.SlaveSummaryFiler === "assignable" && !ruleSlaveExcluded(s, State.variables.currentRule)) || (State.variables.SlaveSummaryFiler !== "assignable" && ruleSlaveExcluded(s, State.variables.currentRule))),
 	"Matchmaking": s => (s.devotion >= 100 && s.relationship === State.variables.activeSlave.relationship && s.ID !== State.variables.activeSlave.ID),
 	"Dinner Party Preparations": s => (s.assignmentVisible === 1 && s.fuckdoll === 0),
 };
@@ -4914,7 +4951,7 @@ App.UI.PassageSlaveFilers = {
  * @param {string} passageName
  * @returns {string}
  */
-App.UI.slaveSummaryList = function (passageName) {
+App.UI.slaveSummaryList = function(passageName) {
 	'use strict';
 	const V = State.variables;
 
@@ -4976,15 +5013,15 @@ App.UI.slaveSummaryList = function (passageName) {
 		return r.join("");
 	}
 
-	const _filteredSlaveIdxs = slaves.map(function (slave, idx) {
+	const _filteredSlaveIdxs = slaves.map(function(slave, idx) {
 		return _passagePreFilter(slave) ? idx : null;
-	}).filter(function (idx) {
+	}).filter(function(idx) {
 		return idx !== null;
 	});
 
-	const _indexSlavesIdxs = slaves.map(function (slave, idx) {
+	const _indexSlavesIdxs = slaves.map(function(slave, idx) {
 		return _passagePreFilter(slave) ? idx : null;
-	}).filter(function (idx) {
+	}).filter(function(idx) {
 		return idx !== null;
 	});
 
@@ -4995,10 +5032,10 @@ App.UI.slaveSummaryList = function (passageName) {
 	if (V.useSlaveListInPageJSNavigation === 1) {
 		const _Count = _indexSlavesIdxs.length;
 		/* Useful for finding weird combinations — usages of this passage that don't yet generate the quick index.
-		 *	<<print 'pass/count/indexed/flag::[' + passageName + '/' + _Count + '/' + _indexed + '/' + $Flag + ']'>>
+		 *	<<print 'pass/count/indexed/flag::[' + passageName + '/' + _Count + '/' + _indexed + '/' + $SlaveSummaryFiler + ']'>>
 		 */
 
-		if (((_Count > 1) && (_indexed === 0) && (((passageName === "Main") && (V.Flag === undefined) && ((V.useSlaveSummaryTabs === 0) || (V.slaveAssignmentTab === "all"))) || (V.Flag === 1)))) {
+		if (((_Count > 1) && (_indexed === 0) && (((passageName === "Main") && (V.SlaveSummaryFiler === undefined) && ((V.useSlaveSummaryTabs === 0) || (V.slaveAssignmentTab === "all"))) || (V.SlaveSummaryFiler === "occupying")))) {
 			const _buttons = [];
 			let _offset = -50;
 			if (/Select/i.test(passageName)) {
@@ -5088,10 +5125,10 @@ App.UI.slaveSummaryList = function (passageName) {
 		"HG Select": makeSelectionPassageInfo(App.Entity.facilities.headGirlSuite, "HG Workaround"),
 		"BG Select": makeSelectionPassageInfo(App.Entity.facilities.armory, "Bodyguard Workaround"),
 		"Attendant Select": makeSelectionPassageInfo(App.Entity.facilities.spa, "Attendant Workaround"),
-		"Concubine Select":  makeSelectionPassageInfo(App.Entity.facilities.masterSuite, "Concubine Workaround"),
+		"Concubine Select": makeSelectionPassageInfo(App.Entity.facilities.masterSuite, "Concubine Workaround"),
 		"Matron Select": makeSelectionPassageInfo(App.Entity.facilities.nursery, "Matron Workaround"),
 		"Madam Select": makeSelectionPassageInfo(App.Entity.facilities.brothel, "Madam Workaround"),
-		"Milkmaid Select": makeSelectionPassageInfo(App.Entity.facilities.dairy,  "Milkmaid Workaround"),
+		"Milkmaid Select": makeSelectionPassageInfo(App.Entity.facilities.dairy, "Milkmaid Workaround"),
 		"Nurse Select": makeSelectionPassageInfo(App.Entity.facilities.clinic, "Nurse Workaround"),
 		"DJ Select": makeSelectionPassageInfo(App.Entity.facilities.club, "DJ Workaround"),
 		"Farmer Select": makeSelectionPassageInfo(App.Entity.facilities.farmyard, "Farmer Workaround"),
@@ -5132,7 +5169,7 @@ App.UI.slaveSummaryList = function (passageName) {
 		res.push(`<div id="slave_${ _Slave.ID }" style="clear:both">`);
 
 		if (passageFacility !== undefined) {
-			if (V.Flag === 0) {
+			if (V.SlaveSummaryFiler === "assignable" || V.SlaveSummaryFiler === "transferable") {
 				if (!passageFacility.hasFreeSpace) {
 					res.pop();
 					continue;
@@ -5142,13 +5179,13 @@ App.UI.slaveSummaryList = function (passageName) {
 					let rejectString = rejects.length === 1 ?
 						rejects[0]:
 						`${_slaveName}: <ul>${rejects.map(e => `<li>${e}</li>`).join('')}</ul>`;
-					res.push(rejectString + '</div>');
+					res.push(`${rejectString}</div>`);
 					continue;
 				} else {
 					res.push(dividerAndImage(_Slave));
 					res.push(`[[${_slaveName}|Slave Interact][$activeSlave = $slaves[${_ssi}]]]`);
 				}
-			} else if (V.Flag === 1) {
+			} else if (V.SlaveSummaryFiler === "occupying") {
 				res.push(dividerAndImage(_Slave));
 				res.push(`[[${_slaveName}|Slave Interact][$activeSlave = $slaves[${_ssi}]]]`);
 			} else {
@@ -5187,7 +5224,7 @@ App.UI.slaveSummaryList = function (passageName) {
 				res.push(`[[${_slaveName}|Subordinate Targeting][$activeSlave.subTarget = $slaves[${_ssi}].ID]]`);
 				break;
 			case "Coursing Association":
-				if (V.Flag === 0) {
+				if (V.SlaveSummaryFiler === "assignable") {
 					res.push(dividerAndImage(_Slave));
 					res.push(`[[${_slaveName}|Assign][$i = ${_ssi}]]`);
 				} else {
@@ -5197,7 +5234,7 @@ App.UI.slaveSummaryList = function (passageName) {
 				break;
 			case "New Game Plus":
 				res.push(dividerAndImage(_Slave));
-				if (V.Flag === 0) {
+				if (V.SlaveSummaryFiler === "assignable") {
 					res.push(`__''@@.pink;${_Slave.slaveName}@@''__`);
 				} else {
 					res.push(`__''@@.pink;${_Slave.slaveName}@@''__`);
@@ -5205,7 +5242,7 @@ App.UI.slaveSummaryList = function (passageName) {
 				break;
 			case "Rules Slave Select":
 				slaveImagePrinted = false;
-				if (V.Flag === 0) {
+				if (V.SlaveSummaryFiler === "assignable") {
 					res.push(`__''[[${_slaveName}|Rules Slave Select Workaround][$activeSlave = $slaves[${_ssi}]]]''__`);
 				} else {
 					res.push(`__''[[${_slaveName}|Rules Slave Deselect Workaround][$activeSlave = $slaves[${_ssi}]]]''__`);
@@ -5213,7 +5250,7 @@ App.UI.slaveSummaryList = function (passageName) {
 				break;
 			case "Rules Slave Exclude":
 				slaveImagePrinted = false;
-				if (V.Flag === 0) {
+				if (V.SlaveSummaryFiler === "assignable") {
 					res.push(`__''[[${_slaveName}|Rules Slave Exclude Workaround][$activeSlave = $slaves[${_ssi}]]]''__`);
 				} else {
 					res.push(`__''[[${_slaveName}|Rules Slave NoExclude Workaround][$activeSlave = $slaves[${_ssi}]]]''__`);
@@ -5268,7 +5305,7 @@ App.UI.slaveSummaryList = function (passageName) {
 			}
 		} /* closes _numFacilities */
 
-		if ((passageName !== 'Main') || (V.Flag !== undefined) || (V.useSlaveSummaryTabs === 0) || (tabName === "all")) {
+		if ((passageName !== 'Main') || (V.SlaveSummaryFiler !== undefined) || (V.useSlaveSummaryTabs === 0) || (tabName === "all")) {
 			res.push(`<span id="slave-${slaves[_ssi].ID}">&nbsp;</span>`);
 		}
 		res.push('<br/>');
@@ -5285,11 +5322,13 @@ App.UI.slaveSummaryList = function (passageName) {
 
 		if (passageFacility !== undefined) {
 			res.push(`<br>${ V.seeImages !== 1 || V.seeSummaryImages !== 1 || V.imageChoice === 1}` ? '&nbsp;&nbsp;&nbsp;&nbsp;' : '');
-			if (V.Flag === 0) {
+			if (V.SlaveSummaryFiler === "assignable") {
+				res.push(`<<link "Send ${_Slave.object} to ${passageFacility.name}" "Assign">><<set $i = ${_ssi}>><</link>>`);
+			} else if (V.SlaveSummaryFiler === "transferable") {
 				res.push(`<<link "Send ${_Slave.object} to ${passageFacility.name}" "Assign">><<set $i = ${_ssi}>><</link>>`);
-			} else if (V.Flag === 1) {
+			} else if (V.SlaveSummaryFiler === "occupying") {
 				res.push(`<<link "Remove ${_Slave.object} from ${passageFacility.name}" "Retrieve">><<set $i = ${_ssi}>><</link>>`);
-			} else if (passageFacility.desc.manager !== null){
+			} else if (passageFacility.desc.manager !== null) {
 				const managerCapName = capFirstChar(passageFacility.desc.manager.position);
 				res.push(`[[Change or remove ${managerCapName}|${managerCapName} Select]]`);
 			}
@@ -5310,14 +5349,14 @@ App.UI.slaveSummaryList = function (passageName) {
 				break;
 			case "New Game Plus":
 				res.push(`<br>${ V.seeImages !== 1 || V.seeSummaryImages !== 1 || V.imageChoice === 1}` ? '&nbsp;&nbsp;&nbsp;&nbsp;' : '');
-				if (V.Flag === 0) {
+				if (V.SlaveSummaryFiler === "assignable") {
 					res.push(`<<link "Add to import list" "New Game Plus">>
-							<<set $slavesToImport += 1,$Flag = 1>>
+							<<set $slavesToImport += 1,$SlaveSummaryFiler = "occupying">>
 							<<= assignJob($slaves[${_ssi}], "be imported")>>
 						<</link>>`);
 				} else {
 					res.push(`<<link "Remove from import list" "New Game Plus">>
-							<<set $slavesToImport -= 1,$Flag = 0>>
+							<<set $slavesToImport -= 1,$SlaveSummaryFiler = "assignable">>
 							<<= removeJob($slaves[${_ssi}], $slaves[${_ssi}].assignment)>>
 						<</link>>`);
 				}
@@ -5341,7 +5380,7 @@ App.UI.slaveSummaryList = function (passageName) {
  * Adds/removes a slave with the given id to/from the personal attention array
  * @param {number} id slave id
  */
-App.UI.selectSlaveForPersonalAttention = function (id) {
+App.UI.selectSlaveForPersonalAttention = function(id) {
 	const V = State.variables;
 
 	if (!Array.isArray(V.personalAttention)) {
@@ -5351,7 +5390,7 @@ App.UI.selectSlaveForPersonalAttention = function (id) {
 			trainingRegimen: "undecided"
 		}];
 	} else {
-		const _pai = V.personalAttention.findIndex(function (s) {
+		const _pai = V.personalAttention.findIndex(function(s) {
 			return s.ID === id;
 		});
 		if (_pai === -1) {
diff --git a/src/npc/agent/agentFramework.js b/src/npc/agent/agentFramework.js
index f3160b904b1b8277303a95bad01a0d710a36251d..7e540ac9ea32c966acca249ad8ce6360d80d6ac1 100644
--- a/src/npc/agent/agentFramework.js
+++ b/src/npc/agent/agentFramework.js
@@ -1,5 +1,5 @@
 App.Data.Facilities.arcologyAgent = {
-	baseName: "arcololgy",
+	baseName: "arcology",
 	genericName: null,
 	jobs: {
 		agentsSlave: {
diff --git a/src/pregmod/widgets/assignmentFilterWidget.tw b/src/pregmod/widgets/assignmentFilterWidget.tw
index 87ce972f2e3744befa869e33ff1e71a8327fdef7..2c47355fb694d3e9d1cf7763cc568473082a3fa0 100644
--- a/src/pregmod/widgets/assignmentFilterWidget.tw
+++ b/src/pregmod/widgets/assignmentFilterWidget.tw
@@ -78,23 +78,24 @@
 /*
  * Checks from which Facility its get called and removes it from the list
  * this is the Main Filter widget used on all Passages atm
- * sets Flag = zero so slave summary provides send-to-facility links
+ * sets SlaveSummaryFiler = "assignable" so slave summary provides send-to-facility links
 */
 <<widget "assignmentFilter">>
-	<<link All>><<showallAssignmentFilter>><<replace #ComingGoing>><<set $Flag = 0>><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>>
-	<<if passage() != "Arcade">><<print " | ">><<link Arcade>><<arcadeAssignmentFilter>><<replace #ComingGoing>><<set $Flag = 0>><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
-	<<if passage() != "Brothel">><<print " | ">><<link Brothel>><<brothelAssignmentFilter>><<replace #ComingGoing>><<set $Flag = 0>><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
-	<<if passage() != "Cellblock">><<print " | ">><<link Cellblock>><<cellblockAssignmentFilter>><<replace #ComingGoing>><<set $Flag = 0>><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
-	<<if passage() != "Clinic">><<print " | ">><<link Clinic>><<clinicAssignmentFilter>><<replace #ComingGoing>><<set $Flag = 0>><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
-	<<if passage() != "Club">><<print " | ">><<link Club>><<clubAssignmentFilter>><<replace #ComingGoing>><<set $Flag = 0>><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
-	<<if passage() != "Dairy">><<print " | ">><<link Dairy>><<dairyAssignmentFilter>><<replace #ComingGoing>><<set $Flag = 0>><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
-	<<if passage() != "Farmyard">><<print " | ">><<link Farmyard>><<farmyardAssignmentFilter>><<replace #ComingGoing>><<set $Flag = 0>><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
-	<<print " | ">><<link Penthouse>><<penthouseAssignmentFilter>><<replace #ComingGoing>><<include 'Slave Summary'>><<set $Flag = 0>><<resetAssignmentFilter>><</replace>><</link>>
-	<<if passage() != "Schoolroom">><<print " | ">><<link Schoolroom>><<schoolAssignmentFilter>><<replace #ComingGoing>><<set $Flag = 0>><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
-	<<if passage() != "Spa">><<print " | ">><<link Spa>><<spaAssignmentFilter>><<replace #ComingGoing>><<set $Flag = 0>><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
-	<<if passage() != "Nursery">><<print " | ">><<link Nursery>><<nurseryAssignmentFilter>><<replace #ComingGoing>><<set $Flag = 0>><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
-	<<if passage() != "Master Suite">><<print " | ">><<link Suite>><<suiteAssignmentFilter>><<replace #ComingGoing>><<set $Flag = 0>><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
-	<<if passage() != "Servants' Quarters">><<print " | ">><<link Quarters>><<quartersAssignmentFilter>><<set $Flag = 0>><<replace #ComingGoing>><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
+	<<link All>><<showallAssignmentFilter>><<replace #ComingGoing>><<set $SlaveSummaryFiler = "assignable">><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>>
+	<<if passage() != "Arcade">><<print " | ">><<link Arcade>><<arcadeAssignmentFilter>><<replace #ComingGoing>><<set $SlaveSummaryFiler = "assignable">><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
+	<<if passage() != "Brothel">><<print " | ">><<link Brothel>><<brothelAssignmentFilter>><<replace #ComingGoing>><<set $SlaveSummaryFiler = "assignable">><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
+	<<if passage() != "Cellblock">><<print " | ">><<link Cellblock>><<cellblockAssignmentFilter>><<replace #ComingGoing>><<set $SlaveSummaryFiler = "assignable">><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
+	<<if passage() != "Clinic">><<print " | ">><<link Clinic>><<clinicAssignmentFilter>><<replace #ComingGoing>><<set $SlaveSummaryFiler = "assignable">><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
+	<<if passage() != "Club">><<print " | ">><<link Club>><<clubAssignmentFilter>><<replace #ComingGoing>><<set $SlaveSummaryFiler = "assignable">><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
+	<<if passage() != "Dairy">><<print " | ">><<link Dairy>><<dairyAssignmentFilter>><<replace #ComingGoing>><<set $SlaveSummaryFiler = "assignable">><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
+	<<if passage() != "Farmyard">><<print " | ">><<link Farmyard>><<farmyardAssignmentFilter>><<replace #ComingGoing>><<set $SlaveSummaryFiler = "assignable">><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
+	<<print " | ">><<link Penthouse>><<penthouseAssignmentFilter>><<replace #ComingGoing>><<include 'Slave Summary'>><<set $SlaveSummaryFiler = "assignable">><<resetAssignmentFilter>><</replace>><</link>>
+	<<if passage() != "Schoolroom">><<print " | ">><<link Schoolroom>><<schoolAssignmentFilter>><<replace #ComingGoing>><<set $SlaveSummaryFiler = "assignable">><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
+	<<if passage() != "Spa">><<print " | ">><<link Spa>><<spaAssignmentFilter>><<replace #ComingGoing>><<set $SlaveSummaryFiler = "assignable">><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
+	<<if passage() != "Nursery">><<print " | ">><<link Nursery>><<nurseryAssignmentFilter>><<replace #ComingGoing>><<set $SlaveSummaryFiler = "assignable">><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
+	<<if passage() != "Master Suite">><<print " | ">><<link Suite>><<suiteAssignmentFilter>><<replace #ComingGoing>><<set $SlaveSummaryFiler = "assignable">><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
+	<<if passage() != "Servants' Quarters">><<print " | ">><<link Quarters>><<quartersAssignmentFilter>><<set $SlaveSummaryFiler = "assignable">><<replace #ComingGoing>><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><</link>><</if>>
+	<<print " | ">><<link @@.lime;Experienced@@>><<showallAssignmentFilter>><<set $SlaveSummaryFiler = "experienced">><<replace #ComingGoing>><<include 'Slave Summary'>><<resetAssignmentFilter>><</replace>><<set $SlaveSummaryFiler = "">><</link>>
 <</widget>>
 
 /*
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index 7e276538b6829860b754c900cadbef3b9dc7f50b..773bdd0de9664163889a7af819d59e5ee5dc561c 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -33,6 +33,10 @@
 	<<unset $drugs, $harshCollars, $shoes, $bellyAccessories, $vaginalAccessories, $dickAccessories, $buttplugs>>
 <</if>>
 
+<<if def $Flag>>
+	<<unset $Flag>>
+<</if>>
+
 <<if def $servantMilkersJobs>>
 	<<unset $servantMilkersJobs>>
 <</if>>
diff --git a/src/uncategorized/arcade.tw b/src/uncategorized/arcade.tw
index 449c99cf56b86ec73dd17700f63836be8a47ca35..d9ac9c962fae24160f16acdf35bc416b43d80f5f 100644
--- a/src/uncategorized/arcade.tw
+++ b/src/uncategorized/arcade.tw
@@ -149,7 +149,7 @@ $arcadeNameCaps
 	<div class="content">
 		<<if $arcadeSlaves > 0>>
 			<<arcadeAssignmentFilter>>
-			<<set $Flag = 1>>
+			<<set $SlaveSummaryFiler = "occupying">>
 			<<include "Slave Summary">>
 			<<resetAssignmentFilter>>
 		<<else>>
@@ -164,7 +164,7 @@ $arcadeNameCaps
 			''$arcadeNameCaps is full and cannot hold any more slaves''
 		<<elseif ($slaves.length > $arcadeSlaves)>>
 			<<resetAssignmentFilter>>
-			<<set $Flag = 0>>
+			<<set $SlaveSummaryFiler = "assignable">>
 			<<include "Slave Summary">>
 		<</if>>
 	</div>
diff --git a/src/uncategorized/brothel.tw b/src/uncategorized/brothel.tw
index d5fbc18b57f1a0a0974dcc38e6ddcffe857b8b05..bb80d9b4f8f0b3b9f8e83dbaf4ea8d5add533c24 100644
--- a/src/uncategorized/brothel.tw
+++ b/src/uncategorized/brothel.tw
@@ -1,6 +1,6 @@
 :: Brothel [nobr]
 
-<<set $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Brothel", $showEncyclopedia = 1, $encyclopedia = "Brothel", $brothelSlaves = $BrothiIDs.length, $Flag = 0>>
+<<set $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Brothel", $showEncyclopedia = 1, $encyclopedia = "Brothel", $brothelSlaves = $BrothiIDs.length, $SlaveSummaryFiler = "assignable">>
 
 <<if $brothelName != "the Brothel">>
 	<<set $brothelNameCaps = $brothelName.replace("the ", "The ")>>
@@ -207,7 +207,7 @@ Last week this
 
 <br><br>
 <<if $Madam != 0>>
-	<<set $Flag = 2>>
+	<<set $SlaveSummaryFiler = "leading">>
 	<<include "Slave Summary">>
 <<else>>
 	You do not have a slave serving as a Madam. [[Appoint one|Madam Select]]
@@ -226,7 +226,7 @@ Last week this
 	<div class="content">
 		<<if $brothelSlaves > 0>>
 			<<brothelAssignmentFilter>>
-			<<set $Flag = 1>>
+			<<set $SlaveSummaryFiler = "occupying">>
 			<<include "Slave Summary">>
 			<<resetAssignmentFilter>>
 		<<else>>
@@ -241,7 +241,7 @@ Last week this
 			''$brothelNameCaps is full and cannot hold any more slaves''
 		<<elseif ($slaves.length > $brothelSlaves)>>
 			<<resetAssignmentFilter>>
-			<<set $Flag = 0>>
+			<<set $SlaveSummaryFiler = "assignable">>
 			<<include "Slave Summary">>
 		<</if>>
 	</div>
diff --git a/src/uncategorized/cellblock.tw b/src/uncategorized/cellblock.tw
index 1e396b40a2e4b8db39fd545c3d037474f8f357f5..424333eabcf931fea40b22aa14857c8f3b70860e 100644
--- a/src/uncategorized/cellblock.tw
+++ b/src/uncategorized/cellblock.tw
@@ -112,7 +112,7 @@ $cellblockNameCaps
 
 <br><br>
 <<if $Wardeness != 0>>
-	<<set $Flag = 2>>
+	<<set $SlaveSummaryFiler = "leading">>
 	<<include "Slave Summary">>
 <<else>>
 	You do not have a slave serving as a Wardeness. [[Appoint one|Wardeness Select]]
@@ -131,7 +131,7 @@ $cellblockNameCaps
 	<div class="content">
 	<<if $cellblockSlaves > 0>>
 		<<cellblockAssignmentFilter>>
-		<<set $Flag = 1>>
+		<<set $SlaveSummaryFiler = "occupying">>
 		<<include "Slave Summary">>
 		<<resetAssignmentFilter>>
 	<<else>>
@@ -146,7 +146,7 @@ $cellblockNameCaps
 			''$cellblockNameCaps is full and cannot hold any more slaves''
 		<<elseif ($slaves.length > $cellblockSlaves)>>
 			<<resetAssignmentFilter>>
-			<<set $Flag = 0>>
+			<<set $SlaveSummaryFiler = "assignable">>
 			<<include "Slave Summary">>
 		<</if>>
 	</div>
diff --git a/src/uncategorized/clinic.tw b/src/uncategorized/clinic.tw
index ddb516b27b94453e8042a5827f8eec94b36a9c9f..80d8114857dc763592b0c372e260c00826ae3981 100644
--- a/src/uncategorized/clinic.tw
+++ b/src/uncategorized/clinic.tw
@@ -134,7 +134,7 @@ $clinicNameCaps
 
 <br><br>
 <<if $Nurse != 0>>
-	<<set $Flag = 2>>
+	<<set $SlaveSummaryFiler = "leading">>
 	<<include "Slave Summary">>
 <<else>>
 	You do not have a slave serving as a clinical Nurse. [[Appoint one|Nurse Select]]
@@ -147,13 +147,14 @@ $clinicNameCaps
 <div class="tab">
 	<button class="tablinks" onclick="opentab(event, 'assign')" id="tab assign">Assign a slave</button>
 	<button class="tablinks" onclick="opentab(event, 'remove')" id="tab remove">Remove a slave</button>
+	<button class="tablinks" onclick="opentab(event, 'transfer')" id="tab transfer">Transfer from Facility</button>
 </div>
 
 <div id="remove" class="tabcontent">
 	<div class="content">
 		<<if $clinicSlaves > 0>>
 			<<clinicAssignmentFilter>>
-			<<set $Flag = 1>>
+			<<set $SlaveSummaryFiler = "occupying">>
 			<<include "Slave Summary">>
 			<<resetAssignmentFilter>>
 		<<else>>
@@ -168,7 +169,19 @@ $clinicNameCaps
 			''$clinicNameCaps is full and cannot hold any more slaves''
 		<<elseif ($slaves.length > $clinicSlaves)>>
 			<<resetAssignmentFilter>>
-			<<set $Flag = 0>>
+			<<set $SlaveSummaryFiler = "assignable">>
+			<<include "Slave Summary">>
+		<</if>>
+	</div>
+</div>
+
+<div id="transfer" class="tabcontent">
+	<div class="content">
+		<<if ($clinic <= $clinicSlaves)>>
+			''$clinicNameCaps is full and cannot hold any more slaves''
+		<<elseif ($slaves.length > $clinicSlaves)>>
+			<<resetAssignmentFilter>>
+			<<set $SlaveSummaryFiler = "transferable">>
 			<<include "Slave Summary">>
 		<</if>>
 	</div>
@@ -176,8 +189,10 @@ $clinicNameCaps
 
 <<if ($tabChoice.Clinic == "assign")>>
 	<script>document.getElementById("tab assign").click();</script>
-<<else>>
+<<elseif ($tabChoice.Clinic == "remove")>>
 	<script>document.getElementById("tab remove").click();</script>
+<<elseif ($tabChoice.Clinic == "transfer")>>
+	<script>document.getElementById("tab transfer").click();</script>
 <</if>>
 
 </body>
diff --git a/src/uncategorized/club.tw b/src/uncategorized/club.tw
index 2350808bbda0370a844f69b7e114a1070d7a434d..2e69d4f5c9f95385189cbbb697e6f5329c0dde19 100644
--- a/src/uncategorized/club.tw
+++ b/src/uncategorized/club.tw
@@ -251,7 +251,7 @@ $clubNameCaps
 
 <br><br>
 <<if $DJ != 0>>
-	<<set $Flag = 2>>
+	<<set $SlaveSummaryFiler = "leading">>
 	<<include "Slave Summary">>
 <<else>>
 	You do not have a slave serving as a DJ. [[Appoint one|DJ Select]]
@@ -270,7 +270,7 @@ $clubNameCaps
 	<div class="content">
 		<<if $clubSlaves > 0>>
 			<<clubAssignmentFilter>>
-			<<set $Flag = 1>>
+			<<set $SlaveSummaryFiler = "occupying">>
 			<<include "Slave Summary">>
 			<<resetAssignmentFilter>>
 		<<else>>
@@ -285,7 +285,7 @@ $clubNameCaps
 			''$clubNameCaps is full and cannot hold any more slaves''
 		<<elseif ($slaves.length > $clubSlaves)>>
 			<<resetAssignmentFilter>>
-			<<set $Flag = 0>>
+			<<set $SlaveSummaryFiler = "assignable">>
 			<<include "Slave Summary">>
 		<</if>>
 	</div>
diff --git a/src/uncategorized/coursingAssociation.tw b/src/uncategorized/coursingAssociation.tw
index e6d13b8d162eb260e0275fc3f5ef887fe2b46307..e774b3188ffc25a08a3afa395a058ac16ddeecc1 100644
--- a/src/uncategorized/coursingAssociation.tw
+++ b/src/uncategorized/coursingAssociation.tw
@@ -20,7 +20,7 @@ The chasing slaves are known as lurchers, the term once used for the sighthounds
 
 <<if $Lurcher != 0>>
 	<br><br>''Fire your Lurcher:''
-	<<set $Flag = 1>>
+	<<set $SlaveSummaryFiler = "occupying">>
 	<<include "Slave Summary">>
 <</if>>
 
@@ -28,7 +28,7 @@ The chasing slaves are known as lurchers, the term once used for the sighthounds
 <br><br>
 <<assignmentFilter>>
 <span id="ComingGoing">
-	<<set $Flag = 0>>
+	<<set $SlaveSummaryFiler = "assignable">>
 	<<showallAssignmentFilter>>
 	<<include "Slave Summary">>
 	<<resetAssignmentFilter>>
diff --git a/src/uncategorized/dairy.tw b/src/uncategorized/dairy.tw
index e5e43cfcc6167a78a10bdb2935455195f9ed6cb1..e0129d2ceda4b9eb8f3429e9b9d59c2d2b4f71ee 100644
--- a/src/uncategorized/dairy.tw
+++ b/src/uncategorized/dairy.tw
@@ -501,7 +501,7 @@ $dairyNameCaps
 
 <br><br>
 <<if ($Milkmaid != 0)>>
-	<<set $Flag = 2>>
+	<<set $SlaveSummaryFiler = "leading">>
 	<<include "Slave Summary">>
 	<<if canAchieveErection($Milkmaid) && $Milkmaid.pubertyXY == 1>>
 		<<setLocalPronouns $Milkmaid>>
@@ -539,7 +539,7 @@ $dairyNameCaps
 	<div class="content">
 		<<if $dairySlaves > 0>>
 			<<dairyAssignmentFilter>>
-			<<set $Flag = 1>>
+			<<set $SlaveSummaryFiler = "occupying">>
 			<<include "Slave Summary">>
 			<<resetAssignmentFilter>>
 		<<else>>
@@ -554,7 +554,7 @@ $dairyNameCaps
 			''$dairyNameCaps is full and cannot hold any more slaves''
 		<<elseif ($slaves.length > $dairySlaves)>>
 			<<resetAssignmentFilter>>
-			<<set $Flag = 0>>
+			<<set $SlaveSummaryFiler = "assignable">>
 			<<include "Slave Summary">>
 		<</if>>
 	</div>
diff --git a/src/uncategorized/headGirlSuite.tw b/src/uncategorized/headGirlSuite.tw
index 474c4d5e2a49bc6f9e7888120cf185c477b4b2e2..8a42b0aac0057103c5a91c9d9fe6502d1343a9c4 100644
--- a/src/uncategorized/headGirlSuite.tw
+++ b/src/uncategorized/headGirlSuite.tw
@@ -57,7 +57,7 @@
 	<div class="content">
 		<<if $HGSuiteSlaves > 0>>
 			<<headgirlSuiteAssignmentFilter>>
-			<<set $Flag = 1>>
+			<<set $SlaveSummaryFiler = "occupying">>
 			<<include "Slave Summary">>
 			<<resetAssignmentFilter>>
 		<</if>>
@@ -69,7 +69,7 @@
 		<<if ($slaves.length > $HGSuiteSlaves) && ($HGSuiteSlaves < 1)>>
 			<<assignmentFilter>>
 			<<resetAssignmentFilter>>
-			<<set $Flag = 0>>
+			<<set $SlaveSummaryFiler = "assignable">>
 			<<include "Slave Summary">>
 		<<else>>
 			''Head Girl already has a girl.''
diff --git a/src/uncategorized/main.tw b/src/uncategorized/main.tw
index 43657866041973194fc8f487ecbea69cbae59dba..4aec940dc9292dc84bc8039eb8a205ee3377f06e 100644
--- a/src/uncategorized/main.tw
+++ b/src/uncategorized/main.tw
@@ -1,6 +1,6 @@
 :: Main [nobr]
 
-<<unset $Flag>>
+<<unset $SlaveSummaryFiler>>
 <<resetAssignmentFilter>>
 <<if $releaseID >= 1000 || $ver.includes("0.9") || $ver.includes("0.8") || $ver.includes("0.7") || $ver.includes("0.6")>>
 	<<if $releaseID >= 1031>>
diff --git a/src/uncategorized/masterSuite.tw b/src/uncategorized/masterSuite.tw
index 12689c1814ba63bf8b9aa180fea42ad4fda791db..0478aadd359f2820bd83aef6233d46b6102b2247 100644
--- a/src/uncategorized/masterSuite.tw
+++ b/src/uncategorized/masterSuite.tw
@@ -346,7 +346,7 @@ $masterSuiteNameCaps is furnished
 
 <br><br>
 <<if $Concubine != 0>>
-	<<set $Flag = 2>>
+	<<set $SlaveSummaryFiler = "leading">>
 	<<include "Slave Summary">>
 <<else>>
 	You do not have a slave serving as your Concubine. [[Appoint one|Concubine Select]]
@@ -365,7 +365,7 @@ $masterSuiteNameCaps is furnished
 	<div class="content">
 		<<if $masterSuiteSlaves > 0>>
 			<<suiteAssignmentFilter>>
-			<<set $Flag = 1>>
+			<<set $SlaveSummaryFiler = "occupying">>
 			<<include "Slave Summary">>
 			<<resetAssignmentFilter>>
 		<<else>>
@@ -380,7 +380,7 @@ $masterSuiteNameCaps is furnished
 			''$masterSuiteNameCaps is full and cannot hold any more slaves''
 		<<elseif ($slaves.length > $masterSuiteSlaves)>>
 			<<resetAssignmentFilter>>
-			<<set $Flag = 0>>
+			<<set $SlaveSummaryFiler = "assignable">>
 			<<include "Slave Summary">>
 		<</if>>
 	</div>
diff --git a/src/uncategorized/matchmaking.tw b/src/uncategorized/matchmaking.tw
index dd884f98f2f89e5d5ab15c90e087add69e27bc40..6b9224a3e70e96d5bf9aa64f1a4d9b1a801784ff 100644
--- a/src/uncategorized/matchmaking.tw
+++ b/src/uncategorized/matchmaking.tw
@@ -381,7 +381,7 @@ Despite $his devotion and trust, $he is still a slave, and probably knows that $
 <<if $seeImages == 1>><br style="clear:both"><</if>>
 
 <br><br>__Put $him with another worshipful <<if $eventSlave.relationship == -2>>emotionally bonded slave<<else>>emotional slut<</if>>:__
-<<set $Flag = 1>>
+<<set $SlaveSummaryFiler = "occupying">>
 <<include "Slave Summary">>
 
 </span>
diff --git a/src/uncategorized/newGamePlus.tw b/src/uncategorized/newGamePlus.tw
index 3eb8bf2e8ce3a54319bb5e9242391a2640334fd0..179ce4b766a520e77c960b3196363fe3bd4524e3 100644
--- a/src/uncategorized/newGamePlus.tw
+++ b/src/uncategorized/newGamePlus.tw
@@ -1,6 +1,6 @@
 :: New Game Plus [nobr]
 
-<<set $ui = "start">> <<unset $Flag>>
+<<set $ui = "start">> <<unset $SlaveSummaryFiler>>
 
 <<if ndef $slavesToImport>><<set $slavesToImport = 0>><</if>>
 <<if ndef $slavesToImportMax>><<set $slavesToImportMax = 5>><</if>>
@@ -70,7 +70,7 @@ Select up to $slavesToImportMax slaves to be imported into a new game and then c
 			<<if $slavesToImport >= $slavesToImportMax>>
 				//Current slave import capacity exceded.//
 			<</if>>
-			<<set $Flag = 1>> <<include "Slave Summary">>
+			<<set $SlaveSummaryFiler = "occupying">> <<include "Slave Summary">>
 		<</if>>
 	</div>
 </div>
@@ -81,7 +81,7 @@ Select up to $slavesToImportMax slaves to be imported into a new game and then c
 		<<else>>
 			<<if $slaves.length > $slavesToImport>>
 				''These slaves are available to be imported into the new game:''
-				<<set $Flag = 0>> <<include "Slave Summary">>
+				<<set $SlaveSummaryFiler = "assignable">> <<include "Slave Summary">>
 			<</if>>
 		<</if>>
 	</div>
diff --git a/src/uncategorized/pit.tw b/src/uncategorized/pit.tw
index ca941710bea2e80d80d3a1bdbb2ff10f9042612e..e8a3332ad6807ea6af78a10f5f55d6b8c9dd15bc 100644
--- a/src/uncategorized/pit.tw
+++ b/src/uncategorized/pit.tw
@@ -343,7 +343,7 @@ $pitNameCaps is clean and ready,
 <div id="remove" class="tabcontent">
 	<div class="content">
 		<<if _DL > 0>>
-			<<set $Flag = 1>>
+			<<set $SlaveSummaryFiler = "occupying">>
 			<<include "Slave Summary">>
 		<<else>>
 			<br><br>//$pitNameCaps is empty for the moment//
@@ -354,7 +354,7 @@ $pitNameCaps is clean and ready,
 <div id="assign" class="tabcontent">
 	<div class="content">
 		<<if (_SL > _DL)>>
-			<<set $Flag = 0>>
+			<<set $SlaveSummaryFiler = "assignable">>
 			<<include "Slave Summary">>
 		<</if>>
 	</div>
diff --git a/src/uncategorized/reDevotedMotherDaughter.tw b/src/uncategorized/reDevotedMotherDaughter.tw
index 3a668017f66130aa55ff2973ea653a3cd5e0f584..030e72642fc74a86e1b722529a7a17310e6f2a4c 100644
--- a/src/uncategorized/reDevotedMotherDaughter.tw
+++ b/src/uncategorized/reDevotedMotherDaughter.tw
@@ -33,7 +33,7 @@ $slaves[$i].slaveName and $his daughter $slaves[$j].slaveName are both good slav
 <span id="result">
 <br><<link "Spend the night sharing your bed with them, and each of them with the other">>
 	<<replace "#result">>
-	Neither of them bats an eye when you announce you're turning in early and that they'll be joining you. Since they're already naked, they get into your big soft bed before you and lie facing each other, with enough room in between them for you to take a central position. They clearly assume you'll start with one of them on each side of you, so they're quite surprised when you slide in behind $slaves[$i].slaveName instead. $slaves[$j].slaveName snuggles up to _his2 mother happily enough, however. You extend the foreplay to hours, eventually bringing both of them to such a state of naked arousal that they begin grinding against each other as much as they do you. They get the idea, and things turn into a sort of unspoken mutual one-upmanship between them. What starts with $slaves[$j].slaveName clearly feeling very daring as _he2 sucks _his2 mother's nipple ends with $slaves[$i].slaveName lying on $his back getting fucked by you while $he orally pleasures $slaves[$j].slaveName. You're face to face with $slaves[$j].slaveName and _he2 groans happily into your mouth as $slaves[$i].slaveName moans into _his2 fuckhole.
+	Neither of them bats an eye when you announce you're turning in early and that they'll be joining you. Since they're already naked, they get into your big soft bed before you and lie facing each other, with enough room in between them for you to take a central position. They clearly assume you'll start with one of them on each side of you, so they're quite surprised when you slide in behind $slaves[$i].slaveName instead. $slaves[$j].slaveName snuggles up to _his2 mother happily enough, however. You extend the foreplay for hours, eventually bringing both of them to such a state of naked arousal that they begin grinding against each other as much as they do you. They get the idea, and things turn into a sort of unspoken mutual one-upmanship between them. What starts with $slaves[$j].slaveName clearly feeling very daring as _he2 sucks _his2 mother's nipple ends with $slaves[$i].slaveName lying on $his back getting fucked by you while $he orally pleasures $slaves[$j].slaveName. You're face to face with $slaves[$j].slaveName and _he2 groans happily into your mouth as $slaves[$i].slaveName moans into _his2 fuckhole.
 	@@.mediumaquamarine;They have both become more trusting of you.@@
 
 	<<set $slaves[$i].trust += 4, $slaves[$j].trust += 4, $slaves[$i].counter.oral += 1, $slaves[$j].counter.oral += 1, $oralTotal += 2>>
diff --git a/src/uncategorized/rulesSlaveExclude.tw b/src/uncategorized/rulesSlaveExclude.tw
index 3bda3fbbe8e85595d0a240438868031231cd0a27..50ff00c308ea639e7445b88fd6a79b8aba140590 100644
--- a/src/uncategorized/rulesSlaveExclude.tw
+++ b/src/uncategorized/rulesSlaveExclude.tw
@@ -7,15 +7,15 @@
 <</if>>
 
 <<if ($currentRule.excludedSlaves.length < 1)>>
-	<<set $Flag = 0>>
+	<<set $SlaveSummaryFiler = "assignable">>
 	Select slaves to exclude from Rule $r:
 	<<include "Slave Summary">>
 <<else>>
 	Slaves currently excluded from Rule $r: [[Clear list|Rules Slave Exclude][$currentRule.excludedSlaves = []]]
-	<<set $Flag = 1>>
+	<<set $SlaveSummaryFiler = "occupying">>
 	<<include "Slave Summary">>
 	<br><br>
 	Select more slaves to exclude from Rule $r:
-	<<set $Flag = 0>>
+	<<set $SlaveSummaryFiler = "assignable">>
 	<<include "Slave Summary">>
 <</if>>
diff --git a/src/uncategorized/rulesSlaveSelect.tw b/src/uncategorized/rulesSlaveSelect.tw
index 4f234f4a0790886558cb52525bd6877576724c84..ded8c3ef46ca23f4ef1eb37fbfdd57d2955c2c5a 100644
--- a/src/uncategorized/rulesSlaveSelect.tw
+++ b/src/uncategorized/rulesSlaveSelect.tw
@@ -7,15 +7,15 @@
 <</if>>
 
 <<if ($currentRule.selectedSlaves.length < 1)>>
-	<<set $Flag = 0>>
+	<<set $SlaveSummaryFiler = "assignable">>
 	Choose specific slaves to limit Rule $r:
 	<<include "Slave Summary">>
 <<else>>
 	Rule $r currently limited to specific slaves: [[Clear list|Rules Slave Select][$currentRule.selectedSlaves = []]]
-	<<set $Flag = 1>>
+	<<set $SlaveSummaryFiler = "occupying">>
 	<<include "Slave Summary">>
 	<br><br>
 	Choose more specific slaves:
-	<<set $Flag = 0>>
+	<<set $SlaveSummaryFiler = "assignable">>
 	<<include "Slave Summary">>
 <</if>>
diff --git a/src/uncategorized/schoolroom.tw b/src/uncategorized/schoolroom.tw
index 0e5804136ef95699c49b6252bc64248b04d3a29f..a1b75e32d5ed0ee10b30adf3535d429530eaa6a7 100644
--- a/src/uncategorized/schoolroom.tw
+++ b/src/uncategorized/schoolroom.tw
@@ -117,7 +117,7 @@ $schoolroomNameCaps is well-equipped, with wallscreens to display lessons. These
 
 <br><br>
 <<if $Schoolteacher != 0>>
-	<<set $Flag = 2>>
+	<<set $SlaveSummaryFiler = "leading">>
 	<<include "Slave Summary">>
 <<else>>
 	You do not have a slave serving as a Schoolteacher. [[Appoint one|Schoolteacher Select]]
@@ -129,13 +129,14 @@ $schoolroomNameCaps is well-equipped, with wallscreens to display lessons. These
 <div class="tab">
 	<button class="tablinks" onclick="opentab(event, 'assign')" id="tab assign">Assign a slave</button>
 	<button class="tablinks" onclick="opentab(event, 'remove')" id="tab remove">Remove a slave</button>
+	<button class="tablinks" onclick="opentab(event, 'transfer')" id="tab transfer">Transfer from Facility</button>
 </div>
 
 <div id="remove" class="tabcontent">
 	<div class="content">
 		<<if $schoolroomSlaves > 0>>
 			<<schoolAssignmentFilter>>
-			<<set $Flag = 1>>
+			<<set $SlaveSummaryFiler = "occupying">>
 			<<include "Slave Summary">>
 			<<resetAssignmentFilter>>
 		<<else>>
@@ -150,7 +151,19 @@ $schoolroomNameCaps is well-equipped, with wallscreens to display lessons. These
 			''$schoolroomNameCaps is full and cannot hold any more slaves''
 		<<elseif ($slaves.length > $schoolroomSlaves)>>
 			<<resetAssignmentFilter>>
-			<<set $Flag = 0>>
+			<<set $SlaveSummaryFiler = "assignable">>
+			<<include "Slave Summary">>
+		<</if>>
+	</div>
+</div>
+
+<div id="transfer" class="tabcontent">
+	<div class="content">
+		<<if ($schoolroom <= $schoolroomSlaves)>>
+			''$schoolroomNameCaps is full and cannot hold any more slaves''
+		<<elseif ($slaves.length > $schoolroomSlaves)>>
+			<<resetAssignmentFilter>>
+			<<set $SlaveSummaryFiler = "transferable">>
 			<<include "Slave Summary">>
 		<</if>>
 	</div>
@@ -158,8 +171,10 @@ $schoolroomNameCaps is well-equipped, with wallscreens to display lessons. These
 
 <<if ($tabChoice.Schoolroom == "assign")>>
 	<script>document.getElementById("tab assign").click();</script>
-<<else>>
+<<elseif ($tabChoice.Schoolroom == "remove")>>
 	<script>document.getElementById("tab remove").click();</script>
+<<elseif ($tabChoice.Schoolroom == "transfer")>>
+	<script>document.getElementById("tab transfer").click();</script>
 <</if>>
 
 </body>
diff --git a/src/uncategorized/servantsQuarters.tw b/src/uncategorized/servantsQuarters.tw
index 879198bd2f3271393da4ca480ed601f30e6406c8..ae1fbcc51cb4d0f161ef216133d6275a8d734b43 100644
--- a/src/uncategorized/servantsQuarters.tw
+++ b/src/uncategorized/servantsQuarters.tw
@@ -105,7 +105,7 @@ $servantsQuartersNameCaps
 <br><br>
 <<if $Stewardess != 0>>
 	<<setLocalPronouns $Stewardess>>
-	<<set $Flag = 2>>
+	<<set $SlaveSummaryFiler = "leading">>
 	<<include "Slave Summary">>
 	<<if canAchieveErection($Stewardess) && $Stewardess.pubertyXY == 1>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
@@ -132,7 +132,7 @@ $servantsQuartersNameCaps
 	<div class="content">
 		<<if $servantsQuartersSlaves > 0>>
 			<<quartersAssignmentFilter>>
-			<<set $Flag = 1>>
+			<<set $SlaveSummaryFiler = "occupying">>
 			<<include "Slave Summary">>
 			<<resetAssignmentFilter>>
 		<<else>>
@@ -147,7 +147,7 @@ $servantsQuartersNameCaps
 			''$servantsQuartersNameCaps is full and cannot hold any more slaves''
 		<<elseif ($slaves.length > $servantsQuartersSlaves)>>
 			<<resetAssignmentFilter>>
-			<<set $Flag = 0>>
+			<<set $SlaveSummaryFiler = "assignable">>
 			<<include "Slave Summary">>
 		<</if>>
 	</div>
diff --git a/src/uncategorized/spa.tw b/src/uncategorized/spa.tw
index 365de16c72667fb97e74655092b5a2370d7226bb..1c7e28ba55915ba469c9194c1af4687cdfb4e805 100644
--- a/src/uncategorized/spa.tw
+++ b/src/uncategorized/spa.tw
@@ -119,7 +119,7 @@ $spaNameCaps
 
 <br><br>
 <<if $Attendant != 0>>
-	<<set $Flag = 2>>
+	<<set $SlaveSummaryFiler = "leading">>
 	<<include "Slave Summary">>
 <<else>>
 	You do not have a slave serving as a spa Attendant. [[Appoint one|Attendant Select]]
@@ -133,13 +133,14 @@ $spaNameCaps
 <div class="tab">
 	<button class="tablinks" onclick="opentab(event, 'assign')" id="tab assign">Assign a slave</button>
 	<button class="tablinks" onclick="opentab(event, 'remove')" id="tab remove">Remove a slave</button>
+	<button class="tablinks" onclick="opentab(event, 'transfer')" id="tab transfer">Transfer from Facility</button>
 </div>
 
 <div id="remove" class="tabcontent">
 	<div class="content">
 		<<if $spaSlaves > 0>>
 			<<spaAssignmentFilter>>
-			<<set $Flag = 1>>
+			<<set $SlaveSummaryFiler = "occupying">>
 			<<include "Slave Summary">>
 			<<resetAssignmentFilter>>
 		<<else>>
@@ -154,7 +155,19 @@ $spaNameCaps
 			''$spaNameCaps is full and cannot hold any more slaves''
 		<<elseif ($slaves.length > $spaSlaves)>>
 			<<resetAssignmentFilter>>
-			<<set $Flag = 0>>
+			<<set $SlaveSummaryFiler = "assignable">>
+			<<include "Slave Summary">>
+		<</if>>
+	</div>
+</div>
+
+<div id="transfer" class="tabcontent">
+	<div class="content">
+		<<if ($spa <= $spaSlaves)>>
+			''$spaNameCaps is full and cannot hold any more slaves''
+		<<elseif ($slaves.length > $spaSlaves)>>
+			<<resetAssignmentFilter>>
+			<<set $SlaveSummaryFiler = "transferable">>
 			<<include "Slave Summary">>
 		<</if>>
 	</div>
@@ -162,8 +175,10 @@ $spaNameCaps
 
 <<if ($tabChoice.Spa == "assign")>>
 	<script>document.getElementById("tab assign").click();</script>
-<<else>>
+<<elseif ($tabChoice.Spa == "remove")>>
 	<script>document.getElementById("tab remove").click();</script>
+<<elseif ($tabChoice.Spa == "transfer")>>
+	<script>document.getElementById("tab transfer").click();</script>
 <</if>>
 
 </body>