diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt
index b8edea253945495aa399a77d5a71effb03553f67..0f4b9889598876e83a0869be16ec9e83aac3a002 100644
--- a/slave variables documentation - Pregmod.txt	
+++ b/slave variables documentation - Pregmod.txt	
@@ -1351,15 +1351,18 @@ does the slave have a prosate?
 balls:*
 
 ball size
-0  - none
-1  - vestigal
-2  - small
-3  - average
-4  - big
-5  - huge
-6  - enormous
-7+ - hypertrophied
-
+0   - none
+1   - vestigal
+2   - small
+3   - average
+4   - large
+5   - massive
+6   - huge
+7   - giant
+8   - enormous
+9   - monstrous
+10  - inhuman
+11+ - hypertrophied
 
 scrotum:*
 
diff --git a/src/cheats/mod_EditSlaveCheat.tw b/src/cheats/mod_EditSlaveCheat.tw
index 9db305d68c2d13a809e77ad71f6df26bc5aea43e..91762e7412a4f5d8f3368f2214d7fc3a66e595c4 100644
--- a/src/cheats/mod_EditSlaveCheat.tw
+++ b/src/cheats/mod_EditSlaveCheat.tw
@@ -800,7 +800,7 @@ Monstrous.
 <<radiobutton "$activeSlave.dick" 7>> More Huge
 <<radiobutton "$activeSlave.dick" 8>> Enormous
 <<radiobutton "$activeSlave.dick" 9>> Monstrous
-<<radiobutton "$activeSlave.dick" 10>> Big McLargeHuge? I don't know. How many sizes are there?!?!?!
+<<radiobutton "$activeSlave.dick" 10>> Big McLargeHuge
 
 <br>
 ''Foreskin (0 to 5):''
@@ -844,8 +844,12 @@ Titanic.
 <<radiobutton "$activeSlave.balls" 2>> Small
 <<radiobutton "$activeSlave.balls" 3>> Normal
 <<radiobutton "$activeSlave.balls" 4>> Large
-<<radiobutton "$activeSlave.balls" 5>> Huge
-<<radiobutton "$activeSlave.balls" 6>> Titanic
+<<radiobutton "$activeSlave.balls" 5>> Massive
+<<radiobutton "$activeSlave.balls" 6>> Huge
+<<radiobutton "$activeSlave.balls" 7>> More Huge
+<<radiobutton "$activeSlave.balls" 8>> Enormous
+<<radiobutton "$activeSlave.balls" 9>> Monstrous
+<<radiobutton "$activeSlave.balls" 10>> Big McLargeHuge
 
 <br>
 
@@ -893,74 +897,6 @@ Monstrous.
 
 <br><br>
 
-<br>
-
-''Oral sex (0 to 100):''
-<<if $activeSlave.oralSkill <= 10>>
-Unskilled.
-<<elseif $activeSlave.oralSkill <= 30>>
-@@.cyan;Basic.@@
-<<elseif $activeSlave.oralSkill <= 60>>
-@@.cyan;Skilled.@@
-<<elseif $activeSlave.oralSkill < 100>>
-@@.cyan;Expert.@@
-<<else>>
-@@.cyan;Masterful.@@
-<</if>>
-<<textbox "$activeSlave.oralSkill" $activeSlave.oralSkill>>
-<br>
-<<radiobutton "$activeSlave.oralSkill" 0>> Unskilled
-<<radiobutton "$activeSlave.oralSkill" 15>> Basic
-<<radiobutton "$activeSlave.oralSkill" 35>> Skilled
-<<radiobutton "$activeSlave.oralSkill" 65>> Expert
-<<radiobutton "$activeSlave.oralSkill" 100>> Masterful
-
-<<if $activeSlave.vagina > -1>>
-<br>
-
-''Vaginal sex (0 to 100):''
-<<if $activeSlave.vaginalSkill <= 10>>
-Unskilled.
-<<elseif $activeSlave.vaginalSkill <= 30>>
-@@.cyan;Basic.@@
-<<elseif $activeSlave.vaginalSkill <= 60>>
-@@.cyan;Skilled.@@
-<<elseif $activeSlave.vaginalSkill < 100>>
-@@.cyan;Expert.@@
-<<else>>
-@@.cyan;Masterful.@@
-<</if>>
-<<textbox "$activeSlave.vaginalSkill" $activeSlave.vaginalSkill>>
-<br>
-<<radiobutton "$activeSlave.vaginalSkill" 0>> Unskilled
-<<radiobutton "$activeSlave.vaginalSkill" 15>> Basic
-<<radiobutton "$activeSlave.vaginalSkill" 35>> Skilled
-<<radiobutton "$activeSlave.vaginalSkill" 65>> Expert
-<<radiobutton "$activeSlave.vaginalSkill" 100>> Masterful
-<</if>>
-
-<br>
-
-''Anal sex (0 to 100):''
-<<if $activeSlave.analSkill <= 10>>
-Unskilled.
-<<elseif $activeSlave.analSkill <= 30>>
-@@.cyan;Basic.@@
-<<elseif $activeSlave.analSkill <= 60>>
-@@.cyan;Skilled.@@
-<<elseif $activeSlave.analSkill < 100>>
-@@.cyan;Expert.@@
-<<else>>
-@@.cyan;Masterful.@@
-<</if>>
-<<textbox "$activeSlave.analSkill" $activeSlave.analSkill>>
-<br>
-<<radiobutton "$activeSlave.analSkill" 0>> Unskilled
-<<radiobutton "$activeSlave.analSkill" 15>> Basic
-<<radiobutton "$activeSlave.analSkill" 35>> Skilled
-<<radiobutton "$activeSlave.analSkill" 65>> Expert
-<<radiobutton "$activeSlave.analSkill" 100>> Masterful
-
 ''Prostitution (0 to 100):''
 <<if $activeSlave.whoreSkill <= 10>>
 Unskilled.
diff --git a/src/js/economyJS.tw b/src/js/economyJS.tw
index f3359a4bc55607bfb13eb89b57e492bcd170738c..0d80f3c45d7a67f31f7334bdbd4942a721fc01d1 100644
--- a/src/js/economyJS.tw
+++ b/src/js/economyJS.tw
@@ -306,7 +306,7 @@ window.getSlaveCost = function(s) {
 	}
 	
 	// Accessibility costs
-	if(State.variables.boobAccessibility !== 1 && s.boobs > 7500
+	if(State.variables.boobAccessibility !== 1 && s.boobs > 20000
 		&& (s.assignment != Job.DAIRY || State.variables.dairyRestraintsSetting < 2) && (s.assignment != Job.ARCADE)) {
 		cost += 50;
 	}
diff --git a/src/js/storyJS.tw b/src/js/storyJS.tw
index 6d8cac652128ee62ee5b65af3904f7f04cc16ce7..b5c0af7b38347ba5c86d76a83b100896063b3234 100644
--- a/src/js/storyJS.tw
+++ b/src/js/storyJS.tw
@@ -573,13 +573,13 @@ window.tooFatSlave = function(slave){
 window.tooBigBreasts = function(slave){
 	if (!slave) {
 		return null;
-	} else if (slave.boobs > 9000+(slave.muscles*100) && slave.physicalAge >= 18) {
+	} else if (slave.boobs > 30000+(slave.muscles*100) && slave.physicalAge >= 18) {
 		return true;
 	} else if (slave.boobs > 5000+(slave.muscles*10) && slave.physicalAge <= 3) {
 		return true;
-	} else if (slave.boobs > 7000+(slave.muscles*20) && slave.physicalAge <= 12) {
+	} else if (slave.boobs > 10000+(slave.muscles*20) && slave.physicalAge <= 12) {
 		return true;
-	} else if (slave.boobs > 9000+(slave.muscles*50) && slave.physicalAge < 18) {
+	} else if (slave.boobs > 20000+(slave.muscles*50) && slave.physicalAge < 18) {
 		return true;
 	} else {
 		return false;
@@ -805,8 +805,10 @@ window.milkAmount = function(slave) {
 		return null;
 	} else {
 		calcs = slave.boobs-slave.boobsImplant
-		if (calcs > 20000) {
-			milk = (118+((calcs-20000)/400))
+		if (calcs > 40000) {
+			milk = (158+((calcs-10000)/600))
+		} else if (calcs > 25000) {
+			milk = (128+((calcs-10000)/500))
 		} else if (calcs > 10000) {
 			milk = (78+((calcs-10000)/300))
 		} else if (calcs > 5000) {
diff --git a/src/npc/startingGirls/commitStartingGirl.tw b/src/npc/startingGirls/commitStartingGirl.tw
index 69ea207151d00a2cf4c4ec52f197083d2650df85..987c0c92e39d68d4d3f76d1f2a8e8f324a683ce7 100644
--- a/src/npc/startingGirls/commitStartingGirl.tw
+++ b/src/npc/startingGirls/commitStartingGirl.tw
@@ -10,7 +10,7 @@
 	<<set $PC.slavesKnockedUp++>>
 <</if>>
 <<set $activeSlave.height = Math.clamp($activeSlave.height, 85, 274) || 140>>
-<<set $activeSlave.boobs = Math.clamp(Math.trunc($activeSlave.boobs/50)*50, 0, 25000) || 200>>
+<<set $activeSlave.boobs = Math.clamp(Math.trunc($activeSlave.boobs/50)*50, 0, 50000) || 200>>
 <<set $activeSlave.origSkin = $activeSlave.skin>>
 
 <<set $careerBonusApplied = 0>>
diff --git a/src/npc/startingGirls/startingGirls.tw b/src/npc/startingGirls/startingGirls.tw
index abff3e3bf486277c0b02d5746ebf81a67e72323d..005030776d1e046226b6312916c3799139576b96 100644
--- a/src/npc/startingGirls/startingGirls.tw
+++ b/src/npc/startingGirls/startingGirls.tw
@@ -347,7 +347,7 @@ __You are customizing this slave:__
 	<<set $activeSlave.indenture = Math.clamp($activeSlave.indenture, 26, 208)>>
 <</if>>
 <<set $activeSlave.height = Math.clamp($activeSlave.height, 85, 274) || 140>>
-<<set $activeSlave.boobs = Math.clamp(Math.trunc($activeSlave.boobs/50)*50, 0, 25000) || 200>>
+<<set $activeSlave.boobs = Math.clamp(Math.trunc($activeSlave.boobs/50)*50, 0, 50000) || 200>>
 <<set $activeSlave.visualAge = $activeSlave.actualAge>>
 <<set $activeSlave.physicalAge = $activeSlave.actualAge>>
 <<set $activeSlave.canRecruit = 0>>
@@ -931,7 +931,8 @@ Her nationality is $activeSlave.nationality.
 	<<elseif $activeSlave.dick == 2>>Small.
 	<<elseif $activeSlave.dick == 3>>Normal.
 	<<elseif $activeSlave.dick == 4>>Large.
-	<<else>>Massive.<</if>>
+	<<elseif $activeSlave.dick == 5>>Massive.
+	<<else>>Inhuman.<</if>>
 	</span>
 	<<link "No penis">><<set $activeSlave.dick = 0,$activeSlave.balls = 0,$activeSlave.clit = 0,$activeSlave.pubertyXY = 0,$activeSlave.pubertyAgeXY = $potencyAge>><<replace "#dick">>None.<</replace>><<StartingGirlsCost>><</link>> |
 	<<link "Tiny">><<set $activeSlave.dick = 1,$activeSlave.clit = 0>><<replace "#dick">>Tiny.<</replace>><<StartingGirlsCost>><</link>> |
@@ -963,7 +964,8 @@ Her nationality is $activeSlave.nationality.
 	<<elseif $activeSlave.balls == 2>>Small.
 	<<elseif $activeSlave.balls == 3>>Normal.
 	<<elseif $activeSlave.balls == 4>>Large.
-	<<else>>Massive.<</if>>
+	<<elseif $activeSlave.balls == 5>>Massive.
+	<<else>>Inhuman.<</if>>
 	</span>
 	<<link "No testicles">><<set $activeSlave.balls = 0,$activeSlave.pubertyXY = 0,$activeSlave.pubertyAgeXY = $potencyAge>><<replace "#balls">>None.<</replace>><<StartingGirlsCost>><</link>> |
 	<<link "Vestigial">><<set $activeSlave.balls = 1>><<replace "#balls">>Vestigial.<</replace>><<StartingGirlsCost>><</link>> |
@@ -980,7 +982,8 @@ Her nationality is $activeSlave.nationality.
 		<<elseif $activeSlave.scrotum == 2>>Small.
 		<<elseif $activeSlave.scrotum == 3>>Normal.
 		<<elseif $activeSlave.scrotum == 4>>Large.
-		<<else>>Massive.<</if>>
+		<<elseif $activeSlave.scrotum == 5>>Massive.
+		<<else>>Inhuman.<</if>>
 		</span>
 		<<link "None">><<set $activeSlave.scrotum = 0>><<replace "#scrotum">>None.<</replace>><<StartingGirlsCost>><</link>> |
 		<<link "Tiny">><<set $activeSlave.scrotum = 1>><<replace "#scrotum">>Tiny.<</replace>><<StartingGirlsCost>><</link>> |
@@ -1332,7 +1335,7 @@ Her nationality is $activeSlave.nationality.
 		<<set $activeSlave.indenture = Math.clamp($activeSlave.indenture, 26, 208) || 26>>
 	<</if>>
 	<<set $activeSlave.height = Math.clamp($activeSlave.height, 85, 274) || 140>>
-	<<set $activeSlave.boobs = Math.clamp(Math.trunc($activeSlave.boobs/50)*50, 0, 25000) || 200>>
+	<<set $activeSlave.boobs = Math.clamp(Math.trunc($activeSlave.boobs/50)*50, 0, 50000) || 200>>
 	<<set $slaveWithoutBonuses = $activeSlave>>
 	<<if $PC.career != "engineer">>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
diff --git a/src/pregmod/incubatorReport.tw b/src/pregmod/incubatorReport.tw
index 9685be3d5b5e3bd0d7f366580cf382f20e327378..c979e46c56c7aedfea40133384adb71d650629cc 100644
--- a/src/pregmod/incubatorReport.tw
+++ b/src/pregmod/incubatorReport.tw
@@ -592,7 +592,7 @@
 	<<set $tanks[_inc].dick = Math.clamp($tanks[_inc].dick, 0, 10)>>
 	<<set $tanks[_inc].hips = Math.clamp($tanks[_inc].hips, -2, 2)>>
 	<<set $tanks[_inc].balls = Math.clamp($tanks[_inc].balls, 0, 40)>>
-	<<set $tanks[_inc].boobs = Math.clamp($tanks[_inc].boobs, 0, 10000)>>
+	<<set $tanks[_inc].boobs = Math.clamp($tanks[_inc].boobs, 0, 30000)>>
 <br>
 <</for>>
 /*
diff --git a/src/pregmod/widgets/slaveSummaryWidgets.tw b/src/pregmod/widgets/slaveSummaryWidgets.tw
index 2d1ad7a48cc7a80a7ea22ae92e44598de117f0eb..dfbaf51662e65c08e904de37c949dd56c21e4d62 100644
--- a/src/pregmod/widgets/slaveSummaryWidgets.tw
+++ b/src/pregmod/widgets/slaveSummaryWidgets.tw
@@ -916,7 +916,7 @@ Release rules: _Slave.releaseRules.
 <<if _Slave.balls == 0>>
 	Geld
 <</if>>
-<<if (_Slave.dick > 8) && (_Slave.balls > 5)>>
+<<if (_Slave.dick > 8) && (_Slave.balls > 8)>>
 	Junk+++
 <<elseif (_Slave.dick > 5) && (_Slave.balls > 5)>>
 	Junk++
@@ -972,7 +972,7 @@ Release rules: _Slave.releaseRules.
 <<if _Slave.balls == 0>>
 	Gelded.
 <</if>>
-<<if (_Slave.dick > 8) && (_Slave.balls > 5)>>
+<<if (_Slave.dick > 8) && (_Slave.balls > 8)>>
 	Hyper dick & balls.
 <<elseif (_Slave.dick > 5) && (_Slave.balls > 5)>>
 	Monster dick & balls.
@@ -988,6 +988,8 @@ Release rules: _Slave.releaseRules.
 	Huge dick.
 <<elseif _Slave.dick > 3>>
 	Big dick.
+<<elseif _Slave.balls > 8>>
+	Hyper balls.
 <<elseif _Slave.balls > 5>>
 	Monstrous balls.
 <<elseif _Slave.balls > 4>>
@@ -1153,7 +1155,7 @@ Release rules: _Slave.releaseRules.
 	<</if>>
 <</if>>
 @@.pink;
-<<if (_Slave.boobs >= 10000) && (_Slave.butt > 9)>>
+<<if (_Slave.boobs >= 12000) && (_Slave.butt > 9)>>
 	T&A+++
 <<elseif (_Slave.boobs > 4000) && (_Slave.butt > 8)>>
 	T&A++
@@ -1163,7 +1165,7 @@ Release rules: _Slave.releaseRules.
 	T&A
 <<elseif (_Slave.boobs < 500) && (_Slave.butt < 3) && (_Slave.weight <= 10) && (_Slave.muscles <= 30)>>
 	Girlish
-<<elseif _Slave.boobs >= 10000>>
+<<elseif _Slave.boobs >= 12000>>
 	Boobs+++
 <<elseif _Slave.boobs > 4000>>
 	Boobs++
@@ -1379,7 +1381,7 @@ _Slave.faceShape face.
 	<</if>>
 <</if>>
 @@.pink;
-<<if (_Slave.boobs >= 10000) && (_Slave.butt > 9)>>
+<<if (_Slave.boobs >= 12000) && (_Slave.butt > 9)>>
 	Hyper T&A.
 <<elseif (_Slave.boobs > 4000) && (_Slave.butt > 8)>>
 	Enormous T&A.
@@ -1389,7 +1391,7 @@ _Slave.faceShape face.
 	Big T&A.
 <<elseif (_Slave.boobs < 500) && (_Slave.butt < 3) && (_Slave.weight <= 10) && (_Slave.muscles <= 30)>>
 	Girlish figure.
-<<elseif _Slave.boobs >= 10000>>
+<<elseif _Slave.boobs >= 12000>>
 	Immobilizing tits.
 <<elseif _Slave.boobs > 4000>>
 	Monstrous tits.
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index 8ce679a7b77a5fd8a51eb09a51e2207df9fee022..bfd45806f6764e6294bf2050b23752c9f04b0334 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -1238,7 +1238,7 @@ When you return, the comfortably nude $desc is flirting shamelessly with $assist
   "You're <<if SlaveStatsChecker.checkForLisp($activeSlave) == true>>tho tiny and adorable," the slave lisps. "You're a load of fun to be with."<<else>>so tiny and adorable," the slave says.  "You're a load of fun to be with."<</if>>
   <br><br>
   $assistantName giggles and holds her hands up to her face. "Aw shucks, you're just saying that." she says shyly. "You're quite the cutie yourself!" She moves one hand down to caress her belly.
-<<case "schoolgirl" "churub">>
+<<case "schoolgirl" "cherub">>
   "You're <<if SlaveStatsChecker.checkForLisp($activeSlave)>>tho cute," the slave lisps. "It maketh thingth<<else>>so cute," the slave lisps. "It makes things<</if>> fun."
   <br><br>
   $assistantName looks touched. "Aw," she coos, "I love you too!"
@@ -1261,11 +1261,11 @@ When you return, the comfortably nude $desc is flirting shamelessly with $assist
 <<case "incubus">>
 	"You're <<s>>o <<s>>exy," the slave <<say>>s. "I can't help be feel <<s>>o hot around you."
 	<br><br>
-	$assistantName breams proudly. "What kind of sex demon would I be if I couldn't turn you on?"
+	$assistantName beams proudly. "What kind of sex demon would I be if I couldn't turn you on?"
 <<case "succubus">>
 	"You're <<s>>o <<s>>exy," the slave <<say>>s. "I can't help be feel <<s>>o hot around you."
 	<br><br>
-	$assistantName breams proudly. "What kind of sex demoness would I be if I couldn't turn you on?"
+	$assistantName beams proudly. "What kind of sex demoness would I be if I couldn't turn you on?"
 <<case "imp">>
 	"You're <<s>>o cute," the slave <<say>>s. "It make<<s>> you fun."
 	<br><br>
@@ -1277,7 +1277,7 @@ When you return, the comfortably nude $desc is flirting shamelessly with $assist
 <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
 	"You're <<s>>o interested," the slave <<say>>s. "You alway<<s>> have <<s>>omething new to <<s>>how off."
 	<br><br>
-	$assistantName laughes. "I'll always find a way into your pants, so why bother trying to say no?"
+	$assistantName laughs. "I'll always find a way into your pants, so why bother trying to say no?"
 <</switch>>
 
 <<case "dick wringing">>
@@ -7571,7 +7571,7 @@ She's obviously @@.mediumaquamarine;becoming more comfortable@@ playing the part
 		<br><br>
 		"Oh noo, I'm going to get violated by a terrible witch,"
 	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		bredder?" she says eagerly, forming multiple cocks out of her body. "I'm going to fill you with eggs!"
+		nest?" she says eagerly, forming multiple cocks out of her body. "I'm going to fill you with eggs!"
 		<br><br>
 		"Oh noo, I'm going to be a nur<<s>>ery for a freak,"
 	<</switch>>
diff --git a/src/uncategorized/RESSTR.tw b/src/uncategorized/RESSTR.tw
index 303c8b53a3c023fff41a5ab3d7f17ac0fb3276a1..76cb23f6abf9f2e0cd5b060457380156aacfb777 100644
--- a/src/uncategorized/RESSTR.tw
+++ b/src/uncategorized/RESSTR.tw
@@ -100,7 +100,7 @@ You pass through your slaves' living area as some of them are starting their day
 <<else>>
 	climbed out of her comfortable bed.
 <</if>>
-It's time for her to start another strenuous day of carrying the weight of her <<if $activeSlave.boobs > 10000>>disproportionate<<elseif $activeSlave.boobs > 5000>>massive<<else>>heavy<</if>> <<if $activeSlave.boobsImplant>>implants<<elseif $activeSlave.lactation>>milk-bearing udders<<else>>natural breasts<</if>>. She can manage it <<if $activeSlave.muscles <= 10>>only with difficulty, since she's not in good shape<<elseif $activeSlave.boobs <= 5000+($activeSlave.muscles*100)>>with ease, since she's in good shape<<else>>with some difficulty, since they're so big<</if>>. Slaves with endowments like hers are trained to stretch, and since she's a good $desc, she does it as soon as she gets up. She's doing it now.
+It's time for her to start another strenuous day of carrying the weight of her <<if $activeSlave.boobs > 10000>>disproportionate<<elseif $activeSlave.boobs > 5000>>massive<<else>>heavy<</if>> <<if $activeSlave.boobsImplant>>implants<<elseif $activeSlave.lactation>>milk-bearing udders<<else>>natural breasts<</if>>. She can manage it <<if $activeSlave.muscles <= 10>>only with difficulty, since she's not in good shape<<elseif $activeSlave.boobs <= 20000+($activeSlave.muscles*100)>>with ease, since she's in good shape<<else>>with some difficulty, since they're so big<</if>>. Slaves with endowments like hers are trained to stretch, and since she's a good $desc, she does it as soon as she gets up. She's doing it now.
 <br><br>
 She kneels with her legs together, and then sits back, her <<if $activeSlave.buttImplant>>fake ass not changing shape at all as it rests on her heels<<elseif $activeSlave.butt > 6>>mass of assflesh extinguishing her feet completely<<elseif $activeSlave.butt > 2>>big butt resting heavily on her heels<<else>>cute butt resting lightly on her heels<</if>>. Then she reaches her arms back, and leans back, as far as she can go. She arches her spine, closing her eyes voluptuously as she enjoys the stretch in her lower back. The pose thrusts her chest up and out,
 <<if $activeSlave.boobsImplant*0.5 > $activeSlave.boobs>>
diff --git a/src/uncategorized/arcadeReport.tw b/src/uncategorized/arcadeReport.tw
index 996933d9b15f603b691abf62e89c71063e3ad984..5cc377ca823e28742cb6e85ee21b314ef31f1006 100644
--- a/src/uncategorized/arcadeReport.tw
+++ b/src/uncategorized/arcadeReport.tw
@@ -98,10 +98,10 @@
 			<<elseif ($slaves[$i].boobs < 10000)>>
 				<<set $slaves[$i].boobs += 25>>
 			<</if>>
-			<<if ($slaves[$i].balls > 0) && ($slaves[$i].balls < 6) && (random(1,100) > (40+(10*$slaves[$i].balls)))>>
+			<<if ($slaves[$i].balls > 0) && ($slaves[$i].balls < 10) && (random(1,100) > (40+(10*$slaves[$i].balls)))>>
 				<<set $slaves[$i].balls++>>
 			<</if>>
-			<<if ($slaves[$i].dick > 0) && ($slaves[$i].dick < 6) && (random(1,100) > (40+(10*$slaves[$i].dick)))>>
+			<<if ($slaves[$i].dick > 0) && ($slaves[$i].dick < 10) && (random(1,100) > (40+(10*$slaves[$i].dick)))>>
 				<<set $slaves[$i].dick++>>
 			<</if>>
 			<<if ($slaves[$i].lactation > 0)>>
diff --git a/src/uncategorized/costs.tw b/src/uncategorized/costs.tw
index 0eb9883d2db1b841669d264eedc3c57543e112bb..006cb8ef727b82b1003be48127420b7860a82940 100644
--- a/src/uncategorized/costs.tw
+++ b/src/uncategorized/costs.tw
@@ -113,7 +113,7 @@
 <</switch>>
 
 <<if $boobAccessibility != 1>>
-	<<if ($slaves[$i].boobs > 7500)>>
+	<<if ($slaves[$i].boobs > 20000)>>
 	<<if ($slaves[$i].assignment != "work in the dairy" || $dairyRestraintsSetting < 2) && ($slaves[$i].assignment != "be confined in the arcade")>>
 	<<set $costs += 50>>
 	<</if>>
diff --git a/src/uncategorized/costsReport.tw b/src/uncategorized/costsReport.tw
index d49d9a7c7fed6815b5c9d09d85efe293f30808eb..a76522903ba977133c218c734c0686d03bef053c 100644
--- a/src/uncategorized/costsReport.tw
+++ b/src/uncategorized/costsReport.tw
@@ -255,7 +255,7 @@
 		<<set $individualCosts += 50>>
 	<</switch>>
 	<<if $boobAccessibility != 1>>
-	<<if ($slaves[$i].boobs > 7500)>>
+	<<if ($slaves[$i].boobs > 20000)>>
 	<<if ($slaves[$i].assignment != "work in the dairy" || $dairyRestraintsSetting < 2) && ($slaves[$i].assignment != "be confined in the arcade")>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;Increased living expenses due to inconveniently huge boobs: ¤50
 		<<set $individualCosts += 50>>
diff --git a/src/uncategorized/dairyReport.tw b/src/uncategorized/dairyReport.tw
index d50abb939307891eb0c8aa93e0cbbf9df4f4a110..4e8532b06532aba2d2cd5888832943d2d09fe8d3 100644
--- a/src/uncategorized/dairyReport.tw
+++ b/src/uncategorized/dairyReport.tw
@@ -367,23 +367,24 @@
 			<<set $slaves[$i].health += 25>>
 		<<else>>
 			<<if ($dairySlimMaintain == 0)>>
-				<<if ($slaves[$i].boobs < 25000)>>
+				<<if $slaves[$i].boobs < 50000>>
 					<<if $arcologies[0].FSAssetExpansionistResearch == 1>>
 						<<if ($slaves[$i].boobs < 2000)>>
-							<<set $slaves[$i].boobs += 500>>
+							<<set _growth  = 75*Math.trunc(($injectionUpgrade*2)+$dairyFeedersSetting+$dairyRestraintsSetting+((50)/4))>>
 						<<elseif ($slaves[$i].boobs < 5000)>>
-							<<set $slaves[$i].boobs += 250>>
+							<<set _growth = 50*Math.trunc(($injectionUpgrade*2)+$dairyFeedersSetting+$dairyRestraintsSetting+((50)/4))>>
 						<<else>>
-							<<set $slaves[$i].boobs += 100>>
+							<<set _growth = 25*Math.trunc(($injectionUpgrade*2)+$dairyFeedersSetting+$dairyRestraintsSetting+((50)/4))>>
 						<</if>>
 					<<else>>
-						<<set $slaves[$i].boobs += 25*Math.trunc(($injectionUpgrade*2)+$dairyFeedersSetting+$dairyRestraintsSetting+((50-$slaves[$i].physicalAge)/4))>>
+						<<set _growth = 25*Math.trunc(($injectionUpgrade*2)+$dairyFeedersSetting+$dairyRestraintsSetting+((50-$slaves[$i].physicalAge)/4))>>
 					<</if>>
-					<<if ($slaves[$i].boobs > 14900) && ($slaves[$i].boobs < 15100)>>
+					<<if $slaves[$i].boobs <= 20000 && $slaves[$i].boobs+_growth > 20000>>
 						<<set _boobtacular++>>
 					<</if>>
+					<<set $slaves[$i].boobs += _growth>>
 				<<else>>
-					<<set $slaves[$i].boobs = 25000>>
+					<<set $slaves[$i].boobs = 50000>>
 				<</if>>
 			<</if>>
 			<<if ($slaves[$i].balls > 0)>>
@@ -394,11 +395,11 @@
 					<<if ($slaves[$i].balls == 125)>>
 						<<set _balltacular++>>
 					<</if>>
-				<<elseif ($slaves[$i].balls < 6)>>
+				<<elseif ($slaves[$i].balls < 10)>>
 					<<if (random(1,100) > (40+(10*$slaves[$i].dick)-(10*$dairyRestraintsSetting)-($injectionUpgrade*10)))>>
 						<<set $slaves[$i].balls++>>
 					<</if>>
-					<<if ($slaves[$i].balls == 6)>>
+					<<if ($slaves[$i].balls == 10)>>
 						<<set _balltacular++>>
 					<</if>>
 				<</if>>
@@ -424,23 +425,24 @@
 		<<if ($slaves[$i].health < 60)>>
 			<<set $slaves[$i].health += 20>>
 		<<elseif $dairySlimMaintain == 0>>
-			<<if ($slaves[$i].boobs < 25000)>>
+			<<if $slaves[$i].boobs < 50000>>
 				<<if $arcologies[0].FSAssetExpansionistResearch == 1>>
 					<<if ($slaves[$i].boobs < 2000)>>
-						<<set $slaves[$i].boobs += 500>>
+						<<set _growth  = 75*Math.trunc(($injectionUpgrade*2)+$dairyFeedersSetting+$dairyRestraintsSetting+((50)/4))>>
 					<<elseif ($slaves[$i].boobs < 5000)>>
-						<<set $slaves[$i].boobs += 250>>
+						<<set _growth = 50*Math.trunc(($injectionUpgrade*2)+$dairyFeedersSetting+$dairyRestraintsSetting+((50)/4))>>
 					<<else>>
-						<<set $slaves[$i].boobs += 100>>
+						<<set _growth = 25*Math.trunc(($injectionUpgrade*2)+$dairyFeedersSetting+$dairyRestraintsSetting+((50)/4))>>
 					<</if>>
 				<<else>>
-					<<set $slaves[$i].boobs += 25*Math.trunc(($injectionUpgrade*2)+$dairyStimulatorsSetting+$dairyRestraintsSetting+((50-$slaves[$i].physicalAge)/4))>>
+					<<set _growth = 25*Math.trunc(($injectionUpgrade*2)+$dairyFeedersSetting+$dairyRestraintsSetting+((50-$slaves[$i].physicalAge)/4))>>
 				<</if>>
-				<<if ($slaves[$i].boobs > 14900) && ($slaves[$i].boobs < 15100)>>
+				<<if $slaves[$i].boobs <= 20000 && $slaves[$i].boobs+_growth > 20000>>
 					<<set _boobtacular++>>
 				<</if>>
+				<<set $slaves[$i].boobs += _growth>>
 			<<else>>
-				<<set $slaves[$i].boobs = 25000>>
+				<<set $slaves[$i].boobs = 50000>>
 			<</if>>
 		<</if>>
 	<</if>>
@@ -450,7 +452,7 @@
 			<<set $slaves[$i].muscles-->>
 		<</if>>
 		<<if ($slaves[$i].fetish == "mindbroken")>>
-			<<if ($slaves[$i].boobs > 24800) && (($slaves[$i].balls > 5) || ($slaves[$i].balls == 0))>>
+			<<if ($slaves[$i].boobs > 48000) && (($slaves[$i].balls >= 10) || ($slaves[$i].balls == 0))>>
 				<<set $bioreactorPerfectedID = $slaves[$i].ID>>
 			<</if>>
 		<<else>>
diff --git a/src/uncategorized/freeRangeDairyAssignmentScene.tw b/src/uncategorized/freeRangeDairyAssignmentScene.tw
index 553f921a79c8083c4597ad4605dee48161a90df6..8faac676a82ba36acc6871985d68abaf2a6de565 100644
--- a/src/uncategorized/freeRangeDairyAssignmentScene.tw
+++ b/src/uncategorized/freeRangeDairyAssignmentScene.tw
@@ -33,7 +33,7 @@ While <<if canWalk($activeSlave) >>walking<<else>>being carried<</if>> to her de
     <</if>>
 
     <<for $i = 0; $i < $slaves.length; $i++>>
-        <<if $slaves[$i].assignment == "work in the dairy" && $slaves[$i].ID != $activeSlave.ID && $slaves[$i].balls > 5>>
+        <<if $slaves[$i].assignment == "work in the dairy" && $slaves[$i].ID != $activeSlave.ID && $slaves[$i].balls >= 10>>
             <<set $aroused = true>>
             <br> The hyper-endowed cum-cow $slaves[$i].slaveName is the pride of $dairyName. She is limply hanging on her milking chair, panting heavily because of the constant suction on her dick. She is obviously nearing climax. Soon, her eyes bulge and her muscles tense.
             <<if  $dairyStimulatorsSetting == 1>>
diff --git a/src/uncategorized/lawCompliance.tw b/src/uncategorized/lawCompliance.tw
index 6dc48d28c9321e52119791f17d1478e0cbcc2dc1..b7ab0a2009db85c1b1ba22735d32c81e7c2a9da1 100644
--- a/src/uncategorized/lawCompliance.tw
+++ b/src/uncategorized/lawCompliance.tw
@@ -33,10 +33,10 @@
 	<<set $activeSlave.butt += random(1,2)>>
 	<<set $activeSlave.lips = random(15,55)>>
 	<<if $activeSlave.dick > 0>>
-	<<set $activeSlave.dick = random(3,5)>>
+	<<set $activeSlave.dick = random(4,7)>>
 	<</if>>
 	<<if $activeSlave.balls > 0>>
-	<<set $activeSlave.balls = random(3,5)>>
+	<<set $activeSlave.balls = random(4,7)>>
 	<</if>>
 	She has been on powerful growth hormones for a long time, and has experienced growth in several areas as a result.
 <</if>>
diff --git a/src/uncategorized/pBioreactorPerfected.tw b/src/uncategorized/pBioreactorPerfected.tw
index 764796af466f972a1e4a344d8357c9bc8e205af0..088dda4ea2836cf4cfa14b19f78fded7036a4872 100644
--- a/src/uncategorized/pBioreactorPerfected.tw
+++ b/src/uncategorized/pBioreactorPerfected.tw
@@ -2,7 +2,7 @@
 
 <<set $nextButton = "Continue", $nextLink = "Random Nonindividual Event", $bioreactorsAnnounced = 1>>
 
-<<set $activeSlave = $slaves.find(function(s) { return s.assignment == "work in the dairy" && s.boobs > 24000 && (s.balls == 0 || s.balls > 5) && s.fetish == "mindbroken"; })>>
+<<set $activeSlave = $slaves.find(function(s) { return s.assignment == "work in the dairy" && s.boobs > 24000 && (s.balls == 0 || s.balls >= 10) && s.fetish == "mindbroken"; })>>
 
 <<if (ndef $activeSlave)>>
 	<<goto "Random Nonindividual Event">>
@@ -59,10 +59,10 @@ When you need peace and quiet to work through a difficult problem, you sometimes
 <<else>>
 	<<if $PC.title == 1>>"Sir,"<<else>>"Ma'am,"<</if>> she says, "I'd like to ask you something about this slave."
 <</if>>
-You stop and consider the cow, from her titanic breasts to her <<if ($activeSlave.balls > 5) && ($activeSlave.scrotum > 0)>>swollen balls<<elseif $activeSlave.vagina > -1>>slavering cunt<<else>>distended stomach<</if>> to her dildo-filled anus.
+You stop and consider the cow, from her titanic breasts to her <<if ($activeSlave.balls >= 10) && ($activeSlave.scrotum > 0)>>swollen balls<<elseif $activeSlave.vagina > -1>>slavering cunt<<else>>distended stomach<</if>> to her dildo-filled anus.
 <<if $assistant == 0>>
 	"This slave is permanently dependent on her milking machine," it continues. "She cannot be removed without uneconomical expenditures, and is unlikely to be useful elsewhere.
-	Additionally, there is nothing more that can be done to make her breasts any bigger<<if $activeSlave.balls > 5>> or her testicles any more productive<<elseif $activeSlave.ovaries == 1>> or her womb any more productive<</if>>. Her development is essentially final, and that status can be made official. She could be redesignated as equipment. Other than her designation, this would make little difference: the machine would be slightly less cautious with her drugs, future intubations, and such. She would be removed from the slave lists."
+	Additionally, there is nothing more that can be done to make her breasts any bigger<<if $activeSlave.balls >= 10>> or her testicles any more productive<<elseif $activeSlave.ovaries == 1>> or her womb any more productive<</if>>. Her development is essentially final, and that status can be made official. She could be redesignated as equipment. Other than her designation, this would make little difference: the machine would be slightly less cautious with her drugs, future intubations, and such. She would be removed from the slave lists."
 <<else>>
 	"She's never leaving here, not without surgery. And even then, she's forgotten almost everything, and she won't be getting it back."
 	<<switch $assistantAppearance>>
@@ -105,7 +105,7 @@ You stop and consider the cow, from her titanic breasts to her <<if ($activeSlav
 	<<default>>
 		The symbol on the screen dissolves down to create a gentle backlight behind the slave.
 	<</switch>>
-	"She's beautiful, isn't she? Perfect. There's nothing more that can be done, to make her udders any bigger<<if $activeSlave.balls > 5>> or her balls any more productive<<elseif $activeSlave.ovaries == 1>> or her womb any more productive<</if>>. She's complete, and she's part of this machine now, and that's all she'll ever be. I can make that status official, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. I'd redesignate her as equipment. It wouldn't change much, other than a designation. I'd just be a little less cautious with her drugs, future intubations, things like that. But for slave purposes, she'd be gone. Just a part of $dairyName, forever. Or, until she wears out in <<if $activeSlave.physicalAge > 38>>a few years<<elseif $activeSlave.physicalAge > 30>>a decade or so<<else>>a couple of decades<</if>>."
+	"She's beautiful, isn't she? Perfect. There's nothing more that can be done, to make her udders any bigger<<if $activeSlave.balls >= 10>> or her balls any more productive<<elseif $activeSlave.ovaries == 1>> or her womb any more productive<</if>>. She's complete, and she's part of this machine now, and that's all she'll ever be. I can make that status official, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. I'd redesignate her as equipment. It wouldn't change much, other than a designation. I'd just be a little less cautious with her drugs, future intubations, things like that. But for slave purposes, she'd be gone. Just a part of $dairyName, forever. Or, until she wears out in <<if $activeSlave.physicalAge > 38>>a few years<<elseif $activeSlave.physicalAge > 30>>a decade or so<<else>>a couple of decades<</if>>."
 <</if>>
 
 <br><br>
diff --git a/src/uncategorized/pRivalryActions.tw b/src/uncategorized/pRivalryActions.tw
index 9d23b4d59e42454a9325f7ecff552565c2296a54..4e6f3c10dc07140d4b4c164a2a065b97fccebbca 100644
--- a/src/uncategorized/pRivalryActions.tw
+++ b/src/uncategorized/pRivalryActions.tw
@@ -140,11 +140,11 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 	<<case "Body Purism">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
-		<<set $hostage.boobs += 1000>>
-		<<set $hostage.boobsImplant += 1000>>
+		<<set $hostage.boobs += 2000>>
+		<<set $hostage.boobsImplant += 2000>>
 		<<set $hostage.behavioralFlaw = "anorexic">>
 		<<set $hostage.sexualFlaw = "shamefast">>
-		struggling against her restraints on the operating table as a pair of 1000cc implants are inserted into her chest.
+		struggling against her restraints on the operating table as a pair of 2000cc implants are forced into her chest.
 	<<case "Transformation Fetishism">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -172,11 +172,11 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 	<<case "Slimness Enthusiasm">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
-		<<set $hostage.boobs += 1000>>
+		<<set $hostage.boobs += 1500>>
 		<<set $hostage.butt = 4>>
 		<<set $hostage.behavioralFlaw = "anorexic">>
 		<<set $hostage.sexualFlaw = "crude">>
-		screaming as she watches her breasts swell from the amount of A-HGH being pumped into them.
+		screaming as she watches her breasts swell from the intense amount of A-HGH being pumped into them.
 	<<case "Asset Expansionism">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -356,8 +356,8 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 	<<case "Body Purism">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
-		<<set $hostage.boobs += 1000>>
-		<<set $hostage.boobsImplant += 1000>>
+		<<set $hostage.boobs += 2000>>
+		<<set $hostage.boobsImplant += 2000>>
 		<<set $hostage.fetish = "boobs">>
 		<<set $hostage.fetishStrength = 10>>
 		blushing as she attempts to get dressed with her massive <<print $hostage.boobs>>cc fake tits getting in the way.
@@ -390,7 +390,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
 		<<set $hostage.weight = 0>>
-		<<set $hostage.boobs += 1000>>
+		<<set $hostage.boobs += 1500>>
 		<<set $hostage.butt = 5>>
 		<<set $hostage.fetish = "boobs">>
 		<<set $hostage.fetishStrength = 10>>
@@ -685,8 +685,8 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 	<<case "Body Purism">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
-		<<set $hostage.boobs += 1000>>
-		<<set $hostage.boobsImplant += 1000>>
+		<<set $hostage.boobs += 2000>>
+		<<set $hostage.boobsImplant += 2000>>
 		<<set $hostage.butt = 7>>
 		<<set $hostage.buttImplant = 4>>
 		<<set $hostage.behavioralFlaw = "none">>
@@ -732,7 +732,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
 		<<set $hostage.weight = 20>>
-		<<set $hostage.boobs += 1000>>
+		<<set $hostage.boobs += 1500>>
 		<<set $hostage.butt = 6>>
 		<<set $hostage.sexualFlaw = "none">>
 		<<set $hostage.behavioralFlaw = "gluttonous">>
@@ -972,8 +972,8 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 	<<case "Body Purism">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
-		<<set $hostage.boobs += 1000>>
-		<<set $hostage.boobsImplant += 1000>>
+		<<set $hostage.boobs += 2000>>
+		<<set $hostage.boobsImplant += 2000>>
 		<<set $hostage.fetishStrength = 100>>
 		<<set $hostage.sexualFlaw = "breast growth">>
 		getting her taut <<print $hostage.boobs>>cc tits massaged by a pair of flat slaves. She is rambling on about how much happier she is with her massive implants then when she was flat like them.
@@ -1003,7 +1003,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
 		<<set $hostage.weight = 50>>
-		<<set $hostage.boobs += 1000>>
+		<<set $hostage.boobs += 1500>>
 		<<set $hostage.butt = 7>>
 		<<set $hostage.fetishStrength = 100>>
 		<<set $hostage.sexualFlaw = "breast growth">>
@@ -1198,8 +1198,8 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<SetBellySize $hostage>>
 		and her owner at the altar during their wedding. It seems she couldn't wait, since her belly already shows signs of an early pregnancy.
 	<<case "Body Purism">>
-		<<set $hostage.boobs = 24300>>
-		<<set $hostage.boobsImplant 24000>>
+		<<set $hostage.boobs = 50000>>
+		<<set $hostage.boobsImplant 45000>>
 		giving an interview. She gushes over how great it feels being more silicone than girl and how terrible it is that some people want to deny girls this pleasure.
 	<<case "Transformation Fetishism">>
 		<<set $hostage.vaginalCount += 1>>
@@ -1215,7 +1215,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.analCount += 20>>
 		giving an interview alongside her young wife. She gushes over how great it feels being in love and how, if some people had their way, she'd have never gotten to experience this bliss.
 	<<case "Slimness Enthusiasm">>
-		<<set $hostage.boobs = 24300>>
+		<<set $hostage.boobs = 50000>>
 		<<set $hostage.weight = 100>>
 		<<set $hostage.butt = 9>>
 		giving an interview. She gushes over how great it feels being more breast than girl and how terrible it is that some people want to keep girls anorexic toothpicks.
@@ -1680,8 +1680,8 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 	<<if $rivalryDuration <= 5>>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
-		<<set $hostage.boobs += 1000>>
-		<<set $hostage.boobsImplant += 1000>>
+		<<set $hostage.boobs += 2000>>
+		<<set $hostage.boobsImplant += 2000>>
 		trying desperately to stand despite her massive <<print $hostage.boobs>>cc fake tits.
 	<<elseif $rivalryDuration <= 10>>
 		<<set $hostage.trust -= 5>>
@@ -1811,7 +1811,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
 		<<set $hostage.weight += 5>>
-		<<set $hostage.boobs += 1000>>
+		<<set $hostage.boobs += 1500>>
 		trying desperately to stand despite her massive <<print $hostage.boobs>>cc tits.
 	<<elseif $rivalryDuration <= 10>>
 		<<set $hostage.trust -= 5>>
@@ -2476,8 +2476,8 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 	<<if $rivalryDuration <= 5>>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
-		<<set $hostage.boobs += 1000>>
-		<<set $hostage.boobsImplant += 1000>>
+		<<set $hostage.boobs += 2000>>
+		<<set $hostage.boobsImplant += 2000>>
 		crying while trying to get comfortable with her <<print $hostage.boobs>>cc fake tits.
 	<<elseif $rivalryDuration <= 10>>
 		<<set $hostage.trust -= 5>>
@@ -2607,7 +2607,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
 		<<set $hostage.weight += 5>>
-		<<set $hostage.boobs += 1000>>
+		<<set $hostage.boobs += 1500>>
 		crying over her swollen breasts and butt.
 	<<elseif $rivalryDuration <= 10>>
 		<<set $hostage.trust -= 5>>
@@ -3270,8 +3270,8 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
 		sobbing as an autosurgery reads out how much her <<print $hostage.boobs>>cc implants can be expanded this week.
-		<<set $hostage.boobs += 1000>>
-		<<set $hostage.boobsImplant += 1000>>
+		<<set $hostage.boobs += 2000>>
+		<<set $hostage.boobsImplant += 2000>>
 	<<elseif $rivalryDuration <= 10>>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -3398,7 +3398,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
 		<<set $hostage.weight += 5>>
-		<<set $hostage.boobs += 1000>>
+		<<set $hostage.boobs += 1500>>
 		weeping as the breast injections swell her breasts to <<print $hostage.boobs>>ccs.
 	<<elseif $rivalryDuration <= 10>>
 		<<set $hostage.trust -= 5>>
diff --git a/src/uncategorized/pRivalryVictory.tw b/src/uncategorized/pRivalryVictory.tw
index 2ad6f58caa2a6e0e9e6125a8cd9e6bca781b329c..45f105cc6fdb842e42a46f3430fb082a4942306a 100644
--- a/src/uncategorized/pRivalryVictory.tw
+++ b/src/uncategorized/pRivalryVictory.tw
@@ -165,7 +165,7 @@ For the first time, you receive a direct call from your rival. You pictured the
 		<<set $activeSlave.boobs = either(800, 1000, 1200)>>
 		<<set $activeSlave.dick = 6>>
 		<<if $activeSlave.foreskin > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>>
-		<<set $activeSlave.balls = 6>>
+		<<set $activeSlave.balls = 10>>
 		<<set $activeSlave.anus = 3>>
 		<<set $activeSlave.vagina = -1>>
 		<<set $activeSlave.weight = 20>>
@@ -437,7 +437,7 @@ For the first time, you receive a direct call from your rival. You pictured the
 		<<set $activeSlave.height = random(185,195)>>
 		<<set $activeSlave.lips = 35>>
 		<<set $activeSlave.butt = either(6, 7, 8)>>
-		<<set $activeSlave.boobs = 10000>>
+		<<set $activeSlave.boobs = 30000>>
 		<<set $activeSlave.weight = random(100,160)>>
 		<<set $activeSlave.nipples = "huge">>
 		<<set $activeSlave.lactation = 2>>
diff --git a/src/uncategorized/randomIndividualEvent.tw b/src/uncategorized/randomIndividualEvent.tw
index 884765af9295b17a45f8c27e0748b3dd3cc653a9..e25e9a0fd30dc01ecae6f464806f9cc6fe6d4b15 100644
--- a/src/uncategorized/randomIndividualEvent.tw
+++ b/src/uncategorized/randomIndividualEvent.tw
@@ -571,7 +571,7 @@
 <</if>>
 
 <<if ($boobAccessibility != 1)>>
-<<if ($eventSlave.boobs > 3000)>>
+<<if ($eventSlave.boobs > 10000)>>
 <<if ($eventSlave.devotion >= -20)>>
 <<if ($slaves.length > 2)>>
 	<<set $RESSevent.push("huge tits")>>
@@ -1797,8 +1797,8 @@
 <</if>>
 <</if>>
 
-<<if ($eventSlave.balls > 4)>>
-<<if ($eventSlave.dick > 4)>>
+<<if ($eventSlave.balls > 6)>>
+<<if ($eventSlave.dick > 6)>>
 <<if ($eventSlave.assignment == "work in the dairy") || ($eventSlave.assignment == "get milked")>>
 	<<set $events.push("RE legendary balls")>>
 <</if>>
diff --git a/src/uncategorized/reRelativeRecruiter.tw b/src/uncategorized/reRelativeRecruiter.tw
index 079603946bc6b3641f66567eb1e81bc9b170ac12..7e1a14d01aa689a5748671238fd60f4d30fcc2bf 100644
--- a/src/uncategorized/reRelativeRecruiter.tw
+++ b/src/uncategorized/reRelativeRecruiter.tw
@@ -913,7 +913,7 @@ She waits anxiously for your decision.
 <<case "young sister">>
 	<<set $activeSlave.origin = "She was recruited into your service by her younger sister.">>
 	<<if $activeSlave.ovaries == 1>>
-		<<set $activeSlave.boobs = Math.trunc($activeSlave.boobs-200,0,25000)>>
+		<<set $activeSlave.boobs = Math.trunc($activeSlave.boobs-200,0,50000)>>
 		<<set $activeSlave.butt = Math.trunc($activeSlave.butt-1,0,10)>>
 	<</if>>
 	<<set $activeSlave.actualAge = $activeSlave.actualAge+2>>
diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw
index 2364b7188b2adcf026dd06fa03a182ee1097f2d9..7b1a7a47eeb1286ab69a83cd390c6fad72ac8f27 100644
--- a/src/uncategorized/remoteSurgery.tw
+++ b/src/uncategorized/remoteSurgery.tw
@@ -322,6 +322,10 @@ Work on her chest:
 	[[String implants|Surgery Degradation][$activeSlave.boobsImplant = 400, $activeSlave.boobsImplantType = 1,$activeSlave.boobs += 400,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "boobs"]] |
 	[[Standard implants|Surgery Degradation][$activeSlave.boobsImplant = 400,$activeSlave.boobs += 400,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "boobs"]] |
 	[[Small implants|Surgery Degradation][$activeSlave.boobsImplant = 200,$activeSlave.boobs += 200,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "boobs"]]
+<<elseif $activeSlave.boobsImplant > 10000 && $activeSlave.boobsImplantType != 1>>
+	[[Add inert filler|Surgery Degradation][$activeSlave.boobsImplant += 1000,$activeSlave.boobs += 1000,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "boobs"]]
+<<elseif $activeSlave.boobsImplant > 2000 && $activeSlave.boobsImplantType != 1>>
+	[[Add inert filler|Surgery Degradation][$activeSlave.boobsImplant += 400,$activeSlave.boobs += 400,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "boobs"]]
 <<elseif $activeSlave.boobsImplant > 600 && $activeSlave.boobsImplantType != 1>>
 	[[Add inert filler|Surgery Degradation][$activeSlave.boobsImplant += 200,$activeSlave.boobs += 200,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "boobs"]]
 <<elseif $activeSlave.boobsImplant > 400 && $activeSlave.boobsImplantType != 1>>
diff --git a/src/uncategorized/resFailure.tw b/src/uncategorized/resFailure.tw
index 3d3b7e436c6b973e9abcec49f9e4db9033a3e09a..ce6bebbdb738043335c4ce3dd8cb646e447db673 100644
--- a/src/uncategorized/resFailure.tw
+++ b/src/uncategorized/resFailure.tw
@@ -99,7 +99,7 @@
 		<<set $activeSlave.slaveSurname = 0>>
 		<<set $activeSlave.career = "a dairy cow">>
 		<<set $activeSlave.butt = either(5, 6, 6, 7, 7, 8, 9)>>
-		<<set $activeSlave.boobs = 10000>>
+		<<set $activeSlave.boobs = 30000>>
 		<<set $activeSlave.lactation = 1>>
 		<<set $activeSlave.lactationAdaptation = 100>>
 		<<set $activeSlave.origin = "She is a prized dairy cow given to you by a failed local pasture of The Cattle Ranch.">>
@@ -416,8 +416,7 @@
 				<<set $activeSlave.balls = 1>>
 				<<set $activeSlave.scrotum = 0>>
 			<<elseif $TFS.schoolUpgrade == 2>>
-				<<set $activeSlave.balls = 6>>
-				<<set $activeSlave.scrotum = $activeSlave.balls>>
+				<<set $activeSlave.balls = random(8,9), $activeSlave.scrotum = $activeSlave.balls>>
 			<<else>>
 				<<set $activeSlave.balls = random(2,3)>>
 				<<set $activeSlave.scrotum = $activeSlave.balls>>
@@ -431,7 +430,7 @@
 			<<set $activeSlave.vagina to 2>>
 			<<set $activeSlave.anus to 2>>
 			<<set $activeSlave.fetish to "submissive">>
-		<<elseif $seed is 2>>
+		<<elseif $seed == 2>>
 			<<set $activeSlave.intelligence to 0>>
 			<<set $activeSlave.chem to 200>>
 			<<set $activeSlave.butt to either(6,7)>>
@@ -444,8 +443,7 @@
 				<<set $activeSlave.balls = 1>>
 				<<set $activeSlave.scrotum = 0>>
 			<<elseif $TFS.schoolUpgrade == 2>>
-				<<set $activeSlave.balls = 6>>
-				<<set $activeSlave.scrotum = $activeSlave.balls>>
+				<<set $activeSlave.balls = random(9,10), $activeSlave.scrotum = $activeSlave.balls>>
 			<<else>>
 				<<set $activeSlave.balls = random(3,4)>>
 				<<set $activeSlave.scrotum = $activeSlave.balls>>
@@ -459,7 +457,7 @@
 			<<set $activeSlave.vagina to 2>>
 			<<set $activeSlave.anus to 2>>
 			<<set $activeSlave.fetish to either("buttslut", "cumslut")>>
-		<<elseif $seed is 3>>
+		<<elseif $seed == 3>>
 			<<set $activeSlave.intelligence to 1>>
 			<<set $activeSlave.chem to 250>>
 			<<set $activeSlave.butt to either(7,8)>>
@@ -472,8 +470,7 @@
 				<<set $activeSlave.balls = 1>>
 				<<set $activeSlave.scrotum = 0>>
 			<<elseif $TFS.schoolUpgrade == 2>>
-				<<set $activeSlave.balls = 6>>
-				<<set $activeSlave.scrotum = $activeSlave.balls>>
+				<<set $activeSlave.balls = random(6,7), $activeSlave.scrotum = $activeSlave.balls>>
 			<<else>>
 				<<set $activeSlave.balls = random(4,5)>>
 				<<set $activeSlave.scrotum = $activeSlave.balls>>
@@ -500,8 +497,7 @@
 				<<set $activeSlave.balls = 1>>
 				<<set $activeSlave.scrotum = 0>>
 			<<elseif $TFS.schoolUpgrade == 2>>
-				<<set $activeSlave.balls = 6>>
-				<<set $activeSlave.scrotum = $activeSlave.balls>>
+				<<set $activeSlave.balls = random(7,8), $activeSlave.scrotum = $activeSlave.balls>>
 			<<else>>
 				<<set $activeSlave.balls = random(5,6)>>
 				<<set $activeSlave.scrotum = $activeSlave.balls>>
@@ -577,7 +573,7 @@
 		<<set $activeSlave.balls = 1>>
 		<<set $activeSlave.scrotum = 0>>
 	<<elseif $TFS.schoolUpgrade == 2>>
-		<<set $activeSlave.balls = 6>>
+		<<set $activeSlave.balls = 10>>
 		<<set $activeSlave.scrotum = $activeSlave.balls>>
 	<<else>>
 		<<set $activeSlave.balls = random(5,6)>>
diff --git a/src/uncategorized/rulesAssistant.tw b/src/uncategorized/rulesAssistant.tw
index 15f98941466a88b8755facf2a1e2ea194470e6d3..6cbaf0ba4ab37069bdb98bef1666d53738010293 100644
--- a/src/uncategorized/rulesAssistant.tw
+++ b/src/uncategorized/rulesAssistant.tw
@@ -22,7 +22,7 @@
 	<<if $currentRule.growth.butt != "no default setting">><<set $currentRule.growth.butt = Number($currentRule.growth.butt), $currentRule.growth.butt = Math.clamp($currentRule.growth.butt,0,10)>><</if>>
 	<<if $currentRule.growth.lips != "no default setting">><<set $currentRule.growth.lips = Number($currentRule.growth.lips), $currentRule.growth.lips = Math.clamp($currentRule.growth.lips,0,100)>><</if>>
 	<<if $currentRule.growth.dick != "no default setting">><<set $currentRule.growth.dick = Number($currentRule.growth.dick), $currentRule.growth.dick = Math.clamp($currentRule.growth.dick,0,10)>><</if>>
-	<<if $currentRule.growth.balls != "no default setting">><<set $currentRule.growth.balls = Number($currentRule.growth.balls), $currentRule.growth.balls = Math.clamp($currentRule.growth.balls,0,6)>><</if>>
+	<<if $currentRule.growth.balls != "no default setting">><<set $currentRule.growth.balls = Number($currentRule.growth.balls), $currentRule.growth.balls = Math.clamp($currentRule.growth.balls,0,10)>><</if>>
 	
 	<<for $r = _length - 1; $r >= 0; $r-->>
 		<<if $defaultRules[$r] == null>>
@@ -1037,9 +1037,19 @@ Growth hormone regimes for healthy slaves:
 	<<textbox "$currentRule.growth.balls" $currentRule.growth.balls "Rules Assistant">>
 	<<link "No default setting" "Rules Assistant">><<set $currentRule.growth.balls = "no default setting">><</link>> |
 	<<link "Sizeable" "Rules Assistant">><<set $currentRule.growth.balls = 4>><</link>> |
-	<<link "Unlimited" "Rules Assistant">><<set $currentRule.growth.balls = 6>><</link>> |
+	<<link "Cumslave" "Rules Assistant">><<set $currentRule.growth.balls = 6>><</link>> |
+	<<link "Unlimited" "Rules Assistant">><<set $currentRule.growth.balls = 10>><</link>> |
 	<<link "None" "Rules Assistant">><<set $currentRule.growth.balls = 0>><</link>>
 <</if>>
+/*
+<br>&nbsp;&nbsp;&nbsp;&nbsp;
+Drug regimes will be
+<<if $currentRule.growth.intensity>>
+	''intensive'' for slaves whose health can bear it. <<link "Moderate" "Rules Assistant">><<set $currentRule.growth.intensity = 0>><</link>>
+<<else>>
+	''moderate'' for all slaves. <<link "Intensify" "Rules Assistant">><<set $currentRule.growth.intensity = 1>><</link>>
+<</if>>
+*/
 
 <br>
 
diff --git a/src/uncategorized/saDrugs.tw b/src/uncategorized/saDrugs.tw
index c00a7919298835863d50b89d855e0a5ad3dc49d1..06c0d5e25e3a637d4388de46a6d15fa7b3a47e83 100644
--- a/src/uncategorized/saDrugs.tw
+++ b/src/uncategorized/saDrugs.tw
@@ -436,6 +436,8 @@
 	<</if>>
 
 <<case "testicle enhancement" "intensive testicle enhancement">>
+	<<if $slaves[$i].balls >= 10>>
+	<<else>>
 	<<set _growth = 60+($injectionUpgrade*20)>>
 	<<if _intensive>><<set _growth += 20>><</if>>
 	<<if (random(1,100) > _growth-($slaves[$i].balls*5))>>
@@ -450,6 +452,7 @@
 		<<set $slaves[$i].dick++>>
 	<</if>>
 	<</if>>
+	<</if>>
 
 <<case "hyper testicle enhancement">>
 	$pronounCap receives @@.lime;direct injections of hyper growth hormones, right into $possessive testicles;@@ forcing them to swell with cum overproduction.
@@ -975,9 +978,9 @@
 /* DRUG EXPIRY */
 <<switch $slaves[$i].drugs>>
 <<case "breast injections" "intensive breast injections">>
-	<<if ($slaves[$i].boobs >= 25000)>>
+	<<if $slaves[$i].boobs >= 50000>>
 		$possessiveCap udders are now so huge that further A-HGH treatment will not increase their size. @@.yellow;$possessiveCap drug regimen has been ended.@@
-		<<set $slaves[$i].boobs = Math.clamp($slaves[$i].butt,0,25000), $slaves[$i].drugs = "no drugs">>
+		<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs,0,50000), $slaves[$i].drugs = "no drugs">>
 	<</if>>
 <<case "butt injections" "intensive butt injections">>
 	<<if ($slaves[$i].butt >= 10)>>
@@ -990,9 +993,9 @@
 		<<set $slaves[$i].drugs = "no drugs">>
 	<</if>>
 <<case "hyper breast injections">>
-	<<if ($slaves[$i].boobs >= 25000)>>
+	<<if ($slaves[$i].boobs >= 50000)>>
 		$possessiveCap udders are now so huge that further HA-HGH treatment will not increase their size. @@.yellow;$possessiveCap drug regimen has been ended.@@
-		<<set $slaves[$i].drugs = "no drugs">>
+		<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs,0,50000), $slaves[$i].drugs = "no drugs">>
 	<</if>>
 <<case "lip injections">>
 	<<if ($slaves[$i].lips > 95) || (($slaves[$i].lips > 85) && ($seeExtreme != 1))>>
@@ -1008,7 +1011,7 @@
 		<<set $slaves[$i].clit = Math.clamp($slaves[$i].dick,0,5), $slaves[$i].drugs = "no drugs">>
 	<</if>>
 <<case "testicle enhancement" "intensive testicle enhancement">>
-	<<if ($slaves[$i].balls >= 6)>>
+	<<if ($slaves[$i].balls >= 10)>>
 		$possessiveCap balls are now so huge that further drug enhancement will not increase their size. However, leaving $possessive on them will still stimulate cum production.
 	<<elseif ($slaves[$i].balls >= 2) && ($slaves[$i].scrotum == 0)>>
 		$possessiveCap balls are now functionally sized, and cannot sustainably grow larger hidden within $possessive abdomen. @@.yellow;$possessiveCap drug regimen has been ended.@@
diff --git a/src/uncategorized/saGetMilked.tw b/src/uncategorized/saGetMilked.tw
index 0ef565e110eb3b299aaae1e6be84170bd4f28b80..3f95f82e0c6c9d4df59e571aa4dfbd8955181946 100644
--- a/src/uncategorized/saGetMilked.tw
+++ b/src/uncategorized/saGetMilked.tw
@@ -308,20 +308,22 @@ gets milked this week.
 		butt is machine-fucked
 	<</if>>
 	to extract the cum from her
-	<<if ($slaves[$i].scrotum == 0)>>
+	<<if !$slaves[$i].scrotum>>
 		invisible
-	<<elseif ($slaves[$i].balls > 5)>>
-		titanic
-	<<elseif ($slaves[$i].balls > 4)>>
-		enormous
-	<<elseif ($slaves[$i].balls > 3)>>
-		pendulous
-	<<elseif ($slaves[$i].balls > 2)>>
-		average
-	<<elseif ($slaves[$i].balls > 1)>>
-		pathetic
 	<<else>>
-		invisible
+		<<switch $slaves[$i].balls>>
+		<<case 10>>inhuman
+		<<case 9>>titanic
+		<<case 8>>gigantic
+		<<case 7>>monstrous
+		<<case 6>>huge
+		<<case 5>>pendulous
+		<<case 4>>swinging
+		<<case 3>>big
+		<<case 2>>average
+		<<case 1>>pathetic
+		<<default>>hypertrophied
+		<</switch>>
 	<</if>>
 	<<if $slaves[$i].drugs == "testicle enhancement">>
 		balls, relieving them of the excessive cum production caused by the testicle enhancement drugs.
diff --git a/src/uncategorized/saHormoneEffects.tw b/src/uncategorized/saHormoneEffects.tw
index 4988f9f17999c4cc3e454aaed9d68cd5acd32f0c..dcc968bb9efb0c3fedafc35461ad3b1686f17848 100644
--- a/src/uncategorized/saHormoneEffects.tw
+++ b/src/uncategorized/saHormoneEffects.tw
@@ -166,10 +166,10 @@
 	<</if>>
 
 <<elseif ($hormones <= -2)>>
-	<<if ($slaves[$i].dick > 0) && ($slaves[$i].dick < 3)>>
+	<<if ($slaves[$i].dick > 0) && ($slaves[$i].dick < 4)>>
 		<<set _Effects.push("DickGrow")>>
 	<</if>>
-	<<if ($slaves[$i].balls > 0) && ($slaves[$i].balls < 3)>>
+	<<if ($slaves[$i].balls > 0) && ($slaves[$i].balls < 4)>>
 		<<set _Effects.push("BallsGrow")>>
 	<</if>>
 	<<if ($slaves[$i].clit < 2) && ($slaves[$i].dick == 0)>>
diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw
index 176ac94e8d724ff1196d9dd0c62d8ad1d8402631..5b5fbdd9a8643fd92174db6e0359cd7e4755ec8a 100644
--- a/src/uncategorized/saLongTermEffects.tw
+++ b/src/uncategorized/saLongTermEffects.tw
@@ -3149,38 +3149,37 @@
 <<if ($slaves[$i].boobsImplantType == 1)>>
 	$possessiveCap string implants absorb fluid @@.lime;slowly swelling $possessive breasts@@.
 	<<set $slaves[$i].boobsImplant += 50, $slaves[$i].boobs += 50>>
-	<<set $seed to random(1,10)>>
-	<<if ($slaves[$i].boobs > 25000)>>
-	Since they are as large as $possessive body can handle, some serum is drained from them.
-	<<set $slaves[$i].boobs -= 100, $slaves[$i].boobsImplant -= 100>>
-	<</if>>
-	<<if ($slaves[$i].boobsImplant > 9000) && ($seed >= 2)>>
-	As they grow they @@.red;greatly irritate@@ the tissue of $possessive breasts.
-	<<set $slaves[$i].health -= 20>>
-	<<elseif ($slaves[$i].boobsImplant > 8000) && ($seed >= 3)>>
-	As they grow they @@.red;irritate@@ the tissue of $possessive breasts.
-	<<set $slaves[$i].health -= 10>>
-	<<elseif ($slaves[$i].boobsImplant > 7000) && ($seed >= 4)>>
-	As they grow they @@.red;irritate@@ the tissue of $possessive breasts.
-	<<set $slaves[$i].health -= 10>>
-	<<elseif ($slaves[$i].boobsImplant > 6000) && ($seed >= 5)>>
-	As they grow they @@.red;irritate@@ the tissue of $possessive breasts.
-	<<set $slaves[$i].health -= 10>>
-	<<elseif ($slaves[$i].boobsImplant > 5000) && ($seed >= 6)>>
-	As they grow they @@.red;irritate@@ the tissue of $possessive breasts.
-	<<set $slaves[$i].health -= 10>>
-	<<elseif ($slaves[$i].boobsImplant > 4000) && ($seed >= 7)>>
-	As they grow they @@.red;irritate@@ the tissue of $possessive breasts.
-	<<set $slaves[$i].health -= 10>>
-	<<elseif ($slaves[$i].boobsImplant > 3000) && ($seed >= 8)>>
-	As they grow they @@.red;irritate@@ the tissue of $possessive breasts.
-	<<set $slaves[$i].health -= 10>>
-	<<elseif ($slaves[$i].boobsImplant > 2000) && ($seed >= 9)>>
-	As they grow they @@.red;irritate@@ the tissue of $possessive breasts.
-	<<set $slaves[$i].health -= 10>>
-	<<elseif ($slaves[$i].boobsImplant > 1000) && ($seed > 9)>>
-	As they grow they @@.red;irritate@@ the tissue of $possessive breasts.
-	<<set $slaves[$i].health -= 10>>
+	<<set _effect = random(1,10)>>
+	<<if ($slaves[$i].boobs > 50000)>>
+		Since they are as large as $possessive body can handle, some serum is drained from them.
+		<<set $slaves[$i].boobs -= 100, $slaves[$i].boobsImplant -= 100>>
+	<<elseif ($slaves[$i].boobsImplant > 9000) && (_effect >= 2)>>
+		As they grow they @@.red;greatly irritate@@ the tissue of $possessive breasts.
+		<<set $slaves[$i].health -= 20>>
+	<<elseif ($slaves[$i].boobsImplant > 8000) && (_effect >= 3)>>
+		As they grow they @@.red;irritate@@ the tissue of $possessive breasts.
+		<<set $slaves[$i].health -= 10>>
+	<<elseif ($slaves[$i].boobsImplant > 7000) && (_effect >= 4)>>
+		As they grow they @@.red;irritate@@ the tissue of $possessive breasts.
+		<<set $slaves[$i].health -= 10>>
+	<<elseif ($slaves[$i].boobsImplant > 6000) && (_effect >= 5)>>
+		As they grow they @@.red;irritate@@ the tissue of $possessive breasts.
+		<<set $slaves[$i].health -= 10>>
+	<<elseif ($slaves[$i].boobsImplant > 5000) && (_effect >= 6)>>
+		As they grow they @@.red;irritate@@ the tissue of $possessive breasts.
+		<<set $slaves[$i].health -= 10>>
+	<<elseif ($slaves[$i].boobsImplant > 4000) && (_effect >= 7)>>
+		As they grow they @@.red;irritate@@ the tissue of $possessive breasts.
+		<<set $slaves[$i].health -= 10>>
+	<<elseif ($slaves[$i].boobsImplant > 3000) && (_effect >= 8)>>
+		As they grow they @@.red;irritate@@ the tissue of $possessive breasts.
+		<<set $slaves[$i].health -= 10>>
+	<<elseif ($slaves[$i].boobsImplant > 2000) && (_effect >= 9)>>
+		As they grow they @@.red;irritate@@ the tissue of $possessive breasts.
+		<<set $slaves[$i].health -= 10>>
+	<<elseif ($slaves[$i].boobsImplant > 1000) && (_effect > 9)>>
+		As they grow they @@.red;irritate@@ the tissue of $possessive breasts.
+		<<set $slaves[$i].health -= 10>>
 	<</if>>
 <</if>>
 
@@ -3214,30 +3213,31 @@
 	Since it as large as $possessive body can handle, some serum is drained from them.
 	<<set $slaves[$i].butt -= 1, $slaves[$i].buttImplant -= 1>>
 	<</if>>
-	<<set $seed to random(1,8)>>
-	<<if ($slaves[$i].buttImplant > 7) && ($seed >= 2)>>
-	As they grow they @@.red;greatly irritate@@ the tissue of $possessive cheeks.
-	<<set $slaves[$i].health -= 20>>
-	<<elseif ($slaves[$i].buttImplant > 6) && ($seed >= 2)>>
-	As they grow they @@.red;greatly irritate@@ the tissue of $possessive cheeks.
-	<<set $slaves[$i].health -= 20>>
-	<<elseif ($slaves[$i].buttImplant > 5) && ($seed >= 3)>>
-	As they grow they @@.red;irritate@@ the tissue of $possessive cheeks.
-	<<set $slaves[$i].health -= 10>>
-	<<elseif ($slaves[$i].buttImplant > 4) && ($seed >= 4)>>
-	As they grow they @@.red;irritate@@ the tissue of $possessive cheeks.
-	<<set $slaves[$i].health -= 10>>
-	<<elseif ($slaves[$i].buttImplant > 3) && ($seed >= 5)>>
-	As they grow they @@.red;irritate@@ the tissue of $possessive cheeks.
-	<<set $slaves[$i].health -= 10>>
-	<<elseif ($slaves[$i].buttImplant > 2) && ($seed >= 6)>>
-	As they grow they @@.red;irritate@@ the tissue of $possessive cheeks.
-	<<set $slaves[$i].health -= 10>>
-	<<elseif ($slaves[$i].buttImplant > 1) && ($seed >= 7)>>
-	As they grow they @@.red;irritate@@ the tissue of $possessive cheeks.
-	<<set $slaves[$i].health -= 10>>
-	<<elseif ($slaves[$i].buttImplant > 0) && ($seed > 7)>>
-	As they grow they @@.red;irritate@@ the tissue of $possessive cheeks.
+	<<set _effect = random(1,8)>>
+	<<if ($slaves[$i].buttImplant > 7) && (_effect >= 2)>>
+		As they grow they @@.red;greatly irritate@@ the tissue of $possessive cheeks.
+		<<set $slaves[$i].health -= 20>>
+	<<elseif ($slaves[$i].buttImplant > 6) && (_effect >= 2)>>
+		As they grow they @@.red;greatly irritate@@ the tissue of $possessive cheeks.
+		<<set $slaves[$i].health -= 20>>
+	<<elseif ($slaves[$i].buttImplant > 5) && (_effect >= 3)>>
+		As they grow they @@.red;irritate@@ the tissue of $possessive cheeks.
+		<<set $slaves[$i].health -= 10>>
+	<<elseif ($slaves[$i].buttImplant > 4) && (_effect >= 4)>>
+		As they grow they @@.red;irritate@@ the tissue of $possessive cheeks.
+		<<set $slaves[$i].health -= 10>>
+	<<elseif ($slaves[$i].buttImplant > 3) && (_effect >= 5)>>
+		As they grow they @@.red;irritate@@ the tissue of $possessive cheeks.
+		<<set $slaves[$i].health -= 10>>
+	<<elseif ($slaves[$i].buttImplant > 2) && (_effect >= 6)>>
+		As they grow they @@.red;irritate@@ the tissue of $possessive cheeks.
+		<<set $slaves[$i].health -= 10>>
+	<<elseif ($slaves[$i].buttImplant > 1) && (_effect >= 7)>>
+		As they grow they @@.red;irritate@@ the tissue of $possessive cheeks.
+		<<set $slaves[$i].health -= 10>>
+	<<elseif ($slaves[$i].buttImplant > 0) && (_effect > 7)>>
+		As they grow they @@.red;irritate@@ the tissue of $possessive cheeks.
+		<<set $slaves[$i].health -= 10>>
 	<</if>>
 <</if>>
 
@@ -4370,15 +4370,15 @@
 		<<if ($slaves[$i].trust < -20)>>
 		<<if ($slaves[$i].devotion <= 50)>>
 		<<if (random(1,100) > 100+$slaves[$i].trust)>>
-			<<set $seed to random(1,4)>>
+			<<set _effect = random(1,4)>>
 			Being so afraid so constantly drives her to find solace in
-			<<if $seed == 1>>
+			<<if _effect == 1>>
 			self-denial. @@.red;She has developed anorexia.@@
 			<<set $slaves[$i].behavioralFlaw = "anorexic">>
-			<<elseif $seed is 2>>
+			<<elseif _effect == 2>>
 			stress eating. @@.red;She's now a nervous glutton.@@
 			<<set $slaves[$i].behavioralFlaw = "gluttonous">>
-			<<elseif $seed is 3>>
+			<<elseif _effect == 3>>
 			the scraps of prayer and superstition she can remember from her life before she was a slave. @@.red;She's now religious.@@
 			<<set $slaves[$i].behavioralFlaw = "devout">>
 			<<else>>
@@ -4392,21 +4392,21 @@
 		<<if ($slaves[$i].sexualFlaw == "none")>>
 		<<if ($slaves[$i].devotion < -20)>>
 		<<if (random(1,500) > 500+$slaves[$i].devotion)>>
-			<<set $seed to random(1,6)>>
+			<<set _effect = random(1,6)>>
 			Being so angry at her life as a sex slave has
-			<<if $seed == 1>>
+			<<if _effect == 1>>
 			driven her into @@.red;sexual apathy.@@
 			<<set $slaves[$i].sexualFlaw = "apathetic">>
-			<<elseif $seed is 2>>
+			<<elseif _effect == 2>>
 			convinced her that the conservative parts of her upbringing were right: sex is evil. @@.red;She's now repressed.@@
 			<<set $slaves[$i].sexualFlaw = "repressed">>
-			<<elseif $seed is 3>>
+			<<elseif _effect == 3>>
 			given her a dread of being nude. @@.red;She's now shamefast.@@
 			<<set $slaves[$i].sexualFlaw = "shamefast">>
-			<<elseif $seed is 4>>
+			<<elseif _effect == 4>>
 			deprived her of any motivation to keep sex appealing or even clean. @@.red;She's now crude.@@
 			<<set $slaves[$i].sexualFlaw = "crude">>
-			<<elseif $seed is 5>>
+			<<elseif _effect == 5>>
 			driven her to find refuge in high standards. @@.red;She's now judgemental.@@
 			<<set $slaves[$i].sexualFlaw = "judgemental">>
 			<<else>>
@@ -4991,7 +4991,7 @@
 	Society @@.green;approves@@ of $possessive enormous penis; $possessive cock furthers the fashion for dangling dicks on slaves.
 		<<FSChangePorn "AssetExpansionist" 1>>
 	<</if>>
-	<<if ($slaves[$i].balls > 4)>>
+	<<if ($slaves[$i].balls > 6)>>
 		Society @@.green;approves@@ of $possessive swinging balls; $possessive nuts further the fashion for tremendous testicles on slaves.
 		<<FSChangePorn "AssetExpansionist" 1>>
 	<</if>>
@@ -5143,9 +5143,9 @@
 		<</switch>>
 	<</if>>
 	<<if $rep > 10000>>
-	$possessiveCap brand is considered a minor enhancement to her beauty since you are very well liked.
+		$possessiveCap brand is considered a minor enhancement to her beauty since you are very well liked.
 	<<elseif $rep < 5000>>
-	$possessiveCap brand is considered a minor blemish on her beauty since you are not well liked.
+		$possessiveCap brand is considered a minor blemish on her beauty since you are not well liked.
 	<</if>>
 <</if>>
 <</if>>
@@ -5364,37 +5364,36 @@
 <</if>>
 <<if $slaves[$i].balls > 0>>
 <<if $slaves[$i].scrotum > 0>>
-	<<if $slaves[$i].scrotum - $slaves[$i].balls < -1>>
-	$possessiveCap nuts have grown so large that they are much too big for $possessive ballsack, giving $possessive constant discomfort. $possessiveCap @@.red;appetite for sex is reduced@@ by how much $possessive junk hurts.
-	<<set $slaves[$i].energy -= 2>>
-	<<if random(0,2) == 0>>
-		$possessiveCap scrotum @@.lime;stretches out naturally@@ as $possessive balls force it to accept their size, giving $possessive relief at last.
-		<<set $slaves[$i].scrotum += 1>>
-	<</if>>
-	<<elseif $slaves[$i].scrotum - $slaves[$i].balls == -1>>
-	<<if random(0,4) == 0>>
-		$possessiveCap scrotum @@.lime;stretches out naturally@@ as it adapts to $possessive newly enhanced balls.
-		<<set $slaves[$i].scrotum += 1>>
-	<</if>>
-	<<elseif $slaves[$i].balls > 5>>
-	<<if ($slaves[$i].scrotum < 7)>>
+	<<set _extraScrotum = $slaves[$i].scrotum - $slaves[$i].balls>>
+	<<if _extraScrotum < -1>>
+		$possessiveCap nuts are much too big for $possessive ballsack, giving $possessive constant discomfort. $possessiveCap @@.red;appetite for sex is reduced@@ by how much $possessive junk hurts.
+		<<set $slaves[$i].energy -= 2>>
+		<<if random(0,2) == 0>>
+			$possessiveCap scrotum @@.lime;stretches out naturally@@ as $possessive balls force it to accept their size.
+			<<set $slaves[$i].scrotum += 1>>
+		<</if>>
+	<<elseif  _extraScrotum < 0 && $slaves[$i].balls > 5>>
 		<<if random(0,4) == 0>>
-		$possessiveCap huge, heavy balls tug $possessive scrotum downward, and it @@.lime;stretches out naturally@@ under their weight.
-		<<set $slaves[$i].scrotum += 1>>
+			$possessiveCap heavy balls tug $possessive scrotum downward, and it @@.lime;stretches out naturally@@ under their weight.
+			<<set $slaves[$i].scrotum += 1>>
 		<</if>>
-	<</if>>
-	<<elseif $slaves[$i].scrotum - $slaves[$i].balls > 1>>
-	<<if ($slaves[$i].hormones > 0)>>
-		<<if random(0,2) == 0>>
-		@@.orange;$possessiveCap ballsack atrophies,@@ which is not surprising, since she's on female hormones and $possessive girly balls have gotten so small.
-		<<set $slaves[$i].scrotum -= 1>>
+	<<elseif  _extraScrotum == -1>>
+		<<if random(0,5) == 0>>
+			$possessiveCap scrotum @@.lime;stretches out naturally@@ as it adapts to $possessive newly expanded balls.
+			<<set $slaves[$i].scrotum += 1>>
+		<</if>>
+	<<elseif _extraScrotum > 1>>
+		<<if $slaves[$i].hormones > 0>>
+			<<if random(0,2) == 0>>
+				@@.orange;$possessiveCap ballsack atrophies,@@ which is not surprising, since she's on female hormones and $possessive girly balls have gotten so small.
+				<<set $slaves[$i].scrotum -= 1>>
+			<</if>>
 		<</if>>
-	<</if>>
 	<</if>>
 <<else>>
 	<<if $slaves[$i].balls > 2>>
-	$possessiveCap balls have been relocated to $possessive abdomen, and while they still work there, it's not where they're designed to be. Routine scans show that @@.orange;they've atrophied,@@ <<if $slaves[$i].balls > 3>>and will probably continue to do so until they stabilise at a below-average size<<else>>but are not likely to get any smaller<</if>>.
-	<<set $slaves[$i].balls -= 1>>
+		$possessiveCap balls have been relocated to $possessive abdomen, and while they still work there, it's not where they're designed to be. Routine scans show that @@.orange;they've atrophied,@@ <<if $slaves[$i].balls > 3>>and will probably continue to do so until they stabilise at a below-average size<<else>>but are not likely to get any smaller<</if>>.
+		<<set $slaves[$i].balls -= 1>>
 	<</if>>
 <</if>>
 <</if>>
@@ -5690,154 +5689,237 @@
 		<</if>>
 	<</if>>
 	<<if $slaves[$i].physicalAge >= 18>>
-		<<if ($slaves[$i].boobs > 9000+($slaves[$i].muscles*100))>>
+		<<if ($slaves[$i].boobs > 30000+($slaves[$i].muscles*100))>>
 		<<if ($slaves[$i].assignment != "work in the dairy") || ($dairyRestraintsSetting < 2) || $arcologies[0].FSAssetExpansionistResearch == 0>>
 		<<if ($slaves[$i].drugs != "breast injections" && $slaves[$i].drugs != "intensive breast injections" && $arcologies[0].FSAssetExpansionistResearch == 0)>>
-		<<if ($slaves[$i].boobs > 9000+($slaves[$i].muscles*100))>>
+		<<if ($slaves[$i].boobs > 30000+($slaves[$i].muscles*100))>>
 			Her breasts are larger than her body can possibly sustain without industrial intervention, and they @@.orange;naturally lose mass.@@
-			<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs-25, 9000+($slaves[$i].muscles*100), 25000)>>
+			<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs-25, 30000+($slaves[$i].muscles*100), 50000)>>
 		<<else>>
 			Her breasts are far, far beyond what her body can sustain without industrial intervention, and they @@.orange;naturally lose mass.@@
-			<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs-50, 9000+($slaves[$i].muscles*100), 25000)>>
+			<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs-50, 30000+($slaves[$i].muscles*100), 50000)>>
 		<</if>>
 		<</if>>
 		<</if>>
 		<</if>>
-		<<if ($slaves[$i].boobs > 20000)>>
-			Her giant breasts are so big they rest upon the floor, taking the weight off her body.  She finds pulling them along @@.mediumorchid;mildly annoying@@.
-			<<set $slaves[$i].devotion -= 1>>
-		<<elseif ($slaves[$i].boobs > 11000)>>
+		<<if ($slaves[$i].boobs > 40000)>>
+			Her immense breasts are so big they pin her to the floor, taking the weight off her body.
+			<<if $slaves[$i].devotion <= 50>>
+				She finds pulling them along @@.mediumorchid;mildly annoying@@.
+				<<set $slaves[$i].devotion -= 1>>
+			<<else>>
+				She finds pulling them along somewhat annoying, but she's happy to do so if it pleases you.
+			<</if>>
+		<<elseif ($slaves[$i].boobs > 25000)>>
 			<<if canWalk($slaves[$i])>>
-				Her giant tits are debilitatingly big.  They are  @@.mediumorchid;very uncomfortable@@ and @@.red;painful@@ for her body.
+				<<if $slaves[$i].devotion <= 50>>
+					Her giant tits are debilitatingly big. They are @@.mediumorchid;very uncomfortable@@ and @@.red;painful@@ for her body.
 					<<set $slaves[$i].devotion -= 3>>
 					<<set $slaves[$i].health -= 5>>
+				<<else>>
+					Her giant tits are debilitatingly big, but she takes measures to keep comfortable and pain free as to not concern you with her troubles.
+				<</if>>
 			<</if>>
-		<<elseif ($slaves[$i].boobs > 8000)>>
+		<<elseif ($slaves[$i].boobs > 10000)>>
 			<<if ($slaves[$i].muscles <= 30)>>
 			<<if canWalk($slaves[$i])>>
-				Dragging her huge tits around is @@.mediumorchid;uncomfortable@@ and @@.red;painful@@ for her slight form.
-				<<set $slaves[$i].devotion -= 2>>
-				<<set $slaves[$i].health -= 4>>
+				<<if $slaves[$i].devotion <= 50>>
+					Dragging her huge tits around is @@.mediumorchid;uncomfortable@@ and @@.red;painful@@ for her slight form.
+					<<set $slaves[$i].devotion -= 2>>
+					<<set $slaves[$i].health -= 2>>
+				<<else>>
+					She finds her breasts uncomfortably large, but she grins and bears it for you.
+				<</if>>
 			<</if>>
 			<</if>>
 		<<elseif ($slaves[$i].boobs > 4000)>>
 			<<if ($slaves[$i].muscles <= 30)>>
 			<<if canWalk($slaves[$i])>>
-				The weight of her big boobs is @@.mediumorchid;uncomfortable@@ for her slight form.
-				<<set $slaves[$i].devotion -= 2>>
+				<<if $slaves[$i].devotion <= 50>>
+					The weight of her big boobs is @@.mediumorchid;uncomfortable@@ for her slight form.
+					<<set $slaves[$i].devotion -= 2>>
+				<<else>>
+					The weight of her big boobs is uncomfortable for her slight form, but she bears it out of devotion to you.
+				<</if>>
 			<</if>>
 			<</if>>
 		<</if>>
 	<<elseif $slaves[$i].physicalAge <= 3>>
-		<<if ($slaves[$i].boobs > 5100+($slaves[$i].muscles*10))>>
-		<<if ($slaves[$i].assignment != "work in the dairy") || ($dairyRestraintsSetting < 2) or $arcologies[0].FSAssetExpansionistResearch == 0>>
+		<<if ($slaves[$i].boobs > 5000+($slaves[$i].muscles*10))>>
+		<<if ($slaves[$i].assignment != "work in the dairy") || ($dairyRestraintsSetting < 2) || $arcologies[0].FSAssetExpansionistResearch == 0>>
 		<<if ($slaves[$i].drugs != "breast injections" && $slaves[$i].drugs != "intensive breast injections" && $arcologies[0].FSAssetExpansionistResearch == 0)>>
-		<<if ($slaves[$i].boobs > 5100+($slaves[$i].muscles*10))>>
+		<<if ($slaves[$i].boobs > 5000+($slaves[$i].muscles*10))>>
 			Her breasts are larger than her body can possibly sustain without industrial intervention, and they @@.orange;naturally lose mass.@@
-			<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs-25, 5100+($slaves[$i].muscles*10), 25000)>>
+			<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs-25, 5000+($slaves[$i].muscles*10), 50000)>>
 		<<else>>
 			Her breasts are far, far beyond what her body can sustain without industrial intervention, and they @@.orange;naturally lose mass.@@
-			<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs-50, 5100+($slaves[$i].muscles*10), 25000)>>
+			<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs-50, 5000+($slaves[$i].muscles*10), 50000)>>
 		<</if>>
 		<</if>>
 		<</if>>
 		<</if>>
-		<<if ($slaves[$i].boobs > 8000)>>
-			Her giant breasts are so big they rest upon the floor, taking the weight off her tiny body.  She finds pulling them along @@.mediumorchid;mildly annoying@@.
-			<<set $slaves[$i].devotion -= 1>>
+		<<if ($slaves[$i].boobs > 40000)>>
+			Her titanic breasts are so massive they dwarf her body. She has no choice but to accept immobility.
+		<<elseif ($slaves[$i].boobs > 20000)>>
+			Her immense breasts are so huge they rest upon the floor even when she tries to stand, taking the weight off her tiny body.
+			<<if $slaves[$i].devotion <= 50>>
+				She finds pulling them along @@.mediumorchid;mildly annoying@@.
+				<<set $slaves[$i].devotion -= 1>>
+			<<else>>
+				She finds pulling them along a big burden, but her devotion to you is far stronger than her discomfort.
+			<</if>>
+		<<elseif ($slaves[$i].boobs > 6000)>>
+			Her giant breasts are so big they pin her to the floor, taking the weight off her tiny body.
+			<<if $slaves[$i].devotion <= 50>>
+				She finds pulling them along @@.mediumorchid;mildly annoying@@.
+				<<set $slaves[$i].devotion -= 1>>
+			<<else>>
+				She finds pulling them along a litte annoying, but your will is far more important to her.
+			<</if>>
 		<<elseif ($slaves[$i].boobs > 5000)>>
 			<<if canWalk($slaves[$i])>>
-				Her giant tits are debilitatingly big.  They are  @@.mediumorchid;very uncomfortable@@ and @@.red;painful@@ for her childish form.
-			  	<<set $slaves[$i].devotion -= 3>>
-			 	<<set $slaves[$i].health -= 4>>
-		<</if>>
+				<<if $slaves[$i].devotion <= 50>>
+					Her giant tits are debilitatingly big. They are @@.mediumorchid;very uncomfortable@@ and @@.red;painful@@ for her childish form.
+					<<set $slaves[$i].devotion -= 3>>
+					<<set $slaves[$i].health -= 4>>
+				<<else>>
+					Her giant tits are debilitatingly big. She does everything she can to keep comfortable and pain free as to not bother you.
+				<</if>>
+			<</if>>
 		<<elseif ($slaves[$i].boobs > 2500)>>
 			<<if ($slaves[$i].muscles <= 80)>>
 			<<if canWalk($slaves[$i])>>
-				Hauling her huge tits around is @@.mediumorchid;uncomfortable@@ for her childish form.
-			 	<<set $slaves[$i].devotion -= 2>>
+				<<if $slaves[$i].devotion <= 50>>
+					Hauling her huge tits around is @@.mediumorchid;uncomfortable@@ for her childish form.
+					<<set $slaves[$i].devotion -= 2>>
+				<<else>>
+					She finds her breasts uncomfortably large for her tiny body, but she grins and bears it for you.
+				<</if>>
 			<</if>>
 			<</if>>
 		<<elseif ($slaves[$i].boobs > 1000)>>
 			<<if ($slaves[$i].muscles <= 30)>>
 			<<if canWalk($slaves[$i])>>
-				The weight of her big boobs is @@.mediumorchid;uncomfortable@@ for her slight form.
-				<<set $slaves[$i].devotion -= 1>>
+				<<if $slaves[$i].devotion <= 50>>
+					The weight of her big boobs is @@.mediumorchid;uncomfortable@@ for her slight form.
+					<<set $slaves[$i].devotion -= 2>>
+				<<else>>
+					The weight of her big boobs is uncomfortable for her slight form, but she bears it out of devotion to you.
+				<</if>>
 			<</if>>
 			<</if>>
 		<</if>>
 	<<elseif $slaves[$i].physicalAge <= 12>>
-		<<if ($slaves[$i].boobs > 7000+($slaves[$i].muscles*20))>>
-		<<if ($slaves[$i].assignment != "work in the dairy") || ($dairyRestraintsSetting < 2)>>
+		<<if ($slaves[$i].boobs > 10000+($slaves[$i].muscles*20))>>
+		<<if ($slaves[$i].assignment != "work in the dairy") || ($dairyRestraintsSetting < 2) || $arcologies[0].FSAssetExpansionistResearch == 0>>
 		<<if ($slaves[$i].drugs != "breast injections" && $slaves[$i].drugs != "intensive breast injections" && $arcologies[0].FSAssetExpansionistResearch == 0)>>
-		<<if ($slaves[$i].boobs > 7000+($slaves[$i].muscles*20))>>
+		<<if ($slaves[$i].boobs > 10000+($slaves[$i].muscles*20))>>
 			Her breasts are larger than her body can possibly sustain without industrial intervention, and they @@.orange;naturally lose mass.@@
-			<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs-25, 7000+($slaves[$i].muscles*20), 25000)>>
+			<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs-25, 10000+($slaves[$i].muscles*20), 50000)>>
 		<<else>>
 			Her breasts are far, far beyond what her body can sustain without industrial intervention, and they @@.orange;naturally lose mass.@@
-			<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs-50, 7000+($slaves[$i].muscles*20), 25000)>>
+			<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs-50, 10000+($slaves[$i].muscles*20), 50000)>>
 		<</if>>
 		<</if>>
 		<</if>>
 		<</if>>
+		<<if ($slaves[$i].boobs > 40000)>>
+			Her immense breasts are so huge they rest upon the floor even when she tries to stand, taking the weight off her small body.
+			<<if $slaves[$i].devotion <= 50>>
+				She finds pulling them along @@.mediumorchid;mildly annoying@@.
+				<<set $slaves[$i].devotion -= 1>>
+			<<else>>
+				She finds pulling them along a burden, but her devotion to you is far stronger than her discomfort.
+			<</if>>
 		<<if ($slaves[$i].boobs > 12000)>>
-			Her giant breasts are so big they rest upon the floor, taking the weight off her young body.  She finds pulling them along @@.mediumorchid;mildly annoying@@.
-			<<set $slaves[$i].devotion -= 1>>
-		<<elseif ($slaves[$i].boobs > 9000)>>
+			Her giant breasts are so big they pin her to the floor, taking the weight off her young body.
+			<<if $slaves[$i].devotion <= 50>>
+				She finds pulling them along @@.mediumorchid;mildly annoying@@.
+				<<set $slaves[$i].devotion -= 1>>
+			<<else>>
+				She finds pulling them along a litte annoying, but your will is far more important to her.
+			<</if>>
+		<<elseif ($slaves[$i].boobs > 10000)>>
 			<<if canWalk($slaves[$i])>>
-				Her giant tits are debilitatingly big.  They are  @@.mediumorchid;very uncomfortable@@ and @@.red;painful@@ for her childish form.
-				<<set $slaves[$i].devotion -= 3>>
-				<<set $slaves[$i].health -= 5>>
+				Her giant tits are debilitatingly big.
+				<<if $slaves[$i].devotion <= 50>>
+					They are @@.mediumorchid;very uncomfortable@@ and @@.red;painful@@ for her childish form.
+					<<set $slaves[$i].devotion -= 3>>
+					<<set $slaves[$i].health -= 5>>
+				<<else>>
+					She does her best to not let them get the better of her youthful body.
+				<</if>>
 			<</if>>
 		<<elseif ($slaves[$i].boobs > 5000)>>
 			<<if ($slaves[$i].muscles <= 80)>>
 			<<if canWalk($slaves[$i])>>
-				Dragging her huge tits around is @@.mediumorchid;uncomfortable@@ and @@.red;painful@@ for her childish form.
-				<<set $slaves[$i].devotion -= 2>>
-				<<set $slaves[$i].health -= 4>>
+				<<if $slaves[$i].devotion <= 50>>
+					Dragging her huge tits around is @@.mediumorchid;uncomfortable@@ and @@.red;painful@@ for her childish form.
+					<<set $slaves[$i].devotion -= 2>>
+					<<set $slaves[$i].health -= 4>>
+				<<else>>
+					Her huge tits are uncomfortably big for her childish form, but she keeps it to herself out of devotion to you.
+				<</if>>
 			<</if>>
 			<</if>>
 		<<elseif ($slaves[$i].boobs > 2000)>>
 			<<if ($slaves[$i].muscles <= 30)>>
 			<<if canWalk($slaves[$i])>>
-				The weight of her big boobs is @@.mediumorchid;uncomfortable@@ for her slight form.
-				<<set $slaves[$i].devotion -= 1>>
+				<<if $slaves[$i].devotion <= 50>>
+					The weight of her big boobs is @@.mediumorchid;uncomfortable@@ for her slight form.
+					<<set $slaves[$i].devotion -= 1>>
+				<<else>>
+					The weight of her big boobs is uncomfortable for her slight form, but she bears it out of devotion to you.
+				<</if>>
 			<</if>>
 			<</if>>
 		<</if>>
 	<<else>>
-		<<if ($slaves[$i].boobs > 9000+($slaves[$i].muscles*50))>>
-		<<if ($slaves[$i].assignment != "work in the dairy") || ($dairyRestraintsSetting < 2)>>
+		<<if ($slaves[$i].boobs > 20000+($slaves[$i].muscles*50))>>
+		<<if ($slaves[$i].assignment != "work in the dairy") || ($dairyRestraintsSetting < 2) || $arcologies[0].FSAssetExpansionistResearch == 0>>
 		<<if ($slaves[$i].drugs != "breast injections" && $slaves[$i].drugs != "intensive breast injections" && $arcologies[0].FSAssetExpansionistResearch == 0)>>
-		<<if ($slaves[$i].boobs > 9000+($slaves[$i].muscles*50))>>
+		<<if ($slaves[$i].boobs > 20000+($slaves[$i].muscles*50))>>
 			Her breasts are larger than her body can possibly sustain without industrial intervention, and they @@.orange;naturally lose mass.@@
-			<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs-25, 9000+($slaves[$i].muscles*50), 25000)>>
+			<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs-25, 20000+($slaves[$i].muscles*50), 50000)>>
 		<<else>>
 			Her breasts are far, far beyond what her body can sustain without industrial intervention, and they @@.orange;naturally lose mass.@@
-			<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs-50, 9000+($slaves[$i].muscles*50), 25000)>>
+			<<set $slaves[$i].boobs = Math.clamp($slaves[$i].boobs-50, 20000+($slaves[$i].muscles*50), 50000)>>
 		<</if>>
 		<</if>>
 		<</if>>
 		<</if>>
-		<<if ($slaves[$i].boobs > 18000)>>
-			Her giant breasts are so big they rest upon the floor, taking the weight off her youthful body.  She finds pulling them along @@.mediumorchid;mildly annoying@@.
+		<<if ($slaves[$i].boobs > 25000)>>
+			Her immense breasts are so big they pin her to the floor, taking the weight off her youthful body. She finds pulling them along @@.mediumorchid;mildly annoying@@.
 			<<set $slaves[$i].devotion -= 1>>
+		<<elseif ($slaves[$i].boobs > 17000)>>
+			Her giant tits are debilitatingly big.
+			<<if $slaves[$i].devotion <= 50>>
+				They are @@.mediumorchid;very uncomfortable@@ and @@.red;painful@@ for her youthful form.
+				<<set $slaves[$i].devotion -= 3>>
+				<<set $slaves[$i].health -= 10>>
+			<<else>>
+				She finds them painfully uncomfortable, but finds ways to mitigate it to not distract you with her worries.
+			<</if>>
 		<<elseif ($slaves[$i].boobs > 10000)>>
-			Her giant tits are debilitatingly big.  They are  @@.mediumorchid;very uncomfortable@@ and @@.red;painful@@ for her youthful form.
-			<<set $slaves[$i].devotion -= 3>>
-			<<set $slaves[$i].health -= 10>>
-		<<elseif ($slaves[$i].boobs > 7000)>>
 			<<if ($slaves[$i].muscles <= 30)>>
 			<<if canWalk($slaves[$i])>>
-				Dragging her huge tits around is @@.mediumorchid;uncomfortable@@ and @@.red;painful@@ for her slight form.
-				<<set $slaves[$i].devotion -= 2, $slaves[$i].health -= 3>>
+				<<if $slaves[$i].devotion <= 50>>
+					Dragging her huge tits around is @@.mediumorchid;uncomfortable@@ and @@.red;painful@@ for her slight form.
+					<<set $slaves[$i].devotion -= 2, $slaves[$i].health -= 3>>
+				<<else>>
+					Her huge tits are uncomfortably big for her slight form, but she keeps it to herself out of devotion to you.
+				<</if>>
 			<</if>>
 			<</if>>
 		<<elseif ($slaves[$i].boobs > 2000)>>
 			<<if ($slaves[$i].muscles <= 5)>>
 			<<if canWalk($slaves[$i])>>
-				The weight of her big boobs is @@.mediumorchid;uncomfortable@@ for her slight form.
-				<<set $slaves[$i].devotion -= 1>>
+				<<if $slaves[$i].devotion <= 50>>
+					The weight of her big boobs is @@.mediumorchid;uncomfortable@@ for her slight form.
+					<<set $slaves[$i].devotion -= 1>>
+				<<else>>
+					The weight of her big boobs is uncomfortable for her slight form, but she bears it out of devotion to you.
+				<</if>>
 			<</if>>
 			<</if>>
 		<</if>>
@@ -5990,7 +6072,7 @@
 
 <<if $slaves[$i].fuckdoll == 0>>
 <<if $slaves[$i].fetish != "mindbroken">>
-<<if ($slaves[$i].boobs > 7500)>>
+<<if ($slaves[$i].boobs > 20000)>>
 	<<if $boobAccessibility == 1>>
 	<<if ($slaves[$i].devotion > 20)>>
 		She's @@.mediumaquamarine;thankful@@ to you for providing living spaces adapted to life with gigantic boobs.
@@ -6324,72 +6406,97 @@
   <</if>>
 <</if>>
 
-<<if canWalk($slaves[$i]) is true>>
+<<if canWalk($slaves[$i])>>
 <<if ($slaves[$i].dick >= 30)>>
-	Her titanic penis rests upon the floor even when she stands. She finds moving @@.mediumorchid;terrifying@@ since she drags her cock along.
-	<<set $slaves[$i].devotion -= 3>>
+	<<if ($slaves[$i].devotion <= 50)>>
+		Her titanic penis rests upon the floor even when she stands. She finds moving @@.mediumorchid;terrifying@@ since she drags her cock along.
+		<<set $slaves[$i].devotion -= 3>>
+	<<else>>
+		Her titanic penis rests upon the floor even when she stands. She pays close attention as she moves to keep it pristine for you.
+	<</if>>
 <<elseif ($slaves[$i].dick > 20)>>
-	Her enormous cock is @@.mediumorchid;very uncomfortable@@ for her to drag around.
-	<<set $slaves[$i].devotion -= 2>>
+	<<if ($slaves[$i].devotion <= 50)>>
+		Her enormous cock is @@.mediumorchid;very uncomfortable@@ for her to drag around.
+		<<set $slaves[$i].devotion -= 2>>
+	<<else>>
+		Her enormous cock is uncomfortable for her to move with, but she bears its weight out of devotion to you.
+	<</if>>
 <<elseif ($slaves[$i].dick >= 10)>>
-	<<if canWalk($slaves[$i]) is true>>
-	Her giant dick is @@.mediumorchid;uncomfortable@@ for her body.
-	<<set $slaves[$i].devotion -= 1>>
+	<<if canWalk($slaves[$i])>>
+		<<if ($slaves[$i].devotion <= 50)>>
+			Her giant dick is @@.mediumorchid;uncomfortable@@ for her body.
+			<<set $slaves[$i].devotion -= 1>>
+		<<else>>
+			She can't seem to get comfortable with her giant dick, but she keeps it to herself out of devotion.
+		<</if>>
 	<</if>>
 <</if>>
 <</if>>
 
 <<if ($slaves[$i].dick >= 20)>>
-  <<if $dickAccessibility == 1>>
-    <<if ($slaves[$i].devotion > 20)>>
-      She's @@.mediumaquamarine;thankful@@ to you for providing living spaces adapted to life with an enormous dick.
-      <<set $slaves[$i].trust += 1>>
-	<</if>>
-  <<else>>
-    Her giant penis make life a struggle: she has to drag it along as she moves, has trouble fitting into beds and sitting in chairs, and constantly has to make sure to not get her dick caught in doors.
-    <<if ($slaves[$i].devotion > 50)>>
-      Since she's devoted to you, she just does her best.
-    <<elseif ($slaves[$i].trust > -20)>>
-      This torment makes her @@.gold;less trusting@@ of your willingness to look after her.
-      <<set $slaves[$i].trust -= 2>>
-    <<else>>
-      She already believes you capable of tormenting her, so this proof of your indifference @@.mediumorchid;angers her@@ daily.
-      <<set $slaves[$i].devotion -= 3>>
+	<<if $dickAccessibility == 1>>
+		<<if ($slaves[$i].devotion > 20)>>
+			She's @@.mediumaquamarine;thankful@@ to you for providing living spaces adapted to life with an enormous dick.
+			<<set $slaves[$i].trust += 1>>
+		<</if>>
+	<<else>>
+		Her giant penis make life a struggle: she has to drag it along as she moves, has trouble fitting into beds and sitting in chairs, and constantly has to make sure to not get her dick caught in doors.
+		<<if ($slaves[$i].devotion > 50)>>
+			 Since she's devoted to you, she just does her best.
+		<<elseif ($slaves[$i].trust > -20)>>
+			This torment makes her @@.gold;less trusting@@ of your willingness to look after her.
+			<<set $slaves[$i].trust -= 2>>
+		<<else>>
+			She already believes you capable of tormenting her, so this proof of your indifference @@.mediumorchid;angers her@@ daily.
+			<<set $slaves[$i].devotion -= 3>>
+		<</if>>
 	<</if>>
-  <</if>>
 <</if>>
 
 <<if canWalk($slaves[$i])>>
-<<if ($slaves[$i].balls > 90)>>
-	Her titanic balls rest upon the floor even when she stands.  She finds them @@.mediumorchid;annoying@@ to lug around.
-	<<set $slaves[$i].devotion -= 1>>
-<<elseif ($slaves[$i].balls > 50)>>
-	Her enormous balls are @@.mediumorchid;very uncomfortable@@ for her to carry.
-	<<set $slaves[$i].devotion -= 2>>
-<<elseif ($slaves[$i].balls > 25)>>
-	Her huge balls are @@.mediumorchid;uncomfortable@@ for her body.
-	<<set $slaves[$i].devotion -= 1>>
-<</if>>
+	<<if ($slaves[$i].balls > 90)>>
+		Her titanic balls rest upon the floor even when she stands.
+		<<if ($slaves[$i].devotion <= 50)>>
+			She finds them @@.mediumorchid;annoying@@ to lug around.
+			<<set $slaves[$i].devotion -= 1>>
+		<<else>>
+			They are a little annoying at times, but she bears them with pride.
+		<</if>>
+	<<elseif ($slaves[$i].balls > 50)>>
+		<<if ($slaves[$i].devotion <= 50)>>
+			Her enormous balls are @@.mediumorchid;very uncomfortable@@ for her to carry.
+			<<set $slaves[$i].devotion -= 2>>
+		<<else>>
+			She finds her enormous balls a little uncomfortable, but she bears their weight out of devotion to you.
+		<</if>>
+	<<elseif ($slaves[$i].balls > 25)>>
+		<<if ($slaves[$i].devotion <= 50)>>
+			Her huge balls are @@.mediumorchid;uncomfortable@@ for her body.
+			<<set $slaves[$i].devotion -= 1>>
+		<<else>>
+			She can't seem to get comfortable with her huge balls, but she keeps it to herself out of devotion.
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if ($slaves[$i].balls > 90)>>
-  <<if $ballsAccessibility == 1>>
-    <<if ($slaves[$i].devotion > 20)>>
-      She's @@.mediumaquamarine;thankful@@ to you for providing living spaces adapted to life with enormous testicles.
-      <<set $slaves[$i].trust += 1>>
-	<</if>>
-  <<else>>
-    Her giant balls make life a struggle: <<if $buttAccessibility == 1 || $pregAccessibility == 1 || $boobAccessibility == 1>>she has trouble using appliances and furniture, and has to be constantly mindful of things striking her oversensitive testicles, but at least the doors have already been widened for your other slaves<<else>>she barely fits through doors, has trouble using appliances and furniture, and has to be constantly mindful of things striking her oversensitive testicles<</if>>.
-    <<if ($slaves[$i].devotion > 50)>>
-      Since she's devoted to you, she just does her best.
-    <<elseif ($slaves[$i].trust > -20)>>
-      This torment makes her @@.gold;less trusting@@ of your willingness to look after her.
-      <<set $slaves[$i].trust -= 2>>
-    <<else>>
-      She already believes you capable of tormenting her, so this proof of your indifference @@.mediumorchid;angers her@@ daily.
-      <<set $slaves[$i].devotion -= 3>>
+	<<if $ballsAccessibility == 1>>
+		<<if ($slaves[$i].devotion > 20)>>
+			She's @@.mediumaquamarine;thankful@@ to you for providing living spaces adapted to life with enormous testicles.
+			<<set $slaves[$i].trust += 1>>
+		<</if>>
+	<<else>>
+		Her giant balls make life a struggle: <<if $buttAccessibility == 1 || $pregAccessibility == 1 || $boobAccessibility == 1>>she has trouble using appliances and furniture, and has to be constantly mindful of things striking her oversensitive testicles, but at least the doors have already been widened for your other slaves<<else>>she barely fits through doors, has trouble using appliances and furniture, and has to be constantly mindful of things striking her oversensitive testicles<</if>>.
+		<<if ($slaves[$i].devotion > 50)>>
+			Since she's devoted to you, she just does her best.
+		<<elseif ($slaves[$i].trust > -20)>>
+			This torment makes her @@.gold;less trusting@@ of your willingness to look after her.
+			<<set $slaves[$i].trust -= 2>>
+		<<else>>
+			She already believes you capable of tormenting her, so this proof of your indifference @@.mediumorchid;angers her@@ daily.
+			<<set $slaves[$i].devotion -= 3>>
+		<</if>>
 	<</if>>
-  <</if>>
 <</if>>
 
 <<if ($slaves[$i].hips > 2)>>
@@ -6407,32 +6514,42 @@
 
 <<if canWalk($slaves[$i])>>
 <<if ($slaves[$i].butt > 15)>>
-	Her butt is a massive burden to her. She dreads walking down narrow hallways and getting dressed in the morning. She lives a life of @@.mediumorchid;annoyance@@ over knocking things over, bumping people, and getting stuck in chairs with her godly ass.
-	<<set $slaves[$i].devotion -= 2>>
+	Her butt is a massive burden to her. She dreads walking down narrow hallways and getting dressed in the morning.
+	<<if ($slaves[$i].devotion <= 50)>>
+		She lives a life of @@.mediumorchid;annoyance@@ over knocking things over, bumping people, and getting stuck in chairs with her godly ass.
+		<<set $slaves[$i].devotion -= 2>>
+	<<else>>
+		She lives a life of minor annoyances knocking things over, bumping people and getting stuck in chairs with her godly ass, but bears them with pride out of devotion.
+	<</if>>
 <<elseif ($slaves[$i].butt > 10)>>
-	Her butt has gotten absolutely enormous. She finds it a  @@.mediumorchid;massive nuisance@@ to live with.
-	<<set $slaves[$i].devotion -= 1>>
+	Her butt has gotten absolutely enormous.
+	<<if ($slaves[$i].devotion <= 50)>>
+		She finds it a  @@.mediumorchid;massive nuisance@@ to live with.
+		<<set $slaves[$i].devotion -= 1>>
+	<<else>>
+		She finds it a massive nuisance to live with, but does anyway out of devotion to you.
+	<</if>>
 <</if>>
 <</if>>
 
 <<if ($slaves[$i].butt > 15)>>
-  <<if $buttAccessibility == 1>>
-    <<if ($slaves[$i].devotion > 20)>>
-      She's @@.mediumaquamarine;thankful@@ to you for providing living spaces adapted to life with way too much excess junk in the trunk.
-      <<set $slaves[$i].trust += 1>>
-	<</if>>
-  <<else>>
-    Her giant butt make life a struggle: <<if $buttAccessibility == 1 || $pregAccessibility == 1 || $boobAccessibility == 1>>she has trouble using furniture, and constantly bumps into things, but at least the doors have already been widened for your other slaves<<else>>she barely fits through doors, has trouble using furniture, and constantly bumps into things<</if>>.
-    <<if ($slaves[$i].devotion > 50)>>
-      Since she's devoted to you, she just does her best.
-    <<elseif ($slaves[$i].trust > -20)>>
-      This torment makes her @@.gold;less trusting@@ of your willingness to look after her.
-      <<set $slaves[$i].trust -= 1>>
-    <<else>>
-      She already believes you capable of tormenting her, so this proof of your indifference @@.mediumorchid;angers her@@ daily.
-      <<set $slaves[$i].devotion -= 2>>
+	<<if $buttAccessibility == 1>>
+		<<if ($slaves[$i].devotion > 20)>>
+			She's @@.mediumaquamarine;thankful@@ to you for providing living spaces adapted to life with way too much excess junk in the trunk.
+			<<set $slaves[$i].trust += 1>>
+		<</if>>
+	<<else>>
+		Her giant butt make life a struggle: <<if $buttAccessibility == 1 || $pregAccessibility == 1 || $boobAccessibility == 1>>she has trouble using furniture, and constantly bumps into things, but at least the doors have already been widened for your other slaves<<else>>she barely fits through doors, has trouble using furniture, and constantly bumps into things<</if>>.
+		<<if ($slaves[$i].devotion > 50)>>
+			Since she's devoted to you, she just does her best.
+		<<elseif ($slaves[$i].trust > -20)>>
+			This torment makes her @@.gold;less trusting@@ of your willingness to look after her.
+			<<set $slaves[$i].trust -= 1>>
+		<<else>>
+			She already believes you capable of tormenting her, so this proof of your indifference @@.mediumorchid;angers her@@ daily.
+			<<set $slaves[$i].devotion -= 2>>
+		<</if>>
 	<</if>>
-  <</if>>
 <</if>>
 
 <</if>>
@@ -6441,9 +6558,9 @@
 <<if ($curativeSideEffects != 0)>>
 <<if ($slaves[$i].chem > 10)>>
 <<if random(1,200) < $slaves[$i].chem + $slaves[$i].physicalAge - $slaves[$i].health - (5*$slaves[$i].curatives)>>
-	<<set $seed to random(1,10)>>
+	<<set _effect = random(1,10)>>
 	<<set $slaves[$i].health -= 10>>
-	<<switch $seed>>
+	<<switch _effect>>
 	<<case 1>>
 		A routine medical scan detects a small, benign growth in one of $possessive breasts. The autosurgery removes it with only @@.red;minor health consequences,@@
 	<<case 2>>
@@ -6557,7 +6674,7 @@
 			<</if>>
 		<<elseif ($slaves[$i].accent == 1) && ($slaves[$i].speechRules == "accent elimination")>>
 			<<if ($week - $slaves[$i].weekAcquired) > (10 + _minweeks)>>
-		
+
 				<<set $slaves[$i].accent -= 1>>
 				$pronounCap does her best to speak proper, unaccented $language, as encouraged by the rules. @@.green;$possessiveCap accent has diminished to imperceptibility.@@
 			<</if>>
@@ -6574,7 +6691,7 @@
 
 <<if $studio == 1>>
 <<if $slaves[$i].pornFameSpending > 0>>
-	<<set $seed to $slaves[$i].pornFame>>
+	<<set _oldFame = $slaves[$i].pornFame>>
 	<<if ($slaves[$i].pornFame < 35) && ($slaves[$i].prestige > 1)>>
 	Interest in porn of $object is very high, since $pronoun's already quite prestigious.
 	<<set $slaves[$i].pornFame += 1>>
@@ -6583,7 +6700,7 @@
 	<<set $slaves[$i].pornFame += 1>>
 	<</if>>
 	<<set $slaves[$i].pornFame += ($slaves[$i].pornFameSpending/1000)>>
-	<<if ($slaves[$i].prestige < 3) && ($slaves[$i].pornFame >= 100) && ($seed < 100)>>
+	<<if ($slaves[$i].prestige < 3) && ($slaves[$i].pornFame >= 100) && (_oldFame < 100)>>
 		<<set $slaves[$i].prestige to 3>>
 		@@.green;$pronounCap has become world famous for $possessive career in slave pornography!@@ Millions are now intimately familiar with
 		<<if $slaves[$i].fuckdoll > 0>>
@@ -6641,7 +6758,7 @@
 		<</if>>
 		<<set $trinkets.push($desc)>>
 		so it is now extremely prestigious to own $object.
-	<<elseif ($slaves[$i].prestige < 2) && ($slaves[$i].pornFame >= 35) && ($seed < 35)>>
+	<<elseif ($slaves[$i].prestige < 2) && ($slaves[$i].pornFame >= 35) && (_oldFame < 35)>>
 	<<set $slaves[$i].prestige to 2>>
 	@@.green;$pronounCap has become famous for $possessive recurring role in slave pornography!@@ Her many fans relish
 	<<if $slaves[$i].fuckdoll > 0>>
@@ -6685,7 +6802,7 @@
 		the sight of her being fucked,
 	<</if>>
 	so it is now very prestigious to own $object.
-	<<elseif ($slaves[$i].prestige < 1) && ($slaves[$i].pornFame >= 10) && ($seed < 10)>>
+	<<elseif ($slaves[$i].prestige < 1) && ($slaves[$i].pornFame >= 10) && (_oldFame < 10)>>
 	<<set $slaves[$i].prestige = 1>>
 	@@.green;$pronounCap has become well known from slave pornography!@@ Thousands have enjoyed
 	<<if $slaves[$i].fuckdoll > 0>>
diff --git a/src/uncategorized/saPleaseYou.tw b/src/uncategorized/saPleaseYou.tw
index c5a8bd9d0e0ee4943e8e4fe8d4dd1036c07121d7..a1a5d13fe8e27aff9ade30e689afba162f7f2987 100644
--- a/src/uncategorized/saPleaseYou.tw
+++ b/src/uncategorized/saPleaseYou.tw
@@ -625,7 +625,7 @@ serves you this week.
 			mouth
 		<</if>>
 		available for you at all times.
-		<<if ($slaves[$i].dick != 0) && canAchieveErection($slaves[$i])>>
+		<<if ($slaves[$i].dick != 0) && canPenetrate($slaves[$i])>>
 			Every time $possessive beloved <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> fucks $object, $pronoun gets a hardon.
 		<<elseif ($slaves[$i].dick != 0) && canDoAnal($slaves[$i])>>
 			$pronounCap doesn't get a hardon as you use $object, but $pronoun comes from the prostate stimulation when $possessive beloved <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> uses $possessive butt.
@@ -661,7 +661,7 @@ serves you this week.
 
 	<<elseif ($slaves[$i].devotion > 20)>>
 		Whenever you feel the need, you use whichever of $possessive available holes that appears most appealing at the moment, since $pronoun's up for anything.
-		<<if ($slaves[$i].dick != 0) && canAchieveErection($slaves[$i])>>
+		<<if ($slaves[$i].dick != 0) && canPenetrate($slaves[$i])>>
 			By the end of the week $pronoun gets a hardon when you use $object.
 		<</if>>
 			<<if ($fuckSlaves <= $PC.sexualEnergy/2)>>
@@ -701,7 +701,7 @@ serves you this week.
 			mouth
 		<</if>>
 		to save herself from worse treatment than mere rape.
-		<<if ($slaves[$i].dick != 0) && canAchieveErection($slaves[$i])>>
+		<<if ($slaves[$i].dick != 0) && canPenetrate($slaves[$i])>>
 			By the end of the week $pronoun gets a hardon when you use $object.
 		<</if>>
 			<<if ($fuckSlaves <= $PC.sexualEnergy/2)>>
diff --git a/src/uncategorized/seBirth.tw b/src/uncategorized/seBirth.tw
index 1ff3a21a4dc6620fbe2e9c0e856cc93eaf9cdd7e..568021a37b4380d869aedc3f3a54609a3936f880 100644
--- a/src/uncategorized/seBirth.tw
+++ b/src/uncategorized/seBirth.tw
@@ -157,7 +157,9 @@
 <<if $slaves[$i].heels == 1>>
 	<<set $suddenBirth += 3>>
 <</if>>
-<<if $slaves[$i].boobs > 7500>>
+<<if $slaves[$i].boobs > 40000>>
+	<<set $suddenBirth += 3>>
+<<elseif $slaves[$i].boobs > 20000>>
 	<<set $suddenBirth += 1>>
 <</if>>
 <<if $slaves[$i].butt > 6>>
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index 23cf20c4813fe039f6ff318b200cb01541f708f0..444d317e611bb2fc3ccc97554e85e247e36bfcc0 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -819,11 +819,13 @@
 			<<set $activeSlave.drugs = "testicle enhancement">>
 		<</switch>>
 		<<replace "#drugs">><strong>$activeSlave.drugs</strong><</replace>>
+		<<goto "Slave Interact">>
 	<</link>>
 <<elseif $activeSlave.drugs == "breast injections" || $activeSlave.drugs == "butt injections" || $activeSlave.drugs == "penis enhancement" || $activeSlave.drugs == "testicle enhancement">>
 	| <<link "Intensify">>
 		<<set $activeSlave.drugs = "intensive " + $activeSlave.drugs>>
 		<<replace "#drugs">><strong>$activeSlave.drugs</strong><</replace>>
+		<<goto "Slave Interact">>
 	<</link>>
 <</if>>
 <<if ($activeSlave.intelligence > -2)>>
diff --git a/src/uncategorized/slaveShelter.tw b/src/uncategorized/slaveShelter.tw
index f9d647d28261a7fb45c2f4faa1eb2763892a938b..c95e551550699d6cfc8d8391d8163cf27b4a45c6 100644
--- a/src/uncategorized/slaveShelter.tw
+++ b/src/uncategorized/slaveShelter.tw
@@ -182,9 +182,9 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.trust = random(-100,-75)>>
 	<<set $shelterSlave.health = random(-50,-30)>>
 	<<set $shelterSlave.face = random(-60,-20)>>
-	<<set $shelterSlave.dick to random(1,2)>>
-	<<set $shelterSlave.balls to 0>>
-	<<set $shelterSlave.anus to 4>>
+	<<set $shelterSlave.dick = random(1,2)>>
+	<<set $shelterSlave.balls = 0>>
+	<<set $shelterSlave.anus = 4>>
 	<<set $shelterSlave.oralSkill = 0>>
 	<<set $shelterSlave.analSkill = 15>>
 	<<set $shelterSlave.whoreSkill = 0>>
@@ -204,9 +204,9 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.trust = random(-100,-75)>>
 	<<set $shelterSlave.health = random(-50,-30)>>
 	<<set $shelterSlave.face = random(-60,-20)>>
-	<<set $shelterSlave.dick to random(4,5)>>
-	<<set $shelterSlave.balls to random(4,5)>>
-	<<set $shelterSlave.anus to 0>>
+	<<set $shelterSlave.dick = random(4,5)>>
+	<<set $shelterSlave.balls = random(4,5)>>
+	<<set $shelterSlave.anus = 0>>
 	<<set $shelterSlave.oralSkill = 0>>
 	<<set $shelterSlave.analSkill = 0>>
 	<<set $shelterSlave.whoreSkill = 0>>
@@ -299,7 +299,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.dick = random(5,6)>>
 	<</if>>
 	<<if ($shelterSlave.balls > 0) && (random(1,2) == 1)>>
-	<<set $shelterSlave.balls = random(5,6)>>
+	<<set $shelterSlave.balls = random(5,10)>>
 	<</if>>
 	<<if (random(1,3) == 1)>>
 	<<set $shelterSlave.boobs += 100*random(10,30)>>
diff --git a/src/uncategorized/spaReport.tw b/src/uncategorized/spaReport.tw
index fe2a8a2be4bd36491695d68e52142f6cafec0f6a..ad10504fc1c093369c6cb09ab8e2aafc2f5a8565 100644
--- a/src/uncategorized/spaReport.tw
+++ b/src/uncategorized/spaReport.tw
@@ -135,7 +135,7 @@
 			She does her best to soothe the famous entertainer, $slaves[$i].slaveName, letting her relax in blissful peace.
 			<<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>>
 		<<case "She is remembered for winning best in show as a cockmilker.">>
-			<<if ($slaves[$i].balls > 4) && ($slaves[$i].dick != 0)>>
+			<<if ($slaves[$i].balls > 6) && ($slaves[$i].dick != 0)>>
 				<<if $Attendant.fetish == "cumslut">>
 					She can't keep her hands off $slaves[$i].slaveName's cock and balls, but she doesn't mind being milked constantly. Before long, strands of cum can be found floating all throughout the bath.
 					<<set $Attendant.fetishStrength += 4, $slaves[_FLs].fetishStrength += 4>>
diff --git a/src/uncategorized/surgeryDegradation.tw b/src/uncategorized/surgeryDegradation.tw
index b9c866b4823e761f57150eb2c9917216bf54553d..51b58edb1fb983989af0d6ed190f92f0be719643 100644
--- a/src/uncategorized/surgeryDegradation.tw
+++ b/src/uncategorized/surgeryDegradation.tw
@@ -841,6 +841,8 @@ As the remote surgery's long recovery cycle completes,
 	
 <<case "fat graft">>
 	<<set $activeSlave.boobs += ($boobFat*100), $activeSlave.butt += ($buttFat)>>
+	<<set $activeSlave.boobs = Math.clamp($activeSlave.boobs, 0, 50000)>>
+	<<set $activeSlave.butt = Math.clamp($activeSlave.butt, 0, 20)>>
 	<<if ($activeSlave.behavioralFlaw == "anorexic")>>
 		<<if canSee($activeSlave)>>She looks over her new thin figure experimentally<<else>>She shifts her weight experimentally<</if>> and turns to you with a smile to show it off.
 		As an anorexic @@.hotpink;she thinks you have brought her closer to the true ideal.@@
diff --git a/src/utility/assayWidgets.tw b/src/utility/assayWidgets.tw
index deb2dd0a4d35a9436a441ca9325016782b67a0c7..4927bcb11702d7654f74442b56c97a28e3d3b74e 100644
--- a/src/utility/assayWidgets.tw
+++ b/src/utility/assayWidgets.tw
@@ -392,58 +392,60 @@
 
 <<if ($arcologies[0].FSTransformationFetishist > 20 && $arcologies[0].FSSlimnessEnthusiast == "unset") || ($arcologies[0].FSAssetExpansionist > 20)>>
 	<<if $args[0].boobs <= 500>>
-	<<set $beauty += (0.02*($args[0].boobs-250))>> /*5*/
+		<<set $beauty += (0.02*($args[0].boobs-250))>> /*5*/
 	<<elseif $args[0].boobs <= 1500>>
-	<<set $beauty += 5+(0.015*($args[0].boobs-500))>> /*20*/
+		<<set $beauty += 5+(0.015*($args[0].boobs-500))>> /*20*/
 	<<elseif $args[0].boobs <= 3000>>
-	<<set $beauty += 20+(0.01*($args[0].boobs-1500))>> /*42.5*/
+		<<set $beauty += 20+(0.01*($args[0].boobs-1500))>> /*42.5*/
+	<<elseif $args[0].boobs <= 25000>>
+		<<set $beauty += 50+(0.005*($args[0].boobs-3000))>> /*160 - this might need to be lowered. Maybe drop the 50? Otherwise break it down more.*/
 	<<else>>
-	<<set $beauty += 50+(0.005*($args[0].boobs-3000))>> /*160 - this might need to be lowered. Maybe drop the 50? Otherwise break it down more.*/ 
+		<<set $beauty += 165+($args[0].boobs/10000)>>
 	<</if>>
 	<<if $args[0].butt <= 2>>
-	<<set $beauty += (2*($args[0].butt-1))>> /*2*/
+		<<set $beauty += (2*($args[0].butt-1))>> /*2*/
 	<<elseif $args[0].butt <= 4>>
-	<<set $beauty += 2+(1.5*($args[0].butt-2))>> /*5*/
+		<<set $beauty += 2+(1.5*($args[0].butt-2))>> /*5*/
 	<<elseif $args[0].butt <= 10>>
-	<<set $beauty += 5+(1*($args[0].butt-4))>> /*11*/
+		<<set $beauty += 5+(1*($args[0].butt-4))>> /*11*/
 	<<else>>
-	<<set $beauty += 7+(.5*($args[0].butt-5))>> /*14.5*/
+		<<set $beauty += 7+(.5*($args[0].butt-5))>> /*14.5*/
 	<</if>> /* maybe buff butts? */
 <<elseif ($arcologies[0].FSSlimnessEnthusiast > 20)>>
 	<<if $args[0].boobs <= 500>>
-	<<set $beauty += (0.05*($args[0].boobs))>> /*25 - buff me to be in line with higher end asset exp*/
+		<<set $beauty += (0.05*($args[0].boobs))>> /*25 - buff me to be in line with higher end asset exp*/
 	<<elseif $args[0].boobs <= 1000>>
-	<<set $beauty += 10>>
+		<<set $beauty += 10>>
 	<<elseif $args[0].boobs <= 3000>>
-	<<set $beauty += 5>>
+		<<set $beauty += 5>>
 	<<else>>
-	<<set $beauty -= 5+(0.005*($args[0].boobs-3000))>> /*-110*/
+		<<set $beauty -= 5+(0.005*($args[0].boobs-3000))>> /*-110*/
 	<</if>>
 	<<if $args[0].butt <= 3>>
-	<<set $beauty += 12+(3*($args[0].butt-1))>> /*18 buff if asses get buffed*/
+		<<set $beauty += 12+(3*($args[0].butt-1))>> /*18 buff if asses get buffed*/
 	<<elseif $args[0].butt <= 5>>
-	<<set $beauty += 9>>
+		<<set $beauty += 9>>
 	<<else>>
-	<<set $beauty -= 10+($args[0].butt*3)>> /*-70*/
+		<<set $beauty -= 10+($args[0].butt*3)>> /*-70*/
 	<</if>>
 <<else>>
 	<<if $args[0].boobs <= 1200>>
-	<<set $beauty += (0.02*($args[0].boobs-200))>> /*20*/
+		<<set $beauty += (0.02*($args[0].boobs-200))>> /*20*/
 	<<elseif $args[0].boobs <= 2400>>
-	<<set $beauty += 20+(0.01*($args[0].boobs-1200))>> /*32*/
+		<<set $beauty += 20+(0.01*($args[0].boobs-1200))>> /*32*/
 	<<elseif $args[0].boobs <= 3600>>
-	<<set $beauty += 32+(0.005*($args[0].boobs-2400))>> /*38*/
+		<<set $beauty += 32+(0.005*($args[0].boobs-2400))>> /*38*/
 	<<else>>
 	<<set $beauty += 38>>
 	<</if>>
 	<<if $args[0].butt <= 2>>
-	<<set $beauty += (2*($args[0].butt-1))>> /*2*/
+		<<set $beauty += (2*($args[0].butt-1))>> /*2*/
 	<<elseif $args[0].butt <= 4>>
-	<<set $beauty += 2+(1.5*($args[0].butt-2))>> /*5*/
+		<<set $beauty += 2+(1.5*($args[0].butt-2))>> /*5*/
 	<<elseif $args[0].butt <= 8>>
-	<<set $beauty += 2+(1.5*($args[0].butt-2))>> /*11*/
+		<<set $beauty += 2+(1.5*($args[0].butt-2))>> /*11*/
 	<<else>>
-	<<set $beauty += 9>>
+		<<set $beauty += 9>>
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSTransformationFetishist > 20>> /* the cost of using AE's values */
@@ -649,7 +651,7 @@
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSGenderRadicalist != "unset">>
-	<<if $args[0].preg > 5 && $arcologies[0].FSRepopulationFocus == "unset" && $arcologies[0].FSRestart == "unset" && $args[0].mpreg == 0>>
+	<<if ($args[0].bellyPreg >= 500) && $arcologies[0].FSRepopulationFocus == "unset" && $arcologies[0].FSRestart == "unset" && $args[0].mpreg == 0>>
 		<<if $args[0].mpreg == 1>>
 			<<set $beauty = ($beauty*0.9)>>
 		<<else>>
@@ -1199,7 +1201,7 @@
 	<<set $FResult -= 2>>
 	<</if>>
 <<elseif $arcologies[0].FSRestart > 20>>
-	<<if $args[0].preg > 5 && $args[0].breedingMark == 1>>
+	<<if $args[0].bellyPreg >= 500 && $args[0].breedingMark == 1>>
 		<<set $FResult += 1>>
 	<<elseif $args[0].preg > 10>>
 		<<set $FResult -= 10>>
@@ -1599,7 +1601,7 @@
 	<</if>>
 <</if>>
 
-<<if $args[0].dick > 5 && $args[0].balls > 5 && $args[0].boobs > 5000>>
+<<if $args[0].dick > 9 && $args[0].balls > 9 && $args[0].boobs > 12000>>
 	<<set $desc = "hyper " + $desc>>
 <</if>>
 
@@ -1613,8 +1615,10 @@
 	<<set $desc = "milky " + $desc>>
 <</if>>
 
-<<if $args[0].boobs > 7500>>
+<<if $args[0].boobs > 20000>>
 	<<set $desc = "supermassive titted " + $desc>>
+<<elseif $args[0].boobs > 10000>>
+	<<set $desc = "giant titted " + $desc>>
 <<elseif $args[0].boobs > 4000>>
 	<<set $desc = "huge titted " + $desc>>
 <<elseif $args[0].boobs > 1000>>
@@ -1960,7 +1964,7 @@
 				<</if>>
 			<</if>>
 		<</if>>
-		<<if $args[0].dick > 5 && $args[0].balls > 5 && $args[0].boobs > 5000>>
+		<<if $args[0].dick > 6 && $args[0].balls > 6 && $args[0].boobs > 12000>>
 			<<set $desc = "hyper " + $desc>>
 		<</if>>
 	<<else>>
@@ -2172,11 +2176,11 @@
 	<<set $tatScore += 0.75>>
 <<elseif (($args[0].preg > 20) && ($args[0].pregType >= 20)) || (($args[0].preg > 30) && ($args[0].pregType >= 10)) || ($args[0].bellyImplant >= 16000)>>
 	<<set $tatScore += 1>>
-<<elseif (($args[0].preg > 10) && ($args[0].pregType >= 20)) || (($args[0].preg > 20) && ($args[0].pregType >= 10)) || ($args[0].preg > 30) || ($args[0].inflation == 3) || ($args[0].bellyImplant >= 8000)>>
+<<elseif ($args[0].belly >= 10000) || ($args[0].inflation == 3) || ($args[0].bellyImplant >= 8000)>>
 	<<set $tatScore += 1>>
-<<elseif (($args[0].preg > 0) && ($args[0].pregType >= 20)) || (($args[0].preg > 10) && ($args[0].pregType >= 10)) || ($args[0].preg > 20) || ($args[0].inflation == 2) || ($args[0].bellyImplant >= 4000)>>
+<<elseif ($args[0].belly >= 5000) && ($args[0].pregType >= 20)) || (($args[0].preg > 10) && ($args[0].pregType >= 10)) || ($args[0].preg > 20) || ($args[0].inflation == 2) || ($args[0].bellyImplant >= 4000)>>
 	<<set $tatScore += 0.5>>
-<<elseif (($args[0].preg > 0) && ($args[0].pregType >= 10)) || ($args[0].preg > 10) || ($args[0].inflation == 1) || ($args[0].bellyImplant >= 2000)>>
+<<elseif ($args[0].belly >= 1500) || ($args[0].preg > 10) || ($args[0].inflation == 1) || ($args[0].bellyImplant >= 2000)>>
 	<<set $tatScore += 0.25>>
 <<else>>
 	<<set $tatScore += 0.1>>
diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw
index bd241b6fc6288647b6acc5ada93a3c6369157d12..d4df63a46817dd0b7def2c9ecbb7905ec42ca297 100644
--- a/src/utility/descriptionWidgetsFlesh.tw
+++ b/src/utility/descriptionWidgetsFlesh.tw
@@ -13,9 +13,9 @@
 	<<switch $activeSlave.clothes>>
 	<<case "a Fuckdoll suit">>
 		$activeSlave.slaveName's Fuckdoll suit
-		<<if $activeSlave.boobs > 20000>>
+		<<if $activeSlave.boobs > 24000>>
 			fits each of its awe-inspiring masses of breastflesh perfectly.
-		<<elseif $activeSlave.boobs > 10000>>
+		<<elseif $activeSlave.boobs > 12000>>
 			fits each of its enormous masses of breastflesh perfectly.
 		<<elseif $activeSlave.boobs > 2000>>
 			fits each of its huge breasts individually.
@@ -27,9 +27,9 @@
 			is flat across its chest.
 		<</if>>
 	<<case "conservative clothing">>
-		<<if $activeSlave.boobs > 20000>>
-			$activeSlave.slaveName is wearing a massively oversized custom sweater since nothing else comes close to modestly covering $possessive tits. Even so, it's stretched taut just struggling to cover $possessive nipples, causing acres of breast flesh to spill out from under it and through the neckhole.
-		<<elseif $activeSlave.boobs > 10000>>
+		<<if $activeSlave.boobs > 24000>>
+			$activeSlave.slaveName is wearing a tentlike sweater tailored to cover her $possessive tits.
+		<<elseif $activeSlave.boobs > 12000>>
 			$activeSlave.slaveName is wearing a massively oversized custom sweater since nothing else comes close to modestly covering $possessive tits. Even so, it's stretched taut struggling to contain their immense mass.
 		<<elseif $activeSlave.boobs > 8000>>
 			$activeSlave.slaveName is wearing an oversized sweater, since that's the only top that will come close to covering $possessive tits. Even so, it's stretched taut just struggling to cover $possessive nipples.
@@ -78,7 +78,7 @@
 			$activeSlave.slaveName's breasts are covered in a sexy sheen of body oil.
 		<</if>>
 	<<case "a toga">>
-		<<if $activeSlave.boobs > 6000>>
+		<<if $activeSlave.boobs > 12000>>
 			$activeSlave.slaveName's breasts are too big to cover with $possessive toga, so $pronoun leaves them hanging free.
 		<<elseif $activeSlave.boobs < 300>>
 			$activeSlave.slaveName is wearing $possessive toga so as to leave one $activeSlave.nipples nipple bare.
@@ -95,7 +95,7 @@
 		<</if>>
 	<<case "a slutty qipao">>
 		$activeSlave.slaveName's qipao
-		<<if $activeSlave.boobs > 6000>>
+		<<if $activeSlave.boobs > 12000>>
 			can't contain the immense size of $possessive breasts, so $pronoun wears a modified variant that lets $possessive tits hang free.
 		<<elseif $activeSlave.boobs > 4000>>
 			barely covers $possessive breasts, it strains to contain their absurd size. Breast flesh spills from any gap it can find.
@@ -108,7 +108,9 @@
 		<</if>>
 	<<case "uncomfortable straps">>
 		$activeSlave.slaveName's slave
-		<<if $activeSlave.boobs > 2000>>
+		<<if $activeSlave.boobs > 12000>>
+			outfit includes a network of straps to support her breasts, radiating outwards from the steel rings around $possessive nipples.
+		<<elseif $activeSlave.boobs > 2000>>
 			outfit has special straps for $possessive massive boobs: one strap down the front of each with steel rings to let $possessive nipples through, and a strap around the base of each, painfully squeezing $possessive breasts out to make them seem even bigger.
 		<<elseif $activeSlave.boobs > 800>>
 			outfit's straining straps restrain the flesh of $possessive tits like a string bikini, with steel rings to let $possessive nipples through.
@@ -119,9 +121,9 @@
 		<</if>>
 	<<case "shibari ropes">>
 		$activeSlave.slaveName's
-		<<if $activeSlave.boobs > 2000>>
+		<<if $activeSlave.boobs > 12000>>
 			breasts are restrained by yards and yards of rope.
-		<<elseif $activeSlave.boobs > 800>>
+		<<elseif $activeSlave.boobs > 2000>>
 			boobs are tightly bound with rope, soft flesh pushing out from between them.
 		<<elseif $activeSlave.boobs < 300>>
 			flat chest is tightly bound with rope, drawing attention to $possessive flat chest.
@@ -141,9 +143,9 @@
 		<</if>>
 	<<case "attractive lingerie">>
 		$activeSlave.slaveName's
-		<<if $activeSlave.boobs > 6000>>
+		<<if $activeSlave.boobs > 12000>>
 			lace bra cannot cover the whole breast; its cups are half-moon shaped, and designed to offer what support they can to the bottom of them. They have disappeared completely under the immense quantity of breast flesh.
-		<<elseif $activeSlave.boobs > 2000>>
+		<<elseif $activeSlave.boobs > 4000>>
 			lace bra cannot cover the whole breast; its cups are half-moon shaped, and designed to offer what support they can to the bottom of them.
 		<<elseif $activeSlave.boobs > 800>>
 			sturdy lace bra supports $possessive huge breasts.
@@ -174,7 +176,9 @@
 		<</if>>
 	<<case "a nice maid outfit">>
 		$activeSlave.slaveName's maid dress front is almost conservative, covering $possessive
-		<<if $activeSlave.boobs > 6000>>
+		<<if $activeSlave.boobs > 12000>>
+			immense breasts with a tentlike billow of white fabric.
+		<<elseif $activeSlave.boobs > 6000>>
 			immense breasts as best it can; it barely succeeds at its task, straining at the seams and allowing breast flesh to spill out of every available gap.
 		<<elseif $activeSlave.boobs > 2000>>
 			breasts, though it cannot conceal their enormous mass.
@@ -185,7 +189,9 @@
 		<</if>>
 	<<case "a fallen nuns habit">>
 		$activeSlave.slaveName's latex habit includes a
-		<<if $activeSlave.boobs > 2000>>
+		<<if $activeSlave.boobs > 20000>>
+			half-corset, but it's completely invisible, being hidden under $possessive inhuman tits.
+		<<elseif $activeSlave.boobs > 4000>>
 			half-corset, but only the bottom edge is visible: the rest is swallowed up under $possessive gigantic tits.
 		<<elseif $activeSlave.boobs > 800>>
 			half-corset to force $possessive big boobs up and forward, forming a lot of cleavage even though they're bare.
@@ -196,7 +202,7 @@
 		<</if>>
 	<<case "a chattel habit">>
 		$activeSlave.slaveName's chattel habit's scapular covers $possessive shoulders and arms, but is open in front, leaving $possessive
-		<<if $activeSlave.boobs > 2000>>
+		<<if $activeSlave.boobs > 4000>>
 			boobs completely bare. It tucks into a golden belt, though this is buried under $possessive breasts.
 		<<elseif $activeSlave.boobs > 300>>
 			boobs completely bare. It tucks into a golden belt, which is cinched up right under $possessive breasts.
@@ -206,8 +212,10 @@
 	<<case "a penitent nuns habit">>
 		If $pronoun fails to hold $possessive torso totally still, the coarse cloth of $possessive top agonizingly scrapes across $possessive nipples, bare under $possessive habit.
 	<<case "a string bikini">>
-		<<if $activeSlave.boobs > 2000>>
-			With even the slightest movement, $activeSlave.slaveName's huge breasts pull $possessive nipples out from under the tiny scrap of cloth that $possessive string bikini affords them.
+		<<if $activeSlave.boobs > 12000>>
+			$activeSlave.slaveName's breasts are so large that the little scraps of cloth intended for $possessive nipples can't really stay centered over them.
+		<<elseif $activeSlave.boobs > 2000>>
+			$activeSlave.slaveName's huge breasts constantly pull $possessive nipples out from under the tiny scrap of cloth that $possessive string bikini affords them.
 		<<elseif $activeSlave.boobs > 800>>
 			$activeSlave.slaveName's big breasts threaten to break out of $possessive straining string bikini top.
 		<<elseif $activeSlave.boobs < 300>>
@@ -217,9 +225,9 @@
 		<</if>>
 	<<case "clubslut netting">>
 		$activeSlave.slaveName's
-		<<if $activeSlave.boobs > 6000>>
+		<<if $activeSlave.boobs > 12000>>
 			immense boobs hang out the holes they tore in $possessive clubslut netting.
-		<<elseif $activeSlave.boobs > 2000>>
+		<<elseif $activeSlave.boobs > 4000>>
 			clubslut netting is stretched to the breaking point by $possessive massive boobs.
 		<<elseif $activeSlave.boobs > 800>>
 			clubslut netting is stretched by $possessive big breasts.
@@ -230,9 +238,9 @@
 		<</if>>
 	<<case "a cheerleader outfit">>
 		$activeSlave.slaveName's cheerleader top
-		<<if $activeSlave.boobs > 6000>>
+		<<if $activeSlave.boobs > 12000>>
 			can't support $possessive giant bust and is lost beneath $possessive immense breasts.
-		<<elseif $activeSlave.boobs > 2000>>
+		<<elseif $activeSlave.boobs > 4000>>
 			is strongly engineered, but it can barely support $possessive enormous bust.
 		<<elseif $activeSlave.boobs > 800>>
 			gives $possessive an acre of cleavage.
@@ -243,20 +251,20 @@
 		<</if>>
 	<<case "cutoffs and a t-shirt">>
 		$activeSlave.slaveName's
-		<<if $activeSlave.boobs > 4000>>
-			tits are so huge that $possessive t-shirt rests pathetically atop their quivering mass.
-		<<elseif $activeSlave.boobs > 2000>>
+		<<if $activeSlave.boobs > 12000>>
+			tits are so huge that $possessive t-shirt rests pathetically atop their mass.
+		<<elseif $activeSlave.boobs > 4000>>
 			tits are so big that $possessive t-shirt barely comes down over $possessive nipples, leaving a lot of underboob hanging out.
-		<<elseif $activeSlave.boobs > 800>>
+		<<elseif $activeSlave.boobs > 1200>>
 			t-shirt is held out and away from $possessive midriff by $possessive big breasts.
 		<<else>>
 			t-shirt is tied up to bare $possessive midriff.<<if $activeSlave.boobs < 300>> $possessiveCap <<print either("androgynous", "flat")>> breasts are barely there.<</if>>
 		<</if>>
 	<<case "a slutty outfit">>
 		$activeSlave.slaveName
-		<<if $activeSlave.boobs > 5000>>
+		<<if $activeSlave.boobs > 12000>>
 			has given up trying to contain $possessive immense bust and is now choosing outfits that allow $possessive breasts to hang free.
-		<<elseif $activeSlave.boobs > 2000>>
+		<<elseif $activeSlave.boobs > 4000>>
 			has to be careful choosing slutty outfits that can restrain $possessive massive breasts.
 		<<elseif $activeSlave.boobs > 800>>
 			has to be careful choosing slutty outfits that can handle $possessive big breasts.
@@ -267,9 +275,9 @@
 		<</if>>
 	<<case "a slave gown">>
 		$activeSlave.slaveName's slave gown
-		<<if $activeSlave.boobs > 10000>>
+		<<if $activeSlave.boobs > 12000>>
 			is no longer able to cover $possessive immense breasts. Instead, it has been redesigned to draw the eye to them.
-		<<elseif $activeSlave.boobs > 2000>>
+		<<elseif $activeSlave.boobs > 4000>>
 			is carefully engineered and is somehow able to cover the enormous mass of $possessive breasts.
 		<<elseif $activeSlave.boobs > 800>>
 			is carefully tailored, tastefully covering yet enhancing $possessive big breasts.
@@ -279,8 +287,8 @@
 			subtly accentuates $possessive breasts.
 		<</if>>
 	<<case "a halter top dress">>
-		<<if $activeSlave.boobs > 6000>>
-			$activeSlave.slaveName's immense breasts are far too big for $possessive dress to contain; instead it has been redesigned to allow them to hang freely while still drawing attention to them.
+		<<if $activeSlave.boobs > 12000>>
+			$activeSlave.slaveName's immense breasts are far too big for $possessive dress to contain; instead it has been redesigned to allow them to hang freely.
 		<<elseif $activeSlave.boobs > 4000>>
 			$activeSlave.slaveName's enormous breasts are spill out from every available space in $possessive beautiful halter top dress.
 		<<elseif $activeSlave.boobs > 2000>>
@@ -293,8 +301,8 @@
 			$activeSlave.slaveName is wearing a beautiful silky halter top dress, almost as if it was sculpted to match $possessive frame.
 		<</if>>
 	<<case "a ball gown">>
-		<<if $activeSlave.boobs > 6000>>
-			$activeSlave.slaveName fabulous silken ball gown is pulled down to allow $possessive oversized breasts to hang free.
+		<<if $activeSlave.boobs > 12000>>
+			$activeSlave.slaveName fabulous silken ball gown is designed to allow $possessive oversized breasts to hang free.
 		<<elseif $activeSlave.boobs > 4000>>
 			$activeSlave.slaveName somehow managed to cram the immense mass of $possessive breasts inside a fabulous silken ball gown. They spill out of every available gap.
 		<<elseif $activeSlave.boobs > 2000>>
@@ -308,9 +316,9 @@
 		<</if>>
 	<<case "slutty business attire">>
 		$activeSlave.slaveName's suit jacket
-		<<if $activeSlave.boobs > 2000>>
+		<<if $activeSlave.boobs > 12000>>
 			and blouse are both open in front, leaving $possessive boobs bare, since there's no way $pronoun could button $possessive clothes over $possessive tits.
-		<<elseif $activeSlave.boobs > 800>>
+		<<elseif $activeSlave.boobs > 2000>>
 			is open in front, and $possessive straining blouse barely restrains $possessive tits.
 		<<elseif $activeSlave.boobs < 300>>
 			is open in front, tightly hugging $possessive flat chest and prominently diplaying $possessive $activeSlave.nipples nipples.
@@ -319,7 +327,7 @@
 		<</if>>
 	<<case "nice business attire">>
 		$activeSlave.slaveName's
-		<<if $activeSlave.boobs > 6000>>
+		<<if $activeSlave.boobs > 12000>>
 			tits are so immense that $possessive specially tailored blouse and jacket are incapable of being buttoned up.
 		<<elseif $activeSlave.boobs > 4000>>
 			tits are so huge that they prevent $possessive jacket from closing. Every motion $pronoun makes threatens to turn $possessive blouse buttons into ballistics.
@@ -345,10 +353,10 @@
 			$activeSlave.slaveName's latex catsuit fits $possessive like a second skin, showing off every detail of $possessive nipples and breasts.
 		<</if>>
 	<<case "a military uniform">>
-		<<if $activeSlave.boobs > 6000>>
+		<<if $activeSlave.boobs > 12000>>
 			$activeSlave.slaveName's tits are so immense that $possessive specially tailored shirt and tunic are incapable of being buttoned up.
 		<<elseif $activeSlave.boobs > 4000>>
-			$activeSlave.slaveName's tits are so huge that they prevent $possessive tunic from closing. Every motion $pronoun makes threatens to turn $possessive shirt buttons into ballistics.
+			$activeSlave.slaveName's tits are so huge that they prevent $possessive tunic from closing. Every motion threatens to turn $possessive shirt buttons into shrapnel.
 		<<elseif $activeSlave.boobs > 2000>>
 			$activeSlave.slaveName's tits are so big that they strain even $possessive specially tailored shirt and tunic.
 		<<elseif $activeSlave.boobs > 800>>
@@ -358,7 +366,7 @@
 		<</if>>
 	<<case "a nice nurse outfit">>
 		$activeSlave.slaveName's
-		<<if $activeSlave.boobs > 6000>>
+		<<if $activeSlave.boobs > 12000>>
 			immense tits are too big for $possessive scrub top, it rests uselessly atop $possessive bust.
 		<<elseif $activeSlave.boobs > 4000>>
 			massive tits strain against $possessive scrub top, it only manages to cover $possessive nipples.
@@ -373,9 +381,9 @@
 		<</if>>
 	<<case "a mini dress">>
 		$activeSlave.slaveName's
-		<<if $activeSlave.boobs > 4000>>
+		<<if $activeSlave.boobs > 12000>>
 			mini dress is pulled down to allow $possessive immense breasts to hang free.
-		<<elseif $activeSlave.boobs > 2000>>
+		<<elseif $activeSlave.boobs > 4000>>
 			massive breasts stretch $possessive custom tailored dress to its absolute limit.
 		<<elseif $activeSlave.boobs > 800>>
 			big breasts stretch taut against $possessive dress, leaving nothing to the imagination.
@@ -386,9 +394,9 @@
 		<</if>>
 	<<case "a leotard">>
 		$activeSlave.slaveName's
-		<<if $activeSlave.boobs > 2000>>
+		<<if $activeSlave.boobs > 12000>>
 			tits are so big that even $possessive specially tailored leotard cannot really support them.
-		<<elseif $activeSlave.boobs > 800>>
+		<<elseif $activeSlave.boobs > 2000>>
 			big tits stretch the spandex of $possessive leotard taut across their width.
 		<<elseif $activeSlave.boobs < 300>>
 			leotard tighly hugs $possessive flat chest, prominently displaying $possessive $activeSlave.nipples nipples though the spandex.
@@ -397,8 +405,8 @@
 		<</if>>
 	<<case "a bunny outfit">>
 		$activeSlave.slaveName's
-		<<if $activeSlave.boobs > 8000>>
-			tits are so immense that $possessive teddy can't contain them; it's pulled down slightly to allow them to hang free.
+		<<if $activeSlave.boobs > 12000>>
+			tits are so immense that $possessive teddy can't contain them; it's pulled down to allow them to hang free.
 		<<elseif $activeSlave.boobs > 6000>>
 			tits are so huge that $possessive teddy conceals special stays to keep them from popping out at the slightest movement. Breast flesh massively overflows $possessive top.
 		<<elseif $activeSlave.boobs > 2000>>
@@ -412,10 +420,10 @@
 		<</if>>
 	<<case "attractive lingerie for a pregnant woman">>
 		$activeSlave.slaveName's
-		<<if $activeSlave.boobs > 4000>>
+		<<if $activeSlave.boobs > 12000>>
 			top has been retailored to fit $possessive enormous bust. The ample breast flesh almost completely consumes $possessive silken lingerie. $possessiveCap silken vest is barely visible behind $possessive massive tits.
-		<<elseif $activeSlave.boobs > 2000>>
-			gigantic tits dwarf $possessive tiny top. It barely manages to cover $possessive nipples.  $possessiveCap silken vest is parted to either side of $possessive breasts.
+		<<elseif $activeSlave.boobs > 4000>>
+			gigantic tits dwarf $possessive tiny top. It barely manages to cover $possessive nipples. $possessiveCap silken vest is parted to either side of $possessive breasts.
 		<<elseif $activeSlave.boobs > 800>>
 			large breasts spill out from above and below $possessive tight top.
 		<<elseif $activeSlave.boobs < 300>>
@@ -425,11 +433,11 @@
 		<</if>>
 	<<case "a maternity dress">>
 		$activeSlave.slaveName's
-		<<if $activeSlave.boobs > 4000>>
+		<<if $activeSlave.boobs > 12000>>
 			low cut dress can't contain $possessive enormous breasts, so $pronoun keeps it pulled up just below $possessive bust.
-		<<elseif $activeSlave.boobs > 2000>>
+		<<elseif $activeSlave.boobs > 4000>>
 			low cut dress can barely conceal $possessive giant breasts. They bulge over the top and create a deep valley of cleavage.
-		<<elseif $activeSlave.boobs > 800>>
+		<<elseif $activeSlave.boobs > 1000>>
 			dress is low cut and reveals a large amount of cleavage.
 		<<elseif $activeSlave.boobs < 300>>
 			dress is low cut, tightly hugs $possessive flat chest and ends just above $possessive nipples.
@@ -506,7 +514,9 @@
 		is written across $possessive chest in large, vibrant letters.
 	<<case "harem gauze">>
 		$activeSlave.slaveName's harem girl outfit
-		<<if $activeSlave.boobs > 800>>
+		<<if $activeSlave.boobs > 12000>>
+			lets $possessive inhuman breasts rest beneath
+		<<elseif $activeSlave.boobs > 800>>
 			lets $possessive breasts swing free beneath
 		<<elseif $activeSlave.boobs < 300>>
 			gently covers $possessive flat chest with
@@ -516,8 +526,8 @@
 		a thin film of gauze.
 	<<case "a slutty nurse outfit">>
 		$activeSlave.slaveName's jacket
-		<<if $activeSlave.boobs > 2000>>
-			barely closes beneath $possessive tits, leaving almost everything visible.
+		<<if $activeSlave.boobs > 4000>>
+			closes beneath $possessive tits, leaving almost everything visible.
 		<<elseif $activeSlave.boobs > 800>>
 			pushes $possessive tits together to form some great cleavage.
 		<<elseif $activeSlave.boobs < 300>>
@@ -527,8 +537,8 @@
 		<</if>>
 	<<case "a schoolgirl outfit">>
 		$activeSlave.slaveName's
-		<<if $activeSlave.boobs > 2000>>
-			breasts are too big for $possessive blouse, so $pronoun's tied it under them; they're so huge that the blouse disappears entirely beneath them.
+		<<if $activeSlave.boobs > 4000>>
+			breasts are too big for $possessive blouse, so $pronoun's tied it under them; they're so huge that it's buried under them.
 		<<elseif $activeSlave.boobs > 800>>
 			breasts are too big for $possessive blouse, so $pronoun's tied it under them and left them totally bare.
 		<<elseif $activeSlave.boobs < 300>>
@@ -538,7 +548,7 @@
 		<</if>>
 	<<case "a kimono">>
 		$activeSlave.slaveName's kimono
-		<<if $activeSlave.boobs > 6000>>
+		<<if $activeSlave.boobs > 12000>>
 			can't cover $possessive breasts, so $pronoun leaves it hanging loose; allowing them to hang freely.
 		<<elseif $activeSlave.boobs > 4000>>
 			barely covers $possessive breasts. It reveals most of $possessive chest, just covering the outer edges of $possessive breasts and their nipples.
@@ -550,7 +560,7 @@
 			demurely covers $possessive breasts.
 		<</if>>
 	<<case "battledress">>
-		<<if $activeSlave.boobs > 10000>>
+		<<if $activeSlave.boobs > 12000>>
 			$activeSlave.slaveName's immense breasts are barely supported by a specially engineered, space-age sports bra.
 		<<elseif $activeSlave.boobs > 2000>>
 			$activeSlave.slaveName's huge breasts are supported by a specially engineered, space-age sports bra under $possessive tank top.
@@ -596,53 +606,55 @@ $possessiveCap
 <<elseif $activeSlave.boobs < 2050>><<print either("titanic", "enormous")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill J cups.
 <<elseif $activeSlave.boobs < 2300>><<print either("stupendous", "titanic")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill K cups.
 <<elseif $activeSlave.boobs < 2600>><<print either("magnificent", "stupendous")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill L cups.
-<<elseif $activeSlave.boobs < 2900>><<print either("tremendous", "magnificent")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill M cups.
-<<elseif $activeSlave.boobs < 3250>><<print either("awe-inspiring", "tremendous")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill N cups.
+<<elseif $activeSlave.boobs < 2900>><<print either("impressive", "magnificent")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill M cups.
+<<elseif $activeSlave.boobs < 3250>><<print either("awe-inspiring", "impressive")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill N cups.
 <<elseif $activeSlave.boobs < 3600>><<print either("absurd", "awe-inspiring")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill O cups.
 <<elseif $activeSlave.boobs < 3950>><<print either("disproportionate", "attention-grabbing")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill P cups.
 <<elseif $activeSlave.boobs < 4300>><<print either("shocking", "massive")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill Q cups.
-<<elseif $activeSlave.boobs < 4700>><<print either("unreal", "jaw-dropping")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill R cups.
-<<elseif $activeSlave.boobs < 5100>><<print either("tremendous", "astounding")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill S cups.
-<<elseif $activeSlave.boobs < 5100+($activeSlave.muscles*10) and $activeSlave.physicalAge <= 3>>
+<<elseif $activeSlave.boobs < 4700>><<print either("striking", "jaw-dropping")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill R cups.
+<<elseif $activeSlave.boobs < 5000+($activeSlave.muscles*10) && $activeSlave.physicalAge <= 3>>
 	<<if ($activeSlave.amp == 1)>>
-		<<print either("boobs", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> are so large that $pronoun might not be able to walk, if $pronoun still had legs.
+		<<print either("tremendous", "astounding")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill S cups and are so large that $pronoun might not be able to walk, if $pronoun still had legs.
 	<<elseif ($activeSlave.muscles > 5)>>
-		<<print either("boobs", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> are so large that $possessive <<if $activeSlave.muscles > 95>>shredded<<elseif $activeSlave.muscles > 30>>rippling<<else>>toned<</if>> back muscles get a workout just from supporting them. If they grow any larger, $pronoun may not be able to walk.
+		<<print either("tremendous", "astounding")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill S cups and are so large that $possessive <<if $activeSlave.muscles > 95>>shredded<<elseif $activeSlave.muscles > 30>>rippling<<else>>toned<</if>> back muscles get a workout just from supporting them. If they grow any larger, $pronoun may not be able to walk.
 	<<else>>
-		<<print either("boobs", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> are so large that $pronoun can barely stand. If they grow any larger, $pronoun may not be able to walk.
+		<<print either("tremendous", "astounding")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill S cups and are so large that $pronoun can barely stand. If they grow any larger, $pronoun may not be able to walk.
 	<</if>>
-<<elseif $activeSlave.boobs < 7000+($activeSlave.muscles*20) and $activeSlave.physicalAge <= 12>>
+<<elseif $activeSlave.boobs < 5100>><<print either("tremendous", "astounding")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill S cups.
+<<elseif $activeSlave.boobs < 5500>><<print either("frightening", "unmissable")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill T cups.
+<<elseif $activeSlave.boobs < 6000>><<print either("unmissable", "attention-grabbing")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill U cups.
+<<elseif $activeSlave.boobs < 6500>><<print either("attention-grabbing", "spectacular")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill V cups.
+<<elseif $activeSlave.boobs < 7000>><<print either("spectacular", "obviously engineered")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill W cups.
+<<elseif $activeSlave.boobs < 7500>><<print either("obviously engineered", "disporportionate")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill X cups.
+<<elseif $activeSlave.boobs < 8000>><<print either("disporportionate", "nearly inhuman")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill Y cups.
+<<elseif $activeSlave.boobs < 8500>><<print either("nearly inhuman", "nearly alien")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill Z cups.
+<<elseif $activeSlave.boobs < 10000+($activeSlave.muscles*20) and $activeSlave.physicalAge <= 12>>
 	<<if ($activeSlave.amp == 1)>>
-		<<print either("boobs", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> are so large that $pronoun might not be able to walk, if $pronoun still had legs.
+		<<print either("boobs", "breasts", "mammaries", "udders")>> have <<if $activeSlave.boobsImplant>>been altered<<else>>grown<</if>> past any pretense of porportion.<<if $showBoobCCs == 1>> At <<print $activeSlave.boobs>> CCs each, they<<else>> They<</if>> are so large that $pronoun might not be able to walk, if $pronoun still had legs.
 	<<elseif ($activeSlave.muscles >= 5)>>
-		<<print either("boobs", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> are so large that $possessive <<if $activeSlave.muscles > 95>>shredded<<elseif $activeSlave.muscles > 30>>rippling<<else>>toned<</if>> back muscles get a workout just from supporting them. If they grow any larger, $pronoun may not be able to walk.
+		<<print either("boobs", "breasts", "mammaries", "udders")>> have <<if $activeSlave.boobsImplant>>been altered<<else>>grown<</if>> past any pretense of porportion.<<if $showBoobCCs == 1>> At <<print $activeSlave.boobs>> CCs each, they<<else>> They<</if>> are so large that $possessive <<if $activeSlave.muscles > 95>>shredded<<elseif $activeSlave.muscles > 30>>rippling<<else>>toned<</if>> back muscles get a workout just from supporting them. If they grow any larger, $pronoun may not be able to walk.
 	<<else>>
-		<<print either("boobs", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> are so large that $pronoun can barely stand. If they grow any larger, $pronoun may not be able to walk.
-	<</if>>	
-<<elseif $activeSlave.boobs < 9000+($activeSlave.muscles*50) and $activeSlave.physicalAge < 18>>
+		<<print either("boobs", "breasts", "mammaries", "udders")>> have <<if $activeSlave.boobsImplant>>been altered<<else>>grown<</if>> past any pretense of porportion.<<if $showBoobCCs == 1>> At <<print $activeSlave.boobs>> CCs each, they<<else>> They<</if>> are so large that $pronoun can barely stand. If they grow any larger, $pronoun may not be able to walk.
+	<</if>>
+<<elseif $activeSlave.boobs < 20000+($activeSlave.muscles*50) and $activeSlave.physicalAge < 18>>
 	<<if ($activeSlave.amp == 1)>>
-		<<print either("boobs", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> are so large that $pronoun might not be able to walk, if $pronoun still had legs.
+		<<print either("boobs", "breasts", "mammaries", "udders")>> have <<if $activeSlave.boobsImplant>>been altered<<else>>grown<</if>> past any pretense of porportion.<<if $showBoobCCs == 1>> At <<print $activeSlave.boobs>> CCs each, they<<else>> They<</if>> are so large that $pronoun might not be able to walk, if $pronoun still had legs.
 	<<elseif ($activeSlave.muscles >= 5)>>
-		<<print either("boobs", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> are so large that $possessive <<if $activeSlave.muscles > 95>>shredded<<elseif $activeSlave.muscles > 30>>rippling<<else>>toned<</if>> back muscles get a workout just from supporting them. If they grow any larger, $pronoun may not be able to walk.
+		<<print either("boobs", "breasts", "mammaries", "udders")>> have <<if $activeSlave.boobsImplant>>been altered<<else>>grown<</if>> past any pretense of porportion.<<if $showBoobCCs == 1>> At <<print $activeSlave.boobs>> CCs each, they<<else>> They<</if>> are so large that $possessive <<if $activeSlave.muscles > 95>>shredded<<elseif $activeSlave.muscles > 30>>rippling<<else>>toned<</if>> back muscles get a workout just from supporting them. If they grow any larger, $pronoun may not be able to walk.
 	<<else>>
-		<<print either("boobs", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> are so large that $pronoun can barely stand. If they grow any larger, $pronoun may not be able to walk.
+		<<print either("boobs", "breasts", "mammaries", "udders")>> have <<if $activeSlave.boobsImplant>>been altered<<else>>grown<</if>> past any pretense of porportion.<<if $showBoobCCs == 1>> At <<print $activeSlave.boobs>> CCs each, they<<else>> They<</if>> are so large that $pronoun can barely stand. If they grow any larger, $pronoun may not be able to walk.
 	<</if>>	
-<<elseif $activeSlave.boobs < 9000+($activeSlave.muscles*100) and $activeSlave.physicalAge >= 18>>
-	<<if ($activeSlave.amp == 1)>>
+<<elseif $activeSlave.boobs < 20000>><<print either("tits", "breasts", "mammaries", "udders")>> have <<if $activeSlave.boobsImplant>>been altered<<else>>grown<</if>> past any pretense of porportion.
+<<elseif $activeSlave.boobs < 30000+($activeSlave.muscles*100) && $activeSlave.physicalAge >= 18>>
+	<<if $activeSlave.amp == 1>>
 		<<print either("boobs", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> are so large that $pronoun might not be able to walk, if $pronoun still had legs.
-	<<elseif ($activeSlave.muscles >= 5)>>
+	<<elseif ($activeSlave.muscles > 5)>>
 		<<print either("boobs", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> are so large that $possessive <<if $activeSlave.muscles > 95>>shredded<<elseif $activeSlave.muscles > 30>>rippling<<else>>toned<</if>> back muscles get a workout just from supporting them. If they grow any larger, $pronoun may not be able to walk.
 	<<else>>
 		<<print either("boobs", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> are so large that $pronoun can barely stand. If they grow any larger, $pronoun may not be able to walk.
-	<</if>>	
-<<elseif $activeSlave.boobs < 20000>>
-	<<if ($activeSlave.amp == 1)>>
-		<<print either("tits", "boobs", "mammaries")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> are so gargantuan that they would immobilize $object, if $pronoun still had legs. $possessiveCap udders constitute almost half of $possessive  overall weight, since $possessive body consists of nothing but $possessive head, torso, and breasts.
-	<<else>>
-		<<print either("tits", "boobs", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> are so gargantuan that they effectively immobilize $object. $possessiveCap breasts constitute a significant fraction of $possessive  overall weight.
 	<</if>>
 <<else>>
-	<<if ($activeSlave.amp == 1)>>
+	<<if $activeSlave.amp == 1>>
 		<<print either("tits", "boobs", "mammaries")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> are so immense it is safer to leave $object resting atop them. $possessiveCap udders each weigh more than twice the rest of $possessive body, since $possessive body consists of nothing but $possessive head, torso, and breasts.
 	<<else>>
 		<<print either("tits", "boobs", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> are so gargantuan that they effectively immobilize $object. $pronounCap's most comfortable lying down.
@@ -654,7 +666,9 @@ $possessiveCap
 <<widget "boobsExtraDescription">>
 
 <<if $arcologies[0].FSGenderFundamentalistLawBeauty + $arcologies[0].FSGenderRadicalistLawBeauty > 0>>
-	<<if $activeSlave.boobs > 1600 && $arcologies[0].FSAssetExpansionist != "unset">>
+	<<if $activeSlave.boobs > 12000>>
+		They're so large that the fashionable feminine ideal is a bad joke here.
+	<<elseif $activeSlave.boobs > 1600 && $arcologies[0].FSAssetExpansionist != "unset">>
 		They're too big for the fashionable feminine ideal.
 	<<elseif $activeSlave.boobs > 800 && $arcologies[0].FSAssetExpansionist != "unset">>
 		They're bigger than expected for the fashionable feminine ideal, but given the average bust size in your arcolgy, it's not a surprise.
@@ -674,7 +688,7 @@ $possessiveCap
 <</if>>
 
 <<if $activeSlave.physicalAge >= 18>>
-<<if $activeSlave.boobs > 7500>>
+<<if $activeSlave.boobs > 20000>>
 <<if $activeSlave.fuckdoll > 0>>
 	The difficulties of having gigantic breasts are much reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.
 <<else>>
@@ -686,17 +700,17 @@ $possessiveCap
 		$pronounCap can barely manage to get to $possessive feet unaided, and usually walks with $possessive arms crossed under $possessive tits to help take their weight.
 		<<elseif $activeSlave.muscles > 5>>
 		$pronounCap requires assistance to get to $possessive feet, and uses a stand to support them when $pronoun must remain upright for more than a short time.
-		<<elseif ($activeSlave.assignment == "work in the dairy") && ($dairyRestraintsSetting > 1) && ($activeSlave.boobs > 10000)>>
+		<<elseif ($activeSlave.assignment == "work in the dairy") && ($dairyRestraintsSetting > 1) && ($activeSlave.boobs > 12000)>>
 		The straps that secure $object to the milking machine have become less necessary since $possessive breasts grew to the point where they pin $object to it.
 		<<else>>
 		$pronounCap cannot get to $possessive feet unaided, and uses a wheeled stand to support $possessive boobs when $pronoun must walk or remain upright.
 		<</if>>
-	<<elseif $activeSlave.boobs >= 20000>>
+	<<elseif $activeSlave.boobs >= 40000>>
 		They each are easily as big as $object, making $object mostly boob.
 	<<else>>
 		Together they are nearly the same size as $possessive torso, making $object about half boob.
 	<</if>>
-	<<if $activeSlave.boobs > 7500 && ($activeSlave.assignment != "work in the dairy") || ($dairyRestraintsSetting < 2)>>
+	<<if ($activeSlave.assignment != "work in the dairy") || ($dairyRestraintsSetting < 2)>>
 		<<if $boobAccessibility == 1>>
 		Fortunately for $object, the penthouse is adapted for daily life with a bosom
 		<<else>>
@@ -724,12 +738,12 @@ $possessiveCap
 		<<else>>
 		$pronounCap cannot get to $possessive feet unaided, and uses a wheeled stand to support $possessive boobs when $pronoun must walk or remain upright.
 		<</if>>
-	<<elseif $activeSlave.boobs >= 20000>>
+	<<elseif $activeSlave.boobs >= 40000>>
 		They each dwarf $object, making $object mostly boob.
 	<<else>>
 		Together they are nearly the same size as her torso, making her about half boob.
 	<</if>>
-	<<if $activeSlave.boobs > 7500 && ($activeSlave.assignment != "work in the dairy") || ($dairyRestraintsSetting < 2)>>
+	<<if $activeSlave.boobs > 20000 && ($activeSlave.assignment != "work in the dairy") || ($dairyRestraintsSetting < 2)>>
 		<<if $boobAccessibility == 1>>
 		Fortunately for $object, the penthouse is adapted for daily life with a bosom
 		<<else>>
@@ -740,7 +754,7 @@ $possessiveCap
 <</if>>
 <</if>>
 <<elseif $activeSlave.physicalAge <= 12>>
-<<if $activeSlave.boobs > 5600>>
+<<if $activeSlave.boobs > 8000>>
 <<if $activeSlave.fuckdoll > 0>>
 	The difficulties of having gigantic breasts are much reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.
 <<else>>
@@ -758,11 +772,9 @@ $possessiveCap
 		$pronounCap cannot get to $possessive feet unaided, and uses a wheeled stand to support $possessive boobs when $pronoun must walk or remain upright.
 		<</if>>
 	<<elseif $activeSlave.boobs >= 20000>>
-		They each are easily as twice big as $object, making $object mostly boob.
-	<<else>>
 		Together they are nearly the same size as her torso, making her about half boob.
 	<</if>>
-	<<if  $activeSlave.boobs > 7500 && ($activeSlave.assignment != "work in the dairy") || ($dairyRestraintsSetting < 2)>>
+	<<if  $activeSlave.boobs > 20000 && ($activeSlave.assignment != "work in the dairy") || ($dairyRestraintsSetting < 2)>>
 		<<if $boobAccessibility == 1>>
 		Fortunately for $object, the penthouse is adapted for daily life with a bosom
 		<<else>>
@@ -773,7 +785,7 @@ $possessiveCap
 <</if>>
 <</if>>
 <<elseif $activeSlave.physicalAge < 18>>
-<<if $activeSlave.boobs > 7500>>
+<<if $activeSlave.boobs > 15000>>
 <<if $activeSlave.fuckdoll > 0>>
 	The difficulties of having gigantic breasts are much reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.
 <<else>>
@@ -790,12 +802,10 @@ $possessiveCap
 		<<else>>
 		$pronounCap cannot get to $possessive feet unaided, and uses a wheeled stand to support $possessive boobs when $pronoun must walk or remain upright.
 		<</if>>
-	<<elseif $activeSlave.boobs >= 20000>>
-		They each are easily as big as $object, making $object mostly boob.
-	<<else>>
+	<<elseif $activeSlave.boobs >= 40000>>
 		Together they are nearly the same size as her torso, making her about half boob.
 	<</if>>
-	<<if  $activeSlave.boobs > 7500 && ($activeSlave.assignment != "work in the dairy") || ($dairyRestraintsSetting < 2)>>
+	<<if  $activeSlave.boobs > 20000 && ($activeSlave.assignment != "work in the dairy") || ($dairyRestraintsSetting < 2)>>
 		<<if $boobAccessibility == 1>>
 		Fortunately for $object, the penthouse is adapted for daily life with a bosom
 		<<else>>
@@ -2410,7 +2420,6 @@ $pronounCap's got a
 <<SlavePronouns $activeSlave>>
 
 
-
 <<if $activeSlave.dick > 0>>
 
 <<switch $activeSlave.dick>>
@@ -2488,8 +2497,16 @@ $pronounCap's got a
 	<</if>>
 <<else>>
 	<<switch $activeSlave.balls>>
+	<<case 10>>
+		and $pronoun has an inhuman pair of testicles<<if $showDickCMs == 1>>, nearly 20cm long<</if>>.
+	<<case 9>>
+		and $pronoun has a titanic pair of testicles<<if $showDickCMs == 1>>, about 16cm long<</if>>.
+	<<case 8>>
+		and $pronoun has a gigantic pair of testicles<<if $showDickCMs == 1>>, about 14cm long<</if>>.
+	<<case 7>>
+		and $pronoun has a monstrous pair of testicles<<if $showDickCMs == 1>>, about 12cm long<</if>>.
 	<<case 6>>
-		and $pronoun has a gigantic, clearly unnatural pair of testicles<<if $showDickCMs == 1>>, about 10cm long<</if>>.
+		and $pronoun has an enormous pair of testicles<<if $showDickCMs == 1>>, about 10cm long<</if>>.
 	<<case 5>>
 		and $pronoun has a huge pair of testicles<<if $showDickCMs == 1>>, about 8cm long<</if>>.
 	<<case 4>>
@@ -2515,7 +2532,7 @@ $pronounCap's got a
 	<<if $activeSlave.balls > 0>>
 	<<if $activeSlave.scrotum > 0>>
 		<<set $seed = $activeSlave.scrotum - $activeSlave.balls>>
-		<<if $activeSlave.balls > 5>>
+		<<if $activeSlave.balls > 6>>
 		<<if $seed < -1>>
 			$possessiveCap poor scrotum is so overfilled, every little vein is visible. $pronounCap must be in agony.
 		<<elseif $seed == -1>>
@@ -3162,7 +3179,6 @@ $pronounCap's got a
 <<SlavePronouns $activeSlave>>
 
 
-
 <<if $activeSlave.dick > 0>>
 <<if $activeSlave.vagina > -1>>
 	$possessiveCap
@@ -4467,9 +4483,9 @@ $pronounCap has
 	<</if>>
 <<case "conservative clothing">>
 	<<if hyperPregBellyTwo($activeSlave)>>
-		<<if ($activeSlave.boobs > 20000)>>
+		<<if ($activeSlave.boobs > 24000)>>
 			$activeSlave.slaveName's immense breasts keep $possessive oversized sweater far from $possessive titanic bulging pregnant belly.
-		<<elseif ($activeSlave.boobs > 10000)>>
+		<<elseif ($activeSlave.boobs > 12000)>>
 			$activeSlave.slaveName's titanic bulging pregnant belly adds even more strain to $possessive struggling oversized sweater.
 		<<elseif ($activeSlave.boobs > 8000)>>
 			$activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive titanic bulging pregnant belly.
@@ -4479,9 +4495,9 @@ $pronounCap has
 			$activeSlave.slaveName's blouse rests atop $possessive titanic bulging pregnant belly.
 		<</if>>
 	<<elseif hyperPregBellyOne($activeSlave)>>
-		<<if ($activeSlave.boobs > 20000)>>
+		<<if ($activeSlave.boobs > 24000)>>
 			$activeSlave.slaveName's immense breasts keep $possessive oversized sweater far from $possessive gigantic pregnant belly.
-		<<elseif ($activeSlave.boobs > 10000)>>
+		<<elseif ($activeSlave.boobs > 12000)>>
 			$activeSlave.slaveName's gigantic pregnant belly adds even more strain to $possessive struggling oversized sweater.
 		<<elseif ($activeSlave.boobs > 8000)>>
 			$activeSlave.slaveName's gigantic pregnant belly parts $possessive poorly covered breasts.
@@ -4493,9 +4509,9 @@ $pronounCap has
 			$activeSlave.slaveName's blouse rests atop $possessive gigantic pregnant belly.
 		<</if>>
 	<<elseif $activeSlave.weight > 190>>
-		<<if ($activeSlave.boobs > 20000)>>
+		<<if ($activeSlave.boobs > 24000)>>
 			$activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive massively fat belly; even then, they can barely conceal it themselves.
-		<<elseif ($activeSlave.boobs > 10000)>>
+		<<elseif ($activeSlave.boobs > 12000)>>
 			$activeSlave.slaveName's massively fat belly adds even more strain to $possessive struggling oversized sweater.
 		<<elseif ($activeSlave.boobs > 8000)>>
 			$activeSlave.slaveName's oversized breasts let $possessive massively fat belly hang free.
@@ -4505,9 +4521,9 @@ $pronounCap has
 			$activeSlave.slaveName's blouse is pulled taut just trying to cover the top of $possessive massively fat belly; the rest is allowed to jiggle freely.
 		<</if>>
 	<<elseif hugeBellyPreg($activeSlave) || ($activeSlave.bellyAccessory == "a huge empathy belly") || ($activeSlave.bellyAccessory == "a large empathy belly")>>
-		<<if ($activeSlave.boobs > 20000)>>
+		<<if ($activeSlave.boobs > 24000)>>
 			$activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive huge pregnant belly, though they do a fine job of hiding it themselves.
-		<<elseif ($activeSlave.boobs > 10000)>>
+		<<elseif ($activeSlave.boobs > 12000)>>
 			$activeSlave.slaveName's huge pregnant belly is hidden by $possessive massive tits and oversized sweater.
 		<<elseif ($activeSlave.boobs > 8000)>>
 			$activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive huge pregnant belly.
@@ -4517,9 +4533,9 @@ $pronounCap has
 			$activeSlave.slaveName's blouse is pulled taut by $possessive huge pregnant belly, the bottom of which can be seen peeking out from underneath. $possessiveCap popped navel forms a small tent in $possessive shirt.
 		<</if>>
 	<<elseif $activeSlave.weight > 160>>
-		<<if ($activeSlave.boobs > 20000)>>
+		<<if ($activeSlave.boobs > 24000)>>
 			$activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive hugely fat belly, though they do a fine job of hiding it themselves.
-		<<elseif ($activeSlave.boobs > 10000)>>
+		<<elseif ($activeSlave.boobs > 12000)>>
 			$activeSlave.slaveName's hugely fat belly is barely hidden by $possessive massive tits and oversized sweater.
 		<<elseif ($activeSlave.boobs > 8000)>>
 			$activeSlave.slaveName's oversized breasts let $possessive hugely fat belly hang free.
@@ -4529,9 +4545,9 @@ $pronounCap has
 			$activeSlave.slaveName's blouse is pulled tight over the top half of $possessive hugely fat belly; the rest is allowed to jiggle freely.
 		<</if>>
 	<<elseif $activeSlave.weight > 130>>
-		<<if ($activeSlave.boobs > 20000)>>
+		<<if ($activeSlave.boobs > 24000)>>
 			$activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive big fat belly, though they do a fine job of hiding it themselves.
-		<<elseif ($activeSlave.boobs > 10000)>>
+		<<elseif ($activeSlave.boobs > 12000)>>
 			$activeSlave.slaveName's fat belly is hidden by $possessive massive tits and oversized sweater.
 		<<elseif ($activeSlave.boobs > 8000)>>
 			$activeSlave.slaveName's oversized breasts let $possessive big fat belly hang free.
@@ -4541,9 +4557,9 @@ $pronounCap has
 			$activeSlave.slaveName's blouse is pulled tight over most of $possessive big fat belly; the rest is allowed to jiggle freely.
 		<</if>>
 	<<elseif bigBellyPreg($activeSlave) || ($activeSlave.bellyAccessory == "a medium empathy belly")>>
-		<<if ($activeSlave.boobs > 20000)>>
+		<<if ($activeSlave.boobs > 24000)>>
 			$activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive pregnant belly, though they do a fine job of hiding it themselves.
-		<<elseif ($activeSlave.boobs > 10000)>>
+		<<elseif ($activeSlave.boobs > 12000)>>
 			$activeSlave.slaveName's pregnant belly is hidden by $possessive massive tits and oversized sweater.
 		<<elseif ($activeSlave.boobs > 8000)>>
 			$activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive pregnant belly.
@@ -4553,9 +4569,9 @@ $pronounCap has
 			$activeSlave.slaveName's blouse is pulled taut by $possessive pregnant belly. $possessiveCap popped navel forms a small tent in $possessive shirt.
 		<</if>>
 	<<elseif $activeSlave.weight > 95>>
-		<<if ($activeSlave.boobs > 20000)>>
+		<<if ($activeSlave.boobs > 24000)>>
 			$activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive fat belly, though they do a fine job of hiding it themselves.
-		<<elseif ($activeSlave.boobs > 10000)>>
+		<<elseif ($activeSlave.boobs > 12000)>>
 			$activeSlave.slaveName's fat belly is hidden by $possessive massive tits and oversized sweater.
 		<<elseif ($activeSlave.boobs > 8000)>>
 			$activeSlave.slaveName's oversized breasts let $possessive fat belly hang free.
@@ -4565,9 +4581,9 @@ $pronounCap has
 			$activeSlave.slaveName's blouse is pulled tight over $possessive fat belly. The bottom of which peeks out from under it.
 		<</if>>
 	<<elseif (visibleBellyPreg($activeSlave) || ($activeSlave.bellyAccessory == "a small empathy belly"))>>
-		<<if ($activeSlave.boobs > 20000)>>
+		<<if ($activeSlave.boobs > 24000)>>
 			$activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive growing belly, though they do a fine job of hiding it themselves.
-		<<elseif ($activeSlave.boobs > 10000)>>
+		<<elseif ($activeSlave.boobs > 12000)>>
 			$activeSlave.slaveName's growing belly is hidden by $possessive massive tits and oversized sweater.
 		<<elseif ($activeSlave.boobs > 8000)>>
 			$activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive growing belly.
@@ -4577,9 +4593,9 @@ $pronounCap has
 			$activeSlave.slaveName's blouse bulges with $possessive growing belly.
 		<</if>>
 	<<elseif $activeSlave.weight > 30>>
-		<<if ($activeSlave.boobs > 20000)>>
+		<<if ($activeSlave.boobs > 24000)>>
 			$activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive chubby belly, though they do a fine job of hiding it themselves.
-		<<elseif ($activeSlave.boobs > 10000)>>
+		<<elseif ($activeSlave.boobs > 12000)>>
 			$activeSlave.slaveName's chubby belly is hidden by $possessive massive tits and oversized sweater.
 		<<elseif ($activeSlave.boobs > 8000)>>
 			$activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive chubby belly.
@@ -7146,9 +7162,9 @@ she's
 <<case "a Fuckdoll suit">>
 	$activeSlave.slaveName's titanic implant-filled belly is allowed to bulge out of a huge hole in the suit.
 <<case "conservative clothing">>
-	<<if ($activeSlave.boobs > 20000)>>
+	<<if ($activeSlave.boobs > 24000)>>
 	$activeSlave.slaveName's immense breasts keep $possessive oversized sweater far from $possessive titanic implant-filled belly.
-	<<elseif ($activeSlave.boobs > 10000)>>
+	<<elseif ($activeSlave.boobs > 12000)>>
 	$activeSlave.slaveName's titanic implant-filled belly adds even more strain to $possessive struggling oversized sweater.
 	<<elseif ($activeSlave.boobs > 8000)>>
 	$activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive titanic implant-filled belly.
@@ -7410,9 +7426,9 @@ she's
 <<case "a Fuckdoll suit">>
 	$activeSlave.slaveName's huge implant-filled belly is allowed to bulge out of a huge hole in the suit.
 <<case "conservative clothing">>
-	<<if ($activeSlave.boobs > 20000)>>
+	<<if ($activeSlave.boobs > 24000)>>
 	$activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive huge implant-filled belly, though they do a fine job of hiding it themselves.
-	<<elseif ($activeSlave.boobs > 10000)>>
+	<<elseif ($activeSlave.boobs > 12000)>>
 	$activeSlave.slaveName's huge implant-filled belly is hidden by $possessive massive tits and oversized sweater.
 	<<elseif ($activeSlave.boobs > 8000)>>
 	$activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive huge implant-filled belly.
diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw
index cf7553f89b47849682d8e5105667904849ed1aef..19ba68817355e0e5ce5c1a8acf2ecae535696bf7 100644
--- a/src/utility/slaveCreationWidgets.tw
+++ b/src/utility/slaveCreationWidgets.tw
@@ -150,7 +150,7 @@
 		<<set $activeSlave.indenture = Math.clamp($activeSlave.indenture, 26, 208) || 26>>
 	<</if>>
 	<<set $activeSlave.height = Math.clamp($activeSlave.height, 85, 274) || 140>>
-	<<set $activeSlave.boobs = Math.clamp(Math.trunc($activeSlave.boobs/50)*50, 0, 25000) || 200>>
+	<<set $activeSlave.boobs = Math.clamp(Math.trunc($activeSlave.boobs/50)*50, 0, 50000) || 200>>
 <</widget>>
 
 /%
@@ -775,7 +775,7 @@
 		<<set $activeSlave.indenture = Math.clamp($activeSlave.indenture, 26, 208) || 26>>
 	<</if>>
 	<<set $activeSlave.height = Math.clamp($activeSlave.height, 85, 274) || 140>>
-	<<set $activeSlave.boobs = Math.clamp(Math.trunc($activeSlave.boobs/50)*50, 0, 25000) || 200>>
+	<<set $activeSlave.boobs = Math.clamp(Math.trunc($activeSlave.boobs/50)*50, 0, 50000) || 200>>
 	<<set $slaveWithoutBonuses = $activeSlave>>
 	<<if $PC.career != "engineer">>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;