diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 84a16f33e8c42b1392be28dec48e8fb8144a87ab..830e30d6be68e39ea6026392a4ab22bfde49c583 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -1,4 +1,5 @@
 config.history.maxStates = 1; /* If you remove this, I will fucking yell at you. Stop. Doing. It. */
+config.saves.autosave = "autosave";
 
 /*:: StoryJS [script]*/
 
@@ -10728,10 +10729,10 @@ window.saRest = function saRest(slave) {
 		t += ` ${His} <span class='green'>health recovers</span> with rest.`;
 		slave.health += 10;
 		if (!(canHear(slave))) {
-			t += ` Since $he is deaf, the hustle and bustle of daily life in the penthouse <span class='green'>didn't bother $him at all.</span>`;
+			t += ` Since ${he} is deaf, the hustle and bustle of daily life in the penthouse <span class='green'>didn't bother ${him} at all.</span>`;
 			slave.health += 3;
 		} else if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs")) {
-			t += ` Since $he is hard of hearing, the hustle and bustle of daily life in the penthouse <span class='green'>didn't disturb $his rest as much.</span>`;
+			t += ` Since ${he} is hard of hearing, the hustle and bustle of daily life in the penthouse <span class='green'>didn't disturb ${his} rest as much.</span>`;
 			slave.health += 1;
 		}
 	}
@@ -10785,10 +10786,10 @@ window.saServant = function saServant(slave) {
 					t += `uses sex as a reward, getting ${him} off when ${he} <span class='yellowgreen'>works harder.</span>`;
 				}
 				if (!(canHear(slave))) {
-					t += ` However, $his inability to hear often leaves him oblivious to ${V.Stewardess.slaveName}'s orders, limiting their meaningful interactions.`;
+					t += ` However, ${his} inability to hear often leaves ${him} oblivious to ${V.Stewardess.slaveName}'s orders, limiting their meaningful interactions.`;
 					V.cash += (V.stewardessBonus/4);
 				} else if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs")) {
-					t += `  However, $he often doesn't catch what ${V.Stewardess.slaveName} says, leading to frustration, confusion and less work done.`;
+					t += `  However, ${he} often doesn't catch what ${V.Stewardess.slaveName} says, leading to frustration, confusion and less work done.`;
 					V.cash += (V.stewardessBonus/2);
 				} else {
 					V.cash += V.stewardessBonus;
@@ -10905,7 +10906,7 @@ window.saStayConfined = function saStayConfined(slave) {
 
 		if (slave.assignment == "be confined in the cellblock") {
 			if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs") || (slave.hears == -2)) {
-				t += ` $His hearing impairment spares $him the sounds of $his peers getting punished, lightening the impact of $his imprisonment.`
+				t += ` ${His} hearing impairment spares ${him} the sounds of ${his} peers getting punished, lightening the impact of ${his} imprisonment.`
 			}
 		}
 
diff --git a/src/endWeek/saRest.tw b/src/endWeek/saRest.tw
index 504c0d547d6eeae611987202c49577915d99f66b..f24e5ab4c2bbe52e0d841b51d70ee91cc4dfd9b6 100644
--- a/src/endWeek/saRest.tw
+++ b/src/endWeek/saRest.tw
@@ -25,10 +25,10 @@ window.saRest = function saRest(slave) {
 		t += ` ${His} <span class='green'>health recovers</span> with rest.`;
 		slave.health += 10;
 		if (!(canHear(slave))) {
-			t += ` Since $he is deaf, the hustle and bustle of daily life in the penthouse <span class='green'>didn't bother $him at all.</span>`;
+			t += ` Since ${he} is deaf, the hustle and bustle of daily life in the penthouse <span class='green'>didn't bother ${him} at all.</span>`;
 			slave.health += 3;
 		} else if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs")) {
-			t += ` Since $he is hard of hearing, the hustle and bustle of daily life in the penthouse <span class='green'>didn't disturb $his rest as much.</span>`;
+			t += ` Since ${he} is hard of hearing, the hustle and bustle of daily life in the penthouse <span class='green'>didn't disturb ${his} rest as much.</span>`;
 			slave.health += 1;
 		}
 	}
diff --git a/src/endWeek/saServant.tw b/src/endWeek/saServant.tw
index 06f58b7a5390f5f0b2007cbf5d38882d08d115ec..0662f9407d8c5593c578e03f276e60b33afae32d 100644
--- a/src/endWeek/saServant.tw
+++ b/src/endWeek/saServant.tw
@@ -25,10 +25,10 @@ window.saServant = function saServant(slave) {
 					t += `uses sex as a reward, getting ${him} off when ${he} <span class='yellowgreen'>works harder.</span>`;
 				}
 				if (!(canHear(slave))) {
-					t += ` However, $his inability to hear often leaves him oblivious to ${V.Stewardess.slaveName}'s orders, limiting their meaningful interactions.`;
+					t += ` However, ${his} inability to hear often leaves ${him} oblivious to ${V.Stewardess.slaveName}'s orders, limiting their meaningful interactions.`;
 					V.cash += (V.stewardessBonus/4);
 				} else if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs")) {
-					t += `  However, $he often doesn't catch what ${V.Stewardess.slaveName} says, leading to frustration, confusion and less work done.`;
+					t += `  However, ${he} often doesn't catch what ${V.Stewardess.slaveName} says, leading to frustration, confusion and less work done.`;
 					V.cash += (V.stewardessBonus/2);
 				} else {
 					V.cash += V.stewardessBonus;
diff --git a/src/endWeek/saStayConfined.tw b/src/endWeek/saStayConfined.tw
index 43fc440c8cab7505f8feb1e0689c962e7ba79e1d..df7cfb039b0616d1cc4036989eca98ccbe1f55b4 100644
--- a/src/endWeek/saStayConfined.tw
+++ b/src/endWeek/saStayConfined.tw
@@ -38,7 +38,7 @@ window.saStayConfined = function saStayConfined(slave) {
 
 		if (slave.assignment == "be confined in the cellblock") {
 			if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs") || (slave.hears == -2)) {
-				t += ` $His hearing impairment spares $him the sounds of $his peers getting punished, lightening the impact of $his imprisonment.`
+				t += ` ${His} hearing impairment spares ${him} the sounds of ${his} peers getting punished, lightening the impact of ${his} imprisonment.`
 			}
 		}
 		
diff --git a/src/uncategorized/sellSlave.tw b/src/uncategorized/sellSlave.tw
index e6fdcce454abe151a590e884ca8e162038878818..9d808fde7cc162234144b19910b2643a436cb489 100644
--- a/src/uncategorized/sellSlave.tw
+++ b/src/uncategorized/sellSlave.tw
@@ -2,65 +2,66 @@
 
 <<set $nextButton = "Back", $nextLink = "Slave Interact">>
 
-You prepare her for sale. Her response to being put up for purchase is
-<<if $activeSlave.devotion < -50>>muted; perhaps she hopes a new master will be less hateful than you.
-<<elseif $activeSlave.devotion < -20>>muted weeping; for some reason, she doesn't like being treated like meat on a slab.
-<<elseif $activeSlave.devotion <= 20>>hesitant; she can't seem to make up her mind whether this is going to mean an improvement or not.
-<<elseif $activeSlave.devotion <= 50>>obedient, if mechanical; she may want to stay with you.
-<<elseif $activeSlave.devotion <= 95>>ill-concealed sorrow; she clearly wants to stay with you very much.
-<<else>>open, abject, and heart-wrenching begging. Staying with you truly seems to be her only wish.
-<</if>>
-<<if $activeSlave.trust < -50>>She's certainly very willing to get away from your horrible punishments.
-<<elseif $activeSlave.trust < -20>>She's probably hoping she'll be a little less frightened all the time, wherever she does.
-<<elseif $activeSlave.trust < 20>>She does seem concerned that, hard as you are, her buyer may be less fair.
-<<elseif $activeSlave.trust < 50>>She's worried, probably because she's learned how to avoid punishment here and will have to learn new rules.
-<<elseif $activeSlave.trust < 95>>She promises she will do her best to make you proud by being a good slave to her new owners.
-<<else>>She tries to conceal her terror at going from a trustworthy slave master to the cruel and uncertain world outside your penthouse, but she fails.
+You prepare $him for sale. $His response to being put up for purchase is
+<<if $activeSlave.devotion < -50>>muted; perhaps $he hopes a new master will be less hateful than you.
+<<elseif $activeSlave.devotion < -20>>muted weeping; for some reason, $he doesn't like being treated like meat on a slab.
+<<elseif $activeSlave.devotion <= 20>>hesitant; $he can't seem to make up $his mind whether this is going to mean an improvement or not.
+<<elseif $activeSlave.devotion <= 50>>obedient, if mechanical; $he may want to stay with you.
+<<elseif $activeSlave.devotion <= 95>>ill-concealed sorrow; $he clearly wants to stay with you very much.
+<<else>>open, abject, and heart-wrenching begging. Staying with you truly seems to be $his only wish.
+<</if>>
+<<if $activeSlave.trust < -50>>$He's certainly very willing to get away from your horrible punishments.
+<<elseif $activeSlave.trust < -20>>$He's probably hoping $he'll be a little less frightened all the time, wherever $he goes.
+<<elseif $activeSlave.trust < 20>>$He does seem concerned that, hard as you are, $his buyer may be less fair.
+<<elseif $activeSlave.trust < 50>>$He's worried, probably because $he's learned how to avoid punishment here and will have to learn new rules.
+<<elseif $activeSlave.trust < 95>>$He promises $he will do $his best to make you proud by being a good slave to $his new owners.
+<<else>>$He tries to conceal $his terror at going from a trustworthy slave master to the cruel and uncertain world outside your penthouse, but $he fails.
 <</if>>
 
 <<slaveCost $activeSlave>>
 <<set $slaveCost = (random(70,80)*Math.trunc($slaveCost/100))>>
 
 <<if $activeSlave.breedingMark == 1 && $propOutcome == 1>>
-	Since you are selling a breeding slave, she will be sent to auction before other members of the Societal Elite.
+	Since you are selling a breeding slave, $he will be sent to auction before other members of the Societal Elite.
 <<else>>
 <<if $showAppraisal == 1>>
 <br><br>
-<<set $seed = []>>
+<<set _Reviewer = []>>
 <<if $arcologies[0].FSRomanRevivalist > 20>>
-	<<set $seed.push("roman")>>
+	<<set _Reviewer.push("roman")>>
 <<elseif $arcologies[0].FSAztecRevivalist > 20>>
-	<<set $seed.push("aztec")>>
+	<<set _Reviewer.push("aztec")>>
 <<elseif $arcologies[0].FSEgyptianRevivalist > 20>>
-	<<set $seed.push("egyptian")>>
+	<<set _Reviewer.push("egyptian")>>
 <<elseif $arcologies[0].FSEdoRevivalist > 20>>
-	<<set $seed.push("edo")>>
+	<<set _Reviewer.push("edo")>>
 <<elseif $arcologies[0].FSArabianRevivalist > 20>>
-	<<set $seed.push("arabian")>>
+	<<set _Reviewer.push("arabian")>>
 <<elseif $arcologies[0].FSChineseRevivalist > 20>>
-	<<set $seed.push("chinese")>>
+	<<set _Reviewer.push("chinese")>>
 <</if>>
 <<if $arcologies[0].FSChattelReligionist > 20>>
-	<<set $seed.push("priestess")>>
+	<<set _Reviewer.push("priestess")>>
 <</if>>
 <<if $arcologies[0].FSRestartDecoration == 100>>
-	<<set $seed.push("Elite")>>
+	<<set _Reviewer.push("Elite")>>
 <</if>>
 <<if $seeDicks != 0>>
-	<<set $seed.push("futa")>>
-	<<set $seed.push("businesswoman")>>
-	<<set $seed.push("slaver")>>
-	<<set $seed.push("accountant")>>
+	<<set _Reviewer.push("futa")>>
+	<<set _Reviewer.push("businesswoman")>>
+	<<set _Reviewer.push("slaver")>>
+	<<set _Reviewer.push("accountant")>>
 <<else>>
-	<<set $seed.push("businesswoman")>>
-	<<set $seed.push("slaver")>>
-	<<set $seed.push("accountant")>>
+	<<set _Reviewer.push("businesswoman")>>
+	<<set _Reviewer.push("slaver")>>
+	<<set _Reviewer.push("accountant")>>
 <</if>>
-<<set $appraiser = $seed.random()>>
+<<set _appraiser = _Reviewer.random()>>
 
-A reputable slave appraiser arrives promptly to inspect her and certify her qualities for sale. The appraiser,
-<<if $appraiser == "roman">>
-	one of the arcology's appointed censors, sweeps in grandly in his toga with its blue stripe of office, greets you confidently, and turns to the slave. He unrolls a scroll-shaped soft tablet, reviewing video of the girl's skills and referring back to her body as he works his way through the prescribed method of valuation. Finished, he turns to you.
+A reputable slave appraiser arrives promptly to inspect $him and certify $his qualities for sale. The appraiser,
+<<switch _appraiser>>
+<<case "roman">>
+	one of the arcology's appointed censors, sweeps in grandly in his toga with its blue stripe of office, greets you confidently, and turns to the slave. He unrolls a scroll-shaped soft tablet, reviewing video of the $boy's skills and referring back to $his body as he works his way through the prescribed method of valuation. Finished, he turns to you.
 	<<if def $PC.customTitle>>
 		"$PC.customTitle,
 	<<else>>
@@ -72,9 +73,9 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual
 			"Aedile,
 		<</if>>
 	<</if>>
-	I have appraised your slave. As directed by law, my appraisal is based on her potential income in a brothel, with modification for any significant qualities. I have found the following.
+	I have appraised your slave. As directed by law, my appraisal is based on $his potential income in a brothel, with modification for any significant qualities. I have found the following.
 	<<set $appraiserGender = 1>>
-<<elseif $appraiser == "aztec">>
+<<case "aztec">>
 	one of the arcology's slave examiners, comes elegantly in wearing a very richly ornamented cape and a simple headdress to accentuate her face.<<if $arcologies[0].FSRepopulationFocusLaw == 1>> Her bronzed middle is noticeably swollen with pregnancy.<</if>> She acquaints herself with the slave and carries on a short inspection and a shorter conversation. She returns to you, goes on one knee, and follows by saying.
 	<<if def $PC.customTitle>>
 		"Your $PC.customTitle,
@@ -87,9 +88,9 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual
 			"Your Greatness,
 		<</if>>
 	<</if>>
-	I have appraised your slave. My appraisal is based on her potential income in a brothel, with modification for her special qualities. I have found the following.
-<<elseif $appraiser == "egyptian">>
-	one of the arcology's traditional slave examiners, comes elegantly in wearing a simple gown shift that sweeps low, baring her bronzed back.<<if $arcologies[0].FSRepopulationFocusLaw == 1>> Her gown is noticeably swollen with pregnancy.<</if>> She greets you warmly, and then turns to the slave. She inspects her and carries on a polite conversation with her, learning about her by talking with her. When she finishes, she turns to you and bows deeply.
+	I have appraised your slave. My appraisal is based on $his potential income in a brothel, with modification for $his special qualities. I have found the following.
+<<case "egyptian">>
+	one of the arcology's traditional slave examiners, comes elegantly in wearing a simple gown shift that sweeps low, baring her bronzed back.<<if $arcologies[0].FSRepopulationFocusLaw == 1>> Her gown is noticeably swollen with pregnancy.<</if>> She greets you warmly, and then turns to the slave. She inspects $him and carries on a polite conversation with $him, learning about $him by talking with $him. When she finishes, she turns to you and bows deeply.
 	<<if def $PC.customTitle>>
 		"My $PC.customTitle,
 	<<else>>
@@ -105,9 +106,9 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual
 			<</if>>
 		<</if>>
 	<</if>>
-	I have appraised your slave. My appraisal is based on her potential income in a brothel, with modification for her special qualities. I have found the following.
-<<elseif $appraiser == "edo">>
-	one of the arcology's recognized slave examiners, arrives alone, but is no less regal for it. She is dressed as a proper Edo lady, and is a natural at it, slim<<if $arcologies[0].FSRepopulationFocusLaw == 1>>, despite her large pregnancy<</if>>, pretty, and proper. She greets you correctly, the only sign of her middle age being a little creasing at the corners of her eyes, and then turns to the slave. She seems to have researched her skills already, and so performs a skilled inspection without even needing to touch the girl.
+	I have appraised your slave. My appraisal is based on $his potential income in a brothel, with modification for $his special qualities. I have found the following.
+<<case "edo">>
+	one of the arcology's recognized slave examiners, arrives alone, but is no less regal for it. She is dressed as a proper Edo lady, and is a natural at it, slim<<if $arcologies[0].FSRepopulationFocusLaw == 1>>, despite her large pregnancy<</if>>, pretty, and proper. She greets you correctly, the only sign of her middle age being a little creasing at the corners of her eyes, and then turns to the slave. She seems to have researched her skills already, and so performs a skilled inspection without even needing to touch the $boy.
 	<<if def $PC.customTitle>>
 		"$PC.customTitle,
 	<<else>>
@@ -123,9 +124,9 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual
 			"Honored Daimyo,
 		<</if>>
 	<</if>>
-	I have appraised your slave. My appraisal is based on her potential income in a brothel, with modification for special matters. I have found the following.
-<<elseif $appraiser == "arabian">>
-	a huge, jovial man, sweeps in and fills the room with bonhomie. He wears loose silk pantaloons, a silk sash with a short leather whip thrust into it, and a little jacket that leaves most of his dark-skinned, massive chest bare. After booming a respectful greeting, he turns to the slave. He seems to have asked around about her skills, and so limits himself to a quick physical inspection before rumbling,
+	I have appraised your slave. My appraisal is based on $his potential income in a brothel, with modification for special matters. I have found the following.
+<<case "arabian">>
+	a huge, jovial man, sweeps in and fills the room with bonhomie. He wears loose silk pantaloons, a silk sash with a short leather whip thrust into it, and a little jacket that leaves most of his dark-skinned, massive chest bare. After booming a respectful greeting, he turns to the slave. He seems to have asked around about $his skills, and so limits himself to a quick physical inspection before rumbling,
 	<<if def $PC.customTitle>>
 		"$PC.customTitle,
 	<<else>>
@@ -145,9 +146,9 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual
 			"Peace be upon you, honored slaveowner.
 		<</if>>
 	<</if>>
-	I have appraised your slave. My appraisal is based on her potential income in the whorehouse, with modification for special matters. As to them, I have found the following.
-	<<set $appraiserGender = 1>>
-<<elseif $appraiser == "chinese">>
+	I have appraised your slave. My appraisal is based on $his potential income in the whorehouse, with modification for special matters. As to them, I have found the following.
+	<<set _appraiserGender = 1>>
+<<case "chinese">>
 	an older and rather stout woman<<if $arcologies[0].FSRepopulationFocusLaw == 1>>, with a noticeably heavy pregnancy,<</if>> in traditional Chinese dress, gives you a precise and proper greeting. She extracts a tablet from one of her wide sleeves and reviews video of the slave in action before performing a physical inspection. Then she seats herself, stows her tablet again, and recites in a didactic tone, "Honored
 	<<if def $PC.customTitle>>
 		$PC.customTitle,
@@ -173,9 +174,9 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual
 		<</if>>
 	<</if>>
 	my appraisals are based on a slave's potential income as a prostitute, with modifiers for special characteristics. I have appraised your slave, and I have found the following.
-	<<set $appraiserGender = 0>>
-<<elseif $appraiser == "priestess">>
-	a holy woman ordained to provide this service, wears a white surplice that covers her hair and a long white dress - but since she is a priestess of the new religion, not one of the old faiths, the ensemble also includes a white leather corset, chased with gold, that displays her breasts magnificently. It's easy to tell she's no slave, though, since her nipples are covered. She accepts your gaze with a smile, and assumes a straight-backed recitation posture. "Book of the Slaver, Chapter Seven: the Appraisal, Verse Six. The appraiser shall value a slave based on her income as a whore, with allowances for special qualities, which she shall disclose to the Owner. Amen." She turns to her work, and then adopts her recitation posture again.
+	<<set _appraiserGender = 0>>
+<<case "priestess">>
+	a holy woman ordained to provide this service, wears a white surplice that covers her hair and a long white dress - but since she is a priestess of the new religion, not one of the old faiths, the ensemble also includes a white leather corset, chased with gold, that displays her breasts magnificently. It's easy to tell she's no slave, though, since her nipples are covered. She accepts your gaze with a smile, and assumes a straight-backed recitation posture. "Book of the Slaver, Chapter Seven: the Appraisal, Verse Six. The appraiser shall value a slave based on $his income as a whore, with allowances for special qualities, which $he shall disclose to the Owner. Amen." She turns to her work, and then adopts her recitation posture again.
 	<<if def $PC.customTitle>>
 		"$PC.customTitle,
 	<<else>>
@@ -190,66 +191,66 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual
 		<</if>>
 	<</if>>
 	I have examined your slave in accordance with the Book.
-<<elseif $appraiser == "Elite">>
+<<case "Elite">>
 	a member of the Societal Elite you are familiar with greets you respectfully and <<if $PC.dick == 1>>tosses you a wink as she pats her rounded belly. "He's doing well.<<else>>calms her kicking child so she can continue. "Think he'll look as good as his father?<</if>> Anyway, as I'm sure you know, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>sir<<else>>madam<</if>>," she says as she uses curt instructions to direct $activeSlave.slaveName, "appraisals are based on a slave's potential worth as a toy, with modifiers for special characteristics." She scrolls down the list. "I'll just mention the interesting ones.
-<<elseif $appraiser == "futa">>
+<<case "futa">>
 	a curvy, middle aged, and quite attractive woman wearing a tank top and yoga pants, greets you cheerfully and turns to the slave. As she does, you can't help but notice that the yoga pants make it obvious she has a penis almost as long as one of her forearms. She makes notes on a tablet, flipping through videos that display the slave in action as she works. "<<if def $PC.customTitle>><<print $PC.customTitle>><<elseif $PC.title == 1>>Sir<<else>>Madame<</if>>, I'm, like, sorry to have to say this to you since I know you know it better than I do, but it's the script, you know? Anyway appraisals are based on a slave's potential performance as a public slut, with modifiers for special characteristics." She makes notes. "I'll just mention the significant ones.
-	<<set $appraiserGender = 0>>
-<<elseif $appraiser == "businesswoman">>
+	<<set _appraiserGender = 0>>
+<<case "businesswoman">>
 	an older businesswoman with a reputation for correctness, gives you a prim nod before turning to the nude slave without wasting further time. She deftly makes notes on a haptic wrist interface, flipping through videos of the slave in action as she works. "As I'm sure you know, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>sir<<else>>madam<</if>>," she says as she uses curt instructions to direct $activeSlave.slaveName, "appraisals are based on a slave's potential income as a prostitute, with modifiers for special characteristics." Her fingers fly across the interface. "I'll just mention the significant ones.
-<<elseif $appraiser == "slaver">>
-	a scarred old slaver with calloused hands and a knowing face, greets you in his companionable way before clapping his hands together and turning to the slave. He switches back and forth between the girl and a battered old tablet with video proving her skills. "Well, as you know <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>suh<<else>>ma'am<</if>>," he says as he firmly repositions $activeSlave.slaveName, "appraisals are based on a slave's potential income as a whore, with modifiers for special things." He pauses, prodding the tablet. "I'll just mention the main items.
-<<else>>
-	a fashionably but formally dressed young man with slicked-back hair, greets you correctly before activating an examination visor and reviewing video evidence of the slave's skills. That done, he deactivates the visor and performs a quick physical examination. "As I'm sure you know, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>sir<<else>>madam<</if>>," he says as he gently repositions $activeSlave.slaveName to get a good look at her, "appraisals are based on a slave's potential income as a whore, with modifiers for special characteristics." He pauses, using subvocalizations to make data entries. "I'll just mention the significant ones.
-<</if>>
+<<case "slaver">>
+	a scarred old slaver with calloused hands and a knowing face, greets you in his companionable way before clapping his hands together and turning to the slave. He switches back and forth between the $boys and a battered old tablet with video proving $his skills. "Well, as you know <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>suh<<else>>ma'am<</if>>," he says as he firmly repositions $activeSlave.slaveName, "appraisals are based on a slave's potential income as a whore, with modifiers for special things." He pauses, prodding the tablet. "I'll just mention the main items.
+<<default>>
+	a fashionably but formally dressed young man with slicked-back hair, greets you correctly before activating an examination visor and reviewing video evidence of the slave's skills. That done, he deactivates the visor and performs a quick physical examination. "As I'm sure you know, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>sir<<else>>madam<</if>>," he says as he gently repositions $activeSlave.slaveName to get a good look at $him, "appraisals are based on a slave's potential income as a whore, with modifiers for special characteristics." He pauses, using subvocalizations to make data entries. "I'll just mention the significant ones.
+<</switch>>
 
 <<if $activeSlave.eyes == -2>>
-	Her blindness is an obvious issue.
+	$His blindness is an obvious issue.
 <</if>>
 
 <<if $activeSlave.career != 0>>
 	<<if setup.bodyguardCareers.includes($activeSlave.career)>>
-	Her background would help make her a good Bodyguard; that's valuable.
+	$His background would help make $him a good Bodyguard; that's valuable.
 	<<elseif setup.wardenessCareers.includes($activeSlave.career)>>
-	Her background would help make her a good Wardeness; that's valuable.
+	$His background would help make $him a good Wardeness; that's valuable.
 	<<elseif setup.attendantCareers.includes($activeSlave.career)>>
-	Her background would help make her a good Attendant; that's valuable.
+	$His background would help make $him a good Attendant; that's valuable.
 	<<elseif setup.schoolteacherCareers.includes($activeSlave.career)>>
-	Her background would help make her a good Schoolteacher; that's valuable.
+	$His background would help make $him a good Schoolteacher; that's valuable.
 	<<elseif setup.stewardessCareers.includes($activeSlave.career)>>
-	Her background would help make her a good Stewardess; that's valuable.
+	$His background would help make $him a good Stewardess; that's valuable.
 	<<elseif setup.milkmaidCareers.includes($activeSlave.career)>>
-	Her background would help make her a good Milkmaid; that's valuable.
+	$His background would help make $him a good Milkmaid; that's valuable.
 	<<elseif setup.madamCareers.includes($activeSlave.career)>>
-	Her background would help make her a good Madam; that's valuable.
+	$His background would help make $him a good Madam; that's valuable.
 	<<elseif setup.DJCareers.includes($activeSlave.career)>>
-	Her background would help make her a good DJ; that's valuable.
+	$His background would help make $him a good DJ; that's valuable.
 	<<elseif setup.HGCareers.includes($activeSlave.career)>>
-	Her background would help make her a good Head Girl; that's valuable.
+	$His background would help make $him a good Head Girl; that's valuable.
 	<<elseif setup.recruiterCareers.includes($activeSlave.career)>>
-	Her background would help make her a good Recruiter; that's valuable.
+	$His background would help make $him a good Recruiter; that's valuable.
 	<<elseif setup.entertainmentCareers.includes($activeSlave.career)>>
-	Her background should help her flirting a little.
+	$His background should help $his flirting a little.
 	<<elseif setup.whoreCareers.includes($activeSlave.career)>>
-	Her background should help her fucking a little.
+	$His background should help $his fucking a little.
 	<<elseif setup.gratefulCareers.includes($activeSlave.career)>>
-	Her background should make her a bit more trusting.
+	$His background should make $him a bit more trusting.
 	<<elseif setup.menialCareers.includes($activeSlave.career)>>
-	Her background should make her a bit more tractable.
+	$His background should make $him a bit more tractable.
 	<<elseif setup.servantCareers.includes($activeSlave.career)>>
-	Her background should make her a good servant.
+	$His background should make $him a good servant.
 	<</if>>
 <</if>>
 <<if ($week-$activeSlave.weekAcquired >= 20) && ($activeSlave.entertainSkill >= 100)>>
 <<if setup.entertainmentCareers.includes($activeSlave.career)>>
 <<else>>
-	She's gotten enough experience as a slave entertainer that she has the added value of a girl with a history in entertainment from before she was a slave.
+	$He's gotten enough experience as a slave entertainer that $he has the added value of a $boy with a history in entertainment from before $he was a slave.
 <</if>>
 <</if>>
 <<if ($activeSlave.oralCount + $activeSlave.analCount + $activeSlave.vaginalCount + $activeSlave.mammaryCount + $activeSlave.penetrativeCount > 1000)>>
 <<if setup.whoreCareers.includes($activeSlave.career)>>
 <<else>>
-	I see she's sexually very experienced; that counts as a stand-in for the usual bonus value from having been a sex worker before enslavement.
+	I see $he's sexually very experienced; that counts as a stand-in for the usual bonus value from having been a sex worker before enslavement.
 <</if>>
 <</if>>
 
@@ -287,15 +288,15 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual
 <<if ($activeSlave.skillWA >= $masteredXP)>>
 	<<set _careers.push("Wardeness")>>
 <</if>>
+<<if ($activeSlave.skillS >= $masteredXP)>>
+	<<set _careers.push("Servant")>>
+<</if>>
 <<if ($activeSlave.skillE >= $masteredXP)>>
 	<<set _careers.push("Entertainer")>>
 <</if>>
 <<if ($activeSlave.skillW >= $masteredXP)>>
 	<<set _careers.push("Whore")>>
 <</if>>
-<<if ($activeSlave.skillS >= $masteredXP)>>
-	<<set _careers.push("Servant")>>
-<</if>>
 <<if _careers.length > 0>>
 	$He has working experience as a
 	<<if _careers.length > 2>>
@@ -309,60 +310,60 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual
 	<<elseif _careers.length > 1>>
 		_careers[1] and <<print _careers[0]>>.
 	<<else>>
-		<<print _careers[0]>>. Providing $him the same additional value if he had a revelant career.
+		<<print _careers[0]>>. Providing $him the same additional value if $he had a revelant career.
 	<</if>>
 <</if>>
 
 <<if $activeSlave.behavioralFlaw != "none">>
 	<<if $activeSlave.sexualFlaw != "none">>
-		She has both a behavioral flaw and a sexual flaw; those are both minor negatives.
+		$He has both a behavioral flaw and a sexual flaw; those are both minor negatives.
 	<<else>>
-		She has a behavioral flaw, which is a minor negative.
+		$He has a behavioral flaw, which is a minor negative.
 	<</if>>
 <</if>>
 <<if $activeSlave.sexualFlaw == "breeder" && $arcologies[0].FSRepopulationFocus != "unset">>
-	She is obsessed with breeding, which will make her very popular in your arcology.
+	$He is obsessed with breeding, which will make $him very popular in your arcology.
 <<elseif $activeSlave.sexualFlaw != "none">>
 	<<if $activeSlave.behavioralFlaw == "none">>
-		She has a sexual flaw, which is a minor negative.
+		$He has a sexual flaw, which is a minor negative.
 	<</if>>
 <</if>>
 <<if ($activeSlave.behavioralFlaw != "none") || ($activeSlave.sexualFlaw != "none")>>
 	<<if $activeSlave.behavioralQuirk != "none">>
 		<<if $activeSlave.sexualQuirk != "none">>
-			On the other hand, she has both a behavioral quirk and a sexual quirk; those are both minor positives.
+			On the other hand, $he has both a behavioral quirk and a sexual quirk; those are both minor positives.
 		<<else>>
-			On the other hand, she has a behavioral quirk, which is a minor positive.
+			On the other hand, $he has a behavioral quirk, which is a minor positive.
 		<</if>>
 	<</if>>
 	<<if $activeSlave.sexualQuirk != "none">>
 		<<if $activeSlave.behavioralQuirk == "none">>
-			On the other hand, she has a sexual quirk, which is a minor positive.
+			On the other hand, $he has a sexual quirk, which is a minor positive.
 		<</if>>
 	<</if>>
 <<else>>
 	<<if $activeSlave.behavioralQuirk != "none">>
 		<<if $activeSlave.sexualQuirk != "none">>
-			She has both a behavioral quirk and a sexual quirk; those are both minor positives.
+			$He has both a behavioral quirk and a sexual quirk; those are both minor positives.
 		<<else>>
-			She has a behavioral quirk, which is a minor positive.
+			$He has a behavioral quirk, which is a minor positive.
 		<</if>>
 	<</if>>
 	<<if $activeSlave.sexualQuirk != "none">>
 		<<if $activeSlave.behavioralQuirk == "none">>
-			She has a sexual quirk, which is a minor positive.
+			$He has a sexual quirk, which is a minor positive.
 		<</if>>
 	<</if>>
 <</if>>
 
 <<if $activeSlave.fetish == "mindbroken">>
-	It's a shame she's mindbroken. From a price perspective.
+	It's a shame $he's mindbroken. From a price perspective.
 <<elseif $activeSlave.fetish != "none" && $activeSlave.fetishKnown == 1>>
-	Her fetish is good for performance, of course, but it adds a little bonus to value, too.
+	$His fetish is good for performance, of course, but it adds a little bonus to value, too.
 <<elseif $activeSlave.fetishKnown == 1>>
-	Her tastes are a tad plain, but at least it won't hurt her value.
+	$His tastes are a tad plain, but at least it won't hurt $his value.
 <<else>>
-	It's a pity there's no information on her fetishes. Without it, buyers tend to assume the worst.
+	It's a pity there's no information on $his fetishes. Without it, buyers tend to assume the worst.
 <</if>>
 
 <<if $activeSlave.attrKnown == 1>>
@@ -370,7 +371,7 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual
 	Nymphomania adds a major price bonus.
 	<</if>>
 <<else>>
-	With her sex drive not well tested, I cannot award her any value in that area.
+	With $his sex drive not well tested, I cannot award $him any value in that area.
 <</if>>
 
 <<if $activeSlave.vagina == 0>>
@@ -380,7 +381,7 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual
 	<<if $activeSlave.preg < -1>>
 		The lack of an ability to become pregnant greatly decreases value, the global market being what it is.
 	<<elseif ($activeSlave.bellyPreg >= 300000)>>
-		That belly is all child? Incredible. Such fertility will price her very high, the global market being what it is.
+		That belly is all child? Incredible. Such fertility will price $him very high, the global market being what it is.
 	<<elseif ($activeSlave.bellyPreg >= 120000)>>
 		Such a massive pregnancy demands a high value, the global market being what it is.
 	<<elseif ($activeSlave.preg > 10)>>
@@ -388,19 +389,19 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual
 	<</if>>
 <<elseif $arcologies[0].FSRestartSMR != 0>>
 	<<if $activeSlave.preg < -1>>
-		Her infertility improves her value, since her kind should not be allowed to reproduce.
+		$His infertility improves $his value, since $his kind should not be allowed to reproduce.
 	<<elseif ($activeSlave.bellyPreg >= 300000)>>
-		That belly is all child? How horrible. She'd make a better example of the horrors of pregnancy than a sex slave.
+		That belly is all child? How horrible. $He'd make a better example of the horrors of pregnancy than a sex slave.
 	<<elseif ($activeSlave.bellyPreg >= 30000)>>
-		What a disgusting creature, that filth inside her will destroy her value.
+		What a disgusting creature, that filth inside $him will destroy $his value.
 	<<elseif ($activeSlave.preg > 10)>>
-		What a waste, if she weren't pregnant, she might be worth something.
+		What a waste, if $he weren't pregnant, $he might be worth something.
 	<</if>>
 <<else>>
-	<<if $activeSlave.preg < -1>>
+	<<if $activeSlave.ovaries == 1 && $activeSlave.vagina > -1>>
 		The lack of a natural vagina still removes a little value, the global market being what it is.
 	<<elseif ($activeSlave.bellyPreg >= 300000)>>
-		Such an obscene and life threatening display of fertility will turn off most buyers and considerably damage her value, the global market being what it is.
+		Such an obscene and life threatening display of fertility will turn off most buyers and considerably damage $his value, the global market being what it is.
 	<<elseif ($activeSlave.bellyPreg >= 120000)>>
 		Such a massive and dangerous pregnancy removes some value, the global market being what it is.
 	<<elseif ($activeSlave.preg > 10)>>
@@ -411,74 +412,74 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual
 	What's this strange organ listed here? She can become anally pregnant? That will certainly interest some buyers.
 <</if>>
 <<if $activeSlave.pregWeek < 0>>
-	She seems a little uncomfortable with her holes being touched. By the feel of it, she is a new mother, no? A lack of receptivity will not go over well with buyers; it may more profitable to let her recover first.
+	$He seems a little uncomfortable with $his holes being touched. By the feel of it, $he is a new mother, no? A lack of receptivity will not go over well with buyers; it may more profitable to let $him recover first.
 <</if>>
 <<if $activeSlave.intelligence >= 3>>
-	Her genius is probably going to bring in very generous bids.
+	$His genius is probably going to bring in very generous bids.
 	<<if $activeSlave.intelligenceImplant == 1>>
-		Her education is an added positive, beyond that.
+		$His education is an added positive, beyond that.
 	<</if>>
 <<elseif $activeSlave.intelligence > 0>>
-	Of course, her intelligence is an asset outside of its sexual applications.
+	Of course, $his intelligence is an asset outside of its sexual applications.
 	<<if $activeSlave.intelligenceImplant == 1>>
-		Her education is an added positive, beyond that.
+		$His education is an added positive, beyond that.
 	<</if>>
 <<elseif $activeSlave.intelligence < 0>>
-	Of course, her stupidity will be a minor negative.
+	Of course, $him stupidity will be a minor negative.
 	<<if $activeSlave.intelligenceImplant == 1>>
-		Her education will help ameliorate that in price terms.
+		$His education will help ameliorate that in price terms.
 	<<else>>
-		She's uneducated, too.
+		$He's uneducated, too.
 	<</if>>
 <</if>>
 
 <<if $activeSlave.anus == 0>>
-	Her virgin anus is a minor positive, since anal defloration is in such high demand.
+	$His virgin anus is a minor positive, since anal defloration is in such high demand.
 <</if>>
 
 <<if $activeSlave.vagina > -1>>
 	<<if $activeSlave.dick > 0>>
-		She has both sets of equipment, I see; that's very valuable.
+		$He has both sets of equipment, I see; that's very valuable.
 		<<if $activeSlave.ovaries > 0 && $activeSlave.balls > 0>>
 			<<if $arcologies[0].FSRestartSMR == 1>>
 				And both are fertile? Horrible. Such fertility is wasted on trash.
 			<<else>>
-				And both are fertile? Incredible. She'll appraise extremely well for that.
+				And both are fertile? Incredible. $He'll appraise extremely well for that.
 			<</if>>
 		<</if>>
 	<</if>>
 <</if>>
 
 <<if $activeSlave.pubertyXY == 0 && $activeSlave.physicalAge >= $potencyAge && $arcologies[0].FSGenderRadicalist == "unset" && $activeSlave.balls > 0>>
-	She never went through male puberty, that's a plus.
+	$He never went through male puberty, that's a plus.
 <</if>>
 
 <<if $activeSlave.prestige > 0>>
-	I see notes on her notoriety in her file. That will drive up her price.
+	I see notes on $his notoriety in $his file. That will drive up $his price.
 <</if>>
 
 <<if $activeSlave.pornPrestige == 3>>
-	She's pretty popular in $activeSlave.pornType smut, isn't she? Buyers will be lining up for her.
+	$He's pretty popular in $activeSlave.pornType smut, isn't $he? Buyers will be lining up for $him.
 <<elseif $activeSlave.pornPrestige == 2>>
-	She's gained quite the following in $activeSlave.pornType smut. In fact, I've even seen some of her smut; buyers will flock to her.
+	$He's gained quite the following in $activeSlave.pornType smut. In fact, I've even seen some of $his smut; buyers will flock to $him.
 <<elseif $activeSlave.pornPrestige == 1>>
-	She's got a small fanbase in $activeSlave.pornType smut. Who knows? Maybe one of them will want her all to herself?
+	$He's got a small fanbase in $activeSlave.pornType smut. Who knows? Maybe one of them will want $him all to herself?
 <</if>>
 
 <<if $activeSlave.devotion > 95>>
-	Her worshipfulness is a major positive
+	$His worshipfulness is a major positive
 <<elseif $activeSlave.devotion > 50>>
-	Her devotion is a significant positive
+	$His devotion is a significant positive
 <<elseif $activeSlave.devotion > 20>>
-	Her acceptance of slavery is a minor positive
+	$His acceptance of slavery is a minor positive
 <<elseif $activeSlave.devotion >= -20>>
-	Her acceptance of slavery is equivocal
+	$His acceptance of slavery is equivocal
 <<elseif $activeSlave.devotion >= -50>>
-	Her resistance to slavery is a minor negative
+	$His resistance to slavery is a minor negative
 <<elseif $activeSlave.devotion >= -75>>
-	Her hatred of slavery is a significant negative
+	$His hatred of slavery is a significant negative
 <<else>>
-	Her rebelliousness is a major negative
+	$His rebelliousness is a major negative
 <</if>>
 <<if $activeSlave.devotion >= -20 && $activeSlave.devotion <= 20 && $activeSlave.trust <= 20 && $activeSlave.trust > -20>>
 	but
@@ -488,79 +489,79 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual
 	but
 <</if>>
 <<if $activeSlave.trust > 95>>
-	her powerful trust is a major positive.
+	$his powerful trust is a major positive.
 <<elseif $activeSlave.trust > 50>>
-	her trust is a significant positive.
+	$his trust is a significant positive.
 <<elseif $activeSlave.trust > 20>>
-	her carefulness is a minor positive.
+	$his carefulness is a minor positive.
 <<elseif $activeSlave.trust >= -20>>
-	her fearfulness is equivocal.
+	$his fearfulness is equivocal.
 <<elseif $activeSlave.trust >= -50>>
-	her fear is a minor negative.
+	$his fear is a minor negative.
 <<elseif $activeSlave.devotion >= -90>>
-	her terrified state is a significant negative.
+	$his terrified state is a significant negative.
 <<else>>
-	her abjectly terrified state is a major negative.
+	$his abjectly terrified state is a major negative.
 <</if>>
 
 <<if $activeSlave.brand != 0>>
 	<<if $rep > 10000>>
-	I see she's branded with your mark; with your stellar reputation, that will make her appraise better.
+		I see $he's branded with your mark; with your stellar reputation, that will make $him appraise better.
 	<<elseif $rep < 5000>>
-	I see she's branded with your mark; unfortunately, that will make her appraise slightly less well.
+		I see $he's branded with your mark; unfortunately, that will make $him appraise slightly less well.
 	<<else>>
-	I see she's branded with your mark; that won't have a significant impact.
+		I see $he's branded with your mark; that won't have a significant impact.
 	<</if>>
 <</if>>
 
 <<if ($activeSlave.actualAge >= $retirementAge-5) && $PhysicalRetirementAgePolicy != 1>>
-	 <<set $seed = 52*($retirementAge-$activeSlave.actualAge)>>
-	Since she has a mere $seed weeks left until the local retirement age for sex slaves, buyers will be willing to offer much less for her.
+	<<set _TimeBeforeAgeRetirement = 52*($retirementAge-$activeSlave.actualAge)>>
+	Since $he has a mere _TimeBeforeAgeRetirement weeks left until the local retirement age for sex slaves, buyers will be willing to offer much less for $him.
 <</if>>
 <<if ($activeSlave.physicalAge >= $retirementAge-5) && $PhysicalRetirementAgePolicy == 1>>
-	 <<set $seed = 52*($retirementAge-$activeSlave.physicalAge)>>
-	Since she has a mere $seed weeks left until the local retirement age for sex slaves, buyers will be willing to offer much less for her.
+	<<set _TimeBeforeAgeRetirement = 52*($retirementAge-$activeSlave.physicalAge)>>
+	Since $he has a mere _TimeBeforeAgeRetirement weeks left until the local retirement age for sex slaves, buyers will be willing to offer much less for $him.
 <</if>>
 
 <<if $arcologies[0].FSSupremacistLawME != 0>>
 	<<if $activeSlave.race != $arcologies[0].FSSupremacistRace>>
-	Your supremacism has pushed a lot of subhumans like her into the market, so her race is a negative.
+		Your supremacism has pushed a lot of subhumans like $him into the market, so $his race is a negative.
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSSubjugationistLawME != 0>>
 	<<if $activeSlave.race == $arcologies[0].FSSubjugationistRace>>
-	Your subjugationism has pushed a lot of animals like her into the market, so her race is a negative.
+		Your subjugationism has pushed a lot of animals like $him into the market, so $his race is a negative.
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSRepopulationFocusSMR != 0>>
-  <<if $activeSlave.pregKnown == 1>>
-	Pregnant slaves appraise quite well, thanks to your leadership on repopulation.
-  <</if>>
+	<<if $activeSlave.pregKnown == 1>>
+		Pregnant slaves appraise quite well, thanks to your leadership on repopulation.
+	<</if>>
 <</if>>
 <<if $arcologies[0].FSRestartSMR != 0>>
 	<<if $activeSlave.dick > 0>>
-	  Subhumans with dicks appraise less well, since they don't need them.
+		Subhumans with dicks appraise less well, since they don't need them.
 	<</if>>
 	<<if $activeSlave.balls > 0>>
-	  She has balls too. A slave that can impregnate is worth little under your vision of the future.
+		$He has balls too. A slave that can impregnate is worth little under your vision of the future.
 	<</if>>
 	<<if $activeSlave.vagina > 0>>
-	  Subhumans with vaginas appraise less well, since they don't need them.
+		Subhumans with vaginas appraise less well, since they don't need them.
 	<</if>>
 	<<if $activeSlave.ovaries > 0>>
-	  She can get pregnant too. A slave that can bear children is worth little under your vision of the future.
+		$He can get pregnant too. A slave that can bear children is worth little under your vision of the future.
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSHedonisticDecadenceSMR != 0>>
 	<<if $activeSlave.weight > 60 && $activeSlave.muscles < 5>>
-		Plush, soft slaves like her appraise well, thanks to the shifting views on beauty.
+		Plush, soft slaves like $him appraise well, thanks to the shifting views on beauty.
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSGenderFundamentalistSMR != 0>>
 	<<if $activeSlave.dick > 0>>
 		Slaves with dicks appraise less well, thanks to your leadership on gender.
 		<<if $activeSlave.balls > 0>>
-		That's especially true for her, since she still has her balls.
+			That's especially true for $him, since $he still has $his balls.
 		<</if>>
 	<</if>>
 <</if>>
@@ -594,34 +595,35 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual
 <</if>>
 
 <<if $activeSlave.indenture > -1>>
-	Though I dislike mentioning something so obvious, being an indentured servant will have a huge impact on her valuation.
-<</if>>
-
-<<if $appraiser == "roman">>
-	That is all." He rolls his screen-scroll up and tucks it into his toga, and nods. "A pleasure."
-<<elseif $appraiser == "aztec">>
-	That's all. Thank you." She turns to go, her long cape swiveling in the air, showing a glimpse of her <<if $arcologies[0].FSRepopulationFocusLaw == 1>>fecund<<else>>pleasant<</if>> figure.
-<<elseif $appraiser == "egyptian">>
-	That's all. Thank you for this delightful opportunity." She turns to go, but turns again in the doorway to offer another deep bow, this one so low that her linen dress discloses just a hint of her dimpled rear.
-<<elseif $appraiser == "edo">>
-	That is all. Thank you." She performs a perfect bow and retreats.
-<<elseif $appraiser == "arabian">>
-	That is all. She may fetch a fine price, if the Almighty will it." He bows deeply and backs out the door.
-<<elseif $appraiser == "chinese">>
-	That is all." She bows and backs out the door.
-<<elseif $appraiser == "priestess">>
-	Amen." She forms a holy symbol with her hands, kneels before you to bow so low that her cleavage presses against the floor, and retreats.
-<<elseif $appraiser == "futa">>
-	That's all. Thanks! Cute girl." She goes, but pauses in the doorway to give you a little wave.
-<<elseif $appraiser == "Elite">>
-	That's all. <<if $PC.dick == 1>>See you around! Have to have a few other guy's kids before we can have some more fun, but I'll keep you in mind!<<else>>See you around, we'll have to go drinking after I'm done sometime!<</if>>" She waves, as she leaves.
-<<elseif $appraiser == "businesswoman">>
-	That will be all. Thank you, and good day." She bows curtly and goes.
-<<elseif $appraiser == "slaver">>
-	That's all I've got for you, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>suh<<else>>ma'am<</if>>, thank you kindly." He offers a genteel bow and leaves.
-<<else>>
-	And that is all. Thank you." He nods in a businesslike fashion and departs.
-<</if>>
+	Though I dislike mentioning something so obvious, being an indentured servant will have a huge impact on $his valuation.
+<</if>>
+
+<<switch _appraiser>>
+	<<case"roman">>
+		That is all." He rolls his screen-scroll up and tucks it into his toga, and nods. "A pleasure."
+	<<case"aztec">>
+		That's all. Thank you." She turns to go, her long cape swiveling in the air, showing a glimpse of her <<if $arcologies[0].FSRepopulationFocusLaw == 1>>fecund<<else>>pleasant<</if>> figure.
+	<<case"egyptian">>
+		That's all. Thank you for this delightful opportunity." She turns to go, but turns again in the doorway to offer another deep bow, this one so low that her linen dress discloses just a hint of her dimpled rear.
+	<<case"edo">>
+		That is all. Thank you." She performs a perfect bow and retreats.
+	<<case"arabian">>
+		That is all. She may fetch a fine price, if the Almighty will it." He bows deeply and backs out the door.
+	<<case"chinese">>
+		That is all." She bows and backs out the door.
+	<<case"priestess">>
+		Amen." She forms a holy symbol with her hands, kneels before you to bow so low that her cleavage presses against the floor, and retreats.
+	<<case"futa">>
+		That's all. Thanks! Cute $boy." She goes, but pauses in the doorway to give you a little wave.
+	<<case"Elite">>
+		That's all. <<if $PC.dick == 1>>See you around! Have to have a few other guy's kids before we can have some more fun, but I'll keep you in mind!<<else>>See you around, we'll have to go drinking after I'm done sometime!<</if>>" She waves, as she leaves.
+	<<case"businesswoman">>
+		That will be all. Thank you, and good day." She bows curtly and goes.
+	<<case"slaver">>
+		That's all I've got for you, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>suh<<else>>ma'am<</if>>, thank you kindly." He offers a genteel bow and leaves.
+	<<default>>
+		And that is all. Thank you." He nods in a businesslike fashion and departs.
+<</switch>>
 
 <</if>> /* CLOSES APPRAISAL */
 <</if>> /* closes breeding mark */
@@ -630,10 +632,10 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual
 
 <<if $activeSlave.breedingMark == 1 && $propOutcome == 1>>
 <<set $buyer = 0>>
-<<set $seed = 500*Math.trunc(($slaveCost*1.1)/500)>>
-	<br>The current offer for her stands at ''<<print cashFormat($seed)>>''.
-	<<link "Accept bid">>
-		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
+<<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>>
+	<br>The current offer for $him stands at ''<<print cashFormat($seed)>>''.
+	<<link "Accept bid" "Slave Sold">>
+		<<set $cash += _Price>>
 		<<set $buyer = "elite auction">>
 		<<goto "Slave Sold">>
 	<</link>>
@@ -642,79 +644,78 @@ __Bids Received__
 <br>
 
 <<set $buyer = 0>>
-<<set $seed = 500*Math.trunc(($slaveCost*1.15)/500)>>
+<<set _Price = 500*Math.trunc(($slaveCost*1.15)/500)>>
 
 <<if ($activeSlave.visualAge < 20) && ($activeSlave.weight < -10) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen who likes his slaves young and slender.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen who likes his slaves young and slender.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.visualAge > 40) && ($activeSlave.weight > 10) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen who likes her slaves mature and motherly.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen who likes her slaves mature and motherly.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.dick > 3) && ($activeSlave.balls > 0) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen who likes fat cocks.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen who likes fat cocks.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.dick > 3) && ($activeSlave.balls == 0) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen who likes a big limp dick flopping around when he fucks a slave's asspussy.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen who likes a big limp dick flopping around when he fucks a slave's asspussy.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.dick == 1) && ($activeSlave.balls == 0) && ($activeSlave.anus == 3) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen who likes sissies with anal slits longer than their little limp dicks.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen who likes sissies with anal slits longer than their little limp dicks.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.dick > 0) && ($activeSlave.boobs < 300) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen who likes traps.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen who likes traps.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.dick > 0) && ($activeSlave.balls > 0) && ($activeSlave.boobs > 600) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen who likes lusty shemales.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen who likes lusty shemales.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.anusPiercing > 1) && ($activeSlave.nipplesPiercing > 1) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen who is clearly fascinated by her lewd piercings.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen who is clearly fascinated by $his lewd piercings.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.anusTat > 1) && ($activeSlave.buttTat > 1) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen who is clearly aroused by her slutty tattoos.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen who is clearly aroused by $his slutty tattoos.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.boobs > 800) && ($activeSlave.areolaeShape != "circle") && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen who can't take his eyes off her unique areolae.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_NewOwner)>>'' from a citizen who can't take his eyes off $his unique areolae.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.clit > 2) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen who keeps running her tongue over her lips while staring at the slave's giant clit.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen who keeps running her tongue over her lips while staring at the slave's giant clit.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.labia > 1) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen who has an obvious fascination with her dangling labia.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen who has an obvious fascination with $his dangling labia.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.boobs > 2000) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen with an obvious breast expansion fetish.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen with an obvious breast expansion fetish.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.preg > 20) && ($activeSlave.lactation == 1) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen who pays obsessive attention to her gravid belly and naturally lactating breasts.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen who pays obsessive attention to $his gravid belly and naturally lactating breasts.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.ovaries == 1) && ($activeSlave.physicalAge < 25) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen who pays unusually close attention to the section of the medical report on her fertility.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen who pays unusually close attention to the section of the medical report on $his fertility.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.butt > 6) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen with an obvious butt expansion fetish.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen with an obvious butt expansion fetish.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.face > 10) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen who can't keep his eyes off her pretty face.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen who can't keep his eyes off $his pretty face.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.analSkill >= 100) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen interested in acquiring a skilled butthole bitch.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen interested in acquiring a skilled butthole bitch.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.vaginalSkill >= 100) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen interested in acquiring a slut with real vaginal skill.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen interested in acquiring a slut with real vaginal skill.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.oralSkill >= 100) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen interested in acquiring a skilled cocksucker.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen interested in acquiring a skilled cocksucker.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.health > 80) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen who pays creepily close attention to the state of her health, and ignores everything else.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen who pays creepily close attention to the state of $his health, and ignores everything else.
+	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.nationality != 0) && (random(1,100) > 80)>>
-	<br>''<<print cashFormat($seed)>>'' from a citizen with a special appetite for <<if $activeSlave.nationality == "a Cook Islander">>Cook Islander<<elseif $activeSlave.nationality == "a Liechtensteiner">>Liechtensteiner<<elseif $activeSlave.nationality == "Mosotho">>Basotho<<elseif $activeSlave.nationality == "Motswana">>Batswana<<elseif $activeSlave.nationality == "a New Zealander">>New Zealander<<elseif $activeSlave.nationality == "a Solomon Islander">>Solomon Islander<<else>>$activeSlave.nationality<</if>> girls.
-	<<set $seed = 1>>
+	<br>''<<print cashFormat(_Price)>>'' from a citizen with a special appetite for <<if $activeSlave.nationality == "a Cook Islander">>Cook Islander<<elseif $activeSlave.nationality == "a Liechtensteiner">>Liechtensteiner<<elseif $activeSlave.nationality == "Mosotho">>Basotho<<elseif $activeSlave.nationality == "Motswana">>Batswana<<elseif $activeSlave.nationality == "a New Zealander">>New Zealander<<elseif $activeSlave.nationality == "a Solomon Islander">>Solomon Islander<<else>>$activeSlave.nationality<</if>> $boys.
+	<<set _NewOwner = 1>>
 <</if>>
-<<if $seed == 1>>
-	<<link "Accept bid">>
-	<<set $cash += 500*Math.trunc(($slaveCost*1.15)/500)>>
-	<<goto "Slave Sold">>
+<<if _NewOwner == 1>>
+	<<link "Accept bid""Slave Sold">>
+	<<set $cash += _Price>>
 	<</link>>
 <</if>>
 
@@ -722,10 +723,9 @@ __Bids Received__
 <<if $activeSlave.devotion > 20>>
 	<<if random(1,100) > 50>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.9)/500))>>'' from a polite older citizen looking for a housekeeper and bedwarmer.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*0.9)/500)>>
 		<<set $buyer = "housekeeper">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -735,22 +735,20 @@ __Bids Received__
 
 <<if $slaveCost > 10000>>
 	<<if random(1,100) > 60>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a male citizen who wants to ensure his posterity by using her to carry his children.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a male citizen who wants to ensure his posterity by using $him to carry his children.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.05)/500)>>
 		<<set $buyer = "preg fetishist">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
 
 <<if $activeSlave.mpreg == 1>>
 	<<if random(1,100) > 60>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from an organ modifier interested in her anal womb.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from an organ modifier interested in $his anal womb.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.05)/500)>>
 		<<set $buyer = "organ crafter">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -759,10 +757,9 @@ __Bids Received__
 <<if $activeSlave.vagina == 0>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(400*Math.trunc(($slaveCost*1.05)/500))>>'' from a pharmaceuticals corporation looking for fertile virgins for testing extreme fertility drugs.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 400*Math.trunc(($slaveCost*1.05)/500)>>
 		<<set $buyer = "womb filler">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -773,10 +770,9 @@ __Bids Received__
 <<if $activeSlave.faceShape != "masculine">>
 	<<if random(1,100) > 90>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a fellow arcology owner seeking a smart, pretty slave to use as a breeder to produce superior children.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
 		<<set $buyer = "eugenics arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -787,10 +783,9 @@ __Bids Received__
 <<if $activeSlave.vagina == 0>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a fellow arcology owner focusing on building a future society based on his genes: he seeks fertile virgins with wide hips, feeling they will be the best mothers.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.05)/500)>>
 		<<set $buyer = "repopulationist arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -799,10 +794,9 @@ __Bids Received__
 <<if $activeSlave.vagina == 0>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.3)/500))>>'' from a slave trader with a notorious virgin impregnation fetish: he uses his work to provide himself with an endless supply of virgins to knock up and resell.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.3)/500)>>
 		<<set $buyer = "virgin trader">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -815,10 +809,9 @@ __Bids Received__
 <<if $activeSlave.bellyPreg >= 300000>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a group that takes pleasure in performing abortions on live TV.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 400*Math.trunc(($slaveCost*1.05)/500)>>
 		<<set $buyer = "abortion TV">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -829,10 +822,9 @@ __Bids Received__
 <<if $activeSlave.nipples == "huge">>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a female citizen with a very specific fetish: she loves breasts to the point of enjoying slaves with nipples large enough to meaningfully penetrate her.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.05)/500)>>
 		<<set $buyer = "nipple fetishist">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -840,10 +832,9 @@ __Bids Received__
 <<if $activeSlave.nipples == "fuckable">>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a male citizen with a kink that's hard to satisfy: he loves nipple fucking, but hates how breasts just don't work that way.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
 		<<set $buyer = "nipple fetishist">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -853,10 +844,9 @@ __Bids Received__
 <<if $activeSlave.devotion > 20>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a citizen who enjoys buttfucking slaves with the necessary equipment, willingness, and anal skill to reward his efforts with messy, hands-free orgasms of their own.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.05)/500)>>
 		<<set $buyer = "anal fetishist">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -867,10 +857,9 @@ __Bids Received__
 <<if $activeSlave.devotion > 20>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from an unusually well-endowed citizen who strongly prefers oral sex with willing partners who can deepthroat him successfully.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.05)/500)>>
 		<<set $buyer = "oral fetishist">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -880,10 +869,9 @@ __Bids Received__
 <<if $activeSlave.devotion > 50>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a sadistic citizen who likes hurting her slaves, dislikes masochists for their enjoyment of her treatment, yet  prefers slaves who will not hate her.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.05)/500)>>
 		<<set $buyer = "pain fetishist">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -894,10 +882,9 @@ __Bids Received__
 <<if $activeSlave.intelligence < 0>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a sadistic citizen who is looking for an imposing, stupid slave she can train to rape her victims on command.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.05)/500)>>
 		<<set $buyer = "sadism fetishist">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -909,10 +896,9 @@ __Bids Received__
 <<if $activeSlave.intelligenceImplant == 1>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a newly wealthy citizen who is expanding his household and is interested in smart, educated, and obedient slaves for leadership roles.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.05)/500)>>
 		<<set $buyer = "dom fetishist">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -923,10 +909,9 @@ __Bids Received__
 <<if $activeSlave.oralSkill >= 100>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a citizen whose job keeps her deskbound; bored, she's looking for a devoted oral slave to occupy the space under the desk and be her constant pussylicking appliance.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.05)/500)>>
 		<<set $buyer = "sub fetishist">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -935,10 +920,9 @@ __Bids Received__
 <<if $activeSlave.anus == 0>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.3)/500))>>'' from a wealthy citizen infamous for cruelly raping anal virgins in public; he buys and abuses a new one every few weeks.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.3)/500)>>
 		<<set $buyer = "buttbreaker">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -947,11 +931,10 @@ __Bids Received__
 <<if $activeSlave.analSkill >= 100>>
 <<if $activeSlave.intelligence > 0>>
 	<<if random(1,100) > 60>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a small, local slave trainer interested in using her to help train new slaves in the sexual arts.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a small, local slave trainer interested in using $him to help train new slaves in the sexual arts.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
 		<<set $buyer = "trainer staffing">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -965,10 +948,9 @@ __Bids Received__
 <<if $activeSlave.physicalAge > 35>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.4)/500))>>'' from a skilled slave trainer who feels that MILFs make the best slave trainers.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.4)/500)>>
 		<<set $buyer = "D milf staffing">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -983,10 +965,9 @@ __Bids Received__
 <<if $activeSlave.boobs > 1000>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a prominent citizen with a notorious fetish for fertile, natural cows.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "D hucow">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -999,11 +980,10 @@ __Bids Received__
 <<if $activeSlave.teeth == "pointy">>
 <<if $activeSlave.combatSkill > 0>>
 	<<if random(1,100) > 60>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who's pursuing some sort of mercenary project that requires worryingly large numbers of thin girls with sharp teeth.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who's pursuing some sort of mercenary project that requires worryingly large numbers of thin $boys with sharp teeth.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.35)/500)>>
 		<<set $buyer = "D startled the witch">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1016,11 +996,10 @@ __Bids Received__
 <<if $activeSlave.analSkill >= 100>>
 <<if $activeSlave.physicalAge < 25>>
 	<<if random(1,100) > 60>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who appreciates girls who are both vaginal virgins and anal veterans.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who appreciates $boys who are both vaginal virgins and anal veterans.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.35)/500)>>
 		<<set $buyer = "D virgin asspussy">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1033,11 +1012,10 @@ __Bids Received__
 <<if $activeSlave.entertainSkill > 30>>
 <<if $activeSlave.physicalAge < 30>>
 	<<if random(1,100) > 60>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen with moist palms who insistently refers to her as "his waifu," whatever that means.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen with moist palms who insistently refers to $him as "his waifu," whatever that means.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.35)/500)>>
 		<<set $buyer = "D waifu">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1051,10 +1029,9 @@ __Bids Received__
 <<if $activeSlave.butt > 3>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who likes to provide his favored, well-endowed slaves with subordinate, orally skilled dickgirls with nice butts.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.35)/500)>>
 		<<set $buyer = "D oral servants">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1070,10 +1047,9 @@ __Bids Received__
 <<if $activeSlave.weight <= 10>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who prefers slaves that look like demure girls with their clothes on, and are willing to take cock up their pretty asspussies.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.35)/500)>>
 		<<set $buyer = "D trap lover">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1089,10 +1065,9 @@ __Bids Received__
 <<if $activeSlave.weight > 10>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from an eccentric citizen notorious for keeping tall slaves with huge soft butts, just so he can bury himself between their cheeks when they're standing.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.35)/500)>>
 		<<set $buyer = "D butt bury">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1107,11 +1082,10 @@ __Bids Received__
 <<if $activeSlave.face > 10>>
 <<if $activeSlave.faceShape != "masculine">>
 	<<if random(1,100) > 60>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen with strong opinions on futas: he likes a feminine girl with a nice cock, a lovely pussy, no visible balls and yet the ability to get hard, and plentifully milky nipples.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen with strong opinions on futas: he likes a feminine $boy with a nice cock, a lovely pussy, no visible balls and yet the ability to get hard, and plentifully milky nipples.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.35)/500)>>
 		<<set $buyer = "D milky herm">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1128,10 +1102,9 @@ __Bids Received__
 <<if $activeSlave.height < 165>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen whose friends never let him hear the end of his incorrigibly romantic treatment of his apartment full of amazons.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.35)/500)>>
 		<<set $buyer = "D amazon hunter">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1146,11 +1119,10 @@ __Bids Received__
 <<if $activeSlave.devotion > 20>>
 <<if $activeSlave.height > 180>>
 	<<if random(1,100) > 60>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who keeps a large harem of lithe, muscular girls to bear him children.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who keeps a large harem of lithe, muscular $boys to bear him children.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.35)/500)>>
 		<<set $buyer = "D shorty breeder">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1166,10 +1138,9 @@ __Bids Received__
 <<if $activeSlave.oralSkill > 50>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who's looking for a fresh, skilled pair of lips eager to wrap around a thick cock.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.35)/500)>>
 		<<set $buyer = "D oral servants">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1185,10 +1156,9 @@ __Bids Received__
 <<if $activeSlave.entertainSkill <= 10>>
 	<<if random(1,100) > 80>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.15)/500))>>'' from a prominent citizen who's a notoriously inexperienced lover; it's painfully obvious that he prefers inexperienced slaves as they make him feel less insecure.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.15)/500)>>
 		<<set $buyer = "D r9k">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1202,11 +1172,10 @@ __Bids Received__
 <<if $activeSlave.health > 60>>
 <<if $slaveCost < 10000>>
 	<<if random(1,100) > 60>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a prominent citizen who takes unusually close interest in her health and muscle tone, and cannot quite hide his salivation as he does so.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a prominent citizen who takes unusually close interest in $his health and muscle tone, and cannot quite hide his salivation as he does so.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "D cannibal">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1216,20 +1185,18 @@ __Bids Received__
 
 <<if $activeSlave.pornPrestige == 1>>
 	<<if random(1,100) == 69>>
-	<br>''<<print cashFormat(200*Math.trunc(($slaveCost*2)/200))>>'' from an obsessive fan who absolutely must have her for himself.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(200*Math.trunc(($slaveCost*2)/200))>>'' from an obsessive fan who absolutely must have $him for himself.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 200*Math.trunc(($slaveCost*2)/200)>>
 		<<set $buyer = "obsessed fan">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <<elseif $activeSlave.pornPrestige == 3>>
 	<<if random(1,100) > 90>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.3)/500))>>'' from a studio interested in continued production of her porn.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.3)/500))>>'' from a studio interested in continued production of $his porn.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.3)/500)>>
 		<<set $buyer = "porn studio">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1238,10 +1205,9 @@ __Bids Received__
 <<if $activeSlave.intelligenceImplant == 0>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in educating slaves and reselling them at a profit.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
 		<<set $buyer = "teaching trainer">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1251,10 +1217,9 @@ __Bids Received__
 <<if $activeSlave.boobsImplant == 0>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in filling slaves with implants before resale.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
 		<<set $buyer = "implanting trainer">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1264,10 +1229,9 @@ __Bids Received__
 <<if $activeSlave.boobsImplant > 0>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in fixing slaves who have been surgically ruined with overimplantation.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
 		<<set $buyer = "purifying trainer">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1278,11 +1242,10 @@ __Bids Received__
 <<if $activeSlave.butt > 3>>
 <<if $activeSlave.weight > 10>>
 	<<if random(1,100) > 60>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in slimming down fat slaves to appeal to buyers who prefer slim girls.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in slimming down fat slaves to appeal to buyers who prefer slim $boys.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
 		<<set $buyer = "slimming trainer">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1296,10 +1259,9 @@ __Bids Received__
 <<if $activeSlave.weight < -10>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in improving slaves with disappointing assets; they prefer pharmaceutical means but are not averse to surgical intervention if necessary.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
 		<<set $buyer = "broadening trainer">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1312,10 +1274,9 @@ __Bids Received__
 <<if $activeSlave.lactation == 0>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in getting women ready to be dairy cows by using aggressive hormonal and pharmaceutical treatment to balloon their tits.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
 		<<set $buyer = "cow trainer">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1327,10 +1288,9 @@ __Bids Received__
 <<if $activeSlave.boobs < 500>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in feminizing imperfect shemales; an orchiectomy is invariably their first step.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
 		<<set $buyer = "clipping trainer">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1342,10 +1302,9 @@ __Bids Received__
 <<if $slaveCost > 10000>>
 	<<if random(1,100) > 60>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in creating proper slave women from raw material that falls short of that ideal but has potential anyway.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
 		<<set $buyer = "reassignment trainer">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1355,11 +1314,10 @@ __Bids Received__
 <<if $activeSlave.boobs - $activeSlave.boobsImplant > 2000>>
 <<if $activeSlave.lactation > 1>>
 	<<if random(1,100) > 70>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner working towards autarkic slave pastoralism. He's awed by her milk productivity.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner working towards autarkic slave pastoralism. He's awed by $his milk productivity.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "pastoralist arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1370,10 +1328,9 @@ __Bids Received__
 <<if $activeSlave.intelligenceImplant > 1>>
 	<<if random(1,100) > 70>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner building a facsimile of ancient Egypt. He's in the market for wise and educated slaves willing to pass on their skills.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "egyptian revivalist arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1385,10 +1342,9 @@ __Bids Received__
 <<if $activeSlave.muscles > 25>>
 	<<if random(1,100) > 70>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner building a recreation of the Great Aztec Empire. He's in the market for willing, strong and combat ready slaves, to bolster his empire
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "aztec revivalist arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1400,10 +1356,9 @@ __Bids Received__
 <<if $activeSlave.muscles > 5>>
 	<<if random(1,100) > 70>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner building a facsimile of classical Rome. He's in the market for slaves with basic combat skills to fight in modern gladiatorial combats.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "roman revivalist arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1413,11 +1368,10 @@ __Bids Received__
 <<if $activeSlave.face > 10>>
 <<if $activeSlave.analCount < 100>>
 	<<if random(1,100) > 70>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with interesting religious beliefs, which require beautiful slaves to be available to the public. Since $activeSlave.slaveName is pretty and not heavily used, he considers it a duty to buy her and make her a holy prostitute.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with interesting religious beliefs, which require beautiful slaves to be available to the public. Since $activeSlave.slaveName is pretty and not heavily used, he considers it a duty to buy $him and make $him a holy prostitute.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "chattel religionist arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1427,11 +1381,10 @@ __Bids Received__
 <<if $activeSlave.muscles <= 95>>
 <<if $activeSlave.health > 60>>
 	<<if random(1,100) > 70>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner devoted to muscular ladies. He seems to feel that $activeSlave.slaveName is not at her true potential, and wants a try at improving her physique himself.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner devoted to muscular ladies. He seems to feel that $activeSlave.slaveName is not at $his true potential, and wants a try at improving $his physique himself.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "physical idealist arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1442,11 +1395,10 @@ __Bids Received__
 <<if $activeSlave.weight <= 95>>
 <<if $activeSlave.health > 60>>
 	<<if random(1,100) > 70>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner devoted to chubby ladies. He seems to feel that $activeSlave.slaveName can handle a fair bit more weight, and wants a try at fattening her up himself.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner devoted to chubby ladies. He seems to feel that $activeSlave.slaveName can handle a fair bit more weight, and wants a try at fattening $him up himself.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "hedonistic decadence arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1459,10 +1411,9 @@ __Bids Received__
 <<if $activeSlave.belly == 0 && $activeSlave.preg < 1>>
 	<<if random(1,100) > 80>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/400))>>'' from a chef that likes stuffing more than just turkeys.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/400)>>
 		<<set $buyer = "stuffer chef">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1474,10 +1425,9 @@ __Bids Received__
 <<if $activeSlave.boobsImplant == 0>>
 	<<if random(1,100) > 70>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who loves breast implants. Since large natural breasts can support larger implants, he seems to feel $activeSlave.slaveName has good potential to be implanted up to a truly gigantic size without too much stretching.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "transformation fetishist arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1487,11 +1437,10 @@ __Bids Received__
 <<if $activeSlave.boobsImplant == 0>>
 <<if $activeSlave.physicalAge < 25>>
 	<<if random(1,100) > 70>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who never fails to dream big. He's interested in her mostly for growth potential, since her assets have grown so big, so young.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who never fails to dream big. He's interested in $him mostly for growth potential, since $his assets have grown so big, so young.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "asset expansionist arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1504,10 +1453,9 @@ __Bids Received__
 <<if $activeSlave.anus < 2>>
 	<<if random(1,100) > 70>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with simple tastes. He likes his slaves young, slim, and reasonably innocent.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "slimness enthusiast arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1520,10 +1468,9 @@ __Bids Received__
 <<if $activeSlave.lipsImplant > 0>>
 	<<if random(1,100) > 70>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with a hatred of implants that reaches missionary zeal. He buys slaves full of silicone, removes their implants, reconditions them, and resells them whenever his finances will permit.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "body purist arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1533,10 +1480,9 @@ __Bids Received__
 <<if $activeSlave.trust > 20>>
 	<<if random(1,100) > 70>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who runs a terrifyingly degrading society. He prefers slaves who have been well-treated previously; it lends their screams a certain special authenticity.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "degradationist arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1546,10 +1492,9 @@ __Bids Received__
 <<if $activeSlave.fetish != "mindbroken">>
 	<<if random(1,100) > 70>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with an almost messianic calling to educate and improve slaves, though somewhat hypocritically, he prefers to start with reasonably obedient girls, which usually means slaves broken by someone else.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "paternalist arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1563,10 +1508,9 @@ __Bids Received__
 <<if $activeSlave.intelligence < 0>>
 	<<if random(1,100) > 70>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who likes willing, uncomplicated young ladies with bouncing boobs and big butts. He's an uncomplicated sort.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "gender fundamentalist arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1580,10 +1524,9 @@ __Bids Received__
 <<if $activeSlave.boobs < 400>>
 	<<if random(1,100) > 70>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with a notorious fetish for the process of feminization. He prefers diamonds in the rough, because the process of polishing is so much fun.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "gender radicalist arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1595,10 +1538,10 @@ __Bids Received__
 <<if $activeSlave.trust < 20>>
 	<<if random(1,100) > 70>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with a strongly held belief that $activeSlave.race people should not be slaves. He devotes as much of his resources as he can to manumission of such girls, concentrating on the downtrodden.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "supremacist arcology">>
-		<<goto "Slave Sold">>
+		<<goto >>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1609,11 +1552,10 @@ __Bids Received__
 <<if $activeSlave.intelligence < -1>>
 <<if $activeSlave.ovaries == 1>>
 	<<if random(1,100) > 70>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner working on a project to breed a race of $activeSlave.race people with natural, unquestioning obedience. He clearly considers her good stock for the project.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner working on a project to breed a race of $activeSlave.race people with natural, unquestioning obedience. He clearly considers $him good stock for the project.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "subjugationist arcology">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1624,10 +1566,9 @@ __Bids Received__
 <<if $slaveCost < 10000>>
 	<<if random(1,100) > 50>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a cheap brothel chain that operates a franchise on a lower level of the arcology.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
 		<<set $buyer = "cheap brothel">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1638,10 +1579,9 @@ __Bids Received__
 <<if $activeSlave.boobsImplant == 0>>
 	<<if random(1,100) > 50>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a factory farm notorious for extracting every drop of value from its slaves' bodies.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
 		<<set $buyer = "factory farm">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1652,10 +1592,9 @@ __Bids Received__
 <<if $slaveCost < 5000>>
 	<<if random(1,100) > 50>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a sex arcade that maintains good service quality by rapidly cycling new slaves through their facilities.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
 		<<set $buyer = "arcade">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1667,11 +1606,10 @@ __Bids Received__
 <<if $activeSlave.health > 40>>
 <<if $activeSlave.ovaries == 1>>
 	<<if random(1,100) > 50>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a high-volume breeding operation interested in her mostly for her healthy, functional womb.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a high-volume breeding operation interested in $him mostly for $his healthy, functional womb.
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
 		<<set $buyer = "volume breeder">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1684,10 +1622,9 @@ __Bids Received__
 <<if $slaveCost > 20000>>
 	<<if random(1,100) > 50>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a group of partners that run a handsome brothel off the promenade.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>>
 		<<set $buyer = "nice brothel">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1699,10 +1636,9 @@ __Bids Received__
 <<if $activeSlave.health > 40>>
 	<<if random(1,100) > 50>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.8)/500))>>'' from a free-range farm that pays for the high costs of high quality livestock care by aggressively marketing its cruelty-free products.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*0.8)/500)>>
 		<<set $buyer = "free range">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1714,10 +1650,9 @@ __Bids Received__
 <<if $slaveCost < 5000>>
 	<<if random(1,100) > 10>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from an organ harvesting firm that acquires healthy raw materials cheaply.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.2)/500)>>
 		<<set $buyer = "harvester">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1726,10 +1661,9 @@ __Bids Received__
 <<if $slaveCost < 5000>>
 	<<if random(1,100) > 10>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1)/500))>>'' from a manufacturer of large sexual appliances that include a living inmate, drugged into helplessness.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1)/500)>>
 		<<set $buyer = "fuckdoll">>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1740,10 +1674,9 @@ __Bids Received__
 <<if $activeSlave.bellyImplant > -1>>
 <<if random(1,100) > 90>>
 	<br>''<<print cashFormat(7000)>>'' from a porn director interested in a cheap slave with a belly implant for use in a snuff film.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 7000>>
 		<<set $buyer = "tentacle bred">>
-		<<goto "Slave Sold">>
 	<</link>>
 <</if>>
 <</if>>
@@ -1752,19 +1685,17 @@ __Bids Received__
 <</if>>
 
 <<if random(1,100) > 30>>
-	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.9)/500))>>'' from a reputable slave trader who will likely ship her out of the arcology.
-	<<link "Accept bid">>
+	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.9)/500))>>'' from a reputable slave trader who will likely ship $him out of the arcology.
+	<<link "Accept bid" "Slave Sold">>
 	<<set $cash += 500*Math.trunc(($slaveCost*0.9)/500)>>
-	<<goto "Slave Sold">>
 	<</link>>
 <</if>>
 
 <<if $activeSlave.fetish == "mindbroken">>
 	<<if random(1,100) > 20>>
 	<br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.9)/500))>>'' from a slave trader who buys vast numbers of mindbroken girls. His purpose is unknown, and none of them are ever seen again.
-	<<link "Accept bid">>
+	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*0.9)/500)>>
-		<<goto "Slave Sold">>
 	<</link>>
 	<</if>>
 <</if>>
@@ -1775,9 +1706,8 @@ __Bids Received__
 <<if $peacekeepers.attitude < 100>>
 	<<if $activeSlave.oralSkill + $activeSlave.analSkill + $activeSlave.vaginalSkill > 100>>
 		<br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.5)/500))>>'' from the officer in charge of 'recreational activities' for General $peacekeepers.generalName's forces. This is far less than the slave is worth, but the bid comes with the implicit offer of more influence over the peacekeepers.
-		<<link "Accept bid">>
+		<<link "Accept bid" "Slave Sold">>
 			<<set $cash += 500*Math.trunc(($slaveCost*0.5)/500), $buyer = "peacekeepers">>
-			<<goto "Slave Sold">>
 		<</link>>
 	<</if>>
 <<else>>
@@ -1785,52 +1715,52 @@ __Bids Received__
 	<<case "lusty futanari">>
 		<<if $activeSlave.balls > 0 && $activeSlave.scrotum > 0 && $activeSlave.dick > 0 && $activeSlave.vagina > -1 && $activeSlave.energy > 50>>
 			<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes.
-			<<link "Accept bid">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<goto "Slave Sold">><</link>>
+			<<link "Accept bid" "Slave Sold">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><</link>>
 		<</if>>
 	<<case "cum addicts">>
 		<<if $activeSlave.fetish == "cumslut" && $activeSlave.fetishStrength > 95 && $activeSlave.sexualFlaw == "cum addict">>
 			<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes.
-			<<link "Accept bid">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<goto "Slave Sold">><</link>>
+			<<link "Accept bid" "Slave Sold">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><</link>>
 		<</if>>
 	<<case "horny MILFs">>
 		<<if $activeSlave.physicalAge > 34 && $activeSlave.visualAge > 34 && $activeSlave.energy > 80>>
 			<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes.
-			<<link "Accept bid">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<goto "Slave Sold">><</link>>
+			<<link "Accept bid" "Slave Sold">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><</link>>
 		<</if>>
 	<<case "big-breasted cows">>
 		<<if $activeSlave.boobs > 2000 && $activeSlave.lactation > 1>>
 			<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes.
-			<<link "Accept bid">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<goto "Slave Sold">><</link>>
+			<<link "Accept bid" "Slave Sold">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><</link>>
 		<</if>>
 	<<case "beautiful young sex slaves">>
 		<<if $activeSlave.physicalAge < 25 && $activeSlave.visualAge < 25 && $activeSlave.face > 95>>
 			<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes.
-			<<link "Accept bid">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<goto "Slave Sold">><</link>>
+			<<link "Accept bid" "Slave Sold">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><</link>>
 		<</if>>
 	<<case "fertile virgins">>
 		<<if $activeSlave.vagina == 0 && isFertile($activeSlave)>>
 			<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes.
-			<<link "Accept bid">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<goto "Slave Sold">><</link>>
+			<<link "Accept bid" "Slave Sold">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><</link>>
 		<</if>>
 	<<case "lusty preggos">>
 		<<if $activeSlave.preg > 10 && $activeSlave.energy > 50>>
 			<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes.
-			<<link "Accept bid">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<goto "Slave Sold">><</link>>
+			<<link "Accept bid" "Slave Sold">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><</link>>
 		<</if>>
 	<<case "baby obsessed breeders">>
 		<<if $activeSlave.preg > 10 && $activeSlave.fetish == "pregnancy" && $activeSlave.sexualFlaw == "breeder">>
 			<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes.
-			<<link "Accept bid">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<goto "Slave Sold">><</link>>
+			<<link "Accept bid" "Slave Sold">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><</link>>
 		<</if>>
 	<<case "bellies with girls attached">>
 		<<if $activeSlave.belly >= 300000>>
 			<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes.
-			<<link "Accept bid">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<goto "Slave Sold">><</link>>
+			<<link "Accept bid" "Slave Sold">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><</link>>
 		<</if>>
 	<<case "flesh balloons">>
 		<<if $activeSlave.boobs > 20000 && $activeSlave.butt > 10>>
 			<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes.
-			<<link "Accept bid">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<goto "Slave Sold">><</link>>
+			<<link "Accept bid" "Slave Sold">><<set $cash += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><</link>>
 		<</if>>
 	<</switch>>
 <</if>>
@@ -1838,12 +1768,8 @@ __Bids Received__
 <</if>>
 <</if>>
 
-<br>
-<br>
-<<link "Re-list her">>
-	<<set $cash -= 500>>
-	<<goto "Sell Slave">>
-<</link>>
+<br><br>
+<<link "Re-list $him" "Sell Slave">><<set $cash -= 500>><</link>>
 //This will cost <<print cashFormat(500)>>//
 
 <</if>>