diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index 085ebb79bbb8895307e2efcedc637651bb792b9c..ad889a4f451d913b452ad161c04ea8c6b9afead8 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -4,6 +4,11 @@
 
 1/27/18
 
+	299
+	-converted anon's submitted clergy capture event into the second Chattel Religionist FS acquisition event
+	-SFanon's fixes and tweaks
+	-phase 4 work
+
 	298
 	-fixed the flesh heap only giving amps if $seeExtreme was off
 
diff --git a/src/pregmod/breederProposal.tw b/src/pregmod/breederProposal.tw
index 942b5921efb757a4c62f5d870e47854297900e42..e1e39e8afd77afe077a1be5a3c4ab6298eb5b57b 100644
--- a/src/pregmod/breederProposal.tw
+++ b/src/pregmod/breederProposal.tw
@@ -27,7 +27,7 @@ Within the hour, you are called before <<if $eugenicsFullControl == 1>>what's le
 		<span id="result">
 		<br><<link "Agree to being used as a breeder and save face">>
 		<<replace "#result">>
-			"Good choice girl. A selection of men will be provided to you, take your pick and bear our children."
+			"Good choice girl. A selection of men will be provided to you, take your pick and bear our children. Or use a test tube, if that's more to your tastes."
 			<<set $playerBred = 1, $propOutcome = 1>>
 			<<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */
 		<</replace>>
@@ -45,7 +45,7 @@ Within the hour, you are called before <<if $eugenicsFullControl == 1>>what's le
 		<span id="result">
 		<br><<link "Agree to being used as a breeder for the sake of your proposal">>
 		<<replace "#result">>
-			"Good choice girl, your proposal is more important than your dignity after all, isn't it? A selection of men will be provided to you, take your pick and bear our children."
+			"Good choice girl, your proposal is more important than your dignity after all, isn't it? A selection of men will be provided to you, take your pick and bear our children. Or use a test tube, if that's more to your tastes."
 			<<set $failedElite -= 50, $playerBred = 1, $propOutcome = 1>>
 			<<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */
 		<</replace>>
@@ -75,7 +75,7 @@ Within the hour, you are called before <<if $eugenicsFullControl == 1>>what's le
 		<span id="result">
 		<br><<link "Agree to being used as a breeder to complete the deal">>
 		<<replace "#result">>
-			"Your contributions will be appreciated. We shall convene to decide the qualifications for a slave to become a breeder. We will inform you of them when we send the list of eligible males to breed you."
+			"Your contributions will be appreciated. We shall convene to decide the qualifications for a slave to become a breeder. We will inform you of them when we send the list of eligible males to breed you. Or send you a test tube, if that's more to your tastes."
 			<<set $failedElite -= 50, $playerBred = 1, $propOutcome = 1>>
 			<<InitStandards>>
 			<<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */
@@ -96,7 +96,7 @@ Within the hour, you are called before <<if $eugenicsFullControl == 1>>what's le
 		<span id="result">
 		<br><<link "Agree to being used as a breeder">>
 		<<replace "#result">>
-			"Your contributions will be appreciated. We shall convene to decide the qualifications for a slave to become a breeder. We will inform you of them when we send the list of eligible males to breed you."
+			"Your contributions will be appreciated. We shall convene to decide the qualifications for a slave to become a breeder. We will inform you of them when we send the list of eligible males to breed you. Or send you a test tube, if that's more to your tastes."
 			<<set $playerBred = 1, $propOutcome = 1>>
 			<<InitStandards>>
 			<<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */
diff --git a/src/pregmod/managePersonalAffairs.tw b/src/pregmod/managePersonalAffairs.tw
index c93da5a74c64f919b5436c35638805b4081430fa..8bb50c9e5daed433b79bbdfc956c146827e4bd44 100644
--- a/src/pregmod/managePersonalAffairs.tw
+++ b/src/pregmod/managePersonalAffairs.tw
@@ -403,7 +403,7 @@ In total, you have given birth to:
 	<<if $playerBred == 0>>
 	<br><br>
 		You are currently not bearing children for the Societal Elite.
-		[[List your womb as available|Manage Personal Affairs][$playerBred = 1]]
+		[[List your womb as available|Manage Personal Affairs][$playerBred = 1, $playerBredTube = 0]] | [[Sign up for artificial insemination|Manage Personal Affairs][$playerBred = 1, $playerBredTube = 1]]
 	<<else>>
 		Your womb is dedicated to carrying the Societal Elites' children.
 		<<if $PC.birthElite > 0>>
diff --git a/src/pregmod/pInsemination.tw b/src/pregmod/pInsemination.tw
index 27ca0428034e6f5a25819aec46e7bbcf4d21519d..912dedd0de7a6550450600bfe7f5e59ea3499795 100644
--- a/src/pregmod/pInsemination.tw
+++ b/src/pregmod/pInsemination.tw
@@ -20,6 +20,9 @@
 <<if ndef $preggoCount>>
 	<<set $preggoCount = 0>>
 <</if>>
+
+<<if $playerBredTube != 1>>
+
 <<if $startingPoint == -1>>
 	<<set $EliteSires = $EliteSires.shuffle()>>
 	<<set $startingPoint = random(0,5)>>
@@ -94,6 +97,13 @@
 <<if $startingPoint == 6>>
 	<<set $startingPoint = 0>>
 <</if>>
+
+<<else>>
+
+	The vial of sperm destined to fill your womb with life has arrived. You waste no time injecting a dose of it into the depths of your pussy and carry on with you day; a ritual you repeat for the duration of the week, ensuring an Elite life taking root within you.
+
+<</if>>
+
 /* You're getting pregnant, period be damned */
 <<set $PC.preg = 1, $PC.pregSource = -1, $PC.pregKnown = 1>>
 <<SetPregType $PC>>
diff --git a/src/uncategorized/managePenthouse.tw b/src/uncategorized/managePenthouse.tw
index f9112de35730a49d77e892537f3df81f7f0217bd..cca507e9b3b7dda27859724c1d660b602e4947c9 100644
--- a/src/uncategorized/managePenthouse.tw
+++ b/src/uncategorized/managePenthouse.tw
@@ -281,7 +281,7 @@ __Penthouse Upgrades__
 
 <<if $dispensary == 0>>
 <<if $rep > 2000>>
-	[[Install a pharmaceutical fabricator|Manage Penthouse][$cash -= Math.trunc(20000*$upgradeMultiplierArcology), $dispensary = 1, $drugsCost = $drugsCost/4, $PC.engineering += .1]]
+	[[Install a pharmaceutical fabricator|Manage Penthouse][$cash -= Math.trunc(20000*$upgradeMultiplierArcology), $dispensary = 1, $drugsCost = $drugsCost*.75, $PC.engineering += .1]]
 	//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
 <<else>>
 	//You lack the reputation to obtain cutting-edge pharmaceutical technology//
diff --git a/src/uncategorized/randomNonindividualEvent.tw b/src/uncategorized/randomNonindividualEvent.tw
index 7980d5ad57d7e7ecf5992811a48e26b053f9f804..2ac51dc1084056d7f49a42959354b97d80a810f5 100644
--- a/src/uncategorized/randomNonindividualEvent.tw
+++ b/src/uncategorized/randomNonindividualEvent.tw
@@ -851,6 +851,10 @@
 		<<set $FSAcquisitionEvents.push("Hedonistic Decadence Two")>>
 		<<set $events.push("RE FS acquisition")>>
 	<</if>>
+	<<if $arcologies[0].FSChattelReligionist > random(1,100)>>
+		<<set $FSAcquisitionEvents.push("Chattel Religionist Two")>>
+		<<set $events.push("RE FS acquisition")>>
+	<</if>>
 	<<if $arcologies[0].FSRepopulationFocus > random(1,100)>>
 		<<set $FSAcquisitionEvents.push("Repopulation Efforts Two")>>
 		<<set $events.push("RE FS acquisition")>>
diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw
index f6be2ef38cd0955fb9de623e10fefa04bb95fcf8..746ed0169feff062fe66d5ba9794669766867ce5 100644
--- a/src/uncategorized/reFSAcquisition.tw
+++ b/src/uncategorized/reFSAcquisition.tw
@@ -617,6 +617,21 @@
 <<slaveCost $activeSlave>>
 <<set $slaveCost -= 1000>>
 
+<<case "Chattel Religionist Two">>
+
+<<set $contractCost = 1000>>
+<<set $activeSlaveOneTimeMinAge = 16>>
+<<set $activeSlaveOneTimeMaxAge = 42>>
+<<include "Generate New Slave">>
+<<set $activeSlave.origin = "She offered herself for enslavement out of religious conviction.">>
+<<set $activeSlave.health = random(10,30)>>
+<<set $activeSlave.devotion = -100>>
+<<set $activeSlave.trust = -100>>
+<<set $activeSlave.behavioralFlaw = "devout">>
+<<set $activeSlave.sexualFlaw = "repressed">>
+<<slaveCost $activeSlave>>
+<<set $slaveCost -= 1000>>
+
 <<case "Hedonistic Decadence">>
 
 <<set $contractCost = 1000>>
@@ -1100,6 +1115,12 @@ You receive so many messages, as a noted titan of the new Free Cities world, tha
 
 This one is a little odd; it merely begs you for an in person audience and offers you the sender's "unworthy body" as payment for granting it. You surreptitiously scan her when she arrives to make sure this isn't an attack of some kind, but she's just a normal girl wearing conservative clothing. When admitted to your office, she immediately strips off her clothing, gets down before your desk, and presses her forehead to the floor. "<<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," she says, "please accept me as your slave. I am a wretched whore, filled with sin, and freedom is a burden to me. Please free me from this torment and take me into your service."
 \
+<<case "Chattel Religionist Two">>\
+\
+Ever since you have been steering $arcologies[0].name towards a belief in chattel religionism, you've been receiving increasingly useful communications from groups that share your ideals. With much of the Old World in freefall, many groups with particularly vehement religious beliefs are expanding unchecked by the mores of big government, and by taking the chattel religionist side, you've automatically inserted yourself into a worldwide network of like-minded organizations. You receive a message from one such group.
+
+It seems that the Chattel Religionists have all but taken over their town and driven out or converted the local worshippers of old world religions, save for a single religious building and its clergy who continue in defiance. This group has stepped in to put an end to this impiety. However, though they may be ruthless vigilantes, they don't consider themselves murderers. They're interested in fencing a member clergy to you, no questions asked, on a flat fee basis. Included in the message is a slave dossier detailing the piece of human chattel they're offering: <<if $activeSlave.genes == XX>>a lovely virgin nun<<else>>a rather stuck up priest<</if>>.
+\
 <<case "Roman Revivalist">>\
 \
 You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were.
@@ -1213,6 +1234,8 @@ The call comes in from an office, and you suppress the urge to check whether $as
 	She arrives apologizing for her fine clothing. "I'm sorry," she apologizes sadly, "but I wanted to wear my best one last time." She sighs, squares her shoulders, and visibly steels herself. "My son's a bastard for selling me to you, and all to save that useless store of his." She delivers this last with a bitter smile on her lips. "At least he had the sense to sell me to someone with exquisite taste, like you. After all, you did buy me."
 	<<case "Chattel Religionist">>\
 	She lets out a convulsive sob when you accept her servitude, and is painfully obsequious as you complete the formalities of enslavement. Your exam reveals several minor indications of self-harm - chewed nails, bitten lips, and such. But for all that, a remarkable look of peace has settled on the poor woman's face. She waits patiently for a hint of your will, <<if canAchieveErection($activeSlave)>>her cock painfully erect<<elseif $activeSlave.dick > 0>>precum dripping from her soft dick<<else>>her pussy visibly moist<</if>> at the prospect of the servile sex she is convinced is her duty.
+	<<case "Chattel Religionist Two">>\
+	You complete the legalities and a clearly improvised VTOL craft arrives at $arcologies[0].name, broadcasting an erratic array of IFF codes. It seems this group hasn't quite mastered the intricacies of air travel. The aircraft doesn't seem capable of the delicate feat of landing on the pad it had been directed to: it simply hovers six feet off the pad for the five seconds it takes to shove a canvas bag that obviously contains a struggling human form out of the side door. The condemned prays tirelessly throughout the biometric scanning process, utterly shocked and disgusted by what they've witnessed in just the few minutes they've been in your arcology. Then it's off to the penthouse for basic slave induction.
 	<<case "Roman Revivalist">>\
 	She arrives wide-eyed and enthusiastic about the historical style she saw on the way in. She swallows nervously throughout the enslavement process and even cries a little at the end. She's slow to undress, and when she's finished, she covers her modest breasts with one arm and her mons with the other. It seems that she's about to have a rude awakening about the realities of being a house slave.
 	<<case "Aztec Revivalist">>\
@@ -1301,6 +1324,8 @@ The call comes in from an office, and you suppress the urge to check whether $as
 	She arrives apologizing for her fine clothing. "I'm sorry," she apologizes sadly, "but I wanted to wear my best one last time." She sighs, squares her shoulders, and visibly steels herself. "My son's a bastard for selling me to you, and all to save that useless store of his." She delivers this last with a bitter smile on her lips. "At least he had the sense to sell me to someone with exquisite taste, like you. After all, you did buy me."  She's about to declaim something else when a purchaser's agent arrives to bundle her off. Her face darkens and she mulls something over, probably preparing a really cutting remark, but before she can deliver it the agent fastens a bag over her head and she is heard no more.
 	<<case "Chattel Religionist">>\
 	She lets out a convulsive sob when you accept her servitude, and is painfully obsequious as you complete the formalities of enslavement. When her buyer arrives to take her away, the realization agonizes her, but she snuffs out her saddened reaction almost as soon as it dawns on her face. She visibly draws herself up, obviously telling herself that service under one master is as righteous as service under another.
+	<<case "Chattel Religionist Two">>\
+	You complete the legalities and a clearly improvised VTOL craft arrives at $arcologies[0].name, broadcasting an erratic array of IFF codes. It seems this group hasn't quite mastered the intricacies of air travel. The aircraft doesn't seem capable of the delicate feat of landing on the pad it had been directed to: it simply hovers six feet off the pad for the five seconds it takes to shove a canvas bag that obviously contains a struggling human form out of the side door. The condemned prays tirelessly they're unpacked, utterly shocked and disgusted by what they've witnessed in just the few minutes they've been in your arcology. You tell them to cheer up, they're off to a nice little brothel where they'll learn the joys of their new religion. You make out a single word as they are hauled away, "Blasphemer!" Seems someone wants you to patron them in their new career.
 	<<case "Roman Revivalist">>\
 	She arrives with doubt already clouding her eyes. It seems she got an introduction to the reality of Roman Revivalism on her way up the arcology to your villa. The violence it did to her vision of Rome is deeply ironic; $arcologies[0].name is a fair reproduction of the decadence and vigor of imperial Rome. If she's shocked by the screams of a slave dying in gladiatorial combat or the spectacle of prisoners from the provinces being sold at auction, that's her ignorance. When you cause a price placard to be affixed to her chest so she can be sold at auction, the reality of her future finally comes home to her.
 	<<case "Aztec Revivalist">>\
diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw
index 0d49be8733b1e2fdf3687499f05a7f2e2e352c76..b7f6ea90f2dc0bbde20c4edfcac2a82ccabde436 100644
--- a/src/utility/descriptionWidgetsFlesh.tw
+++ b/src/utility/descriptionWidgetsFlesh.tw
@@ -5613,7 +5613,7 @@ $pronounCap has
 	<<elseif $activeSlave.weight > 30>>
 		$activeSlave.slaveName's chubby belly is tightly squeezed by the suit.
 	<<elseif $activeSlave.bellyPreg >= 100 || $activeSlave.bellyImplant >= 100>>
-		There is a clear curve to the tight material beneath $activeSlave.slaveName's navel.	
+		There is a clear curve to the tight material beneath $activeSlave.slaveName's navel.
 	<<elseif $activeSlave.muscles > 30>>
 		$activeSlave.slaveName's suit tightly hugs $possessive stomach to showcase $possessive ripped abs.
 	<</if>>
@@ -6687,48 +6687,186 @@ $pronounCap has
 		$activeSlave.slaveName's slave outfit's straps cross between $possessive ripped abs.
 	<</if>>
 <<case "shibari ropes">>
-	<<if $activeSlave.bellyPreg >= 600000>>
-		$activeSlave.slaveName's titanic bulging pregnant belly is tightly bound with rope, its occupants shift angrily under them.
-	<<elseif $activeSlave.bellyPreg >= 300000>>
-		$activeSlave.slaveName's massive pregnant belly is tightly bound with rope, flesh angrily bulges from between them.
+	<<if $activeSlave.belly >= 1000000>>
+		//WIP//
+	<<elseif $activeSlave.belly >= 750000>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's monolithic implant-filled belly is tightly bound with ropes; they stand no chance at sinking into the bloated orb.
+		<<else>>
+			$activeSlave.slaveName's monolithic pregnant belly is tightly bound with ropes. It bulges angrily as they run between the forms of $possessive unborn children.
+		<</if>>
+	<<elseif $activeSlave.belly >= 600000>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's titanic implant-filled belly is tightly bound with ropes; they barely sink into the bloated orb.
+		<<else>>
+			$activeSlave.slaveName's titanic pregnant belly is tightly bound with ropes; flesh and child bulge angrily from between them. $possessiveCap children shift constantly under the tight bindings.
+		<</if>>
+	<<elseif $activeSlave.belly >= 450000>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's gigantic implant-filled belly is tightly bound with ropes; they barely sink into the bloated orb.
+		<<else>>
+			$activeSlave.slaveName's gigantic pregnant belly is tightly bound with ropes; flesh and child bulge angrily from between them.
+		<</if>>
+	<<elseif $activeSlave.belly >= 300000>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's massive implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them.
+		<<else>>
+			$activeSlave.slaveName's massive pregnant belly is tightly bound with ropes; flesh bulges angrily from between them.
+		<</if>>
+	<<elseif $activeSlave.belly >= 120000>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's giant implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them.
+		<<else>>
+			$activeSlave.slaveName's giant pregnant belly is tightly bound with ropes; flesh bulges angrily from between them.
+		<</if>>
 	<<elseif $activeSlave.weight > 190>>
 		$activeSlave.slaveName's binding ropes are practically buried in $possessive massively fat belly. The only hint of their presence are the deep ravines of flesh formed around them.
-	<<elseif $activeSlave.bellyPreg >= 10000 || ($activeSlave.bellyAccessory == "a huge empathy belly") || ($activeSlave.bellyAccessory == "a large empathy belly")>>
-		$activeSlave.slaveName's big pregnant belly is tightly bound with ropes; flesh bulges angrily from between them.
+	<<elseif $activeSlave.belly >= 15000 || ($activeSlave.bellyAccessory == "a huge empathy belly")>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's huge implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them.
+		<<else>>
+			$activeSlave.slaveName's huge pregnant belly is tightly bound with ropes; flesh bulges angrily from between them.
+		<</if>>
+	<<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a large empathy belly")>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+			$activeSlave.slaveName's hugely swollen belly is tightly bound with ropes. It bulges lewdly through the gaps.
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's big implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them.
+		<<else>>
+			$activeSlave.slaveName's big pregnant belly is tightly bound with ropes; flesh bulges angrily from between them.
+		<</if>>
 	<<elseif $activeSlave.weight > 160>>
 		$activeSlave.slaveName's binding ropes sink deep into $possessive hugely fat belly. They can barely be seen from the front; $possessive sides completely envolope them.
 	<<elseif $activeSlave.weight > 130>>
 		$activeSlave.slaveName's binding ropes sink deep into $possessive big fat belly; most end up swallowed by $possessive folds.
-	<<elseif $activeSlave.bellyPreg >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>>
-		$activeSlave.slaveName's pregnant belly is tightly bound with rope; flesh bulges angrily from between them.
+	<<elseif $activeSlave.belly >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+			$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is tightly bound with rope. It bulges lewdly through the gaps.
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's implant-filled belly is tightly bound with rope; flesh bulges angrily from between them.
+		<<else>>
+			$activeSlave.slaveName's pregnant belly is tightly bound with rope; flesh bulges angrily from between them.
+		<</if>>
 	<<elseif $activeSlave.weight > 95>>
 		$activeSlave.slaveName's binding ropes sink deep into $possessive fat belly, several even disappearing beneath $possessive folds.
-	<<elseif (($activeSlave.bellyPreg >= 1500) || ($activeSlave.bellyAccessory == "a small empathy belly"))>>
-		$activeSlave.slaveName's growing belly is tightly bound with rope, flesh bulges from between them.
+	<<elseif $activeSlave.belly >= 1500 || $activeSlave.bellyAccessory == "a small empathy belly">>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+			$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is tightly bound with rope forcing it to bulge out the gaps.
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's implant-rounded belly is tightly bound with rope; flesh bulges from between them.
+		<<else>>
+			$activeSlave.slaveName's growing belly is tightly bound with rope; flesh bulges from between them.
+		<</if>>
 	<<elseif $activeSlave.weight > 30>>
 		$activeSlave.slaveName's binding ropes sink into $possessive chubby belly, making noticeable folds in $possessive sides.
+	<<elseif $activeSlave.bellyPreg >= 100 || $activeSlave.bellyImplant >= 100>>
+		$activeSlave.slaveName's binding ropes run above and below the small bulge to $possessive lower belly clearly highlighting it.
+	<<elseif $activeSlave.muscles > 30>>
+		$activeSlave.slaveName's binding ropes run between $possessive ripped abs.
 	<</if>>
 <<case "restrictive latex" "a latex catsuit">>
-	<<if $activeSlave.bellyPreg >= 600000>>
-		$activeSlave.slaveName's titanic bulging pregnant belly greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon ready to pop. $possessiveCap popped navel and clearly defined occupants disrupt the smoothness.
-	<<elseif $activeSlave.bellyPreg >= 300000>>
-		$activeSlave.slaveName's massive pregnant belly greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+	<<if $activeSlave.belly >= 1000000>>
+		//WIP//
+	<<elseif $activeSlave.belly >= 750000>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's monolithic implant-filled belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated weather balloon on the brink of popping. Only $possessive popped navel sticking out the front of $possessive belly disrupts the endless smoothness.
+		<<else>>
+			$activeSlave.slaveName's monolithic pregnant belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated, bump coated weather balloon on the brink of popping. $possessiveCap popped navel and clearly defined occupants disrupt the smoothness
+		<</if>>
+	<<elseif $activeSlave.belly >= 600000>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's titanic implant-filled belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated weather balloon. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<<else>>
+			$activeSlave.slaveName's titanic pregnant belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated, bump coated weather balloon. $possessiveCap popped navel and bulging occupants disrupt the smoothness.
+		<</if>>
+	<<elseif $activeSlave.belly >= 450000>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's gigantic implant-filled belly greatly distends $possessive latex suit, leaving $object looking like a weather balloon. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<<else>>
+			$activeSlave.slaveName's gigantic pregnant belly greatly distends $possessive latex suit, leaving $object looking like a weather balloon. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<</if>>
+	<<elseif $activeSlave.belly >= 300000>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's massive implant-filled belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated beachball ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<<else>>
+			$activeSlave.slaveName's massive pregnant belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated beachball ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<</if>>
+	<<elseif $activeSlave.belly >= 150000>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's giant implant-filled belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated beachball. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<<else>>
+			$activeSlave.slaveName's giant pregnant belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated beachball. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<</if>>
+	<<elseif $activeSlave.belly >= 120000>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's giant implant-filled belly greatly distends $possessive latex suit, leaving $object looking like a big beachball. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<<else>>
+			$activeSlave.slaveName's giant pregnant belly greatly distends $possessive latex suit, leaving $object looking like a big beachball. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<</if>>
+	<<elseif $activeSlave.belly >= 60000>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's huge implant-filled belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<<else>>
+			$activeSlave.slaveName's huge pregnant belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<</if>>
 	<<elseif $activeSlave.weight > 190>>
-		$activeSlave.slaveName's massively fat belly greatly distends and $possessive latex suit. $pronounCap looks like an over inflated balloon ready to pop.
-	<<elseif $activeSlave.bellyPreg >= 10000 || ($activeSlave.bellyAccessory == "a huge empathy belly") || ($activeSlave.bellyAccessory == "a large empathy belly")>>
-		$activeSlave.slaveName's big pregnant belly greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		$activeSlave.slaveName's massively fat belly greatly distends and $possessive latex suit. $pronounCap looks like an over-inflated balloon ready to pop.
+	<<elseif $activeSlave.belly >= 15000 || ($activeSlave.bellyAccessory == "a huge empathy belly")>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's huge implant-filled belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<<else>>
+			$activeSlave.slaveName's huge pregnant belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<</if>>
+	<<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a large empathy belly")>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+			$activeSlave.slaveName's hugely swollen belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's big implant-filled belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon nearing its limit. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<<else>>
+			$activeSlave.slaveName's big pregnant belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon nearing its limit. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<</if>>
 	<<elseif $activeSlave.weight > 160>>
-		$activeSlave.slaveName's hugely fat belly greatly distends and $possessive latex suit. $pronounCap looks like an over inflated balloon.
+		$activeSlave.slaveName's hugely fat belly greatly distends and $possessive latex suit. $pronounCap looks like an over-inflated balloon.
 	<<elseif $activeSlave.weight > 130>>
-		$activeSlave.slaveName's big fat belly greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon.
-	<<elseif $activeSlave.bellyPreg >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>>
-		$activeSlave.slaveName's pregnant belly greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		$activeSlave.slaveName's big fat belly greatly distends $possessive latex suit. $pronounCap looks like an over-inflated balloon.
+	<<elseif $activeSlave.belly >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+			$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's implant-filled belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<<else>>
+			$activeSlave.slaveName's pregnant belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness.
+		<</if>>
 	<<elseif $activeSlave.weight > 95>>
 		$activeSlave.slaveName's fat belly is compressed by $possessive latex suit, leaving it looking round and smooth.
-	<<elseif (($activeSlave.bellyPreg >= 1500) || ($activeSlave.bellyAccessory == "a small empathy belly"))>>
-		$activeSlave.slaveName's growing belly greatly bulges under $possessive latex suit.
+	<<elseif $activeSlave.belly >= 1500 || $activeSlave.bellyAccessory == "a small empathy belly">>
+		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+			$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly greatly bulges under $possessive latex suit.
+		<<elseif $activeSlave.bellyImplant > 0>>
+			$activeSlave.slaveName's implant-rounded belly greatly bulges under $possessive latex suit.
+		<<else>>
+			$activeSlave.slaveName's growing belly greatly bulges under $possessive latex suit.
+		<</if>>
 	<<elseif $activeSlave.weight > 30>>
 		$activeSlave.slaveName's chubby belly in quite noticeable under $possessive latex suit, though any folds $pronoun might have are smoothed out by it.
+	<<elseif $activeSlave.bellyPreg >= 100 || $activeSlave.bellyImplant >= 100>>
+		There is a clear curve to the tight latex of the suit beneath $activeSlave.slaveName's navel.	
+	<<elseif $activeSlave.muscles > 30>>
+		$activeSlave.slaveName's latex suit tightly hugs $possessive stomach to showcase $possessive ripped abs.
 	<</if>>
 <<case "a military uniform">>
 	<<if $activeSlave.bellyPreg >= 600000>>