diff --git a/src/facilities/nursery/nurseryWidgets.js b/src/facilities/nursery/nurseryWidgets.js
new file mode 100644
index 0000000000000000000000000000000000000000..c59a789d2a2b6421fc55eb7496d6bfadf7f9be55
--- /dev/null
+++ b/src/facilities/nursery/nurseryWidgets.js
@@ -0,0 +1,7219 @@
+/* eslint-disable camelcase */
+/**
+ * @param {App.Entity.InfantState} child
+ * @returns {string}
+ */
+App.Facilities.Nursery.ChildSummary = function(child) {
+	"use strict";
+	const V = State.variables;
+	let r = ``;
+	/* eslint-disable */
+	let pronouns = getPronouns(child);
+	let he = pronouns.pronoun;
+	let him = pronouns.object;
+	let his = pronouns.possessive;
+	let hers = pronouns.possessivePronoun;
+	let himself = pronouns.objectReflexive;
+	let boy = pronouns.noun;
+	let He = capFirstChar(he);
+	let His = capFirstChar(his);
+	/* eslint-enable */
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 * @returns {string}
+	 */
+	function ChildSummaryUncached(child) {
+		if (V.abbreviateDevotion === 1) {
+			shortDevotion(child);
+		} else if (V.abbreviateDevotion === 2) {
+			longDevotion(child);
+		}
+		if (child.fuckdoll === 0) {
+			if (V.abbreviateRules === 1) {
+				shortRules(child);
+			} else if (V.abbreviateRules === 2) {
+				longRules(child);
+			}
+		}
+		if (child.tired !== 0) {
+			r += `Tired.`;
+		}
+		if (V.abbreviateDiet === 1) {
+			shortWeight(child);
+		} else if (V.abbreviateDiet === 2) {
+			longWeight(child);
+		}
+		if (V.abbreviateDiet === 1) {
+			shortDiet(child);
+		} else if (V.abbreviateDiet === 2) {
+			longDiet(child);
+		}
+		if (V.abbreviateHealth === 1) {
+			shortHealth(child);
+		} else if (V.abbreviateHealth === 2) {
+			longHealth(child);
+		}
+		if (V.abbreviateDrugs === 1) {
+			shortDrugs(child);
+		} else if (V.abbreviateDrugs === 2) {
+			longDrugs(child);
+		}
+		if (V.abbreviateNationality + V.abbreviateGenitalia + V.abbreviatePhysicals + V.abbreviateSkills + V.abbreviateMental !== 0) {
+			r += `<br>`;
+			if (V.seeImages !== 1 || V.seeSummaryImages !== 1 || V.imageChoice === 1) {
+				r += "&nbsp;&nbsp;&nbsp;&nbsp;";
+			}
+		}
+		V.desChildTitle(child);
+		const firstLetter = V.desc.substring(0, 1).toUpperCase();
+		V.desc = firstLetter + V.desc.substring(1);
+		r += `<strong><span class="coral">${V.desc}${V.abbreviatePhysicals === 2? '.' : ''}</span></strong> `;
+		if (V.seeRace === 1) {
+			r += `<span class="tan">`;
+			if (V.abbreviateRace === 1) {
+				shortRace(child);
+			} else if (V.abbreviateRace === 2) {
+				longRace(child);
+			}
+			r += `</span> `;
+		}
+		if (V.abbreviateNationality === 1) {
+			shortNationality(child);
+		} else if (V.abbreviateNationality === 2) {
+			longNationality(child);
+		}
+		if (V.abbreviatePhysicals === 1) {
+			shortSkin(child);
+		} else {
+			r += `<span class="pink">${child.skin.charAt(0).toUpperCase() + child.skin.slice(1)} skin.</span> `;
+		}
+		if (V.abbreviateGenitalia === 1) {
+			shortGenitals(child);
+		} else if (V.abbreviateGenitalia === 2) {
+			longGenitals(child);
+		}
+		if (V.abbreviatePhysicals === 1) {
+			shortAge(child);
+			shortFace(child);
+			shortEyes(child);
+			shortEars(child);
+			if (child.markings !== "none") {
+				r += "Markings";
+			}
+			shortLips(child);
+			shortTeeth(child);
+			shortMuscles(child);
+			shortLimbs(child);
+			shortVoice(child);
+			shortTitsAss(child);
+			shortHips(child);
+			shortWaist(child);
+			shortImplants(child);
+			shortLactation(child);
+			shortMods(child);
+			r += `</span>`;
+		} else if (V.abbreviatePhysicals === 2) {
+			longAge(child);
+			longFace(child);
+			longEyes(child);
+			longEars(child);
+			longLips(child);
+			longTeeth(child);
+			longMuscles(child);
+			longLimbs(child);
+			longVoice(child);
+			longTitsAss(child);
+			longHips(child);
+			longWaist(child);
+			longImplants(child);
+			longLactation(child);
+			longMods(child);
+			if (child.brand !== 0) {
+				r += `Branded.`;
+			}
+			r += `</span>`;
+		}
+		if (V.abbreviateHormoneBalance === 1) {
+			if (child.hormoneBalance <= -21) {
+				r += `<span class="deepskyblue">`;
+				r += ` <strong>HB:M</strong>`;
+			} else if (child.hormoneBalance <= 20) {
+				r += `<span class="pink">`;
+				r += ` <strong>HB:N</strong>`;
+			} else if (child.hormoneBalance <= 500) {
+				r += `<span class="pink">`;
+				r += ` <strong>HB:F</strong>`;
+			}
+			r += `</span>`;
+		} else if (V.abbreviateHormoneBalance === 2) {
+			r += `<span class=`;
+			if (child.hormoneBalance <= -21) {
+				r += `"deepskyblue"`;
+			} else {
+				r += `"pink"`;
+			}
+			r += `> `;
+			if (child.hormoneBalance < -400) {
+				r += `Overwhelmingly masculine`;
+			} else if (child.hormoneBalance <= -300) {
+				r += `Extremely masculine`;
+			} else if (child.hormoneBalance <= -200) {
+				r += `Heavily masculine`;
+			} else if (child.hormoneBalance <= -100) {
+				r += `Very masculine`;
+			} else if (child.hormoneBalance <= -21) {
+				r += `Masculine`;
+			} else if (child.hormoneBalance <= 20) {
+				r += `Neutral`;
+			} else if (child.hormoneBalance <= 99) {
+				r += `Feminine`;
+			} else if (child.hormoneBalance <= 199) {
+				r += `Very feminine`;
+			} else if (child.hormoneBalance <= 299) {
+				r += `Heavily feminine`;
+			} else if (child.hormoneBalance <= 399) {
+				r += `Extremely feminine`;
+			} else if (child.hormoneBalance <= 500) {
+				r += `Overwhelmingly feminine`;
+			}
+			r += ` hormone balance.</span>`;
+		}
+		r += "<br>";
+		if (V.seeImages !== 1 || V.seeSummaryImages !== 1 || V.imageChoice === 1) {
+			r += "&nbsp;&nbsp;&nbsp;&nbsp;";
+		}
+		if (V.abbreviateSkills === 1) {
+			shortIntelligence(child);
+			shortSexSkills(child);
+			if (child.skill.combat > 0) {
+				r += "C";
+			}
+			r += "</span> ";
+			shortPrestige(child);
+			shortPornPrestige(child);
+		} else if (V.abbreviateSkills === 2) {
+			longIntelligence(child);
+			longSexSkills(child);
+			if (child.skill.combat > 0) {
+				r += "Trained fighter.";
+			}
+			r += "</span> ";
+			longPrestige(child);
+			longPornPrestige(child);
+		}
+		if (V.abbreviateMental === 1) {
+			if (child.fetish !== "mindbroken") {
+				if (child.fetishKnown === 1) {
+					shortFetish(child);
+				}
+				if (child.attrKnown === 1) {
+					shortAttraction(child);
+				}
+			}
+			if (child.clitPiercing === 3) {
+				shortSmartFetish(child);
+				shortSmartAttraction(child);
+			}
+			shortBehaviorFlaw(child);
+			shortSexFlaw(child);
+			shortBehaviorQuirk(child);
+			shortSexQuirk(child);
+		} else if (V.abbreviateMental === 2) {
+			if (child.fetish !== "mindbroken") {
+				if (child.fetishKnown === 1) {
+					longFetish(child);
+				}
+				if (child.attrKnown === 1) {
+					longAttraction(child);
+				}
+			}
+			if (child.clitPiercing === 3) {
+				longSmartFetish(child);
+				longSmartAttraction(child);
+			}
+			longBehaviorFlaw(child);
+			longSexFlaw(child);
+			longBehaviorQuirk(child);
+			longSexQuirk(child);
+		}
+		if (child.custom.label) {
+			r += `<strong><span class="yellow">${capFirstChar(child.custom.label)}</span></strong>`;
+		}
+		if ((child.relationship !== 0) || (child.relation !== 0) || (V.abbreviateClothes === 2) || (V.abbreviateRulesets === 2)) {
+			r += `<br>`;
+			if (V.seeImages !== 1 || V.seeSummaryImages !== 1 || V.imageChoice === 1) {
+				r += `&nbsp;&nbsp;&nbsp;&nbsp;`;
+			}
+		}
+		if (V.abbreviateMental === 1) {
+			r += `<span class="lightgreen">`;
+			if (V.familyTesting === 1) {
+				shortExtendedFamily(child);
+			} else {
+				shortLegacyFamily(child);
+			}
+			r += `</span>`;
+			shortClone(child);
+			shortRival(child);
+		} else if (V.abbreviateMental === 2) {
+			if (V.familyTesting === 1) {
+				longExtendedFamily(child);
+			} else {
+				longLegacyFamily(child);
+			}
+			longClone(child);
+			longRival(child);
+		}
+		if (child.fuckdoll === 0) {
+			if (V.abbreviateClothes === 2) {
+				r += `&nbsp;&nbsp;&nbsp;&nbsp;`;
+				if (child.choosesOwnClothes === 1) {
+					r += "Dressing herself. ";
+				}
+				longClothes(child);
+				longCollar(child);
+				longBelly(child);
+				if (child.amp !== 1) {
+					longLegs(child);
+				}
+				if (canWalk(child)) {
+					longShoes(child);
+				}
+				longChastity(child);
+				longVaginalAcc(child);
+				longDickAcc(child);
+				longButtplug(child);
+			}
+		}
+		r += `&nbsp;&nbsp;&nbsp;&nbsp;`;
+		rulesAssistant(child);
+		if (V.abbreviateOrigins === 2 && child.origin !== 0) {
+			origins(child);
+		}
+		return r;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortDevotion(child) {
+		if (child.fetish === "mindbroken") {
+			r += `<span class="red">MB</span>`;
+		} else if (child.devotion < -95) {
+			r += `<span class="darkviolet">Hate${V.summaryStats ? `[${child.devotion}]` : ''}</span>`;
+		} else if (child.devotion < -50) {
+			r += `<span class="darkviolet">Hate${V.summaryStats ? `[${child.devotion}]` : ''}</span>`;
+		} else if (child.devotion < -20) {
+			r += `<span class="mediumorchid">Res${V.summaryStats ? `[${child.devotion}]` : ''}</span>`;
+		} else if (child.devotion <= 20) {
+			r += `<span class="yellow">Ambiv${V.summaryStats ? `[${child.devotion}]` : ''}</span>`;
+		} else if (child.devotion <= 50) {
+			r += `<span class="hotpink">Accept${V.summaryStats ? `[${child.devotion}]` : ''}</span>`;
+		} else if (child.devotion <= 95) {
+			r += `<span class="deeppink">Devo${V.summaryStats ? `[${child.devotion}]` : ''}</span>`;
+		} else {
+			r += `<span class="magenta">Wor${V.summaryStats ? `[${child.devotion}]` : ''}</span>`;
+		}
+		r += " ";
+		if (child.fetish === "mindbroken") {
+			return;
+		} else if (child.trust < -95) {
+			r += `<span class="darkgoldenrod">ETerr${V.summaryStats ? `[${child.trust}]` : ''}</span>`;
+		} else if (child.trust < -50) {
+			r += `<span class="goldenrod">Terr${V.summaryStats ? `[${child.trust}]` : ''}</span>`;
+		} else if (child.trust < -20) {
+			r += `<span class="gold">Fright${V.summaryStats ? `[${child.trust}]` : ''}</span>`;
+		} else if (child.trust <= 20) {
+			r += `<span class="yellow">Fear${V.summaryStats ? `[${child.trust}]` : ''}</span>`;
+		} else if (child.trust <= 50) {
+			if (child.devotion < -20) {
+				r += `<span class="orange">Caref${V.summaryStats ? `[${child.trust}]` : ''}</span>`;
+			} else {
+				r += `<span class="mediumaquamarine">Caref${V.summaryStats ? `[${child.trust}]` : ''}</span>`;
+			}
+		} else if (child.trust < 95) {
+			if (child.devotion < -20) {
+				r += `<span class="orangered">Bold${V.summaryStats ? `[${child.trust}]` : ''}</span>`;
+			} else {
+				r += `<span class="mediumseagreen">Trust${V.summaryStats ? `[${child.trust}]` : ''}</span>`;
+			}
+		} else {
+			if (child.devotion < -20) {
+				r += `<span class="darkred">Defiant${V.summaryStats ? `[${child.trust}]` : ''}</span>`;
+			} else {
+				r += `<span class="seagreen">VTrust ${V.summaryStats ? `[${child.trust}]` : ''}</span>`;
+			}
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longDevotion(child) {
+		if (child.fetish === "mindbroken") {
+			r += `<span class="red">Mindbroken.</span>`;
+		} else if (child.devotion < -95) {
+			r += `<span class="darkviolet">Very hateful${V.summaryStats ? `[${child.devotion}]` : ''}.</span>`;
+		} else if (child.devotion < -50) {
+			r += `<span class="darkviolet">Hateful${V.summaryStats ? `[${child.devotion}]` : ''}.</span>`;
+		} else if (child.devotion < -20) {
+			r += `<span class="mediumorchid">Resistant${V.summaryStats ? `[${child.devotion}]` : ''}.</span>`;
+		} else if (child.devotion <= 20) {
+			r += `<span class="yellow">Ambivalent${V.summaryStats ? `[${child.devotion}]` : ''}.</span>`;
+		} else if (child.devotion <= 50) {
+			r += `<span class="hotpink">Accepting${V.summaryStats ? `[${child.devotion}]` : ''}.</span>`;
+		} else if (child.devotion <= 95) {
+			r += `<span class="deeppink">Devoted${V.summaryStats ? `[${child.devotion}]` : ''}.</span>`;
+		} else {
+			r += `<span class="magenta">Worshipful${V.summaryStats ? `[${child.devotion}]` : ''}.</span>`;
+		}
+		r += " ";
+		if (child.fetish === "mindbroken") {
+			return;
+		} else if (child.trust < -95) {
+			r += `<span class="darkgoldenrod">Extremely terrified${V.summaryStats ? `[${child.trust}]` : ''}.</span>`;
+		} else if (child.trust < -50) {
+			r += `<span class="goldenrod">Terrified${V.summaryStats ? `[${child.trust}]` : ''}.</span>`;
+		} else if (child.trust < -20) {
+			r += `<span class="gold">Frightened${V.summaryStats ? `[${child.trust}]` : ''}.</span>`;
+		} else if (child.trust <= 20) {
+			r += `<span class="yellow">Fearful${V.summaryStats ? `[${child.trust}]` : ''}.</span>`;
+		} else if (child.trust <= 50) {
+			if (child.devotion < -20) {
+				r += `<span class="orange">Careful${V.summaryStats ? `[${child.trust}]` : ''}.</span>`;
+			} else {
+				r += `<span class="mediumaquamarine">Careful${V.summaryStats ? `[${child.trust}]` : ''}.</span>`;
+			}
+		} else if (child.trust < 95) {
+			if (child.devotion < -20) {
+				r += `<span class="orangered">Bold${V.summaryStats ? `[${child.trust}]` : ''}.</span>`;
+			} else {
+				r += `<span class="mediumseagreen">Trusting${V.summaryStats ? `[${child.trust}]` : ''}.</span>`;
+			}
+		} else {
+			if (child.devotion < -20) {
+				r += `<span class="darkred">Defiant${V.summaryStats ? `[${child.trust}]` : ''}.</span>`;
+			} else {
+				r += `<span class="seagreen">Profoundly trusting${V.summaryStats ? `[${child.trust}]` : ''}.</span>`;
+			}
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortRules(child) {
+		switch (child.livingRules) {
+			case "luxurious":
+				r += `<strong>LS:Lux</strong>`;
+				break;
+			case "normal":
+				r += `<strong>LS:Nor</strong>`;
+				break;
+			default:
+				r += `<strong>LS:Spa</strong>`;
+				break;
+		}
+		r += " ";
+		if (canTalk(child)) {
+			switch (child.speechRules) {
+				case "permissive":
+					r += `<strong>SpR:P</strong>`;
+					break;
+				case "accent elimination":
+					r += `<strong>SpR:NoAcc</strong>`;
+					break;
+				case "language lessons":
+					r += `<strong>SpR:LL</strong>`;
+					break;
+				default:
+					r += `<strong>SpR:R</strong>`;
+					break;
+			}
+			r += " ";
+		}
+		switch (child.relationshipRules) {
+			case "permissive":
+				r += `<strong>ReR:P</strong>`;
+				break;
+			case "just friends":
+				r += `<strong>ReR:Fr</strong>`;
+				break;
+			default:
+				r += `<strong>ReR:R</strong>`;
+				break;
+		}
+		r += " ";
+		switch (child.standardPunishment) {
+			case "confinement":
+				r += `<strong>Pun:Conf</strong>`;
+				break;
+			case "whipping":
+				r += `<strong>Pun:Whip</strong>`;
+				break;
+			case "chastity":
+				r += `<strong>Pun:Chas</strong>`;
+				break;
+			default:
+				r += `<strong>Pun:Situ</strong>`;
+				break;
+		}
+		r += " ";
+		switch (child.standardReward) {
+			case "relaxation":
+				r += `<strong>Rew:Relx</strong>`;
+				break;
+			case "drugs":
+				r += `<strong>Rew:Drug</strong>`;
+				break;
+			case "orgasm":
+				r += `<strong>Rew:Orga</strong>`;
+				break;
+			default:
+				r += `<strong>Rew:Situ</strong>`;
+				break;
+		}
+		r += " ";
+		switch (child.releaseRules) {
+			case "permissive":
+				r += `<strong>MaR:P</strong>`;
+				break;
+			case "sapphic":
+				r += `<strong>MaR:S</strong>`;
+				break;
+			case "masturbation":
+				r += `<strong>MaR:M</strong>`;
+				break;
+			case "chastity":
+				r += `<strong>MaR:C</strong>`;
+				break;
+			default:
+				r += `<strong>MaR:R</strong>`;
+				break;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longRules(child) {
+		r += `Living standard: ${child.livingRules}. `;
+		if (canTalk(child)) {
+			r += `Speech rules: ${child.speechRules}. `;
+		}
+		r += `Relationship rules: ${child.relationshipRules}. `;
+		r += `Typical punishment: ${child.standardPunishment}. `;
+		r += `Typical reward: ${child.standardReward}. `;
+		r += `Release rules: ${child.releaseRules}. `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortWeight(child) {
+		if (child.weight < -95) {
+			r += `<strong><span class="red">W---${V.summaryStats? `[${child.weight}]` : ''}</span></strong>`;
+		} else if (child.weight < -30) {
+			if (child.hips < -1) {
+				r += `<strong>W--${V.summaryStats? `[${child.weight}]` : ''}</strong>`;
+			} else {
+				r += `<strong><span class="red">W--${V.summaryStats? `[${child.weight}]` : ''}</span></strong>`;
+			}
+		} else if (child.weight < -10) {
+			r += `<strong>W-${V.summaryStats? `[${child.weight}]` : ''}</strong>`;
+		} else if (child.weight <= 10) {
+			r += `<strong>W${V.summaryStats? `[${child.weight}]` : ''}</strong>`;
+		} else if (child.weight <= 30) {
+			r += `<strong>W+${V.summaryStats? `[${child.weight}]` : ''}</strong>`;
+		} else if (child.weight <= 95) {
+			if (child.hips > 1 || V.arcologies[0].FSHedonisticDecadence !== "unset") {
+				r += `<strong>W++${V.summaryStats? `[${child.weight}]` : ''}</strong>`;
+			} else {
+				r += `<strong><span class="red">W++${V.summaryStats? `[${child.weight}]` : ''}</span></strong>`;
+			}
+		} else if (child.weight <= 130) {
+			if (child.hips > 2 || V.arcologies[0].FSHedonisticDecadence !== "unset") {
+				r += `<strong>W+++${V.summaryStats? `[${child.weight}]` : ''}</strong>`;
+			} else {
+				r += `<strong><span class="red">W+++${V.summaryStats? `[${child.weight}]` : ''}</span></strong>`;
+			}
+		} else if (child.weight <= 160) {
+			if (V.arcologies[0].FSHedonisticDecadence !== "unset") {
+				r += `<strong>W++++${V.summaryStats? `[${child.weight}]` : ''}</strong>`;
+			} else {
+				r += `<strong><span class="red">W++++${V.summaryStats? `[${child.weight}]` : ''}</span></strong>`;
+			}
+		} else if (child.weight <= 190) {
+			if (V.arcologies[0].FSHedonisticDecadence !== "unset") {
+				r += `<strong>W+++++${V.summaryStats? `[${child.weight}]` : ''}</strong>`;
+			} else {
+				r += `<strong><span class="red">W+++++${V.summaryStats? `[${child.weight}]` : ''}</span></strong>`;
+			}
+		} else {
+			if (V.arcologies[0].FSHedonisticDecadence !== "unset") {
+				r += `<strong>W++++++${V.summaryStats? `[${child.weight}]` : ''}</strong>`;
+			} else {
+				r += `<strong><span class="red">W++++++${V.summaryStats? `[${child.weight}]` : ''}</span></strong>`;
+			}
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longWeight(child) {
+		if (child.weight < -95) {
+			r += `<span class="red">Emaciated${V.summaryStats ? `[${child.weight}]`: ''}.</span>`;
+		} else if (child.weight < -30) {
+			if (child.hips < -1) {
+				r += `Model-thin${V.summaryStats? `[${child.weight}]`: ''}.`;
+			} else {
+				r += `<span class="red">Very thin${V.summaryStats ? `[${child.weight}]`: ''}.</span>`;
+			}
+		} else if (child.weight < -10) {
+			r += `Thin${V.summaryStats? `[${child.weight}]`: ''}.`;
+		} else if (child.weight <= 10) {
+			r += `Trim${V.summaryStats? `[${child.weight}]`: ''}.`;
+		} else if (child.weight <= 30) {
+			r += `Plush${V.summaryStats? `[${child.weight}]`: ''}.`;
+		} else if (child.weight <= 95) {
+			if (child.hips > 1 || V.arcologies[0].FSHedonisticDecadence !== "unset") {
+				r += `Nicely chubby${V.summaryStats? `[${child.weight}]`: ''}.`;
+			} else {
+				r += `<span class="red">Overweight${V.summaryStats ? `[${child.weight}]`: ''}.</span>`;
+			}
+		} else if (child.weight <= 130) {
+			if (child.hips > 2 || V.arcologies[0].FSHedonisticDecadence !== "unset") {
+				r += `Pleasantly soft and shapely${V.summaryStats? `[${child.weight}]`: ''}.`;
+			} else {
+				r += `<span class="red">Fat${V.summaryStats ? `[${child.weight}]`: ''}.</span>`;
+			}
+		} else if (child.weight <= 160) {
+			if (V.arcologies[0].FSHedonisticDecadence !== "unset") {
+				r += `Amazingly voluptuous${V.summaryStats? `[${child.weight}]`: ''}.`;
+			} else {
+				r += `<span class="red">Obese${V.summaryStats ? `[${child.weight}]`: ''}.</span>`;
+			}
+		} else if (child.weight <= 190) {
+			if (V.arcologies[0].FSHedonisticDecadence !== "unset") {
+				r += `SSBBW${V.summaryStats? `[${child.weight}]`: ''}.`;
+			} else {
+				r += `<span class="red">Super Obese${V.summaryStats ? `[${child.weight}]`: ''}.</span>`;
+			}
+		} else {
+			if (V.arcologies[0].FSHedonisticDecadence !== "unset") {
+				r += `Perfectly massive${V.summaryStats? `[${child.weight}]`: ''}.`;
+			} else {
+				r += `<span class="red">Dangerously Obese${V.summaryStats ? `[${child.weight}]`: ''}.</span>`;
+			}
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortDiet(child) {
+		r += `<span class="teal">`;
+		switch (child.diet) {
+			case "restricted":
+				r += `<strong>Di:W-</strong>`;
+				break;
+			case "fattening":
+				r += `<strong>Di:W+</strong>`;
+				break;
+			case "XX":
+				r += `<strong>Di:XX+</strong>`;
+				break;
+			case "XY":
+				r += `<strong>Di:XY+</strong>`;
+				break;
+			case "XXY":
+				r += `<strong>Di:XXY+</strong>`;
+				break;
+			case "muscle building":
+				r += `<strong>Di:M+</strong>`;
+				break;
+			case "slimming":
+				r += `<strong>Di:M-</strong>`;
+				break;
+			case "cum production":
+				r += `<strong>Di:C+</strong>`;
+				break;
+			case "cleansing":
+				r += `<strong>Di:H+</strong>`;
+				break;
+			case "fertility":
+				r += `<strong>Di:F+</strong>`;
+				break;
+		}
+		r += `</span> `;
+		r += `<span class="cyan">`;
+		if (child.dietCum === 2) {
+			r += `<strong>Cum++</strong>`;
+		} else if (((child.dietCum === 1) && (child.dietMilk === 0))) {
+			r += `<strong>Cum+</strong>`;
+		} else if (((child.dietCum === 1) && (child.dietMilk === 1))) {
+			r += `<strong>Cum+ Milk+</strong>`;
+		} else if (((child.dietCum === 0) && (child.dietMilk === 1))) {
+			r += `<strong>Milk+</strong>`;
+		} else if ((child.dietMilk === 2)) {
+			r += `<strong>Milk++</strong>`;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longDiet(child) {
+		r += `<span class="teal">`;
+		switch (child.diet) {
+			case "restricted":
+				r += `Dieting.`;
+				break;
+			case "fattening":
+				r += `Gaining weight.`;
+				break;
+			case "XX":
+				r += `Estrogen rich.`;
+				break;
+			case "XY":
+				r += `Testosterone rich.`;
+				break;
+			case "XXY":
+				r += `Futanari mix.`;
+				break;
+			case "muscle building":
+				r += `Pumping iron.`;
+				break;
+			case "slimming":
+				r += `Slimming down.`;
+				break;
+			case "cum production":
+				r += `Cum production.`;
+				break;
+			case "cleansing":
+				r += `Cleansing.`;
+				break;
+			case "fertility":
+				r += `Fertility.`;
+				break;
+		}
+		r += `</span> `;
+		if (child.dietCum === 2) {
+			r += `Diet base: <span class="cyan">Cum Based.</span>`;
+		} else if (((child.dietCum === 1) && (child.dietMilk === 0))) {
+			r += `Diet base: <span class="cyan">Cum Added.</span>`;
+		} else if (((child.dietCum === 1) && (child.dietMilk === 1))) {
+			r += `Diet base: <span class="cyan">Milk & Cum Added.</span>`;
+		} else if (((child.dietCum === 0) && (child.dietMilk === 1))) {
+			r += `Diet base: <span class="cyan">Milk Added.</span>`;
+		} else if ((child.dietMilk === 2)) {
+			r += `Diet base: <span class="cyan">Milk Based.</span>`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortHealth(child) {
+		if (child.health < -20) {
+			r += `<strong><span class="red">H${V.summaryStats? `[${child.health}]` : ''}</span></strong>`;
+		} else if (child.health <= 20) {
+			r += `<strong><span class="yellow">H${V.summaryStats? `[${child.health}]` : ''}</span></strong>`;
+		} else if (child.health > 20) {
+			r += `<strong><span class="green">H${V.summaryStats? `[${child.health}]` : ''}</span></strong>`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longHealth(child) {
+		if (child.health < -90) {
+			r += `<span class="red">On the edge of death${V.summaryStats? `[${child.health}]` : ''}.</span>`;
+		} else if (child.health < -50) {
+			r += `<span class="red">Extremely unhealthy${V.summaryStats? `[${child.health}]` : ''}.</span>`;
+		} else if (child.health < -20) {
+			r += `<span class="red">Unhealthy${V.summaryStats? `[${child.health}]` : ''}.</span>`;
+		} else if (child.health <= 20) {
+			r += `<span class="yellow">Healthy${V.summaryStats? `[${child.health}]` : ''}.</span>`;
+		} else if (child.health <= 50) {
+			r += `<span class="green">Very healthy${V.summaryStats? `[${child.health}]` : ''}.</span>`;
+		} else if (child.health <= 90) {
+			r += `<span class="green">Extremely healthy${V.summaryStats? `[${child.health}]` : ''}.</span>`;
+		} else {
+			r += `<span class="green">Unnaturally healthy${V.summaryStats? `[${child.health}]` : ''}.</span>`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortDrugs(child) {
+		r += `<span class="tan">`;
+		switch (child.drugs) {
+			case "breast injections":
+				r += `<strong>Dr:Boobs+</strong>`;
+				break;
+			case "intensive breast injections":
+				r += `<strong>Dr:Boobs++</strong>`;
+				break;
+			case "hyper breast injections":
+				r += `<strong>Dr:Boobs+++</strong>`;
+				break;
+			case "butt injections":
+				r += `<strong>Dr:Butt+</strong>`;
+				break;
+			case "intensive butt injections":
+				r += `<strong>Dr:Butt++</strong>`;
+				break;
+			case "hyper butt injections":
+				r += `<strong>Dr:Butt+++</strong>`;
+				break;
+			case "lip injections":
+				r += `<strong>Dr:Lip+</strong>`;
+				break;
+			case "fertility drugs":
+				r += `<strong>Dr:Fert+</strong>`;
+				break;
+			case "super fertility drugs":
+				r += `<strong>Dr:Fert++</strong>`;
+				break;
+			case "penis enhancement":
+				r += `<strong>Dr:Dick+</strong>`;
+				break;
+			case "intensive penis enhancement":
+				r += `<strong>Dr:Dick++</strong>`;
+				break;
+			case "hyper penis enhancement":
+				r += `<strong>Dr:Dick+++</strong>`;
+				break;
+			case "testicle enhancement":
+				r += `<strong>Dr:Balls+</strong>`;
+				break;
+			case "intensive testicle enhancement":
+				r += `<strong>Dr:Balls++</strong>`;
+				break;
+			case "hyper testicle enhancement":
+				r += `<strong>Dr:Balls+++</strong>`;
+				break;
+			case "psychosuppressants":
+				r += `<strong>Dr:Psych</strong>`;
+				break;
+			case "steroids":
+				r += `<strong>Dr:Ster</strong>`;
+				break;
+			case "female hormone injections":
+				r += `<strong>Dr:HormXX++</strong>`;
+				break;
+			case "male hormone injections":
+				r += `<strong>Dr:HormXY++</strong>`;
+				break;
+			case "hormone enhancers":
+				r += `<strong>Dr:Horm+</strong>`;
+				break;
+			case "hormone blockers":
+				r += `<strong>Dr:Horm-</strong>`;
+				break;
+			case "anti-aging cream":
+				r += `<strong>Dr:Age-</strong>`;
+				break;
+			case "appetite suppressors":
+				r += `<strong>Dr:ApSup</strong>`;
+				break;
+			case "penis atrophiers":
+				r += `<strong>Dr:Dick-</strong>`;
+				break;
+			case "testicle atrophiers":
+				r += `<strong>Dr:Balls-</strong>`;
+				break;
+			case "clitoris atrophiers":
+				r += `<strong>Dr:Clit-</strong>`;
+				break;
+			case "labia atrophiers":
+				r += `<strong>Dr:Labia-</strong>`;
+				break;
+			case "nipple atrophiers":
+				r += `<strong>Dr:Nipple-</strong>`;
+				break;
+			case "lip atrophiers":
+				r += `<strong>Dr:Lip-</strong>`;
+				break;
+			case "breast redistributors":
+				r += `<strong>Dr:Breast-</strong>`;
+				break;
+			case "butt redistributors":
+				r += `<strong>Dr:Butt-</strong>`;
+				break;
+			case "sag-B-gone":
+				r += `<strong>Dr:AntiSag</strong>`;
+				break;
+			case "growth stimulants":
+				r += `<strong>Dr:groStim</strong>`;
+				break;
+		}
+		r += `</span> `;
+		r += `<span class="lightgreen">`;
+		if (child.curatives === 2) {
+			r += `<strong>Cura</strong>`;
+		} else if (child.curatives === 1) {
+			r += `<strong>Prev</strong>`;
+		}
+		r += `</span> `;
+		if (child.aphrodisiacs !== 0) {
+			r += `<span class="lightblue">`;
+			if (child.aphrodisiacs === 1) {
+				r += `<strong>Aph</strong>`;
+			} else if (child.aphrodisiacs === 2) {
+				r += `<strong>Aph++</strong>`;
+			} else {
+				r += `<strong>Anaph</strong>`;
+			}
+			r += `</span> `;
+		}
+		if (child.addict !== 0) {
+			r += `<span class="cyan">Add</span>`;
+		}
+		r += `<span class="lightsalmon">`;
+		if (child.hormones > 1) {
+			r += `<strong>Ho:F+</strong>`;
+		} else if (child.hormones > 0) {
+			r += `<strong>Ho:F</strong>`;
+		} else if (child.hormones < -1) {
+			r += `<strong>Ho:M+</strong>`;
+		} else if (child.hormones < 0) {
+			r += `<strong>Ho:M</strong>`;
+		}
+		r += `</span> `;
+		r += `<span class="mediumseagreen">`;
+		if ((child.bellyImplant > -1)) {
+			r += `<strong>Belly Imp</strong>`;
+		} else if (((child.preg <= -2) || (child.ovaries === 0)) && (child.vagina !== -1)) {
+			r += `<strong>Barr</strong>`;
+		} else if (child.pubertyXX === 0 && (child.ovaries === 1 || child.mpreg === 1)) {
+			r += `<strong>Prepub</strong>`;
+		} else if (child.ovaryAge >= 47 && (child.ovaries === 1 || child.mpreg === 1)) {
+			r += `<strong>Meno</strong>`;
+		} else if (child.pregWeek < 0) {
+			r += `<strong>Postpartum</strong>`;
+		} else if (child.preg === -1) {
+			r += `<strong>CC</strong>`;
+		} else if (child.preg === 0 && (child.ovaries === 1 || child.mpreg === 1)) {
+			r += `<strong>Fert+</strong>`;
+		// } else if (((child.preg < child.pregData.normalBirth / 10) && (child.preg > 0) && child.pregKnown === 0) || child.pregWeek === 1) {
+		//	r += `<strong>Preg?</strong>`;
+		} else if ((child.preg >= 36) && (child.broodmother > 0)) {
+			r += `<strong>Perm preg</strong>`;
+		} else if (child.pregKnown === 1) {
+			r += `<strong>${child.pregWeek} wks preg</strong>`;
+		}
+		r += `</span> `;
+		if (child.induce === 1) {
+			r += `<span class="orange"><strong>Early Labor</strong></span>`;
+		}
+		if (child.pubertyXY === 0 && child.balls > 0) {
+			r += `<strong>Prepub balls</strong>`;
+		}
+		if (child.balls > 0 && child.vasectomy === 1) {
+			r += `<strong>Vasect</strong>`;
+		}
+		r += `<span class="springgreen">`;
+		if (child.inflation === 3) {
+			r += `<strong>8 ltr ${child.inflationType}</strong>`;
+		} else if (child.inflation === 2) {
+			r += `<strong>4 ltr ${child.inflationType}</strong>`;
+		} else if (child.inflation === 1) {
+			r += `<strong>2 ltr ${child.inflationType}</strong>`;
+		} else if (child.bellyFluid > 0) {
+			r += `<strong>${child.bellyFluid}ccs ${child.inflationType}</strong>`;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longDrugs(child) {
+		if ((child.drugs !== "no drugs") && (child.drugs !== "none")) {
+			r += `<span class="tan">On ${child.drugs}.</span> `;
+		}
+		r += `<span class="lightgreen">`;
+		if (child.curatives === 2) {
+			r += `On curatives.`;
+		} else if (child.curatives === 1) {
+			r += `On preventatives.`;
+		}
+		r += `</span> `;
+		r += `<span class="lightblue">`;
+		if (child.aphrodisiacs > 0) {
+			r += `On ${child.aphrodisiacs > 1 ? 'extreme': ''} aphrodisiacs.`;
+		} else if (child.aphrodisiacs === -1) {
+			r += `On anaphrodisiacs.`;
+		}
+		r += `</span> `;
+		if (child.addict !== 0) {
+			r += `<span class="cyan">Addict.</span>`;
+		}
+		r += `<span class="lightsalmon">`;
+		if (child.hormones > 1) {
+			r += `Heavy female hormones.`;
+		} else if (child.hormones > 0) {
+			r += `Female hormones.`;
+		} else if (child.hormones < -1) {
+			r += `Heavy male hormones.`;
+		} else if (child.hormones < 0) {
+			r += `Male hormones.`;
+		}
+		r += `</span> `;
+		r += `<span class="mediumseagreen">`;
+		if ((child.bellyImplant > -1)) {
+			r += `Belly Implant.`;
+		} else if (((child.preg <= -2) || (child.ovaries === 0)) && (child.vagina !== -1)) {
+			r += `Barren.`;
+		} else if (child.pubertyXX === 0 && (child.ovaries === 1 || child.mpreg === 1)) {
+			r += `Not ovulating yet.`;
+		} else if (child.ovaryAge >= 47 && (child.ovaries === 1 || child.mpreg === 1)) {
+			r += `Menopausal.`;
+		} else if (child.pregWeek < 0) {
+			r += `Postpartum.`;
+		} else if (child.preg === -1) {
+			r += `On contraceptives.`;
+		} else if (child.preg === 0 && (child.ovaries === 1 || child.mpreg === 1)) {
+			r += `Fertile.`;
+		} else if (((child.preg < child.pregData.normalBirth / 10) && (child.preg > 0) && child.pregKnown === 0) || child.pregWeek === 1) {
+			r += `May be pregnant.`;
+		} else if ((child.preg >= 36) && (child.broodmother > 0)) {
+			r += `Permanently pregnant.`;
+		} else if (child.pregKnown === 1) {
+			if (child.pregType < 2 || child.broodmother > 0) {
+				r += `${child.pregWeek} weeks pregnant.`;
+			} else {
+				r += `${child.pregWeek} weeks pregnant with `;
+				if (child.pregType >= 40) {
+					r += `a tremendous brood of offspring.`;
+				} else if (child.pregType >= 20) {
+					r += `a brood of offspring.`;
+				} else if (child.pregType >= 10) {
+					r += `${child.pregType} babies.`;
+				} else if (child.pregType === 9) {
+					r += `nonuplets.`;
+				} else if (child.pregType === 8) {
+					r += `octuplets.`;
+				} else if (child.pregType === 7) {
+					r += `septuplets.`;
+				} else if (child.pregType === 6) {
+					r += `sextuplets.`;
+				} else if (child.pregType === 5) {
+					r += `quintuplets.`;
+				} else if (child.pregType === 4) {
+					r += `quadruplets.`;
+				} else if (child.pregType === 3) {
+					r += `triplets.`;
+				} else {
+					r += `twins.`;
+				}
+			}
+			if (child.preg > child.pregData.normalBirth && child.broodmother === 0) {
+				r += ` (Overdue.)`;
+			}
+		}
+		r += `</span> `;
+		if (child.induce === 1) {
+			r += `<span class="orange">Showing signs of early labor.</span>`;
+		}
+		if (child.pubertyXY === 0 && child.balls > 0) {
+			r += `Has not had first ejaculation.`;
+		}
+		if (child.balls > 0 && child.vasectomy === 1) {
+			r += `Vasectomy.`;
+		}
+		r += `<span class="springgreen">`;
+		if (child.inflation === 3) {
+			r += `Filled with 8 liters of ${child.inflationType}.`;
+		} else if (child.inflation === 2) {
+			r += `Filled with 4 liters of ${child.inflationType}.`;
+		} else if (child.inflation === 1) {
+			r += `Filled with 2 liters of ${child.inflationType}.`;
+		} else if (child.bellyFluid > 0) {
+			r += `Stuffed with ${child.bellyFluid}ccs of ${child.inflationType}.`;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longRace(child) {
+		switch (child.race) {
+			case "white":
+				r += `Caucasian.`;
+				break;
+			case "asian":
+				r += `Asian.`;
+				break;
+			case "indo-aryan":
+				r += `Indo-aryan.`;
+				break;
+			case "latina":
+				r += `Latina.`;
+				break;
+			case "middle eastern":
+				r += `Middle Eastern.`;
+				break;
+			case "black":
+				r += `Black.`;
+				break;
+			case "pacific islander":
+				r += `Pacific Islander.`;
+				break;
+			case "malay":
+				r += `Malay.`;
+				break;
+			case "amerindian":
+				r += `Amerindian.`;
+				break;
+			case "semitic":
+				r += `Semitic.`;
+				break;
+			case "southern european":
+				r += `Southern European.`;
+				break;
+			case "mixed race":
+				r += `Mixed race.`;
+				break;
+			default:
+				r += `${child.race.charAt(0).toUpperCase() + child.race.slice(1)}.`;
+				break;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortRace(child) {
+		switch (child.race) {
+			case "white":
+				r += `C`;
+				break;
+			case "asian":
+				r += `A`;
+				break;
+			case "indo-aryan":
+				r += `I`;
+				break;
+			case "latina":
+				r += `L`;
+				break;
+			case "middle eastern":
+				r += `ME`;
+				break;
+			case "black":
+				r += `B`;
+				break;
+			case "pacific islander":
+				r += `PI`;
+				break;
+			case "malay":
+				r += `M`;
+				break;
+			case "amerindian":
+				r += `AI`;
+				break;
+			case "semitic":
+				r += `S`;
+				break;
+			case "southern european":
+				r += `SE`;
+				break;
+			case "mixed race":
+				r += `MR`;
+				break;
+			default:
+				r += `${child.race.charAt(0).toUpperCase() + child.race.charAt(1) + child.race.charAt(2)}`;
+				break;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortNationality(child) {
+		r += `<span class="tan">`;
+		switch (child.nationality) {
+			case "Afghan":
+				r += `Afg`;
+				break;
+			case "Albanian":
+				r += `Alb`;
+				break;
+			case "Algerian":
+				r += `Alg`;
+				break;
+			case "American":
+				r += `USA`;
+				break;
+			case "Andorran":
+				r += `And`;
+				break;
+			case "Angolan":
+				r += `Ang`;
+				break;
+			case "Antiguan":
+				r += `AB`;
+				break;
+			case "Argentinian":
+				r += `Arg`;
+				break;
+			case "Armenian":
+				r += `Arm`;
+				break;
+			case "Aruban":
+				r += `Aru`;
+				break;
+			case "Australian":
+				r += `Aus`;
+				break;
+			case "Austrian":
+				r += `Aut`;
+				break;
+			case "Azerbaijani":
+				r += `Aze`;
+				break;
+			case "Bahamian":
+				r += `Bah`;
+				break;
+			case "Bahraini":
+				r += `Bah`;
+				break;
+			case "Bangladeshi":
+				r += `Bgd`;
+				break;
+			case "Barbadian":
+				r += `Bar`;
+				break;
+			case "Belarusian":
+				r += `Ber`;
+				break;
+			case "Belgian":
+				r += `Bel`;
+				break;
+			case "Belizean":
+				r += `Blz`;
+				break;
+			case "Beninese":
+				r += `Ben`;
+				break;
+			case "Bermudian":
+				r += `Bmd`;
+				break;
+			case "Bhutanese":
+				r += `Bhu`;
+				break;
+			case "Bissau-Guinean":
+				r += `GB`;
+				break;
+			case "Bolivian":
+				r += `Bol`;
+				break;
+			case "Bosnian":
+				r += `Bos`;
+				break;
+			case "Brazilian":
+				r += `Bra`;
+				break;
+			case "British":
+				r += `UK`;
+				break;
+			case "Bruneian":
+				r += `Bru`;
+				break;
+			case "Bulgarian":
+				r += `Bul`;
+				break;
+			case "Burkinabé":
+				r += `BF`;
+				break;
+			case "Burmese":
+				r += `Bur`;
+				break;
+			case "Burundian":
+				r += `Bnd`;
+				break;
+			case "Cambodian":
+				r += `Kam`;
+				break;
+			case "Cameroonian":
+				r += `Cam`;
+				break;
+			case "Canadian":
+				r += `Can`;
+				break;
+			case "Cape Verdean":
+				r += `CV`;
+				break;
+			case "Catalan":
+				r += `Cat`;
+				break;
+			case "Central African":
+				r += `CAR`;
+				break;
+			case "Chadian":
+				r += `Cha`;
+				break;
+			case "Chilean":
+				r += `Chl`;
+				break;
+			case "Chinese":
+				r += `Chi`;
+				break;
+			case "Colombian":
+				r += `Col`;
+				break;
+			case "Comorian":
+				r += `Com`;
+				break;
+			case "Congolese":
+				r += `RC`;
+				break;
+			case "a Cook Islander":
+				r += `CI`;
+				break;
+			case "Costa Rican":
+				r += `CR`;
+				break;
+			case "Croatian":
+				r += `Cro`;
+				break;
+			case "Cuban":
+				r += `Cub`;
+				break;
+			case "Curaçaoan":
+				r += `Cur`;
+				break;
+			case "Cypriot":
+				r += `Cyp`;
+				break;
+			case "Czech":
+				r += `Cze`;
+				break;
+			case "Danish":
+				r += `Den`;
+				break;
+			case "Djiboutian":
+				r += `Dji`;
+				break;
+			case "Dominican":
+				r += `DR`;
+				break;
+			case "Dominiquais":
+				r += `Dom`;
+				break;
+			case "Dutch":
+				r += `Nld`;
+				break;
+			case "East Timorese":
+				r += `ET`;
+				break;
+			case "Ecuadorian":
+				r += `Ecu`;
+				break;
+			case "Egyptian":
+				r += `Egy`;
+				break;
+			case "Emirati":
+				r += `UAE`;
+				break;
+			case "Equatoguinean":
+				r += `EG`;
+				break;
+			case "Eritrean":
+				r += `Eri`;
+				break;
+			case "Estonian":
+				r += `Est`;
+				break;
+			case "Ethiopian":
+				r += `Eth`;
+				break;
+			case "Fijian":
+				r += `Fij`;
+				break;
+			case "Filipina":
+				r += `Phl`;
+				break;
+			case "Finnish":
+				r += `Fin`;
+				break;
+			case "French":
+				r += `Fra`;
+				break;
+			case "French Guianan":
+				r += `FG`;
+				break;
+			case "French Polynesian":
+				r += `FP`;
+				break;
+			case "Gabonese":
+				r += `Gab`;
+				break;
+			case "Gambian":
+				r += `Gam`;
+				break;
+			case "Georgian":
+				r += `Geo`;
+				break;
+			case "German":
+				r += `Ger`;
+				break;
+			case "Ghanan":
+				r += `Gha`;
+				break;
+			case "Greek":
+				r += `Gre`;
+				break;
+			case "Greenlandic":
+				r += `Grn`;
+				break;
+			case "Grenadian":
+				r += `Gda`;
+				break;
+			case "Guamanian":
+				r += `Gua`;
+				break;
+			case "Guatemalan":
+				r += `Gtm`;
+				break;
+			case "Guinean":
+				r += `Gui`;
+				break;
+			case "Guyanese":
+				r += `Guy`;
+				break;
+			case "Haitian":
+				r += `Hai`;
+				break;
+			case "Honduran":
+				r += `Hon`;
+				break;
+			case "Hungarian":
+				r += `Hun`;
+				break;
+			case "I-Kiribati":
+				r += `Kir`;
+				break;
+			case "Icelandic":
+				r += `Ice`;
+				break;
+			case "Indian":
+				r += `Ind`;
+				break;
+			case "Indonesian":
+				r += `Idn`;
+				break;
+			case "Iranian":
+				r += `Irn`;
+				break;
+			case "Iraqi":
+				r += `Irq`;
+				break;
+			case "Irish":
+				r += `Irl`;
+				break;
+			case "Israeli":
+				r += `Isr`;
+				break;
+			case "Italian":
+				r += `Ita`;
+				break;
+			case "Ivorian":
+				r += `IC`;
+				break;
+			case "Jamaican":
+				r += `Jam`;
+				break;
+			case "Japanese":
+				r += `Jpn`;
+				break;
+			case "Jordanian":
+				r += `Jor`;
+				break;
+			case "Kazakh":
+				r += `Kaz`;
+				break;
+			case "Kenyan":
+				r += `Ken`;
+				break;
+			case "Kittitian":
+				r += `SKN`;
+				break;
+			case "Korean":
+				r += `Kor`;
+				break;
+			case "Kosovan":
+				r += `Kos`;
+				break;
+			case "Kurdish":
+				r += `Kur`;
+				break;
+			case "Kuwaiti":
+				r += `Kuw`;
+				break;
+			case "Kyrgyz":
+				r += `Kyr`;
+				break;
+			case "Laotian":
+				r += `Lao`;
+				break;
+			case "Latvian":
+				r += `Lat`;
+				break;
+			case "Lebanese":
+				r += `Lbn`;
+				break;
+			case "Liberian":
+				r += `Lib`;
+				break;
+			case "Libyan":
+				r += `Lby`;
+				break;
+			case "a Liechtensteiner":
+				r += `Lie`;
+				break;
+			case "Lithuanian":
+				r += `Lit`;
+				break;
+			case "Luxembourgian":
+				r += `Lux`;
+				break;
+			case "Macedonian":
+				r += `Mac`;
+				break;
+			case "Malagasy":
+				r += `Mad`;
+				break;
+			case "Malawian":
+				r += `Mwi`;
+				break;
+			case "Malaysian":
+				r += `Mys`;
+				break;
+			case "Maldivian":
+				r += `Mdv`;
+				break;
+			case "Malian":
+				r += `Mal`;
+				break;
+			case "Maltese":
+				r += `Mlt`;
+				break;
+			case "Marshallese":
+				r += `MI`;
+				break;
+			case "Mauritanian":
+				r += `Mta`;
+				break;
+			case "Mauritian":
+				r += `Mts`;
+				break;
+			case "Mexican":
+				r += `Mex`;
+				break;
+			case "Micronesian":
+				r += `FSM`;
+				break;
+			case "Moldovan":
+				r += `Mol`;
+				break;
+			case "Monégasque":
+				r += `Mnc`;
+				break;
+			case "Mongolian":
+				r += `Mon`;
+				break;
+			case "Montenegrin":
+				r += `Mng`;
+				break;
+			case "Moroccan":
+				r += `Mor`;
+				break;
+			case "Mosotho":
+				r += `Les`;
+				break;
+			case "Motswana":
+				r += `Bot`;
+				break;
+			case "Mozambican":
+				r += `Moz`;
+				break;
+			case "Namibian":
+				r += `Nam`;
+				break;
+			case "Nauruan":
+				r += `Nau`;
+				break;
+			case "Nepalese":
+				r += `Npl`;
+				break;
+			case "New Caledonian":
+				r += `NC`;
+				break;
+			case "a New Zealander":
+				r += `NZ`;
+				break;
+			case "Ni-Vanuatu":
+				r += `Van`;
+				break;
+			case "Nicaraguan":
+				r += `Nic`;
+				break;
+			case "Nigerian":
+				r += `Nga`;
+				break;
+			case "Nigerien":
+				r += `Ngr`;
+				break;
+			case "Niuean":
+				r += `Niu`;
+				break;
+			case "Norwegian":
+				r += `Nor`;
+				break;
+			case "Omani":
+				r += `Omn`;
+				break;
+			case "Pakistani":
+				r += `Pak`;
+				break;
+			case "Palauan":
+				r += `Plu`;
+				break;
+			case "Palestinian":
+				r += `Pal`;
+				break;
+			case "Panamanian":
+				r += `Pan`;
+				break;
+			case "Papua New Guinean":
+				r += `PNG`;
+				break;
+			case "Paraguayan":
+				r += `Par`;
+				break;
+			case "Peruvian":
+				r += `Per`;
+				break;
+			case "Polish":
+				r += `Pol`;
+				break;
+			case "Portuguese":
+				r += `Por`;
+				break;
+			case "Puerto Rican":
+				r += `PR`;
+				break;
+			case "Qatari":
+				r += `Qat`;
+				break;
+			case "Romanian":
+				r += `Rom`;
+				break;
+			case "Russian":
+				r += `Rus`;
+				break;
+			case "Rwandan":
+				r += `Rwa`;
+				break;
+			case "Sahrawi":
+				r += `Sah`;
+				break;
+			case "Saint Lucian":
+				r += `SL`;
+				break;
+			case "Salvadoran":
+				r += `ES`;
+				break;
+			case "Sammarinese":
+				r += `SM`;
+				break;
+			case "Samoan":
+				r += `Sam`;
+				break;
+			case "São Toméan":
+				r += `STP`;
+				break;
+			case "Saudi":
+				r += `Sau`;
+				break;
+			case "Scottish":
+				r += `Sco`;
+				break;
+			case "Senegalese":
+				r += `Sen`;
+				break;
+			case "Serbian":
+				r += `Srb`;
+				break;
+			case "Seychellois":
+				r += `Sey`;
+				break;
+			case "Sierra Leonean":
+				r += `Sie`;
+				break;
+			case "Singaporean":
+				r += `Sng`;
+				break;
+			case "Slovak":
+				r += `Svk`;
+				break;
+			case "Slovene":
+				r += `Svn`;
+				break;
+			case "a Solomon Islander":
+				r += `SI`;
+				break;
+			case "Somali":
+				r += `Som`;
+				break;
+			case "South African":
+				r += `RSA`;
+				break;
+			case "South Sudanese":
+				r += `SS`;
+				break;
+			case "Spanish":
+				r += `Spa`;
+				break;
+			case "Sri Lankan":
+				r += `Sri`;
+				break;
+			case "Sudanese":
+				r += `Sud`;
+				break;
+			case "Surinamese":
+				r += `Sur`;
+				break;
+			case "Swazi":
+				r += `Swa`;
+				break;
+			case "Swedish":
+				r += `Swe`;
+				break;
+			case "Swiss":
+				r += `Swi`;
+				break;
+			case "Syrian":
+				r += `Syr`;
+				break;
+			case "Taiwanese":
+				r += `Tai`;
+				break;
+			case "Tajik":
+				r += `Taj`;
+				break;
+			case "Tanzanian":
+				r += `Tza`;
+				break;
+			case "Thai":
+				r += `Tha`;
+				break;
+			case "Tibetan":
+				r += `Tib`;
+				break;
+			case "Togolese":
+				r += `Tog`;
+				break;
+			case "Tongan":
+				r += `Ton`;
+				break;
+			case "Trinidadian":
+				r += `TT`;
+				break;
+			case "Tunisian":
+				r += `Tun`;
+				break;
+			case "Turkish":
+				r += `Tur`;
+				break;
+			case "Turkmen":
+				r += `Tkm`;
+				break;
+			case "Tuvaluan":
+				r += `Tuv`;
+				break;
+			case "Ugandan":
+				r += `Uga`;
+				break;
+			case "Ukrainian":
+				r += `Ukr`;
+				break;
+			case "Uruguayan":
+				r += `Uru`;
+				break;
+			case "Uzbek":
+				r += `Uzb`;
+				break;
+			case "Vatican":
+				r += `VC`;
+				break;
+			case "Venezuelan":
+				r += `Ven`;
+				break;
+			case "Vietnamese":
+				r += `Vnm`;
+				break;
+			case "Vincentian":
+				r += `SVG`;
+				break;
+			case "Yemeni":
+				r += `Yem`;
+				break;
+			case "Zairian":
+				r += `DRC`;
+				break;
+			case "Zambian":
+				r += `Zam`;
+				break;
+			case "Zimbabwean":
+				if (child.race === "white") {
+					r += `Rho`;
+				} else {
+					r += `Zwe`;
+				}
+				break;
+			case "Ancient Chinese Revivalist":
+				r += `Chi Rev`;
+				break;
+			case "Ancient Egyptian Revivalist":
+				r += `Egy Rev`;
+				break;
+			case "Arabian Revivalist":
+				r += `Ara Rev`;
+				break;
+			case "Aztec Revivalist":
+				r += `Azt Rev`;
+				break;
+			case "Edo Revivalist":
+				r += `Edo Rev`;
+				break;
+			case "Roman Revivalist":
+				r += `Rom Rev`;
+				break;
+			case "":
+			case "none":
+			case "child":
+			case "Stateless":
+				r += `None`;
+				break;
+			default:
+				r += `${child.nationality.charAt(0) + child.nationality.charAt(1) + child.nationality.charAt(2)}`;
+				break;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longNationality(child) {
+		r += `<span class="tan">`;
+		switch (child.nationality) {
+			case "a Cook Islander":
+				r += `Cook Islander.`;
+				break;
+			case "a Liechtensteiner":
+				r += `Liechtensteiner.`;
+				break;
+			case "a New Zealander":
+				r += `New Zealander.`;
+				break;
+			case "a Solomon Islander":
+				r += `Solomon Islander.`;
+				break;
+			case "Zimbabwean":
+				if (child.race === "white") {
+					r += `Rhodesian.`;
+				} else {
+					r += `${child.nationality}.`;
+				}
+				break;
+			case "child":
+			case "none":
+			case "":
+			case "Stateless":
+				r += `Stateless.`;
+				break;
+			default:
+				r += `${child.nationality}.`;
+				break;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortSkin(child) {
+		r += `<span class="pink">`;
+		switch (child.skin) {
+			case "pure white":
+				r += `P. Whi`;
+				break;
+			case "extremely fair":
+				r += `E. Fai`;
+				break;
+			case "very fair":
+				r += `V. Fai`;
+				break;
+			case "extremely pale":
+				r += `E. Pal`;
+				break;
+			case "very pale":
+				r += `V. Pal`;
+				break;
+			case "light brown":
+				r += `L. Br`;
+				break;
+			case "dark brown":
+				r += `D. Br`;
+				break;
+			case "light olive":
+				r += `L. Oli`;
+				break;
+			case "dark olive":
+				r += `D. Oli`;
+				break;
+			case "light beige":
+				r += `L. Bei`;
+				break;
+			case "dark beige":
+				r += `D. Bei`;
+				break;
+			case "tan":
+				r += `Tan`;
+				break;
+			case "bronze":
+				r += `Bron`;
+				break;
+			case "ebony":
+				r += `Ebon`;
+				break;
+			case "pure black":
+				r += `P. Bla`;
+				break;
+			case "dark":
+			case "fair":
+			case "pale":
+				r += `${child.skin.charAt(0).toUpperCase() + child.skin.slice(1)}`;
+				break;
+			default:
+				r += `${child.skin.charAt(0).toUpperCase() + child.skin.charAt(1) + child.skin.charAt(2)}`;
+				break;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortGenitals(child) {
+		if (child.dick > 0) {
+			r += `<span class="pink">`;
+			if (child.balls === 0) {
+				r += `Geld`;
+			}
+			if ((child.dick > 8) && (child.balls > 8)) {
+				r += `Junk+++`;
+			} else if ((child.dick > 5) && (child.balls > 5)) {
+				r += `Junk++`;
+			} else if ((child.dick > 4) && (child.balls > 4)) {
+				r += `Junk+`;
+			} else if ((child.dick > 3) && (child.balls > 3)) {
+				r += `Junk`;
+			} else if (child.dick > 8) {
+				r += `Dick+++`;
+			} else if (child.dick > 5) {
+				r += `Dick++`;
+			} else if (child.dick > 4) {
+				r += `Dick+`;
+			} else if (child.dick > 3) {
+				r += `Dick`;
+			} else if (child.balls > 10) {
+				r += `Balls+++`;
+			} else if (child.balls > 5) {
+				r += `Balls++`;
+			} else if (child.balls > 4) {
+				r += `Balls+`;
+			} else if (child.balls > 3) {
+				r += `Balls`;
+			}
+			r += `</span> `;
+		}
+		if (child.vagina === 0) {
+			r += `<span class="lime">VV</span>`;
+		} else if ((child.pregKnown === 1) && canWalk(child) && (child.clothes === "no clothing" || child.clothes === "body oil") && (child.shoes === "none")) {
+			r += `<span class="pink">NBP</span>`;
+		}
+		if (child.anus === 0) {
+			r += ` <span class="lime">AV</span>`;
+		}
+		r += `<span class="pink">`;
+		if ((child.vagina > 3) && (child.anus > 3)) {
+			r += ` V++A++`;
+		} else if ((child.vagina > 2) && (child.anus > 2)) {
+			r += ` V+A+`;
+		} else if (child.vagina > 3) {
+			r += ` V++`;
+		} else if (child.vagina > 2) {
+			r += ` V+`;
+		} else if (child.anus > 3) {
+			r += ` A++`;
+		} else if (child.anus > 2) {
+			r += ` A+`;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longGenitals(child) {
+		if (child.dick > 0) {
+			r += `<span class="pink">`;
+			if (child.balls === 0) {
+				r += `Gelded.`;
+			}
+			if ((child.dick > 8) && (child.balls > 8)) {
+				r += `Hyper dick & balls.`;
+			} else if ((child.dick > 5) && (child.balls > 5)) {
+				r += `Monster dick & balls.`;
+			} else if ((child.dick > 4) && (child.balls > 4)) {
+				r += `Huge dick & balls.`;
+			} else if ((child.dick > 3) && (child.balls > 3)) {
+				r += `Big dick & balls.`;
+			} else if (child.dick > 8) {
+				r += `Hyper dong.`;
+			} else if (child.dick > 5) {
+				r += `Monster dong.`;
+			} else if (child.dick > 4) {
+				r += `Huge dick.`;
+			} else if (child.dick > 3) {
+				r += `Big dick.`;
+			} else if (child.balls > 8) {
+				r += `Hyper balls.`;
+			} else if (child.balls > 5) {
+				r += `Monstrous balls.`;
+			} else if (child.balls > 4) {
+				r += `Huge balls.`;
+			} else if (child.balls > 3) {
+				r += `Big balls.`;
+			}
+			r += `</span> `;
+		}
+		if (child.vagina === 0) {
+			r += `<span class="lime">Virgin.</span> `;
+		} else if ((child.pregKnown === 1) && canWalk(child) && (child.clothes === "no clothing" || child.clothes === "body oil") && (child.shoes === "none")) {
+			r += `<span class="pink">Naked, barefoot, and pregnant.</span> `;
+		}
+		if (child.anus === 0) {
+			r += `<span class="lime">Anal virgin.</span> `;
+		}
+		r += `<span class="pink">`;
+		if ((child.vagina > 3) && (child.anus > 3)) {
+			r += `Blown out holes.`;
+		} else if ((child.vagina > 2) && (child.anus > 2)) {
+			r += `High mileage.`;
+		} else if (child.vagina > 3) {
+			r += `Cavernous pussy.`;
+		} else if (child.vagina > 2) {
+			r += `Loose pussy.`;
+		} else if (child.anus > 3) {
+			r += `Permagaped anus.`;
+		} else if (child.anus > 2) {
+			r += `Gaping anus.`;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortAge(child) {
+		r += `<span class="pink">`;
+		if (V.showAgeDetail === 1) {
+			r += child.actualAge;
+		} else if (child.actualAge >= 40) {
+			r += `40s`;
+		} else if (child.actualAge >= 35) {
+			r += `Lt30s`;
+		} else if (child.actualAge >= 30) {
+			r += `Ea30s`;
+		} else if (child.actualAge >= 25) {
+			r += `Lt20s`;
+		} else if (child.actualAge >= 20) {
+			r += `Ea20s`;
+		} else if (child.actualAge >= 18) {
+			r += child.actualAge;
+		}
+		if (child.actualAge !== child.physicalAge) {
+			r += ` w ${child.physicalAge}y-bdy`;
+		}
+		if (child.visualAge !== child.physicalAge) {
+			r += ` Lks${child.visualAge}`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortFace(child) {
+		if (child.face < -95) {
+			r += `<span class="red">Face---${V.summaryStats? `[${child.face}]` : ''}</span>`;
+		} else if (child.face < -40) {
+			r += `<span class="red">Face--${V.summaryStats? `[${child.face}]` : ''}</span>`;
+		} else if (child.face < -10) {
+			r += `<span class="red">Face-${V.summaryStats? `[${child.face}]` : ''}</span>`;
+		} else if (child.face <= 10) {
+			r += `Face${V.summaryStats? `[${child.face}]` : ''}`;
+		} else if (child.face <= 40) {
+			r += `<span class="pink">Face+${V.summaryStats? `[${child.face}]` : ''}</span>`;
+		} else if (child.face <= 95) {
+			r += `<span class="pink">Face++${V.summaryStats? `[${child.face}]` : ''}</span>`;
+		} else {
+			r += `<span class="pink">Face+++${V.summaryStats? `[${child.face}]` : ''}</span>`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortEyes(child) {
+		if (child.eyes === -2) {
+			r += `<span class="red">Blind</span>`;
+		} else if (((child.eyes === -1) && (child.eyewear !== "corrective glasses") && (child.eyewear !== "corrective contacts")) || (child.eyewear === "blurring glasses") || (child.eyewear === "blurring contacts")) {
+			r += `<span class="yellow">Sight-</span>`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortEars(child) {
+		if (child.hears === -2) {
+			r += `<span class="red">Deaf</span>`;
+		} else if ((child.hears === -1) && (child.earwear !== "hearing aids")) {
+			r += `<span class="yellow">Hearing-</span>`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortLips(child) {
+		if (child.lips > 95) {
+			r += `Facepussy`;
+		} else if (child.lips > 70) {
+			r += `Lips+++${V.summaryStats? `[${child.lips}]` : ''}`;
+		} else if (child.lips > 40) {
+			r += `Lips++${V.summaryStats? `[${child.lips}]` : ''}`;
+		} else if (child.lips > 20) {
+			r += `Lips+${V.summaryStats? `[${child.lips}]` : ''}`;
+		} else if (child.lips > 10) {
+			r += `Lips${V.summaryStats? `[${child.lips}]` : ''}`;
+		} else {
+			r += `<span class="red">Lips-${V.summaryStats? `[${child.lips}]` : ''}</span>`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortTeeth(child) {
+		if (child.teeth === "crooked") {
+			r += `<span class="yellow">Cr Teeth</span>`;
+		} else if (child.teeth === "gapped") {
+			r += `<span class="yellow">Gap</span>`;
+		} else if (child.teeth === "cosmetic braces") {
+			r += `Cos Braces`;
+		} else if (child.teeth === "straightening braces") {
+			r += `Braces`;
+		} else if (child.teeth === "removable") {
+			r += `Rem Teeth`;
+		} else if (child.teeth === "pointy") {
+			r += `Fangs`;
+		} else if (child.teeth === "baby") {
+			r += `Baby`;
+		} else if (child.teeth === "mixed") {
+			r += `Mixed`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortMuscles(child) {
+		if (child.muscles > 95) {
+			r += `Musc++${V.summaryStats? `[${child.muscles}]`: ''}`;
+		} else if (child.muscles > 50) {
+			r += `Musc+${V.summaryStats? `[${child.muscles}]`: ''}`;
+		} else if (child.muscles > 5) {
+			r += `Fit${V.summaryStats? `[${child.muscles}]`: ''}`;
+		} else if (child.muscles > -6) {
+			r += `Soft${V.summaryStats? `[${child.muscles}]`: ''}`;
+		} else if (child.muscles > -31) {
+			if (V.arcologies[0].FSPhysicalIdealist === "unset") {
+				r += `<span class="red">Weak</span>${V.summaryStats? `[${child.muscles}]`: ''}`;
+			} else {
+				r += `Soft${V.summaryStats? `[${child.muscles}]`: ''}`;
+			}
+		} else if (child.muscles > -96) {
+			if (V.arcologies[0].FSPhysicalIdealist === "unset") {
+				r += `<span class="red">Weak+</span>${V.summaryStats? `[${child.muscles}]`: ''}`;
+			} else {
+				r += `Soft+${V.summaryStats? `[${child.muscles}]`: ''}`;
+			}
+		} else {
+			r += `<span class="red">Weak++</span>${V.summaryStats? `[${child.muscles}]`: ''}`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortLimbs(child) {
+		if (child.amp !== 0) {
+			if (child.amp === -1) {
+				r += `P-Limbs`;
+			} else if (child.amp === -2) {
+				r += `Sex P-Limbs`;
+			} else if (child.amp === -3) {
+				r += `Beauty P-Limbs`;
+			} else if (child.amp === -4) {
+				r += `Combat P-Limbs`;
+			} else if (child.amp === -5) {
+				r += `Cyber P-Limbs`;
+			} else {
+				r += `Amp`;
+			}
+		}
+		r += " ";
+		if (!canWalk(child)) {
+			r += ` Immob `;
+		}
+		if (child.heels === 1) {
+			r += ` Heel `;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortVoice(child) {
+		if (child.voice === 0) {
+			r += `<span class="red">Mute</span>`;
+		} else {
+			if (child.accent === 3) {
+				r += `<span class="red">Acc--</span>`;
+			} else if (child.accent === 2) {
+				r += `Acc-`;
+			} else if (child.accent === 4) {
+				r += `Acc--`;
+			} else if (child.accent === 1) {
+				r += `<span class="pink">Acc</span>`;
+			}
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortTitsAss(child) {
+		r += `<span class="pink">`;
+		if ((child.boobs >= 12000) && (child.butt > 9)) {
+			r += `T&A+++`;
+		} else if ((child.boobs > 4000) && (child.butt > 8)) {
+			r += `T&A++`;
+		} else if ((child.boobs > 2000) && (child.butt > 6)) {
+			r += `T&A+`;
+		} else if ((child.boobs > 800) && (child.butt > 4)) {
+			r += `T&A`;
+		} else if ((child.boobs < 500) && (child.butt < 3) && (child.weight <= 10) && (child.muscles <= 30)) {
+			r += `Girlish`;
+		} else if (child.boobs >= 12000) {
+			r += `Boobs+++`;
+		} else if (child.boobs > 4000) {
+			r += `Boobs++`;
+		} else if (child.boobs > 2000) {
+			r += `Boobs+`;
+		} else if (child.boobs > 800) {
+			r += `Boobs`;
+		} else if (child.butt > 9) {
+			r += `Ass+++`;
+		} else if (child.butt > 8) {
+			r += `Ass++`;
+		} else if (child.butt > 6) {
+			r += `Ass+`;
+		} else if (child.butt > 4) {
+			r += `Ass`;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortHips(child) {
+		r += `<span class="red">`;
+		if (child.hips < -1) {
+			if (child.butt > 2 && (V.arcologies[0].FSTransformationFetishist < 20 || V.arcologies[0].FSTransformationFetishist === "unset") && (V.arcologies[0].FSHedonisticDecadence < 20 || V.arcologies[0].FSHedonisticDecadence === "unset")) {
+				r += `Disp+`;
+			}
+		} else if (child.hips < 0) {
+			if (child.butt > 4 && (V.arcologies[0].FSTransformationFetishist < 20 || V.arcologies[0].FSTransformationFetishist === "unset") && (V.arcologies[0].FSHedonisticDecadence < 20 || V.arcologies[0].FSHedonisticDecadence === "unset")) {
+				r += `Disp+`;
+			}
+		} else if (child.hips > 2) {
+			if (child.butt <= 8) {
+				r += `Disp-`;
+			}
+		} else if (child.hips > 1) {
+			if (child.butt <= 3 && (V.arcologies[0].FSSlimnessEnthusiast === "unset" || (child.boobs >= 500))) {
+				r += `Disp-`;
+			}
+		} else if (child.hips > 0) {
+			if (child.butt > 8) {
+				if ((V.arcologies[0].FSTransformationFetishist < 20 || V.arcologies[0].FSTransformationFetishist === "unset") && (V.arcologies[0].FSHedonisticDecadence < 20 || V.arcologies[0].FSHedonisticDecadence === "unset")) {
+					r += `Disp+`;
+				}
+			} else if (child.butt <= 2 && (V.arcologies[0].FSSlimnessEnthusiast === "unset" || (child.boobs >= 500))) {
+				r += `Disp-`;
+			}
+		} else {
+			if (child.butt > 6) {
+				if ((V.arcologies[0].FSTransformationFetishist < 20 || V.arcologies[0].FSTransformationFetishist === "unset") && (V.arcologies[0].FSHedonisticDecadence < 20 || V.arcologies[0].FSHedonisticDecadence === "unset")) {
+					r += `Disp+`;
+				}
+			} else if (child.butt <= 1 && (V.arcologies[0].FSSlimnessEnthusiast === "unset" || (child.boobs >= 500))) {
+				r += `Disp-`;
+			}
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortWaist(child) {
+		if (child.waist > 95) {
+			r += `<span class="red">Wst---${V.summaryStats? `[${child.waist}]` : ''}</span>`;
+		} else if (child.waist > 40) {
+			r += `<span class="red">Wst--${V.summaryStats? `[${child.waist}]`: ''}</span>`;
+		} else if (child.waist > 10) {
+			r += `<span class="red">Wst-${V.summaryStats? `[${child.waist}]` : ''}</span>`;
+		} else if (child.waist >= -10) {
+			r += `Wst${V.summaryStats? `[${child.waist}]`: ''}`;
+		} else if (child.waist >= -40) {
+			r += `<span class="pink">Wst+${V.summaryStats? `[${child.waist}]` : ''}</span>`;
+		} else if (child.waist >= -95) {
+			r += `<span class="pink">Wst++${V.summaryStats? `[${child.waist}]` : ''}</span>`;
+		} else {
+			r += `<span class="pink">Wst+++${V.summaryStats? `[${child.waist}]`: ''}</span>`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortImplants(child) {
+		r += `<span class="pink">`;
+		if ((child.boobsImplant === 0) && (child.buttImplant === 0) && (child.waist >= -95) && (child.lipsImplant === 0) && (child.faceImplant <= 5) && (child.bellyImplant === -1)) {
+			r += `Natr`;
+		} else {
+			r += `Impl`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortLactation(child) {
+		if (child.lactation === 1) {
+			r += `Lact`;
+		} else if (child.lactation === 2) {
+			r += `Lact++`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortMods(child) {
+		V.modScorChildStatsChecker.modScore(child);
+		if (child.corsetPiercing === 0 && V.piercingScore < 3 && V.tatScore < 2) {
+			return;
+		} else if (V.modScore > 15 || (V.piercingScore > 8 && V.tatScore > 5)) {
+			r += `Mods++`;
+		} else if (V.modScore > 7) {
+			r += `Mods+`;
+		} else {
+			r += `Mods`;
+		}
+		if (child.brand !== 0) {
+			r += `Br`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longAge(child) {
+		r += `<span class="pink">`;
+		if (V.showAgeDetail === 1) {
+			r += `Age ` + `${child.actualAge}` + `.`;
+		} else if (child.actualAge >= 40) {
+			r += `Forties.`;
+		} else if (child.actualAge >= 35) {
+			r += `Late thirties.`;
+		} else if (child.actualAge >= 30) {
+			r += `Early thirties.`;
+		} else if (child.actualAge >= 25) {
+			r += `Late twenties.`;
+		} else if (child.actualAge >= 20) {
+			r += `Early twenties.`;
+		} else if (child.actualAge >= 19) {
+			r += `Nineteen.`;
+		} else if (child.actualAge >= 18) {
+			r += `Eighteen.`;
+		} else {
+			r += `Underage.`;
+		}
+		r += " ";
+		/*
+		 ** No NCS, then do the standard, However because of the wrinkes of Incubators, as long as visual age is greater
+		 ** than or equal to physical age, we do the old physical body/Looks for fresh out of the can NCS childs.
+		 */
+		if (((child.geneMods.NCS === 0) || (child.visualAge >= child.physicalAge))) {
+			if (child.actualAge !== child.physicalAge) {
+				r += `${child.physicalAge}` + ` year old body. `;
+			}
+			if (child.visualAge !== child.physicalAge) {
+				r += `Looks ` + `${child.visualAge}` + `. `;
+			}
+		} else {
+			/*
+			 ** Now the rub. The use of physical Age for the year old body above, basically conflicts with the changes
+			 ** that NCS introduces, so here to *distinguish* the changes, we use visual age with the 'year old body'
+			 ** and appears, for exampChild release from incubator at age 10, Her summary would show, 'Age 0. 10
+			 ** year old body.' But if she's given NCS a few weeks after release, while she's still before her first
+			 ** birthday, it'll appear the same. But once her birthday fires, if we ran with the above code it would
+			 ** say: 'Age 1. 11 year old body.' -- this conflicts with the way NCS works though, because she hasn't
+			 ** visually aged, so our change here makes it say 'Age 1. Appears to have a 10 year old body.'
+			 */
+			r += `Appears to have a ` + `${child.visualAge}` + ` year old body. `;
+		}
+		if (child.geneMods.NCS === 1) {
+			r += `(<span class="orange">NCS</span>) `;
+		}
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longFace(child) {
+		if (child.face < -95) {
+			r += `<span class="red">Very ugly${V.summaryStats? `[${child.face}]`: ''}</span>`;
+		} else if (child.face < -40) {
+			r += `<span class="red">Ugly${V.summaryStats? `[${child.face}]`: ''}</span>`;
+		} else if (child.face < -10) {
+			r += `<span class="red">Unattractive${V.summaryStats? `[${child.face}]`: ''}</span>`;
+		} else if (child.face <= 10) {
+			r += `Average${V.summaryStats? `[${child.face}]`: ''}`;
+		} else if (child.face <= 40) {
+			r += `<span class="pink">Attractive${V.summaryStats? `[${child.face}]`: ''}</span>`;
+		} else if (child.face <= 95) {
+			r += `<span class="pink">Beautiful${V.summaryStats? `[${child.face}]`: ''}</span>`;
+		} else {
+			r += `<span class="pink">Very beautiful${V.summaryStats? `[${child.face}]`: ''}</span>`;
+		}
+		r += ` ${child.faceShape} face. `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longEyes(child) {
+		if (child.eyes <= -2) {
+			r += `<span class="red">Blind.</span>`;
+		} else if (((child.eyes === -1) && (child.eyewear !== "corrective glasses") && (child.eyewear !== "corrective contacts")) || (child.eyewear === "blurring glasses") || (child.eyewear === "blurring contacts")) {
+			r += `<span class="yellow">Nearsighted.</span>`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longEars(child) {
+		if (child.hears <= -2) {
+			r += `<span class="red">Deaf.</span>`;
+		} else if ((child.hears === -1) && (child.earwear !== "hearing aids")) {
+			r += `<span class="yellow">Hard of hearing.</span>`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longLips(child) {
+		if (child.lips > 95) {
+			r += `Facepussy${V.summaryStats? `[${child.lips}]`: ''}.`;
+		} else if (child.lips > 70) {
+			r += `Huge lips${V.summaryStats? `[${child.lips}]`: ''}.`;
+		} else if (child.lips > 40) {
+			r += `Big lips${V.summaryStats? `[${child.lips}]`: ''}.`;
+		} else if (child.lips > 20) {
+			r += `Pretty lips${V.summaryStats? `[${child.lips}]`: ''}.`;
+		} else if (child.lips > 10) {
+			r += `Normal lips${V.summaryStats? `[${child.lips}]`: ''}.`;
+		} else {
+			r += `<span class="red">Thin lips${V.summaryStats? `[${child.lips}]`: ''}.</span>`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longTeeth(child) {
+		if (child.teeth === "crooked") {
+			r += `<span class="yellow">Crooked teeth.</span>`;
+		} else if (child.teeth === "gapped") {
+			r += `<span class="yellow">Tooth gap.</span>`;
+		} else if (child.teeth === "cosmetic braces") {
+			r += `Cosmetic braces.`;
+		} else if (child.teeth === "straightening braces") {
+			r += `Braces.`;
+		} else if (child.teeth === "removable") {
+			r += `Removable teeth.`;
+		} else if (child.teeth === "pointy") {
+			r += `Sharp fangs.`;
+		} else if (child.teeth === "baby") {
+			r += `Baby teeth.`;
+		} else if (child.teeth === "mixed") {
+			r += `Mixed teeth.`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longMuscles(child) {
+		if (child.muscles > 95) {
+			r += `Hugely muscular${V.summaryStats? `[${child.muscles}]` : ''}.`;
+		} else if (child.muscles > 50) {
+			r += `Muscular${V.summaryStats? `[${child.muscles}]`: ''}.`;
+		} else if (child.muscles > 5) {
+			r += `Fit${V.summaryStats? `[${child.muscles}]`: ''}.`;
+		} else if (child.muscles > -6) {
+			r += `Soft${V.summaryStats? `[${child.muscles}]`: ''}.`;
+		} else if (child.muscles > -31) {
+			if (V.arcologies[0].FSPhysicalIdealist === "unset") {
+				r += `<span class="red">Weak${V.summaryStats? `[${child.muscles}]`: ''}.</span>`;
+			} else {
+				r += `Weak${V.summaryStats? `[${child.muscles}]`: ''}.`;
+			}
+		} else if (child.muscles > -96) {
+			if (V.arcologies[0].FSPhysicalIdealist === "unset") {
+				r += `<span class="red">Very weak${V.summaryStats? `[${child.muscles}]`: ''}.</span>`;
+			} else {
+				r += `Very weak${V.summaryStats? `[${child.muscles}]`: ''}.`;
+			}
+		} else {
+			r += `<span class="red">Frail${V.summaryStats? `[${child.muscles}]`: ''}.</span>`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longLimbs(child) {
+		if (child.amp !== 0) {
+			if (child.amp === -1) {
+				r += `Prosthetic limbs.`;
+			} else if (child.amp === -2) {
+				r += `Sexy prosthetic limbs.`;
+			} else if (child.amp === -3) {
+				r += `Beautiful prosthetic limbs.`;
+			} else if (child.amp === -4) {
+				r += `Deadly prosthetic limbs.`;
+			} else if (child.amp === -5) {
+				r += `Cyber prosthetic limbs.`;
+			} else {
+				r += `Amputee.`;
+			}
+		}
+		r += " ";
+		if (!canWalk(child)) {
+			r += `Immobile. `;
+		}
+		if (child.heels === 1) {
+			r += `Heeled. `;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longVoice(child) {
+		if (child.voice === 0) {
+			r += `<span class="red">Mute.</span>`;
+		} else {
+			if (child.accent === 3) {
+				r += `<span class="red">Bad accent.</span>`;
+			} else if (child.accent === 4) {
+				r += `<span class="red">No language skills.</span>`;
+			} else if (child.accent === 2) {
+				r += `Accent.`;
+			} else if (child.accent === 1) {
+				r += `<span class="pink">Cute accent.</span>`;
+			}
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longTitsAss(child) {
+		r += `<span class="pink">`;
+		if ((child.boobs >= 12000) && (child.butt > 9)) {
+			r += `Hyper T&A.`;
+		} else if ((child.boobs > 4000) && (child.butt > 8)) {
+			r += `Enormous T&A.`;
+		} else if ((child.boobs > 2000) && (child.butt > 6)) {
+			r += `Huge T&A.`;
+		} else if ((child.boobs > 800) && (child.butt > 4)) {
+			r += `Big T&A.`;
+		} else if ((child.boobs < 500) && (child.butt < 3) && (child.weight <= 10) && (child.muscles <= 30)) {
+			r += `Girlish figure.`;
+		} else if (child.boobs >= 12000) {
+			r += `Immobilizing tits.`;
+		} else if (child.boobs > 4000) {
+			r += `Monstrous tits.`;
+		} else if (child.boobs > 2000) {
+			r += `Huge tits.`;
+		} else if (child.boobs > 800) {
+			r += `Big tits.`;
+		} else if (child.butt > 9) {
+			r += `Hyper ass.`;
+		} else if (child.butt > 8) {
+			r += `Titanic ass.`;
+		} else if (child.butt > 6) {
+			r += `Huge ass.`;
+		} else if (child.butt > 4) {
+			r += `Big ass.`;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longHips(child) {
+		r += `<span class="red">`;
+		if (child.hips < -1) {
+			if (child.butt > 2 && (V.arcologies[0].FSTransformationFetishist < 20 || V.arcologies[0].FSTransformationFetishist === "unset") && (V.arcologies[0].FSHedonisticDecadence < 20 || V.arcologies[0].FSHedonisticDecadence === "unset") && (V.arcologies[0].FSAssetExpansionist < 20 || V.arcologies[0].FSAssetExpansionist === "unset")) {
+				r += `Disproportionately big butt.`;
+			}
+		} else if (child.hips < 0) {
+			if (child.butt > 4 && (V.arcologies[0].FSTransformationFetishist < 20 || V.arcologies[0].FSTransformationFetishist === "unset") && (V.arcologies[0].FSHedonisticDecadence < 20 || V.arcologies[0].FSHedonisticDecadence === "unset") && (V.arcologies[0].FSAssetExpansionist < 20 || V.arcologies[0].FSAssetExpansionist === "unset")) {
+				r += `Disproportionately big butt.`;
+			}
+		} else if (child.hips > 2) {
+			if (child.butt <= 8) {
+				r += `Disproportionately small butt.`;
+			}
+		} else if (child.hips > 1) {
+			if (child.butt <= 3 && ((V.arcologies[0].FSSlimnessEnthusiast === "unset") || (child.boobs >= 500))) {
+				r += `Disproportionately small butt.`;
+			}
+		} else if (child.hips > 0) {
+			if (child.butt > 8) {
+				if ((V.arcologies[0].FSTransformationFetishist < 20 || V.arcologies[0].FSTransformationFetishist === "unset") && (V.arcologies[0].FSHedonisticDecadence < 20 || V.arcologies[0].FSHedonisticDecadence === "unset") && (V.arcologies[0].FSAssetExpansionist < 20 || V.arcologies[0].FSAssetExpansionist === "unset")) {
+					r += `Disproportionately big butt.`;
+				}
+			} else if (child.butt <= 2 && ((V.arcologies[0].FSSlimnessEnthusiast === "unset") || (child.boobs >= 500))) {
+				r += `Disproportionately small butt.`;
+			}
+		} else {
+			if (child.butt > 6) {
+				if ((V.arcologies[0].FSTransformationFetishist < 20 || V.arcologies[0].FSTransformationFetishist === "unset") && (V.arcologies[0].FSHedonisticDecadence < 20 || V.arcologies[0].FSHedonisticDecadence === "unset") && (V.arcologies[0].FSAssetExpansionist < 20 || V.arcologies[0].FSAssetExpansionist === "unset")) {
+					r += `Disproportionately big butt.`;
+				}
+			} else if (child.butt <= 1 && ((V.arcologies[0].FSSlimnessEnthusiast === "unset") || (child.boobs >= 500))) {
+				r += `Disproportionately small butt.`;
+			}
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longWaist(child) {
+		if (child.waist > 95) {
+			r += `<span class="red">Masculine waist${V.summaryStats? `[${child.waist}]`: ''}.</span>`;
+		} else if (child.waist > 40) {
+			r += `<span class="red">Ugly waist${V.summaryStats? `[${child.waist}]`: ''}.</span>`;
+		} else if (child.waist > 10) {
+			r += `<span class="red">Unattractive waist${V.summaryStats? `[${child.waist}]`: ''}.</span>`;
+		} else if (child.waist >= -10) {
+			r += `Average waist${V.summaryStats? `[${child.waist}]`: ''}.`;
+		} else if (child.waist >= -40) {
+			r += `<span class="pink">Feminine waist${V.summaryStats? `[${child.waist}]`: ''}.</span>`;
+		} else if (child.waist >= -95) {
+			r += `<span class="pink">Hourglass waist${V.summaryStats? `[${child.waist}]`: ''}.</span>`;
+		} else {
+			r += `<span class="pink">Absurdly narrow waist${V.summaryStats? `[${child.waist}]`: ''}.</span>`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longImplants(child) {
+		r += `<span class="pink">`;
+		if ((child.boobsImplant !== 0) || (child.buttImplant !== 0) || (child.lipsImplant !== 0) || (child.bellyImplant !== -1)) {
+			r += `Implants.`;
+		} else if ((child.faceImplant >= 30) || (child.waist < -95)) {
+			r += `Surgery enhanced.`;
+		} else {
+			r += `All natural.`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longLactation(child) {
+		if (child.lactation === 1) {
+			r += `Lactating naturally.`;
+		} else if (child.lactation === 2) {
+			r += `Heavy lactation.`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longMods(child) {
+		V.modScorChildStatsChecker.modScore(child);
+		if (child.corsetPiercing === 0 && V.piercingScore < 3 && V.tatScore < 2) {
+			return;
+		} else if (V.modScore > 15 || (V.piercingScore > 8 && V.tatScore > 5)) {
+			r += `Extensive body mods.`;
+		} else if (V.modScore > 7) {
+			r += `Noticeable body mods.`;
+		} else {
+			r += `Light body mods.`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortIntelligence(child) {
+		const intelligence = child.intelligence + child.intelligenceImplant;
+		if (child.fetish === "mindbroken") {
+			return;
+		} else if (child.intelligenceImplant >= 30) {
+			if (intelligence >= 130) {
+				r += `<span class="deepskyblue">I++++(e+)${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			} else if (intelligence > 95) {
+				r += `<span class="deepskyblue">I+++(e+)${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			} else if (intelligence > 50) {
+				r += `<span class="deepskyblue">I++(e+)${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			} else if (intelligence > 15) {
+				r += `<span class="deepskyblue">I+(e+)${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			} else if (intelligence >= -15) {
+				r += `I(e+)${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}`;
+			} else if (intelligence >= -50) {
+				r += `<span class="orangered">I-(e+)${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			} else if (intelligence >= -95) {
+				r += `<span class="orangered">I--(e+)${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			} else {
+				r += `<span class="orangered">I---(e+)${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			}
+		} else if (child.intelligenceImplant >= 15) {
+			if (intelligence > 95) {
+				r += `<span class="deepskyblue">I+++(e)${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			} else if (intelligence > 50) {
+				r += `<span class="deepskyblue">I++(e)${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			} else if (intelligence > 15) {
+				r += `<span class="deepskyblue">I+(e)${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			} else if (intelligence >= -15) {
+				r += `I(e)${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}`;
+			} else if (intelligence >= -50) {
+				r += `<span class="orangered">I-(e)${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			} else if (intelligence >= -95) {
+				r += `<span class="orangered">I--(e)${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			} else {
+				r += `<span class="orangered">I---(e)${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			}
+		} else {
+			if (intelligence > 95) {
+				r += `<span class="deepskyblue">I+++${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			} else if (intelligence > 50) {
+				r += `<span class="deepskyblue">I++${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			} else if (intelligence > 15) {
+				r += `<span class="deepskyblue">I+${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			} else if (intelligence >= -15) {
+				r += `I${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}`;
+			} else if (intelligence >= -50) {
+				r += `<span class="orangered">I-${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			} else if (intelligence >= -95) {
+				r += `<span class="orangered">I--${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			} else {
+				r += `<span class="orangered">I---${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}</span>`;
+			}
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortSexSkills(child) {
+		let SSkills = child.skill.anal + child.skill.oral;
+		r += `<span class="aquamarine">`;
+		if (((SSkills + child.skill.whoring + child.skill.entertainment) >= 400) && ((child.vagina < 0) || (child.skill.vaginal >= 100))) {
+			r += `MSS`;
+		} else {
+			SSkills += child.skill.vaginal;
+			SSkills = Math.trunc(SSkills);
+			if (SSkills > 180) {
+				r += `S++`;
+			} else if ((SSkills > 120) && (child.vagina < 0)) {
+				r += `Sh++`;
+			} else if (SSkills > 90) {
+				r += `S+`;
+			} else if (SSkills > 30) {
+				r += `S`;
+			} else {
+				r += `S-`;
+			}
+			if (V.summaryStats) {
+				r += `[${SSkills}] `;
+			}
+			r += " ";
+			if (child.skill.whoring >= 100) {
+				r += `W+++`;
+			} else if (child.skill.whoring > 60) {
+				r += `W++`;
+			} else if (child.skill.whoring > 30) {
+				r += `W+`;
+			} else if (child.skill.whoring > 10) {
+				r += `W`;
+			}
+			if (child.skill.whoring > 10) {
+				if (V.summaryStats) {
+					r += `[${child.skill.whoring}] `;
+				}
+			}
+			r += " ";
+			if (child.skill.entertainment >= 100) {
+				r += `E+++`;
+			} else if (child.skill.entertainment > 60) {
+				r += `E++`;
+			} else if (child.skill.entertainment > 30) {
+				r += `E+`;
+			} else if (child.skill.entertainment > 10) {
+				r += `E`;
+			}
+			if (child.skill.entertainment > 10) {
+				if (V.summaryStats) {
+					r += `[${child.skill.entertainment}] `;
+				}
+			}
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortPrestige(child) {
+		if (child.prestige > 0) {
+			r += `<span class="green">`;
+			if (child.prestige > 2) {
+				r += `Prest++`;
+			} else if (child.prestige === 2) {
+				r += `Prest+`;
+			} else if (child.prestige === 1) {
+				r += `Prest`;
+			}
+			r += `</span> `;
+		}
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortPornPrestige(child) {
+		if (child.pornPrestige > 0) {
+			r += `<span class="green">`;
+			if (child.pornPrestige > 2) {
+				r += `PPrest++`;
+			} else if (child.pornPrestige === 2) {
+				r += `PPrest+`;
+			} else if (child.pornPrestige === 1) {
+				r += `PPrest`;
+			}
+			r += `</span> `;
+		}
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longIntelligence(child) {
+		const intelligence = child.intelligence + child.intelligenceImplant;
+		if (child.fetish === "mindbroken") {
+			return;
+		} else if (child.intelligenceImplant >= 30) {
+			if (intelligence >= 130) {
+				r += `<span class="deepskyblue">Genius${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			} else if (intelligence > 95) {
+				r += `<span class="deepskyblue">Brilliant, well educated${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			} else if (intelligence > 50) {
+				r += `<span class="deepskyblue">Very smart, well educated${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			} else if (intelligence > 15) {
+				r += `<span class="deepskyblue">Smart, well educated${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			} else if (intelligence >= -15) {
+				r += `Average intelligence, well educated${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.`;
+			} else if (intelligence >= -50) {
+				r += `<span class="orangered">Slow, well educated${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			} else if (intelligence >= -95) {
+				r += `<span class="orangered">Very slow, well educated${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			} else {
+				r += `<span class="orangered">Moronic, well educated${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			}
+		} else if (child.intelligenceImplant >= 15) {
+			if (intelligence > 95) {
+				r += `<span class="deepskyblue">Brilliant, educated${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			} else if (intelligence > 50) {
+				r += `<span class="deepskyblue">Very smart, educated${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			} else if (intelligence > 15) {
+				r += `<span class="deepskyblue">Smart, educated${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			} else if (intelligence >= -15) {
+				r += `Average intelligence, educated${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.`;
+			} else if (intelligence >= -50) {
+				r += `<span class="orangered">Slow, educated${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			} else if (intelligence >= -95) {
+				r += `<span class="orangered">Very slow, educated${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			} else {
+				r += `<span class="orangered">Moronic, educated${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			}
+		} else {
+			if (intelligence > 95) {
+				r += `<span class="deepskyblue">Brilliant${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			} else if (intelligence > 50) {
+				r += `<span class="deepskyblue">Very smart${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			} else if (intelligence > 15) {
+				r += `<span class="deepskyblue">Smart${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			} else if (intelligence >= -15) {
+				r += `Average intelligence${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.`;
+			} else if (intelligence >= -50) {
+				r += `<span class="orangered">Slow${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			} else if (intelligence >= -95) {
+				r += `<span class="orangered">Very slow${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			} else {
+				r += `<span class="orangered">Moronic${V.summaryStats ? `[${child.intelligence+child.intelligenceImplant}]` : ''}.</span>`;
+			}
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longSexSkills(child) {
+		let SSkills = (child.skill.anal + child.skill.oral);
+		r += `<span class="aquamarine">`;
+		if (((SSkills + child.skill.whoring + child.skill.entertainment) >= 400) && ((child.vagina < 0) || (child.skill.vaginal >= 100))) {
+			r += `Masterful Child. `;
+		} else {
+			SSkills += child.skill.vaginal;
+			if (SSkills > 180) {
+				r += `Sex master${V.summaryStats? `[${Math.trunc(SSkills)}]`: ''}.`;
+			} else if ((SSkills > 120) && (child.vagina < 0)) {
+				r += `Masterful shemale${V.summaryStats? `[${Math.trunc(SSkills)}]`: ''}.`;
+			} else if (SSkills > 90) {
+				r += `Sexual expert${V.summaryStats? `[${Math.trunc(SSkills)}]`: ''}.`;
+			} else if (SSkills > 30) {
+				r += `Sexually skilled${V.summaryStats? `[${Math.trunc(SSkills)}]` : ''}.`;
+			} else {
+				r += `Sexually unskilled${V.summaryStats? `[${Math.trunc(SSkills)}]` : ''}.`;
+			}
+			r += " ";
+			if (child.skill.whoring >= 100) {
+				r += `Masterful whore${V.summaryStats? `[${child.skill.whoring}]`: ''}.`;
+			} else if (child.skill.whoring >= 60) {
+				r += `Expert whore${V.summaryStats? `[${child.skill.whoring}]`: ''}.`;
+			} else if (child.skill.whoring >= 30) {
+				r += `Skilled whore${V.summaryStats? `[${child.skill.whoring}]`: ''}.`;
+			} else if (child.skill.whoring >= 10) {
+				r += `Basic whore${V.summaryStats? `[${child.skill.whoring}]`: ''}.`;
+			}
+			r += " ";
+			if (child.skill.entertainment >= 100) {
+				r += `Masterful entertainer${V.summaryStats? `[${child.skill.entertainment}]`: ''}.`;
+			} else if (child.skill.entertainment >= 60) {
+				r += `Expert entertainer${V.summaryStats? `[${child.skill.entertainment}]`: ''}.`;
+			} else if (child.skill.entertainment >= 30) {
+				r += `Skilled entertainer${V.summaryStats? `[${child.skill.entertainment}]`: ''}.`;
+			} else if (child.skill.entertainment >= 10) {
+				r += `Basic entertainer${V.summaryStats? `[${child.skill.entertainment}]`: ''}.`;
+			}
+			r += " ";
+		}
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longPrestige(child) {
+		if (child.prestige > 0) {
+			r += `<span class="green">`;
+			if (child.prestige > 2) {
+				r += `Extremely prestigious.`;
+			} else if (child.prestige === 2) {
+				r += `Very prestigious.`;
+			} else if (child.prestige === 1) {
+				r += `Prestigious.`;
+			}
+			r += `</span> `;
+		}
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longPornPrestige(child) {
+		if (child.pornPrestige > 0) {
+			r += `<span class="green">`;
+			if (child.pornPrestige > 2) {
+				r += `Porn star.`;
+			} else if (child.pornPrestige === 2) {
+				r += `Porn slut.`;
+			} else if (child.pornPrestige === 1) {
+				r += `Porn amateur.`;
+			}
+			r += `</span> `;
+		}
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortFetish(child) {
+		r += `<span class="lightcoral">`;
+		switch (child.fetish) {
+			case "submissive":
+				if (child.fetishStrength > 95) {
+					r += `Sub++`;
+				} else if (child.fetishStrength > 60) {
+					r += `Sub+`;
+				} else {
+					r += `Sub`;
+				}
+				break;
+			case "cumslut":
+				if (child.fetishStrength > 95) {
+					r += `Oral++`;
+				} else if (child.fetishStrength > 60) {
+					r += `Oral+`;
+				} else {
+					r += `Oral`;
+				}
+				break;
+			case "humiliation":
+				if (child.fetishStrength > 95) {
+					r += `Humil++`;
+				} else if (child.fetishStrength > 60) {
+					r += `Humil+`;
+				} else {
+					r += `Humil`;
+				}
+				break;
+			case "buttslut":
+				if (child.fetishStrength > 95) {
+					r += `Anal++`;
+				} else if (child.fetishStrength > 60) {
+					r += `Anal+`;
+				} else {
+					r += `Anal`;
+				}
+				break;
+			case "boobs":
+				if (child.fetishStrength > 95) {
+					r += `Boobs++`;
+				} else if (child.fetishStrength > 60) {
+					r += `Boobs+`;
+				} else {
+					r += `Boobs`;
+				}
+				break;
+			case "sadist":
+				if (child.fetishStrength > 95) {
+					r += `Sadist++`;
+				} else if (child.fetishStrength > 60) {
+					r += `Sadist+`;
+				} else {
+					r += `Sadist`;
+				}
+				break;
+			case "masochist":
+				if (child.fetishStrength > 95) {
+					r += `Pain++`;
+				} else if (child.fetishStrength > 60) {
+					r += `Pain+`;
+				} else {
+					r += `Pain`;
+				}
+				break;
+			case "dom":
+				if (child.fetishStrength > 95) {
+					r += `Dom++`;
+				} else if (child.fetishStrength > 60) {
+					r += `Dom+`;
+				} else {
+					r += `Dom`;
+				}
+				break;
+			case "pregnancy":
+				if (child.fetishStrength > 95) {
+					r += `Preg++`;
+				} else if (child.fetishStrength > 60) {
+					r += `Preg+`;
+				} else {
+					r += `Preg`;
+				}
+				break;
+			default:
+				r += `Vanilla`;
+				break;
+		}
+		if (V.summaryStats) {
+			r += `[${child.fetishStrength}]`;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortAttraction(child) {
+		if (child.attrXY <= 5) {
+			r += `<span class="red">XY---${V.summaryStats? `[${child.attrXY}]`: ''}</span>`;
+		} else if (child.attrXY <= 15) {
+			r += `<span class="red">XY--${V.summaryStats? `[${child.attrXY}]`: ''}</span>`;
+		} else if (child.attrXY <= 35) {
+			r += `<span class="red">XY-${V.summaryStats? `[${child.attrXY}]`: ''}</span>`;
+		} else if (child.attrXY <= 65) {
+			r += `XY${V.summaryStats? `[${child.attrXY}]`: ''}`;
+		} else if (child.attrXY <= 85) {
+			r += `<span class="green">XY+${V.summaryStats? `[${child.attrXY}]`: ''}</span>`;
+		} else if (child.attrXY <= 95) {
+			r += `<span class="green">XY++${V.summaryStats? `[${child.attrXY}]`: ''}</span>`;
+		} else if (child.attrXX > 95) {
+			if (child.energy <= 95) {
+				r += `<span class="green">Omni!</span>`;
+			} else {
+				r += `<span class="green">Omni+Nympho!!</span>`;
+			}
+		} else {
+			r += `<span class="green">XY+++${V.summaryStats? `[${child.attrXY}]`: ''}</span>`;
+		}
+		r += " ";
+		if (child.attrXX <= 5) {
+			r += `<span class="red">XX---${V.summaryStats? `[${child.attrXX}]`: ''}</span>`;
+		} else if (child.attrXX <= 15) {
+			r += `<span class="red">XX--${V.summaryStats? `[${child.attrXX}]`: ''}</span>`;
+		} else if (child.attrXX <= 35) {
+			r += `<span class="red">XX-${V.summaryStats? `[${child.attrXX}]`: ''}</span>`;
+		} else if (child.attrXX <= 65) {
+			r += `XX${V.summaryStats? `[${child.attrXX}]`: ''}`;
+		} else if (child.attrXX <= 85) {
+			r += `<span class="green">XX+${V.summaryStats? `[${child.attrXX}]`: ''}</span>`;
+		} else if (child.attrXX <= 95) {
+			r += `<span class="green">XX++${V.summaryStats? `[${child.attrXX}]`: ''}</span>`;
+		} else if (child.attrXY <= 95) {
+			r += `<span class="green">XX+++${V.summaryStats? `[${child.attrXX}]`: ''}</span>`;
+		}
+		r += " ";
+		if (child.energy > 95) {
+			if ((child.attrXY <= 95) || (child.attrXX <= 95)) {
+				r += `<span class="green">Nympho!</span>`;
+			}
+		} else if (child.energy > 80) {
+			r += `<span class="green">SD++${V.summaryStats? `[${child.energy}]`: ''}</span>`;
+		} else if (child.energy > 60) {
+			r += `<span class="green">SD+${V.summaryStats? `[${child.energy}]`: ''}</span>`;
+		} else if (child.energy > 40) {
+			r += `<span class="yellow">SD${V.summaryStats? `[${child.energy}]`: ''}</span>`;
+		} else if (child.energy > 20) {
+			r += `<span class="red">SD-${V.summaryStats? `[${child.energy}]`: ''}</span>`;
+		} else {
+			r += `<span class="red">SD--${V.summaryStats? `[${child.energy}]`: ''}</span>`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortSmartFetish(child) {
+		if (child.fetishKnown === 1) {
+			if (child.clitSetting === "off") {
+				r += `SP-`;
+			} else if (((child.fetish !== "submissive") || (child.fetishStrength <= 95)) && (child.clitSetting === "submissive")) {
+				r += `SP:sub`;
+			} else if (((child.fetish !== "cumslut") || (child.fetishStrength <= 95)) && (child.clitSetting === "oral")) {
+				r += `SP:oral`;
+			} else if (((child.fetish !== "humiliation") || (child.fetishStrength <= 95)) && (child.clitSetting === "humiliation")) {
+				r += `SP:humil`;
+			} else if (((child.fetish !== "buttslut") || (child.fetishStrength <= 95)) && (child.clitSetting === "anal")) {
+				r += `SP:anal`;
+			} else if (((child.fetish !== "boobs") || (child.fetishStrength <= 95)) && (child.clitSetting === "boobs")) {
+				r += `SP:boobs`;
+			} else if (((child.fetish !== "sadist") || (child.fetishStrength <= 95)) && (child.clitSetting === "sadist")) {
+				r += `SP:sade`;
+			} else if (((child.fetish !== "masochist") || (child.fetishStrength <= 95)) && (child.clitSetting === "masochist")) {
+				r += `SP:pain`;
+			} else if (((child.fetish !== "dom") || (child.fetishStrength <= 95)) && (child.clitSetting === "dom")) {
+				r += `SP:dom`;
+			} else if (((child.fetish !== "pregnancy") || (child.fetishStrength <= 95)) && (child.clitSetting === "pregnancy")) {
+				r += `SP:preg`;
+			} else if (((child.fetish !== "none") && (child.clitSetting === "vanilla"))) {
+				r += `SP:vanilla`;
+			} else if ((child.energy <= 95) && (child.clitSetting === "all")) {
+				r += `SP:all`;
+			} else if ((child.energy > 5) && (child.clitSetting === "none")) {
+				r += `SP:none`;
+			} else if (!["women", "men", "anti-women", "anti-men"].includes(child.clitSetting)) {
+				r += `SP:monitoring`;
+			}
+		} else {
+			switch (child.clitSetting) {
+				case "off":
+					r += `SP-`;
+					break;
+				case "submissive":
+					r += `SP:sub`;
+					break;
+				case "lesbian":
+					r += `SP:les`;
+					break;
+				case "oral":
+					r += `SP:oral`;
+					break;
+				case "humiliation":
+					r += `SP:humil`;
+					break;
+				case "anal":
+					r += `SP:anal`;
+					break;
+				case "boobs":
+					r += `SP:boobs`;
+					break;
+				case "sadist":
+					r += `SP:sade`;
+					break;
+				case "masochist":
+					r += `SP:pain`;
+					break;
+				case "dom":
+					r += `SP:dom`;
+					break;
+				case "pregnancy":
+					r += `SP:pregnancy`;
+					break;
+				case "vanilla":
+					r += `SP:vanilla`;
+					break;
+				case "all":
+					r += `SP:all`;
+					break;
+				case "none":
+					r += `SP:none`;
+					break;
+			}
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortSmartAttraction(child) {
+		if (child.attrKnown === 1) {
+			if (child.clitSetting === "women") {
+				if (child.attrXX < 95) {
+					r += `SP:women`;
+				} else {
+					r += `SP:monitoring`;
+				}
+			} else if (child.clitSetting === "men") {
+				if (child.attrXY < 95) {
+					r += `SP:men`;
+				} else {
+					r += `SP:monitoring`;
+				}
+			} else if (child.clitSetting === "anti-women") {
+				if (child.attrXX > 0) {
+					r += `SP:anti-women`;
+				} else {
+					r += `SP:monitoring`;
+				}
+			} else if (child.clitSetting === "anti-men") {
+				if (child.attrXY > 0) {
+					r += `SP:anti-men`;
+				} else {
+					r += `SP:monitoring`;
+				}
+			}
+		} else {
+			if (child.clitSetting === "women") {
+				r += `SP:women`;
+			} else if (child.clitSetting === "men") {
+				r += `SP:men`;
+			} else if (child.clitSetting === "anti-women") {
+				r += `SP:anti-women`;
+			} else if (child.clitSetting === "anti-men") {
+				r += `SP:anti-men`;
+			}
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortBehaviorFlaw(child) {
+		r += `<span class="red">`;
+		switch (child.behavioralFlaw) {
+			case "arrogant":
+				r += `Arrog`;
+				break;
+			case "bitchy":
+				r += `Bitchy`;
+				break;
+			case "odd":
+				r += `Odd`;
+				break;
+			case "hates men":
+				r += `Men-`;
+				break;
+			case "hates women":
+				r += `Women-`;
+				break;
+			case "gluttonous":
+				r += `Glut`;
+				break;
+			case "anorexic":
+				r += `Ano`;
+				break;
+			case "devout":
+				r += `Dev`;
+				break;
+			case "liberated":
+				r += `Lib`;
+				break;
+			default:
+				child.behavioralFlaw = "none";
+				break;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortSexFlaw(child) {
+		switch (child.sexualFlaw) {
+			case "hates oral":
+				r += `<span class="red">Oral-</span>`;
+				break;
+			case "hates anal":
+				r += `<span class="red">Anal-</span>`;
+				break;
+			case "hates penetration":
+				r += `<span class="red">Fuck-</span>`;
+				break;
+			case "shamefast":
+				r += `<span class="red">Shame</span>`;
+				break;
+			case "idealistic":
+				r += `<span class="red">Ideal</span>`;
+				break;
+			case "repressed":
+				r += `<span class="red">Repre</span>`;
+				break;
+			case "apathetic":
+				r += `<span class="red">Apath</span>`;
+				break;
+			case "crude":
+				r += `<span class="red">Crude</span>`;
+				break;
+			case "judgemental":
+				r += `<span class="red">Judge</span>`;
+				break;
+			case "cum addict":
+				r += `<span class="yellow">CumAdd</span>`;
+				break;
+			case "anal addict":
+				r += `<span class="yellow">AnalAdd</span>`;
+				break;
+			case "attention whore":
+				r += `<span class="yellow">Attention</span>`;
+				break;
+			case "breast growth":
+				r += `<span class="yellow">BoobObsess</span>`;
+				break;
+			case "abusive":
+				r += `<span class="yellow">Abusive</span>`;
+				break;
+			case "malicious":
+				r += `<span class="yellow">Malice</span>`;
+				break;
+			case "self hating":
+				r += `<span class="yellow">SelfHatr</span>`;
+				break;
+			case "neglectful":
+				r += `<span class="yellow">SelfNeglect</span>`;
+				break;
+			case "breeder":
+				r += `<span class="yellow">BreedObsess</span>`;
+				break;
+			default:
+				child.sexualFlaw = "none";
+				break;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortBehaviorQuirk(child) {
+		r += `<span class="green">`;
+		switch (child.behavioralQuirk) {
+			case "confident":
+				r += `Confid`;
+				break;
+			case "cutting":
+				r += `Cutting`;
+				break;
+			case "funny":
+				r += `Funny`;
+				break;
+			case "fitness":
+				r += `Fit`;
+				break;
+			case "adores women":
+				r += `Women+`;
+				break;
+			case "adores men":
+				r += `Men+`;
+				break;
+			case "insecure":
+				r += `Insec`;
+				break;
+			case "sinful":
+				r += `Sinf`;
+				break;
+			case "advocate":
+				r += `Advoc`;
+				break;
+			default:
+				child.behavioralQuirk = "none";
+				break;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function shortSexQuirk(child) {
+		switch (child.sexualQuirk) {
+			case "gagfuck queen":
+				r += `Gagfuck`;
+				break;
+			case "painal queen":
+				r += `Painal`;
+				break;
+			case "strugglefuck queen":
+				r += `Struggle`;
+				break;
+			case "tease":
+				r += `Tease`;
+				break;
+			case "romantic":
+				r += `Romantic`;
+				break;
+			case "perverted":
+				r += `Perverted`;
+				break;
+			case "caring":
+				r += `Caring`;
+				break;
+			case "unflinching":
+				r += `Unflinch`;
+				break;
+			case "size queen":
+				r += `SizeQ`;
+				break;
+			default:
+				child.sexualQuirk = "none";
+				break;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.EntChildState} child
+	 */
+	function longFetish(child) {
+		r += `<span class="lightcoral">`;
+		switch (child.fetish) {
+			case "submissive":
+				if (child.fetishStrength > 95) {
+					r += `Complete submissive${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else if (child.fetishStrength > 60) {
+					r += `Submissive${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else {
+					r += `Submissive tendencies${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				}
+				break;
+			case "cumslut":
+				if (child.fetishStrength > 95) {
+					r += `Cumslut${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else if (child.fetishStrength > 60) {
+					r += `Oral fixation${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else {
+					r += `Prefers oral${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				}
+				break;
+			case "humiliation":
+				if (child.fetishStrength > 95) {
+					r += `Humiliation slut${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else if (child.fetishStrength > 60) {
+					r += `Exhibitionist${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else {
+					r += `Interest in humiliation${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				}
+				break;
+			case "buttslut":
+				if (child.fetishStrength > 95) {
+					r += `Buttslut${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else if (child.fetishStrength > 60) {
+					r += `Anal fixation${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else {
+					r += `Prefers anal${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				}
+				break;
+			case "boobs":
+				if (child.fetishStrength > 95) {
+					r += `Boobslut${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else if (child.fetishStrength > 60) {
+					r += `Breast fixation${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else {
+					r += `Loves boobs${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				}
+				break;
+			case "sadist":
+				if (child.fetishStrength > 95) {
+					r += `Complete sadist${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else if (child.fetishStrength > 60) {
+					r += `Sadist${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else {
+					r += `Sadistic tendencies${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				}
+				break;
+			case "masochist":
+				if (child.fetishStrength > 95) {
+					r += `Complete masochist${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else if (child.fetishStrength > 60) {
+					r += `Masochist${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else {
+					r += `Masochistic tendencies${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				}
+				break;
+			case "dom":
+				if (child.fetishStrength > 95) {
+					r += `Complete dom${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else if (child.fetishStrength > 60) {
+					r += `Dominant${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else {
+					r += `Dominant tendencies${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				}
+				break;
+			case "pregnancy":
+				if (child.fetishStrength > 95) {
+					r += `Pregnancy fetish${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else if (child.fetishStrength > 60) {
+					r += `Pregnancy kink${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				} else {
+					r += `Interest in impregnation${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				}
+				break;
+			default:
+				r += `Sexually vanilla${V.summaryStats? `[${child.fetishStrength}]` : ''}.`;
+				break;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longAttraction(child) {
+		if (child.attrXY <= 5) {
+			r += `<span class="red">Disgusted by men${V.summaryStats? `[${child.attrXY}]` : ''},</span> `;
+		} else if (child.attrXY <= 15) {
+			r += `<span class="red">Turned off by men${V.summaryStats? `[${child.attrXY}]` : ''},</span> `;
+		} else if (child.attrXY <= 35) {
+			r += `<span class="red">Not attracted to men${V.summaryStats? `[${child.attrXY}]` : ''},</span> `;
+		} else if (child.attrXY <= 65) {
+			r += `Indifferent to men${V.summaryStats? `[${child.attrXY}]` : ''}, `;
+		} else if (child.attrXY <= 85) {
+			r += `<span class="green">Attracted to men${V.summaryStats? `[${child.attrXY}]` : ''},</span> `;
+		} else if (child.attrXY <= 95) {
+			r += `<span class="green">Aroused by men${V.summaryStats? `[${child.attrXY}]` : ''},</span> `;
+		} else if (child.attrXX > 95) {
+			if (child.energy <= 95) {
+				r += `<span class="green">Omnisexual!</span> `;
+			} else {
+				r += `<span class="green">Omnisexual nymphomaniac!</span> `;
+			}
+		} else {
+			r += `<span class="green">Passionate about men${V.summaryStats? `[${child.attrXY}]` : ''},</span> `;
+		}
+		if (child.attrXX <= 5) {
+			r += `<span class="red">disgusted by women${V.summaryStats? `[${child.attrXX}]` : ''}.</span> `;
+		} else if (child.attrXX <= 15) {
+			r += `<span class="red">turned off by women${V.summaryStats? `[${child.attrXX}]` : ''}.</span> `;
+		} else if (child.attrXX <= 35) {
+			r += `<span class="red">not attracted to women${V.summaryStats? `[${child.attrXX}]` : ''}.</span> `;
+		} else if (child.attrXX <= 65) {
+			r += `indifferent to women${V.summaryStats? `[${child.attrXX}]` : ''}. `;
+		} else if (child.attrXX <= 85) {
+			r += `<span class="green">attracted to women${V.summaryStats? `[${child.attrXX}]` : ''}.</span> `;
+		} else if (child.attrXX <= 95) {
+			r += `<span class="green">aroused by women${V.summaryStats? `[${child.attrXX}]` : ''}.</span> `;
+		} else if (child.attrXY <= 95) {
+			r += `<span class="green">passionate about women${V.summaryStats? `[${child.attrXX}]` : ''}.</span> `;
+		}
+		if (child.energy > 95) {
+			if ((child.attrXY <= 95) || (child.attrXX <= 95)) {
+				r += `<span class="green">Nymphomaniac!</span>`;
+			}
+		} else if (child.energy > 80) {
+			r += `<span class="green">Powerful sex drive${V.summaryStats? `[${child.energy}]` : ''}.</span>`;
+		} else if (child.energy > 60) {
+			r += `<span class="green">Good sex drive${V.summaryStats? `[${child.energy}]` : ''}.</span>`;
+		} else if (child.energy > 40) {
+			r += `<span class="yellow">Average sex drive${V.summaryStats? `[${child.energy}]` : ''}.</span>`;
+		} else if (child.energy > 20) {
+			r += `<span class="red">Poor sex drive${V.summaryStats? `[${child.energy}]` : ''}.</span>`;
+		} else {
+			r += `<span class="red">No sex drive${V.summaryStats? `[${child.energy}]` : ''}.</span>`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longSmartFetish(child) {
+		if (child.fetishKnown === 1) {
+			if (child.clitSetting === "off") {
+				r += `SP off.`;
+			} else if (((child.fetish !== "submissive") || (child.fetishStrength <= 95)) && (child.clitSetting === "submissive")) {
+				r += `SP: submissive.`;
+			} else if (((child.fetish !== "cumslut") || (child.fetishStrength <= 95)) && (child.clitSetting === "oral")) {
+				r += `SP: oral.`;
+			} else if (((child.fetish !== "humiliation") || (child.fetishStrength <= 95)) && (child.clitSetting === "humiliation")) {
+				r += `SP: humiliation.`;
+			} else if (((child.fetish !== "buttslut") || (child.fetishStrength <= 95)) && (child.clitSetting === "anal")) {
+				r += `SP: anal.`;
+			} else if (((child.fetish !== "boobs") || (child.fetishStrength <= 95)) && (child.clitSetting === "boobs")) {
+				r += `SP: breasts.`;
+			} else if (((child.fetish !== "sadist") || (child.fetishStrength <= 95)) && (child.clitSetting === "sadist")) {
+				r += `SP: sadism.`;
+			} else if (((child.fetish !== "masochist") || (child.fetishStrength <= 95)) && (child.clitSetting === "masochist")) {
+				r += `SP: masochism.`;
+			} else if (((child.fetish !== "dom") || (child.fetishStrength <= 95)) && (child.clitSetting === "dom")) {
+				r += `SP: dominance.`;
+			} else if (((child.fetish !== "pregnancy") || (child.fetishStrength <= 95)) && (child.clitSetting === "pregnancy")) {
+				r += `SP: pregnancy.`;
+			} else if ((child.fetish !== "none") && (child.clitSetting === "vanilla")) {
+				r += `SP: vanilla.`;
+			} else if ((child.energy <= 95) && (child.clitSetting === "all")) {
+				r += `SP: all.`;
+			} else if ((child.energy > 5) && (child.clitSetting === "none")) {
+				r += `SP: none.`;
+			} else if (!["women", "men", "anti-women", "anti-men"].includes(child.clitSetting)) {
+				r += `SP: monitoring.`;
+			}
+		} else {
+			switch (child.clitSetting) {
+				case "off":
+					r += `SP off.`;
+					break;
+				case "submissive":
+					r += `SP: submissive.`;
+					break;
+				case "oral":
+					r += `SP: oral.`;
+					break;
+				case "humiliation":
+					r += `SP: humiliation.`;
+					break;
+				case "anal":
+					r += `SP: anal.`;
+					break;
+				case "boobs":
+					r += `SP: breasts.`;
+					break;
+				case "sadist":
+					r += `SP: sadism.`;
+					break;
+				case "masochist":
+					r += `SP: masochism.`;
+					break;
+				case "dom":
+					r += `SP: dominance.`;
+					break;
+				case "pregnancy":
+					r += `SP: pregnancy.`;
+					break;
+				case "vanilla":
+					r += `SP: vanilla.`;
+					break;
+				case "all":
+					r += `SP: all.`;
+					break;
+				case "none":
+					r += `SP: none.`;
+					break;
+			}
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longSmartAttraction(child) {
+		if (child.attrKnown === 1) {
+			if ((child.attrXX < 100) && (child.clitSetting === "women")) {
+				r += `SP: women.`;
+			} else if ((child.attrXY < 100) && (child.clitSetting === "men")) {
+				r += `SP: men.`;
+			}
+		} else {
+			if (child.clitSetting === "women") {
+				r += `SP: women.`;
+			} else if (child.clitSetting === "men") {
+				r += `SP: men.`;
+			}
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longBehaviorFlaw(child) {
+		r += `<span class="red">`;
+		switch (child.behavioralFlaw) {
+			case "arrogant":
+				r += `Arrogant.`;
+				break;
+			case "bitchy":
+				r += `Bitchy.`;
+				break;
+			case "odd":
+				r += `Odd.`;
+				break;
+			case "hates men":
+				r += `Hates men.`;
+				break;
+			case "hates women":
+				r += `Hates women.`;
+				break;
+			case "gluttonous":
+				r += `Stress eater.`;
+				break;
+			case "anorexic":
+				r += `Anorexic.`;
+				break;
+			case "devout":
+				r += `Devoutly religious.`;
+				break;
+			case "liberated":
+				r += `Mentally liberated.`;
+				break;
+			default:
+				child.behavioralFlaw = "none";
+				break;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longSexFlaw(child) {
+		switch (child.sexualFlaw) {
+			case "hates oral":
+				r += `<span class="red">Hates oral.</span>`;
+				break;
+			case "hates anal":
+				r += `<span class="red">Hates anal.</span>`;
+				break;
+			case "hates penetration":
+				r += `<span class="red">Hates penetration.</span>`;
+				break;
+			case "shamefast":
+				r += `<span class="red">Shamefast.</span>`;
+				break;
+			case "idealistic":
+				r += `<span class="red">Sexually idealistic.</span>`;
+				break;
+			case "repressed":
+				r += `<span class="red">Sexually repressed.</span>`;
+				break;
+			case "apathetic":
+				r += `<span class="red">Sexually apathetic.</span>`;
+				break;
+			case "crude":
+				r += `<span class="red">Sexually crude.</span>`;
+				break;
+			case "judgemental":
+				r += `<span class="red">Sexually judgemental.</span>`;
+				break;
+			case "cum addict":
+				r += `<span class="yellow">Cum addict.</span>`;
+				break;
+			case "anal addict":
+				r += `<span class="yellow">Anal addict.</span>`;
+				break;
+			case "attention whore":
+				r += `<span class="yellow">Attention whore.</span>`;
+				break;
+			case "breast growth":
+				r += `<span class="yellow">Breast obsession.</span>`;
+				break;
+			case "abusive":
+				r += `<span class="yellow">Sexually abusive.</span>`;
+				break;
+			case "malicious":
+				r += `<span class="yellow">Sexually malicious.</span>`;
+				break;
+			case "self hating":
+				r += `<span class="yellow">Self hatred.</span>`;
+				break;
+			case "neglectful":
+				r += `<span class="yellow">Self neglectful.</span>`;
+				break;
+			case "breeder":
+				r += `<span class="yellow">Breeding obsession.</span>`;
+				break;
+			default:
+				child.sexualFlaw = "none";
+				break;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longBehaviorQuirk(child) {
+		r += `<span class="green">`;
+		switch (child.behavioralQuirk) {
+			case "confident":
+				r += `Confident.`;
+				break;
+			case "cutting":
+				r += `Cutting.`;
+				break;
+			case "funny":
+				r += `Funny.`;
+				break;
+			case "fitness":
+				r += `Fitness.`;
+				break;
+			case "adores women":
+				r += `Adores women.`;
+				break;
+			case "adores men":
+				r += `Adores men.`;
+				break;
+			case "insecure":
+				r += `Insecure.`;
+				break;
+			case "sinful":
+				r += `Sinful.`;
+				break;
+			case "advocate":
+				r += `Advocate.`;
+				break;
+			default:
+				child.behavioralQuirk = "none";
+				break;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longSexQuirk(child) {
+		switch (child.sexualQuirk) {
+			case "gagfuck queen":
+				r += `Gagfuck queen.`;
+				break;
+			case "painal queen":
+				r += `Painal queen.`;
+				break;
+			case "strugglefuck queen":
+				r += `Strugglefuck queen.`;
+				break;
+			case "tease":
+				r += `Tease.`;
+				break;
+			case "romantic":
+				r += `Romantic.`;
+				break;
+			case "perverted":
+				r += `Perverted.`;
+				break;
+			case "caring":
+				r += `Caring.`;
+				break;
+			case "unflinching":
+				r += `Unflinching.`;
+				break;
+			case "size queen":
+				r += `Size queen.`;
+				break;
+			default:
+				child.sexualQuirk = "none";
+				break;
+		}
+		r += `</span> `;
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function shortExtendedFamily(child) {
+		let handled = 0;
+		if (child.mother > 0) {
+			const _ssj = V.childs.findIndex(function(s) {
+				return s.ID === child.mother;
+			});
+			if (_ssj !== -1) {
+				r += `${SlaveFullName(V.childs[_ssj])}'s daughter`;
+				if (child.relationshipTarget === V.childs[_ssj].ID) {
+					const friendShipShort = relationshipTermShort(child);
+					r += ` & ${friendShipShort}`;
+					handled = 1;
+				}
+			}
+			r += " ";
+		} else if (child.mother === -1) {
+			r += `Your daughter`;
+			if (child.relationship === -3) {
+				r += ` & wife`;
+				handled = 1;
+			} else if (child.relationship === -2) {
+				r += ` & lover`;
+				handled = 1;
+			}
+			r += " ";
+		} else if (child.mother in V.missingTable && V.showMissingSlavesSD && V.showMissingSlaves) {
+			r += `${V.missingTable[child.mother].fullName}'s daughter `;
+		}
+		if (child.father > 0 && child.father !== child.mother) {
+			const _ssj = V.childs.findIndex(function(s) {
+				return s.ID === child.father;
+			});
+			if (_ssj !== -1) {
+				r += `${SlaveFullName(V.childs[_ssj])}'s daughter`;
+				if (child.relationshipTarget === V.childs[_ssj].ID && handled !== 1) {
+					const friendShipShort = relationshipTermShort(child);
+					r += ` & ${friendShipShort}`;
+					handled = 1;
+				}
+			}
+			r += " ";
+		} else if (child.father === -1 && child.mother !== -1) {
+			r += `Your daughter`;
+			if (child.relationship === -3) {
+				r += ` & wife`;
+				handled = 1;
+			} else if (child.relationship === -2) {
+				r += ` & lover`;
+				handled = 1;
+			}
+			r += " ";
+		} else if (child.father in V.missingTable && child.father !== child.mother && V.showMissingSlavesSD && V.showMissingSlaves) {
+			r += `${V.missingTable[child.father].fullName}'s daughter`;
+		}
+		if (child.daughters === 1) {
+			let _ssj = V.childs.findIndex(function(s) {
+				return s.mother === child.ID;
+			});
+			if (_ssj !== -1) {
+				r += `${SlaveFullName(V.childs[_ssj])}'s mother`;
+				if (child.relationshipTarget === V.childs[_ssj].ID) {
+					const friendShipShort = relationshipTermShort(child);
+					r += ` & ${friendShipShort}`;
+					handled = 1;
+				}
+			}
+			r += " ";
+			_ssj = V.childs.findIndex(function(s) {
+				return s.father === child.ID;
+			});
+			if (_ssj !== -1) {
+				r += `${SlaveFullName(V.childs[_ssj])}'s father`;
+				if (child.relationshipTarget === V.childs[_ssj].ID && handled !== 1) {
+					const friendShipShort = relationshipTermShort(child);
+					r += ` & ${friendShipShort}`;
+					handled = 1;
+				}
+			}
+			r += " ";
+		} else if (child.daughters > 1) {
+			r += `multiple daughters `;
+		}
+		if (child.sisters === 1) {
+			const _ssj = V.childs.findIndex(function(s) {
+				return areSisters(s, child) > 0;
+			});
+			if (_ssj !== -1) {
+				r += `${SlaveFullName(V.childs[_ssj])}'s sister`;
+				if (child.relationshipTarget === V.childs[_ssj].ID) {
+					const friendShipShort = relationshipTermShort(child);
+					r += `& ${friendShipShort}`;
+					handled = 1;
+				}
+			}
+			r += " ";
+		} else if (child.sisters > 1) {
+			r += `multiple sisters `;
+		}
+		if (child.relationship > 0 && handled !== 1) {
+			const _ssj = V.childs.findIndex(function(s) {
+				return s.ID === child.relationshipTarget;
+			});
+			if (_ssj !== -1) {
+				r += `${SlaveFullName(V.childs[_ssj])}'s`;
+				const friendShipShort = relationshipTermShort(child);
+				r += ` ${friendShipShort}`;
+			}
+		} else if (child.relationship === -3 && child.mother !== -1 && child.father !== -1) {
+			r += `Your wife`;
+		} else if (child.relationship === -2) {
+			r += `E Bonded`;
+		} else if (child.relationship === -1) {
+			r += `E Slut`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function shortLegacyFamily(child) {
+		if (child.relation !== 0) {
+			const _ssj = V.childs.findIndex(function(s) {
+				return s.ID === child.relationTarget;
+			});
+			if (_ssj !== -1) {
+				r += `${SlaveFullName(V.childs[_ssj])}'s ${child.relation}`;
+			}
+		}
+		if (child.relationship > 0) {
+			const _ssj = V.childs.findIndex(function(s) {
+				return s.ID === child.relationshipTarget;
+			});
+			if (_ssj !== -1) {
+				const friendship = relationshipTerm(child);
+				if (child.relationshipTarget !== child.relationTarget) {
+					r += `${SlaveFullName(V.childs[_ssj])}'s`;
+				} else {
+					r += ` &`;
+				}
+				r += ` ${friendship}`;
+			}
+		} else if (child.relationship === -3) {
+			r += `Your wife`;
+		} else if (child.relationship === -2) {
+			r += `E Bonded`;
+		} else if (child.relationship === -1) {
+			r += `E Slut`;
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function shortClone(child) {
+		if (child.clone !== 0) {
+			r += ` Clone`;
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function shortRival(child) {
+		if (child.rivalry !== 0) {
+			r += `&nbsp;&nbsp;&nbsp;&nbsp;`;
+			const _ssj = V.childs.findIndex(function(s) {
+				return s.ID === child.rivalryTarget;
+			});
+			if (_ssj !== -1) {
+				r += `<span class="lightsalmon">`;
+				if (child.rivalry <= 1) {
+					r += `Disl ${SlaveFullName(V.childs[_ssj])}`;
+				} else if (child.rivalry <= 2) {
+					r += `${SlaveFullName(V.childs[_ssj])}'s rival`;
+				} else {
+					r += `Hates ${SlaveFullName(V.childs[_ssj])}`;
+				}
+				r += `</span> `;
+			}
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longExtendedFamily(child) {
+		let handled = 0;
+		if (child.mother > 0) {
+			const _ssj = V.childs.findIndex(function(s) {
+				return s.ID === child.mother;
+			});
+			if (_ssj !== -1) {
+				r += `${SlaveFullName(V.childs[_ssj])}'s <span class="lightgreen">daughter`;
+				if (child.relationshipTarget === V.childs[_ssj].ID) {
+					const friendShipShort = relationshipTerm(child);
+					r += ` and ${friendShipShort}`;
+					handled = 1;
+				}
+				r += `.</span> `;
+			}
+		} else if (child.mother === -1) {
+			r += `Your `;
+			if (child.relationship === -3) {
+				r += `<span class="lightgreen">daughter and wife.</span> `;
+				handled = 1;
+			} else if (child.relationship === -2) {
+				r += `<span class="lightgreen">daughter and lover.</span> `;
+				handled = 1;
+			} else {
+				r += `<span class="lightgreen">daughter.</span> `;
+			}
+		} else if (child.mother in V.missingTable && V.showMissingSlavesSD && V.showMissingSlaves) {
+			r += `${V.missingTable[child.mother].fullName}'s <span class="lightgreen">daughter.</span> `;
+		}
+		if (child.father > 0 && child.father !== child.mother) {
+			const _ssj = V.childs.findIndex(function(s) {
+				return s.ID === child.father;
+			});
+			if (_ssj !== -1) {
+				r += `${SlaveFullName(V.childs[_ssj])}'s <span class="lightgreen">daughter`;
+				if (child.relationshipTarget === V.childs[_ssj].ID) {
+					const friendShipShort = relationshipTerm(child);
+					r += ` and ${friendShipShort}`;
+					handled = 1;
+				}
+				r += `.</span> `;
+			}
+		} else if (child.father === -1 && child.father !== child.mother) {
+			r += `Your `;
+			if (child.relationship === -3) {
+				r += `<span class="lightgreen">daughter and wife.</span> `;
+				handled = 1;
+			} else if (child.relationship === -2) {
+				r += `<span class="lightgreen">daughter and lover.</span> `;
+				handled = 1;
+			} else {
+				r += `<span class="lightgreen">daughter.</span> `;
+			}
+		} else if (child.father in V.missingTable && child.father !== child.mother && V.showMissingSlavesSD && V.showMissingSlaves) {
+			r += `${V.missingTable[child.father].fullName}'s <span class="lightgreen">daughter.</span> `;
+		}
+		if (child.daughters === 1) {
+			let _ssj = V.childs.findIndex(function(s) {
+				return s.mother === child.ID;
+			});
+			if (_ssj !== -1) {
+				r += `${SlaveFullName(V.childs[_ssj])}'s <span class="lightgreen">mother`;
+				if (child.relationshipTarget === V.childs[_ssj].ID) {
+					const friendShipShort = relationshipTerm(child);
+					r += ` and ${friendShipShort}`;
+					handled = 1;
+				}
+				r += `.</span> `;
+			}
+			_ssj = V.childs.findIndex(function(s) {
+				return s.father === child.ID;
+			});
+			if (_ssj !== -1) {
+				r += `${SlaveFullName(V.childs[_ssj])}'s <span class="lightgreen">father`;
+				if (child.relationshipTarget === V.childs[_ssj].ID) {
+					const friendShipShort = relationshipTerm(child);
+					r += ` and ${friendShipShort}`;
+					handled = 1;
+				}
+				r += `.</span> `;
+			}
+		} else if (child.daughters > 1) {
+			if (child.daughters > 10) {
+				r += `<span class="lightgreen">Has tons of daughters.</span> `;
+			} else if (child.daughters > 5) {
+				r += `<span class="lightgreen">Has many daughters.</span> `;
+			} else {
+				r += `<span class="lightgreen">Has several daughters.</span> `;
+			}
+		}
+		if (child.sisters === 1) {
+			const _ssj = V.childs.findIndex(function(s) {
+				return areSisters(s, child) > 0;
+			});
+			if (_ssj !== -1) {
+				r += `${SlaveFullName(V.childs[_ssj])}'s <span class="lightgreen">sister`;
+				if (child.relationshipTarget === V.childs[_ssj].ID) {
+					const friendShipShort = relationshipTerm(child);
+					r += ` and ${friendShipShort}`;
+					handled = 1;
+				}
+				r += `.</span> `;
+			}
+		} else if (child.sisters > 1) {
+			if (child.sisters > 10) {
+				r += `<span class="lightgreen">One of many sisters.</span> `;
+			} else if (child.sisters > 5) {
+				r += `<span class="lightgreen">Has many sisters.</span> `;
+			} else {
+				r += `<span class="lightgreen">Has several sisters.</span> `;
+			}
+		}
+		if (child.relationship > 0 && handled !== 1) {
+			const _ssj = V.childs.findIndex(function(s) {
+				return s.ID === child.relationshipTarget;
+			});
+			if (_ssj !== -1) {
+				const friendship = relationshipTerm(child);
+				r += `${SlaveFullName(V.childs[_ssj])}'s `;
+				r += `<span class="lightgreen">${friendship}.</span> `;
+			}
+		} else if (child.relationship === -3 && child.mother !== -1 && child.father !== -1) {
+			r += `<span class="lightgreen">Your wife.</span> `;
+		} else if (child.relationship === -2) {
+			r += `<span class="lightgreen">Emotionally bonded to you.</span> `;
+		} else if (child.relationship === -1) {
+			r += `<span class="lightgreen">Emotional slut.</span> `;
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longLegacyFamily(child) {
+		if (child.relation !== 0) {
+			const _ssj = V.childs.findIndex(function(s) {
+				return s.ID === child.relationTarget;
+			});
+			if (_ssj !== -1) {
+				r += `${SlaveFullName(V.childs[_ssj])}'s `;
+				if (child.relationshipTarget !== child.relationTarget) {
+					r += `<span class="lightgreen">${child.relation}.</span> `;
+				} else {
+					r += `<span class="lightgreen">${child.relation}</span> `;
+				}
+				if (child.relationship <= 0) {
+					r += `&nbsp;&nbsp;&nbsp;&nbsp;`;
+				}
+			}
+		}
+		if (child.relationship > 0) {
+			const _ssj = V.childs.findIndex(function(s) {
+				return s.ID === child.relationshipTarget;
+			});
+			if (_ssj !== -1) {
+				const friendship = relationshipTerm(child);
+				if (child.relationshipTarget !== child.relationTarget) {
+					r += `${SlaveFullName(V.childs[_ssj])}'s `;
+				} else {
+					r += ` and `;
+				}
+				r += `<span class="lightgreen">${friendship}.</span> `;
+			}
+		} else if (child.relationship === -3) {
+			r += `<span class="lightgreen">Your wife.</span> `;
+		} else if (child.relationship === -2) {
+			r += `<span class="lightgreen">Emotionally bonded to you.</span> `;
+		} else if (child.relationship === -1) {
+			r += `<span class="lightgreen">Emotional slut.</span> `;
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longClone(child) {
+		if (child.clone !== 0) {
+			r += ` <span class="skyblue">Clone of ${child.clone}.</span>`;
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longRival(child) {
+		if (child.rivalry !== 0) {
+			r += `&nbsp;&nbsp;&nbsp;&nbsp;`;
+			const _ssj = V.childs.findIndex(function(s) {
+				return s.ID === child.rivalryTarget;
+			});
+			if (_ssj !== -1) {
+				if (child.rivalry <= 1) {
+					r += `<span class="lightsalmon">Dislikes</span> ${SlaveFullName(V.childs[_ssj])}.`;
+				} else if (child.rivalry <= 2) {
+					r += `${SlaveFullName(V.childs[_ssj])}'s <span class="lightsalmon">rival.</span>`;
+				} else {
+					r += `<span class="lightsalmon">Hates</span> ${SlaveFullName(V.childs[_ssj])}.`;
+				}
+			}
+			r += " ";
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longClothes(child) {
+		switch (child.clothes) {
+			case "attractive lingerie":
+				r += `Nice lingerie.`;
+				break;
+			case "a succubus outfit":
+				r += `Succubus outfit.`;
+				break;
+			case "a string bikini":
+				r += `String bikini.`;
+				break;
+			case "a scalemail bikini":
+				r += `Scalemail bikini.`;
+				break;
+			case "striped panties":
+				r += `Striped panties.`;
+				break;
+			case "a monokini":
+				r += `Monokini.`;
+				break;
+			case "an apron":
+				r += `Apron.`;
+				break;
+			case "a cybersuit":
+				r += `Cybersuit.`;
+				break;
+			case "cutoffs and a t-shirt":
+				r += `Cutoffs, t-shirt.`;
+				break;
+			case "a slutty outfit":
+				r += `Slutty outfit.`;
+				break;
+			case "uncomfortable straps":
+				r += `Leather straps.`;
+				break;
+			case "a fallen nuns habit":
+				r += `Slutty habit.`;
+				break;
+			case "a chattel habit":
+				r += `Chattel habit.`;
+				break;
+			case "a penitent nuns habit":
+				r += `Cilice.`;
+				break;
+			case "slutty jewelry":
+				r += `Bangles.`;
+				break;
+			case "attractive lingerie for a pregnant woman":
+				r += `Preggo lingerie.`;
+				break;
+			case "a maternity dress":
+				r += `Maternity dress.`;
+				break;
+			case "stretch pants and a crop-top":
+				r += `Stretch pants, crop-top.`;
+				break;
+			case "harem gauze":
+				r += `Harem outfit.`;
+				break;
+			case "a child gown":
+				r += `Slave gown.`;
+				break;
+			case "a halter top dress":
+				r += `Halter top dress.`;
+				break;
+			case "a mini dress":
+				r += `Mini dress.`;
+				break;
+			case "a ball gown":
+				r += `Ball gown.`;
+				break;
+			case "slutty business attire":
+				r += `Slutty suit.`;
+				break;
+			case "nice business attire":
+				r += `Nice suit.`;
+				break;
+			case "a comfortable bodysuit":
+				r += `Bodysuit.`;
+				break;
+			case "a military uniform":
+				r += `Military uniform.`;
+				break;
+			case "a schutzstaffel uniform":
+				r += `Schutzstaffel uniform.`;
+				break;
+			case "a slutty schutzstaffel uniform":
+				r += `Slutty Schutzstaffel uniform.`;
+				break;
+			case "a red army uniform":
+				r += `Red Army uniform.`;
+				break;
+			case "a long qipao":
+				r += `Long Qipao.`;
+				break;
+			case "battlearmor":
+				r += `Battlearmor.`;
+				break;
+			case "a mounty outfit":
+				r += `Mounty outfit.`;
+				break;
+			case "a dirndl":
+				r += `Dirndl.`;
+				break;
+			case "lederhosen":
+				r += `Lederhosen.`;
+				break;
+			case "a biyelgee costume":
+				r += `Biyelgee costume.`;
+				break;
+			case "a leotard":
+				r += `Leotard.`;
+				break;
+			case "a bunny outfit":
+				r += `Bunny outfit.`;
+				break;
+			case "a slutty maid outfit":
+				r += `Slutty maid.`;
+				break;
+			case "a nice maid outfit":
+				r += `Nice maid.`;
+				break;
+			case "a slutty nurse outfit":
+				r += `Slutty nurse.`;
+				break;
+			case "a nice nurse outfit":
+				r += `Nice nurse.`;
+				break;
+			case "a schoolgirl outfit":
+				r += `Schoolgirl outfit.`;
+				break;
+			case "a kimono":
+				r += `Kimono.`;
+				break;
+			case "a hijab and abaya":
+				r += `Hijab and abaya.`;
+				break;
+			case "battledress":
+				r += `Battledress.`;
+				break;
+			case "a latex catsuit":
+				r += `Nice latex.`;
+				break;
+			case "restrictive latex":
+				r += `Bondage latex.`;
+				break;
+			case "conservative clothing":
+				r += `Conservative clothing.`;
+				break;
+			case "chains":
+				r += `Chains.`;
+				break;
+			case "overalls":
+				r += `Overalls.`;
+				break;
+			case "a cheerleader outfit":
+				r += `Cheerleader.`;
+				break;
+			case "clubslut netting":
+				r += `Netting.`;
+				break;
+			case "shibari ropes":
+				r += `Shibari.`;
+				break;
+			case "Western clothing":
+				r += `Chaps.`;
+				break;
+			case "body oil":
+				r += `Body oil.`;
+				break;
+			case "a toga":
+				r += `Toga.`;
+				break;
+			case "a huipil":
+				r += `Huipil.`;
+				break;
+			case "a slutty qipao":
+				r += `Slutty qipao.`;
+				break;
+			case "spats and a tank top":
+				r += `Spats, tank top.`;
+				break;
+			case "a burkini":
+				r += `Burkini.`;
+				break;
+			case "a niqab and abaya":
+				r += `Niqab and abaya.`;
+				break;
+			case "a klan robe":
+				r += `Klan robe.`;
+				break;
+			case "a hijab and blouse":
+				r += `Hijab and blouse.`;
+				break;
+			case "a burqa":
+				r += `Burqa.`;
+				break;
+			case "kitty lingerie":
+				r += `Kitty lingerie.`;
+				break;
+			case "a tube top and thong":
+				r += `Tube top, thong.`;
+				break;
+			case "a button-up shirt and panties":
+				r += `Button-up shirt, panties.`;
+				break;
+			case "a gothic lolita dress":
+				r += `Gothic lolita dress.`;
+				break;
+			case "a hanbok":
+				r += `Hanbok.`;
+				break;
+			case "a bra":
+				r += `Nice bra.`;
+				break;
+			case "a button-up shirt":
+				r += `Nice button-up shirt.`;
+				break;
+			case "a nice pony outfit":
+				r += `Nice pony outfit.`;
+				break;
+			case "a sweater":
+				r += `Nice sweater.`;
+				break;
+			case "a tank-top":
+				r += `Nice tank-top.`;
+				break;
+			case "a thong":
+				r += `Nice thong.`;
+				break;
+			case "a tube top":
+				r += `Nice tube top.`;
+				break;
+			case "a one-piece swimsuit":
+				r += `Swimsuit.`;
+				break;
+			case "a police uniform":
+				r += `Police uniform.`;
+				break;
+			case "a striped bra":
+				r += `Striped bra.`;
+				break;
+			case "a skimpy loincloth":
+				r += `Skimpy loincloth.`;
+				break;
+			case "a slutty klan robe":
+				r += `Slutty klan robe.`;
+				break;
+			case "a slutty pony outfit":
+				r += `Slutty pony outfit.`;
+				break;
+			case "a Santa dress":
+				r += `Santa dress.`;
+				break;
+			case "a sports bra":
+				r += `Sports bra.`;
+				break;
+			case "a sweater and panties":
+				r += `Sweater, panties.`;
+				break;
+			case "a t-shirt":
+				r += `T-shirt.`;
+				break;
+			case "a tank-top and panties":
+				r += `Tank-top, panties.`;
+				break;
+			case "a t-shirt and thong":
+				r += `Thong, t-shirt.`;
+				break;
+			case "an oversized t-shirt and boyshorts":
+				r += `Over-sized t-shirt, boy shorts.`;
+				break;
+			case "an oversized t-shirt":
+				r += `Nice over-sized t-shirt.`;
+				break;
+			case "a t-shirt and jeans":
+				r += `Blue jeans, t-shirt.`;
+				break;
+			case "boyshorts":
+				r += `Boy shorts.`;
+				break;
+			case "cutoffs":
+				r += `Jean shorts.`;
+				break;
+			case "leather pants and pasties":
+				r += `Leather pants, pasties.`;
+				break;
+			case "leather pants":
+				r += `Nice leather pants.`;
+				break;
+			case "panties":
+				r += `Nice panties.`;
+				break;
+			case "sport shorts and a t-shirt":
+				r += `Nice sport shorts, shirt.`;
+				break;
+			case "a t-shirt and panties":
+				r += `Panties, t-shirt.`;
+				break;
+			case "panties and pasties":
+				r += `Pasties, panties.`;
+				break;
+			case "striped underwear":
+				r += `Striped underwear`;
+				break;
+			case "sport shorts and a sports bra":
+				r += `Shorts, bra.`;
+				break;
+			case "jeans":
+				r += `Tight blue jeans.`;
+				break;
+			case "a sweater and cutoffs":
+				r += `Jean shorts, sweater.`;
+				break;
+			case "leather pants and a tube top":
+				r += `Leather pants, tube top.`;
+				break;
+			case "sport shorts":
+				r += `Shorts.`;
+				break;
+			default:
+				r += `Naked.`;
+				break;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longCollar(child) {
+		switch (child.collar) {
+			case "uncomfortable leather":
+				r += `Leather collar.`;
+				break;
+			case "tight steel":
+				r += `Steel collar.`;
+				break;
+			case "preg biometrics":
+				r += `Pregnancy biometrics collar.`;
+				break;
+			case "cruel retirement counter":
+				r += `Cruel counter collar.`;
+				break;
+			case "shock punishment":
+				r += `Shock collar.`;
+				break;
+			case "dildo gag":
+				r += `Dildo gag.`;
+				break;
+			case "massive dildo gag":
+				r += `Throat-bulging dildo gag.`;
+				break;
+			case "neck corset":
+				r += `Neck corset.`;
+				break;
+			case "stylish leather":
+				r += `Stylish leather collar.`;
+				break;
+			case "satin choker":
+				r += `Satin choker.`;
+				break;
+			case "silk ribbon":
+				r += `Silken ribbon.`;
+				break;
+			case "heavy gold":
+				r += `Gold collar.`;
+				break;
+			case "bowtie":
+				r += `Bowtie collar.`;
+				break;
+			case "pretty jewelry":
+				r += `Pretty collar.`;
+				break;
+			case "nice retirement counter":
+				r += `Nice counter collar.`;
+				break;
+			case "bell collar":
+				r += `Bell collar.`;
+				break;
+			case "leather with cowbell":
+				r += `Cowbell collar.`;
+				break;
+			case "ancient Egyptian":
+				r += `Wesekh.`;
+				break;
+			case "ball gag":
+				r += `Ball gag.`;
+				break;
+			case "bit gag":
+				r += `Bit gag.`;
+				break;
+			case "porcelain mask":
+				r += `Porcelain mask.`;
+				break;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longBelly(child) {
+		switch (child.bellyAccessory) {
+			case "shapewear":
+				r += `Shapewear.`;
+				break;
+			case "a small empathy belly":
+				r += `Small fake belly.`;
+				break;
+			case "a medium empathy belly":
+				r += `Medium fake belly.`;
+				break;
+			case "a large empathy belly":
+				r += `Large fake belly.`;
+				break;
+			case "a huge empathy belly":
+				r += `Huge fake belly.`;
+				break;
+			case "a corset":
+				r += `Corset.`;
+				break;
+			case "an extreme corset":
+				r += `Extreme corsetage.`;
+				break;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longLegs(child) {
+		if (child.legAccessory === "short stockings") {
+			r += `Short stockings.`;
+		} else if (child.legAccessory === "long stockings") {
+			r += `Long stockings.`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longShoes(child) {
+		if (child.shoes === "heels") {
+			r += `Heels.`;
+		} else if (child.shoes === "pumps") {
+			r += `Pumps.`;
+		} else if (child.shoes === "extreme heels") {
+			r += `Extreme heels.`;
+		} else if (child.shoes === "boots") {
+			r += `Boots.`;
+		} else if (child.heels === 1) {
+			r += `<span class="yellow">Crawling.</span>`;
+		} else if (child.shoes === "flats") {
+			r += `Flats.`;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longChastity(child) {
+		if (child.chastityAnus === 1 && child.chastityPenis === 1 && child.chastityVagina === 1) {
+			r += `Full chastity.`;
+		} else if (child.chastityPenis === 1 && child.chastityVagina === 1) {
+			r += `Genital chastity.`;
+		} else if ((child.chastityAnus === 1 && child.chastityVagina === 1) || (child.chastityAnus === 1 && child.chastityPenis === 1)) {
+			r += `Combined chastity.`;
+		} else if (child.chastityVagina === 1) {
+			r += `Vaginal chastity.`;
+		} else if (child.chastityPenis === 1) {
+			r += `Chastity cage.`;
+		} else if (child.chastityAnus === 1) {
+			r += `Anal chastity.`;
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longVaginalAcc(child) {
+		if (child.vaginalAttachment !== "vibrator") {
+			switch (child.vaginalAccessory) {
+				case "bullet vibrator":
+					r += `Attached bullet vibrator.`;
+					break;
+				case "smart bullet vibrator":
+					r += `Attached smart bullet vibrator.`;
+					break;
+				case "dildo":
+					r += `Vaginal dildo.`;
+					break;
+				case "large dildo":
+					r += `Large vaginal dildo.`;
+					break;
+				case "huge dildo":
+					r += `Huge vaginal dildo.`;
+					break;
+				case "long dildo":
+					r += `Long vaginal dildo.`;
+					break;
+				case "long, large dildo":
+					r += `Long and large vaginal dildo.`;
+					break;
+				case "long, huge dildo":
+					r += `Long and wide vaginal dildo.`;
+					break;
+			}
+		}
+		r += " ";
+		if (child.vaginalAttachment !== "none") {
+			switch (child.vaginalAttachment) {
+				case "vibrator":
+					r += `Vibrating dildo.`;
+					break;
+			}
+			r += " ";
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longDickAcc(child) {
+		switch (child.dickAccessory) {
+			case "sock":
+				r += `Cock sock.`;
+				break;
+			case "bullet vibrator":
+				r += `Frenulum bullet vibrator.`;
+				break;
+			case "smart bullet vibrator":
+				r += `Smart frenulum bullet vibrator.`;
+				break;
+		}
+		r += " ";
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function longButtplug(child) {
+		switch (child.buttplug) {
+			case "plug":
+				r += `Buttplug.`;
+				break;
+			case "large plug":
+				r += `Large buttplug.`;
+				break;
+			case "huge plug":
+				r += `Huge buttplug.`;
+				break;
+			case "long plug":
+				r += `Long buttplug.`;
+				break;
+			case "long, large plug":
+				r += `Large, long buttplug.`;
+				break;
+			case "long, huge plug":
+				r += `Enormous buttplug.`;
+				break;
+		}
+		r += " ";
+		switch (child.buttplugAttachment) {
+			case "tail":
+				r += `Attached tail. `;
+				break;
+			case "cat tail":
+				r += `Attached cat tail. `;
+				break;
+			case "fox tail":
+				r += `Attached fox tail. `;
+				break;
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function rulesAssistant(child) {
+		if (child.useRulesAssistant === 0) {
+			r += `<span class="lightgreen">RA-Exempt</span> `;
+		} else if (V.abbreviateRulesets === 2 && (child.currentRules !== undefined) && (child.currentRules.length > 0)) {
+			r += `Rules: ${V.defaultRules.filter(x => ruleApplied(child, x)).map(x => x.name).join(", ")}`;
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} child
+	 */
+	function origins(child) {
+		r += `<br>`;
+		if (V.seeImages !== 1 || V.seeSummaryImages !== 1 || V.imageChoice === 1) {
+			r += `&nbsp;&nbsp;&nbsp;&nbsp;`;
+		}
+		r += `<span class="gray">${child.origin}</span>`;
+	}
+
+	return ChildSummaryUncached(child);
+};
+
+App.Facilities.Nursery.LongInfantDescription = function(child) {
+	"use strict";
+	const V = State.variables;
+	const arcology = V.arcologies[0];
+	const weeksOld = V.week - child.weekAcquired;
+	let r = ``;
+	let age;
+	let title;
+	/* eslint-disable */
+	let pronouns = getPronouns(child);
+	let he = pronouns.pronoun;
+	let him = pronouns.object;
+	let his = pronouns.possessive;
+	let hers = pronouns.possessivePronoun;
+	let himself = pronouns.objectReflexive;
+	let boy = pronouns.noun;
+	let He = capFirstChar(he);
+	let His = capFirstChar(his);
+	/* eslint-enable */
+
+	// TODO: add infant art here
+
+	r += `&nbsp;&nbsp;&nbsp;&nbsp; `;
+
+	r += `<span id="childName"><strong><span class="pink">${SlaveFullName(child)}</span></strong></span> `;
+
+	if (typeof child.custom !== "undefined") {
+		if (child.custom.label) {
+			r += ` (<strong><span class="yellow">${child.custom.label}</span></strong>) `;
+		}
+	}
+
+	if (child.actualAge > 0) {
+		age = `${child.actualAge}-year-old`;
+		if (child.actualAge > 1) {
+			title = `toddler`;
+		} else {
+			title = `baby`;
+		}
+	} else {
+		if (weeksOld > 4) {
+			age = `${child.actualAge}-month-old`;
+			title = `${baby}`;
+		} else {
+			if (weeksOld <= 1) {
+				age = ``;
+				title = `newborn`;
+			} else {
+				age = `${child.actualAge}-week-old`;
+				title = `baby`;
+			}
+		}
+	}
+
+	r += ` is a ${age} <strong><span class="coral">${title}.</span></strong> ${He} was born in ${arcology.name} ${weeksOld > 4 ? weeksOld < 9 ? `month` : `months` : weeksOld === 1 ? `week` : `weeks`} ago`;
+
+	if (typeof child.counter !== "undefined") {
+		const oral = child.counter.oral,
+				vaginal = child.counter.vaginal,
+				anal = child.counter.oral,
+				mammary = child.counter.mammary,
+				penetrative = child.counter.penetrative,
+				total = oral + vaginal + anal + mammary + penetrative;
+
+		if (total > 0) {
+			r += `and has been fucked about ${total} times, including `;
+			if ((vaginal + anal + mammary + penetrative) > 0) {
+				if (vaginal > 0) {
+					r += `${vaginal} vanilla, `;
+				}
+				if (anal > 0) {
+					r += `${anal} anal, `;
+				}
+				if (mammary > 0) {
+					r += `${mammary} mammary `;
+				}
+				if (penetrative > 0) {
+					r += `${penetrative} penetrating, `;
+				}
+				r += ` and `;
+			}
+			r += `${oral} oral sexual encounters. `;
+		} else {
+			if (weeksOwned >= 1) {
+				r += `and `;
+			} else {
+				r += `. ${He} `;
+			}
+
+			r += `has had little or no sexual experience `;
+			if (child.weekAcquired !== 0) {
+				r += `as your slave `;
+			} else {
+				r += `in your new arcology `;
+			}
+			r += `yet. `;
+
+			let sortedCounts = [];
+			sortedCounts.push(
+				{type: "oral", value: oral},
+				{type: "vaginal", value: vaginal},
+				{type: "anal", value: anal},
+				{type: "mammary", value: mammary},
+				{type: "penetrative", value: penetrative}
+			);
+			sortedCounts = sortedCounts.sort(function(a, b) {	// sorts the counts from largest to smallest
+				return b.value - a.value;
+			});
+
+			if (sortedCounts[0].type === "oral") {
+				if (((weeksOwned * 112) / oral) < 4) {
+					r += `Remarkably, this means that ${he}'s sucked something off `;
+					if (((weeksOwned * 112) / oral) < 1) {
+						r += `more than once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 1.5) {
+						r += `about once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 2.5) {
+						r += `about once every two hours `;
+					} else if (((weeksOwned * 112) / oral) < 3.5) {
+						r += `about once every three hours `;
+					} else {
+						r += `about once every four hours `;
+					}
+					r += ` ${he}'s spent awake. `;
+				}
+			} else if (sortedCounts[0].type === "vaginal") {
+				if (((weeksOwned * 112) / oral) < 4) {
+					r += `Remarkably, this means that ${his} pussy has been fucked `;
+					if (((weeksOwned * 112) / oral) < 1) {
+						r += `more than once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 1.5) {
+						r += `about once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 2.5) {
+						r += `about once every two hours `;
+					} else if (((weeksOwned * 112) / oral) < 3.5) {
+						r += `about once every three hours `;
+					} else {
+						r += `about once every four hours `;
+					}
+					r += ` ${he}'s spent awake. `;
+				}
+			} else if (sortedCounts[0].type === "anal") {
+				if (((weeksOwned * 112) / oral) < 4) {
+					r += `Remarkably, this means that ${he}'s been buttfucked `;
+					if (((weeksOwned * 112) / oral) < 1) {
+						r += `more than once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 1.5) {
+						r += `about once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 2.5) {
+						r += `about once every two hours `;
+					} else if (((weeksOwned * 112) / oral) < 3.5) {
+						r += `about once every three hours `;
+					} else {
+						r += `about once every four hours `;
+					}
+					r += ` ${he}'s spent awake. `;
+				}
+			} else if (sortedCounts[0].type === "mammary") {
+				if (((weeksOwned * 112) / oral) < 4) {
+					r += `Remarkably, this means that ${he}'s put ${his} tits to work `;
+					if (((weeksOwned * 112) / oral) < 1) {
+						r += `more than once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 1.5) {
+						r += `about once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 2.5) {
+						r += `about once every two hours `;
+					} else if (((weeksOwned * 112) / oral) < 3.5) {
+						r += `about once every three hours `;
+					} else {
+						r += `about once every four hours `;
+					}
+					r += ` ${he}'s spent awake. `;
+				}
+			} else if (sortedCounts[0].type === "penetrative") {
+				if (((weeksOwned * 112) / oral) < 4) {
+					r += `Remarkably, this means that ${he}'s pounded a hole `;
+					if (((weeksOwned * 112) / oral) < 1) {
+						r += `more than once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 1.5) {
+						r += `about once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 2.5) {
+						r += `about once every two hours `;
+					} else if (((weeksOwned * 112) / oral) < 3.5) {
+						r += `about once every three hours `;
+					} else {
+						r += `about once every four hours `;
+					}
+					r += ` ${he}'s spent awake. `;
+				}
+			}
+		}
+	} else {
+		r += `. `;
+	}
+
+	return r;
+};
+
+/**
+ * @param {App.Entity.SlaveState} child	// TODO: would this still be a SlaveState?
+ * @returns {string}
+ */
+App.Facilities.Nursery.LongChildDescription = function(child) {
+	"use strict";
+	const V = State.variables;
+	const arcology = V.arcologies[0];
+	const PC = V.PC;
+	const slaves = V.slaves;
+	let r = ``;
+	let beauty = Beauty(child);
+	/* eslint-disable */
+	let pronouns = getPronouns(child);
+	let he = pronouns.pronoun;
+	let him = pronouns.object;
+	let his = pronouns.possessive;
+	let hers = pronouns.possessivePronoun;
+	let himself = pronouns.objectReflexive;
+	let boy = pronouns.noun;
+	let He = capFirstChar(he);
+	let His = capFirstChar(his);
+	/* eslint-enable */
+
+	/* 000-250-006 */
+	if (V.seeImages) {
+		if (V.imageChoice === 1) {
+			r += `<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeChild 3 0>></div> `;
+		} else {
+			r += `<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeChild 3 0>></div> `;
+		}
+	}
+	/* 000-250-006 */
+
+	r += `&nbsp;&nbsp;&nbsp;&nbsp; `;
+
+	r += `<span id="childName"><strong><span class="pink">${SlaveFullName(child)}</span></strong></span> `;
+
+	if (child.custom.label) {
+		r += ` (<strong><span class="yellow">${child.custom.label}</span></strong>) `;
+	}
+
+	r += ` is a <strong><span class="coral">${SlaveTitle(child)}.</span></strong> `;
+
+	if (slave.devotion < -95) {
+		r += `a <span class="darkviolet">hate-filled,</span>`;
+	} else if (slave.devotion < -50) {
+		r += `a <span class="darkviolet">hateful,</span>`;
+	} else if (slave.devotion < -20) {
+		r += `a <span class="mediumorchid">reluctant,</span>`;
+	} else if (slave.devotion <= 20) {
+		r += `a <span class="yellow">hesitant,</span>`;
+	} else if (slave.devotion <= 50) {
+		r += `an <span class="hotpink">accepting,</span>`;
+	} else if (slave.devotion <= 95) {
+		r += `a <span class="deeppink">devoted,</span>`;
+	} else {
+		r += `a <span class="magenta">worshipful,</span>`;
+	}
+
+	if (slave.trust < -95) {
+		r += `<span class="goldenrod">abjectly terrified</span>`;
+	} else if (slave.devotion < -50) {
+		r += `<span class="goldenrod">terrified</span>`;
+	} else if (slave.devotion < -20) {
+		r += `<span class="gold">frightened</span>`;
+	} else if (slave.devotion <= 20) {
+		r += `<span class="yellow">fearful</span>`;
+	} else if (slave.devotion <= 50) {
+		if (slave.devotion < -20) {
+			r += `<span class="orange">careful</span>`;
+		} else {
+			r += `<span class="mediumaquamarine">careful</span>`;
+		}
+	} else if (slave.devotion <= 95) {
+		if (slave.devotion < -20) {
+			r += `<span class="orangered">bold</span>`;
+		} else {
+			r += `<span class="mediumseagreen">trusting</span>`;
+		}
+	} else {
+		if (slave.devotion < -20) {
+			r += `<span class="darkred">defiant</span>`;
+		} else {
+			r += `<span class="seagreen">profoundly trusting</span>`;
+		}
+	}
+
+	r += App.Desc.ageAndHealth(child);
+
+	if (!V.saleDescription) {
+		if (V.clinic && V.clinicUpgradeScanner) {
+			if (child.chem > 15) {
+				r += `${V.clinicNameCaps}'s scanners score long term carcinogenic buildup in ${his} body at <span class="cyan">${Math.ceil(child.chem/10)}</span>. `;
+			} else {
+				r += `${V.clinicNameCaps}'s scanners confirm that ${he} has good prospects for long term health. `;
+			}
+		}
+
+		// TODO: this will all need to be changed since children will be born in the arcology
+		if (V.showSexualHistory && V.ui !== "start") {
+			let weeksOwned = V.week - child.weekAcquired;
+
+			r += `${He} was born in ${arcology.name} ${weeksOwned} weeks ago. `; // TODO: double check this is correct
+
+			let oral = child.counter.oral,
+				vaginal = child.counter.vaginal,
+				anal = child.counter.oral,
+				mammary = child.counter.mammary,
+				penetrative = child.counter.penetrative,
+				total = oral + vaginal + anal + mammary + penetrative;
+
+			if (total > 0) {
+				r += `and has been fucked about ${total} times, including `;
+				if ((vaginal + anal + mammary + penetrative) > 0) {
+					if (vaginal > 0) {
+						r += `${vaginal} vanilla, `;
+					}
+					if (anal > 0) {
+						r += `${anal} anal, `;
+					}
+					if (mammary > 0) {
+						r += `${mammary} mammary `;
+					}
+					if (penetrative > 0) {
+						r += `${penetrative} penetrating, `;
+					}
+					r += ` and `;
+				}
+				r += `${oral} oral sexual encounters. `;
+			} else {
+				if (weeksOwned >= 1) {
+					r += `and `;
+				} else {
+					r += `${He} `;
+				}
+
+				r += `has had little or no sexual experience `;
+				if (child.weekAcquired !== 0) {
+					r += `as your slave `;
+				} else {
+					r += `in your new arcology `;
+				}
+				r += `yet. `;
+			}
+
+			let sortedCounts = [];
+			sortedCounts.push(
+				{type: "oral", value: oral},
+				{type: "vaginal", value: vaginal},
+				{type: "anal", value: anal},
+				{type: "mammary", value: mammary},
+				{type: "penetrative", value: penetrative}
+			);
+			sortedCounts = sortedCounts.sort(function(a, b) {	// sorts the counts from largest to smallest
+				return b.value - a.value;
+			});
+			if (sortedCounts[0].type === "oral") {
+				if (((weeksOwned * 112) / oral) < 4) {
+					r += `Remarkably, this means that ${he}'s sucked something off `;
+					if (((weeksOwned * 112) / oral) < 1) {
+						r += `more than once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 1.5) {
+						r += `about once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 2.5) {
+						r += `about once every two hours `;
+					} else if (((weeksOwned * 112) / oral) < 3.5) {
+						r += `about once every three hours `;
+					} else {
+						r += `about once every four hours `;
+					}
+					r += ` ${he}'s spent awake. `;
+				}
+			} else if (sortedCounts[0].type === "vaginal") {
+				if (((weeksOwned * 112) / oral) < 4) {
+					r += `Remarkably, this means that ${his} pussy has been fucked `;
+					if (((weeksOwned * 112) / oral) < 1) {
+						r += `more than once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 1.5) {
+						r += `about once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 2.5) {
+						r += `about once every two hours `;
+					} else if (((weeksOwned * 112) / oral) < 3.5) {
+						r += `about once every three hours `;
+					} else {
+						r += `about once every four hours `;
+					}
+					r += ` ${he}'s spent awake. `;
+				}
+			} else if (sortedCounts[0].type === "anal") {
+				if (((weeksOwned * 112) / oral) < 4) {
+					r += `Remarkably, this means that ${he}'s been buttfucked `;
+					if (((weeksOwned * 112) / oral) < 1) {
+						r += `more than once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 1.5) {
+						r += `about once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 2.5) {
+						r += `about once every two hours `;
+					} else if (((weeksOwned * 112) / oral) < 3.5) {
+						r += `about once every three hours `;
+					} else {
+						r += `about once every four hours `;
+					}
+					r += ` ${he}'s spent awake. `;
+				}
+			} else if (sortedCounts[0].type === "mammary") {
+				if (((weeksOwned * 112) / oral) < 4) {
+					r += `Remarkably, this means that ${he}'s put ${his} tits to work `;
+					if (((weeksOwned * 112) / oral) < 1) {
+						r += `more than once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 1.5) {
+						r += `about once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 2.5) {
+						r += `about once every two hours `;
+					} else if (((weeksOwned * 112) / oral) < 3.5) {
+						r += `about once every three hours `;
+					} else {
+						r += `about once every four hours `;
+					}
+					r += ` ${he}'s spent awake. `;
+				}
+			} else if (sortedCounts[0].type === "penetrative") {
+				if (((weeksOwned * 112) / oral) < 4) {
+					r += `Remarkably, this means that ${he}'s pounded a hole `;
+					if (((weeksOwned * 112) / oral) < 1) {
+						r += `more than once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 1.5) {
+						r += `about once every hour `;
+					} else if (((weeksOwned * 112) / oral) < 2.5) {
+						r += `about once every two hours `;
+					} else if (((weeksOwned * 112) / oral) < 3.5) {
+						r += `about once every three hours `;
+					} else {
+						r += `about once every four hours `;
+					}
+					r += ` ${he}'s spent awake. `;
+				}
+			}
+		}
+
+		r += App.Desc.eyes(child);
+
+		if (child.fetish === "mindbroken") {
+			r += `However, <span class="coral">${his} mind is fundamentally broken;</span> everything ${he} experiences will quickly be forgotten. `;
+		}
+
+		switch (child.behavioralFlaw) {
+			case "arrogant":
+				if (child.devotion < -20 && child.trust >= -20) {
+					r += `${He} is still <span class="red">arrogant</span> at heart, but does ${his} best to hide it out of fear. `;
+				} else if (child.devotion < -20) {
+					r += `${He} is <span class="red">arrogant</span> and seems to think slavery beneath ${him}. `;
+				} else if (child.devotion <= 20) {
+					r += `Despite being well broken, ${he} seems to retain hints of <span class="red">arrogance.</span> `;
+				} else {
+					r += `${He} is <span class="red">bitchy</span> and insults you every chance ${he} gets. `;
+				}
+				break;
+			case "bitchy":
+				if (child.devotion < -20 && child.trust >= -20) {
+					r += `${He} is still <span class="red">bitchy</span> at times, but does ${his} best to keep quiet out of fear. `;
+				} else if (child.devotion < -20) {
+					r += `${He} is <span class="red">bitchy</span> and constantly tries to get a word in edgewise. `;
+				} else if (child.devotion <= 20) {
+					r += `Since ${he} is well broken, ${he} tries to confine ${his} <span class="red">bitchy</span> remarks to your other slaves. `;
+				} else {
+					r += `${He} strongly believes that <span class="red">slavery is wrong,</span> and resists it as best ${he} can. `;
+				}
+				break;
+			case "liberated":
+				if (child.devotion < -20 && child.trust >= -20) {
+					r += `${He} strongly believes that <span class="red">slavery is wrong,</span> but usually keeps quiet out of fear. `;
+				} else if (child.devotion < -20) {
+					r += `${He} strongly believes that <span class="red">slavery is wrong,</span> and rarely misses a chance to complain about it. `;
+				} else if (child.devotion <= 20) {
+					r += `${He} strongly believes that <span class="red">slavery is wrong,</span> but has learned to keep it to ${himself}. `;
+				} else {
+					r += `${He} is <span class="red">devoutly religious,</span> `;
+				}
+				break;
+			case "devout":
+				if (child.devotion < -20 && child.trust >= -20) {
+					r += `and uses ${his} faith as a wellspring of resistance. `;
+				} else if (child.devotion < -20) {
+					r += `and uses ${his} faith as a place of refuge. `;
+				} else if (child.devotion <= 20) {
+					r += `and uses ${his} faith as a private place within ${himself}. `;
+				} else {
+					r += `but has learned to keep ${his} faith private. `;
+				}
+				break;
+			case "odd":
+				r += `${He} behaves <span class="red">oddly,</span> saying and doing random things. `;
+				break;
+			case "hates men":
+				r += `${He} <span class="red">strongly dislikes</span> being around `;
+				if (child.attrXY >= 85 && child.energy >= 40) {
+					r += `men; since ${he} loves the dick, ${he}'s forced to put up with them. `;
+				} else if (child.attrXY >= 65 && child.energy >= 40) {
+					r += `men; since ${he} likes the dick, ${he} reluctantly puts up with them. `;
+				} else {
+					r += `men. `;
+				}
+				break;
+			case "hates women":
+				r += `${He} <span class="red">strongly dislikes</span> being around `;
+				if (child.attrXX >= 85 && child.energy >= 40) {
+					r += `women; since ${he} loves pussy, ${he}'s forced to put up with them. `;
+				} else if (child.attrXX >= 65 && child.energy >= 40) {
+					r += `women; since ${he} likes pussy, ${he} reluctantly puts up with them. `;
+				} else {
+					r += `women. `;
+				}
+				break;
+			case "anorexic":
+				r += `${He} suffers from <span class="red">anorexia.</span> `;
+				break;
+			case "gluttonous":
+				r += `${He} <span class="red">tends to overeat</span> whenever ${he} can, reacting to the rigors of sexual slavery with overeating. `;
+				break;
+		}
+
+		switch (child.behavioralQuirk) {
+			case "confident":
+				r += `${He}'s <span class="green">confident,</span> and believes that ${he} has something of value to offer, even as a slave. `;
+				break;
+			case "cutting":
+				r += `${He} often has a witty or <span class="green">cutting</span> remark ready, but knows when to keep them to ${himself}. `;
+				break;
+			case "funny":
+				r += `${He}'s <span class="green">funny,</span> often providing a little comic relief. `;
+				break;
+			case "adores men":
+				r += `${He} <span class="green">adores women,</span> and loves spending time with them. `;
+				break;
+			case "adores women":
+				r += `${He} <span class="green">adores men,</span> and loves spending time with them. `;
+				break;
+			case "fitness":
+				r += `${He}'s a <span class="green">fitness fanatic,</span> and almost gets off to a hard workout. `;
+				break;
+			case "insecure":
+				r += `${He}'s <span class="green">insecure,</span> defining ${his} self worth by how much others want to fuck ${him}. `;
+				break;
+			case "sinful":
+				if (arcology.FSChattelRelionist === "unset") {
+					r += `${He}'s delightfully <span class="green">sinful,</span> taking real pleasure in breaking cultural mores. `;
+				} else {
+					r += `${He}'s a devout Chattel Religionist, and is aggressively <span class="green">sinful</span> against old world faiths. ${He} is enthusiastic about slutty religious clothing, and excited by intentional sacrilege like openly using old world religious icons as sex toys or having orgies on altars. `;
+				}
+				break;
+			case "advocate":
+				r += `${He}'s an <span class="green">advocate</span> for slavery, and can articulate what it's done for ${him}. `;
+				break;
+		}
+
+		switch (child.sexualFlaw) {
+			case "hates oral":
+				r += `${He} <span class="red">hates</span> oral sex and tries to avoid it. `;
+				break;
+			case "hates anal":
+				r += `${He} <span class="red">hates</span> anal sex and tries to avoid it. `;
+				break;
+			case "hates penetration":
+				r += `${He} <span class="red">hates</span> penetration and tries to avoid it. `;
+				break;
+			case "repressed":
+				r += `${He} is <span class="red">sexually repressed,</span> retaining a fundamental distaste for sex from ${his} upbringing. `;
+				break;
+			case "idealistic":
+				r += `${He} is <span class="red">sexually idealistic,</span> retaining a belief that sex should be based on love and consent. `;
+				break;
+			case "shamefast":
+				r += `${He} is <span class="red">shamefast,</span> suffering crippling anxiety when naked. `;
+				break;
+			case "apathetic":
+				r += `${He} is <span class="red">sexually apathetic,</span> often slipping into inertness during sex. `;
+				break;
+			case "crude":
+				r += `${He} is <span class="red">sexually crude,</span> and has little sense of what partners find disgusting during sex. `;
+				break;
+			case "judgemental":
+				r += `${He} is <span class="red">sexually judgemental,</span> and often denigrates ${his} sexual partners' performance. `;
+				break;
+			case "cum addict":
+				r += `${He}'s a <span class="yellow">cum addict:</span> ${he} has a deep psychological addiction to ${PC.dick ? `semen` : PC.dick && PC.vagina ? ` and ` : PC.vagina ? `pussyjuice` : ``} and becomes anxious if ${he} goes for a few hours without drinking any. `;
+				break;
+			case "anal addict":
+				r += `${He}'s an <span class="yellow">anal addict:</span> ${he} has a deep psychological need to be fucked in the ass and becomes anxious if ${he} goes for a few hours without anal. `;
+				break;
+			case "attention whore":
+				r += `${He}'s an <span class="yellow">attention whore:</span> shocking and titillating spectators is more important to ${him} than the actual pleasure of sex. `;
+				break;
+			case "breast growth":
+				r += `${He} has a <span class="yellow">breast growth obsession:</span> ${he}'s nearly incapable of believing that ${his} breasts are big enough. `;
+				break;
+			case "abusive":
+				r += `${He}'s sexually <span class="yellow">abusive:</span> ${he} prefers taking sexual pleasure by force to having it offered to ${him}. `;
+				break;
+			case "malicious":
+				r += `${He}'s sexually <span class="yellow">malicious:</span> ${he} gets off on others' anguish. `;
+				break;
+			case "self hating":
+				r += `${He}'s filled with <span class="yellow">self hatred,</span> and is disturbingly willing to comply with things that might hurt ${him}. `;
+				break;
+			case "neglectful":
+				r += `${He}'s sexually <span class="yellow">self neglectful,</span> and often shows no interest in getting off ${himself}. `;
+				break;
+			case "breeder":
+				r += `${He}'s <span class="yellow">obsessed with being bred</span> to the point of fetishizing pregnancy itself as much as any act that leads to it. `;
+				break;
+		}
+
+		switch (child.sexualQuirk) {
+			case "gagfuck queen":
+				r += `${He}'s a <span class="green">gagfuck queen:</span> ${he}'s able to safely take a rough facefuck. `;
+				break;
+			case "painal queen":
+				r += `${He}'s a <span class="green">painal queen:</span> ${he} knows exactly how much ${he} can take without getting hurt. `;
+				break;
+			case "strugglefuck queen":
+				r += `${He}'s a <span class="green">strugglefuck queen:</span> ${he} can gauge exactly how much resistance ${his} partners want. `;
+				break;
+			case "tease":
+				r += `${He}'s a <span class="green">tease,</span> and often displays a little flash of ${himself} followed by a blush. `;
+				break;
+			case "romantic":
+				r += `${He}'s a <span class="green">romantic,</span> and persists in innocent pleasure in the closeness of sex. `;
+				break;
+			case "perverted":
+				r += `${He}'s <span class="green">perverted,</span> and enjoys breaking sexual boundaries. `;
+				break;
+			case "caring":
+				r += `${He}'s <span class="green">caring,</span> and enjoys bringing partners pleasure more than getting off ${himself}. `;
+				break;
+			case "unflinching":
+				r += `${He}'s <span class="green">unflinching,</span> willing to do anything, even by the standards of sex slaves. `;
+				break;
+			case "size queen":
+				r += `${He}'s <span class="green">a size queen;</span> preferring big cock is almost ${his} trademark. `;
+				break;
+		}
+
+		if (child.fetishKnown) {
+			switch (child.fetish) {
+				case "submissive":
+					if (child.sexualFlaw === "apathetic") {
+						r += `This sexual apathy plays into ${his} preference for <span class="lightcoral">submission.</span> `;
+					} else if (child.behavioralFlaw === "arrogant") {
+						r += `${His} arrogance is really just a thin shell to protect ${his} true need to <span class="lightcoral">submit.</span> `;
+					} else if (child.fetishStrength > 95) {
+						r += `${He}'s an extreme <span class="lightcoral">submissive,</span> and relishes the strictures of slavery. `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He}'s a confirmed <span class="lightcoral">submissive,</span> and enjoys the strictures of slavery. `;
+					} else {
+						r += `${He} has <span class="lightcoral">submissive</span> tendencies, and likes the strictures of slavery. `;
+					}
+					break;
+				case "cumslut":
+					if (child.sexualFlaw === "hates oral") {
+						r += `${He}'s torn between ${his} <span class="lightcoral">love of semen</span> and ${his} dislike of having cocks in ${his} mouth. `;
+					} else if (child.fetishStrength > 95) {
+						r += `${He}'s a <span class="lightcoral">cumslut,</span> and loves giving blowjobs and receiving facials. `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He} <span class="lightcoral">prefers giving oral,</span> and enjoys sucking dick and receiving facials. `;
+					} else {
+						r += `${He} has an <span class="lightcoral">oral fixation,</span> and likes giving blowjobs and receiving facials. `;
+					}
+					break;
+				case "humiliation":
+					if (child.behavioralFlaw === "bitchy") {
+						r += `${His} bitchiness is really just an expression of ${his} deep need to be <span class="lightcoral">humiliated</span> ${himself}. `;
+					} else if (child.sexualFlaw === "shamefast") {
+						r += `${His} shame is genuine, and it is with real self-loathing that ${he} <span class="lightcoral">gets off on humiliation.</span> `;
+					} else if (child.fetishStrength > 95) {
+						r += `${He}'s a slut for <span class="lightcoral">humiliation,</span> and gets off on having others see ${his} enslavement. `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He} enjoys <span class="lightcoral">humiliating</span> sex. `;
+					} else {
+						r += `${He} likes <span class="lightcoral">embarrassing</span> sex. `;
+					}
+					break;
+				case "buttslut":
+					if (child.sexualFlaw === "hates anal") {
+						r += `${His} hatred is just pretense to cover ${his} shame about how much ${he} really loves getting <span class="lightcoral">fucked in the butt.</span> `;
+					} else if (child.fetishStrength > 95) {
+						r += `${He}'s a <span class="lightcoral">buttslut,</span> happy to have anyone put anything up ${his} ass. `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He} <span class="lightcoral">prefers anal.</span> `;
+					} else {
+						r += `${He} has an <span class="lightcoral">anal fixation.</span> `;
+					}
+					break;
+				case "boobs":
+					if (child.fetishStrength > 95) {
+						r += `${He} <span class="lightcoral">prefers mammary intercourse</span> to any other kind of sex, and readily climaxes to nipple stimulation. `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He} enjoys <span class="lightcoral">breast play,</span> and is rapidly aroused by nipple stimulation. `;
+					} else {
+						r += `${He} <span class="lightcoral">really likes boobs,</span> ${hers} and others. `;
+					}
+					break;
+				case "pregnancy":
+					if (child.fetishStrength > 95) {
+						r += `${He} has a <span class="lightcoral">pregnancy fetish,</span> and finds anything related to reproduction sexy. `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He} has an <span class="lightcoral">impregnation fantasy,</span> and enjoys bareback sex. `;
+					} else {
+						r += `${He} has a recurring <span class="lightcoral">impregnation fantasy.</span> `;
+					}
+					break;
+				case "dom":
+					if (child.sexualFlaw === "apathetic") {
+						r += `${He} is at war with ${himself}, since ${his} habitual apathy during sex barely masks a desire to <span class="lightcoral">dominate.</span> `;
+					} else if (child.fetishStrength > 95) {
+						r += `${He} is a <span class="lightcoral">complete dom;</span> with other slaves this is expressed as a strong preference to top, and with ${his} betters ${he}'s an almost competitive lover. `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He} likes to take an active, powerful role in sex; with other slaves this is expressed as <span class="lightcoral">dominance,</span> and with ${his} betters ${he}'s a very energetic lover. `;
+					} else {
+						r += `${He} prefers to take a <span class="lightcoral">dominant</span> sexual role. `;
+					}
+					break;
+				case "sadist":
+					if (child.fetishStrength > 95) {
+						r += `${He} is an <span class="lightcoral">aggressive sadist;</span> ${he}'s constantly plotting to control, abuse, and hurt other slaves. `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He} has <span class="lightcoral">sadistic tendencies;</span> ${he} enjoys watching other slaves in pain, but truly loves causing pain ${himself}. `;
+					} else {
+						r += `${He} gets off on <span class="lightcoral">the suffering of others;</span> ${he} enjoys watching other slaves in pain. `;
+					}
+					break;
+				case "masochist":
+					if (child.fetishStrength > 95) {
+						r += `${He} is a <span class="lightcoral">pain slut.</span> `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He} <span class="lightcoral">gets off on pain,</span> showing strong masochistic tendencies. `;
+					} else {
+						r += `${He} <span class="lightcoral">doesn't mind pain,</span> and shows some masochistic tendencies. `;
+					}
+					break;
+				default:
+					r += `${His} sexual tastes are <span class="pink">quite normal.</span> `;
+					break;
+			}
+		} else {
+			r += `${His} fetishes, if any, are not known to you. `;
+		}
+
+		if (child.attrKnown) {
+			if (child.energy > 95) {
+				r += `${He}'s a <span class="green">nymphomaniac.</span> `;
+			} else if (child.energy > 80) {
+				r += `${He}'s a <span class="green">sex addict.</span> `;
+			} else if (child.energy > 60) {
+				r += `${He} has a <span class="green">powerful appetite for sex.</span> `;
+			} else if (child.energy > 40) {
+				r += `${He} has a <span class="yellow">healthy sex drive.</span> `;
+			} else if (child.energy > 20) {
+				r += `${He} has a <span class="red">weak sex drive.</span> `;
+			} else {
+				r += `${He}'s <span class="red">frigid,</span> with little interest in sex. `;
+			}
+
+			if (child.attrXY <= 5) {
+				if (child.attrXX <= 5) {
+					r += `${He}'s a <span class="green">nymphomaniac.</span> `;
+				} else {
+					r += `${He}'s a <span class="green">sex addict.</span> `;
+					if (child.attrXX <= 15) {
+						r += `${He} has a <span class="green">powerful appetite for sex.</span> `;
+					} else if (child.attrXX <= 35) {
+						r += `${He} has a <span class="yellow">healthy sex drive.</span> `;
+					} else if (child.attrXX <= 65) {
+						r += `${He} has a <span class="red">weak sex drive.</span> `;
+					} else if (child.attrXX <= 85) {
+						r += `${He}'s <span class="red">frigid,</span> with little interest in sex. `;
+					} else if (child.attrXX <= 95) {
+						r += `${He} <span class="red">finds both men's and women's intimate areas quite repulsive,</span> an unfortunate state of affairs! `;
+					} else {
+						r += `${He} <span class="red">finds men sexually disgusting,</span> `;
+					}
+				}
+			} else if (child.attrXY <= 15) {
+				r += `${He} <span class="red">considers men's bodies a turnoff,</span> `;
+				if (child.attrXX <= 5) {
+					r += `and is <span class="red">actually disgusted by women's.</span> `;
+				} else if (child.attrXX <= 15) {
+					r += `and <span class="red">feels the same about women's.</span> `;
+				} else if (child.attrXX <= 35) {
+					r += `and is <span class="red">unenthusiastic about women.</span> `;
+				} else if (child.attrXX <= 65) {
+					r += `and ${he} is indifferent to women. `;
+				} else if (child.attrXX <= 85) {
+					r += `but <span class="green">is attracted to women.</span> `;
+				} else if (child.attrXX <= 95) {
+					r += `<span class="green">strongly preferring women.</span> `;
+				} else {
+					r += `but is <span class="green">passionate about women.</span> `;
+				}
+			} else if (child.attrXY <= 35) {
+				r += `${He} is <span class="red">finds most men unattractive,</span> `;
+				if (child.attrXX <= 5) {
+					r += `and is <span class="red">disgusted by the idea of intimacy with a woman.</span> `;
+				} else if (child.attrXX <= 15) {
+					r += `and is <span class="red">turned off by women.</span> `;
+				} else if (child.attrXX <= 35) {
+					r += `and is <span class="red">unenthusiastic about women.</span> `;
+				} else if (child.attrXX <= 65) {
+					r += `and ${he} is indifferent to women. `;
+				} else if (child.attrXX <= 85) {
+					r += `but <span class="green">is attracted to women.</span> `;
+				} else if (child.attrXX <= 95) {
+					r += `<span class="green">strongly preferring women.</span> `;
+				} else {
+					r += `but is <span class="green">passionate about women.</span> `;
+				}
+			} else if (child.attrXY <= 65) {
+				r += `${He}'s indifferent to sex with men, `;
+				if (child.attrXX <= 5) {
+					r += `but is <span class="red">disgusted by the idea of intimacy with a woman.</span> `;
+				} else if (child.attrXX <= 15) {
+					r += `but is <span class="red">turned off by women.</span> `;
+				} else if (child.attrXX <= 35) {
+					r += `but is <span class="red">actually unenthusiastic about women.</span> `;
+				} else if (child.attrXX <= 65) {
+					r += `and feels the same about women, too. `;
+				} else if (child.attrXX <= 85) {
+					r += `but <span class="green">is attracted to women.</span> `;
+				} else if (child.attrXX <= 95) {
+					r += `<span class="green">strongly preferring women.</span> `;
+				} else {
+					r += `but is <span class="green">passionate about women.</span> `;
+				}
+			} else if (child.attrXY <= 85) {
+				r += `${He} <span class="green">finds men attractive,</span> `;
+				if (child.attrXX <= 5) {
+					r += `but is <span class="red">disgusted by the idea of intimacy with a woman.</span> `;
+				} else if (child.attrXX <= 15) {
+					r += `but is <span class="red">turned off by women.</span> `;
+				} else if (child.attrXX <= 35) {
+					r += `but is <span class="red">unenthusiastic about women.</span> `;
+				} else if (child.attrXX <= 65) {
+					r += `but is indifferent to women. `;
+				} else if (child.attrXX <= 85) {
+					r += `and <span class="green">likes women too.</span> `;
+				} else if (child.attrXX <= 95) {
+					r += `but <span class="green">likes women even more.</span> `;
+				} else {
+					r += `but is really <span class="green">passionate about women.</span> `;
+				}
+			} else if (child.attrXY <= 95) {
+				r += `${He} <span class="green">is aroused by most men,</span> `;
+				if (child.attrXX <= 5) {
+					r += `but is <span class="red">disgusted by the idea of intimacy with a woman.</span> `;
+				} else if (child.attrXX <= 15) {
+					r += `but is <span class="red">turned off by women.</span> `;
+				} else if (child.attrXX <= 35) {
+					r += `but is <span class="red">unenthusiastic about women.</span> `;
+				} else if (child.attrXX <= 65) {
+					r += `but is indifferent to women. `;
+				} else if (child.attrXX <= 85) {
+					r += `and <span class="green">likes women too.</span> `;
+				} else if (child.attrXX <= 95) {
+					r += `and <span class="green">thinks most women are hot,</span> too. `;
+				} else {
+					r += `but is most <span class="green">passionate about women.</span> `;
+				}
+			} else {
+				r += `${He}'s <span class="green">omnisexual,</span> and is passionately attracted to nearly everyone. `;
+				if (child.attrXX > 95) {
+					r += `${He}'s <span class="green">omnisexual,</span> and is passionately attracted to nearly everyone. `;
+				} else {
+					r += `${He}'s <span class="green">passionate about men,</span> `;
+					if (child.attrXX <= 5) {
+						r += `${He}'s <span class="green">passionate about men,</span> `;
+					} else if (child.attrXX <= 15) {
+						r += `but is <span class="red">disgusted by the idea of intimacy with a woman.</span> `;
+					} else if (child.attrXX <= 35) {
+						r += `but is <span class="red">turned off by women.</span> `;
+					} else if (child.attrXX <= 65) {
+						r += `but is <span class="red">unenthusiastic about women.</span> `;
+					} else if (child.attrXX <= 85) {
+						r += `but is indifferent to women. `;
+					} else if (child.attrXX <= 95) {
+						r += `but also <span class="green">likes women,</span> too. `;
+					} else {
+						r += `but also <span class="green">thinks most women are hot,</span> too. `;
+					}
+				}
+			}
+		} else {
+			r += `You do not understand ${his} sexuality very well. `;
+		}
+
+		if (!V.saleDescription && !V.eventDescription) {
+			if (canSee(child) && child.attrKnown) {
+				if (child.attrXX > 85 && PC.boobs) {
+					r += `${His} attraction to women is obvious: ${he} can't seem to stop staring at your breasts. `;
+				} else if (child.attrXY > 85 && PC.dick) {
+					r += `${His} attraction to men is obvious: ${he} can't seem to stop glancing down at your package. `;
+				} else if (child.attrXY > 85 && !PC.boobs) {
+					r += `${His} attraction to men is obvious: ${he} can't seem to stop checking out your broad chest. `;
+				}
+			}
+		}
+
+		switch (child.behavioralFlaw) {
+			case "arrogant":
+				if (child.devotion < -20 && child.trust >= -20) {
+					r += `${He} is still <span class="red">arrogant</span> at heart, but does ${his} best to hide it out of fear. `;
+				} else if (child.devotion < -20) {
+					r += `${He} is <span class="red">arrogant</span> and seems to think slavery beneath ${him}. `;
+				} else if (child.devotion <= 20) {
+					r += `Despite being well broken, ${he} seems to retain hints of <span class="red">arrogance.</span> `;
+				} else {
+					r += `${He} is <span class="red">bitchy</span> and insults you every chance ${he} gets. `;
+				}
+				break;
+			case "bitchy":
+				if (child.devotion < -20 && child.trust >= -20) {
+					r += `${He} is still <span class="red">bitchy</span> at times, but does ${his} best to keep quiet out of fear. `;
+				} else if (child.devotion < -20) {
+					r += `${He} is <span class="red">bitchy</span> and constantly tries to get a word in edgewise. `;
+				} else if (child.devotion <= 20) {
+					r += `Since ${he} is well broken, ${he} tries to confine ${his} <span class="red">bitchy</span> remarks to your other slaves. `;
+				} else {
+					r += `${He} strongly believes that <span class="red">slavery is wrong,</span> and resists it as best ${he} can. `;
+				}
+				break;
+			case "liberated":
+				if (child.devotion < -20 && child.trust >= -20) {
+					r += `${He} strongly believes that <span class="red">slavery is wrong,</span> but usually keeps quiet out of fear. `;
+				} else if (child.devotion < -20) {
+					r += `${He} strongly believes that <span class="red">slavery is wrong,</span> and rarely misses a chance to complain about it. `;
+				} else if (child.devotion <= 20) {
+					r += `${He} strongly believes that <span class="red">slavery is wrong,</span> but has learned to keep it to ${himself}. `;
+				} else {
+					r += `${He} is <span class="red">devoutly religious,</span> `;
+				}
+				break;
+			case "devout":
+				if (child.devotion < -20 && child.trust >= -20) {
+					r += `and uses ${his} faith as a wellspring of resistance. `;
+				} else if (child.devotion < -20) {
+					r += `and uses ${his} faith as a place of refuge. `;
+				} else if (child.devotion <= 20) {
+					r += `and uses ${his} faith as a private place within ${himself}. `;
+				} else {
+					r += `but has learned to keep ${his} faith private. `;
+				}
+				break;
+			case "odd":
+				r += `${He} behaves <span class="red">oddly,</span> saying and doing random things. `;
+				break;
+			case "hates men":
+				r += `${He} <span class="red">strongly dislikes</span> being around `;
+				if (child.attrXY >= 85 && child.energy >= 40) {
+					r += `men; since ${he} loves the dick, ${he}'s forced to put up with them. `;
+				} else if (child.attrXY >= 65 && child.energy >= 40) {
+					r += `men; since ${he} likes the dick, ${he} reluctantly puts up with them. `;
+				} else {
+					r += `men. `;
+				}
+				break;
+			case "hates women":
+				r += `${He} <span class="red">strongly dislikes</span> being around `;
+				if (child.attrXX >= 85 && child.energy >= 40) {
+					r += `women; since ${he} loves pussy, ${he}'s forced to put up with them. `;
+				} else if (child.attrXX >= 65 && child.energy >= 40) {
+					r += `women; since ${he} likes pussy, ${he} reluctantly puts up with them. `;
+				} else {
+					r += `women. `;
+				}
+				break;
+			case "anorexic":
+				r += `${He} suffers from <span class="red">anorexia.</span> `;
+				break;
+			case "gluttonous":
+				r += `${He} <span class="red">tends to overeat</span> whenever ${he} can, reacting to the rigors of sexual slavery with overeating. `;
+				break;
+		}
+
+		switch (child.behavioralQuirk) {
+			case "confident":
+				r += `${He}'s <span class="green">confident,</span> and believes that ${he} has something of value to offer, even as a slave. `;
+				break;
+			case "cutting":
+				r += `${He} often has a witty or <span class="green">cutting</span> remark ready, but knows when to keep them to ${himself}. `;
+				break;
+			case "funny":
+				r += `${He}'s <span class="green">funny,</span> often providing a little comic relief. `;
+				break;
+			case "adores men":
+				r += `${He} <span class="green">adores women,</span> and loves spending time with them. `;
+				break;
+			case "adores women":
+				r += `${He} <span class="green">adores men,</span> and loves spending time with them. `;
+				break;
+			case "fitness":
+				r += `${He}'s a <span class="green">fitness fanatic,</span> and almost gets off to a hard workout. `;
+				break;
+			case "insecure":
+				r += `${He}'s <span class="green">insecure,</span> defining ${his} self worth by how much others want to fuck ${him}. `;
+				break;
+			case "sinful":
+				if (arcology.FSChattelRelionist === "unset") {
+					r += `${He}'s delightfully <span class="green">sinful,</span> taking real pleasure in breaking cultural mores. `;
+				} else {
+					r += `${He}'s a devout Chattel Religionist, and is aggressively <span class="green">sinful</span> against old world faiths. ${He} is enthusiastic about slutty religious clothing, and excited by intentional sacrilege like openly using old world religious icons as sex toys or having orgies on altars. `;
+				}
+				break;
+			case "advocate":
+				r += `${He}'s an <span class="green">advocate</span> for slavery, and can articulate what it's done for ${him}. `;
+				break;
+		}
+
+		switch (child.sexualFlaw) {
+			case "hates oral":
+				r += `${He} <span class="red">hates</span> oral sex and tries to avoid it. `;
+				break;
+			case "hates anal":
+				r += `${He} <span class="red">hates</span> anal sex and tries to avoid it. `;
+				break;
+			case "hates penetration":
+				r += `${He} <span class="red">hates</span> penetration and tries to avoid it. `;
+				break;
+			case "repressed":
+				r += `${He} is <span class="red">sexually repressed,</span> retaining a fundamental distaste for sex from ${his} upbringing. `;
+				break;
+			case "idealistic":
+				r += `${He} is <span class="red">sexually idealistic,</span> retaining a belief that sex should be based on love and consent. `;
+				break;
+			case "shamefast":
+				r += `${He} is <span class="red">shamefast,</span> suffering crippling anxiety when naked. `;
+				break;
+			case "apathetic":
+				r += `${He} is <span class="red">sexually apathetic,</span> often slipping into inertness during sex. `;
+				break;
+			case "crude":
+				r += `${He} is <span class="red">sexually crude,</span> and has little sense of what partners find disgusting during sex. `;
+				break;
+			case "judgemental":
+				r += `${He} is <span class="red">sexually judgemental,</span> and often denigrates ${his} sexual partners' performance. `;
+				break;
+			case "cum addict":
+				r += `${He}'s a <span class="yellow">cum addict:</span> ${he} has a deep psychological addiction to ${PC.dick ? `semen` : PC.dick && PC.vagina ? ` and ` : PC.vagina ? `pussyjuice` : ``} and becomes anxious if ${he} goes for a few hours without drinking any. `;
+				break;
+			case "anal addict":
+				r += `${He}'s an <span class="yellow">anal addict:</span> ${he} has a deep psychological need to be fucked in the ass and becomes anxious if ${he} goes for a few hours without anal. `;
+				break;
+			case "attention whore":
+				r += `${He}'s an <span class="yellow">attention whore:</span> shocking and titillating spectators is more important to ${him} than the actual pleasure of sex. `;
+				break;
+			case "breast growth":
+				r += `${He} has a <span class="yellow">breast growth obsession:</span> ${he}'s nearly incapable of believing that ${his} breasts are big enough. `;
+				break;
+			case "abusive":
+				r += `${He}'s sexually <span class="yellow">abusive:</span> ${he} prefers taking sexual pleasure by force to having it offered to ${him}. `;
+				break;
+			case "malicious":
+				r += `${He}'s sexually <span class="yellow">malicious:</span> ${he} gets off on others' anguish. `;
+				break;
+			case "self hating":
+				r += `${He}'s filled with <span class="yellow">self hatred,</span> and is disturbingly willing to comply with things that might hurt ${him}. `;
+				break;
+			case "neglectful":
+				r += `${He}'s sexually <span class="yellow">self neglectful,</span> and often shows no interest in getting off ${himself}. `;
+				break;
+			case "breeder":
+				r += `${He}'s <span class="yellow">obsessed with being bred</span> to the point of fetishizing pregnancy itself as much as any act that leads to it. `;
+				break;
+		}
+
+		switch (child.sexualQuirk) {
+			case "gagfuck queen":
+				r += `${He}'s a <span class="green">gagfuck queen:</span> ${he}'s able to safely take a rough facefuck. `;
+				break;
+			case "painal queen":
+				r += `${He}'s a <span class="green">painal queen:</span> ${he} knows exactly how much ${he} can take without getting hurt. `;
+				break;
+			case "strugglefuck queen":
+				r += `${He}'s a <span class="green">strugglefuck queen:</span> ${he} can gauge exactly how much resistance ${his} partners want. `;
+				break;
+			case "tease":
+				r += `${He}'s a <span class="green">tease,</span> and often displays a little flash of ${himself} followed by a blush. `;
+				break;
+			case "romantic":
+				r += `${He}'s a <span class="green">romantic,</span> and persists in innocent pleasure in the closeness of sex. `;
+				break;
+			case "perverted":
+				r += `${He}'s <span class="green">perverted,</span> and enjoys breaking sexual boundaries. `;
+				break;
+			case "caring":
+				r += `${He}'s <span class="green">caring,</span> and enjoys bringing partners pleasure more than getting off ${himself}. `;
+				break;
+			case "unflinching":
+				r += `${He}'s <span class="green">unflinching,</span> willing to do anything, even by the standards of sex slaves. `;
+				break;
+			case "size queen":
+				r += `${He}'s <span class="green">a size queen;</span> preferring big cock is almost ${his} trademark. `;
+				break;
+		}
+
+		if (child.fetishKnown) {
+			switch (child.fetish) {
+				case "submissive":
+					if (child.sexualFlaw === "apathetic") {
+						r += `This sexual apathy plays into ${his} preference for <span class="lightcoral">submission.</span> `;
+					} else if (child.behavioralFlaw === "arrogant") {
+						r += `${His} arrogance is really just a thin shell to protect ${his} true need to <span class="lightcoral">submit.</span> `;
+					} else if (child.fetishStrength > 95) {
+						r += `${He}'s an extreme <span class="lightcoral">submissive,</span> and relishes the strictures of slavery. `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He}'s a confirmed <span class="lightcoral">submissive,</span> and enjoys the strictures of slavery. `;
+					} else {
+						r += `${He} has <span class="lightcoral">submissive</span> tendencies, and likes the strictures of slavery. `;
+					}
+					break;
+				case "cumslut":
+					if (child.sexualFlaw === "hates oral") {
+						r += `${He}'s torn between ${his} <span class="lightcoral">love of semen</span> and ${his} dislike of having cocks in ${his} mouth. `;
+					} else if (child.fetishStrength > 95) {
+						r += `${He}'s a <span class="lightcoral">cumslut,</span> and loves giving blowjobs and receiving facials. `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He} <span class="lightcoral">prefers giving oral,</span> and enjoys sucking dick and receiving facials. `;
+					} else {
+						r += `${He} has an <span class="lightcoral">oral fixation,</span> and likes giving blowjobs and receiving facials. `;
+					}
+					break;
+				case "humiliation":
+					if (child.behavioralFlaw === "bitchy") {
+						r += `${His} bitchiness is really just an expression of ${his} deep need to be <span class="lightcoral">humiliated</span> ${himself}. `;
+					} else if (child.sexualFlaw === "shamefast") {
+						r += `${His} shame is genuine, and it is with real self-loathing that ${he} <span class="lightcoral">gets off on humiliation.</span> `;
+					} else if (child.fetishStrength > 95) {
+						r += `${He}'s a slut for <span class="lightcoral">humiliation,</span> and gets off on having others see ${his} enslavement. `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He} enjoys <span class="lightcoral">humiliating</span> sex. `;
+					} else {
+						r += `${He} likes <span class="lightcoral">embarrassing</span> sex. `;
+					}
+					break;
+				case "buttslut":
+					if (child.sexualFlaw === "hates anal") {
+						r += `${His} hatred is just pretense to cover ${his} shame about how much ${he} really loves getting <span class="lightcoral">fucked in the butt.</span> `;
+					} else if (child.fetishStrength > 95) {
+						r += `${He}'s a <span class="lightcoral">buttslut,</span> happy to have anyone put anything up ${his} ass. `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He} <span class="lightcoral">prefers anal.</span> `;
+					} else {
+						r += `${He} has an <span class="lightcoral">anal fixation.</span> `;
+					}
+					break;
+				case "boobs":
+					if (child.fetishStrength > 95) {
+						r += `${He} <span class="lightcoral">prefers mammary intercourse</span> to any other kind of sex, and readily climaxes to nipple stimulation. `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He} enjoys <span class="lightcoral">breast play,</span> and is rapidly aroused by nipple stimulation. `;
+					} else {
+						r += `${He} <span class="lightcoral">really likes boobs,</span> ${hers} and others. `;
+					}
+					break;
+				case "pregnancy":
+					if (child.fetishStrength > 95) {
+						r += `${He} has a <span class="lightcoral">pregnancy fetish,</span> and finds anything related to reproduction sexy. `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He} has an <span class="lightcoral">impregnation fantasy,</span> and enjoys bareback sex. `;
+					} else {
+						r += `${He} has a recurring <span class="lightcoral">impregnation fantasy.</span> `;
+					}
+					break;
+				case "dom":
+					if (child.sexualFlaw === "apathetic") {
+						r += `${He} is at war with ${himself}, since ${his} habitual apathy during sex barely masks a desire to <span class="lightcoral">dominate.</span> `;
+					} else if (child.fetishStrength > 95) {
+						r += `${He} is a <span class="lightcoral">complete dom;</span> with other slaves this is expressed as a strong preference to top, and with ${his} betters ${he}'s an almost competitive lover. `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He} likes to take an active, powerful role in sex; with other slaves this is expressed as <span class="lightcoral">dominance,</span> and with ${his} betters ${he}'s a very energetic lover. `;
+					} else {
+						r += `${He} prefers to take a <span class="lightcoral">dominant</span> sexual role. `;
+					}
+					break;
+				case "sadist":
+					if (child.fetishStrength > 95) {
+						r += `${He} is an <span class="lightcoral">aggressive sadist;</span> ${he}'s constantly plotting to control, abuse, and hurt other slaves. `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He} has <span class="lightcoral">sadistic tendencies;</span> ${he} enjoys watching other slaves in pain, but truly loves causing pain ${himself}. `;
+					} else {
+						r += `${He} gets off on <span class="lightcoral">the suffering of others;</span> ${he} enjoys watching other slaves in pain. `;
+					}
+					break;
+				case "masochist":
+					if (child.fetishStrength > 95) {
+						r += `${He} is a <span class="lightcoral">pain slut.</span> `;
+					} else if (child.fetishStrength > 60) {
+						r += `${He} <span class="lightcoral">gets off on pain,</span> showing strong masochistic tendencies. `;
+					} else {
+						r += `${He} <span class="lightcoral">doesn't mind pain,</span> and shows some masochistic tendencies. `;
+					}
+					break;
+				default:
+					r += `${His} sexual tastes are <span class="pink">quite normal.</span> `;
+					break;
+			}
+		} else {
+			r += `${His} fetishes, if any, are not known to you. `;
+		}
+
+		if (child.attrKnown) {
+			if (child.energy > 95) {
+				r += `${He}'s a <span class="green">nymphomaniac.</span> `;
+			} else if (child.energy > 80) {
+				r += `${He}'s a <span class="green">sex addict.</span> `;
+			} else if (child.energy > 60) {
+				r += `${He} has a <span class="green">powerful appetite for sex.</span> `;
+			} else if (child.energy > 40) {
+				r += `${He} has a <span class="yellow">healthy sex drive.</span> `;
+			} else if (child.energy > 20) {
+				r += `${He} has a <span class="red">weak sex drive.</span> `;
+			} else {
+				r += `${He}'s <span class="red">frigid,</span> with little interest in sex. `;
+			}
+
+			if (child.attrXY <= 5) {
+				if (child.attrXX <= 5) {
+					r += `${He}'s a <span class="green">nymphomaniac.</span> `;
+				} else {
+					r += `${He}'s a <span class="green">sex addict.</span> `;
+					if (child.attrXX <= 15) {
+						r += `${He} has a <span class="green">powerful appetite for sex.</span> `;
+					} else if (child.attrXX <= 35) {
+						r += `${He} has a <span class="yellow">healthy sex drive.</span> `;
+					} else if (child.attrXX <= 65) {
+						r += `${He} has a <span class="red">weak sex drive.</span> `;
+					} else if (child.attrXX <= 85) {
+						r += `${He}'s <span class="red">frigid,</span> with little interest in sex. `;
+					} else if (child.attrXX <= 95) {
+						r += `${He} <span class="red">finds both men's and women's intimate areas quite repulsive,</span> an unfortunate state of affairs! `;
+					} else {
+						r += `${He} <span class="red">finds men sexually disgusting,</span> `;
+					}
+				}
+			} else if (child.attrXY <= 15) {
+				r += `${He} <span class="red">considers men's bodies a turnoff,</span> `;
+				if (child.attrXX <= 5) {
+					r += `and is <span class="red">actually disgusted by women's.</span> `;
+				} else if (child.attrXX <= 15) {
+					r += `and <span class="red">feels the same about women's.</span> `;
+				} else if (child.attrXX <= 35) {
+					r += `and is <span class="red">unenthusiastic about women.</span> `;
+				} else if (child.attrXX <= 65) {
+					r += `and ${he} is indifferent to women. `;
+				} else if (child.attrXX <= 85) {
+					r += `but <span class="green">is attracted to women.</span> `;
+				} else if (child.attrXX <= 95) {
+					r += `<span class="green">strongly preferring women.</span> `;
+				} else {
+					r += `but is <span class="green">passionate about women.</span> `;
+				}
+			} else if (child.attrXY <= 35) {
+				r += `${He} is <span class="red">finds most men unattractive,</span> `;
+				if (child.attrXX <= 5) {
+					r += `and is <span class="red">disgusted by the idea of intimacy with a woman.</span> `;
+				} else if (child.attrXX <= 15) {
+					r += `and is <span class="red">turned off by women.</span> `;
+				} else if (child.attrXX <= 35) {
+					r += `and is <span class="red">unenthusiastic about women.</span> `;
+				} else if (child.attrXX <= 65) {
+					r += `and ${he} is indifferent to women. `;
+				} else if (child.attrXX <= 85) {
+					r += `but <span class="green">is attracted to women.</span> `;
+				} else if (child.attrXX <= 95) {
+					r += `<span class="green">strongly preferring women.</span> `;
+				} else {
+					r += `but is <span class="green">passionate about women.</span> `;
+				}
+			} else if (child.attrXY <= 65) {
+				r += `${He}'s indifferent to sex with men, `;
+				if (child.attrXX <= 5) {
+					r += `but is <span class="red">disgusted by the idea of intimacy with a woman.</span> `;
+				} else if (child.attrXX <= 15) {
+					r += `but is <span class="red">turned off by women.</span> `;
+				} else if (child.attrXX <= 35) {
+					r += `but is <span class="red">actually unenthusiastic about women.</span> `;
+				} else if (child.attrXX <= 65) {
+					r += `and feels the same about women, too. `;
+				} else if (child.attrXX <= 85) {
+					r += `but <span class="green">is attracted to women.</span> `;
+				} else if (child.attrXX <= 95) {
+					r += `<span class="green">strongly preferring women.</span> `;
+				} else {
+					r += `but is <span class="green">passionate about women.</span> `;
+				}
+			} else if (child.attrXY <= 85) {
+				r += `${He} <span class="green">finds men attractive,</span> `;
+				if (child.attrXX <= 5) {
+					r += `but is <span class="red">disgusted by the idea of intimacy with a woman.</span> `;
+				} else if (child.attrXX <= 15) {
+					r += `but is <span class="red">turned off by women.</span> `;
+				} else if (child.attrXX <= 35) {
+					r += `but is <span class="red">unenthusiastic about women.</span> `;
+				} else if (child.attrXX <= 65) {
+					r += `but is indifferent to women. `;
+				} else if (child.attrXX <= 85) {
+					r += `and <span class="green">likes women too.</span> `;
+				} else if (child.attrXX <= 95) {
+					r += `but <span class="green">likes women even more.</span> `;
+				} else {
+					r += `but is really <span class="green">passionate about women.</span> `;
+				}
+			} else if (child.attrXY <= 95) {
+				r += `${He} <span class="green">is aroused by most men,</span> `;
+				if (child.attrXX <= 5) {
+					r += `but is <span class="red">disgusted by the idea of intimacy with a woman.</span> `;
+				} else if (child.attrXX <= 15) {
+					r += `but is <span class="red">turned off by women.</span> `;
+				} else if (child.attrXX <= 35) {
+					r += `but is <span class="red">unenthusiastic about women.</span> `;
+				} else if (child.attrXX <= 65) {
+					r += `but is indifferent to women. `;
+				} else if (child.attrXX <= 85) {
+					r += `and <span class="green">likes women too.</span> `;
+				} else if (child.attrXX <= 95) {
+					r += `and <span class="green">thinks most women are hot,</span> too. `;
+				} else {
+					r += `but is most <span class="green">passionate about women.</span> `;
+				}
+			} else {
+				r += `${He}'s <span class="green">omnisexual,</span> and is passionately attracted to nearly everyone. `;
+				if (child.attrXX > 95) {
+					r += `${He}'s <span class="green">omnisexual,</span> and is passionately attracted to nearly everyone. `;
+				} else {
+					r += `${He}'s <span class="green">passionate about men,</span> `;
+					if (child.attrXX <= 5) {
+						r += `${He}'s <span class="green">passionate about men,</span> `;
+					} else if (child.attrXX <= 15) {
+						r += `but is <span class="red">disgusted by the idea of intimacy with a woman.</span> `;
+					} else if (child.attrXX <= 35) {
+						r += `but is <span class="red">turned off by women.</span> `;
+					} else if (child.attrXX <= 65) {
+						r += `but is <span class="red">unenthusiastic about women.</span> `;
+					} else if (child.attrXX <= 85) {
+						r += `but is indifferent to women. `;
+					} else if (child.attrXX <= 95) {
+						r += `but also <span class="green">likes women,</span> too. `;
+					} else {
+						r += `but also <span class="green">thinks most women are hot,</span> too. `;
+					}
+				}
+			}
+		} else {
+			r += `You do not understand ${his} sexuality very well. `;
+		}
+	}
+
+	if (!V.saleDescription && !V.eventDescription) {
+		if (canSee(child) && child.attrKnown) {
+			if (child.attrXX > 85 && PC.boobs) {
+				r += `${His} attraction to women is obvious: ${he} can't seem to stop staring at your breasts. `;
+			} else if (child.attrXY > 85 && PC.dick) {
+				r += `${His} attraction to men is obvious: ${he} can't seem to stop glancing down at your package. `;
+			} else if (child.attrXY > 85 && !PC.boobs) {
+				r += `${His} attraction to men is obvious: ${he} can't seem to stop checking out your broad chest. `;
+			}
+		}
+	}
+
+	if (V.showBodyMods) {
+		if (["cheeks", "ears", "left cheek", "left ears", "neck", "right cheek", "right ears"].includes(child.brandLocation)) {
+			App.Desc.brand(child);
+		}
+	}
+
+	if (V.familyTesting) {
+		r += `<<Family>> `;
+
+		if (child.relationship >= 3 && totalRelatives(child) > 0) {
+			const lover = getSlave(child.relationshipTarget);
+			if (typeof lover !== "undefined") {
+				if (child.mother === lover.ID) {
+					r += `${He} is in an <span class="lightgreen">incestuous relationship with ${his} mother, ${SlaveFullName(lover)}.</span> `;
+				} else if (child.father === lover.ID) {
+					r += `${He} is in an <span class="lightgreen">incestuous relationship with ${his} father, ${SlaveFullName(lover)}.</span> `;
+				} else if (lover.mother === child.ID || lover.father === child.ID) {
+					r += `${He} is in an <span class="lightgreen">incestuous relationship with ${his} daughter, ${SlaveFullName(lover)}.</span> `;
+				} else {
+					switch (areSisters(child, lover)) {
+						case 1:
+							r += `${He} is in an <span class="lightgreen">incestuous relationship with ${his} twin, ${SlaveFullName(lover)}.</span> `;
+							break;
+						case 2:
+							r += `${He} is in an <span class="lightgreen">incestuous relationship with ${his} sister, ${SlaveFullName(lover)}.</span> `;
+							break;
+						case 3:
+							r += `${He} is in an <span class="lightgreen">incestuous relationship with ${his} half-sister, ${SlaveFullName(lover)}.</span> `;
+							break;
+					}
+				}
+			}
+		} else if (child.relationship <= -2) {
+			if (child.mother === -1 || child.father === -1) {
+				if (child.mother === -1 && child.father === -1) {
+					r += `${He} is in an <span class="lightgreen">incestuous relationship with ${his} sole parent, you.</span> `;
+				} else if (child.mother === -1) {
+					r += `${He} is in an <span class="lightgreen">incestuous relationship with ${his} mother, you.</span> `;
+				} else if (child.father === -1) {
+					r += `${He} is in an <span class="lightgreen">incestuous relationship with ${his} father, you.</span> `;
+				}
+			} else if (areSisters(PC, child) === 1) {
+				if (PC.title === 1) {
+					r += `${He} is in an <span class="lightgreen">incestuous relationship with ${his} twin brother, you.</span> `;
+				} else if (PC.title === 0) {
+					r += `${He} is in an <span class="lightgreen">incestuous relationship with ${his} twin sister, you.</span> `;
+				}
+			} else if (areSisters(PC, child) === 2) {
+				if (PC.title === 1) {
+					r += `${He} is in an <span class="lightgreen">incestuous relationship with ${his} brother, you.</span> `;
+				} else if (PC.title === 0) {
+					r += `${He} is in an <span class="lightgreen">incestuous relationship with ${his} sister, you.</span> `;
+				}
+			} else if (areSisters(PC, child) === 3) {
+				if (PC.title === 1) {
+					r += `${He} is in an <span class="lightgreen">incestuous relationship with ${his} half-brother, you.</span> `;
+				} else if (PC.title === 0) {
+					r += `${He} is in an <span class="lightgreen">incestuous relationship with ${his} half-sister, you.</span> `;
+				}
+			}
+		}
+	} else {
+		if (child.relation !== 0) {
+			let lcd = V.slaveIndices[child.relationTarget]; // TODO: child.relationTarget does not exist
+			if (typeof lcd !== "undefined") {
+				if (slaves[lcd].ID === child.relationshipTarget && child.relationship >= 3) {
+					r += `${He} is <span class="lightgreen">${SlaveFullName(slaves[lcd])}'s $activeChild.relation, making their relationship incestuous.</span> `;
+				} else {
+					r += `${He} is <span class="lightgreen">${SlaveFullName(slaves[lcd])}'s $activeChild.relation.</span> `;
+				}
+			}
+		}
+	}
+
+	if (child.rivalry) {
+		let lcd = V.slaveIndices[child.rivalryTarget];
+		if (typeof lcd !== "undefined") {
+			r += `${He} `;
+			if (child.rivalry <= 1) {
+				r += `<span class="lightsalmon">dislikes</span> SlaveFullName($slaves[Lcd])>>. `;
+			} else if (child.rivalry <= 2) {
+				r += `is SlaveFullName($slaves[Lcd])>>'s <span class="lightsalmon">rival.</span> `;
+			} else {
+				r += `<span class="lightsalmon">bitterly hates</span> SlaveFullName($slaves[Lcd])>>. `;
+			}
+		}
+	}
+	r += `<br>&nbsp;&nbsp;&nbsp;&nbsp; `;
+
+	if (child.prestige > 0) { // TODO: child objects do not have prestige properties
+		if (child.prestigeDesc) {
+			r += `${child.prestigeDesc} `;
+		}
+		if (child.prestige > 2) {
+			r += `It is extremely prestigious to own ${him}. `;
+		} else if (child.prestige > 1) {
+			r += `It is quite prestigious to own ${him}. `;
+		} else {
+			r += `It is fairly prestigious to own ${him}. `;
+		}
+	}
+
+	if (child.pornPrestige > 0) {
+		if (child.pornPrestigeDesc) {
+			r += `${child.pornPrestigeDesc} `;
+		}
+	}
+	if (child.pornPrestige > 2) {
+		r += `As such, ${he} tends to gain a following wherever ${he} goes. `;
+	} else if (child.pornPrestige > 1) {
+		r += `As such, ${he} is recognized often. `;
+	} else {
+		r += `As such, ${he} is recognized occasionally. `;
+	}
+
+	if (child.prestige > 0 || child.pornPrestige > 1) {
+		if (child.markings === "birthmark") {
+			r += `${He} has a large, liver-colored birthmark, but since ${he}'s well known, this uniqueness adds to ${his} beauty rather than detracting from it. `;
+		}
+	}
+
+	if (child.skill.whoring <= 10) {
+		if (child.skill.entertainment <= 10) {
+			r += `${He} is somewhat entertaining. `;
+		} else if (child.skill.entertainment <= 30) {
+			r += `${He} is <span class=aquamarine>reasonably entertaining.</span> `;
+		} else if (child.skill.entertainment <= 60) {
+			r += `${He} is a <span class=aquamarine>skilled entertainer.</span> `;
+		} else if (child.skill.entertainment < 100) {
+			r += `${He} is an <span class=aquamarine>expert entertainer.</span> `;
+		} else {
+			r += `${He} is a <span class=aquamarine>master of entertainment.</span> `;
+		}
+	} else {
+		if (child.skill.entertainment <= 10) {
+			r += `${He} is somewhat entertaining and `;
+		} else if (child.skill.entertainment <= 30) {
+			r += `${He} is <span class=aquamarine>reasonably entertaining</span> and `;
+		} else if (child.skill.entertainment <= 60) {
+			r += `${He} is a <span class=aquamarine>skilled entertainer</span> and `;
+		} else if (child.skill.entertainment < 100) {
+			r += `${He} is an <span class=aquamarine>expert entertainer</span> and `;
+		} else {
+			r += `${He} is a <span class=aquamarine>master of entertainment</span> and `;
+		}
+	}
+	if (child.skill.whoring <= 10) {
+		r += `${He} has very little experience in selling ${his} body. `;
+	} else if (child.skill.whoring <= 30) {
+		if (child.skill.entertainment <= 10) {
+			r += `${He} `;
+		}
+		r += `has <span class=aquamarine>basic experience as a prostitute.</span>`;
+	} else if (child.skill.whoring <= 60) {
+		if (child.skill.entertainment <= 10) {
+			r += `${He} is `;
+		}
+		r += `a <span class=aquamarine>skilled streetwalker.</span>`;
+	} else if (child.skill.whoring < 100) {
+		if (child.skill.entertainment <= 10) {
+			r += `${He} is `;
+		}
+		r += `an <span class=aquamarine>expert working $girl.</span>`;
+	} else {
+		if (child.skill.entertainment <= 10) {
+			r += `${He} is `;
+		}
+		r += `a <span class=aquamarine>masterful whore.</span>`;
+	}
+
+	if (child.custom.def !== "" && typeof child.custom.desc !== "undefined") {
+		r += `${child.custom.desc} `;
+	}
+
+	r += `${His} body is a perfect example of `;
+	if (arcology.FSGenderFundamentalistLawBeauty + arcology.FSGenderRadicalistLawBeauty > 0) {
+		if (V.genderLawPass) {
+			r += `the fashionable feminine ideal. `;
+		}
+	} else if (arcology.FSSlimnessEnthusiastLaw) {
+		if (slimPass(child)) {
+			r += `the fashionable flat ideal. `;
+		}
+	} else if (arcology.FSHedonisticDecadanceLaw2) {
+		if (child.boobs >= 2000 && child.butt >= 5 && child.weight > 95) {
+			r += `the fashionable plump body. `;
+		}
+	}
+
+	if (arcology.FSRestartSMR > 0 && arcology.FSRestart > 80 && !child.dick && !child.balls && !child.ovaries && !child.mpreg && child.vagina < 0) {
+		r += `a subhuman who accepted their place in society. `;
+	}
+
+	if (V.showScores) {
+		FResult(child);
+		r += `Currently, ${he} has an <span class="pink"><strong>attractiveness score</strong> of <strong><u>${beauty}</u></strong></span> and a <span class="lightcoral"><strong>sexual score</strong> of <strong><u>${V.FResult}</u></strong>.</span> `;
+	}
+
+	r += `<br>&nbsp;&nbsp;&nbsp;&nbsp;`;
+
+	if (child.amp) {
+		r += App.Desc.amputee(child);
+	}
+
+	r += `<<ClothingDescription>>`;
+	if (V.showBodyMods) {
+		r += `<<<clothingCorsetDescription>>`;
+	}
+
+	if (V.showClothing && !V.saleDescription) {
+		r += `${He}`;
+	} else {
+		r += `${child.slaveName}`;
+	}
+	let averageHeight = Height.mean(child);
+
+	r += ` is `;
+
+	if (child.height <= averageHeight + 5 && child.height >= averageHeight - 5) {
+		r += `an average height`;
+		if (child.physicalAge < 16) {
+			r += ` for ${his} age`;
+		}
+	} else if (child.height < averageHeight - 15) {
+		r += `petite`;
+		if (child.physicalAge < 16) {
+			r += ` for ${his} age`;
+		}
+	} else if (child.height < averageHeight - 5) {
+		r += `short`;
+		if (child.physicalAge < 16) {
+			r += ` for ${his} age`;
+		}
+	} else if (child.height > averageHeight + 15) {
+		r += `very tall`;
+		if (child.physicalAge < 16) {
+			r += ` for ${his} age`;
+		}
+	} else if (child.height > averageHeight + 5) {
+		r += `tall`;
+		if (child.physicalAge < 16) {
+			r += ` for ${his} age`;
+		}
+	}
+	if (V.showHeightCMs) {
+		r += ` at ${heightToEitherUnit(child.height)},`;
+	}
+
+	r += ` and `;
+
+	if (child.weight > 190) {
+		if (arcology.FSHedonisticDecadance !== "unset") {
+			r += `${jsEither("perfectly curvy", "perfectly plush")}. `;
+		} else {
+			r += `<span class="red>${jsEither("dangerously fat", "dangerously overweight", "extremely obese")}</span>. `;
+		}
+	} else if (child.weight > 160) {
+		if (arcology.FSHedonisticDecadance !== "unset") {
+			r += `${jsEither("spectacularly curvy", "spectacularly plush")}. `;
+		} else {
+			r += `<span class="red">${jsEither("extremely fat", "extremely overweight")}</span>. `;
+		}
+	} else if (child.weight > 130) {
+		if (arcology.FSHedonisticDecadance !== "unset") {
+			r += `${jsEither("amazingly curvy", "amazingly plush")}. `;
+		} else {
+			r += `<span class="red">${jsEither("very overweight", "obese", "very fat")}</span>. `;
+		}
+	} else if (child.weight > 95) {
+		if (child.hips > 1) {
+			r += `${"extremely curvy", "extremely plush"}, but ${his} huge hips make the extra weight attractive on ${him}. `;
+		} else if (arcology.FSHedonisticDecadance !== "unset") {
+			r += `${jsEither("extremely curvy", "extremely plush")}. `;
+		} else {
+			r += `<span class="red">${jsEither("carrying a lot of extra weight", "fat", "overweight")}</span>. `;
+		}
+	} else if (child.weight > 30) {
+		if (child.hips > 1) {
+			r += `${jsEither("quite curvy", "very plush")}, but ${his} motherly hips make the extra weight attractive on ${him}. `;
+		} else if (arcology.FSHedonisticDecadance !== "unset") {
+			r += `${jsEither("quite curvy", "very plush")}. `;
+		} else {
+			r += `<span class="red">${jsEither("carrying extra weight", "chubby")}</span>. `;
+		}
+	} else if (child.weight > 10) {
+		r += `${jsEither("nicely plush", "pleasingly curvy")}. `;
+	} else if (child.weight >= -10) {
+		r += `${jsEither("a healthy weight", "an attractive weight")}. `;
+	} else if (child.weight >= -30) {
+		r += `${jsEither("appealingly skinny", "pleasingly thin")}. `;
+	} else if (child.weight >= -95) {
+		if (child.hips > 1) {
+			r += `${jsEither("quite skinny", "very thin")}, but ${his} wide hips make the gap between ${his} thighs very noticeable. `;
+		} else if (child.hips < -1) {
+			r += `${jsEither("quite skinny", "very thin")}, but ${his} trim hips make ${him} look like a model. `;
+		} else {
+			r += `<span class="red">${"rail thin", "too skinny", "unserweight"}</span>. `;
+		}
+	} else {
+		r += `<span class="red">${"dangerously skinny", "emaciated"}</span>. `;
+	}
+
+	if (child.hips > 2) {
+		r += `${His} hips are unrealistically wide; it is obvious they have been artificially widened. `;
+	}
+
+	r += App.Desc.waist(child);
+
+	if (arcology.FSGenderFundamentalistLawBeauty + arcology.FSGenderFundamentalistLawBeauty > 0) {
+		if (arcology.FSHedonisticDecadance === "unset" && arcology.FSPhyscialIdealistStrongFat === 0) {
+			if (child.weight > 130) {
+				r += `${He} is much too fat for the fashionable feminine ideal. `;
+			} else if (child.weight > 30) {
+				r += `${He} is too fat for the fashionable feminine ideal. `;
+			} else if (child.weight < -30) {
+				r += `${He} is too skinny for the fashionable feminine ideal. `;
+			}
+		} else {
+			if (child.weight > 130) {
+				r += `${He} is much too fat for the fashionable feminine ideal. `;
+			} else if (child.weight < -30) {
+				r += `${He} is too skinny for the fashionable feminine ideal. `;
+			}
+		}
+	} else if (arcology.FSSlimnessEnthusiastLaw === 1) {
+		if (arcology.FSHedonisticDecadance === "unset" && arcology.FSPhyscialIdealistStrongFat === 0) {
+			if (child.weight > 30) {
+				r += `${He} is much too fat for the fashionable feminine ideal. `;
+			} else if (child.weight > 10) {
+				r += `${He} is too fat for the fashionable feminine ideal. `;
+			}
+		} else {
+			if (child.weight > 60) {
+				r += `${He} is much too fat for the fashionable feminine ideal. `;
+			} else if (child.weight > 30) {
+				r += `${He} is too fat for the fashionable feminine ideal. `;
+			}
+		}
+	} else if (arcology.FSHedonisticDecadance2) {
+		if (child.weight <= 95) {
+			r += `${He} is too thin for the fashionable feminine ideal. `;
+		} else if (child.weight <= 10) {
+			r += `${He} is much too thin for the fashionable feminine ideal. `;
+		}
+	}
+
+	if (canWalk(child)) {
+		if (child.weight > (170 + child.muscles / 5) && child.physicalAge >= 18) {
+			r += `${He} is so fat that it is difficult for ${him} to move. `;
+			if (child.muscles > 95) {
+				r += `However, ${he} is so powerfully built that ${he} can manage it with effort, though ${he} often has to stop for breaks. `;
+			} else if (child.muscles > 30) {
+				r += `${He} can barely manage to get to ${his} feet unaided, and usually walks alongside objects to help relieve the weight. `;
+			} else if (child.muscles > 5) {
+				r += `${He} requires assistance to get to ${his} feet, and tends to lean on things to help relieve the weight. Much furniture has met an early demise thanks to this habit. `;
+			} else {
+				r += `${He} cannot get to ${his} feet unaided, and tries to stay seated as much as ${he} can. `;
+			}
+		} else if (child.weight > (110 + child.muscles / 20) && child.physicalAge <= 3) {
+			r += `${He} is so fat that it is difficult for ${him} to move. `;
+			if (child.muscles > 95) {
+				r += `However, ${he} is so powerfully built that ${he} can manage it with effort, though ${he} often has to stop for breaks. `;
+			} else if (child.muscles > 30) {
+				r += `${He} can barely manage to get to ${his} feet unaided, and usually walks alongside objects to help relieve the weight. `;
+			} else if (child.muscles > 5) {
+				r += `${He} requires assistance to get to ${his} feet, and tends to lean on things to help relieve the weight. Much furniture has met an early demise thanks to this habit. `;
+			} else {
+				r += `${He} cannot get to ${his} feet unaided, and tries to stay seated as much as ${he} can. `;
+			}
+		} else if (child.weight > (140 + child.muscles / 15) && child.physicalAge <= 12) {
+			r += `${He} is so fat that it is difficult for ${him} to move. `;
+			if (child.muscles > 95) {
+				r += `However, ${he} is so powerfully built that ${he} can manage it with effort, though ${he} often has to stop for breaks. `;
+			} else if (child.muscles > 30) {
+				r += `${He} can barely manage to get to ${his} feet unaided, and usually walks alongside objects to help relieve the weight. `;
+			} else if (child.muscles > 5) {
+				r += `${He} requires assistance to get to ${his} feet, and tends to lean on things to help relieve the weight. Much furniture has met an early demise thanks to this habit. `;
+			} else {
+				r += `${He} cannot get to ${his} feet unaided, and tries to stay seated as much as ${he} can. `;
+			}
+		} else if (child.weight > (165 + child.muscles / 10 && child.physicalAge < 18)) {
+			r += `${He} is so fat that it is difficult for ${him} to move. `;
+			if (child.muscles > 95) {
+				r += `However, ${he} is so powerfully built that ${he} can manage it with effort, though ${he} often has to stop for breaks. `;
+			} else if (child.muscles > 30) {
+				r += `${He} can barely manage to get to ${his} feet unaided, and usually walks alongside objects to help relieve the weight. `;
+			} else if (child.muscles > 5) {
+				r += `${He} requires assistance to get to ${his} feet, and tends to lean on things to help relieve the weight. Much furniture has met an early demise thanks to this habit. `;
+			} else {
+				r += `${He} cannot get to ${his} feet unaided, and tries to stay seated as much as ${he} can. `;
+			}
+		}
+	}
+
+	r += `<<heightImplantDescription>>`;
+
+	r += `${He} is `;
+	if (child.muscles > 95) {
+		r += `<span class="pink">extremely muscular,</span> with defined pecs, powerful glutes, and massive traps`;
+		if ($activeChild.weight > 95) {
+			r += ` hidden beneath a layer of fat`;
+		}
+		r += `. `;
+	} else if (child.muscles > 50) {
+		r += `<span class="pink">quite muscular,</span> with ripped abs, strong shoulders, and defined lats`;
+		if ($activeChild.weight > 95) {
+			r += ` hidden beneath a layer of fat`;
+		}
+		r += `. `;
+	} else if (child.muscles > 30) {
+		r += `<span class="pink">well built,</span> yet feminine with defined abs and strong shapely muscles`;
+		if ($activeChild.weight > 95) {
+			r += ` hidden beneath a layer of fat`;
+		}
+		r += `. `;
+	} else if (child.muscles > 5) {
+		r += `<span class="pink">well built,</span> yet feminine, with just-visible muscles`;
+		if ($activeChild.weight > 30) {
+			r += ` hidden beneath a layer of fat`;
+		}
+		r += `. `;
+	} else if (child.muscles >= -5) {
+		r += `<span class="pink">soft and feminine,</span> with no visible muscles. `;
+	} else if (child.muscles >= -30) {
+		r += `<span class="pink">rather weak,</span> with barely any muscles. `;
+	} else if (child.muscles >= -95) {
+		r += `<span class="pink">very weak;</span> ${he} struggles with day-to-day tasks. `;
+	} else {
+		r += `<span class="red">frail;</span> ${he} can barely hold ${himself} up. `;
+	}
+
+	if (arcology.FSGenderFundamentalistLawBeauty + arcology.FSGenderRadicalistLawBeauty + arcology.FSSlimnessEnthusiastLaw > 0 && arcology.FSPhyscialIdealist === "unset" && !arcology.FSHedonisticDecadanceStrongFat) {
+		if (arcology.FSPhyscialIdealistLaw > 0 && child.muscles > 50) {
+			r += `${He} is entirely too muscular for the fashionable feminine ideal. `;
+		} else if (child.muscles > 30) {
+			r += `${He} is entirely too muscular for the fashionable feminine ideal. `;
+		}
+	}
+
+	if (!child.amp) {
+		if (child.weight > 190) {
+			r += `${He} has hugely thick arms with sagging fat rolls and `;
+		} else if (child.weight > 160) {
+			r += `${He} has thick arms with drooping fat folds and `;
+		} else if (child.weight > 130) {
+			r += `${He} has plump arms with `;
+		} else if (child.weight > 97) {
+			r += `${He} has chubby arms with `;
+		} else {
+			r += `${He} has normal arms with `;
+		}
+	}
+
+	if (child.muscles > 95) {
+		r += `huge muscles`;
+		if (child.weight > 95) {
+			r += ` hidden beneath ${his} soft flesh `;
+		}
+		r += `. `;
+	} else if (child.muscles > 30) {
+		r += `obvious muscles`;
+		if (child.weight > 95) {
+			r += ` hidden beneath ${his} soft flesh `;
+		}
+		r += `. `;
+	} else if (child.muscles > 5) {
+		r += `toned muscles`;
+		if (child.weight > 30) {
+			r += ` hidden beneath ${his} soft flesh `;
+		}
+		r += `. `;
+	} else {
+		r += `little muscle to them. `;
+	}
+
+	if (child.skill.combat > 0) {
+		r += `${He} is <span class="aquamarine"skilled at combat:</span> ${he} is comfortable with the use of modern firearms and edges weapons, and ${his} hands `;
+		if (child.amp === -4) {
+			r += `would be deadly weapons even if they weren't full of deadly weapons already`;
+		} else if (child.amp > 0) {
+			r += `would be deadly weapons if ${he} had any`;
+		} else {
+			r += `are deadly weapons`;
+		}
+		r += `. `;
+	}
+
+	if (child.counter.pitKills > 0) {
+		r += `${child.counter.pitKills} slaves have died by ${his} hand in pit fights. `;
+	}
+
+	if (child.corsetPiercing > 0) {
+		r += `<<CorsetPiercingDescription>>`;
+	}
+
+	if (!child.amp) {
+		if (child.weight > 190) {
+			r += `${He} has extremely fat legs with immense soft, rather uneven thighs and `;
+		} else if (child.weight > 160) {
+			r += `${He} has very fat legs with massively thick, soft, somewhat uneven thighs and `;
+		} else if (child.weight > 130) {
+			r += `${He} has fat legs with hugely thick, soft thighs and `;
+		} else if (child.weight > 97) {
+			r += `${He} has fat legs with thick, soft thighs and `;
+		} else if (child.weight > 95) {
+			r += `${He} has normal legs with thick, soft thighs and `;
+		} else {
+			r += `${He} has relatively normal legs and thighs with `;
+		}
+
+		if (child.muscles > 95) {
+			r += `huge muscles`;
+			if (child.weight > 95) {
+				r += ` hidden beneath ${his} soft flab`;
+			}
+			r += `. `;
+		} else if (child.muscles > 30) {
+			r += `obvious muscles`;
+			if (child.weight > 95) {
+				r += ` hidden beneath ${his} soft flab`;
+			}
+			r += `. `;
+		} else if (child.muscles > 5) {
+			r += `tones muscles`;
+			if (child.weight > 30) {
+				r += ` hidden beneath ${his} soft flab`;
+			}
+			r += `. `;
+		} else {
+			r += `barely any muscle in them. `;
+		}
+	}
+
+	r += `<<heelDescription>>`;
+
+	if (V.showBodyMods) {
+		if (["ankles", "back", "calves", "chest", "feet", "hands", "left ankle", "left calf", "left foot", "left hand", "left lower arm", "left shoulder", "left upper arm", "left wrist", "lower arms", "lower back", "right ankle", "right calf", "right foot", "right hand", "right lower arm", "right shoulder", "right upper arm", "right wrist", "shoulders", "upper arms", "wrists"].includes(child.brandLocation)) {
+			r += App.Desc.brand(child);
+		}
+	}
+
+	r += `<<skinDescription>>`;
+
+	if (V.saleDescription) {
+		r += `<<accentDescription>>`;
+	}
+
+	if (child.markings === "birthmark" && !child.prestige && child.pornPrestige < 2) {
+		r += `${He} has a large, liver-colored birthmark, detracting from ${his} beauty. `;
+	}
+	if (child.skin === "sun tanned") {
+		if (child.releaseRules !== "restrictive" && child.releaseRules !== "masturbation" && child.releaseRules !== "chastity") {
+			if (child.fetishKnown && child.fetishStrength > 60) {
+				r += `${His} tan is slightly uneven, since ${he} enjoys`;
+				switch (child.fetish) {
+					case "buttslut":
+						r += `letting other tanned slaves share a tanning bed with ${him} so they can sodomize ${him} while ${he} tans. `;
+						break;
+					case "cumslut":
+						r += `letting other tanned slaves share a tanning bed with ${him} so they get oral from ${him} while ${he} tans. `;
+						break;
+					case "sadist":
+						r += `forcing inferior slaves into the tanning beds with ${him} so ${he} can sodomize them while ${he} tans. `;
+						break;
+					case "dom":
+						r += `bringing other slaves into the tanning beds with ${him} so ${he} can fuck them while ${he} tans. `;
+						break;
+					case "masochist":
+					case "submissive":
+						r += `letting other slaves into the tanning beds with ${him} so they can fuck ${him} while ${he} tans. `;
+						break;
+					case "boobs":
+						r += `bringing other slaves into the tanning beds with ${him} so ${he} can tittyfuck them while ${he} tans. `;
+						break;
+					case "pregnancy":
+						if (Math.random() * 100 < V.seeDicks) {
+							r += `letting slaves with dicks into the tanning beds with ${him} so they can cum inside ${him} while ${he} tans. `;
+						}
+						break;
+					default:
+						r += `bringing other slaves into the tanning beds with ${him} to have sex while ${he} tans. `;
+						break;
+				}
+			}
+		}
+	}
+
+	if (V.showClothing && !V.saleDescription) {
+		r += `<<earDescription>>`;
+		r += `<<upperFaceDescription>>`;
+		r += `<<HairDescription>>`;
+	} else {
+		r += `${His} hair is ${child.hColor}`;
+		if (child.hColor !== child.eyebrowHColor) {
+			r += `, with ${child.eyebrowHColor} eyebrows`;
+		}
+		r += `. `;
+		if (child.hColor === "red" && child.hLength >= 10) {
+			if (child.markings === "freckles" || (child.markings === "heavily freckled")) {
+				if (skinToneLevel(child.skin) > 5 && skinToneLevel(child) < 10) {
+					r += `It goes perfectly with ${his} ${child.skin} skin and freckles. `;
+				}
+			}
+		}
+	}
+
+	let pubertyAge = Math.max(child.pubertyAgeXX, child.pubertyAgeXY);
+	if (child.physicalAge < pubertyAge - 2) {
+		r += `${He} is too sexually immature to have armpit hair. `;
+	} else if (child.underArmHStyle === "hairless") {
+		r += `${His} armpits are perfectly smooth and naturally hairless. `;
+	} else if (child.underArmHStyle === "bald") {
+		r += `${His} armpits no longer grow hair, leaving them smooth and hairless. `;
+	} else if (child.underArmHStyle === "waxed") {
+		r += `${His} armpits are waxed and smooth. `;
+	} else if (child.physicalAge < pubertyAge - 1) {
+		r += `${He} has a few ${child.underArmHColor} wisps of armpit hair. `;
+	} else if (child.physicalAge < pubertyAge) {
+		r += `${He} is on the verge of puberty and has a small patch of ${child.underArmHColor} armpit hair. `;
+	} else if (child.underArmHStyle === "shaved") {
+		r += `${His} armpits appear hairless, but closer inspection reveals light, ${child.underArmHColor} stubble. `;
+	} else if (child.underArmHStyle === "neat") {
+		r += `${His} armpit hair is neatly trimmed `;
+		if (child.amp) {
+			r += `since it is always in full view`;
+		} else {
+			r += ` to not be visible unless ${he} lifts ${his} arms`;
+		}
+		r += `. `;
+	} else if (child.underArmHStyle === "bushy") {
+		r += `${His} ${child.underArmHColor} armpit hair has been allowed to grow freely`;
+		if (child.amp) {
+			r += ` creating two bushy patches under where ${his} arms used to be`;
+		} else {
+			r += ` and can be seen poking out from under ${his} arms at all times`;
+		}
+		r += `. `;
+	}
+
+	if (!child.voice) {
+		r += `${He} is <span class="pink">completely silent,</span> which is understandable, since ${he}'s mute. `;
+	} else {
+		if (child.lips > 95) {
+			r += `${He} is <span class="pink">effectively mute,</span> since ${his} lips are so large that ${he} can no longer speak intelligibly. ${He} can still `;
+			if (child.devotion > 50) {
+				r += `moan`;
+			} else if (child.devotion > 20) {
+				r += `whimper`;
+			} else {
+				r += `scream`;
+			}
+			r += ` through them, though. `;
+		}
+	}
+
+	if (V.showBodyMods) {
+		r += `<<earPiercingDescription>>`;
+		r += `<<nosePiercingDescription>>`;
+		r += `<<eyebrowPiercingDescription>>`;
+		r += `<<customTatDescription $activeChild>>`;
+	}
+
+	r += `<<faceDescription>>`;
+	r += `<<mouthDescription>>`;
+
+	if (V.showClothing && !V.saleDescription) {
+		r += `<<collarDescription>>`;
+		if (child.relationship > 4) { // TODO: will children be able to get married?
+			if (child.amp !== 1) {
+				r += `${He} has a simple gold band on the little finger of ${his} left hand. `;
+			} else {
+				r += `${He} has a simple gold band on a length of chain around ${his} neck. `;
+			}
+		} else if (child.relationship === -3) {
+			if (child.amp !== 1) {
+				r += `${He} has a simple steel band on the little finger of ${his} left hand. `;
+			} else {
+				r += `${He} has a simple steel band on a length of cord around ${his} neck. `;
+			}
+		}
+	}
+
+	r += `<<nailsDescription>>`;
+	if (V.showBodyMods) {
+		r += `<<backTatDescription>>`;
+		r += `<<shouldersTatDescription>>`;
+		r += `<<armsTatDescription>>`;
+	}
+
+	if (child.minorInjury !== 0 && child.minorInjury !== "sore ass") {
+		r += `${He} is sporting a <span class="red">$activeChild.minorInjury,</span> covered by makeup. `;
+	}
+
+	r += `<br>&nbsp;&nbsp;&nbsp;&nbsp;`;
+
+	r += `<<BoobsDescription>>`;
+	r += `<<boobsShapeDescription>>`;
+	r += `<<boobsExtraDescription>>`;
+	if (V.showBodyMods) {
+		r += `<<boobsTatDescription>>`;
+	}
+	r += `<<boobBrandDescription>>`;
+	r += `<<shouldersDescription>>`;
+	r += `<<nipplesDescription>>`;
+	if (V.showBodyMods) {
+		r += `<<nipplesPiercingDescription>>`;
+	}
+	r += `<<areolaeDescription>>`;
+
+	if (child.inflation > 0) { // TODO: will children be able to be inflated?
+		r += `<<BellyInflationDescription>>`;
+	} else if (child.bellyImplant >= 2000) {
+		r += `<<BellyImplantDescription>>`;
+	} else {
+		r +=`<<BellyDescription>>`;
+	}
+	r += `<<ButtDescription>>`;
+
+	r += `<br>&nbsp;&nbsp;&nbsp;&nbsp;`;
+
+	r += `<<crotchDescription>>`;
+	r += `<<dickDescription>>`;
+	r += `<<vaginaDescription>>`;
+	r += `<<AnusDescription>>`;
+
+	r += `<br>&nbsp;&nbsp;&nbsp;&nbsp;`;
+
+	switch (child.drugs) {
+		case "super fertility drugs":
+			if (isFertile(child) && !child.preg) {
+				r += `${He} is constantly dripping sexual fluids and ${his} breasts and belly are slightly swollen. The super fertility drugs have ${him} ready to be impregnated. `;
+			}
+			break;
+		case "fertility drugs":
+			if (isFertile(child) && !child.preg) {
+				r += `${He} smells of sexual fluids and ${his} breasts are slightly swollen. The fertility drugs have ${him} ready to be impregnated. `;
+			}
+			break;
+		case "intensive breast injections":
+		case "hyper breast injections":
+			r += `${He} ${child.amp !== 1 ? `massages ${his} tits uncomfortably` : `squirms under the unfamiliar weight on ${his} chest`}. The ${child.drugs === "hyper breast injections" ? `HA-HGH` : `A-HGH`} must be having an effect, painfully stretching ${his} breasts as the mammary and adipose tissue underneath grows explosively. `;
+			break;
+		case "intensive butt injections":
+		case "hyper butt injections":
+			r += `${He} ${child.amp !== 1 ? `massages ${his} butt uncomfortably` : `squirms under the unfamiliar weight on ${his} backside`}. The ${child.drugs === "hyper butt injections" ? `HA-HGH` : `A-HGH`} must be having an effect, painfully stretching ${his} buttocks as the muscular and adipose tissue underneath grows explosively. `;
+			break;
+		case "intensive penis enhancement":
+		case "hyper penis enhancement":
+			`${He} ${child.amp !== 1 ? `massages ${his} ${child.dick > 0 ? `dick` : `clit`} uncomfortably` : `squirms under the unfamiliar weight in ${his} ${child.dick > 0 ? `dick` : `clit`}`}. The ${child.drugs === "hyper penis enhancement" ? `HA-HGH` : `A-HGH`} must be having an effect, painfully lengthening and thickening ${his} ${child.dick > 0 ? `dick` : `clit`}. `;
+			break;
+		case "intensive testicle enhancement":
+		case "hyper testicle enhancement":
+			r += `${He} ${child.amp !== 1 ? `${He} massages ${his} balls uncomfortably` : `${He} squirms under the unfamiliar pressure in ${his} balls`} as `;
+			if (child.drugs === "hyper testicle enhancement") {
+				if (child.balls < 20) {
+					r += ` as cum drools from the tip of ${his} dick. `;
+				} else if (child.balls >= 50) {
+					r += ` as a thick cascade of cum pours from the tip of ${his} cock. `;
+				} else if (child.balls >= 37) {
+					r += ` as cum freely flows from the tip of ${his} cock, pooling under ${him}. `;
+				} else if (child.balls >= 20) {
+					r += ` as precum pools under ${him}. `;
+				}
+				r += `The HA-HGH must be having an effect, painfully expanding ${his} testicles. `;
+			} else {
+				r += `a bead of cum forms on tip of ${his} dick. The A-HGH must be having an effect, painfully expanding ${his} testicles. `;
+			}
+			break;
+		case "female hormone injections":
+		case "male hormore injections":
+			r += `${He} looks very ill, likely a side effect of the extreme hormone injections. `;
+			break;
+		case "appetite suppresors":
+			r += `Despite how little ${he} has been eating lately, ${his} stomach barely growls at all. `;
+			break;
+		case "penis atrophiers":
+			r += `${He} ${child.amp !== 1 ? `massages ${his} dick uncomfortably` : `squirms in respose to the discomfort in ${his} dick`}. The A-TRPH must be having an effect, painfully causing ${his} body to atrophy ${his} dick. `;
+			break;
+		case "testicle atropiers":
+			r += `${He} ${child.amp !== 1 ? `massages ${his} balls uncomfortably` : `squirms in respose to the discomfort in ${his} balls`}. The A-TRPH must be having an effect, painfully causing ${his} body to atrophy ${his} balls. `;
+			break;
+		case "clitoris atrophiers":
+			r += `${He} ${child.amp !== 1 ? `massages ${his} clit uncomfortably` : `squirms in respose to the discomfort in ${his} clit`}. The A-TRPH must be having an effect, painfully causing ${his} body to atrophy ${his} clit. `;
+			break;
+		case "labia atrophiers":
+			r += `${He} ${child.amp !== 1 ? `massages ${his} pussy uncomfortably` : `squirms in respose to the discomfort in ${his} pussy`}. The A-TRPH must be having an effect, painfully causing ${his} body to atrophy ${his} pussy. `;
+			break;
+		case "nipple atrophiers":
+			r += `${He} ${child.amp !== 1 ? `massages ${his} nipples uncomfortably` : `squirms in respose to the discomfort in ${his} nipples`}. The A-TRPH must be having an effect, painfully causing ${his} body to atrophy ${his} nipples. `;
+			break;
+		case "lip atrophiers":
+			r += `${He} ${child.amp !== 1 ? `massages ${his} lips uncomfortably` : `licks ${his} lips uncomfortably`}. The A-TRPH must be having an effect, painfully causing ${his} body to atrophy ${his} lips. `;
+			break;
+		case "breast redistributors":
+		case "butt redistributors":
+			r += `${He} ${child.amp !== 1 ? `pinches at the fat building on ${his} belly and lets off a sigh` : `squirms under the added weight building on ${his} belly`}. The RDST-D must be having an effect, encouraging ${his} body to redistribute ${his} ${child.drugs === "breast redistributors" ? `breasts'` : `buttocks'`} adipose tissue to ${his} middle. `;
+			break;
+		case "sag-B-gone":
+			r += `${His} breasts are shiny from the layer of anti-sag cream rubbed onto them. They might be a little perkier, or not. `;
+			break;
+	}
+
+	if (child.aphrodisiacs > 0 || child.inflationType === "aphrodisiacs") {
+		if (child.inflationType === "aphrodisiacs") {
+			r += `${He}'s literally full of`;
+			if (child.amp) {
+				r += `aphrodisiacs, but is an amputee, so ${he} cannot touch ${himself}. ${He} writhes with extreme sexual frustration, desperately trying to relieve ${himself}, but only managing to stir up the aphrodisiacs contained in ${his} gut, strengthening their effects even more. `;
+			} else if (child.chastityVagina) {
+				r += `aphrodisiacs, but is wearing a chastity belt and cannot touch ${himself}. ${He} writhes with extreme sexual frustration, desperately trying to relieve ${himself}, but only managing to stir up the aphrodisiacs contained in ${his} gut, strengthening their effects even more. `;
+			} else if ((child.releaseRules === "permissive" || child.releaseRules === "masturbation") && child.dick !== 0 && child.vagina === -1) {
+				r += `aphrodisiacs and is allowed to masturbate, so as ${he} stands before you ${he} rubs ${his} shaft with one hand while ${he} fingers ${his} anus with the other. ${canPenetrate(child) ? `${His} cock is painfully erect. ` : ``}${His} frantic masturbation forces ${his} distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more. `;
+			} else if ((child.releaseRules === "permissive" || child.releaseRules === "masturbation") && child.dick !== 0) {
+				r += `aphrodisiacs and is allowed to masturbate, so as ${he} stands before you ${he} rubs ${his} shaft and pussy with one hand while ${he} fingers ${his} anus with the other. ${canPenetrate(child) ? `${His} cock is painfully erect. ` : ``}${His} frantic masturbation forces ${his} distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more. `;
+			} else if ((child.releaseRules === "permissive" || child.releaseRules === "masturbation") && child.vagina !== -1) {
+				r += `aphrodisiacs, has ${V.seeDicks > 0 ? `no penis and ` : ``}no vagina, and is not allowed to masturbate, so as ${he} stands before you ${he} `;
+				if (child.anus === 0) {
+					r += `plays with a nipple with one hand while furiously rubbing ${his} virgin anus and the sensitive perineum beneath it with the other, desperately trying to get ${himself} off. ${His} frantic attempts force ${his} distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more. `;
+				} else {
+					r += `uses `;
+					if (child.anus > 2) {
+						r += `${his} entire hand, formed into a beak shape,`;
+					} else if (child.anus > 1) {
+						r += `two fingers`;
+					} else {
+						r += `a finger`;
+					}
+					r += ` to fuck ${his} own ass. ${His} frantic attempts force ${his} distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more. `;
+				}
+			} else if (child.releaseRules === "permissive" || child.releaseRules === "masturbation") {
+				r += `aphrodisiacs and is allowed to masturbate, so as ${he} stands before you ${he} rubs ${his} clit with one hand while ${he} fingers ${his} anus with the other. `;
+			} else if (child.dick !== 0) {
+				r += `aphrodisiacs and is not allowed to masturbate, so as ${he} stands before you ${he} desperately presents ${his} open mouth, ${his} breasts, ${his} crotch, and ${his} anus in turn, hoping that something will entice you to give ${him} relief. ${canPenetrate(child) ? `${His} cock is painfully erect. ` : ``}`;
+			} else if (child.vagina === -1) {
+				r += `aphrodisiacs, has ${V.seeDicks > 0 ? `no penis and ` : ``}no vagina, and is not allowed to masturbate, so as ${he} stands before you ${he} desperately presents ${his} asshole, desperately hoping you'll fuck ${his} only real source of relief. `;
+			} else {
+				r += `aphrodisiacs and is not allowed to masturbate, so as ${he} stands before you ${he} desperately presents ${his} open mouth, ${his} breasts, ${his} pussy, and ${his} anus in turn, hoping that something will entice you to give ${him} relief. `;
+			}
+		} else if (child.aphrodisiacs > 1) {
+			r += `${He}'s swimming in`;
+			if (child.amp) {
+				r += `aphrodisiacs, but is an amputee, so ${he} cannot touch ${himself}. ${He} writhes with extreme sexual frustration, desperately trying to relieve ${himself}. `;
+			} else if (child.chastityVagina) {
+				r += `aphrodisiacs, but is wearing a chastity belt and cannot touch ${himself}. ${He} writhes with extreme sexual frustration, desperately trying to relieve ${himself}. `;
+			} else if ((child.releaseRules === "permissive" || child.releaseRules === "masturbation") && child.dick !== 0 && child.vagina === -1) {
+				r += `aphrodisiacs and is allowed to masturbate, so as ${he} stands before you ${he} rubs ${his} shaft with one hand while ${he} fingers ${his} anus with the other. ${canPenetrate(child) ? `${His} cock is painfully erect. ` : ``}`;
+			} else if ((child.releaseRules === "permissive" || child.releaseRules === "masturbation") && child.dick !== 0) {
+				r += `aphrodisiacs and is allowed to masturbate, so as ${he} stands before you ${he} rubs ${his} shaft and pussy with one hand while ${he} fingers ${his} anus with the other. ${canPenetrate(child) ? `${His} cock is painfully erect. ` : ``}`;
+			} else if ((child.releaseRules === "permissive" || child.releaseRules === "masturbation") && child.vagina !== -1) {
+				r += `aphrodisiacs, has ${V.seeDicks > 0 ? `no penis and ` : ``}no vagina, and is not allowed to masturbate, so as ${he} stands before you ${he}`;
+				if (child.anus === 0) {
+					r += `plays with a nipple with one hand while furiously rubbing ${his} virgin anus and the sensitive perineum beneath it with the other, desperately trying to get ${himself} off. `;
+				} else {
+					r += `uses `;
+					if (child.anus > 2) {
+						r += `${his} entire hand, formed into a beak shape,`;
+					} else if (child.anus > 1) {
+						r += `two fingers`;
+					} else {
+						r += `a finger`;
+					}
+					r += ` to fuck ${his} own ass. `;
+				}
+			} else if (child.releaseRules === "permissive" || child.releaseRules === "masturbation") {
+				r += `aphrodisiacs and is allowed to masturbate, so as ${he} stands before you ${he} rubs ${his} clit with one hand while ${he} fingers ${his} anus with the other. `;
+			} else if (child.dick !== 0) {
+				r += `aphrodisiacs and is not allowed to masturbate, so as ${he} stands before you ${he} desperately presents ${his} open mouth, ${his} breasts, ${his} crotch, and ${his} anus in turn, hoping that something will entice you to give ${him} relief. ${canPenetrate(child) ? `${His} cock is painfully erect. ` : ``}`;
+			} else if (child.vagina === -1) {
+				r += `aphrodisiacs, has ${V.seeDicks > 0 ? `no penis and ` : ``}no vagina, and is not allowed to masturbate, so as ${he} stands before you ${he} desperately presents ${his} asshole, desperately hoping you'll fuck ${his} only real source of relief. `;
+			} else {
+				r += `aphrodisiacs and is not allowed to masturbate, so as ${he} stands before you ${he} desperately presents ${his} open mouth, ${his} breasts, ${his} pussy, and ${his} anus in turn, hoping that something will entice you to give ${him} relief. `;
+			}
+		} else {
+			if (child.amp) {
+				r += `${He}'s on aphrodisiacs, but is an amputee, so ${he} cannot touch ${himself}. ${He} writhes with sexual frustration. `;
+			} else if (child.chastityVagina) {
+				r += `${He}'s on aphrodisiacs, but is wearing a chastity belt and cannot touch ${himself}. ${He} writhes with sexual frustration. `;
+			} else if ((child.releaseRules === "permissive" || child.releaseRules === "masturbation") && child.dick !== 0 && child.vagina === -1) {
+				r += `${He}'s on aphrodisiacs and is allowed to masturbate, so as ${he} obeys your commands ${he} idly rubs ${his} shaft with one hand while the other pinches a nipple. `;
+			} else if ((child.releaseRules === "permissive" || child.releaseRules === "masturbation") && child.dick !== 0) {
+				r += `${He}'s on aphrodisiacs and is allowed to masturbate, so as ${he} obeys your commands ${he} idly rubs ${his} shaft and pussy with one hand while the other pinches a nipple. `;
+			} else if (child.releaseRules === "permissive" || child.releaseRules === "masturbation") {
+				r += `${He}'s on aphrodisiacs and is allowed to masturbate, so as ${he} obeys your commands ${he} idly rubs ${his} pussy with one hand while the other pinches a nipple. `;
+			} else if (child.dick !== 0 && canPenetrate(child)) {
+				r += `${He}'s on aphrodisiacs and is not allowed to masturbate, so as ${he} obeys your commands ${he} shifts ${his} weight uncomfortably. ${His} erect dick sways as ${he} does. `;
+			} else {
+				r += `${He}'s on aphrodisiacs and is not allowed to masturbate, so as ${he} obeys your commands ${he} shifts ${his} weight uncomfortably. `;
+			}
+		}
+	}
+
+	if (child.addict > 0 && child.addict < 3) {
+		r += `${He} is a new <span class="cyan">aphrodisiac addict.</span>`;
+	} else if (child.addict > 0 && child.addict < 10) {
+		r += `${He} is a confirmed <span class="cyan">aphrodisiac addict.</span>`;
+	} else if (child.addict > 0) {
+		r += `${He} is completely <span class="cyan">dependent on aphrodisiacs,</span> and it is unlikely you will ever be able to wean ${him} off them. `;
+	}
+
+	V.saleDescription = 0, V.applyLaw = 0;
+
+	return r;
+};