Your browser lacks required capabilities. Please upgrade it or switch to another to continue.
Loading…
<h1>Welcome to High Rollers 2069</h1>
This is a game about Gambling, Drugs, Sex and all that very adult stuff.
All characters in this game are aged 21 or over.
All sexual encounters in this game are consensual.
Please stop playing if you are under 18, or do not feel comfortable with the following:
*Gambling Addiction
*Alcohol and Drug use
*Transgender Content
*Dollification
*Transformation (Forced or Willing)
*Forced transformations occur during the bad endings.
*Mind Control
If you are okay with these you are good to [[Start the Game|Start]]
<<unset $game>>Thursday, July 26, 2069.
Las Vegas, Nevada.
A place where any sin is legal, if you're rich enough.
You are:
<<textbox "$name" $name>> <<textbox "$sname" $sname>>
<<set _skintones = ["#f4e3d7","#e9c6af","#deaa87","#d38d5f","#c87137","#a05a2c","#784421"]>>\
<<set $skintone = _skintones.random()>>\
[<<link "Lightest">><<set $skintone = "#f4e3d7">><<script>>window.update_avatar()<</script>><</link>>]\
[<<link "Light">><<set $skintone = "#e9c6af">><<script>>window.update_avatar()<</script>><</link>>]\
[<<link "Lighter">><<set $skintone = "#deaa87">><<script>>window.update_avatar()<</script>><</link>>]\
[<<link "Light Mid">><<set $skintone = "#d38d5f">><<script>>window.update_avatar()<</script>><</link>>]\
[<<link "Mid">><<set $skintone = "#c87137">><<script>>window.update_avatar()<</script>><</link>>]\
[<<link "Dark">><<set $skintone = "#a05a2c">><<script>>window.update_avatar()<</script>><</link>>]\
[<<link "Darker">><<set $skintone = "#784421">><<script>>window.update_avatar()<</script>><</link>>]\
[<<link "Very Dark">><<set $skintone = "#502d16">><<script>>window.update_avatar()<</script>><</link>>]\
[<<link "Darkest">><<set $skintone = "#28170b">><<script>>window.update_avatar()<</script>><</link>>]<<script>>window.update_avatar()<</script>>\
Eye colour: <<cycle "$eyecolour">>
<<option "Brown">>
<<option "Green">>
<<option "Grey">>
<<option "Blue">>
<<option "Amber">>
<<option "Hazel">>
<</cycle>>
You, however, are not rich. You've been here a week now and you're down to your last <<money $cash>>.
It's not even *your* <<money $cash>> either. You're heavily in debt to the mob to the tune of \
<<cycle "$debt" autoselect>>
<<option "$5,000" 5000>>
<<option "$50,000" 50000>>
<<option "$500,000" 500000>>
<<option "$1,000,000" 1000000>>
<</cycle>>
The room smells of alcohol, sweat and desperation. Though maybe that's mostly you.
You stand at the roulette wheel. Your Casino-issued electronic wallet flashes red as you double check the readout. You get ready to scan your last lot.
If you lose this, it's all over. Your ass belongs to the Vegas Mob.
[[Play Roulette|Roulette Intro]]
<<set $game = true>><<display RouletteBet>>
[[No More Bets|Roulette Intro Result]]
<<display RouletteTableMarkup>><html>
<table class="roulette">
<tr>
<td class="blank"></td> <td colspan="3" class="zero">0</td></tr>
<tr>
<td class="row"></td>
<td class="red">1</td><td class="black">2</td><td class="red">3</td>
<td rowspan="4" class="vertical" data-numbers="1-12">1st 12</td>
<td rowspan="2" class="vertical" data-numbers="1-18" data-multiplier="2">1-18</td>
</tr>
<tr>
<td class="row"></td>
<td class="black">4</td><td class="red">5</td><td class="black">6</td>
</tr>
<tr>
<td class="row"></td>
<td class="red">7</td><td class="black">8</td><td class="red">9</td>
<td rowspan="2" class="vertical">EVEN</td>
</tr>
<tr>
<td class="row"></td>
<td class="black">10</td><td class="black">11</td><td class="red">12</td>
</tr>
<tr>
<td class="row"></td>
<td class="black">13</td><td class="red">14</td><td class="black">15</td>
<td rowspan="4" class="vertical">2nd 12</td>
<td rowspan="2" class="vertical red">RED</td>
</tr>
<tr>
<td class="row"></td>
<td class="red">16</td><td class="black">17</td><td class="red">18</td>
</tr>
<tr>
<td class="row"></td>
<td class="red">19</td><td class="black">20</td><td class="red">21</td>
<td rowspan="2" class="vertical black">BLACK</td>
</tr>
<tr>
<td class="row"></td>
<td class="black">22</td><td class="red">23</td><td class="black">24</td>
</tr>
<tr>
<td class="row"></td>
<td class="red">25</td><td class="black">26</td><td class="red">27</td>
<td rowspan="4" class="vertical">3rd 12</td>
<td rowspan="2" class="vertical">ODD</td>
</tr>
<tr>
<td class="row"></td>
<td class="black">28</td><td class="black">29</td><td class="red">30</td>
</tr>
<tr>
<td class="row"></td>
<td class="black">31</td><td class="red">32</td><td class="black">33</td>
<td rowspan="2" class="vertical" data-numbers="19-36" data-multiplier="2">19-36</td>
</tr>
<tr>
<td class="row"></td>
<td class="red">34</td><td class="black">35</td><td class="red">36</td>
</tr>
<tr>
<td class="blank"></td>
<td>2to1</td><td>2to1</td><td >2to1</td>
</tr>
</table>
</html> <<if ndef $bet>><<set $bet to 10>><</if>>\
<<set $total_bet to 0>>\
<<set $roulette_state to {bets:[],total:0}>>\
<span id="betState"></span>
<<script>>
var odds = {};
odds[18] = 1;
odds[12] = 2;
odds[6] = 5;
odds[5] = 6;
odds[4] = 8;
odds[3] = 11;
odds[2] = 17;
odds[1] = 35;
function set_bet(numbers,label) {
if(State.variables.total_bet + State.variables.bet > 1000) {
alert("You cannot bet more than $1,000 in total");
window.scrollTo(0, 0);
return false;
}
if(State.variables.bet > State.variables.cash) {
alert("Cannot make this bet, not enough cash");
window.scrollTo(0, 0);
return false;
}
var bet = State.variables.bet || 10
State.variables.roulette_state.bets.push({
bet:bet,
numbers:numbers,
label:label,
multiplier:odds[numbers.length] || 1
});
State.variables.cash -= bet;
if(!Number.isInteger(State.variables.cash)) {
console.error("Cash is in a weird state",State.variables.cash);
State.variables.cash = 0;
}
State.temporary.dirty = true;
//window.scrollTo(0, 0);
State.variables.total_bet = (State.variables.total_bet || 0) + bet;
return bet;
}
window.roulette.create(set_bet);
State.temporary.dirty = true;
<</script>><<silently>><<repeat 0.2s>>\
<<if def _dirty>>\
<<unset _dirty>>\
<<replace "#betState">>\
Minimum Bet is <<money 10>>
Maximum Bet is <<money 1000>>
Current Chips: <<money $cash>>
Next Bet: \
<<cycle "$bet" autoselect>>
<<option "$10" 10>>
<<option "$50" 50>>
<<option "$100" 100>>
<<option "$200" 200>>
<<option "$500" 500>>
<<option "$1,000" 1000>>
<</cycle>>
Current Bet: <<money $total_bet>>
<div>
<<for _i to 0; _i lt $roulette_state.bets.length; _i++>><div class='bet'><span class='label'>$roulette_state.bets[_i].label</span><span class='value'><<money $roulette_state.bets[_i].bet>></span></div><</for>>
<<if $roulette_state.bets.length == 0>><div class='bet'><span class='label'>No Bets</span></div><</if>><</replace>><</if>><</repeat>>
</div>
<</silently>><<set $time += 120>>
<<script>>
function contains_number(arr,num) {
for(var i = 0; i < arr.length; i++) {
if(arr[i] == num) return true;
}
return false;
}
function resolve_bet(roulette_state) {
var bets = roulette_state.bets;
var result = roulette_state.result;
var cash = 0;
for(var i = 0; i < bets.length; i++) {
if(contains_number(bets[i].numbers,result)) {
bets[i].result = bets[i].bet * (bets[i].multiplier+1);
cash += bets[i].result;
roulette_state.win = true;
} else {
bets[i].result = -bets[i].bet;
}
}
return cash;
}
var bets = State.variables.roulette_state.bets;
if(bets && bets.length > 0) {
var i = (Math.random() * bets.length) >> 0;
var chosenBet = bets[i];
var numbers = bets[i].numbers;
var ni = (Math.random() * numbers.length) >> 0;
State.variables.roulette_state.result = numbers[ni]
} else {
State.variables.roulette_state.result = Math.floor(State.random() * 37);
}
var cash_to_add = resolve_bet(State.variables.roulette_state);
State.variables.cash += cash_to_add;
<</script>>
<<quote bunny>>No more bets!<</quote>>
The bunny-suited croupier spins the wheel and drops the ball in.
<<timed 1s transition>>Tick. Tick. Tick.<</timed>>
<<timed 2s transition>>Tick. Tick. <</timed>>
<<timed 4s transition>>Tick. <</timed>>
<<timed 6s transition>>
An excruciatingly long time passes before the silver ball makes its final stop in a slot.
<</timed>>
<<timed 8s>>
<h2>$roulette_state.result - <<if def $roulette_state.win>>You Win!<<else>>Bad Luck!<</if>></h2>
<<display RouletteResult>>
Play Again?
<<if $cash lt 100>>[[Lets go again!|Roulette Intro]]<<else>>[[Go again!|Roulette]]<</if>> | [[Return to the floor|TutorialComplete]]
<</timed>>Current Chips: <<money $cash>>
Bet Results:
<<for _i to 0; _i lt $roulette_state.bets.length; _i++>><div class='bet'><span class='label'>$roulette_state.bets[_i].label</span><<if $roulette_state.bets[_i].result gte 0>><span class='win'><<money $roulette_state.bets[_i].result>></span><<else>><span class='loss'><<money $roulette_state.bets[_i].result>></span><</if>></div><</for>>
<<set $time += 30>>\
The Casino sprawls out in front of you, assaulting all your senses.
Your eyes burn at the gaudy golden architecture seemingly amplifying the flashing neon lights all around.
Your ears ache from the unrelenting cacophony of beeps from the slot machines, the hollering from the table games.
The mixture of sweat, alcohol and food of a dozen different bars and restaurants invades your nostrils.
Behind you is the [[Reception]] and the <<if $debt > 0>>[[Exit]]<<else>>[[Exit|Get Air]]<</if>>
<<if $cash > $casino_bank>>\
Your wallet appears to be on the fritz: [[Go to the Reception|BreakTheBank]]
<<elseif $cash == 0>>\
Your wallet appears to be empty: [[Consider your options|Bankrupt]]
<<else>>\
On your left are the pools. One for each of the main games
[[Roulette]]
[[Blackjack]]
[[Craps]]
Ahead are rows upon rows of machines.
[[Slots]]
[[Video Poker]]
<</if>>\
On your right is the Atrium, the entertainment halls and facilities
[[Atrium]]
[[Bar]]
[[Restaurant]]
[[Toilets]]
[[High Rollers]]
[[Hotel]]
[[ATM]]
<<unset $blackjack_action>><<display RouletteBet>>
[[No More Bets|Roulette Result]]
<<if $colonel == 4>><span class='alert'><<set $colonel = 5>>The croupier Bunny seems familiar to you... Could it be... The missing scientist? You should tell the Colonel when you get a chance</span>
<</if>>\
<<display RouletteTableMarkup>><<set $time += 120>>
<<script>>
function contains_number(arr,num) {
for(var i = 0; i < arr.length; i++) {
if(arr[i] == num) return true;
}
return false;
}
function resolve_bet(roulette_state) {
var bets = roulette_state.bets;
var result = roulette_state.result;
var cash = 0;
for(var i = 0; i < bets.length; i++) {
if(contains_number(bets[i].numbers,result)) {
bets[i].result = bets[i].bet * (bets[i].multiplier+1);
cash += bets[i].result;
roulette_state.win = true;
} else {
bets[i].result = -bets[i].bet;
}
}
return cash;
}
State.variables.roulette_state.result = (State.random() * 37) >> 0
var cash_to_add = resolve_bet(State.variables.roulette_state);
State.variables.cash += cash_to_add;
<</script>>
<<quote bunny>>No more bets!<</quote>>
The bunny-suited croupier spins the wheel and drops the ball in. It tick.tick.ticks its way around the wheel before dropping into a slot.
<h2>Result: $roulette_state.result - <<if def $roulette_state.win>>You Win!<<else>>Bad Luck!<</if>></h2>
<<display RouletteResult>>
<<if $cash > $casino_bank>>
Your wallet appears to be on the fritz
[[Go to the Reception|BreakTheBank]]
<<elseif $cash == 0>>
Your wallet appears to be empty
[[Consider your options|Bankrupt]]
<<else>>
Play Again?
<<if def $roulette_state.win>>[[I'm on a Hot Streak!|Roulette]]<<else>>[[I'm due for a win!|Roulette]]<</if>> | <<if def $tutorial_complete>>[[Return to the floor|MainFloor]]<<else>>[[Return to the floor|TutorialComplete]]<</if>>
<</if>>
You've had enough. You turn to exit the casino.
As you pass through the threshold a scanner beeps.
The bouncers on the door move to block you
<<quote bouncer>>I'm sorry ?sir, we're going to have to ask you to pay your debt before we allow you to leave<</quote>>
<<quote you>>I'm just getting some air<</quote>>
<<quote bouncer>>If you need air, you can go to the atrium.<</quote>>
[[Return to the Casino|MainFloor]] | <<if $cash > $debt>>[[Pay Debt|PayDebt]] | <</if>>[[Make a run for it|Run]]
<<set $time += 30>><<silently>>
<<if ndef $blackjack_action || $blackjack_action == "start">>
<<set $blackjack_hand = []>>
<<set $blackjack_dealer_hand = []>>
<<set $blackjack_payout = 0>>
<<set $blackjack_turn = 0>>
<<unset $blackjack_end>>
<<unset $blackjack_win>>
<<unset $blackjack_result>>
<<script>>
var deck = []
for(var i = 0; i < 52; i++) {
deck.push(i);
}
State.variables.blackjack_deck = deck.shuffle();
<</script>>
<</if>>
<<if def $blackjack_action>>
<<if $blackjack_action == "start">>
<<set $blackjack_hand.push($blackjack_deck.pop()) >>
<<set $blackjack_hand.push($blackjack_deck.pop()) >>
<<set $blackjack_dealer_hand.push($blackjack_deck.pop()) >>
<<elseif $blackjack_action == "draw">>
<<set $blackjack_hand.push($blackjack_deck.pop()) >>
<<elseif $blackjack_action == "stay">>
<<set $blackjack_end = true>>
<</if>>
<<set $blackjack_turn ++>>
<<if $blackjack_turn >= 4>>
<<set $blackjack_end = true>>
<</if>>
<<script>>
function suit(i) {
return (i/13) >> 0;
}
function cvalue(i) {
return i%13;
}
function get_hand_results(hand){
var max_score = 0;
var min_score = 0;
for(var i = 0; i < hand.length; i++) {
var v = cvalue(hand[i]) + 1;
if(v == 1) {
max_score += 11;
min_score += v;
} else if (v >= 10) {
max_score += 10;
min_score += 10;
} else {
max_score += v;
min_score += v;
}
}
if(min_score != max_score)
return [min_score,max_score]
return [max_score];
}
function ai_should_deal(results,hand) {
if(hand.length == 5) return false;
if(results[0] > 17) return false;
if(results[1] && results[1] > 17 && results[1] <= 21) return false;
return true;
}
function best_score(result) {
if(result[1] && result[1] <= 21) {
return Math.max(result[0],result[1])
}
return result[0];
}
function has_blackjack(results,hand) {
if(results[0] != 21 && results[1] != 21) return false;
if(hand.length != 2) return false;
return true;
}
var payout = State.variables.play_blackjack;
var hand = State.variables.blackjack_hand;
var results = State.variables.blackjack_results = get_hand_results(hand)
if(results[0] >= 21) State.variables.blackjack_end = true
var dealer_hand = State.variables.blackjack_dealer_hand;
var dealer_results = get_hand_results(State.variables.blackjack_dealer_hand);
if(State.variables.blackjack_end == true) {
while(ai_should_deal(dealer_results,dealer_hand)) {
State.variables.blackjack_dealer_hand.push(
State.variables.blackjack_deck.pop());
dealer_hand = State.variables.blackjack_dealer_hand;
dealer_results = get_hand_results( State.variables.blackjack_dealer_hand);
}
} else if(ai_should_deal(dealer_results,dealer_hand)) {
State.variables.blackjack_dealer_hand.push(
State.variables.blackjack_deck.pop());
}
dealer_results = State.variables.blackjack_dealer_results = get_hand_results(State.variables.blackjack_dealer_hand);
if(State.variables.blackjack_end == true) {
if(has_blackjack(results,hand) && has_blackjack(dealer_results,dealer_hand)) {
State.variables.blackjack_result = "TIE!"
State.variables.blackjack_win = State.variables.play_blackjack
State.variables.cash += State.variables.blackjack_win;
} else if(!has_blackjack(results,hand) && has_blackjack(dealer_results,dealer_hand)) {
State.variables.blackjack_win = 0 ;
State.variables.blackjack_result = "DEALER BLACKJACK!"
} else if(has_blackjack(results,hand) && !has_blackjack(dealer_results,dealer_hand)) {
State.variables.blackjack_win = State.variables.play_blackjack * 2 ;
State.variables.cash += State.variables.blackjack_win;
State.variables.blackjack_result = "BLACKJACK!"
} else if(results[0] < 21 && hand.length == 5) {
State.variables.blackjack_win = State.variables.play_blackjack * 1.5 ;
State.variables.cash += State.variables.blackjack_win;
State.variables.blackjack_result = "5 Card Trick!"
} else if(best_score(results) < 21 && (best_score(results) > best_score(dealer_results) || best_score(dealer_results) > 21)) {
State.variables.blackjack_win = State.variables.play_blackjack * 1.2 ;
State.variables.cash += State.variables.blackjack_win;
State.variables.blackjack_result = "You win!"
} else if(best_score(results) == best_score(dealer_results)) {
State.variables.blackjack_result = "TIE!"
State.variables.blackjack_win = State.variables.play_blackjack
State.variables.cash += State.variables.blackjack_win;
} else if(best_score(results) == 21) {
State.variables.blackjack_win = State.variables.play_blackjack * 1.5 ;
State.variables.cash += State.variables.blackjack_win;
State.variables.blackjack_result = "21!"
} else if(best_score(results) > 21) {
State.variables.blackjack_result = "BUST!"
State.variables.blackjack_win = 0
} else {
State.variables.blackjack_result = "YOU LOST!"
State.variables.blackjack_win = 0
}
}
<</script>>
<</if>>
<</silently>>
<h1>Blackjack</h1>
<<if def $blackjack_result>>\
<h2>$blackjack_result - <<money $blackjack_win>></h2>
<</if>>\
<<if def $play_blackjack>>\
<b>Dealer <<if $blackjack_end == true>>$blackjack_dealer_results[0] <<if def $blackjack_dealer_results[1]&& $blackjack_dealer_results[1] <= 21>>or $blackjack_dealer_results[1]<</if>><</if>></b>
<div>\
<<if $blackjack_end == true>>\
<<img card $blackjack_dealer_hand[0]+1 .png>>\
<<else>>\
<<img card54.png>>\
<</if>>\
<<for _i = 1; _i < $blackjack_dealer_hand.length; _i++>>\
<<img card $blackjack_dealer_hand[_i]+1 .png>>\
<</for>>\
</div>
<b>You $blackjack_results[0] <<if def $blackjack_results[1] && $blackjack_results[1] <= 21>>or $blackjack_results[1]<</if>></b>
<<if $blackjack_end != true>>\
<<link "DRAW" "Blackjack">>
<<set $time += 10>>\
<<set $blackjack_action = "draw">><</link>> | \
<<link "STAY" "Blackjack">>
<<set $time += 10>>\
<<set $blackjack_action = "stay">><</link>>\
<<else>>\
<<unset $play_blackjack>>\
<</if>>\
<div>\
<<for _i = 0; _i < $blackjack_hand.length; _i++>>\
<<img card $blackjack_hand[_i]+1 .png>>\
<</for>>\
</div>\
<</if>>\
<<if ndef $play_blackjack>>Play: \
<<if $cash >= 10>>\
<<link "($10)" "Blackjack">><<set $play_blackjack = 10>><<set $blackjack_action = "start">><<set $cash -= 10>><</link>> | \
<</if>>\
<<if $cash >= 100>>\
<<link "($100)" "Blackjack">><<set $play_blackjack = 100>><<set $blackjack_action = "start">><<set $cash -= 100>><</link>> | \
<</if>>\
<<if $cash >= 1000>>\
<<link "($1000)" "Blackjack">><<set $play_blackjack = 1000>><<set $blackjack_action = "start">><<set $cash -= 1000>><</link>>
<</if>>\
[[Main Floor|MainFloor]]
<<set $time += 30>>
<</if>>You have no idea how to play craps.
You're not sure anyone does. Something to do with dice?
<<if $colonel ==4>>You look at the Croupier bunny, it's not who you're looking for<</if>>
[[Return to Main Floor|MainFloor]]
<<set $time += 30>><<if $bought_drink == true>>\
The Bar Bunny pours you out a fresh drink. You take it and down it. It goes straight to your head.
<</if>>\
<<if $fem > 50 && def $playboy && $playboy < 4>>
<<switch $playboy>>
<<case 1>>
Mr. Stockman sits at the bar and beckons you over. There's something about him you can't resist and you go up to him.
<<quote playboy>>What's your poison<</quote>>
<<link "Mimosa" Bar>>
<<set $playboy = 2>>
<<set $drunk += 5>>
<<set $fem_d += 1>>
<<set $horny_d += 1>>
<<set $time += 30>>
<</link>>
<<link "Gin and Tonic" Bar>>
<<set $playboy = 2>>
<<set $drunk += 10>>
<<set $fem_d += 1>>
<<set $horny_d += 1>>
<<set $time += 30>>
<</link>>
<<link "Bourbon" Bar>>
<<set $playboy = 2>>
<<set $drunk += 15>>
<<set $horny_d += 1>>
<<set $time += 10>>
<</link>>
<<link "Vodka" Bar>>
<<set $playboy = 2>>
<<set $drunk += 17>>
<<set $time += 10>>
<<set $horny_d += 1>>
<</link>>
<<if $horny < 50>>
[[Return to Main Floor|MainFloor]]
<<else>>Return to Main Floor (Too Horny)<</if>>
<<case 2>>
John orders himself a Bourbon as well and the bunny fixes both drinks.
As you drink it, the sounds of the casino seem to fade away and only the sound of his voice remains clear
<<quote playboy>>So, what's a good looking girl like you doing dressed like that?<</quote>>
You look down at your jeans and your breasts clearly poking out of your sweat covered shirt. You look back at him and smile faintly.
<<if $presenting == 'male'>>You're not sure how you feel about being addressed as a girl, but you can't muster up the will to correct him<<else>>You're not used to being addressed as a girl, but it feels nice coming from someone like him.<</if>>
<<quote playboy>>A girl like you shouldn't be afraid to show off. You know you're quite beautiful.<</quote>>
He offers you another drink
<<link "Mimosa" Bar>>
<<set $playboy = 3>>
<<set $drunk += 5>>
<<set $fem_d += 1>>
<<set $horny_d += 1>>
<<set $time += 30>>
<</link>>
<<link "Gin and Tonic" Bar>>
<<set $playboy = 3>>
<<set $drunk += 10>>
<<set $fem_d += 1>>
<<set $horny_d += 1>>
<<set $time += 30>>
<</link>>
<<link "Bourbon" Bar>>
<<set $playboy = 3>>
<<set $drunk += 15>>
<<set $horny_d += 1>>
<<set $time += 10>>
<</link>>
<<link "Vodka" Bar>>
<<set $playboy = 3>>
<<set $drunk += 17>>
<<set $time += 10>>
<<set $horny_d += 1>>
<</link>>
<<if $horny < 50>>
[[Return to Main Floor|MainFloor]]
<<else>>Return to Main Floor (Too Horny)<</if>>
<<case 3>>
John orders himself a Bourbon again and the bunny fixes both drinks.
The sounds of the casino fade to nothing and you are transfixed on the man sitting next to you
<<quote playboy>>You're not much of a talker are you? Do you have a name?<</quote>>
<<if $presenting == 'male'>>You're afraid if you speak you'll reveal your secret. There's something about him that makes you want to be a perfect woman for him<<else>>You try and speak but you can't find your voice. You know you have a name, but it's not the one he's expecting. You don't feel ready to choose a new name and you feel compelled not to lie to this man.<</if>>
<<switch $eyecolour>>\
<<case "Brown">>\
<<set $fname = "Saffron">>\
<<case "Green">>\
<<set $fname = "Jade">>\
<<case "Grey">>\
<<set $fname = "Ash">>\
<<case "Blue">>\
<<set $fname = "Sapphire">>\
<<case "Amber">>\
<<set $fname = "Amber">>\
<<case "Hazel">>\
<<set $fname = "Hazel">>\
<</switch>>\
He looks into your eyes and you gaze back at him.
<<quote playboy>>You don't have a name then? What about $fname?<</quote>>
You nod. $fname. You think it's a wonderful name.
You continue to stare into his eyes. The last thing you remember is him moving in for a kiss.
[[Wake Up|PlayboyWakeUp]]
<</switch>>
<<else>>
<<if $fem < 50 && def $playboy && $playboy < 4>>
You see John sitting at the bar. Your eyes catch his and you swear there's a moment of recognition there. A slight look of confusion. He ignores you.<</if>>\
Buy a drink.
<<link "Mimosa ($5)" Bar>>
<<set $cash -= 5>>
<<set $drunk += 5>>
<<set $fem_d += 1>>
<<set $horny_d += 1>>
<<set $time += 30>>
<<set $bought_drink = true>>
<</link>>
<<link "Gin and Tonic ($10)" Bar>>
<<set $cash -= 10>>
<<set $drunk += 10>>
<<set $fem_d += 1>>
<<set $horny_d += 1>>
<<set $time += 30>>
<<set $bought_drink = true>>
<</link>>
<<link "Bourbon ($12)" Bar>>
<<set $cash -= 12>>
<<set $drunk += 15>>
<<set $horny_d += 1>>
<<set $time += 10>>
<<set $bought_drink = true>>
<</link>>
<<link "Vodka ($15)" Bar>>
<<set $cash -= 15>>
<<set $drunk += 17>>
<<set $time += 10>>
<<set $horny_d += 1>>
<<set $bought_drink = true>>
<</link>>
[[Return to Main Floor|MainFloor]]
<</if>>
<<set $time += 30>>
<<unset $bought_drink>>
[[Return to Main Floor|MainFloor]]
<<set $time += 30>>You stand in front of the toilet entrance. A bouncer is standing there. There are three doors. One marked "Gents" one marked "Ladies" and one marked "Staff Only"
<<switch $presenting>>
<<case "female">>
[[Gents Toilets|ToiletsFail]] | [[Ladies Toilets|Ladies]]
<<case "male">>
[[Gents Toilets|Gents]] | [[Ladies Toilets|ToiletsFail]]
<</switch>>
<<set $time += 30>><<unset $slot_payout>>
<<set _r = Math.floor(State.random() * 100)>>
<<if _r < 20>>
<<set $slot_jackpot_countdown = Math.floor(State.random() * 20)>>
<<elseif _r < 50>>
<<set $slot_jackpot_countdown = Math.floor(State.random() * 1000)>>
<<else>>
<<set $slot_jackpot_countdown = Math.floor(State.random() * 10000)>>
<</if>>
You enter the maze of slot machines. The dinging cachophany is deafening. Try as you might to filter it out you can't.
The flashing lights beckon you forwards. Where do you go?
<<link "$10 slots" slotsPlay>><<set $slots = 10>><</link>>
<<link "$100 slots" slotsPlay>><<set $slots = 100>><</link>>
<<link "$1,000 slots" slotsPlay>><<set $slots = 1000>><</link>>
[[Return to the Main Floor|MainFloor]]
<<set $time += 30>><<silently>>
<<if ndef $poker_deck>>
<<script>>
var deck = []
for(var i = 0; i < 52; i++) {
deck.push(i);
}
State.variables.poker_deck = deck.shuffle();
<</script>>
<<unset $poker_win>>
<</if>>
<<if ndef $play_poker>>
<<set $poker_hand = [39,51,50,49,48]>>
<<set $poker_held = [false,false,false,false,false]>>
<<set $poker_payout = 0>>
<<set $poker_turn = 0>>
<<else>>
<<set $poker_turn ++>>
<<if $poker_held[0] == false>><<set $poker_hand[0] = $poker_deck.pop()>><</if>>
<<if $poker_held[1] == false>><<set $poker_hand[1] = $poker_deck.pop()>><</if>>
<<if $poker_held[2] == false>><<set $poker_hand[2] = $poker_deck.pop()>><</if>>
<<if $poker_held[3] == false>><<set $poker_hand[3] = $poker_deck.pop()>><</if>>
<<if $poker_held[4] == false>><<set $poker_hand[4] = $poker_deck.pop()>><</if>>
<<if $poker_turn == 3>>
<<script>>
function suit(i) {
return (i/13) >> 0;
}
function cvalue(i) {
return i%13;
}
function clone(arr) {
var c = []
for(var n = 0; n < arr.length; n++) {
c[n] = arr[n];
}
return c;
}
function hasStraight(hand) {
console.log("HAS STRAIGHT",hand);
var c = clone(hand);
console.log("HAS STRAIGHT CLONE",c);
for(var i = 0; i < c.length; i++) { c[i]= cvalue(c[i]); }
sortHand(c);
console.log("HAS STRAIGHT NORMALIZED PRE INSERT",c, c[0]);
c.push(c[0] + 13);
console.log("HAS STRAIGHT NORMALIZED",c);
var card = cvalue(c[0])
var sequential = 0;
var maxsequential = 0;
for(var i = 1; i < c.length; i++) {
var c_card = c[i];
if(c_card != card + 1) sequential = 0;
else { sequential ++; }
card = c_card;
maxsequential = Math.max(maxsequential,sequential);
console.log("sequential",c_card ,"==", card + 1,sequential,maxsequential);
}
console.log("final maxsequential",maxsequential);
return maxsequential == 4;
}
function hasFlush(hand) {
var card = suit(hand[0])
for(var i = 1; i < hand.length; i++) {
var c_card = suit(hand[i]);
if(card != c_card) return false;
card = c_card;
}
return true;
}
function matches(hand) {
var counts = {};
for(var i = 0;i < hand.length; i++) {
var v = cvalue(hand[i])
if(!counts[v]) counts[v] = 0;
counts[v] ++;
}
return counts;
}
function mCount(hand,m) {
var match = matches(hand);
var pairCount = 0;
for(var i in match) {
if(match[i] == m) pairCount ++;
}
return pairCount;
}
function bestPair(hand) {
console.log("=============Best Pair",hand);
var m = matches(hand);
console.log(m);
var mi = Object.keys(m)
console.log(mi);
var pi = [];
for(var i = 0; i < mi.length; i++) {
if(m[mi[i]] > 1) pi.push(mi[i])
}
console.log(pi);
sortHand(pi);
console.log(pi);
console.log("============BEST PAIR = ",pi[pi.length-1]);
if(pi[0] == 0) return 13; //pair of aces
return pi[pi.length - 1];
}
function sortHand(hand) {
return hand.sort(function(a, b){return a-b});
}
function get_hand_results(hand) {
var straight = hasStraight(hand);
var flush = hasFlush(hand);
var bestpair = bestPair(hand);
var pairs = mCount(hand,2);
var threek = mCount(hand,3);
var fourk = mCount(hand,4);
var multiplier = 0;
var result = ""
if(straight && flush && cvalue(hand[0]) == 0) {
//ROYAL FLUSH
result = "ROYAL FLUSH"
multiplier = 250;
} else if(straight && flush) {
result = "STRAIGHT FLUSH"
multiplier = 50;
} else if(fourk) {
result = "FOUR OF A KIND"
multiplier = 25;
} else if(threek && pairs == 1) {
result = "FULL HOUSE"
multiplier = 9;
} else if(flush) {
result = "FLUSH"
multiplier = 6;
} else if(straight) {
result = "STRAIGHT"
multiplier = 4;
} else if(threek) {
result = "THREE OF A KIND"
multiplier = 3;
} else if(pairs == 2) {
result = "TWO PAIR"
multiplier = 2;
} else if(bestpair > 9) {
result = "JACKS OR BETTER"
multiplier = 1;
} else {
result = "HARD LUCK"
multiplier = 0; }
console.log("Checking Poker Hand",hand,payout, multiplier,result);
console.log("straight",straight,
"flush",flush,
"bestPair",bestpair,
"pairs x",pairs,
"threek x",threek,
"fourk x",fourk)
return {
multiplier:multiplier,
text:result
};
}
/*console.warn("TEST ROYAL FLUSH");
get_hand_results(sortHand([9,10,11,12,0]));
console.warn("TEST STRAIGHT FLUSH");
get_hand_results(sortHand([1,2,3,4,5]));
console.warn("TEST STRAIGHT");
get_hand_results(sortHand([13,1,2,3,4]));
console.warn("TEST FLUSH");
get_hand_results(sortHand([8,2,3,4,5]));
console.warn("TEST FLUSH 2");
get_hand_results(sortHand([16,17,19,21,22]));
console.warn("TEST TWO PAIR");
get_hand_results(sortHand([1,13,0,14,5]));
console.warn("TEST 4k");
get_hand_results(sortHand([0,13,26,39,5]));
console.warn("TEST 3k");
get_hand_results(sortHand([0,13,26,4,5]));
console.warn("TEST FH");
get_hand_results(sortHand([0,13,26,1,14]));
console.warn("TEST JoB");
get_hand_results(sortHand([0,13,1,2,44]));
console.warn("TEST JoB FAil");
get_hand_results(sortHand([1,14,3,2,44]));
console.warn("TEST WRAP AROUND STRAIGHT");
get_hand_results(sortHand([11,12,13,14,15]));
*/
console.warn("TEST ACTUAL HAND");
var payout = State.variables.play_poker;
var hand = sortHand(clone(State.variables.poker_hand));
var results = get_hand_results(hand)
State.variables.poker_win = payout * results.multiplier;
State.variables.cash += payout*results.multiplier;
State.variables.poker_result = results.text;
<</script>>
<<unset $play_poker>>
<<set $poker_held = [false,false,false,false,false]>>
<<set $poker_turn = 0>>
<<unset $poker_deck>>
<</if>>
<</if>>
<</silently>>
Video Poker
<<if def $poker_win>>\
<h2>$poker_result - <<money $poker_win>></h2>
<</if>>\
<<if ndef $play_poker>>
<table>
<tr>
<td><<img card $poker_hand[0]+1 .png>></td>
<td><<img card $poker_hand[1]+1 .png>></td>
<td><<img card $poker_hand[2]+1 .png>></td>
<td><<img card $poker_hand[3]+1 .png>></td>
<td><<img card $poker_hand[4]+1 .png>></td>
</tr>
<tr>
<td>HOLD</td>
<td>HOLD</td>
<td>HOLD</td>
<td>HOLD</td>
<td>HOLD</td>
</tr>
</table>
<<else>>
Turn $poker_turn/3
<table>
<tr>
<td><<img card $poker_hand[0]+1 .png>></td>
<td><<img card $poker_hand[1]+1 .png>></td>
<td><<img card $poker_hand[2]+1 .png>></td>
<td><<img card $poker_hand[3]+1 .png>></td>
<td><<img card $poker_hand[4]+1 .png>></td>
</tr>
<tr>
<td><<cycle "$poker_held[0]" autoselect>><<option HOLD false>><<option |||| true>><</cycle>></td>
<td><<cycle "$poker_held[1]" autoselect>><<option HOLD false>><<option |||| true>><</cycle>></td>
<td><<cycle "$poker_held[2]" autoselect>><<option HOLD false>><<option |||| true>><</cycle>></td>
<td><<cycle "$poker_held[3]" autoselect>><<option HOLD false>><<option |||| true>><</cycle>></td>
<td><<cycle "$poker_held[4]" autoselect>><<option HOLD false>><<option |||| true>><</cycle>></td>
</tr>
</table>
<<link "DRAW!" "Video Poker">>
<<set $time += 40>><</link>>
<</if>>
<<if ndef $play_poker>>Play: \
<<if $cash >= 10>>\
<<link "($10)" "Video Poker">><<set $play_poker = 10>><<set $cash -= 10>><</link>> | \
<</if>>\
<<if $cash >= 100>>\
<<link "($100)" "Video Poker">><<set $play_poker = 100>><<set $cash -= 100>><</link>> | \
<</if>>\
<<if $cash >= 1000>>\
<<link "($1000)" "Video Poker">><<set $play_poker = 1000>><<set $cash -= 1000>><</link>>
<</if>>\
[[Main Floor|MainFloor]]
<<set $time += 30>>
<</if>><<set $cash to $cash - $debt>>
<<set $debt to 0>>
The bouncer holds out a small pad, it's got your total debt of $$?debt flagged up on it. You swipe the wallet over it.
<<quote you>>Here. <</quote>>
The bouncer taps the pad.
After what feels like an age the bouncer smiles.
<<quote bouncer>>Okay, you're free to go ?sir. Hope had a good time. Have a nice evening.<</quote>>
With that he stands aside and you are free to walk away.
You check your wallet. The debt has been cleared and you're left with $$?cash
[[Get some Air|Get Air]] | [[Return to the Main Floor|MainFloor]] | [[Cab to the Airport|GoodEnding]]The bouncer is twice your size, you've got to be faster than he is right?
Before you make it two feet you're on the ground, your face burried in the fresh hell that is the bouncers arm pit.
As the smell fades, so does your vision and you black out.
$end = "bunny"
[[Wake up|End]]You smell the sweet, hot air of the Las Vegas strip.
It's fresher than inside the Casino, but not quite as fresh as you like.
[[Return to the Casino|MainFloor]] | [[Hail a Cab|GoodEnding]]<<if $cash >= 10>>
<<set $cash -= 10>>\
You hail a cab and pay the $10.
[[Airport|WalkToAirport_End]]
<<else>>
You don't have the cash to hail a cab.
[[Walk to Airport|WalkToAirport]]
<</if>><<link "Endings">>
<<script>>
Dialog.setup();
Dialog.wiki(Story.get("EndingsDialogue").processText())
Dialog.open();
<</script>>
<</link>>
--
<a href="https://eva-de.itch.io/" target="_blank">Itch.io</a><<if def $game>>
Current Cash: <<if $cash < $casino_bank>> <<money $cash >><<else>>???????<</if>>
Current Debt: <<money $debt >>
?date
?time
?timeLeft left
Drunk: <<= Math.floor($drunk) >> / 100
Horny: <<= Math.floor($horny) >> / 100
Femme: <<= Math.floor($fem) >> / 100
<div name="avatar"></div>
<</if>>
<<set $noblackout = true>>\
You go up to the reception. One of the croupier bunnies appears to be staffing the desk.
<<quote you>>Hi there, my Wallet looks like it's broken. Can you help me?<</quote>>
She turns to you. You notice the light on her collar is blinking rapidly.
<<quote bunny>>Hi there! We are aware of the issue and one of our technical associates will be here momentarilly!<</quote>>
You don't have to wait long as a large bouncer appears from a door marked 'staff only' and approaches the desk.
<<quote bouncer>>I understand your wallet is broken?<</quote>>
<<quote you>>Yes, and I'm on one heck of a streak too.<</quote>>
<<quote bouncer>>I'll take the wallet to our tech guys for troubleshooting. It shouldn't take long<</quote>>
<<quote you>>I'm not letting this wallet ouf of my sight! You'll just have to take me with you.<</quote>>
The Bouncer smiles, which slightly disturbs you. He nods and beckons you towards the door he came out of.
<<quote bouncer>>This way ?sir<</quote>>
[[Follow the Bouncer|BreakTheBank_Follow]] | [[Run for the door|BreakTheBank_Run]]
<<if $debt > 0>>
You are out of cash and you have <<money $debt>>
The bouncers aren't going to let you leave without paying that debt.
[[Give yourself up to the Bouncers|Bankrupt_GiveUp]]
<<if $colonel > 0>>[[Talk to the Colonel|Bankrupt_Colonel]]<</if>>
<<if $dealer > 0>>[[Talk to Devin|Bankrupt_Devin]]<</if>>
<<if $playboy > 1>>[[Talk to John|Bankrupt_Agent]]<</if>>
<<else>>
You are out of cash, but at least you're debt free. You have ?timeLeft before you have to leave for the airport.
[[Start walking to the Airport|WalkToAirport]]
<</if>>
[[Back to the Floor|MainFloor]]You follow the bouncer behind the scenes.
You find yourself in a white corridor. The air seems both fresher and staler at the same time. It lacks the pungent odour that permeates the Casino floor, while at the same time feels sterile, almost artificially clean.
The door closes behind you and suddenly the silence is deafening. You'd forgotten what it was like not to be bombarded constantly by sounds, or distracted by lights demanding your attention.
The bouncer stands behind you and beckons you down the corridor.
You keep the wallet close to your chest as you walk.
You pass various doors, some leading back into the Casino floor, others into offices, stairwells or staff facilities.
A few Bunny Girls flit between the bathrooms and the main Casino, but otherwise there are no other people here.
Eventually you come to the end of the corridor. An unmarked door with a security pad.
The bouncer scans his I.D. and it opens. A brightly lit, descending, stairwell lies in front of you.
The lower floor is much less barren and utilitarian. There are windows into most of the rooms. People are busy. There are sounds again. Electronic and mechanical beeps. The murmur of voices behind glass.
You are led into a room marked 'Interview Room 4'.
<<quote you>>I'm not getting this fixed am i?<</quote>>
The bouncer gently urges you inside
<<quote bouncer>>Nope<</quote>>
[[Sit Down|BreakTheBank_Interview]] | [[Run for it|BreakTheBank_Run]]The bouncer is twice your size, you've got to be faster than he is right?
Before you make it two feet you're on the ground, your face burried in the fresh hell that is the bouncers arm pit.
As the smell fades, so does your vision and you black out.
<<set $end = "bunny">>
[[Wake up|End]]The room is small. There's a metal table in the middle and two chairs on opposite sides. It reminds you more the interrogation rooms you see on cop shows than any kind of interview you've had.
The bouncer sits opposite you.
<<quote bouncer>>Understand, ?sir, we apologise profusely for any inconvenience caused by the malfunctioning of your wallet and as the casinos designated representative of management I'd like to offer you reasonable compensation<</quote>>
<<quote you>>I won <<money $cash>>, exactly. Your compensation had better be that exact number<</quote>>
<<quote bouncer>>Understand, ?sir, we do only have your word for that. Let me run down what we're offering.
<<if $debt > 0>>Firstly, we can clear that outstanding debt of yours<<else>>Firstly, we can offer you full complimentary access to all casino high-roller facilities<</if>>
Secondly, I am authorized to recompense you $500,000 for your trouble.<</quote>>
[[Accept the Deal|BreakTheBank_Accept]] | [[Demand Full Payment|BreakTheBank_Demand]]<<set $debt to 0>>\
<<set $cash to 500000>>\
<<set $noblackout = false>>\
you squirm in your chair. $500,000 is a lot of money. Sure it's not <<money $cash>>, but under the circumstances it's probably more effort to fight them.
<<quote you>>That sounds reasonable. I accept<</quote>>
The bouncer taps something onto his wristpad.
<<quote bouncer>>Very well ?sir. I've transferred the money to your account. If you'll come with me I'll escort you back to the casino<</quote>>
You follow the bouncer back up the stairs and out to the reception area.
[[Main Floor|MainFloor]] The bouncer stands up. You move to stand as well but he indicates for you to keep sitting.
<<quote bouncer>>I will have to conferr with upper management, please wait here until I return<</quote>>
The bouncer leaves the room and leaves you alone. The door is unlocked and slightly ajar.
[[Wait|BreakTheBank_Wait]] | [[Snoop|BreakTheBank_Snoop]]<<set $tutorial_complete = true>>
<<if $cash > 10 && $cash < $debt / 10>>
You sigh, you've won some of your money back, but there's a long way to go before you pay off your debt.
<<elseif $cash <= 10>>
You sigh, you won some back but you lost it all again. You've got a long way to go
<<else>>
You've won a lot of your money back. You're feeling good.
<</if>>
You look at the clock on your wallet. ?time.
You've got until 6 AM to get the cash together before the mob come and claim you. ?timeLeft left.
<<if $cash > 10 && $cash < $debt / 10>>
Seemingly sensing your distress as you leave the table, an old Colonel-looking type follows you
<<quote colonel>>Howdy friend, you were looking mighty worried there. Everything alright there?<</quote>>
<<else>>
One of the other rollers at the table leaves with you.
<<quote colonel>>Howdy friend, you were on fire back there. You seemed worried though. Everyhing okay?<</quote>>
<</if>>
You find yourself deeply engrossed in this mans voice. You can only muster a meek response.
<<quote you>>I'm okay, thanks<</quote>>
He catches a glimpse of your flashing red wallet
<<quote colonel>>They got you didn't they? Rat bastards. They're not gonna let you out of here until you pay off that debt you know.<</quote>>
You remain silent as you listen to the man.
<<quote colonel>>You know you have choices friend. If you want another way out, come find me in the high rollers lounge. The way you've been going tonight you should have access<</quote>>
[[Nod politely|MainFloor]]
<<if $bought_drink == true>>\
<<if $drunk < 10 && (State.random() * 100 < 50)>>\
The Bar Bunny goes to pour you a drink. You notice as she does so that the jewel around her neck flashes slightly.\
<<else>>\
The Bar Bunny pours you out a fresh drink.\
<</if>>\
You take it and down it. Somehow the drink tastes much sweeter. Maybe because drink this cheap feels like stealing?
<<else>>\
This high rollers lounge lacks the outright assault on the senses that the main floor has. A quiet respite from the cacophony of sound.
The sticky hot atmosphere remains however.
You see a sign above the bar advertising Complimentary Mimosas.
The rest of the drinks are much cheaper here too.
You wonder if there's a catch?
<</if>>
<<link "Mimosa ($0)" "High Rollers">>
<<set $bought_drink = true>>
<<set $cash -= 0>>
<<set $drunk += 5>>
<<set $fem_d += 10>>
<<set $horny_d += 10>>
<<set $time += 30>>
<</link>>
<<link "Gin and Tonic ($2)" "High Rollers">>
<<set $bought_drink = true>>
<<set $cash -= 2>>
<<set $drunk += 10>>
<<set $fem_d += 20>>
<<set $horny_d += 20>>
<<set $time += 30>>
<</link>>
<<link "Bourbon ($5)" "High Rollers">>
<<set $bought_drink = true>>
<<set $cash -= 5>>
<<set $drunk += 15>>
<<set $fem_d += 30>>
<<set $horny_d += 30>>
<<set $time += 10>>
<</link>>
<<link "Vodka ($6)" "High Rollers">>
<<set $bought_drink = true>>
<<set $cash -= 6>>
<<set $drunk += 17>>
<<set $time += 10>>
<<set $fem_d += 50>>
<<set $horny_d += 50>>
<</link>>
[[Speak to The Colonel|Colonel]]
[[Return to Main Floor|MainFloor]]
<<set $time += 30>>
<<unset $bought_drink>> <<if ndef $slot_result>><<set $slot_result=[6,6,6]>><</if>>\
<<set $slot_payouts3 = [1,1.25,1.5,2,4,20,100] >>\
<<set $slot_payouts2 = [0.5,0.5,0.5,1,2,2,2] >>\
Welcome to <<money $slots>> Diamond Slots
<<if def $slot_payout>>\
<<if $slot_payout > $slots>>\
<h2 class="bet win">$slot_result_text! You won <<money $slot_payout>></h2>
<h2>BIG WIN!</h2>
<<elseif $slot_payout > 0>>\
<h2 class="bet win">$slot_result_text! You won <<money $slot_payout>></h2>
<<else>>\
<h2 class="bet loss">$slot_result_text</h2>
<</if>>\
<</if>>\
<<set $slot_jackpot_countdown -= 1>>
<<if $colonel == 3>>$slot_jackpot_countdown Spins left until Jackpot
<</if>>\
<table>
<tr>
<td><<img slot $slot_result[0]+1 .png>></td>
<td><<img slot $slot_result[1]+1 .png>></td>
<td><<img slot $slot_result[2]+1 .png>></td>
</tr>
</table>
<<if $cash > $casino_bank>>
Your wallet appears to be on the fritz
[[Go to the Reception|BreakTheBank]]
<<elseif $cash >= $slots>>
<<link "Pull the Lever" slotsPlay>>
<<script>>
console.log("SLOTS",State.variables.slots);
State.variables.cash -= State.variables.slots;
var payouts3 = State.variables.slot_payouts3;
var payouts2 = State.variables.slot_payouts2;
var result = [
(State.random() *(payouts3.length- 1)) >> 0,
(State.random() *(payouts3.length- 1)) >> 0,
(State.random() *(payouts3.length- 1)) >> 0
]
if(State.variables.slot_jackpot_countdown <= 0) {
State.variables.slot_jackpot_countdown = 10000;
result = [payouts3.length - 1,payouts3.length- 1,payouts3.length- 1]
}
if(result[0] == result[1] && result[0] == result[2]) {
//match 3
State.variables.slot_result_text = "Match 3"
State.variables.slot_payout = (State.variables.slots * payouts3[result[0]]) >> 0
} else if(
result[0] == result[1] ||
result[0] == result[2] )
{
//match 2
State.variables.slot_result_text = "Match 2"
State.variables.slot_payout = (State.variables.slots * payouts2[result[0]]*0.5) >> 0
} else if(
result[1] == result[2])
{
//match 2
State.variables.slot_result_text = "Match 2"
State.variables.slot_payout = (State.variables.slots * payouts2[result[1]]*0.5) >> 0
} else if(result[0] == 0 || result[1] == 0 || result[2] == 0) {
State.variables.slot_result_text = "Match Bar!"
State.variables.slot_payout = (State.variables.slots*0.4) >> 0
} else {
State.variables.slot_result_text = "No Match"
State.variables.slot_payout = 0
}
State.variables.slot_result = result;
State.variables.cash += State.variables.slot_payout;
<</script>>
<</link>>
<<else>>
Not Enough Cash
<</if>>
<<link "Find another machine" "slotsPlay">>
<<set _r = Math.floor(State.random() * 100)>>
<<if _r < 10>>
<<set $slot_jackpot_countdown = Math.floor(State.random() * 10)>>
<<elseif _r < 50>>
<<set $slot_jackpot_countdown = Math.floor(State.random() * 100)>>
<<else>>
<<set $slot_jackpot_countdown = Math.floor(State.random() * 10000)>>
<</if>>
<<if $colonel == 3>>
<<set $slot_jackpot_countdown = Math.floor($slot_jackpot_countdown/10) >>
<</if>>
<<set $slot_jackpot_countdown = Math.max(1, $slot_jackpot_countdown) >>
<</link>>
[[Return to the Slots Entrance|Slots]]
<<set $time += 30>>The Ladies toilets stretch out in front of you.
The incandescent miasma of the casino floor follows you in here, with an added hint of pine fragrance.
Next to you are the sinks and mirrors. There are about two dozen cubicles in ahead of you lining each wall
The last cubicle appears to be locked. It has a paypad attached marked with $1
[[Mirror]] | [[Free Cubicle]] | <<link "Last Cubicle ($1)" FemaleGiveBJ>><<set $cash to $cash - 1>><</link>> | [[Exit|MainFloor]]
<<set $glory_payout = 20>>The Gents toilets stretch out in front of you.
The incandescent miasma of the casino floor follows you in here, with an added hint of pine fragrance.
Next to you are the sinks and mirrors. There are about a dozen cubicles in ahead of you, and a urinal trough lining the opposite wall.
The last two cubicles appear to be locked. Each has a paypad attached. The last one costs $25, the 2nd last one costs $1.
[[Mirror]] | [[Free Cubicle]] | <<link "2nd Last Cubicle ($1)" MaleGiveBJ>><<set $cash to $cash - 1>><</link>> | <<link "Last Cubicle ($25)" MaleGetBJ>><<set $cash to $cash - 25>><</link>> | [[Exit|MainFloor]]
<<set $glory_payout = 5>><<set $toiletfail = true>>
You move to the toilet door but the bouncer blocks your way
<<quote bouncer>>I'm sorry ?sir, I can't let you in there<</quote>>
<<quote you>>Why not?<</quote>>
<<quote bouncer>>New Confederacy Law states that every person must use the bathroom related to their assigned gender. This room does not match your assigned gender.<</quote>>
<span id='genderid'>
<<if $presenting == 'male'>>
<<link "But I identify as a woman">>
<<replace "#genderid">>
<<quote you>>But I identify as a Woman<</quote>>
<<quote bouncer>>Not according to your wallet profile. Can't let you in until that's changed<</quote>>
<<if $colonel == 1>>
<span class='alert'>Behind the bouncer you see a small remote drone, about the size of a Bumblebee, flit into the air conditioning vents above the Staff-only door.</span>
<<set $colonel = 2>>
<</if>>
<</replace>>
<</link>>
<<else>>
<<link "But I identify as a man">>
<<replace "#genderid">>
<<quote you>>But I identify as a Man<</quote>>
<<quote bouncer>>Not according to your wallet profile. Can't let you in until that's changed. It's for your own safety.<</quote>>
<<if $colonel == 1>>
<span class='alert'>Behind the bouncer you see a small remote drone, about the size of a Bumblebee, flit into the air conditioning vents above the Staff-only door.</span>
<<set $colonel = 2>>
<</if>>
<</replace>><</link>>
<</if>>
</span>
[[Leave|MainFloor]] | <<if $presenting == 'male'>> [[Other Bathroom|Gents]] <<else>> [[Other Bathroom|Gents]]<</if>>You look in the mirror.
<div name="avatar"></div>
<<if $fem < 50>>
<<if $last_fem > $fem && Math.abs($last_fem - $fem) >= 5>>
You're begining to feel more like your old self.
<<elseif $last_fem < $fem && Math.abs($last_fem - $fem) >= 5 >>
This place is definitely doing something to you.
<<else>>
Nothing's really changed since last you looked
<</if>>
<<else>>
You see yourself. At least, you think it's you. You've changed so much since you started gaming here. This place is having a severe physical effect on you. It's clear you're becoming more and more feminine.
<<if $o_count > 10>>
Maybe it's all the blowjobs<</if>>
<<if $asex_recieved > 10>>
Maybe it's all the anal sex<</if>>
Maybe it's something in the air?
Who knows?
<</if>>\
<<include "PlayerOverview">>
<<if Math.abs($last_fem - $fem) > 10>><<set $last_fem = $fem>><</if>>\
<<return "Leave">>You do your business in the cubicle
<span id='masturbate'>
<<link "Masturbate">>
<<replace "#masturbate">>
<<if $has_penis>>\
<<if $horny > 70>>You're so horny just touching yourself anywhere brings you to the edge. Touching the edge of your penis gives you a mind shattering orgasm.
<<set $time += 60>>\
<<set $horny = 0>><<set $horny_d = 1>>\
<<else>>\
You've done this countless times before and the mundanity of it all dulls the feeling. It takes you a few minutes but you eventually come.
<<set $horny = 0>><<set $horny_d = 1>>\
<<set $time += 260>>\
<</if>>
<<elseif $has_vagina>>\
<<if $horny > 70>>You're so horny just touching yourself anywhere brings you to the edge. Slipping a single finger inside your pussy gives you a mind shattering orgasm.
<<set $time += 60>>\
<<set $horny = 0>><<set $horny_d = 1>>\
<<else>>\
Your unskilled fingers take a long time to bring you to orgasm, but you manage it.
<<set $horny = 0>><<set $horny_d = 1>>\
<<set $time += 260>>\
<</if>>\
<<else>>\
Without genitals it's hard for you to get off.
<<if $horny > 70>>You're so horny it doesn't matter, a gentle stimulation of your prostate gives you a mind shattering orgasm.
<<set $horny = 0>><<set $horny_d = 1>>\
<<set $time += 60>>\
<<else>>\
You are unable to get yourself off no matter how hard you try. After ten minutes of futility you give up
<<set $time += 360>>\
<<set $horny_d += 1>>\
<</if>>\
<</if>>\
<</replace>>\
<</link>>
</span>
<<return "Leave">>This cubicle has no toilet seat in it. Instead there is a hole in the wall into the $25 cubicle.
The cubicle is surprisingly clean considering what you know goes on here.
<span id='clientwait'>
<<link "Wait for a client">>
<<replace "#clientwait">>
<<set $time += Math.floor(State.random() * 600 + 2)>>
<<include [[GiveBJ]] >>
[[Clean Up|MaleGiveBJ]]
<</replace>>
<</link>>
</span>
<<return "Leave">>You pay the $25 to enter the cubicle.
There are two holes, one leads to the adjacent cubicle, one seems to lead into the ladies toilets.
<<if $has_penis>>
You unzip your jeans and poke your penis through the hole.
After a few minutes you're brought to a satisfying orgasm.
You feel a bit more manly.
<<set $man_d = 4>>
<<elseif $has_vagina>>
You try and mash your pussy up against the hole but you can't figure out a comfortable position in the cramped cubicle.
Bit of a waste of money.
<<else>>
You don't really have any genitalia any more. There's nothing there to put up to the hole.
Bit of a waste of money.
<</if>>
[[Toilets|Gents]]This cubicle has no toilet seat in it. Instead there is a hole in the wall. It appears to lead into the Gents toilets.
The cubicle is surprisingly clean considering what you know goes on here.
<span id='clientwait'>
<<link "Wait for a client">>
<<replace "#clientwait">>
<<set $time += Math.floor(State.random() * 300 + 1)>>
<<include [[GiveBJ]] >>
[[Clean Up|FemaleGiveBJ]]
<</replace>>
<</link>>
</span>
<<return "Leave">>
<<if ndef $glory_payout>><<set $glory_payout = 5>><</if>>
<<set _pay = $glory_payout>>
<<set $cash += _pay>>\
\
<<if $o_count < 10>>\
<<set $tip = 0>>\
<<set $time += Math.floor(State.random() * 120 + 60)>>\
As the meaty member pokes through the hole, you hesitantly begin to work it with your hands.
You know you have to use your mouth at some point, but you're not sure you're ready for that yet.
Still, you force yourself to kiss the shaft and slowly work to taking it in your mouth. The smell is overwhelming but you power through.
Eventually your client cums.
<<elseif $o_count < 5>>\
<<set $time += Math.floor(State.random() * 100 + 60)>>\
<<set $tip = Math.floor((State.random() * 5) + 5)>>\
As the meaty member pokes through the hole, you gingerly begin to work it with your hands.
You're begining to get the hang of things and know roughly when to start sucking on it.
You still don't feel right doing it, but kiss the shaft and slowly work to taking it in your mouth, the smell is still as unpleasant as always.
Eventually your client cums.
<<elseif $o_count < 10>>\
<<set $time += Math.floor(State.random() * 80 + 60)>>\
<<set $tip = Math.floor((State.random() * 10) + 10)>>\
As the meaty member pokes through the hole, you gingerly begin to work it with your hands.
You're get the hang of things and know roughly when to start sucking on it.
It feels a bit more natural. You kiss the shaft and slowly work to taking it in your mouth. You feel like you might be getting used to the smell.
Your skillful tongue brings your client to orgasm quickly.
<<else>>\
<<set $time += Math.floor(State.random() * 60 + 60)>>\
<<set $tip = Math.floor((State.random() * 10) + 15)>>\
As the meaty member pokes through the hole, you gingerly begin to work it with your experienced hands.
Your experience lets you know when to start using your mouth.
It's become second nature to you. You kiss the shaft and slowly work to taking it in your mouth. You are getting used to the smell.
Your skillful tongue brings your client to orgasm quickly.
<</if>>\
<<if $tip > 0>> There is a small ding as you recieve a <<money $tip>> tip
<</if>>\
<<set _skillinc = Math.floor((State.random() * 2) + 1)>>\
<<set _feminc = 0>>\
<<if $fem < 50>><<set _feminc = Math.floor((State.random() * 2) + 1)>><</if>>\
<<set $o_count ++ >>
<<set $fem_d += _feminc*10>>\
<<set $horny_d ++>>\
You got <<money _pay>> share, the rest goes to the Casino.
<<if _feminc > 0>>The heady scent of the musk seems to affect your mind<</if>><<if $fem < 10>>Your face has a slight stubbly growth.\
<<elseif $fem < 20>>Your face lacks it's usual 5 O'clock shadow.\
<<elseif $fem < 30>>Your face seems softer than usual.\
<<elseif $fem < 40>>Your face seems to have filled out a bit.\
<<elseif $fem < 50>>Your face has lost it's ruggedness entirely.
It's hard to tell if you're male or female.\
<<elseif $fem < 60>>Your face has lost it's ruggedness entirely.
You feel oddly attracted to it.
Anyone looking at you would think you were a woman.\
<<elseif $fem < 70>>Anyone looking at you would think you were a woman.\
<<else>>Anyone looking at you would think you were a woman.\
<</if>>\<<if $fem < 10>>Your body is it's usual self.\
<<elseif $fem < 30>>You look like you've lost a bit of weight.\
<<elseif $fem < 40>>Your body feels a lot softer than normal.\
<<elseif $fem < 50>>Your body feels a lot softer.
You feel slightly shorter than you were.
Your have small breasts hidden under your clothing.\
<<elseif $fem < 60>>Your shoulders and waist are narrower.
You are a lot shorter than you were.
You can no longer hide your noticeable breasts.\
<<elseif $fem < 70>>Your shoulders and waist are much narrower.
You've lost about 6 inches in height.
Your breasts are a normal size now.\
<<elseif $fem < 80>>Your shoulders and waist are much narrower.
You've lost about 9 inches in height.
Your breasts are larger than average.\
<<elseif $fem < 90>>Your shoulders and waist are much narrower.
You've lost about a foot in height.
Your breasts are straining against yout top.\
<<else>>Your shoulders and waist are impossibly slender.
You've lost over a foot in height.
Your top is struggling to contain your breasts.\
<</if>>\<<if $has_penis>>\
<<if $fem < 10>>Your penis is normal sized.\
<<elseif $fem < 20>>Your penis feels slightly off.\
<<elseif $fem < 30>>Your penis is smaller.\
<<elseif $fem < 40>>Your penis is much smaller.\
<<elseif $fem < 50>>You have a micropenis.\
<<elseif $fem < 60>>Your penis is a nub.\
<<else>>Your penis is barely there.\
<</if>>\
<</if>>\
<<if $has_penis>>
<<if $fem < 10>>Your testicles are normal sized.\
<<elseif $fem < 30>>Your testicles are smaller.\
<<elseif $fem < 50>>You testicles have shrivvled significantly.\
<<else>>Your testicles have completely retracted.\
<</if>>\
<</if>>\
<<if $has_vagina>>
<<if $fem < 10>>Your pussy has almost completely sealed itself.\
<<elseif $fem < 30>>You have a barely detectable pussy.\
<<elseif $fem < 50>>You have a normal pussy.\
<<else>>You have a pussy. It there's a near constant feeling of emptiness in it.\
<</if>>\
<</if>>\<<if $fem < 10>>Your legs are normal.\
<<elseif $fem < 30>>Your legs feel softer. They've lost all their hair.\
<<elseif $fem < 50>>Your notice your jeans are not sitting the way they used to.
They hang off your hips a bit more.
You're beginning to sway your hips when you walk.\
<<elseif $fem < 70>>Your notice your jeans are not sitting the way they used to.
Your hips seem much wider compared to your waist.
Your butt is visibly pushing out behind you.
You can't help but walk with a sexy swing.\
<<elseif $fem < 80>>Your hips and butt are straining against your jeans.
They swing like a pendulum with every step you take.\
<<else>>Your hips and butt are so big you feel like your jeans are about to burst.
They swing like a pendulum with every step you take.\
<</if>>\<<include "PlayerFace">>
<<include "PlayerBody">>
<<include "PlayerGenitals">>
<<include "PlayerLegs">><<set _deltafem = Math.abs($last_fem - $fem) >>\
<<set $hoursLeft = window.timeLeft() >>
<<if $fem < 50>>\
<<if _deltafem < 10>><<elseif _deltafem < 20>>\
<span class='warning'>Your body feels off somehow. You feel like you need to check a mirror</span>
<<elseif _deltafem <= 50>>\
<span class='warning'>Something feels very wrong. You feel like you need to check a mirror</span>
<</if>>\
<<else>>\
<<if _deltafem > 50>>\
<span class='warning'>You cannot hide your growing breasts any more. You really need to find somewhere private to check yourself out properly.</span>
<<elseif _deltafem > 10>>\
<span class='warning'>Your body like it's changed again. You feel like you need to check a mirror.</span>
<</if>>\
<</if>>\
<<if $drunk >= 10>>\
<span class='warning'>\
<<if $drunk < 20>>You feel slightly tipsy
<<elseif $drunk < 40>>You feel mildly drunk
<<elseif $drunk < 60>>You feel drunk
<<elseif $drunk < 80>>You feel very drunk
<<elseif $drunk <= 99>>You feel like you're about to black out
<<elseif $noblackout == false>><<set $drunk = 98>><<goto "Blackout">><</if>>\
</span>\
<</if>>\
<<if $horny >= 10>>\
<span class='warning'>\
<<if $horny < 30>>You feel warm.
<<elseif $horny < 50>>You're beginning to sweat.
<<elseif $horny < 60>>You feel horny.
<<elseif $horny < 80>>You feel very horny.
<<elseif $horny <= 99>>You rub your legs together. You're desperately in need of a release.
<<elseif $noblackout == false>><<set $horny = 98>><<goto "Blackout">><</if>></span>\
<</if>>\
<<if $cash < 0>>\
<<set $debt -= $cash>>\
<<set $cash = 0>>\
<span class='error'>Your over-spending increases your debt.</span>
<</if>>\
<<if tags().includes("Interrupt")>>
<<if ndef $playboy && $fem > 50 >>\
<<goto "PlayboyIntro">>
<</if>>\
<</if>>\
<<if $hoursLeft <= 0>>
<<goto "TimeUp">>
<</if>>\<<if !tags().includes("NoCheck")>>\
<<include "UpdateTimeBasedVariables">>\
<<include "AlertCheck">>\
<</if>>\
<<include PlayerAvatar>>\The Reception Atrium has the closest thing to fresh air you can get without leaving the Casino.
Behind the reception counter is a curvy looking woman in the standard Bunny Uniform the croupiers wear. Like all of them there is a collar around her neck with a small jewel embedded in the front.
She turns to you and with an excited smile greets you
<<quote bunny>>Welcome! I'm Heather! How can I be of service?<</quote>>
<span id='jewel'>
<<link "Ask about the Collar">><<replace "#jewel">>
<<quote you>>What's with the collar you're wearing?<</quote>>
<<quote bunny>>It's part of the uniform ?sir! The New Nevada Gaming Commission requires all staff interactions to be recorded.The Collars contain monitoring equipment and allow management to keep in contact with us at all times to ensure no foul play occurs within the Casino!<</quote>>
<<quote you>>So we're being watched all the time?<</quote>>
<<quote bunny>>I assure you ?sir it's for your own safety and comfort. It ensures no-one cheats, and everyone has a good time!<</quote>>
<</replace>>
<</link>>\
</span>
<<if $toiletfail == true>>
<span id='gender'>
<<link "Update your Wallet Profile">><<replace "#gender">>\
<<quote you>>Can you update my Wallet Profile? It's been... set up wrong. The Gender is wrong.<</quote>>
<<set _target_present = ($fem >= 50 ? "female": "male")>>\
<<if _target_present != $presenting>>\
<<set $presenting = ($fem >= 50 ? "female": "male")>>\
<<set $toiletfail = false>>\
<<quote bunny>>Of course ?sir! I'll have that changed for you right away!<</quote>>
<<else>>
<<quote bunny>>I'm sorry ?sir! According to our scans you do not appear to be a ?nman. I am not authorized to change it. Have a nice day.<</quote>>
<</if>>\
<</replace>>\
<</link>>\
</span>
<</if>>\
<<if $debt > 0>>
<span id='debt'>
<<link "Pay off some of my Debt">><<replace "#debt">>
<<quote you>>I'd like to pay off some of my debt<</quote>>
<<quote bunny>>Of course ?sir!How much would you like to pay off?<</quote>>
<<numberbox "_payoff" $debt>><<link "Pay">>
<<if _payoff <= $debt && _payoff <= $cash && _payoff > 0>>
<<set $debt -= _payoff>>
<<set $cash -= _payoff>>
<<goto Reception>>
<</if>>
<</link>>
<</replace>>
<</link>>
</span>
<</if>>
[[Return to the Main Floor|MainFloor]]DRUNK: $drunk
HORNY: $horny
FEMME: $fem
<<set _timeloss = Math.floor((State.random() * 2) + 1)>>\
<<set $time += _timeloss * 60 * 60>>\
<<if $drunk > 90 && $horny <= 70>>
You have drunk too much alcohol and blacked out.
<<elseif $horny > 90 && $drunk <= 70>>
You fall into a pink haze, unable to think until you've relieved your uncontrollable lust. You dread to think what happened while you were out of control...<<else>>
You find yourself blackout drunk and uncontrolably horny. You dread to think what you got yourself in to while you were out of control...
<</if>>
You have lost _timeloss hours.
Your memories slowly start to come back to you.
<<if ($fem > 50) && ($horny > 70) && ($drunk > 70) && ($has_vagina != true) && ($presenting == "male")>>\
<<set $horny to 0>>\
<<set $drunk to 20>>\
<<set $fem = 100>>\
<<set $has_penis = false>>\
<<set $has_vagina = true>>\
Your body feels incredibly sore. Like someone's been going at your bones with a hammer.
Your breasts feel very tender. You reach down to massage your aching pussy.
Wait? Pussy...
<i>Holy shit</i>
You look down to inspect the damage with your eyes and see not only have you got a vagina now, but you've lost your penis and your breasts are huge.
You're not only completely female, you're gorgeous. Or, at least you would be if you weren't lying unconcious, sweating on the floor.
<<if ndef $dealer>>\
<<set $dealer = 0>>\
You find a business card in your pocket. It's got the Casino's logo on it, but handwritten on the back is "Suite 309 xoxo".
<<else>>\
If you want to reverse this you might have to talk to Devin.
<</if>>
<</if>>\
<<if $horny > 50>>\
You begin to remember all the things you did.
<<set _anal = Math.floor(State.random() * _timeloss * 3)>>\
<<set _oral = Math.floor(State.random() * _timeloss * 3)>>\
<<set _oralg = Math.floor(State.random() * _timeloss * 3)>>\
<<set $o_count += _oralg>>\
<<set $o_recieved += _oral>>\
<<set $asex_recieved += _anal>>\
<<if _anal > 0>>You recieved anal sex _anal times
<<set $fem += _anal >>\
<</if>>\
<<if _oral > 0>>You recieved oral sex _oral times
<<if $has_penis>>\
<<set $fem -= _oral>>\
<<else>>\
<<set $fem += _oral>>\
<</if>>\
<</if>>\
<<if _oralg > 0>>You gave oral sex _oralg times
<<set $fem += _oralg >>\
<</if>>\
<<if $has_penis>>\
<<set _penal = Math.floor(State.random() * _timeloss * 3)>>\
<<if _penal > 0>>
<<set $fem -= _penal>>\
You remember penetrating _penal holes, but you're not sure if they were male or female
<<set $psex_count += _penal>> \
<</if>>\
<</if>>\
<<if $has_vagina>>\
<<set _vaginal = Math.floor(State.random() * _timeloss * 3)>>\
<<if _vaginal > 0>>\
<<set $fem += _vaginal * 3>>\
<<set $vsex_recieved += _vaginal>>\
You remember having your pussy penetrated _vaginal times.
<</if>>\
<</if>>\
You ache all over.
<<if $drunk > 50>>\
<<set $drunk to 50>>\
You've sobered up a bit.
<<set _lostcash to Math.floor(State.random() * $cash * 0.5)>>\
<<if _lostcash > 0>>\
<<set $cash -= _lostcash>>\
In your drunken haze you lost <<money _lostcash>> in cash
<</if>>\
<</if>>\
<<if $horny > 50 && ndef $dealer>>\
<<set $dealer = 0>>\
You find a business card in your pocket. It's got the Casino's logo on it, but handwritten on the back is "Suite 309 xoxo".
<</if>>\
<</if>>
<<set _loc = Math.floor(State.random() * 5)>>\
<<switch _loc>>\
<<case 0>>You wake up in the [[Gents Toilets|Gents]]
<<case 1>>You wake up in the [[Ladies Toilets|Ladies]]
<<case 2>>You wake up in the [[High Rollers Suite|High Rollers]]
<<case 3>>You wake up in the [[Bar]]
<<case 3>>You wake up in the [[Atrium]]
<</switch>>
<<set $horny to 10>>\
<<set $horny_d to 1>>\<<silently>>
<<set _deltatime = $time - $last_update_time>>
<<set $last_update_time = $time>>
<<for _d = _deltatime; _d > 0; _d -= 60>>
<<if $drunk > 0>>
<<set $drunk -= 1>>
<</if>>
<<if $fem_d > 0>>
<<set $fem += 0.15>>
<<set $fem_d -= 1>>
<</if>>
<<if $man_d > 0>>
<<set $fem -= 0.1>>
<<set $man_d -= 1>>
<</if>>
<<if $horny_d > 0>>
<<set $horny += $horny_d * 0.1>>
<<set $horny_d -= 1>>
<<if $horny_d < 1>><<set $horny_d = 1>><</if>>
<</if>>
<<if $has_vagina>>
<<set $horny += 0.25>>
<</if>>
<</for>>
<<if $drunk < 0>><<set $drunk = 0>><</if>>
<<if $drunk > 100>><<set $drunk = 100>><</if>>
<<if $fem < 0>><<set $fem = 0>><</if>>
<<if $fem > 100>><<set $fem = 100>><</if>>
<<if $fem_d < 10>><<set $fem_d = 10>><</if>>
<<if $fem_d > 1000>><<set $fem_d = 1000>><</if>>
<<if $man_d < 0>><<set $man_d = 0>><</if>>
<<if $man_d > 1000>><<set $man_d = 1000>><</if>>
<<if $horny < 0>><<set $horny = 0>><</if>>
<<if $horny > 100>><<set horny = 100>><</if>>
<<if $horny_d < 1>><<set $horny_d = 1>><</if>>
<<if $horny_d > 1000>><<set horny_d = 1000>><</if>>
<</silently>>\You decide it's best to wait for the bouncer to return.
About two minutes later someone passes by and closes the door.
<<set $time += 120>>
Waiting in this room with no stimulation, suddenly your lack of sleep over the past week is catching up to you. You begin to yawn.
You put your head down on the table and take a nap
<<set $end = "break_capture">>
[[Wake Up|End]]
You peek out of the door to make sure no-one is coming.
You slide out into the corridor. You look both ways.
Strangely, there doesn't appear to be any kind of CCTV or monitoring system down here, unlike in the main room where every staff member had a camera on them.
You peek through the window opposite your room. You see some kind of monitoring station showing all the CCTV cameras on the floor. Two bouncers are watching them intently.
You remember the doors you saw as you came in, as well as the stairs you came down. At the far end is another, more important looking, door.
[[Monitoring Station|BreakTheBank_ControlRoom]] | [[Room 1|BreakTheBank_Room1]] | [[Room 2|BreakTheBank_Room2]] | [[End Room|BreakTheBank_Lab]] | [[Stairs Up|BreakTheBank_StairsUp]] | <<if $colonel < 3 || (def $colonel_security && def $colonel_lab)>> [[Interview Room|BreakTheBank_InterviewRoom]]<<else>>Interview Room (Find more evidence)<</if>><<set $fem = 100>>
<<set $horny = 100>>You gingerly open the door to the control room, trying not to make a sound.
<<if ndef $controlroomempty>>
The door creaks as it opens. The two bouncers turn from their monitoring duties.
<<quote bouncer>>Hey! You're not supposed to be here!<</quote>>
They both jump you before you can escape
<<quote bouncer>>What do we do with ?him?<</quote>>
There's a short pause, the bouncer appears to be listening to someone
<<quote bouncer>>As you wish<</quote>>
The bouncer knocks you unconcious
<<set $end = "caught_snooping">>
[[Wake up|End]]
<<else>>
<<set $controlroomempty= false>>
The door creaks open. The room is empty and the consoles are free.
You go up to the console and see the active security feeds. Every Croupier, every Bouncer, every static CCTV camera on the floor.
<<if $colonel == 3 && ndef $colonel_security>><span class='alert'>You plug your wallet into the control panel. The display changes to a progress bar. After a few minutes it finishes.</span>
<<set $colonel_security = true>>
<</if>>
The fire alarm light blinks off. You hear footsteps in the corridor
[[Exit to the break room|BreakTheBank_Room1_caught]]
[[Exit to the corridor|BreakTheBank_Snoop]]
<</if>>The door opens with a soft click. You wince, before checking to see if the room is empty.
You are relieved when you see no-one is there.
THe rooom is a small but well laid out staff room. A couple of sofas, a vending machine.
There is an adjoining door into the Control Room.
<span id='investigate'>
<<link "Investigate the room">><<replace '#investigate'>>
You take a look around the room. There's a light switch on the wall. Next to the switch is a fire alarm.
[[Pull Fire Alarm|BreakTheBank_FireAlarm]]
<</replace>><</link>>
</span>
[[Leave|BreakTheBank_Snoop]]
[[Control Room|BreakTheBank_ControlRoom]]
You gently open the door. It clicks.
It's a broom cupboard.
[[Corridor|BreakTheBank_Snoop]] The lab is empty save for some benches and a laptop left on a table.
The Laptop is on and unlocked and is open on their personal email account.
----
<span id='ex1'>
<<link "Nobel Prize acceptance speech [DRAFT]">>
<<replace '#ex1'>>
<div class='computer'>
I've been a proponent of the power of Mutagenic Sequencing since the late 2050s, after the discovery of the mutagenic process.
Most academics dismissed the potential of this new branch of biology as having too many risks. Such as the increased risk of Cancer caused by increasing the overall mutagenic rate of the human body.
My team and I saw nothing but potential if the process could be narrowed down and targeted to specific processes in the human body.
Even targeting cancer cells themselves. Either causing them to 'de-mutate' back into healthy cells, or cause them to produce signals that would cause the immune system to attack them.
It took a decade of research, but thanks to Globotech Pharmaceuticals belief in us, we're finally at the point where we can create targeted mutagenic compounds for use in humans.
</div>
The document continues on for twenty more pages, most of which are self-aggrandizing trash, or suspiciously specific call-outs of other academics.
<</replace>>
<</link>>
</span>
----
<span id='ex2'>
<<link "Serum GX67.x">>
<<replace '#ex2'>>
<div class='computer'><h3>Serum GX67.x</h3>
Clinical trials of GX67.1 began in February 2067 and showed great mutagenic properties. It was designed to target cancerous cells in testicles however a number of patients exhibits side effects such as increased sex drive, decreased penis size, increased breast growth or weight gain.
<h3>Serum GX68.x</h3>
The heads at Globotech were interested in the side-effects of the serum and asked if we could investigate. We split off into two teams, one focusing on the original research and one researching the 'feminization' aspects.
More experimentation and various itterations identified the mechanism responsible for the feminization and GX68.1 was created in January 2068.
It was deemed a great success. Changing all male subjects outward appearance to that of a female, and enhancing the attributes of all female subjects, in a matter of weeks.
Subjects retained their existing genitalia.
</div>
The rest of the document contains the chemical formuls for the GX compounds.
<</replace>>
<</link>>
</span>
----
<span id='ex3'>
<<link "Ethics Committee">>
<<replace '#ex3'>>
<div class='computer'>
Globotech's Ethics Committee has reviewed our experiments and has deemed Team 2's results to be "Insulting, Unethical and Ungodly" and has demanded we cease research and production on all products related to the 'feminization' drugs.
I am beyond livid right now. We were on the verge of developing a pill that can effectively cure gender dysmorphia without surgery and long, arduous and mentally invasive questioning. If they regret it later we might even be able to reverse the process just as quickly.
But no. They're worried about the moral fabric of America. Something about it getting into the hands of kids.
Look. I know you see things the same way I do. I can offload all my research onto a single computer. If you set me up with a lab we can keep going with this.
</div>
<</replace>>
<</link>>
</span>
----
<span id='ex4'>
<<link "Continuing Trials">>
<<replace '#ex4'>>
<div class='computer'>
I wasn't expecting to have to move to the New Confederacy to work on feminization drugs. Hell, if anything I'd have thought they'd be even more knee-jerk towards it.
Turns out that in creating a new country you let your laws relax a little.
I do have issues with your proposed method of testing. Unaware participants? Casino goers? Seems a bit James Bond to me, but I get we have to keep it clandestine, else Globotech will find us. I guess I can let it slide for the greater good.
</div>
<</replace>>
<</link>>
</span>
----
<span id='ex5'>
<<link "Serum GX69.x">>
<<replace '#ex5'>>
<div class='computer'><h3>Serum GX69.x</h3>
The Lab is basic but functional. I've done more experimentation and through various iterations I've identified the mechanism responsible for the feminization and I've come up with a few variations on the GX68 serums.
GX69.1 is a more effective version of GX68.1, the last serum we produced at Globotech. It works in a matter of days, rather than weeks. But subjects still retain their male genitals.
GX69.2 attempted to remedy this, but subjects ended up with both sets of genitals. A small number ended up losing both.
GX69.3 reversed the process, and restored all male subjects mostly to their previous form. Females who took the serum gained masculine attributes as well as genitals.
Finally, GX69.4 worked partly as expected. Replacing male genitalia with female genitals. However none of the other physical changes were present.
Combining GX69.4 with a dose of GX68.1 proved to be a fully successful treatment, even decreasing the overall time of mutation.
The increased libido and overall sex drive remains. The subjects also seem to be in a very suggestable state in the hours after transforming.
I believe we are ready for large scale human trials.
</div>
The rest of the document is a detailed study of all the GX compounds, their makeup, how to produce them. Possible variants etc.
<</replace>>
<</link>>
</span>
----
<span id='ex6'>
<<link "Unexpected results">>
<<replace '#ex6'>>
<div class='computer'>
So the aerosolised and water soluble versions are just as potent as the pill version, but they pass out of your system before they fully transform the subject.
Prolonged exposure would be required. Presumably through the Air conditioning and through the food and drink they ingest.
I have voiced objections to using unaware subjects before, but I must insist we at least try and find willing participants.
I suggest we leave a package of pills somewhere around the casino for someone to find. You said there's a guy who usually deals out of one of the hotel suites. Maybe find a way to slip him some samples?
</div>
<</replace>>
<</link>>
</span>
<<if $colonel == 3 && ndef $colonel_lab>>
<span id='download'>
<<link "Download for the Colonel">>
<<replace '#download'>>
<<set $colonel_lab = true>>
<div class='alert'> You downloaded the data</div>
<</replace>>
<</link>>
</span>
<</if>>
[[Exit|BreakTheBank_Snoop]] The door to the stairs is locked with a swipe pad.
You saw the bouncer use their card on it.
It refuses to respond to your proding.
[[Back|BreakTheBank_Snoop]]<html>
<div style="display:none">
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="210mm"
height="297mm"
viewBox="0 0 210 297"
version="1.1"
id="svg_male"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="male.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4142136"
inkscape:cx="510.34233"
inkscape:cy="411.36276"
inkscape:document-units="mm"
inkscape:current-layer="layer2"
inkscape:document-rotation="0"
showgrid="false"
inkscape:window-width="2560"
inkscape:window-height="1356"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Layer 4">
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.714286"
d="m 408.2187,129.55161 c -2.4732,11.53631 -7.09227,17.63456 -18.1702,21.74693 -9.60816,0.48258 -14.69767,2.12858 -21.91622,6.77329 -11.48975,6.98684 -22.55172,19.20632 -29.6289,28.201 -12.97062,17.65405 -23.84166,37.42464 -28.77798,58.90518 -3.74776,21.93778 -3.04706,39.75759 -2.81346,61.55914 -2.0328,7.86808 -5.35489,19.23779 -8.56039,26.88874 -7.09072,15.06394 -10.12891,30.91553 -9.19009,48.13135 -0.0664,27.03368 0.21273,50.81858 -0.81482,77.72338 -5.4719,12.82487 -10.22163,28.3364 -11.27003,42.59418 0.11562,10.58307 2.8181,22.43907 12.04917,28.83324 5.18557,4.10446 9.55805,9.78953 15.6889,12.45495 3.42373,-0.39176 0.79822,-4.57706 -0.41155,-6.01422 -5.61108,-8.1502 -14.2783,-15.45511 -14.27238,-26.18375 -0.0931,-4.99458 -1.31281,-10.71754 0.99113,-15.31039 2.34662,-2.09756 4.36433,0.68136 4.13923,3.02176 0.95212,8.25044 2.89414,16.26981 5.43388,24.07087 0.30989,2.41382 4.25808,3.54058 4.35267,0.45898 0.83637,-6.18212 -1.23959,-12.78995 0.25819,-18.66633 3.3548,-6.58148 9.64175,-13.89708 6.19829,-21.74522 -2.6488,-8.13872 -5.92958,-14.71397 -7.12585,-23.27003 2.33339,-12.12107 7.86363,-22.72218 11.81614,-34.29274 0.30341,-2.90522 37.70314,-97.82776 37.35007,-95.33228 -8.81225,66.80915 -11.09115,120.2806 -13.93902,156.9046 2.52358,22.15547 4.44838,50.22349 5.55883,72.4641 7.96092,34.41463 0.29747,56.39253 11.13923,87.50559 3.10957,9.13506 0.79354,19.84849 2.93689,29.26769 -0.20849,19.44814 4.36069,35.82237 3.32915,55.34224 -1.12572,15.78134 -1.62567,31.73708 -0.39372,47.47643 19.2692,55.94423 29.33923,119.12226 49.8687,174.60068 1.9276,10.42229 3.96086,12.64643 4.50697,23.20622 -8.1957,17.29843 -8.93883,34.44941 -14.39872,52.88111 3.74502,10.3287 12.10201,12.7587 19.14538,16.6965 7.77074,3.6985 17.57424,6.3792 26.24943,2.2753 24.15348,-5.6237 18.78701,-8.7959 23.79325,-16.2318 2.95652,-4.6927 -1.75372,-9.8106 -2.84051,-14.3555 -2.21762,-6.173 -4.17799,-5.6062 -6.35556,-11.7683 2.8536,4.5852 11.95156,-7.45067 12.65744,-9.57395 1.97266,-10.98736 7.44811,-26.01697 2.62475,-37.17319 -3.72412,-9.84264 -4.87837,-14.5293 -3.29633,-25.65537 0.83098,-16.3805 3.39176,-35.55237 8.414,-51.04652 3.31619,-27.36415 8.53033,-49.21105 15.29593,-74.71291 4.51943,-18.20154 0.35492,-36.98428 -2.05787,-55.16894 -1.36327,-7.85587 2.03265,-15.9279 -1.40418,-23.00768 -2.22253,-0.40612 0.63188,-16.82347 1.51245,-19.98385 1.14784,-5.47547 1.01419,-10.31762 1.91439,-15.92172 6.26256,-25.13567 7.0146,-38.98746 9.37682,-59.92933 1.64819,-37.3789 2.4855,-55.30085 3.69916,-97.58228 0.9352,-11.74822 3.85015,-41.72093 3.70885,-48.66534 1.77765,-19.81682 2.65099,-28.17684 2.94364,-48.97353 -1.71013,-23.28221 1.48929,-39.54905 -2.62563,-63.36706 -1.74729,-17.77352 -1.30447,-21.82375 -5.32711,-39.69016 -2.07277,-11.78196 -5.27213,-33.3248 -5.64956,-45.73885 0.63958,-8.08872 -0.36042,-6.33872 10.2583,4.7346 0.0797,8.80854 7.76232,15.90169 9.10221,24.71905 3.09641,13.02178 7.53477,23.71432 11.04093,36.58144 14.01727,30.34514 29.18537,59.92598 45.59159,88.82848 3.00168,9.02751 3.4065,15.73208 4.72405,24.97181 2.96646,7.19079 9.73582,12.32552 11.01238,20.31977 1.71081,4.23245 1.95946,9.73581 5.46781,12.91265 3.64105,0.22895 2.2405,-5.10708 2.57254,-7.34235 0.59191,-8.70232 -3.6821,-16.44076 -7.80273,-23.73745 -1.6344,-1.89468 -1.18278,-5.77728 2.02567,-4.7726 13.36096,3.26067 23.10732,14.12362 35.61663,19.27595 3.56763,0.70109 8.17623,3.02223 11.48577,0.70173 0.79726,-3.12801 -4.09144,-3.66431 -5.86356,-5.2553 -5.8885,-2.28065 -10.15278,-6.89978 -13.82953,-11.8457 -7.18621,-7.72905 -13.42386,-13.0062 -18.69376,-28.26701 -8.03079,-11.79692 -8.13086,-24.57818 -11.45723,-38.08482 -5.08158,-24.86793 -12.1821,-47.98158 -17.98935,-72.69672 -4.295,-14.03516 -6.94517,-29.17395 -11.76802,-42.90555 -2.59631,-17.9829 -9.37753,-32.42102 -10.7543,-50.54311 -0.35834,-12.71985 -3.80046,-25.2321 -10.41168,-36.13885 -8.77792,-14.98409 -18.91783,-29.81469 -32.8054,-40.50736 -8.57765,-6.11158 -17.35371,-12.0448 -27.20287,-10.99081 -7.66239,0.43652 -13.77475,3.19727 -20.25723,-1.80327 -4.43568,-2.79958 -14.28646,-7.78009 -13.53822,-13.74916 -0.5789,-3.47087 1.00384,-1.89802 -0.8697,-4.92997 -3.85963,0.81363 -6.50375,4.87734 -10.35016,6.19001 -10.14511,4.83693 -21.03151,-1.44283 -29.54103,-6.79966 -0.70434,-0.3266 -1.06856,-0.0175 -1.476,0.51199 z m -76.8178,250.21066 c -1.26248,2.0992 -3.04295,5.15497 -0.75753,1.15792 0.12159,-0.25024 2.01992,-3.15731 0.75753,-1.15792 z m 74.98968,57.77957 c 2.41155,1.85159 -0.54778,-0.41359 0,0 z m 21.37193,11.98885 c 1.04219,1.65644 3.92799,0.67395 1.58064,2.25865 -0.16958,3.63517 -0.93963,-2.01379 -1.58064,-2.25865 z m 4.04297,219.44475 c -0.36545,1.67691 -1.92908,6.6174 -0.75358,2.66567 0.19435,-0.63894 0.70127,-2.51017 0.75358,-2.66567 z"
id="path959"
sodipodi:nodetypes="scccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccssccccccccccc"
transform="scale(0.26458333)" />
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.714286"
d="m 433.07501,29.080073 c -9.96609,0.845559 -20.41674,4.033509 -27.91992,10.880301 -7.00747,9.043152 -7.76706,21.120239 -9.49777,32.035436 -1.20046,13.278566 -2.50635,36.37309 0.57463,49.4983 3.57391,10.35942 12.0767,15.2755 21.76885,15.05798 6.96615,3.70896 16.41648,3.12518 23.27454,-1.78563 9.18021,-0.18722 18.39448,-1.61927 24.92418,-11.185 5.77706,-9.10715 1.9354,-33.885274 0.44503,-43.736411 -3.40212,-14.966676 -7.06937,-30.406771 -15.31619,-43.543993 -4.02558,-5.798592 -11.58162,-7.54973 -18.25335,-7.220983 z"
id="path961"
sodipodi:nodetypes="cccccccccc"
transform="scale(0.26458333)" />
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.714286"
d="m 596.84872,466.70703 c -3.33986,0.98729 -2.01527,6.94698 1.26117,7.19447 11.52812,7.974 16.74482,21.24069 24.19084,32.55023 0.9835,1.7062 4.40919,5.68012 5.80637,2.33119 -0.3219,-6.51861 -4.68774,-12.13873 -7.69152,-17.7242 -2.1239,-3.22854 2.57359,3.36282 3.52857,4.71918 3.47415,4.38912 5.92822,9.97746 10.29018,13.48912 3.81689,0.15187 2.23767,-5.23675 1.51227,-7.3884 -2.62059,-7.98045 -10.94511,-12.0429 -15.3962,-18.79464 -3.52511,-5.27959 -7.82224,-10.16719 -13.81976,-12.66881 -3.09078,-1.46367 -6.21793,-3.38548 -9.68192,-3.70814 z"
id="path963"
transform="scale(0.26458333)" />
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.714286"
d="m 618.7879,478.48716 c -2.59073,1.7567 1.65403,4.61915 2.62863,6.36284 5.89517,7.06556 13.36874,12.55528 20.55217,18.19492 1.58992,1.76396 4.75158,0.0883 3.14314,-2.08287 -4.09398,-5.90775 -8.84085,-11.86455 -15,-15.6808 -4.02545,-1.79574 -7.21147,-5.33717 -11.32394,-6.79409 z"
id="path965"
transform="scale(0.26458333)" />
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.714286"
d="m 292.6802,494.97154 c -4.08824,1.45043 -2.95039,7.1429 -3.24917,10.57756 0.0989,7.79702 1.47517,16.00901 7.14309,21.83331 4.53836,5.16525 8.30446,11.954 14.80585,14.79197 3.57389,-0.30049 1.39725,-4.96374 -0.15764,-6.43555 -2.79146,-4.3216 -6.44973,-7.92917 -10.24693,-11.26255 -1.53465,-1.80807 -3.78679,-5.98809 -3.85603,-6.82757 3.25393,1.06218 1.45514,-3.59042 0.89286,-5.13114 -2.20813,-5.44023 -0.84704,-12.02644 -3.93834,-17.06752 -0.37361,-0.34092 -0.88671,-0.53227 -1.39369,-0.47851 z"
id="path967"
transform="scale(0.26458333)" />
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.714286"
d="m 305.06999,505.33705 c -1.93589,2.51607 -0.13482,6.49685 -0.36133,9.49079 0.60871,5.13949 4.56286,9.4036 8.41936,12.51395 3.25829,-0.18997 0.31501,-4.46234 -0.27902,-6.10909 -3.04207,-4.93288 -3.95097,-10.98489 -6.92522,-15.83008 -0.25203,-0.14015 -0.57527,-0.074 -0.85379,-0.0656 z"
id="path969"
transform="scale(0.26458333)" />
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.714286"
d="m 305.3797,520.46121 c -1.00714,3.24536 -1.98859,7.91294 1.89453,9.75028 2.6529,1.45383 5.05492,4.43855 8.20173,4.51172 1.76485,-2.39375 -2.31299,-4.9158 -3.09431,-7.10938 -2.05252,-2.49012 -3.62649,-5.63612 -6.21931,-7.5265 l -0.64452,0.3079 z"
id="path971"
transform="scale(0.26458333)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 110.7164,102.69832 c 1.33635,-1.26954 3.0736,-1.26954 5.07812,-0.46773"
id="path973" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 108.91233,38.820899 c 1.40317,2.539061 2.07134,3.207234 2.20497,4.142677"
id="path975" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 116.8636,38.286359 c -0.53454,1.469982 -1.73725,2.873147 -1.46998,3.808592"
id="path977" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 101.36197,46.17081 c 3.27405,-1.670434 3.94222,-2.539061 5.47902,-1.937703"
id="path979" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 123.94624,44.567194 c -2.33861,-1.069078 -3.67495,-1.670436 -5.0113,-1.403165"
id="path981" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 111.31776,45.302185 c 0.93544,0.668174 3.60813,0.400905 4.40994,0.06682"
id="path983" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 101.00469,184.01771 c 0.85989,3.37343 0.92604,5.29166 0.39687,5.88698"
id="path985" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 125.80937,196.78385 c 0.8599,3.43958 0.99219,5.09323 0.1323,6.48229"
id="path989" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Layer 2"
style="display:inline">
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 114.29055,36.521948 c -3.35454,-0.04725 -8.7632,-0.553768 -9.37741,-4.050048 -0.61421,-3.496279 -0.59171,-20.234921 2.90457,-22.502778 3.49628,-2.2678572 8.36272,-3.2600447 10.96131,-1.0866815 2.59858,2.1733625 6.9139,20.2591855 4.78778,23.3774885 -2.12611,3.118305 -6.25244,4.167526 -9.27625,4.262019 z"
id="path848"
sodipodi:nodetypes="cssssc" />
<path
style="fill:none;fill-opacity:1;stroke-width:0.714286"
d="m 442.18364,1050.2422 c 0.25904,-0.4192 0.0369,-0.7025 -0.49356,-0.6297 -2.04808,0.2812 -2.65832,-0.088 -2.396,-1.4504 0.14972,-0.7774 -0.0791,-1.6306 -0.50852,-1.8961 -0.46806,-0.2893 -0.57662,-0.1522 -0.27108,0.3422 0.28031,0.4535 0.18823,0.8246 -0.20463,0.8246 -0.39286,0 -0.92101,-0.3345 -1.17369,-0.7433 -0.25268,-0.4088 -1.0732,-0.5485 -1.82337,-0.3105 -1.07193,0.3402 -1.26343,0.171 -0.89437,-0.7908 0.39174,-1.0209 0.14037,-1.1608 -1.51622,-0.8442 -1.33124,0.2545 -2.39524,-0.03 -3.22786,-0.8624 -0.68312,-0.6831 -2.1205,-1.4625 -3.19417,-1.732 -1.5,-0.3764 -1.77353,-0.7051 -1.18101,-1.4191 0.89661,-1.0803 0.31751,-1.8907 -1.29981,-1.8189 -0.83179,0.037 -0.75306,0.2126 0.29762,0.6641 1.26589,0.544 1.20489,0.6195 -0.53571,0.664 -1.08036,0.028 -1.96429,-0.2902 -1.96429,-0.7062 0,-0.416 -0.32143,-0.5578 -0.71428,-0.315 -0.39286,0.2428 -0.71429,0.1011 -0.71429,-0.315 0,-0.416 -0.50111,-0.7564 -1.11359,-0.7564 -0.61247,0 -0.91352,-0.3237 -0.669,-0.7194 0.2445,-0.3955 -0.0561,-0.9114 -0.66803,-1.1462 -0.61194,-0.2348 -0.97452,-0.6503 -0.80577,-0.9234 0.16877,-0.2731 -0.31522,-0.885 -1.07552,-1.3598 -0.83482,-0.5213 -1.38238,-0.578 -1.38238,-0.143 0,0.3962 0.3404,0.7204 0.75645,0.7204 0.41604,0 0.56185,0.3148 0.32403,0.6996 -0.27366,0.4428 -0.92779,0.3903 -1.78168,-0.1429 -0.74208,-0.4635 -1.15966,-1.1494 -0.92795,-1.5244 0.23173,-0.3749 0.0746,-0.4673 -0.3492,-0.2054 -0.42377,0.2619 -2.2171,-0.293 -3.98515,-1.2331 -3.06625,-1.6303 -3.14295,-1.7463 -1.66129,-2.5124 l 1.55337,-0.8032 -1.60715,0.409 c -2.00892,0.5113 -2.00701,0.4821 0.2851,-4.3589 1.38407,-2.9232 2.07097,-3.7437 2.55777,-3.0553 0.44254,0.6259 0.51692,0.263 0.22199,-1.0829 -0.31249,-1.4261 -0.20144,-1.8745 0.37589,-1.5177 0.55887,0.3454 0.67477,0.051 0.36449,-0.927 -0.29907,-0.9423 -0.082,-1.5765 0.6336,-1.8511 0.5987,-0.2298 1.03949,-0.991 0.97953,-1.6917 -0.2468,-2.8846 0.1184,-3.6918 1.54592,-3.4169 1.54998,0.2985 1.75796,-0.1596 0.7763,-1.7098 -0.75211,-1.1878 0.49029,-5.2604 1.42796,-4.6808 0.35008,0.2163 0.42486,-0.1582 0.16617,-0.8324 -0.33727,-0.8789 -0.21227,-1.0662 0.44185,-0.6619 0.68348,0.4224 0.78428,0.1607 0.402,-1.0437 -0.34482,-1.0865 -0.25652,-1.4507 0.27244,-1.1238 0.46162,0.2853 0.63368,0.096 0.41949,-0.4626 -0.19973,-0.5205 0.61364,-2.48655 1.80748,-4.36905 1.19384,-1.88249 1.97161,-3.74472 1.72837,-4.13829 -0.24325,-0.39357 0.15243,-1.20018 0.87927,-1.79246 0.72684,-0.59228 0.86512,-0.83959 0.30728,-0.54958 -0.75343,0.3917 -0.89119,0.20662 -0.53571,-0.71974 0.26319,-0.68586 0.48345,-1.62252 0.48946,-2.08146 0.006,-0.49065 0.32,-0.39301 0.76108,0.23699 0.58873,0.84088 0.65385,0.72871 0.30264,-0.5213 -0.24612,-0.876 -0.11623,-2.16171 0.28864,-2.85714 0.57739,-0.99177 0.74549,-1.03339 0.77956,-0.19299 0.0341,0.8404 0.20218,0.79879 0.77957,-0.19298 0.40487,-0.69543 0.53415,-1.90079 0.28729,-2.67858 -0.25596,-0.80643 -0.12119,-1.41415 0.31358,-1.41415 0.41934,0 0.72436,-0.24107 0.67784,-0.53572 -0.0465,-0.29464 -0.0368,-1.17857 0.0217,-1.96428 0.0983,-1.3213 0.16121,-1.33428 0.83753,-0.17292 0.40217,0.69062 0.50158,1.6549 0.22091,2.14286 -0.29613,0.51482 -0.23741,0.63747 0.1399,0.29221 0.87522,-0.80085 0.89897,-4.06517 0.0257,-3.52544 -0.4073,0.25172 -0.48702,-0.10176 -0.19474,-0.86343 0.41835,-1.09018 0.32665,-1.15001 -0.5929,-0.38685 -0.92607,0.76857 -1.08778,0.63057 -1.08778,-0.92825 0,-1.00705 -0.34334,-2.04321 -0.76298,-2.30256 -0.41964,-0.25936 -0.59841,-0.90042 -0.39727,-1.42458 0.20114,-0.52417 0.0202,-1.06819 -0.40199,-1.20894 -0.93842,-0.3128 -0.89854,-6.05004 0.0596,-8.57003 0.38346,-1.00857 0.52892,-2.00203 0.32325,-2.20769 -0.20566,-0.20568 0.0343,-2.24765 0.53327,-4.53773 0.49897,-2.29009 0.83438,-4.56558 0.74537,-5.05665 -0.089,-0.49107 0.1436,-0.89286 0.5169,-0.89286 0.3733,0 0.51156,-0.63924 0.30725,-1.42054 -0.20432,-0.7813 -0.65637,-1.24447 -1.00456,-1.02927 -0.34819,0.2152 -0.63308,-0.0495 -0.63308,-0.58815 0,-0.53869 -0.6328,-2.28918 -1.40622,-3.88998 -0.93683,-1.939 -1.29842,-3.83161 -1.08325,-5.66987 0.29961,-2.55967 0.2463,-2.659 -0.73664,-1.37281 -0.79196,1.0363 -1.08632,1.12651 -1.16536,0.35714 -0.0582,-0.56616 -0.17129,-1.51152 -0.25139,-2.10081 -0.0801,-0.58928 -0.19322,-1.6529 -0.25138,-2.36358 -0.0581,-0.71069 -0.38657,-1.1186 -0.72979,-0.90649 -0.34321,0.21212 -1.42629,-1.86513 -2.40683,-4.61612 -0.98055,-2.75098 -1.52763,-5.15951 -1.21575,-5.35226 0.31189,-0.19275 0.70524,0.0553 0.87412,0.55114 0.16888,0.49588 0.17047,0.098 0.004,-0.88411 -0.16695,-0.98215 -0.62128,-2.10715 -1.00961,-2.5 -0.46665,-0.47209 -0.55084,-0.22989 -0.24829,0.71428 l 0.45777,1.42857 -1.16075,-1.42857 c -0.63842,-0.78571 -1.3281,-2.23214 -1.53263,-3.21428 -0.20452,-0.98215 -0.97752,-3.05853 -1.71776,-4.61418 -0.99341,-2.0877 -1.14183,-3.07433 -0.56676,-3.76726 0.42853,-0.51634 0.57263,-1.14532 0.32021,-1.39773 -0.25241,-0.25241 -0.45893,-0.065 -0.45893,0.41656 0,0.48152 -0.29125,0.69548 -0.64723,0.47548 -0.35597,-0.22001 -0.51312,-1.1229 -0.34922,-2.00645 0.1639,-0.88353 0.0907,-1.15587 -0.16271,-0.60518 -0.38762,0.84241 -7.38343,-16.16648 -7.40539,-18.00472 -0.004,-0.3162 -0.68785,-2.06972 -1.52015,-3.89673 -0.83229,-1.82701 -1.55367,-4.13973 -1.60305,-5.13939 -0.0494,-0.99965 -0.46165,-2.13898 -0.91614,-2.53183 -1.0742,-0.92853 -8.84008,-21.26287 -8.77447,-22.97527 0.0456,-1.19017 0.10654,-1.17933 0.66408,0.11812 0.56083,1.30514 0.61821,1.31479 0.66408,0.1117 0.0276,-0.72427 -0.54219,-1.47178 -1.26623,-1.66112 -0.94925,-0.24824 -2.59026,-3.66633 -5.88335,-12.25456 -2.51186,-6.55067 -4.57617,-12.07102 -4.58742,-12.26744 -0.0112,-0.19643 -0.27556,-0.75893 -0.58738,-1.25 -0.31181,-0.49108 -0.36827,-1.21429 -0.12547,-1.60715 0.2428,-0.39285 0.14024,-0.71428 -0.2279,-0.71428 -0.88504,0 -3.96398,-8.2818 -3.41136,-9.17596 0.59496,-0.96268 -0.29235,-3.04934 -1.08765,-2.55781 -0.35676,0.22049 -0.56415,-0.66529 -0.46087,-1.96839 0.14269,-1.80034 -0.0772,-2.32695 -0.91575,-2.19302 -1.61062,0.25723 -5.34787,-11.34589 -4.29067,-13.32131 0.93668,-1.75019 0.94442,-2.21208 0.0371,-2.21208 -0.39285,0 -0.71428,0.53571 -0.71428,1.19047 0,1.50413 -0.59678,0.9522 -0.94797,-0.8767 -0.14629,-0.76186 -0.47317,-1.86735 -0.7264,-2.45663 -0.87578,-2.03803 -1.71286,-14.69102 -1.77206,-26.78572 -0.0782,-15.98647 1.84418,-50.4199 3.18563,-57.05938 0.31824,-1.57514 0.57678,-1.82708 1.09951,-1.07143 0.46486,0.67199 0.50982,0.41684 0.14059,-0.79776 -0.64121,-2.10928 -0.39764,-8.73891 0.34066,-9.27203 0.28245,-0.20395 0.55201,-1.1744 0.59902,-2.15654 0.95093,-19.86643 0.97769,-19.14809 -0.89877,-24.13338 -0.98217,-2.60938 -3.29929,-7.48792 -5.14916,-10.84119 -4.20879,-7.62932 -5.25454,-10.00365 -4.75907,-10.80533 0.21493,-0.34777 -0.11052,-0.43993 -0.72323,-0.20482 -0.78151,0.29989 -1.0786,0.0309 -0.99536,-0.90104 0.26457,-2.96189 -0.0742,-4.03123 -1.02667,-3.24075 -0.7167,0.59481 -1.35992,-0.47831 -2.92225,-4.8754 -1.1018,-3.10095 -1.81125,-5.94877 -1.57656,-6.32851 0.23469,-0.37973 0.0965,-0.8005 -0.30717,-0.93505 -0.40364,-0.13454 -0.80742,-1.28636 -0.89731,-2.55959 -0.0899,-1.27322 -0.3458,-2.3156 -0.5687,-2.31637 -0.2229,-7.2e-4 -0.96064,-1.76327 -1.63943,-3.91663 -0.89489,-2.8389 -1.03416,-4.2889 -0.50663,-5.2746 0.57796,-1.07993 0.49276,-1.33966 -0.41443,-1.26337 -1.05363,0.0886 -1.73614,-1.21123 -3.39377,-6.4634 -0.43022,-1.36314 -0.19582,-1.5879 1.86225,-1.78571 l 2.35442,-0.22629 v -5.71428 -5.71429 l -2.14286,-0.23353 c -1.17857,-0.12845 -2.44821,-0.53023 -2.82143,-0.89286 -0.37321,-0.36263 -1.35458,-0.65932 -2.18083,-0.65932 -1.23041,0 -1.79373,-0.90498 -3.11295,-5.00103 -0.88588,-2.75056 -1.38218,-5.37075 -1.1029,-5.82264 0.27929,-0.4519 -0.0489,-1.22866 -0.72922,-1.72615 -0.99202,-0.72538 -1.08109,-1.19588 -0.44974,-2.37557 0.65576,-1.2253 0.60065,-1.39942 -0.32989,-1.04233 -0.61445,0.23577 -1.03574,0.14819 -0.93621,-0.19465 0.0995,-0.34284 -0.17299,-1.2662 -0.6056,-2.05192 -0.4326,-0.78571 -1.34538,-3.51786 -2.02838,-6.07143 -0.68301,-2.55357 -2.65412,-9.2701 -4.38025,-14.92564 -1.72614,-5.65553 -2.94928,-10.87874 -2.71809,-11.60714 0.23118,-0.7284 0.12271,-1.32436 -0.24105,-1.32436 -0.55023,0 -2.12119,-7.16416 -2.61727,-11.93572 -0.0731,-0.70321 -0.34537,-1.76071 -0.60502,-2.34999 -0.25965,-0.58929 -0.97678,-4.125 -1.59361,-7.85715 -0.61684,-3.73214 -1.64897,-9.83928 -2.29362,-13.57143 -1.63376,-9.45847 -1.60092,-46.69965 0.0516,-58.57142 0.62889,-4.51786 1.26024,-9.17858 1.40299,-10.35715 0.79735,-6.58309 1.64589,-9.45765 3.86688,-13.09983 3.11833,-5.11369 19.49598,-38.08265 19.49598,-39.2463 0,-0.47749 0.82254,-0.86815 1.82787,-0.86815 1.00533,0 1.63789,-0.30739 1.4057,-0.68309 -0.2322,-0.3757 -0.90002,-0.49973 -1.48405,-0.27561 -1.19947,0.46028 -0.80926,-0.90694 1.80051,-6.30853 0.79748,-1.6506 1.44997,-3.58358 1.44997,-4.29551 0,-0.71192 0.24107,-1.29488 0.53572,-1.29545 0.29464,-5.8e-4 0.62493,-1.30115 0.73397,-2.89016 0.2187,-3.18709 2.01978,-9.07021 3.23475,-10.56615 0.63832,-0.78594 0.94414,-0.72952 1.70798,0.31509 1.14264,1.56266 1.19953,0.94292 0.12909,-1.40643 -0.68573,-1.505 -0.47328,-2.33219 1.47236,-5.73281 2.33401,-4.07943 3.6147,-5.47088 3.6147,-3.92732 0,0.48152 0.21445,0.66105 0.47654,0.39895 0.45812,-0.45812 0.76644,-2.19491 0.89251,-5.02759 0.0519,-1.16522 0.21516,-1.21122 1.26807,-0.35714 0.93343,0.75716 1.07991,0.76652 0.64348,0.0411 -0.88455,-1.47025 0.15067,-5.60841 1.40303,-5.60841 0.61665,0 0.93302,0.41464 0.72667,0.95238 -0.201,0.52381 -0.0541,0.95238 0.32641,0.95238 0.89051,0 0.88193,-1.16735 -0.021,-2.8545 -0.52467,-0.98034 -0.42364,-1.62124 0.38265,-2.42753 0.60254,-0.60253 1.05076,-1.2815 0.99605,-1.50881 -0.20027,-0.83202 1.66903,-4.63773 2.27796,-4.63773 0.3452,0 0.57799,-0.24107 0.51732,-0.53571 -0.0607,-0.29465 0.42578,-1.74108 1.08101,-3.21429 l 1.19133,-2.67857 15.16899,0.017 c 15.1707,0.017 17.36605,0.25472 23.38327,2.53155 3.05712,1.15677 3.35399,1.15231 6.07143,-0.0912 3.22358,-1.47517 21.92658,-2.67197 56.10948,-3.59041 l 18.96664,-0.50961 1.65453,8.4999 c 2.0143,10.34809 7.67607,31.24285 10.76617,39.73253 1.38934,3.81706 4.18266,9.1308 7.2073,13.71048 2.71631,4.11283 4.93873,7.79029 4.93873,8.17214 0,0.38185 0.28195,0.80142 0.62656,0.93237 0.3446,0.13095 3.43185,4.8253 6.86054,10.43188 5.45498,8.91994 6.11307,10.34292 5.26631,11.38712 -0.81437,1.00425 -0.81411,1.10084 0.001,0.60962 0.7374,-0.44402 0.85686,-0.22917 0.49918,0.89778 -0.31957,1.00687 0.007,1.95848 1.01876,2.97045 0.909,0.909 2.47375,4.95704 4.0172,10.39261 2.24172,7.89464 2.40742,9.02446 1.46211,9.96976 -0.9453,0.9453 -1.15446,0.84424 -1.84572,-0.89179 -0.67539,-1.6962 -0.73571,-1.72765 -0.45122,-0.23528 0.18062,0.94744 -0.009,2.3523 -0.42048,3.12191 -0.59652,1.1146 -0.55272,1.27685 0.21524,0.79746 0.53027,-0.331 1.41409,-0.66985 1.96404,-0.753 0.54996,-0.0831 1.23804,-0.53643 1.52906,-1.00731 0.68927,-1.11526 1.31499,0.87289 1.47597,4.68974 0.0663,1.57143 0.5333,4.16067 1.03783,5.75387 0.50453,1.5932 1.79517,8.02178 2.8681,14.28572 2.49873,14.58807 2.80551,32.95566 0.73899,44.24613 -0.71905,3.92857 -1.63454,7.34799 -2.03441,7.59871 -0.39988,0.25072 -0.52992,0.77482 -0.28899,1.16466 0.24094,0.38984 -0.19936,3.07756 -0.97844,5.97271 -0.77908,2.89515 -1.56446,6.06749 -1.74531,7.04963 -0.18084,0.98214 -0.68485,2.91072 -1.12002,4.28572 -0.43517,1.375 -0.96095,3.46428 -1.16839,4.64285 -0.20744,1.17857 -0.69605,2.53057 -1.0858,3.00443 -0.38975,0.47386 -0.50128,1.19707 -0.24784,1.60714 0.25343,0.41007 0.15048,0.74558 -0.22878,0.74558 -0.37927,0 -0.52147,0.64285 -0.31599,1.42857 0.21713,0.83032 0.0219,1.42857 -0.46618,1.42857 -0.46185,0 -0.63847,0.32565 -0.39249,0.72367 0.39654,0.64161 -1.10454,7.13422 -2.30982,9.99061 -0.24866,0.58929 -0.50994,1.60565 -0.58064,2.25858 -0.0707,0.65292 -0.38966,1.77792 -0.7088,2.5 -0.31914,0.72207 -0.6534,1.95571 -0.7428,2.74142 -0.0894,0.78572 -0.34433,2.07143 -0.56652,2.85715 -0.22219,0.78571 -0.89477,3.66559 -1.49463,6.39973 -1.50567,6.86292 -2.56978,9.93245 -3.66773,10.57997 -0.57502,0.33911 -0.82059,1.4382 -0.63837,2.85714 0.26834,2.08939 -0.46934,6.32306 -1.58415,9.09173 -0.23727,0.58928 -0.46247,1.55357 -0.50045,2.14286 -0.038,0.58928 -0.52522,0.97293 -1.0828,0.85255 -0.84456,-0.18234 -0.85737,-0.0304 -0.0768,0.91012 0.51533,0.62095 0.71298,1.35299 0.43921,1.62676 -0.27377,0.27377 -0.7968,0.0249 -1.16228,-0.55298 -0.56241,-0.8893 -0.66619,-0.86517 -0.67545,0.1571 -0.006,0.66432 0.3105,1.4065 0.70335,1.6493 0.39286,0.2428 0.71429,0.78327 0.71429,1.20105 0,0.53525 -0.27123,0.53449 -0.91836,-0.003 -0.69266,-0.57485 -0.91838,-0.43368 -0.91838,0.57438 0,0.73511 0.25255,1.18048 0.56123,0.9897 0.30867,-0.19076 0.56122,-0.0254 0.56122,0.36744 0,0.39286 -0.34942,0.93024 -0.77651,1.19419 -0.42708,0.26395 -0.61797,1.08617 -0.4242,1.82716 0.19377,0.74099 0.0611,1.52725 -0.29491,1.74726 -0.35598,0.22 -0.64723,1.28478 -0.64723,2.36618 0,2.29735 -2.51039,12.49726 -3.71452,15.09237 -0.4557,0.98215 -0.85855,2.42858 -0.8952,3.21429 -0.14131,3.02978 -2.89157,11.80101 -3.6134,11.52402 -0.41606,-0.15966 -0.76681,0.23569 -0.77944,0.87856 -0.0126,0.64287 -0.26329,1.97242 -0.557,2.95456 -0.40371,1.34995 -0.35096,1.52426 0.21611,0.71429 0.57571,-0.82229 0.75269,-0.84785 0.76108,-0.10994 0.0168,1.47612 -2.22115,8.93432 -2.9575,9.85618 -0.35921,0.44972 -0.60377,1.09258 -0.54347,1.42857 0.28226,1.57255 -0.15638,3.10573 -1.18197,4.13131 -0.70278,0.70279 -0.80774,1.12245 -0.28072,1.12245 0.50943,0 0.65107,0.49346 0.35877,1.25 -0.54693,1.41559 -1.67523,6.98596 -2.27872,11.25 -0.22241,1.57143 -0.7041,3.22767 -1.07044,3.68054 -0.4177,0.51636 -0.39568,0.91588 0.0591,1.07142 0.48572,0.16615 0.45925,1.84855 -0.0802,5.09599 l -0.80528,4.84794 -1.06377,-2.19643 c -0.90831,-1.87546 -0.92168,-2.47954 -0.0915,-4.13367 0.53474,-1.06547 1.08971,-2.17829 1.23327,-2.47293 0.14356,-0.29465 -0.0179,-0.53572 -0.35879,-0.53572 -1.42677,0 -3.01377,4.0829 -2.59354,6.67245 0.45815,2.82323 -0.12101,3.21636 -2.30489,1.56455 -1.93753,-1.46546 -4.85135,-1.34403 -6.84311,0.28521 l -1.68627,1.37934 -2.27006,-2.18395 c -1.73832,-1.6724 -2.68192,-2.0806 -4.02836,-1.74266 -2.28895,0.57449 -2.82771,2.10442 -1.32693,3.76814 2.87355,3.18553 5.12535,6.12711 5.12535,6.69539 0,0.33802 -1.04465,0.45113 -2.32143,0.25138 -1.47395,-0.23061 -2.84296,0.0354 -3.75,0.72875 -1.32223,1.01067 -1.15108,1.06042 2.29901,0.66841 4.3202,-0.49088 6.64395,0.63047 8.41875,4.06258 0.60755,1.17487 1.46274,2.13613 1.90041,2.13613 0.43767,0 1.21416,0.5625 1.72554,1.25 0.73324,0.98579 1.20281,1.0836 2.2216,0.46276 2.27998,-1.38941 1.93242,-3.65225 -1.15693,-7.53231 -2.8216,-3.54378 -3.39043,-4.88887 -2.46068,-5.81863 0.60613,-0.60612 4.53215,1.46355 6.53689,3.44603 1.49849,1.48185 1.56741,1.88433 0.86981,5.07933 -1.15885,5.30883 -2.89719,10.25595 -3.60344,10.25595 -0.34896,0 -0.42922,0.53487 -0.17836,1.1886 0.3243,0.8451 0.19249,1.02568 -0.45609,0.62484 -0.66455,-0.41072 -0.79148,-0.18344 -0.46755,0.83716 0.30502,0.96103 -0.33243,2.41865 -2.03004,4.64192 -1.36107,1.78255 -2.69138,4.10441 -2.95624,5.1597 -0.30879,1.23031 -0.83435,1.78332 -1.46487,1.54137 -0.54081,-0.20753 -0.9833,-0.066 -0.9833,0.31453 0,0.38053 0.32143,0.69188 0.71429,0.69188 0.39286,0 0.70936,0.5625 0.70335,1.25 -0.007,0.80283 -0.19867,0.9564 -0.53572,0.42927 -0.28862,-0.45139 -0.61607,4.69147 -0.72764,11.42858 -0.124,7.48718 0.08,12.66582 0.52478,13.32072 1.01424,1.49344 0.99134,1.70085 1.32144,-11.96429 0.0811,-3.35748 0.44968,-5.89286 0.85665,-5.89286 0.39285,0 0.71428,0.43928 0.71428,0.97618 0,1.02004 1.94869,6.15434 4.64489,12.23811 2.15289,4.85781 4.79561,15.88706 4.23211,17.66248 -0.25214,0.79444 -0.10597,1.66228 0.32484,1.92853 0.4308,0.26625 0.86698,2.95511 0.96929,5.97524 0.10231,3.02013 0.37934,5.4943 0.61564,5.49816 0.23629,0.004 0.62768,2.81361 0.86976,6.24389 0.53612,7.59695 -0.12732,16.76678 -1.16662,16.12446 -0.44862,-0.27727 -0.55167,0.0188 -0.26582,0.76378 0.49558,1.29147 -12.51639,37.91592 -13.22061,37.2117 -0.21799,-0.21798 -0.4085,0.34027 -0.42336,1.24057 -0.0149,0.9003 -2.32064,7.90476 -5.12393,15.56548 -5.7312,15.66193 -15.08742,43.49707 -18.60719,55.35714 -1.83473,6.18224 -2.34427,9.22752 -2.39031,14.28571 -0.0814,8.95132 0.68079,19.1966 1.54891,20.8187 0.50249,0.93892 0.48643,1.7984 -0.0518,2.77117 -0.67451,1.2191 -0.6325,1.28943 0.31007,0.51915 0.92559,-0.75641 1.29354,-0.44022 2.436,2.0933 0.74015,1.64135 1.38248,3.32801 1.42741,3.74813 0.0449,0.42011 0.13064,1.34531 0.19049,2.056 0.0598,0.71068 0.43022,1.0935 0.82308,0.8507 0.39285,-0.2428 0.75446,-0.10106 0.80357,0.31498 0.17996,1.5247 0.30368,1.87952 1.61077,4.61984 1.22449,2.56714 1.25834,3.30398 0.42036,9.15028 -0.5373,3.74856 -1.14352,5.98267 -1.47698,5.44311 -0.3111,-0.50336 -0.42668,1.00402 -0.25686,3.34973 0.29649,4.09521 0.26455,4.19386 -0.80253,2.4792 -0.76,-1.22123 -0.95786,-1.33413 -0.6259,-0.35714 0.26697,0.78571 0.5988,2.875 0.73742,4.64285 0.1386,1.76786 0.0788,2.64785 -0.13298,1.95555 -0.21175,-0.69232 -0.62796,-1.10859 -0.92492,-0.92505 -0.29696,0.18352 -1.11439,-1.50004 -1.8165,-3.74126 -0.70211,-2.24122 -3.33015,-9.42634 -5.8401,-15.96694 -3.04973,-7.94721 -4.66637,-13.24483 -4.87355,-15.9703 -0.33379,-4.39087 -0.80858,-5.53357 -1.52427,-3.66852 -0.24771,0.64552 -0.72946,1.17367 -1.07056,1.17367 -0.3411,0 -0.30672,-0.8245 0.0764,-1.83222 0.87485,-2.30103 0.87969,-3.13473 0.0102,-1.7599 -0.36548,0.57791 -0.8352,0.88005 -1.04382,0.67143 -1.04122,-1.04121 -3.25808,-24.90046 -5.06049,-54.464 -0.73037,-11.9797 -1.07249,-29.62165 -1.05342,-54.32034 0.0283,-36.66918 -0.24547,-48.8099 -1.47567,-65.43783 -0.6379,-8.62194 -0.83018,-10.05929 -1.77594,-13.27552 -0.29884,-1.01627 0.15799,-2.1982 1.43731,-3.71857 1.83247,-2.17778 1.84677,-2.27245 0.62493,-4.13721 -1.23506,-1.88494 -1.2237,-1.93234 0.92316,-3.85055 2.5386,-2.26824 4.40576,-9.1746 2.64879,-9.7975 -0.52519,-0.18619 -0.99846,1.25866 -1.32014,4.03026 -0.33289,2.86817 -0.82088,4.32052 -1.45172,4.32052 -0.52265,0 -1.45291,0.50263 -2.06724,1.11697 -0.61434,0.61433 -1.41789,0.93099 -1.78567,0.70369 -0.36778,-0.22731 -0.80862,0.3147 -0.97963,1.20446 -0.27741,1.44327 -0.32143,1.41243 -0.40822,-0.286 -0.065,-1.2723 0.61348,-2.57458 2.04559,-3.92626 1.28379,-1.21169 2.14285,-2.74728 2.14285,-3.83037 0,-1.84434 -2.16171,-4.28641 -3.75816,-4.24558 -0.48658,0.0124 -7.1e-4,0.68212 1.07959,1.48815 2.31441,1.72674 2.40215,2.54946 0.51363,4.81629 -2.38647,2.86452 -3.71699,1.55043 -3.20748,-3.16787 0.29007,-2.68633 0.18778,-3.84368 -0.31242,-3.53453 -0.89727,0.55454 -0.95398,-0.32973 -0.10689,-1.66667 0.44365,-0.7002 1.41855,-0.83481 3.49956,-0.48323 l 2.8846,0.48735 -0.34847,-2.73105 c -0.29006,-2.27321 0.006,-3.15019 1.76873,-5.23107 1.8995,-2.24293 2.46855,-2.49265 5.53408,-2.42855 2.86846,0.06 3.6829,0.4039 5.07436,2.14285 1.582,1.97707 1.65765,1.99822 1.66104,0.46427 0.003,-1.24907 0.41276,-1.60714 1.84028,-1.60714 1.64794,0 1.7245,0.11224 0.74487,1.09187 -0.76734,0.76735 -0.91246,1.56347 -0.48824,2.67857 1.17388,3.08565 7.90664,0.9972 7.90664,-2.45257 0,-0.83295 0.51541,-1.31787 1.40074,-1.31787 1.67429,0 4.45231,-2.76903 3.81407,-3.80172 -0.24809,-0.40142 -0.69538,-0.0651 -0.99667,0.74936 -0.93683,2.53248 -2.18357,2.70379 -3.77527,0.51874 -0.81618,-1.12044 -2.29436,-2.86805 -3.28484,-3.88358 -0.99049,-1.01553 -2.35866,-2.70073 -3.04039,-3.74488 -1.22615,-1.87801 -1.21565,-1.91543 0.97499,-3.47531 2.06393,-1.46964 2.18487,-1.48352 1.77881,-0.20414 -0.31656,0.9974 0.53982,2.4394 3.13215,5.27403 4.48883,4.90839 4.69208,4.03986 0.26679,-1.14001 -2.82961,-3.31208 -3.09066,-3.86392 -1.82787,-3.86392 0.81025,0 1.67183,0.32143 1.91463,0.71429 0.68144,1.10258 1.79077,0.8443 1.34649,-0.31349 -0.21692,-0.56528 -1.29952,-1.22658 -2.40578,-1.46956 -1.61461,-0.35463 -2.10583,-0.94521 -2.49015,-2.99383 -0.62134,-3.31199 0.48451,-4.52722 2.47801,-2.72312 1.12105,1.01453 1.65843,1.12728 2.3026,0.48312 1.14428,-1.14429 1.74755,-1.05584 2.28106,0.33446 0.25348,0.66055 -0.0742,1.7548 -0.74857,2.5 -0.65964,0.7289 -0.90847,1.32747 -0.55294,1.33015 0.35554,0.003 1.42378,1.14624 2.37388,2.54122 1.29319,1.89872 2.19102,2.50694 3.57143,2.41943 4.23226,-0.26831 4.94279,0.76337 1.6654,2.41813 -2.29384,1.15815 -3.40679,0.88163 -5.70617,-1.41775 -0.92411,-0.9241 -1.82629,-1.68019 -2.00487,-1.68019 -0.86165,0 -0.13292,1.42551 1.62985,3.18829 1.62747,1.62747 2.4011,1.89462 4.62328,1.59657 1.46782,-0.19687 3.20044,-0.88964 3.85027,-1.53947 1.09915,-1.09915 1.29497,-1.07491 2.80933,0.34775 1.33883,1.25777 1.89339,1.38712 3.12377,0.72864 1.65727,-0.88694 1.95873,-2.85902 0.63883,-4.17892 -1.35852,-1.35852 -2.09891,-0.99613 -1.13108,0.5536 0.70354,1.12655 0.69508,1.5942 -0.0421,2.32143 -0.74927,0.73922 -1.10788,0.66037 -1.90469,-0.41879 -0.53989,-0.73121 -2.21907,-2.65978 -3.73151,-4.28571 -1.51244,-1.62594 -3.29907,-3.75098 -3.97029,-4.72233 -0.84931,-1.2291 -1.22036,-1.42127 -1.22036,-0.63203 0,0.62371 0.64285,1.95129 1.42857,2.95016 2.86335,3.64016 0.82488,5.42515 -2.17781,1.907 -1.54174,-1.80641 -1.92434,-2.8412 -1.61756,-4.37505 0.49542,-2.47714 -0.88736,-4.35239 -2.76903,-3.75518 -0.74948,0.23788 -2.14195,-0.0781 -3.09437,-0.70212 -1.64827,-1.08 -1.78916,-1.04689 -2.92553,0.68743 -1.03079,1.57318 -1.0623,2.06792 -0.23062,3.62191 0.89847,1.67881 0.80935,1.92026 -1.32521,3.59081 -1.25864,0.98504 -2.28844,2.24982 -2.28844,2.81064 0,0.56081 -0.44279,1.01966 -0.98398,1.01966 -0.54117,0 -1.38394,0.48194 -1.8728,1.07099 -0.76734,0.92458 -0.584,1.01002 1.3411,0.625 2.84216,-0.56844 3.11231,1.2441 0.37156,2.49287 -1.56605,0.71354 -1.71534,1.01911 -0.94902,1.94247 0.6632,0.79911 1.6295,0.97407 3.56954,0.6463 2.18236,-0.36871 2.92727,-0.16271 4.1474,1.14694 2.51402,2.69849 0.50037,6.99895 -3.30238,7.05271 -2.19978,0.0311 -2.0691,-1.94028 0.19708,-2.97282 2.74698,-1.25161 1.69227,-2.38921 -1.99678,-2.15368 -2.70777,0.17287 -3.44764,-0.0646 -4.38923,-1.40893 -0.62287,-0.88928 -1.13249,-2.20717 -1.13249,-2.92865 0,-0.76791 -0.32405,-1.11153 -0.78155,-0.82878 -0.42985,0.26567 -0.63515,1.24893 -0.4562,2.18502 0.29792,1.55846 0.0898,1.70198 -2.4682,1.70198 -5.39457,0 -8.43691,2.85005 -8.43691,7.90365 0,2.27088 -0.39931,2.45233 -3.12019,1.41785 -1.2671,-0.48176 -1.88563,-0.42997 -2.13296,0.17857 -0.19159,0.47139 -0.37373,-0.0498 -0.40474,-1.15823 -0.031,-1.10841 -0.53854,-2.49745 -1.12783,-3.08674 -0.97463,-0.97463 -1.38083,-3.18493 -1.29391,-7.04081 0.0177,-0.78571 -0.20529,-1.58929 -0.49556,-1.78571 -0.65516,-0.44335 -3.45759,-16.89023 -3.91833,-22.99579 -0.23048,-3.05443 -0.11732,-4.15935 0.35159,-3.43279 0.57776,0.89523 0.71337,0.83649 0.8246,-0.35714 0.28246,-3.03136 0.43949,-3.65221 1.57488,-6.22706 0.64406,-1.4606 1.17102,-2.95299 1.17102,-3.31643 0,-1.25785 2.049,-1.46967 2.30556,-0.23834 0.20137,0.96638 0.33792,0.89784 0.67733,-0.33999 0.34439,-1.25599 0.16005,-1.49935 -0.97074,-1.28158 -0.86655,0.16689 -1.27571,-0.0578 -1.07901,-0.59246 0.17427,-0.4737 0.6455,-0.79191 1.04717,-0.70713 0.4019,0.0848 0.57479,-0.55759 0.38447,-1.42857 -0.25207,-1.15358 -0.15958,-1.31995 0.34111,-0.61361 1.17867,1.66278 1.7491,-0.39957 0.82067,-2.96708 -0.68042,-1.88168 -0.61469,-3.89812 0.33166,-10.17441 0.64914,-4.30519 1.2074,-8.47048 1.24057,-9.2562 0.26757,-6.33783 1.47888,-25.10615 2.05147,-31.78571 0.77715,-9.0659 0.94494,-70.49002 0.2558,-93.64177 -0.40495,-13.60413 -0.33715,-14.86734 0.89942,-16.75809 0.73556,-1.12469 0.9578,-1.811 0.49388,-1.52515 -0.46393,0.28586 -1.02282,0.22961 -1.24197,-0.12499 -0.21915,-0.3546 0.24077,-0.81189 1.02207,-1.01621 0.7813,-0.20431 1.42054,-0.7343 1.42054,-1.17776 0,-0.5687 -0.39696,-0.59384 -1.34711,-0.0853 -1.28954,0.69014 -1.36753,0.16456 -1.82463,-12.2963 -0.57125,-15.57281 -1.59392,-29.18838 -2.66327,-35.45802 -0.68921,-4.04093 -0.6393,-4.68781 0.42162,-5.46357 0.91495,-0.66902 0.9803,-0.96932 0.27268,-1.25284 -0.5119,-0.20509 -0.2075,-0.39827 0.67642,-0.42928 0.88393,-0.031 1.60715,-0.46837 1.60715,-0.97188 0,-0.99071 5.94591,-3.03855 6.97528,-2.40237 0.34487,0.21314 1.15795,-0.23254 1.80685,-0.99039 0.87327,-1.0199 1.78795,-1.28524 3.52027,-1.02119 1.61185,0.24569 1.92065,0.17205 0.99193,-0.23653 -1.12634,-0.49553 -0.78968,-0.80669 2.04339,-1.88866 1.86555,-0.71245 4.24024,-1.2906 5.27709,-1.28476 1.03685,0.006 2.29862,-0.32443 2.80392,-0.73394 0.5053,-0.4095 3.33305,-0.89949 6.28387,-1.08886 4.45177,-0.2857 5.32563,-0.54076 5.13308,-1.49821 -0.15921,-0.79166 -0.89859,-1.11115 -2.3553,-1.01775 -1.16778,0.0749 -4.58303,0.23558 -7.58945,0.35714 -3.00641,0.12156 -5.3178,0.46208 -5.13642,0.75672 0.18139,0.29464 -0.90337,0.53571 -2.41057,0.53571 -1.5072,0 -3.37439,0.42357 -4.14929,0.94125 -2.04863,1.3686 -8.34252,3.62592 -9.81723,3.52098 -0.69599,-0.0495 -1.0818,0.20708 -0.85735,0.57025 0.23626,0.38229 -0.58427,0.48914 -1.94885,0.25377 -1.57898,-0.27234 -2.04322,-0.18418 -1.40647,0.2671 1.38878,0.98425 -2.71882,1.67902 -5.3208,0.89998 -1.50542,-0.45073 -1.67455,-0.63858 -0.62967,-0.69937 1.32024,-0.0768 1.33335,-0.13856 0.17292,-0.81433 -0.69062,-0.40218 -1.5261,-0.56409 -1.85664,-0.3598 -0.33053,0.20427 -1.02516,-0.42118 -1.54361,-1.38992 -0.51845,-0.96873 -1.21447,-1.76133 -1.54672,-1.76133 -0.64034,0 -3.43304,-4.24136 -3.43756,-5.22073 -10e-4,-0.31783 0.36842,-0.34852 0.82198,-0.0682 0.5228,0.32312 0.63025,0.19512 0.29355,-0.34967 -0.40667,-0.65801 -0.76721,-0.66338 -1.53894,-0.0229 -1.24551,1.03369 -1.34351,-0.14318 -0.11498,-1.38081 0.71547,-0.72077 0.66789,-0.81388 -0.23952,-0.46872 -0.74814,0.28459 -1.89941,-0.46722 -3.39286,-2.21562 -1.24326,-1.45547 -2.26047,-2.25415 -2.26047,-1.77481 0,0.47934 -0.32668,0.66963 -0.72594,0.42288 -0.39926,-0.24676 -0.54329,-0.7442 -0.32004,-1.1054 0.22323,-0.36122 -0.028,-0.49025 -0.55835,-0.28674 -0.53033,0.20351 -1.72806,-0.44303 -2.66161,-1.43676 -0.93356,-0.99372 -1.44127,-1.80676 -1.12826,-1.80676 0.31302,0 0.16897,-0.48214 -0.32009,-1.07143 -0.7249,-0.87345 -0.68606,-1.07143 0.21016,-1.07143 0.60465,0 1.26275,0.32947 1.46246,0.73215 0.1997,0.40267 0.27728,0.32232 0.1724,-0.17858 -0.10488,-0.50089 -1.12542,-0.93722 -2.26786,-0.96963 -3.38516,-0.096 -3.86287,-0.25049 -3.86287,-1.24895 0,-0.5229 -0.88393,-1.36418 -1.96429,-1.86952 -1.08036,-0.50532 -2.76786,-1.38267 -3.75,-1.94965 -4.22579,-2.4395 -9.31926,-4.5794 -9.959,-4.18402 -0.61224,0.3784 -2.59859,-0.98108 -5.44214,-3.72465 -0.50896,-0.49108 -1.33799,-0.89286 -1.84229,-0.89286 -0.50429,0 0.15621,0.89587 1.46779,1.99082 1.35814,1.13383 2.4227,2.71399 2.47302,3.67079 0.0657,1.25029 0.55932,1.73009 1.9298,1.87593 1.01281,0.10777 3.06658,1.02734 4.56396,2.04349 1.49737,1.01615 3.05265,1.84754 3.45615,1.84754 0.40352,0 0.52142,0.21224 0.26202,0.47165 -0.25941,0.2594 0.22938,0.96266 1.0862,1.56281 1.20744,0.84572 1.62589,0.88706 1.86031,0.18379 0.18117,-0.54351 0.80977,-0.0732 1.56756,1.17293 0.69581,1.14416 2.45976,2.64721 3.91991,3.34008 2.1974,1.04274 2.59789,1.55745 2.32452,2.98751 -0.19642,1.02752 -0.008,1.67693 0.46524,1.60241 1.38956,-0.21889 4.72409,0.94969 4.72409,1.65556 0,0.37345 0.32143,0.48035 0.71429,0.23755 0.39286,-0.2428 0.71428,0.0596 0.71428,0.67212 0,0.61248 0.31135,1.11359 0.69188,1.11359 0.38052,0 0.48661,0.53487 0.23575,1.1886 -0.27643,0.72038 -0.16837,1.01077 0.27433,0.73717 0.93354,-0.57696 3.4409,1.23088 3.4409,2.48094 0,0.52273 0.40464,0.95043 0.89919,0.95043 0.49455,0 1.56289,1.09139 2.37409,2.4253 1.18092,1.94186 1.28644,2.54479 0.52939,3.02477 -0.70659,0.448 -0.61033,0.60225 0.3809,0.61043 0.88352,0.007 1.18913,0.36869 0.91527,1.08236 -0.22613,0.58929 -0.0604,1.07143 0.36818,1.07143 0.4835,0 0.4072,0.45748 -0.20099,1.20516 -0.85644,1.05288 -0.82549,1.14717 0.24492,0.74621 0.95179,-0.35653 1.38062,0.10377 1.92142,2.0624 0.3829,1.38675 0.50014,3.03226 0.26052,3.65669 -0.26632,0.69402 -0.14362,0.95482 0.31568,0.67097 1.79292,-1.10809 4.72266,17.75566 5.66075,36.44789 0.36627,7.29839 0.28133,9.59435 -0.34071,9.20991 -0.49822,-0.30792 -0.82861,-0.0513 -0.82861,0.64363 0,0.63565 0.32143,0.95708 0.71429,0.71428 0.95025,-0.58728 0.93358,4.68734 -0.0227,7.2027 -0.6523,1.71568 -0.60903,1.83232 0.37642,1.01448 1.00715,-0.83587 1.09214,4.59187 0.89025,56.85794 -0.26899,69.63319 -0.51166,80.10232 -1.87631,80.94571 -0.64766,0.40026 -0.83184,1.23986 -0.53309,2.43016 0.25708,1.02431 0.12205,2.02526 -0.30916,2.29178 -0.42109,0.26024 -0.58432,0.94559 -0.36274,1.523 0.22157,0.57741 -0.10657,3.28962 -0.7292,6.02712 -1.0308,4.53206 -1.27013,4.94018 -2.6756,4.5624 l -1.54353,-0.41488 1.49053,0.92265 c 1.26243,0.78146 1.39594,1.2779 0.87243,3.24408 -0.33995,1.27679 -1.01069,2.32635 -1.49053,2.33237 -0.62802,0.008 -0.64637,0.15795 -0.0655,0.53571 0.58564,0.38085 0.47609,1.60225 -0.39942,4.45335 -0.66351,2.16072 -1.37574,3.60715 -1.58274,3.21429 -0.207,-0.39286 -0.28549,-0.33092 -0.17441,0.13764 0.11107,0.46857 -0.12899,1.91499 -0.53348,3.21429 -1.81167,5.81948 -1.92057,7.36645 -0.96574,13.71857 1.27151,8.45886 1.57719,10.05926 2.76203,14.46103 0.54398,2.02091 0.84124,4.59234 0.66058,5.71429 -0.22486,1.39644 -0.11787,1.74098 0.33918,1.09225 0.46308,-0.65726 1.06154,0.92929 1.9531,5.17774 1.16974,5.57402 1.18445,6.23797 0.16341,7.37621 -0.61711,0.68796 -1.40917,2.36909 -1.76012,3.73585 -0.55576,2.16436 -0.95254,2.51051 -3.07514,2.68264 -1.34037,0.1087 -2.92882,0.72358 -3.5299,1.3664 -0.99197,1.06086 -0.96098,1.12082 0.3357,0.64944 0.78572,-0.28562 2.5271,-0.70349 3.86975,-0.92858 1.93147,-0.32381 2.35911,-0.19544 2.04819,0.61481 -0.92455,2.40935 -2.07594,9.3744 -1.70812,10.3329 0.33223,0.8658 0.64862,0.88914 1.85338,0.13675 0.79903,-0.499 1.60984,-1.40216 1.80182,-2.00702 0.19197,-0.60487 0.99196,-1.14819 1.77773,-1.20738 2.2276,-0.1678 1.97559,0.4558 -2.15767,5.33931 -0.63334,0.74831 -3.89453,1.29062 -5.87793,0.97744 -0.29465,-0.0465 -0.53572,0.36912 -0.53572,0.92365 0,0.57518 0.53689,0.90544 1.25,0.76893 0.6875,-0.13161 1.96213,-0.26388 2.83252,-0.29394 1.61543,-0.0558 5.08626,-2.98189 6.47009,-5.45466 0.42285,-0.7556 0.96044,-1.18218 1.19464,-0.94798 0.37925,0.37925 2.22222,10.03635 2.4383,12.77656 0.21679,2.74913 0.92865,42.47156 1.21607,67.85714 0.17569,15.51786 0.4294,37.85354 0.5638,49.63485 0.1344,11.78131 0.0276,20.80265 -0.23731,20.04741 -0.30218,-0.86145 -0.66313,-1.07956 -0.9686,-0.58528 -0.26781,0.43332 0.005,1.2797 0.60606,1.88084 1.07444,1.07443 1.13109,1.90736 1.26944,18.66504 0.0162,1.96429 -0.19091,4.375 -0.46028,5.35714 -0.38468,1.40259 -0.35297,1.47922 0.14783,0.35715 0.47171,-1.05692 0.76507,0.0581 1.12761,4.28571 0.5209,6.07436 1.30143,10.55934 2.22686,12.79574 0.34234,0.82732 0.2962,1.2006 -0.11687,0.9453 -0.37543,-0.23202 -0.68261,0.16153 -0.68261,0.87456 0,0.92527 0.46587,1.24529 1.62721,1.11781 2.11086,-0.23172 3.19011,1.13326 3.27541,4.14256 0.0539,1.90226 0.32625,2.35039 1.27718,2.10171 1.12012,-0.29291 1.13337,0.01 0.18087,4.13276 -0.56528,2.44686 -0.86022,4.8855 -0.65542,5.4192 0.2048,0.5337 0.10223,0.97036 -0.22794,0.97036 -0.33017,0 -0.56714,1.26472 -0.52661,2.81049 0.0437,1.6676 0.3081,2.46638 0.65012,1.96428 0.31705,-0.46541 0.4211,0.76095 0.23125,2.72523 -0.26651,2.75741 -0.17233,3.26699 0.41319,2.23573 0.61143,-1.07688 0.87746,-1.14608 1.37291,-0.35714 0.33799,0.5382 0.42672,1.5813 0.19717,2.318 -0.27202,0.873 -0.14197,1.16925 0.37345,0.8507 0.43494,-0.2688 0.79081,-0.16731 0.79081,0.22555 0,0.39285 -0.32143,0.91293 -0.71429,1.15573 -1.19189,0.73663 -0.80054,1.78572 0.66615,1.78572 1.48918,0 2.60666,2.32098 1.76959,3.6754 -0.2996,0.48477 -0.20384,0.63959 0.22983,0.37157 0.40889,-0.25272 0.9325,0.26012 1.16357,1.13963 0.23107,0.87951 0.14361,1.69402 -0.19435,1.81001 -0.90958,0.31219 1.71704,6.96167 2.66931,6.75757 0.98036,-0.21012 1.87806,2.94 1.28111,4.4956 -0.2444,0.63692 -0.125,0.92411 0.28011,0.67373 0.38836,-0.24001 0.70611,0.10677 0.70611,0.77065 0,0.97864 -0.46914,1.13084 -2.47985,0.80454 -5.592,-0.90738 -13.10326,-8.3795 -18.53754,-18.44087 l -2.80313,-5.18983 -7.74331,-105.39829 -7.74332,-105.39828 1.43928,-2.59725 c 1.52927,-2.75965 1.91213,-6.66905 0.72499,-7.40275 -0.43577,-0.26933 -0.71429,0.81186 -0.71429,2.77283 0,1.76786 -0.30518,3.4029 -0.67819,3.63343 -0.87955,0.54359 -1.40875,-2.71559 -1.73608,-10.69198 -0.1451,-3.53571 -1.24222,-19.28571 -2.43804,-35 -1.19583,-15.71428 -2.37673,-34.67857 -2.62424,-42.14286 -0.2475,-7.46428 -0.58249,-15.01785 -0.74442,-16.78571 -0.16194,-1.76786 -2.29025,-49.98214 -4.7296,-107.14286 -2.43933,-57.16071 -4.69658,-104.22857 -5.0161,-104.59523 -0.31952,-0.36667 -0.73563,-0.51199 -0.92469,-0.32293 -0.18906,0.18906 2.05447,55.13192 4.98562,122.09524 2.93115,66.96332 5.33048,123.45797 5.33184,125.54365 0.001,2.08569 -0.28527,3.61432 -0.63697,3.39696 -0.90358,-0.55845 -1.49103,1.31805 -0.7752,2.47628 0.34843,0.56377 0.2074,1.72379 -0.33948,2.79237 -1.32244,2.58396 -1.99921,8.74657 -1.10283,10.04223 0.64303,0.92946 0.88142,0.88771 1.7991,-0.31509 0.58182,-0.76258 1.05786,-2.28937 1.05786,-3.39286 0,-1.10348 0.33445,-2.00633 0.74322,-2.00633 0.40877,0 0.6955,1.20536 0.63716,2.67857 -0.0969,2.44651 1.6317,26.78741 2.53476,35.69331 0.44631,4.40152 -0.28474,4.44072 -3.558,0.1908 -1.17857,-1.53024 -2.64107,-2.79713 -3.25,-2.81532 -2.78342,-0.0832 -3.79296,3.8663 -1.51519,5.92765 2.02325,1.83101 2.53692,1.39576 0.86348,-0.73167 -1.29455,-1.64575 -1.36451,-2.05468 -0.49948,-2.91971 0.84294,-0.84293 1.25203,-0.8522 2.52498,-0.0572 0.83549,0.52177 1.51907,1.34219 1.51907,1.82315 0,0.48096 0.59877,1.19494 1.3306,1.5866 1.34406,0.71931 2.47415,3.02866 3.2772,6.69701 0.40577,1.85358 0.32767,1.94258 -1.05526,1.20245 -3.21109,-1.71855 -7.12397,0.59989 -7.12397,4.22101 0,1.75714 2.63913,4.3605 4.4204,4.3605 2.00485,0 1.52924,-1.02653 -0.90053,-1.94367 -1.82941,-0.69053 -2.15613,-1.15935 -1.96429,-2.81862 0.31527,-2.72662 3.22695,-4.22735 5.03217,-2.59366 1.3759,1.24519 1.70727,4.14387 0.5551,4.85595 -1.09227,0.67507 -0.8496,1.99048 0.28676,1.55442 0.99388,-0.38138 2.21121,2.25857 1.40975,3.05725 -0.21433,0.21358 -2.12018,0.37152 -4.23522,0.35097 -4.34638,-0.0422 -4.50016,0.2462 -0.60024,1.12578 1.61851,0.36503 3.20456,0.33017 3.98516,-0.0876 0.71316,-0.38167 1.28332,-0.44156 1.26704,-0.1331 -0.0163,0.30846 1.98324,28.30159 4.4434,62.20694 3.90514,53.81962 4.33965,61.7404 3.42248,62.38881 -0.9041,0.63917 -0.89515,0.69389 0.0641,0.39252 0.97284,-0.30562 1.3455,2.84479 2.92812,24.75405 1.14323,15.82647 1.55932,25.27027 1.12589,25.55349 -0.42746,0.27932 -0.40495,0.5495 0.0595,0.71428 0.44267,0.15706 1.23972,7.10378 1.95636,17.05075 1.09116,15.14545 1.38471,17.13471 3.00411,20.35715 2.72541,5.42329 7.20523,11.73551 10.83566,15.26782 3.18322,3.09719 9.22871,6.49695 11.57779,6.51085 1.26129,0.01 2.30252,1.8627 1.64373,2.9286 -0.22089,0.3574 -0.0263,0.6498 0.43226,0.6498 0.53279,0 0.67205,-0.6447 0.38569,-1.7857 -0.8012,-3.1922 0.33541,-1.8904 2.48097,2.8415 2.20937,4.8726 2.45068,5.6751 1.53684,5.1103 -0.30868,-0.1908 -0.56123,0.2546 -0.56123,0.9897 0,0.9034 0.25857,1.1219 0.79791,0.6743 0.55776,-0.4629 1.5866,1.4674 3.41837,6.4136 2.80794,7.582 2.90454,7.9441 2.08474,7.8146 -1.45112,-0.2291 -2.32143,0.182 -2.32143,1.0965 0,0.5565 -0.40178,1.1965 -0.89285,1.422 -0.49107,0.2255 -0.16965,0.2307 0.71428,0.011 2.14702,-0.5327 2.02694,-0.1672 -0.57782,1.7586 -1.8534,1.3703 -2.36146,1.472 -3.34802,0.67 -1.01049,-0.8213 -1.09761,-0.7709 -0.66408,0.3842 0.38134,1.0161 0.23573,1.2285 -0.61765,0.901 -0.64204,-0.2463 -0.93115,-0.1283 -0.68023,0.2777 0.24002,0.3883 0.10609,0.7061 -0.29763,0.7061 -0.40371,0 -0.5476,0.4857 -0.31976,1.0795 0.27114,0.7066 0.0783,0.9603 -0.55814,0.7344 -1.26412,-0.4487 -3.58539,1.3246 -3.32057,2.5367 0.11293,0.5169 -0.35112,0.9548 -1.03122,0.9731 -1.62988,0.044 -5.53381,3.2953 -5.60556,4.6684 -0.0383,0.7333 -0.17187,0.7931 -0.41666,0.1864 -0.42692,-1.058 -3.09835,-1.212 -3.09835,-0.1785 0,0.3928 0.24107,0.6762 0.53571,0.6297 1.56854,-0.2477 1.43018,0.3171 -0.63316,2.5845 -2.11194,2.3209 -4.16018,3.4739 -3.08731,1.738 z m -2.52953,-5.6441 c 0,-0.3806 -0.48214,-0.5069 -1.07142,-0.2807 -0.58929,0.2261 -1.07143,0.5374 -1.07143,0.6918 0,0.1544 0.48214,0.2808 1.07143,0.2808 0.58928,0 1.07142,-0.3114 1.07142,-0.6919 z m 12.5,-5.0224 c -0.2428,-0.3929 -0.76287,-0.7143 -1.15573,-0.7143 -0.39286,0 -0.51564,0.3214 -0.27284,0.7143 0.2428,0.3928 0.76288,0.7143 1.15574,0.7143 0.39286,0 0.51563,-0.3215 0.27283,-0.7143 z m 11.16007,-8.0477 c -0.70544,-0.7001 -0.78749,-0.6181 -0.39986,0.3999 0.26824,0.7044 0.66764,1.1008 0.88756,0.881 0.21992,-0.2199 4.6e-4,-0.7963 -0.4877,-1.2809 z m 0.98279,-2.6666 c 0.2428,-0.3929 0.10106,-0.7143 -0.31498,-0.7143 -0.41605,0 -0.75645,0.3214 -0.75645,0.7143 0,0.3928 0.14175,0.7143 0.31499,0.7143 0.17324,0 0.51364,-0.3215 0.75644,-0.7143 z m -1.08236,-8.435 c -0.009,-1.0409 -0.10664,-1.0598 -0.70335,-0.1364 -0.904,1.3988 -0.904,2.3444 0,1.7857 0.39285,-0.2428 0.70936,-0.985 0.70335,-1.6493 z m 0.66408,-5.1364 c -0.0259,-0.7065 -0.24838,-0.5849 -0.65315,0.3571 -0.8438,1.9636 -0.8438,3.0914 0,1.7857 0.38083,-0.5893 0.67475,-1.5536 0.65315,-2.1428 z m -40,-23.92862 c 0.0216,-0.39286 -0.27232,-0.23214 -0.65315,0.35714 -0.38083,0.58929 -0.67474,1.55358 -0.65314,2.14286 0.0414,1.13132 1.23191,-1.14698 1.30629,-2.5 z m 28.16781,-0.69141 c 0.2213,-0.5767 0.095,-1.23853 -0.28072,-1.47072 -0.3757,-0.2322 -0.68309,0.23965 -0.68309,1.04855 0,1.72469 0.39722,1.89868 0.96381,0.42217 z m -24.27694,-7.16573 c -0.22613,-0.58929 -0.53747,-1.07143 -0.69187,-1.07143 -0.15439,0 -0.28072,0.48214 -0.28072,1.07143 0,0.58928 0.31134,1.07143 0.69187,1.07143 0.38052,0 0.50685,-0.48215 0.28072,-1.07143 z m 0.45598,-12.81499 c 0,-0.17324 -0.32143,-0.51364 -0.71428,-0.75644 -0.39286,-0.2428 -0.71429,-0.10106 -0.71429,0.31499 0,0.41604 0.32143,0.75644 0.71429,0.75644 0.39285,0 0.71428,-0.14174 0.71428,-0.31499 z m -1.65492,-11.24751 c -0.22801,-0.56981 -0.39727,-0.40056 -0.43154,0.43155 -0.031,0.75297 0.1378,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85343 0.0564,-1.36905 z m 36.64399,-2.54464 c -0.006,-0.29465 -0.32252,-1.01786 -0.70335,-1.60715 -0.55991,-0.8664 -0.6945,-0.76388 -0.70335,0.53572 -0.006,0.88393 0.31049,1.60714 0.70335,1.60714 0.39285,0 0.70936,-0.24107 0.70335,-0.53571 z m -35.9297,-1.74108 c -0.22802,-0.5698 -0.39727,-0.40055 -0.43155,0.43155 -0.031,0.75298 0.1378,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85342 0.0564,-1.36905 z m 1.29778,-9.86607 c 0.2428,-0.39285 0.10105,-0.71428 -0.31499,-0.71428 -0.41604,0 -0.75644,0.32143 -0.75644,0.71428 0,0.39286 0.14174,0.71429 0.31498,0.71429 0.17325,0 0.51365,-0.32143 0.75645,-0.71429 z m 28.21428,-1.42857 c 0,-0.39286 -0.14174,-0.71428 -0.31498,-0.71428 -0.17325,0 -0.51365,0.32142 -0.75645,0.71428 -0.2428,0.39286 -0.10105,0.71429 0.31499,0.71429 0.41604,0 0.75644,-0.32143 0.75644,-0.71429 z m -35.04465,-15.97524 c -0.67922,-0.62564 -0.77446,-0.51207 -0.41762,0.49795 0.25425,0.71963 0.50604,1.84463 0.55954,2.5 0.0535,0.65536 0.24143,0.43129 0.41762,-0.49795 0.17619,-0.92924 -0.0756,-2.05424 -0.55954,-2.5 z m 33.23049,-13.02836 c -2.21397,-1.14862 -2.47155,-1.19568 -2.47155,-0.45149 0,0.72316 3.05311,2.12433 3.80319,1.7454 0.3239,-0.16364 -0.27534,-0.74589 -1.33164,-1.29391 z m -3.90012,-2.73996 c 0,-0.17324 -0.32143,-0.51364 -0.71429,-0.75644 -0.39286,-0.2428 -0.71429,-0.10106 -0.71429,0.31499 0,0.41604 0.32143,0.75644 0.71429,0.75644 0.39286,0 0.71429,-0.14174 0.71429,-0.31499 z m -2.85715,-1.82787 c 0,-0.39285 -0.3404,-0.71428 -0.75644,-0.71428 -0.41604,0 -0.55779,0.32143 -0.31499,0.71428 0.2428,0.39286 0.5832,0.71429 0.75645,0.71429 0.17324,0 0.31498,-0.32143 0.31498,-0.71429 z m -3.07823,-3.38435 c -1.09902,-1.09903 -1.20748,-1.10285 -1.20748,-0.0425 0,0.64073 0.40178,1.30847 0.89286,1.48384 1.45942,0.52123 1.60595,-0.15 0.31462,-1.44132 z m -10.40456,-7.52041 c -0.70544,-0.70019 -0.78749,-0.61814 -0.39986,0.39986 0.26824,0.70444 0.66764,1.10087 0.88756,0.88095 0.21992,-0.21993 4.6e-4,-0.79628 -0.4877,-1.28081 z m -2.23149,-1.55308 c 0,-0.17324 -0.32143,-0.51364 -0.71429,-0.75644 -0.39286,-0.2428 -0.71428,-0.10106 -0.71428,0.31498 0,0.41605 0.32142,0.75645 0.71428,0.75645 0.39286,0 0.71429,-0.14175 0.71429,-0.31499 z m -16.07143,-12.54216 c -0.2428,-0.39285 -0.76288,-0.71428 -1.15574,-0.71428 -0.39285,0 -0.51563,0.32143 -0.27283,0.71428 0.2428,0.39286 0.76288,0.71429 1.15573,0.71429 0.39286,0 0.51564,-0.32143 0.27284,-0.71429 z m -3.12565,-2.33333 c -0.70544,-0.70019 -0.78749,-0.61815 -0.39986,0.39985 0.26824,0.70445 0.66764,1.10088 0.88756,0.88095 0.21992,-0.21992 4.6e-4,-0.79627 -0.4877,-1.2808 z m -7.23149,-5.12451 c 0,-0.17324 -0.32143,-0.51364 -0.71429,-0.75644 -0.39286,-0.2428 -0.71429,-0.10106 -0.71429,0.31498 0,0.41605 0.32143,0.75645 0.71429,0.75645 0.39286,0 0.71429,-0.14175 0.71429,-0.31499 z m -4.47279,-4.25984 c -0.86168,-0.86168 -1.00341,-0.71996 -1.00341,1.0034 0,1.72335 0.14173,1.86508 1.00341,1.0034 0.86167,-0.86168 0.86167,-1.14512 0,-2.0068 z m 42.82492,-3.80444 c -0.1811,-0.69498 -0.34118,-0.29931 -0.35574,0.87927 -0.0146,1.17857 0.13361,1.74718 0.32928,1.26359 0.19565,-0.48359 0.20756,-1.44788 0.0265,-2.14286 z m -47.63785,-5.59146 c 0,-0.61247 -0.32667,-0.91169 -0.72593,-0.66493 -0.39927,0.24676 -0.54102,0.74787 -0.31499,1.11358 0.61231,0.99075 1.04092,0.80601 1.04092,-0.44865 z m 39.77365,-39.02035 c -0.22801,-0.5698 -0.39727,-0.40055 -0.43154,0.43155 -0.031,0.75298 0.1378,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85342 0.0564,-1.36905 z m -47.63079,-41.29464 c 0,-0.39286 -0.14174,-0.71428 -0.31499,-0.71428 -0.17324,0 -0.51364,0.32142 -0.75644,0.71428 -0.2428,0.39286 -0.10106,0.71429 0.31499,0.71429 0.41604,0 0.75644,-0.32143 0.75644,-0.71429 z m 105.48793,-8.70536 c -0.22801,-0.5698 -0.39727,-0.40055 -0.43154,0.43155 -0.031,0.75298 0.1378,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85342 0.0564,-1.36905 z m 1.43563,-1.10247 c -0.1811,-0.69498 -0.34118,-0.29931 -0.35574,0.87926 -0.0146,1.17857 0.13361,1.74719 0.32928,1.26359 0.19566,-0.48359 0.20756,-1.44788 0.0265,-2.14285 z m -100.13785,0.52212 c 0.2428,-0.39286 0.10106,-0.71429 -0.31498,-0.71429 -0.41605,0 -0.75645,0.32143 -0.75645,0.71429 0,0.39285 0.14175,0.71428 0.31499,0.71428 0.17324,0 0.51364,-0.32143 0.75644,-0.71428 z m 11.76983,-9.10715 c -0.009,-0.29464 -0.64444,-1.33928 -1.41268,-2.32142 -2.72769,-3.48715 -0.96593,-9.12498 3.36615,-10.77203 0.96247,-0.36593 1.62339,-1.04505 1.46869,-1.50915 -0.43142,-1.29425 -1.9777,-1.5495 -1.9777,-0.32648 0,0.59555 -0.58498,1.26848 -1.29996,1.49541 -1.38502,0.43959 -4.41433,5.49605 -4.41433,7.3683 0,1.92835 2.37262,6.60109 3.35175,6.60109 0.51368,0 0.92682,-0.24107 0.91808,-0.53572 z m 61.76564,-13.86366 c 0.41803,-4.68549 1.26078,-7.73299 2.01036,-7.26972 0.41048,0.25369 0.54527,0.13593 0.29952,-0.2617 -0.41739,-0.67535 0.12107,-3.20487 1.29954,-6.10492 0.35867,-0.88263 0.17061,-1.25 -0.63989,-1.25 -0.63133,0 -1.0675,-0.40178 -0.96928,-0.89285 0.0982,-0.49107 -0.46429,-0.89286 -1.25,-0.89286 -0.78572,0 -1.78487,-0.23192 -2.22033,-0.51539 -0.54088,-0.35207 -0.72532,0.32201 -0.58207,2.12741 0.11534,1.45354 0.50998,2.74289 0.877,2.86523 0.37951,0.1265 0.22667,1.50137 -0.3544,3.18794 -1.3159,3.81941 -1.43944,9.43715 -0.23934,10.88318 1.18639,1.42952 1.50402,1.09259 1.76889,-1.87632 z m -46.03547,-2.38634 c 0,-4.23922 -0.26313,-4.55826 -2.26518,-2.74643 -1.65519,1.49792 -1.68437,4.44477 -0.0562,5.68068 2.03852,1.54746 2.32143,1.18987 2.32143,-2.93425 z m 31.2413,-2.78865 c -0.0936,-2.12633 -0.465,-3.6778 -0.82697,-3.45425 -0.36141,0.2232 -0.45185,-0.12905 -0.20098,-0.78278 0.60282,-1.57094 -0.1165,-3.33146 -1.3612,-3.33146 -1.50725,0 -1.19538,-1.31108 0.73812,-3.10299 1.79886,-1.66712 3.25738,-8.32558 1.8237,-8.32558 -0.38482,0 -0.70407,0.88393 -0.70943,1.96429 -0.0151,3.05467 -0.67569,4.81692 -2.15074,5.7381 -1.38598,0.86556 -3.5538,0.4913 -3.5538,-0.61353 0,-0.3385 0.49529,-0.4254 1.10064,-0.1931 0.60536,0.2323 1.03559,0.14185 0.95608,-0.20099 -0.0795,-0.34283 0.22878,-1.52819 0.68508,-2.63413 1.0173,-2.46563 1.04765,-3.34635 0.11535,-3.34635 -0.39286,0 -0.71429,-0.44776 -0.71429,-0.99501 0,-2.2127 -4.89556,-2.52216 -6.78968,-0.42919 -1.62431,1.79485 -0.82668,2.7884 0.94869,1.18172 1.60893,-1.45606 3.46637,-1.5199 4.82058,-0.16569 1.40224,1.40224 1.2783,2.81051 -0.37938,4.31069 -1.82127,1.64823 -5.02878,0.97278 -5.02878,-1.05899 0,-0.77823 -0.32143,-1.41496 -0.71429,-1.41496 -1.26173,0 -0.76322,2.09392 0.89277,3.7499 0.95226,0.95227 1.60709,2.4802 1.60714,3.75 6e-5,1.20858 0.35291,2.07726 0.80924,1.99228 0.44504,-0.0829 1.01716,0.88142 1.27138,2.14286 0.30237,1.50033 0.65541,1.98357 1.02081,1.39729 0.38163,-0.61233 1.04228,0.01 2.08546,1.96428 0.90163,1.68919 1.19795,2.86053 0.72362,2.86053 -0.84513,0 1.5642,2.74142 2.47373,2.81469 0.28986,0.0234 0.45057,-1.69458 0.35715,-3.81763 z m -35.52701,-2.61065 c 0,-0.36967 -0.32143,-0.67212 -0.71429,-0.67212 -0.39285,0 -0.71428,0.50111 -0.71428,1.11358 0,0.61247 0.32143,0.91493 0.71428,0.67213 0.39286,-0.2428 0.71429,-0.74391 0.71429,-1.11359 z m 70.55059,-0.0918 c -0.15551,-0.46652 -0.66465,-0.97552 -1.13143,-1.13111 -0.52197,-0.17399 -0.6816,0.15256 -0.41465,0.84821 0.49822,1.29837 1.97462,1.56852 1.54608,0.2829 z m -34.34837,-4.28571 c -0.22801,-0.56981 -0.39727,-0.40056 -0.43154,0.43155 -0.031,0.75297 0.1378,1.17485 0.37515,0.9375 0.23735,-0.23735 0.26273,-0.85343 0.0564,-1.36905 z M 434.60391,722.4923 c 0.0726,-2.49586 -0.40463,-1.59023 -0.90962,1.72619 -0.3032,1.99129 -0.2389,2.42422 0.21218,1.42858 0.35598,-0.78572 0.66983,-2.20536 0.69744,-3.15477 z m -9.46186,-4.47916 c -0.22801,-0.56981 -0.39727,-0.40056 -0.43154,0.43155 -0.031,0.75297 0.1378,1.17485 0.37515,0.9375 0.23735,-0.23735 0.26273,-0.85343 0.0564,-1.36905 z m 26.65492,-2.00893 c 0,-0.39286 -0.14174,-0.71429 -0.31498,-0.71429 -0.17325,0 -0.51365,0.32143 -0.75645,0.71429 -0.2428,0.39286 -0.10105,0.71428 0.31499,0.71428 0.41604,0 0.75644,-0.32142 0.75644,-0.71428 z m -58.23236,-2.11361 c 0.45854,-0.74193 -1.65863,-8.54426 -3.55312,-13.09417 -0.36561,-0.87809 -0.23975,-1.21406 0.4014,-1.07143 0.5645,0.12558 1.00662,-0.57586 1.11752,-1.773 0.12438,-1.3425 -0.0811,-1.81724 -0.63761,-1.47329 -2.03919,1.26029 -4.16906,0.85446 -4.84491,-0.92317 -0.90718,-2.38605 -0.85709,-3.31683 0.14516,-2.69741 0.51503,0.31831 0.63059,0.19566 0.30779,-0.32664 -0.28428,-0.45996 -0.81608,-0.65137 -1.1818,-0.42535 -0.36571,0.22603 -0.66493,0.006 -0.66493,-0.48835 0,-0.69945 -0.19047,-0.70882 -0.85714,-0.0421 -1.12759,1.12759 -2.22558,1.10263 -1.57049,-0.0357 0.2826,-0.49107 0.24145,-0.64524 -0.0915,-0.3426 -0.79099,0.71913 -0.98831,3.42304 -0.21491,2.94506 0.78825,-0.48717 2.1622,3.19625 1.55731,4.17498 -0.29985,0.48517 -0.13003,0.55299 0.46455,0.18551 0.70453,-0.43542 0.83206,-0.17725 0.51373,1.04003 -0.31672,1.21114 -0.0751,1.71032 0.95891,1.98071 1.33924,0.35022 1.51612,0.61706 1.66807,2.51631 0.0393,0.49107 0.39285,1.13393 0.78571,1.42857 0.44937,0.33703 0.31691,0.82562 -0.35714,1.31738 -0.9228,0.67323 -0.90729,0.72944 0.11181,0.40518 0.83247,-0.26488 1.46512,0.29745 2.13412,1.8969 0.52298,1.25037 0.87445,2.51447 0.78105,2.80911 -0.0934,0.29463 0.15159,0.5357 0.54445,0.5357 0.39285,0 0.71428,0.48214 0.71428,1.07143 0,1.19771 1.11551,1.44156 1.76764,0.38639 z m 2.51808,-2.17211 c 0,-0.39285 -0.14175,-0.71428 -0.31499,-0.71428 -0.17324,0 -0.51364,0.32143 -0.75644,0.71428 -0.2428,0.39286 -0.10106,0.71429 0.31498,0.71429 0.41605,0 0.75645,-0.32143 0.75645,-0.71429 z m 90.09146,-5.39904 c 1.55393,-2.64846 1.64279,-4.33081 0.25684,-4.86265 -0.8385,-0.32176 -0.98514,-0.0356 -0.65525,1.27883 0.48887,1.94781 -1.87662,5.16614 -4.55746,6.2006 -0.90757,0.3502 -1.45897,0.94603 -1.22534,1.32406 0.65877,1.0659 4.78837,-1.56693 6.18121,-3.94084 z m -29.64056,2.14192 c 1.03109,-1.57365 1.05769,-1.96898 0.1908,-2.83587 -1.33525,-1.33525 -4.03927,-0.58006 -4.63415,1.29426 -0.31671,0.99786 -0.0489,1.78229 0.82715,2.42288 1.80072,1.31673 2.24732,1.20788 3.6162,-0.88127 z m -62.82011,-1.16252 c -0.22802,-0.56981 -0.39727,-0.40056 -0.43154,0.43155 -0.031,0.75297 0.1378,1.17485 0.37515,0.9375 0.23735,-0.23735 0.26272,-0.85343 0.0564,-1.36905 z m 87.01206,-1.12701 c 0.39286,-0.28862 1.29057,-1.20817 1.99492,-2.04344 1.21944,-1.44609 1.22165,-1.64236 0.0463,-4.10714 -1.05984,-2.22249 -1.57636,-2.58848 -3.65309,-2.58848 -2.38185,0 -4.45955,1.30736 -4.45955,2.80612 0,0.42092 0.32143,0.76531 0.71429,0.76531 0.39286,0 0.71429,-0.31012 0.71429,-0.68916 0,-0.37903 0.66441,-1.04473 1.47647,-1.47933 1.77383,-0.94933 4.9521,0.7607 4.9521,2.66442 0,2.91838 -4.29577,4.92259 -6.28572,2.93264 -0.52768,-0.52769 -0.85714,-0.56964 -0.85714,-0.10915 0,0.74247 2.55906,2.26386 3.92857,2.33559 0.39286,0.0206 1.03572,-0.19875 1.42857,-0.48738 z m -8.1909,-8.33387 c 0.8425,-0.8425 0.90137,-1.83376 0.10891,-1.83376 -1.11515,0 -3.05076,5.11178 -2.53031,6.68229 0.42999,1.29752 0.60127,1.09659 1.11909,-1.31281 0.33626,-1.56465 0.92231,-3.15572 1.30231,-3.53572 z m -63.59481,2.45195 c 0,-0.78571 -0.29134,-1.42857 -0.64742,-1.42857 -0.35607,0 -0.4793,0.64286 -0.27383,1.42857 0.20547,0.78572 0.49681,1.42857 0.64741,1.42857 0.15061,0 0.27384,-0.64285 0.27384,-1.42857 z m 46.02938,-9.62014 c -1.61097,-1.21847 -2.45795,-1.36741 -2.45795,-0.43223 0,0.36405 0.5625,0.80891 1.25,0.98857 2.33974,0.61144 2.5959,0.49346 1.20795,-0.55634 z m -3.88652,-2.8377 c 0,-0.17324 -0.32143,-0.51364 -0.71429,-0.75644 -0.39286,-0.2428 -0.71429,-0.10106 -0.71429,0.31498 0,0.41605 0.32143,0.75645 0.71429,0.75645 0.39286,0 0.71429,-0.14175 0.71429,-0.31499 z m -5,-3.97073 c 0,-0.39286 -0.3404,-0.71428 -0.75645,-0.71428 -0.41604,0 -0.55778,0.32142 -0.31498,0.71428 0.2428,0.39286 0.5832,0.71429 0.75644,0.71429 0.17324,0 0.31499,-0.32143 0.31499,-0.71429 z m -3.57143,-2.85714 c -2.31126,-1.80789 -3.51257,-1.83734 -1.73212,-0.0424 0.75624,0.76236 1.85712,1.39807 2.4464,1.41269 0.69467,0.0172 0.44349,-0.46462 -0.71428,-1.37024 z m -17.14286,-13.1721 c 0,-0.17324 -0.32143,-0.51364 -0.71429,-0.75644 -0.39285,-0.2428 -0.71428,-0.10106 -0.71428,0.31498 0,0.41605 0.32143,0.75645 0.71428,0.75645 0.39286,0 0.71429,-0.14175 0.71429,-0.31499 z m -8.92857,-6.82787 c -0.2428,-0.39286 -0.76288,-0.71429 -1.15574,-0.71429 -0.39285,0 -0.51563,0.32143 -0.27283,0.71429 0.2428,0.39286 0.76288,0.71428 1.15573,0.71428 0.39286,0 0.51564,-0.32142 0.27284,-0.71428 z m -3.12565,-2.33334 c -0.70544,-0.70018 -0.78749,-0.61814 -0.39986,0.39986 0.26824,0.70444 0.66764,1.10087 0.88756,0.88095 0.21992,-0.21992 4.6e-4,-0.79628 -0.4877,-1.28081 z m -10.80292,-8.38095 c 0,-0.39285 -0.3404,-0.71428 -0.75645,-0.71428 -0.41604,0 -0.55778,0.32143 -0.31498,0.71428 0.2428,0.39286 0.5832,0.71429 0.75644,0.71429 0.17324,0 0.31499,-0.32143 0.31499,-0.71429 z m -2.85715,-2.14285 c -0.58928,-0.38083 -1.39285,-0.69241 -1.78571,-0.69241 -0.39286,0 -0.23214,0.31158 0.35714,0.69241 0.58929,0.38082 1.39286,0.6924 1.78572,0.6924 0.39285,0 0.23214,-0.31158 -0.35715,-0.6924 z m 38.34508,-1.5625 c -0.22801,-0.56981 -0.39727,-0.40056 -0.43154,0.43155 -0.031,0.75297 0.1378,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85343 0.0564,-1.36905 z m -42.63079,-1.60963 c 0,-0.17325 -0.32143,-0.51365 -0.71429,-0.75645 -0.39285,-0.2428 -0.71428,-0.10105 -0.71428,0.31499 0,0.41604 0.32143,0.75644 0.71428,0.75644 0.39286,0 0.71429,-0.14174 0.71429,-0.31498 z m -4.30004,-3.63085 c -0.49695,-0.59878 -1.08949,-0.90273 -1.31677,-0.67545 -0.22729,0.22728 0.0596,0.71228 0.6375,1.07775 1.51212,0.9563 1.7097,0.83928 0.67927,-0.4023 z m -2.14378,-1.58988 c -0.0214,-0.75102 -5.70508,-4.69634 -6.13961,-4.2618 -0.19578,0.19577 0.70719,1.10262 2.00659,2.01522 1.2994,0.91259 2.4697,1.91194 2.60065,2.22078 0.3035,0.71575 1.55261,0.73678 1.53237,0.0258 z m 43.36738,-2.12927 c -0.1811,-0.69497 -0.34118,-0.2993 -0.35574,0.87927 -0.0146,1.17857 0.13362,1.74718 0.32928,1.26359 0.19566,-0.48359 0.20756,-1.44788 0.0265,-2.14286 z m 72.83521,-3.94216 c -0.19815,-0.49107 -0.36028,-0.0893 -0.36028,0.89286 0,0.98214 0.16213,1.38393 0.36028,0.89285 0.19815,-0.49107 0.19815,-1.29464 0,-1.78571 z m -125.8302,-1.25 c -0.2428,-0.39286 -0.76288,-0.71429 -1.15574,-0.71429 -0.39285,0 -0.51563,0.32143 -0.27283,0.71429 0.2428,0.39286 0.76288,0.71429 1.15574,0.71429 0.39286,0 0.51563,-0.32143 0.27283,-0.71429 z m -25.35714,-2.06644 c 0,-0.35082 -0.52761,-0.84032 -1.17246,-1.08777 -0.98034,-0.3762 -1.02453,-0.27168 -0.26968,0.63786 1.02866,1.23946 1.44214,1.36846 1.44214,0.44991 z m 22.85714,-0.0764 c 0,-0.39285 -0.32143,-0.71428 -0.71428,-0.71428 -0.39286,0 -0.71429,0.32143 -0.71429,0.71428 0,0.39286 0.32143,0.71429 0.71429,0.71429 0.39285,0 0.71428,-0.32143 0.71428,-0.71429 z m -3.92857,-3.21264 c -0.78571,-0.56339 -1.81679,-1.35674 -2.29128,-1.76299 -0.47449,-0.40626 -1.11059,-0.73865 -1.41355,-0.73865 -1.04522,0 2.9931,3.48513 4.06197,3.50553 0.77856,0.0149 0.68094,-0.25954 -0.35714,-1.00389 z m -19.38455,-0.71593 c -0.22613,-0.58928 -0.53747,-1.07143 -0.69187,-1.07143 -0.1544,0 -0.28072,0.48215 -0.28072,1.07143 0,0.58929 0.31134,1.07143 0.69187,1.07143 0.38052,0 0.50685,-0.48214 0.28072,-1.07143 z m -1.91323,-2.63393 c -0.22801,-0.5698 -0.39727,-0.40055 -0.43154,0.43155 -0.031,0.75297 0.1378,1.17485 0.37515,0.9375 0.23735,-0.23735 0.26273,-0.85343 0.0564,-1.36905 z m 9.51207,-5.13575 c 0,-0.14833 -0.4895,-0.67593 -1.08778,-1.17246 -0.90954,-0.75484 -1.01406,-0.71066 -0.63787,0.26968 0.38421,1.00124 1.72565,1.70302 1.72565,0.90278 z m -13.57143,-9.73032 c 0,-0.39286 -0.14175,-0.71428 -0.31499,-0.71428 -0.17324,0 -0.51364,0.32142 -0.75644,0.71428 -0.2428,0.39286 -0.10106,0.71429 0.31499,0.71429 0.41604,0 0.75644,-0.32143 0.75644,-0.71429 z m -1.65492,-2.27678 c -0.22802,-0.56981 -0.39727,-0.40056 -0.43155,0.43155 -0.031,0.75297 0.13781,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26273,-0.85343 0.0564,-1.36905 z M 335.3684,571.00424 c 0,-0.39286 -0.3404,-0.71429 -0.75644,-0.71429 -0.41604,0 -0.55779,0.32143 -0.31499,0.71429 0.2428,0.39286 0.5832,0.71428 0.75644,0.71428 0.17325,0 0.31499,-0.32142 0.31499,-0.71428 z m 191.40669,-14.64286 c 0,-0.39286 -0.31158,-0.23214 -0.6924,0.35714 -0.38083,0.58929 -0.69241,1.39286 -0.69241,1.78572 0,0.39286 0.31158,0.23214 0.69241,-0.35714 0.38082,-0.58929 0.6924,-1.39286 0.6924,-1.78572 z m -195.12294,-1.16761 c -0.22492,-1.42978 -0.32552,-1.32917 -0.65435,0.65434 -0.23532,1.41944 -0.13049,2.08579 0.26578,1.68952 0.35989,-0.35988 0.53474,-1.41463 0.38857,-2.34386 z m 1.34705,-0.0377 c -0.22802,-0.5698 -0.39728,-0.40055 -0.43155,0.43155 -0.031,0.75297 0.1378,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85343 0.0564,-1.36905 z m 63.08349,-5.66469 c 0,-0.39286 -0.32143,-0.51564 -0.71429,-0.27284 -0.39286,0.2428 -0.71429,0.76288 -0.71429,1.15574 0,0.39286 0.32143,0.51564 0.71429,0.27284 0.39286,-0.2428 0.71429,-0.76288 0.71429,-1.15574 z m 36.90162,-20.80855 c -0.19815,-0.49107 -0.36027,-0.0893 -0.36027,0.89286 0,0.98214 0.16212,1.38393 0.36027,0.89285 0.19815,-0.49107 0.19815,-1.29464 0,-1.78571 z m 0,-11.42857 c -0.19815,-0.49107 -0.36027,-0.0893 -0.36027,0.89286 0,0.98214 0.16212,1.38392 0.36027,0.89285 0.19815,-0.49107 0.19815,-1.29464 0,-1.78571 z m -110.69234,-1.77212 c -0.18111,-0.69498 -0.34119,-0.29931 -0.35575,0.87926 -0.0146,1.17857 0.13362,1.74719 0.32928,1.26359 0.19566,-0.48359 0.20757,-1.44787 0.0265,-2.14285 z m -1.45051,-1.79931 c -0.19815,-0.49107 -0.36028,-0.0893 -0.36028,0.89286 0,0.98214 0.16213,1.38393 0.36028,0.89285 0.19815,-0.49107 0.19815,-1.29464 0,-1.78571 z m 181.47635,0.46131 c -0.23735,-0.23735 -0.85343,-0.26272 -1.36905,-0.0564 -0.56981,0.22801 -0.40056,0.39727 0.43155,0.43154 0.75297,0.031 1.17485,-0.1378 0.9375,-0.37515 z m -5.52084,-6.31201 c 0,-0.17324 -0.32143,-0.51364 -0.71428,-0.75644 -0.39286,-0.2428 -0.71429,-0.10106 -0.71429,0.31498 0,0.41605 0.32143,0.75645 0.71429,0.75645 0.39285,0 0.71428,-0.14175 0.71428,-0.31499 z m 42.61592,-3.43501 c -0.19815,-0.49108 -0.36028,-0.0893 -0.36028,0.89285 0,0.98215 0.16213,1.38393 0.36028,0.89286 0.19815,-0.49107 0.19815,-1.29464 0,-1.78571 z M 430.85634,502.2989 c -0.22802,-0.56981 -0.39728,-0.40056 -0.43155,0.43155 -0.031,0.75297 0.1378,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85343 0.0564,-1.36905 z m 0.6994,-10.75893 c -0.19815,-0.49107 -0.36028,-0.0893 -0.36028,0.89286 0,0.98214 0.16213,1.38393 0.36028,0.89286 0.19815,-0.49107 0.19815,-1.29465 0,-1.78572 z m 40.18171,-0.27533 c 0.16369,-0.14321 -1.52381,-0.26038 -3.75,-0.26038 -2.31207,0 -4.04762,0.31682 -4.04762,0.73888 0,0.66917 6.97506,0.24114 7.79762,-0.4785 z m 5.58036,0.0224 c -0.23736,-0.23735 -0.85343,-0.26272 -1.36905,-0.0564 -0.56981,0.22801 -0.40056,0.39727 0.43155,0.43154 0.75297,0.031 1.17485,-0.13781 0.9375,-0.37516 z m -15.11962,-5.63795 c -0.0242,-2.94537 -0.28515,-5.35609 -0.57979,-5.35715 -0.29464,-7.1e-4 -0.53571,2.4088 -0.53571,5.35523 0,2.94642 0.2609,5.35714 0.57978,5.35714 0.31889,0 0.55996,-2.40985 0.53572,-5.35522 z m 9.59878,4.10143 c 0,-0.29673 -1.125,-0.89163 -2.5,-1.322 -1.375,-0.43037 -2.5,-0.50902 -2.5,-0.17478 0,0.33424 0.48214,0.60771 1.07143,0.60771 0.58929,0 1.07143,0.32143 1.07143,0.71429 0,0.39285 0.64286,0.71428 1.42857,0.71428 0.78571,0 1.42857,-0.24278 1.42857,-0.5395 z m 0.96774,-1.97315 c -0.2288,-0.59624 -0.92057,-0.99803 -1.53726,-0.89285 -0.68702,0.11716 -1.28977,-0.49756 -1.55637,-1.5873 -0.28276,-1.15574 -0.62049,-1.47856 -0.96452,-0.92191 -0.72947,1.1803 0.942,3.65052 2.70804,4.00214 0.79959,0.1592 1.52407,0.33323 1.60996,0.38673 0.0859,0.0535 -0.0311,-0.39056 -0.25985,-0.98681 z m 1.67921,-4.09449 c -0.17025,-0.88393 -0.30955,-0.16071 -0.30955,1.60714 0,1.76786 0.1393,2.49107 0.30955,1.60715 0.17026,-0.88393 0.17026,-2.33036 0,-3.21429 z m 5.46188,0.53571 c 0.30921,-2.43815 0.23129,-3.23145 -0.24558,-2.5 -0.63034,0.96686 -1.07548,7.07865 -0.46388,6.36905 0.14109,-0.16369 0.46035,-1.90476 0.70946,-3.86905 z m -12.51595,-1.78571 c 0.0129,-0.65641 -0.21679,-0.51808 -0.59288,0.35714 -0.33763,0.78572 -0.60443,2.07143 -0.59288,2.85715 0.0169,1.14842 0.13315,1.07837 0.59288,-0.35715 0.31454,-0.98214 0.58134,-2.26785 0.59288,-2.85714 z m 10.47855,-0.71429 c -0.2428,-0.39285 -0.74391,-0.71428 -1.11359,-0.71428 -0.36967,0 -0.67212,0.32143 -0.67212,0.71428 0,0.39286 0.50111,0.71429 1.11358,0.71429 0.61247,0 0.91493,-0.32143 0.67213,-0.71429 z m -6.60714,-0.47305 c -0.49107,-0.19815 -1.29465,-0.19815 -1.78572,0 -0.49107,0.19815 -0.0893,0.36028 0.89286,0.36028 0.98214,0 1.38393,-0.16213 0.89286,-0.36028 z m -4.10715,-2.38409 c -0.2428,-0.39286 -0.90462,-0.71428 -1.47072,-0.71428 -0.5661,0 -1.02928,0.32142 -1.02928,0.71428 0,0.39286 0.66183,0.71429 1.47073,0.71429 0.8089,0 1.27207,-0.32143 1.02927,-0.71429 z m 8.21429,0.0136 c 0,-0.94945 -2.93866,-1.62236 -5.44941,-1.24783 -1.78352,0.26605 -1.70722,0.31983 0.58582,0.41292 1.45003,0.0589 2.83508,0.42845 3.07788,0.82131 0.56713,0.91765 1.78571,0.92693 1.78571,0.0136 z m 15,-3.97862 c 0,-0.27259 -0.48214,-0.0955 -1.07143,0.39359 -0.58928,0.48906 -1.07143,1.19423 -1.07143,1.56705 0,0.37281 0.48215,0.1957 1.07143,-0.39358 0.58929,-0.58929 1.07143,-1.29447 1.07143,-1.56706 z m 4.82367,-4.15829 c 1.27802,-1.16067 2.18984,-2.24413 2.02629,-2.40769 -0.16356,-0.16355 -1.69135,1.05432 -3.3951,2.7064 -3.40506,3.3018 -2.33974,3.06931 1.36881,-0.29871 z m -40.07877,-4.37666 c -1.19884,-1.19883 -2.60204,-1.41967 -2.60204,-0.40951 0,0.58014 1.2256,1.13525 3.08673,1.39808 0.3227,0.0456 0.1046,-0.39928 -0.48469,-0.98857 z m 44.79036,-0.42504 c 0.70473,-0.82306 1.15351,-1.62428 0.9973,-1.78049 -0.15621,-0.15621 -0.98067,0.5172 -1.83214,1.49647 -0.85146,0.97927 -1.30025,1.78049 -0.9973,1.78049 0.30295,0 1.12742,-0.67341 1.83214,-1.49647 z m -48.82097,-2.38994 c 0,-0.17325 -0.32143,-0.51365 -0.71429,-0.75645 -0.39286,-0.2428 -0.71429,-0.10105 -0.71429,0.31499 0,0.41604 0.32143,0.75644 0.71429,0.75644 0.39286,0 0.71429,-0.14174 0.71429,-0.31498 z m 53.90405,-3.1494 c -0.40248,-0.42368 -1.7612,0.6501 -1.7612,1.39184 0,0.38516 0.44972,0.28583 0.99939,-0.22072 0.54966,-0.50657 0.89248,-1.03357 0.76181,-1.17112 z m -56.24036,0.88997 c -0.23736,-0.23735 -0.85343,-0.26272 -1.36905,-0.0564 -0.56981,0.22801 -0.40056,0.39727 0.43155,0.43154 0.75297,0.031 1.17485,-0.13781 0.9375,-0.37516 z m -2.66369,-1.7113 c 0,-0.39286 -0.3404,-0.71429 -0.75645,-0.71429 -0.41604,0 -0.55778,0.32143 -0.31498,0.71429 0.2428,0.39285 0.5832,0.71428 0.75644,0.71428 0.17324,0 0.31499,-0.32143 0.31499,-0.71428 z m -3.57143,-2.85715 c -2.31126,-1.80789 -3.51257,-1.83733 -1.73212,-0.0424 0.75624,0.76236 1.85712,1.39807 2.4464,1.41268 0.69467,0.0172 0.44349,-0.46461 -0.71428,-1.37023 z m -16.9433,-1.4569 c -0.20955,-0.8013 -0.5406,-1.2973 -0.73566,-1.10223 -0.38643,0.38642 0.29614,2.55913 0.80396,2.55913 0.17198,0 0.14124,-0.6556 -0.0683,-1.4569 z m 86.53401,-0.34415 c 0.75704,-0.57273 1.18007,-1.23768 0.94008,-1.47767 -0.23999,-0.23999 -1.16106,0.23883 -2.04683,1.06405 -1.82086,1.69639 -0.99618,2.0046 1.10675,0.41362 z m -72.805,-1.05609 c 0.2428,-0.39286 -0.0407,-0.71428 -0.62998,-0.71428 -0.58928,0 -1.27008,0.32142 -1.51288,0.71428 -0.2428,0.39286 0.0407,0.71429 0.62998,0.71429 0.58929,0 1.27008,-0.32143 1.51288,-0.71429 z m 77.82923,-3.92265 c 1.16322,-0.95063 1.90086,-1.9425 1.63919,-2.20416 -0.26165,-0.26167 -1.47918,0.52768 -2.7056,1.7541 -2.63325,2.63325 -1.95517,2.91942 1.06641,0.45006 z m -65.52268,-0.79461 c -0.23736,-0.23735 -0.85343,-0.26272 -1.36905,-0.0564 -0.56981,0.22801 -0.40056,0.39727 0.43155,0.43154 0.75297,0.031 1.17485,-0.1378 0.9375,-0.37515 z m 72.88602,-6.61642 c 1.28447,-1.34633 2.19407,-2.5892 2.02132,-2.76195 -0.33802,-0.33802 -6.85675,6.05556 -6.85675,6.7251 0,0.60195 2.20147,-1.2024 4.83543,-3.96315 z m 12.79537,2.62832 c -0.22802,-0.5698 -0.39727,-0.40055 -0.43155,0.43155 -0.031,0.75298 0.13781,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85342 0.0564,-1.36905 z M 420.3684,444.53351 c 0,-0.36967 -0.26786,-0.67213 -0.59524,-0.67213 -0.32738,0 -0.59524,0.46801 -0.59524,1.04001 0,0.57201 0.26786,0.87446 0.59524,0.67213 0.32738,-0.20233 0.59524,-0.67034 0.59524,-1.04001 z m 48.04931,-1.14066 c -0.4836,-0.19565 -1.44788,-0.20756 -2.14286,-0.0265 -0.69498,0.1811 -0.29931,0.34119 0.87926,0.35575 1.17858,0.0146 1.74719,-0.13362 1.2636,-0.32928 z m -54.22835,-5.62578 c -0.55802,-1.45417 -0.89472,-1.30986 -0.77115,0.33054 0.0571,0.7585 0.34455,1.23035 0.6387,1.04856 0.29415,-0.1818 0.35375,-0.80239 0.13245,-1.3791 z m 114.75047,0.38003 c 0,-0.39286 -0.14174,-0.71429 -0.31499,-0.71429 -0.17324,0 -0.51364,0.32143 -0.75644,0.71429 -0.2428,0.39285 -0.10106,0.71428 0.31499,0.71428 0.41604,0 0.75644,-0.32143 0.75644,-0.71428 z M 322.28491,424.44174 c -0.22802,-0.56981 -0.39727,-0.40056 -0.43155,0.43155 -0.031,0.75297 0.13781,1.17485 0.37516,0.9375 0.23735,-0.23736 0.26273,-0.85343 0.0564,-1.36905 z m 83.78345,-3.81191 c -0.49695,-0.59878 -1.08949,-0.90273 -1.31677,-0.67544 -0.22729,0.22728 0.0596,0.71227 0.6375,1.07775 1.51212,0.95629 1.7097,0.83928 0.67927,-0.40231 z m -11.47377,-5.59653 c -0.16369,-0.14117 -1.2619,-0.47236 -2.44048,-0.73599 -1.56494,-0.35005 -1.8539,-0.28379 -1.07142,0.24572 0.96455,0.65272 4.22867,1.10839 3.5119,0.49027 z m 131.97603,-4.87728 c -0.22801,-0.5698 -0.39727,-0.40055 -0.43154,0.43155 -0.031,0.75298 0.13781,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85342 0.0564,-1.36905 z m -144.77365,-0.18105 c 0,-0.17325 -0.32143,-0.51365 -0.71428,-0.75645 -0.39286,-0.2428 -0.71429,-0.10105 -0.71429,0.31499 0,0.41604 0.32143,0.75644 0.71429,0.75644 0.39285,0 0.71428,-0.14174 0.71428,-0.31498 z m -2.33631,-2.25942 c -0.23735,-0.23735 -0.85342,-0.26273 -1.36905,-0.0564 -0.5698,0.22801 -0.40055,0.39727 0.43155,0.43154 0.75298,0.031 1.17485,-0.13781 0.9375,-0.37516 z m -2.66369,-1.71131 c 0,-0.39286 -0.3404,-0.71429 -0.75644,-0.71429 -0.41604,0 -0.55779,0.32143 -0.31499,0.71429 0.2428,0.39286 0.5832,0.71428 0.75644,0.71428 0.17325,0 0.31499,-0.32142 0.31499,-0.71428 z m -2.85714,-2.85714 c 0,-0.39286 -0.44279,-0.71429 -0.98397,-0.71429 -0.54118,0 -1.38411,-0.48214 -1.87317,-1.07143 -0.48907,-0.58928 -1.18262,-1.07143 -1.54123,-1.07143 -0.35862,0 0.0825,0.78392 0.98031,1.74203 1.68754,1.80092 3.41806,2.36549 3.41806,1.11512 z m 146.91651,-7.99108 c -0.22802,-0.5698 -0.39728,-0.40055 -0.43155,0.43155 -0.031,0.75298 0.13781,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85342 0.0564,-1.36905 z m -157.6308,0.53323 c 0,-0.17324 -0.32143,-0.51364 -0.71428,-0.75644 -0.39286,-0.2428 -0.71429,-0.10106 -0.71429,0.31499 0,0.41604 0.32143,0.75644 0.71429,0.75644 0.39285,0 0.71428,-0.14174 0.71428,-0.31499 z m -2.14285,-1.82787 c 0,-0.39286 -0.32143,-0.71428 -0.71429,-0.71428 -0.39286,0 -0.71429,0.32142 -0.71429,0.71428 0,0.39286 0.32143,0.71429 0.71429,0.71429 0.39286,0 0.71429,-0.32143 0.71429,-0.71429 z m -12.33586,-23.37692 c -0.15463,-1.48198 -0.28373,-0.44451 -0.2869,2.30549 -0.003,2.75 0.12334,3.96253 0.28114,2.69451 0.15779,-1.26803 0.16038,-3.51803 0.006,-5 z m 82.20541,-6.29762 c 0.78863,-0.63878 -5.73863,-1.01733 -6.79638,-0.39415 -1.01826,0.5999 -0.76473,0.67381 1.21254,0.35346 1.90679,-0.30893 2.24576,-0.22152 1.42857,0.36838 -0.8118,0.58601 -0.46563,0.66226 1.42857,0.31468 1.375,-0.25231 2.60202,-0.54138 2.7267,-0.64237 z m 12.68267,-0.0898 c -0.25176,-0.65609 -0.0451,-1.48998 0.4593,-1.8531 0.66216,-0.4767 0.57598,-0.55087 -0.31007,-0.26687 -0.67493,0.21633 -1.41711,0.0859 -1.6493,-0.28976 -0.2322,-0.3757 -0.0282,-0.68309 0.45331,-0.68309 0.48152,0 0.63216,-0.24107 0.33476,-0.53572 -0.2974,-0.29464 -1.2349,-0.53571 -2.08334,-0.53571 -1.02685,0 -1.50986,-0.41535 -1.44467,-1.24231 0.0539,-0.68328 -0.15079,-1.0886 -0.45479,-0.90072 -0.30398,0.18787 -0.92616,-0.1084 -1.3826,-0.65839 -0.56811,-0.68453 -0.59365,-1.14599 -0.0809,-1.46286 0.41194,-0.25459 0.74897,-0.12249 0.74897,0.29355 0,0.41605 0.32143,0.75644 0.71429,0.75644 0.39286,0 0.71428,-0.45348 0.71428,-1.00774 0,-1.05517 -4.3208,-1.02595 -8.92857,0.0604 -1.17857,0.27787 -2.38393,0.44398 -2.67857,0.36914 -0.29464,-0.0748 -0.53571,0.23517 -0.53571,0.68892 0,0.4936 -0.5247,0.35014 -1.30625,-0.35714 -1.7038,-1.54193 -1.9376,-1.4952 -2.08156,0.416 -0.092,1.22132 0.0314,1.35251 0.52344,0.5564 0.35411,-0.57295 0.87362,-0.81194 1.15448,-0.53109 0.65551,0.6555 -1.85473,3.46507 -2.65435,2.97088 -0.33104,-0.20459 -1.49344,0.13616 -2.58311,0.75722 -1.58837,0.90531 -1.66255,1.04368 -0.37408,0.69784 2.05956,-0.5528 2.10143,0.24237 0.0526,1.00026 l -1.55447,0.57503 1.55546,0.40676 c 0.99925,0.26131 1.38735,0.13477 1.08534,-0.35389 -0.32541,-0.52652 1.15809,-0.62416 4.81944,-0.3172 3.44048,0.28843 4.91537,0.20691 4.21913,-0.23322 -0.82606,-0.5222 -0.62199,-0.67918 0.89386,-0.68762 1.08036,-0.006 2.5692,0.59398 3.30855,1.33333 0.83642,0.83642 1.69863,1.12524 2.28228,0.76452 0.53752,-0.3322 1.7172,-0.15592 2.76288,0.41286 2.6154,1.42258 4.59373,1.35215 4.01995,-0.14311 z m -9.17425,-0.66723 c -0.23735,-0.23735 -0.85342,-0.26272 -1.36905,-0.0564 -0.5698,0.22802 -0.40055,0.39727 0.43155,0.43155 0.75298,0.031 1.17485,-0.13781 0.9375,-0.37516 z m -70.92733,-26.07688 c -0.26994,-0.43678 -0.0478,-1.10411 0.49356,-1.48295 0.8091,-0.56616 0.79359,-0.63679 -0.0871,-0.39667 -1.26727,0.34555 -1.89815,2.67377 -0.72451,2.67377 0.44485,0 0.58795,-0.35737 0.31801,-0.79415 z m 31.12078,-7.77728 c 0,-0.39286 -0.14174,-0.71429 -0.31498,-0.71429 -0.17324,0 -0.51364,0.32143 -0.75644,0.71429 -0.2428,0.39285 -0.10106,0.71428 0.31498,0.71428 0.41604,0 0.75644,-0.32143 0.75644,-0.71428 z m 1.42858,-4.28572 c 0,-0.39285 -0.14175,-0.71428 -0.31499,-0.71428 -0.17324,0 -0.51364,0.32143 -0.75644,0.71428 -0.2428,0.39286 -0.10106,0.71429 0.31498,0.71429 0.41605,0 0.75645,-0.32143 0.75645,-0.71429 z"
id="path864"
transform="scale(0.26458333)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 107.61894,35.215274 c -1.37586,3.92864 -1.71946,4.193469 -5.97169,4.94942 -4.252237,0.755952 -6.113769,2.830097 -9.61005,6.231882 -3.496278,3.401788 -9.827378,13.418156 -10.29985,20.032739 -0.472469,6.614583 -0.07455,13.004803 -0.924997,15.650637 -0.850445,2.645833 -3.799705,11.658141 -4.272177,16.855314 -0.472469,5.197174 0.175558,20.966214 -0.580393,23.234074 -0.755955,2.26786 -2.632402,7.19301 -2.632402,10.5003 0,3.30729 0.944941,6.14211 2.456844,7.18155 1.511906,1.03943 4.535715,4.63021 5.291666,3.77976 0.755952,-0.85045 -3.685267,-4.63021 -4.063243,-6.52009 -0.377976,-1.88988 -0.944941,-6.14211 0.377976,-6.14211 1.322917,0 0.566965,2.45685 1.322917,4.25223 0.755951,1.79539 0.566965,4.53572 1.606399,3.96875 1.039434,-0.56696 -0.188989,-4.25223 0.377976,-5.57515 0.566965,-1.32292 1.439164,-1.99502 1.984375,-3.87426 0.545211,-1.87923 -2.033014,-6.35877 -2.127507,-7.96517 -0.09449,-1.6064 12.987198,-34.436289 12.987198,-34.436289"
id="path910"
sodipodi:nodetypes="cssssssssssssssssc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 80.832327,137.32642 c 0.835218,0.93545 3.307461,4.00904 2.956668,4.32643 -0.35079,0.31738 -3.157119,-1.78737 -3.374276,-2.20498 -0.217157,-0.4176 -0.233863,-0.4176 -0.233863,-0.4176"
id="path912" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 77.257597,133.75169 c 0.217157,0.85193 1.41987,3.85871 1.854181,4.29302 0.434314,0.43431 3.591436,3.72507 3.775184,4.49347 0.183748,0.7684 -0.283975,0.96885 -0.584653,0.91874 -0.300678,-0.0501 -1.503391,-1.05238 -1.503391,-1.05238"
id="path914" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 93.832589,56.64918 c 2.078868,1.181177 1.438303,5.070863 1.705639,7.010367 0.34742,2.520497 -0.525984,6.79683 -0.378071,10.046901 0.108682,2.38806 0.08984,6.103224 -0.618863,9.03254 -0.708705,2.929313 -1.737601,14.959152 -2.419693,17.583212 -0.803198,3.08996 -1.185255,10.20295 -1.576988,15.32244 -0.368488,4.81572 -1.104737,12.34503 -0.726758,14.47115 0.377976,2.12611 0.934515,15.03736 1.521237,18.94188 0.568386,3.7825 2.351754,21.03161 3.202202,22.92149 0.850447,1.88989 0.127566,5.32947 0.316556,7.03036 0.188986,1.70089 1.431583,10.12031 1.242596,12.15194 -0.188989,2.03162 -0.803201,11.71726 -0.236236,14.74107 0.566966,3.02381 10.94241,40.32061 11.50937,41.73802 0.56697,1.41741 1.37017,3.50573 1.32292,4.26168 -0.0473,0.75595 1.80484,5.92478 1.19063,7.20045 -0.61421,1.27567 -3.52367,12.28784 -3.34509,13.60714 0.4094,3.02448 7.91183,5.6088 10.45238,5.16676 2.54056,-0.44204 8.15349,-2.12405 8.0212,-5.403 -0.0628,-1.55787 -6.18936,-14.07961 -6.42559,-15.7805 -0.23624,-1.7009 -1.79539,-6.66183 -1.84264,-7.60677 -0.0472,-0.94494 -0.56696,-41.67188 -0.66145,-43.56176 -0.0945,-1.88988 0.0472,-5.33891 -0.8032,-7.37054 -0.85045,-2.03162 -0.66146,-2.26785 -0.66146,-2.26785 0,0 -0.34018,-11.32983 0.17954,-12.65275 0.51972,-1.32292 0.009,-6.86027 0.0567,-9.88408 0.0472,-3.02381 0.17543,-33.42143 -0.29709,-36.49248 -0.47247,-3.07106 -0.48365,-10.82701 -1.10148,-10.85849 -3.53567,-0.18018 -1.21358,-3.77798 -9.13049,-3.46085"
id="path916"
sodipodi:nodetypes="cssssasssssssssssssssccsscsc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 125.55234,123.24481 c -1.70089,-0.0473 -5.24914,-0.90714 -6.99729,-0.34018 -1.74813,0.56697 -2.68835,3.41124 -4.95621,3.03326"
id="path918"
sodipodi:nodetypes="csc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 133.96885,53.721174 c -0.80181,2.806329 -0.80181,9.68852 -0.53454,12.294399 0.26727,2.605878 0.20249,7.850358 0.13364,10.089425 -0.0729,2.369666 0.13917,7.210232 0.94098,10.551102 0.8018,3.34087 1.5936,11.634732 1.92654,15.10356 0.29974,3.12292 0.17647,9.64688 0.34179,15.22822 0.14027,4.73564 -0.94331,14.03134 -1.18385,19.06269 -0.23528,4.92122 -0.95636,34.06648 -2.15907,37.87507 -1.20271,3.80859 -1.98353,14.61202 -2.3925,17.20783 -0.31197,1.9801 -0.0797,4.10692 0.38798,9.71958 0.46772,5.61266 1.87088,8.75307 -0.46772,15.83572 -2.33861,7.08264 -4.63713,24.33489 -4.9044,27.00758 -0.26727,2.6727 -1.88425,5.8532 -0.34744,8.9268 1.5368,3.0736 1.76397,6.52139 0.76171,9.59498 -1.00226,3.07361 -4.19613,4.04914 -4.19613,4.04914"
id="path920"
sodipodi:nodetypes="csssssssssssssc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 131.20449,187.8653 c -0.53454,2.53906 -3.44966,8.11008 -3.31602,9.98096"
id="path922"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 119.18303,35.607423 c 0.0164,2.625039 -0.55045,0.693889 1.1868,2.030238 1.73725,1.336347 3.00678,2.405425 6.21401,2.204974 3.20724,-0.200453 5.98184,0.648698 9.2559,3.120941 3.27405,2.472242 9.68852,11.158503 10.55714,16.437075 0.86863,5.278575 2.73952,15.641951 3.60814,17.713289 0.86863,2.071338 1.87089,7.543682 2.73951,10.550465 0.86863,3.006781 6.00282,25.998005 6.87145,27.601625 0.86862,1.60361 1.81481,5.67343 3.81933,7.14341 2.00453,1.46999 2.93997,3.60814 4.07586,4.34313 1.1359,0.73499 3.67496,1.5368 3.14042,2.20497 -0.53454,0.66818 -3.67496,-0.26726 -4.47676,-0.8018 -0.80181,-0.53454 -6.41447,-4.67722 -8.15172,-4.6104 -1.73726,0.0668 0.33408,2.40542 1.00226,3.94222 0.66817,1.5368 1.40316,5.61266 0.26727,5.7463 -1.1359,0.13363 -1.46999,-3.80859 -2.27179,-5.34539 -0.80181,-1.5368 -2.60588,-2.53906 -2.40543,-4.54358 0.20045,-2.00452 -0.45295,-3.957 -1.38841,-5.4938 -0.93545,-1.5368 -10.97283,-20.097262 -11.97509,-24.106303 -1.00226,-4.009043 -3.26263,-11.23741 -4.33171,-12.506939 -1.06908,-1.269531 -1.01368,-5.13285 -3.4191,-6.602833"
id="path924"
sodipodi:nodetypes="csssssssssssssssssssc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 157.95629,125.21577 c 1.80407,1.00226 3.34087,2.87315 4.74403,5.47903 1.40317,2.60587 2.6727,4.87767 3.34087,4.20949 0.66818,-0.66817 -1.06908,-3.60814 -1.80407,-5.0113"
id="path926" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 161.16352,125.88395 c 0.66818,1.00226 2.00451,2.93996 3.0736,4.00904 1.06908,1.06908 2.80633,5.0113 3.80859,4.87767 1.00227,-0.13364 -0.13363,-3.14042 -0.66817,-3.67496"
id="path928" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 162.83396,125.95076 c 0.86862,1.67044 3.14041,4.34313 4.54358,5.14494 1.40316,0.80181 2.40543,2.60588 3.20723,2.07134 0.80181,-0.53454 -2.13815,-3.27405 -2.80633,-4.14268"
id="path930" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 80.915848,133 c 0.701582,2.67269 1.703845,5.07812 2.204974,5.54584 0.501131,0.46772 0.03341,1.30294 -0.400905,0.96885"
id="path932" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Layer 3"
style="display:inline">
<path
style="display:inline;fill:#ffe6d5;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 96.751567,59.467469 c -0.440993,1.583572 -0.389201,1.210853 -0.447674,2.245063 -0.107896,1.908377 3.832607,1.989766 6.661697,2.057976 2.49159,0.06007 7.00602,-0.400311 8.35884,-1.095804 2.22458,-1.143667 2.09139,-2.351973 1.22277,-3.821955"
id="path934"
sodipodi:nodetypes="csssc" />
<path
style="display:inline;fill:#ffe6d5;fill-opacity:1;stroke:#000000;stroke-width:0.263691px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 133.41228,58.106342 c -0.1801,2.378699 -0.1587,3.330343 -1.54465,3.695001 -1.39221,0.366302 0.0518,0.68822 -3.8639,1.356393 -3.91568,0.668173 -10.67353,-0.07731 -11.53979,-0.721627 -0.91355,-0.679492 -0.34642,-1.977795 0.51635,-3.447777"
id="path934-7"
sodipodi:nodetypes="csssc" />
</g>
</svg>
</div>
</html><html>
<div style="display:none">
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="210px"
height="297px"
viewBox="0 0 210 297"
version="1.1"
id="svg_female"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="female.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="948.6841"
inkscape:cy="237.36308"
inkscape:document-units="mm"
inkscape:current-layer="layer4"
inkscape:document-rotation="0"
showgrid="false"
inkscape:window-width="2560"
inkscape:window-height="1356"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Layer 4">
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.714286"
d="m 408.2187,129.55161 c -2.4732,11.53631 -5.09227,24.13456 -14.5452,32.12193 -7.23316,6.48258 -19.76721,6.72845 -28.69915,10.75337 -13.14508,4.11964 -33.62431,18.90499 -40.70149,27.89967 -12.97062,17.65405 -9.61114,23.37089 -14.54746,44.85143 -3.74776,21.93778 3.3169,43.82345 3.5505,65.625 -1.50247,8.22164 -6.23877,15.52548 -9.44427,23.17643 -7.09072,15.06394 -15.60899,30.56198 -14.67017,47.7778 -0.0664,27.03368 0.21273,50.81858 -0.81482,77.72338 -5.4719,12.82487 -10.22163,28.3364 -11.27003,42.59418 0.11562,10.58307 2.8181,22.43907 12.04917,28.83324 5.18557,4.10446 9.55805,9.78953 15.6889,12.45495 3.42373,-0.39176 0.79822,-4.57706 -0.41155,-6.01422 -5.61108,-8.1502 -14.2783,-15.45511 -14.27238,-26.18375 -0.0931,-4.99458 -1.31281,-10.71754 0.99113,-15.31039 2.34662,-2.09756 4.36433,0.68136 4.13923,3.02176 0.95212,8.25044 2.89414,16.26981 5.43388,24.07087 0.30989,2.41382 4.25808,3.54058 4.35267,0.45898 0.83637,-6.18212 -1.23959,-12.78995 0.25819,-18.66633 3.3548,-6.58148 9.64175,-13.89708 6.19829,-21.74522 -2.6488,-8.13872 -5.92958,-14.71397 -7.12585,-23.27003 2.33339,-12.12107 7.86363,-22.72218 11.81614,-34.29274 0.30341,-2.90522 0.28127,-1.7285 -0.0718,0.76698 -1.96245,20.28679 -3.58352,40.71434 -3.01465,61.10297 2.52358,22.15547 5.74678,44.37136 12.85397,65.59259 9.95122,31.40819 19.49983,62.96641 30.34159,94.07947 3.10957,9.13506 9.66854,16.84849 11.81189,26.26769 -0.20849,19.44814 -4.51431,38.82237 -5.54585,58.34224 -1.12572,15.78134 -1.62567,31.73708 -0.39372,47.47643 19.2692,55.94423 41.33923,110.87226 61.8687,166.35068 1.9276,10.42229 0.71086,21.14643 1.25697,31.70622 -8.1957,17.29843 -17.68883,34.19941 -23.14872,52.63111 3.74502,10.3287 12.10201,12.7587 19.14538,16.6965 7.77074,3.6985 17.57424,6.3792 26.24943,2.2753 24.15348,-5.6237 18.78701,-8.7959 23.79325,-16.2318 2.95652,-4.6927 -1.75372,-9.8106 -2.84051,-14.3555 -2.21762,-6.173 -5.62645,-11.7634 -7.80402,-17.9255 2.8536,4.5852 3.14697,-4.1219 3.85285,-6.24518 1.97266,-10.98736 8.15522,-22.48143 3.33186,-33.63765 -3.72412,-9.84264 -10.88878,-19.1255 -9.30674,-30.25157 0.83098,-16.3805 8.34151,-31.66328 13.36375,-47.15743 8.61949,-24.88928 19.13693,-49.21105 25.90253,-74.71291 4.51943,-18.20154 0.35492,-36.98428 -2.05787,-55.16894 -1.36327,-7.85587 -4.71735,-15.3029 -8.15418,-22.38268 -2.22253,-0.40612 -2.32848,0.84368 -1.44791,-2.3167 1.14784,-5.47547 4.34955,-10.23477 5.24975,-15.83887 6.26256,-25.13567 11.32646,-50.56446 18.37618,-75.50633 10.48703,-39.50022 19.47878,-79.4585 31.29905,-118.55795 3.05652,-6.44492 2.73813,-13.42781 2.59683,-20.37222 0.3623,-20.1658 -4.54383,-39.91068 -7.60678,-59.72425 -3.82544,-21.41922 -9.29265,-42.81315 -19.77153,-62.03496 -7.40414,-16.71286 -25.40909,-31.42071 -29.43173,-49.28712 -2.07277,-11.78196 13.66658,-25.79967 17.03915,-36.83872 0.63958,-8.08872 0.63958,-8.08872 11.2583,2.9846 5.03034,7.15832 9.88048,14.77897 10.85221,23.71905 3.09641,13.02178 4.78477,26.46432 8.29093,39.33144 14.01727,30.34514 34.43537,57.17598 50.84159,86.07848 3.00168,9.02751 -1.8435,18.48208 -0.52595,27.72181 2.96646,7.19079 9.73582,12.32552 11.01238,20.31977 1.71081,4.23245 1.95946,9.73581 5.46781,12.91265 3.64105,0.22895 2.2405,-5.10708 2.57254,-7.34235 0.59191,-8.70232 -3.6821,-16.44076 -7.80273,-23.73745 -1.6344,-1.89468 -1.18278,-5.77728 2.02567,-4.7726 13.36096,3.26067 23.10732,14.12362 35.61663,19.27595 3.56763,0.70109 8.17623,3.02223 11.48577,0.70173 0.79726,-3.12801 -4.09144,-3.66431 -5.86356,-5.2553 -5.8885,-2.28065 -10.15278,-6.89978 -13.82953,-11.8457 -7.18621,-8.01046 -15.92386,-14.64543 -21.19376,-24.26701 -8.03079,-11.79692 -8.63086,-26.57818 -11.95723,-40.08482 -5.08158,-24.86793 -9.1821,-49.98158 -14.98935,-74.69672 -4.295,-14.03516 -14.54657,-25.28486 -19.36942,-39.01646 -2.59631,-17.9829 -1.77613,-36.31011 -3.1529,-54.4322 -0.35834,-12.71985 -3.80046,-25.2321 -10.41168,-36.13885 -8.77792,-14.98409 -15.04283,-21.06469 -28.9304,-31.75736 -8.57765,-6.11158 -21.22871,-7.9198 -31.07787,-6.86581 -7.66239,0.43652 -18.27475,-4.92773 -24.75723,-9.92827 -4.43568,-2.79958 -9.66146,-6.65509 -8.91322,-12.62416 -0.5789,-3.47087 0.87884,-7.77302 -0.9947,-10.80497 -3.85963,0.81363 -6.50375,4.87734 -10.35016,6.19001 -10.14511,4.83693 -21.03151,-1.44283 -29.54103,-6.79966 -0.70434,-0.3266 -1.06856,-0.0175 -1.476,0.51199 z m -76.8178,250.21066 c -1.26248,2.0992 -3.04295,5.15497 -0.75753,1.15792 0.12159,-0.25024 2.01992,-3.15731 0.75753,-1.15792 z m 74.86468,46.65457 c 2.41155,1.85159 -0.54778,-0.41359 0,0 z m 21.49693,23.11385 c 1.04219,1.65644 3.92799,0.67395 1.58064,2.25865 -0.16958,3.63517 -0.93963,-2.01379 -1.58064,-2.25865 z m 4.04297,219.44475 c -0.36545,1.67691 -1.92908,6.6174 -0.75358,2.66567 0.19435,-0.63894 0.70127,-2.51017 0.75358,-2.66567 z"
id="path959"
sodipodi:nodetypes="scccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccssccccccccccc"
transform="scale(0.26458333)" />
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.714286"
d="m 433.07501,29.080073 c -9.96609,0.845559 -20.41674,4.033509 -27.91992,10.880301 -7.00747,9.043152 -7.76706,21.120239 -9.49777,32.035436 -1.20046,13.278566 -2.78662,26.998948 0.29436,40.12416 3.57391,10.35942 13.20815,17.27185 22.54185,22.18052 6.96615,3.70896 15.92375,5.37678 22.78181,0.46597 9.47961,-6.6445 17.85089,-15.11759 24.38059,-24.68332 5.77706,-9.10715 2.47899,-20.386954 0.98862,-30.238091 -3.40212,-14.966676 -7.06937,-30.406771 -15.31619,-43.543993 -4.02558,-5.798592 -11.58162,-7.54973 -18.25335,-7.220983 z"
id="path961"
transform="scale(0.26458333)" />
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.714286"
d="m 596.84872,466.70703 c -3.33986,0.98729 -2.01527,6.94698 1.26117,7.19447 11.52812,7.974 16.74482,21.24069 24.19084,32.55023 0.9835,1.7062 4.40919,5.68012 5.80637,2.33119 -0.3219,-6.51861 -4.68774,-12.13873 -7.69152,-17.7242 -2.1239,-3.22854 2.57359,3.36282 3.52857,4.71918 3.47415,4.38912 5.92822,9.97746 10.29018,13.48912 3.81689,0.15187 2.23767,-5.23675 1.51227,-7.3884 -2.62059,-7.98045 -10.94511,-12.0429 -15.3962,-18.79464 -3.52511,-5.27959 -7.82224,-10.16719 -13.81976,-12.66881 -3.09078,-1.46367 -6.21793,-3.38548 -9.68192,-3.70814 z"
id="path963"
transform="scale(0.26458333)" />
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.714286"
d="m 618.7879,478.48716 c -2.59073,1.7567 1.65403,4.61915 2.62863,6.36284 5.89517,7.06556 13.36874,12.55528 20.55217,18.19492 1.58992,1.76396 4.75158,0.0883 3.14314,-2.08287 -4.09398,-5.90775 -8.84085,-11.86455 -15,-15.6808 -4.02545,-1.79574 -7.21147,-5.33717 -11.32394,-6.79409 z"
id="path965"
transform="scale(0.26458333)" />
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.714286"
d="m 292.6802,494.97154 c -4.08824,1.45043 -2.95039,7.1429 -3.24917,10.57756 0.0989,7.79702 1.47517,16.00901 7.14309,21.83331 4.53836,5.16525 8.30446,11.954 14.80585,14.79197 3.57389,-0.30049 1.39725,-4.96374 -0.15764,-6.43555 -2.79146,-4.3216 -6.44973,-7.92917 -10.24693,-11.26255 -1.53465,-1.80807 -3.78679,-5.98809 -3.85603,-6.82757 3.25393,1.06218 1.45514,-3.59042 0.89286,-5.13114 -2.20813,-5.44023 -0.84704,-12.02644 -3.93834,-17.06752 -0.37361,-0.34092 -0.88671,-0.53227 -1.39369,-0.47851 z"
id="path967"
transform="scale(0.26458333)" />
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.714286"
d="m 305.06999,505.33705 c -1.93589,2.51607 -0.13482,6.49685 -0.36133,9.49079 0.60871,5.13949 4.56286,9.4036 8.41936,12.51395 3.25829,-0.18997 0.31501,-4.46234 -0.27902,-6.10909 -3.04207,-4.93288 -3.95097,-10.98489 -6.92522,-15.83008 -0.25203,-0.14015 -0.57527,-0.074 -0.85379,-0.0656 z"
id="path969"
transform="scale(0.26458333)" />
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.714286"
d="m 305.3797,520.46121 c -1.00714,3.24536 -1.98859,7.91294 1.89453,9.75028 2.6529,1.45383 5.05492,4.43855 8.20173,4.51172 1.76485,-2.39375 -2.31299,-4.9158 -3.09431,-7.10938 -2.05252,-2.49012 -3.62649,-5.63612 -6.21931,-7.5265 l -0.64452,0.3079 z"
id="path971"
transform="scale(0.26458333)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 110.7164,102.69832 c 1.33635,-1.26954 3.0736,-1.26954 5.07812,-0.46773"
id="path973" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 108.91233,38.820899 c 1.40317,2.539061 2.07134,3.207234 2.20497,4.142677"
id="path975" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 116.8636,38.286359 c -0.53454,1.469982 -1.73725,2.873147 -1.46998,3.808592"
id="path977" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 101.36197,46.17081 c 3.27405,-1.670434 3.94222,-2.539061 5.47902,-1.937703"
id="path979" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 123.94624,44.567194 c -2.33861,-1.069078 -3.67495,-1.670436 -5.0113,-1.403165"
id="path981" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 111.31776,45.302185 c 0.93544,0.668174 3.60813,0.400905 4.40994,0.06682"
id="path983" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 101.00469,184.01771 c 0.85989,3.37343 0.92604,5.29166 0.39687,5.88698"
id="path985" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 125.80937,196.78385 c 0.8599,3.43958 0.99219,5.09323 0.1323,6.48229"
id="path989" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Layer 2"
style="display:inline">
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 114.29055,36.521948 c -3.35454,-0.04725 -9.07143,-3.827008 -9.68564,-7.323288 -0.61421,-3.496279 -0.28348,-16.961681 3.2128,-19.229538 3.49628,-2.2678572 8.36272,-3.2600447 10.96131,-1.0866815 2.59858,2.1733625 6.80357,16.8199405 4.67745,19.9382435 -2.12611,3.118305 -6.14211,7.606771 -9.16592,7.701264 z"
id="path848" />
<path
style="fill:none;fill-opacity:1;stroke-width:0.714286"
d="m 442.18364,1050.2422 c 0.25904,-0.4192 0.0369,-0.7025 -0.49356,-0.6297 -2.04808,0.2812 -2.65832,-0.088 -2.396,-1.4504 0.14972,-0.7774 -0.0791,-1.6306 -0.50852,-1.8961 -0.46806,-0.2893 -0.57662,-0.1522 -0.27108,0.3422 0.28031,0.4535 0.18823,0.8246 -0.20463,0.8246 -0.39286,0 -0.92101,-0.3345 -1.17369,-0.7433 -0.25268,-0.4088 -1.0732,-0.5485 -1.82337,-0.3105 -1.07193,0.3402 -1.26343,0.171 -0.89437,-0.7908 0.39174,-1.0209 0.14037,-1.1608 -1.51622,-0.8442 -1.33124,0.2545 -2.39524,-0.03 -3.22786,-0.8624 -0.68312,-0.6831 -2.1205,-1.4625 -3.19417,-1.732 -1.5,-0.3764 -1.77353,-0.7051 -1.18101,-1.4191 0.89661,-1.0803 0.31751,-1.8907 -1.29981,-1.8189 -0.83179,0.037 -0.75306,0.2126 0.29762,0.6641 1.26589,0.544 1.20489,0.6195 -0.53571,0.664 -1.08036,0.028 -1.96429,-0.2902 -1.96429,-0.7062 0,-0.416 -0.32143,-0.5578 -0.71428,-0.315 -0.39286,0.2428 -0.71429,0.1011 -0.71429,-0.315 0,-0.416 -0.50111,-0.7564 -1.11359,-0.7564 -0.61247,0 -0.91352,-0.3237 -0.669,-0.7194 0.2445,-0.3955 -0.0561,-0.9114 -0.66803,-1.1462 -0.61194,-0.2348 -0.97452,-0.6503 -0.80577,-0.9234 0.16877,-0.2731 -0.31522,-0.885 -1.07552,-1.3598 -0.83482,-0.5213 -1.38238,-0.578 -1.38238,-0.143 0,0.3962 0.3404,0.7204 0.75645,0.7204 0.41604,0 0.56185,0.3148 0.32403,0.6996 -0.27366,0.4428 -0.92779,0.3903 -1.78168,-0.1429 -0.74208,-0.4635 -1.15966,-1.1494 -0.92795,-1.5244 0.23173,-0.3749 0.0746,-0.4673 -0.3492,-0.2054 -0.42377,0.2619 -2.2171,-0.293 -3.98515,-1.2331 -3.06625,-1.6303 -3.14295,-1.7463 -1.66129,-2.5124 l 1.55337,-0.8032 -1.60715,0.409 c -2.00892,0.5113 -2.00701,0.4821 0.2851,-4.3589 1.38407,-2.9232 2.07097,-3.7437 2.55777,-3.0553 0.44254,0.6259 0.51692,0.263 0.22199,-1.0829 -0.31249,-1.4261 -0.20144,-1.8745 0.37589,-1.5177 0.55887,0.3454 0.67477,0.051 0.36449,-0.927 -0.29907,-0.9423 -0.082,-1.5765 0.6336,-1.8511 0.5987,-0.2298 1.03949,-0.991 0.97953,-1.6917 -0.2468,-2.8846 0.1184,-3.6918 1.54592,-3.4169 1.54998,0.2985 1.75796,-0.1596 0.7763,-1.7098 -0.75211,-1.1878 0.49029,-5.2604 1.42796,-4.6808 0.35008,0.2163 0.42486,-0.1582 0.16617,-0.8324 -0.33727,-0.8789 -0.21227,-1.0662 0.44185,-0.6619 0.68348,0.4224 0.78428,0.1607 0.402,-1.0437 -0.34482,-1.0865 -0.25652,-1.4507 0.27244,-1.1238 0.46162,0.2853 0.63368,0.096 0.41949,-0.4626 -0.19973,-0.5205 0.61364,-2.48655 1.80748,-4.36905 1.19384,-1.88249 1.97161,-3.74472 1.72837,-4.13829 -0.24325,-0.39357 0.15243,-1.20018 0.87927,-1.79246 0.72684,-0.59228 0.86512,-0.83959 0.30728,-0.54958 -0.75343,0.3917 -0.89119,0.20662 -0.53571,-0.71974 0.26319,-0.68586 0.48345,-1.62252 0.48946,-2.08146 0.006,-0.49065 0.32,-0.39301 0.76108,0.23699 0.58873,0.84088 0.65385,0.72871 0.30264,-0.5213 -0.24612,-0.876 -0.11623,-2.16171 0.28864,-2.85714 0.57739,-0.99177 0.74549,-1.03339 0.77956,-0.19299 0.0341,0.8404 0.20218,0.79879 0.77957,-0.19298 0.40487,-0.69543 0.53415,-1.90079 0.28729,-2.67858 -0.25596,-0.80643 -0.12119,-1.41415 0.31358,-1.41415 0.41934,0 0.72436,-0.24107 0.67784,-0.53572 -0.0465,-0.29464 -0.0368,-1.17857 0.0217,-1.96428 0.0983,-1.3213 0.16121,-1.33428 0.83753,-0.17292 0.40217,0.69062 0.50158,1.6549 0.22091,2.14286 -0.29613,0.51482 -0.23741,0.63747 0.1399,0.29221 0.87522,-0.80085 0.89897,-4.06517 0.0257,-3.52544 -0.4073,0.25172 -0.48702,-0.10176 -0.19474,-0.86343 0.41835,-1.09018 0.32665,-1.15001 -0.5929,-0.38685 -0.92607,0.76857 -1.08778,0.63057 -1.08778,-0.92825 0,-1.00705 -0.34334,-2.04321 -0.76298,-2.30256 -0.41964,-0.25936 -0.59841,-0.90042 -0.39727,-1.42458 0.20114,-0.52417 0.0202,-1.06819 -0.40199,-1.20894 -0.93842,-0.3128 -0.89854,-6.05004 0.0596,-8.57003 0.38346,-1.00857 0.52892,-2.00203 0.32325,-2.20769 -0.20566,-0.20568 0.0343,-2.24765 0.53327,-4.53773 0.49897,-2.29009 0.83438,-4.56558 0.74537,-5.05665 -0.089,-0.49107 0.1436,-0.89286 0.5169,-0.89286 0.3733,0 0.51156,-0.63924 0.30725,-1.42054 -0.20432,-0.7813 -0.65637,-1.24447 -1.00456,-1.02927 -0.34819,0.2152 -0.63308,-0.0495 -0.63308,-0.58815 0,-0.53869 -0.6328,-2.28918 -1.40622,-3.88998 -0.93683,-1.939 -1.29842,-3.83161 -1.08325,-5.66987 0.29961,-2.55967 0.2463,-2.659 -0.73664,-1.37281 -0.79196,1.0363 -1.08632,1.12651 -1.16536,0.35714 -0.0582,-0.56616 -0.17129,-1.51152 -0.25139,-2.10081 -0.0801,-0.58928 -0.19322,-1.6529 -0.25138,-2.36358 -0.0581,-0.71069 -0.38657,-1.1186 -0.72979,-0.90649 -0.34321,0.21212 -1.42629,-1.86513 -2.40683,-4.61612 -0.98055,-2.75098 -1.52763,-5.15951 -1.21575,-5.35226 0.31189,-0.19275 0.70524,0.0553 0.87412,0.55114 0.16888,0.49588 0.17047,0.098 0.004,-0.88411 -0.16695,-0.98215 -0.62128,-2.10715 -1.00961,-2.5 -0.46665,-0.47209 -0.55084,-0.22989 -0.24829,0.71428 l 0.45777,1.42857 -1.16075,-1.42857 c -0.63842,-0.78571 -1.3281,-2.23214 -1.53263,-3.21428 -0.20452,-0.98215 -0.97752,-3.05853 -1.71776,-4.61418 -0.99341,-2.0877 -1.14183,-3.07433 -0.56676,-3.76726 0.42853,-0.51634 0.57263,-1.14532 0.32021,-1.39773 -0.25241,-0.25241 -0.45893,-0.065 -0.45893,0.41656 0,0.48152 -0.29125,0.69548 -0.64723,0.47548 -0.35597,-0.22001 -0.51312,-1.1229 -0.34922,-2.00645 0.1639,-0.88353 0.0907,-1.15587 -0.16271,-0.60518 -0.38762,0.84241 -7.38343,-16.16648 -7.40539,-18.00472 -0.004,-0.3162 -0.68785,-2.06972 -1.52015,-3.89673 -0.83229,-1.82701 -1.55367,-4.13973 -1.60305,-5.13939 -0.0494,-0.99965 -0.46165,-2.13898 -0.91614,-2.53183 -1.0742,-0.92853 -8.84008,-21.26287 -8.77447,-22.97527 0.0456,-1.19017 0.10654,-1.17933 0.66408,0.11812 0.56083,1.30514 0.61821,1.31479 0.66408,0.1117 0.0276,-0.72427 -0.54219,-1.47178 -1.26623,-1.66112 -0.94925,-0.24824 -2.59026,-3.66633 -5.88335,-12.25456 -2.51186,-6.55067 -4.57617,-12.07102 -4.58742,-12.26744 -0.0112,-0.19643 -0.27556,-0.75893 -0.58738,-1.25 -0.31181,-0.49108 -0.36827,-1.21429 -0.12547,-1.60715 0.2428,-0.39285 0.14024,-0.71428 -0.2279,-0.71428 -0.88504,0 -3.96398,-8.2818 -3.41136,-9.17596 0.59496,-0.96268 -0.29235,-3.04934 -1.08765,-2.55781 -0.35676,0.22049 -0.56415,-0.66529 -0.46087,-1.96839 0.14269,-1.80034 -0.0772,-2.32695 -0.91575,-2.19302 -1.61062,0.25723 -5.34787,-11.34589 -4.29067,-13.32131 0.93668,-1.75019 0.94442,-2.21208 0.0371,-2.21208 -0.39285,0 -0.71428,0.53571 -0.71428,1.19047 0,1.50413 -0.59678,0.9522 -0.94797,-0.8767 -0.14629,-0.76186 -0.47317,-1.86735 -0.7264,-2.45663 -0.87578,-2.03803 -1.71286,-14.69102 -1.77206,-26.78572 -0.0782,-15.98647 1.84418,-50.4199 3.18563,-57.05938 0.31824,-1.57514 0.57678,-1.82708 1.09951,-1.07143 0.46486,0.67199 0.50982,0.41684 0.14059,-0.79776 -0.64121,-2.10928 -0.39764,-8.73891 0.34066,-9.27203 0.28245,-0.20395 0.55201,-1.1744 0.59902,-2.15654 0.95093,-19.86643 0.97769,-19.14809 -0.89877,-24.13338 -0.98217,-2.60938 -3.29929,-7.48792 -5.14916,-10.84119 -4.20879,-7.62932 -5.25454,-10.00365 -4.75907,-10.80533 0.21493,-0.34777 -0.11052,-0.43993 -0.72323,-0.20482 -0.78151,0.29989 -1.0786,0.0309 -0.99536,-0.90104 0.26457,-2.96189 -0.0742,-4.03123 -1.02667,-3.24075 -0.7167,0.59481 -1.35992,-0.47831 -2.92225,-4.8754 -1.1018,-3.10095 -1.81125,-5.94877 -1.57656,-6.32851 0.23469,-0.37973 0.0965,-0.8005 -0.30717,-0.93505 -0.40364,-0.13454 -0.80742,-1.28636 -0.89731,-2.55959 -0.0899,-1.27322 -0.3458,-2.3156 -0.5687,-2.31637 -0.2229,-7.2e-4 -0.96064,-1.76327 -1.63943,-3.91663 -0.89489,-2.8389 -1.03416,-4.2889 -0.50663,-5.2746 0.57796,-1.07993 0.49276,-1.33966 -0.41443,-1.26337 -1.05363,0.0886 -1.73614,-1.21123 -3.39377,-6.4634 -0.43022,-1.36314 -0.19582,-1.5879 1.86225,-1.78571 l 2.35442,-0.22629 v -5.71428 -5.71429 l -2.14286,-0.23353 c -1.17857,-0.12845 -2.44821,-0.53023 -2.82143,-0.89286 -0.37321,-0.36263 -1.35458,-0.65932 -2.18083,-0.65932 -1.23041,0 -1.79373,-0.90498 -3.11295,-5.00103 -0.88588,-2.75056 -1.38218,-5.37075 -1.1029,-5.82264 0.27929,-0.4519 -0.0489,-1.22866 -0.72922,-1.72615 -0.99202,-0.72538 -1.08109,-1.19588 -0.44974,-2.37557 0.65576,-1.2253 0.60065,-1.39942 -0.32989,-1.04233 -0.61445,0.23577 -1.03574,0.14819 -0.93621,-0.19465 0.0995,-0.34284 -0.17299,-1.2662 -0.6056,-2.05192 -0.4326,-0.78571 -1.34538,-3.51786 -2.02838,-6.07143 -0.68301,-2.55357 -2.65412,-9.2701 -4.38025,-14.92564 -1.72614,-5.65553 -2.94928,-10.87874 -2.71809,-11.60714 0.23118,-0.7284 0.12271,-1.32436 -0.24105,-1.32436 -0.55023,0 -2.12119,-7.16416 -2.61727,-11.93572 -0.0731,-0.70321 -0.34537,-1.76071 -0.60502,-2.34999 -0.25965,-0.58929 -0.97678,-4.125 -1.59361,-7.85715 -0.61684,-3.73214 -1.64897,-9.83928 -2.29362,-13.57143 -1.63376,-9.45847 -1.60092,-46.69965 0.0516,-58.57142 0.62889,-4.51786 1.26024,-9.17858 1.40299,-10.35715 0.79735,-6.58309 1.64589,-9.45765 3.86688,-13.09983 3.11833,-5.11369 19.49598,-38.08265 19.49598,-39.2463 0,-0.47749 0.82254,-0.86815 1.82787,-0.86815 1.00533,0 1.63789,-0.30739 1.4057,-0.68309 -0.2322,-0.3757 -0.90002,-0.49973 -1.48405,-0.27561 -1.19947,0.46028 -0.80926,-0.90694 1.80051,-6.30853 0.79748,-1.6506 1.44997,-3.58358 1.44997,-4.29551 0,-0.71192 0.24107,-1.29488 0.53572,-1.29545 0.29464,-5.8e-4 0.62493,-1.30115 0.73397,-2.89016 0.2187,-3.18709 2.01978,-9.07021 3.23475,-10.56615 0.63832,-0.78594 0.94414,-0.72952 1.70798,0.31509 1.14264,1.56266 1.19953,0.94292 0.12909,-1.40643 -0.68573,-1.505 -0.47328,-2.33219 1.47236,-5.73281 2.33401,-4.07943 3.6147,-5.47088 3.6147,-3.92732 0,0.48152 0.21445,0.66105 0.47654,0.39895 0.45812,-0.45812 0.76644,-2.19491 0.89251,-5.02759 0.0519,-1.16522 0.21516,-1.21122 1.26807,-0.35714 0.93343,0.75716 1.07991,0.76652 0.64348,0.0411 -0.88455,-1.47025 0.15067,-5.60841 1.40303,-5.60841 0.61665,0 0.93302,0.41464 0.72667,0.95238 -0.201,0.52381 -0.0541,0.95238 0.32641,0.95238 0.89051,0 0.88193,-1.16735 -0.021,-2.8545 -0.52467,-0.98034 -0.42364,-1.62124 0.38265,-2.42753 0.60254,-0.60253 1.05076,-1.2815 0.99605,-1.50881 -0.20027,-0.83202 1.66903,-4.63773 2.27796,-4.63773 0.3452,0 0.57799,-0.24107 0.51732,-0.53571 -0.0607,-0.29465 0.42578,-1.74108 1.08101,-3.21429 l 1.19133,-2.67857 15.16899,0.017 c 15.1707,0.017 17.36605,0.25472 23.38327,2.53155 3.05712,1.15677 3.35399,1.15231 6.07143,-0.0912 3.22358,-1.47517 21.92658,-2.67197 56.10948,-3.59041 l 18.96664,-0.50961 1.65453,8.4999 c 2.0143,10.34809 7.67607,31.24285 10.76617,39.73253 1.38934,3.81706 4.18266,9.1308 7.2073,13.71048 2.71631,4.11283 4.93873,7.79029 4.93873,8.17214 0,0.38185 0.28195,0.80142 0.62656,0.93237 0.3446,0.13095 3.43185,4.8253 6.86054,10.43188 5.45498,8.91994 6.11307,10.34292 5.26631,11.38712 -0.81437,1.00425 -0.81411,1.10084 0.001,0.60962 0.7374,-0.44402 0.85686,-0.22917 0.49918,0.89778 -0.31957,1.00687 0.007,1.95848 1.01876,2.97045 0.909,0.909 2.47375,4.95704 4.0172,10.39261 2.24172,7.89464 2.40742,9.02446 1.46211,9.96976 -0.9453,0.9453 -1.15446,0.84424 -1.84572,-0.89179 -0.67539,-1.6962 -0.73571,-1.72765 -0.45122,-0.23528 0.18062,0.94744 -0.009,2.3523 -0.42048,3.12191 -0.59652,1.1146 -0.55272,1.27685 0.21524,0.79746 0.53027,-0.331 1.41409,-0.66985 1.96404,-0.753 0.54996,-0.0831 1.23804,-0.53643 1.52906,-1.00731 0.68927,-1.11526 1.31499,0.87289 1.47597,4.68974 0.0663,1.57143 0.5333,4.16067 1.03783,5.75387 0.50453,1.5932 1.79517,8.02178 2.8681,14.28572 2.49873,14.58807 2.80551,32.95566 0.73899,44.24613 -0.71905,3.92857 -1.63454,7.34799 -2.03441,7.59871 -0.39988,0.25072 -0.52992,0.77482 -0.28899,1.16466 0.24094,0.38984 -0.19936,3.07756 -0.97844,5.97271 -0.77908,2.89515 -1.56446,6.06749 -1.74531,7.04963 -0.18084,0.98214 -0.68485,2.91072 -1.12002,4.28572 -0.43517,1.375 -0.96095,3.46428 -1.16839,4.64285 -0.20744,1.17857 -0.69605,2.53057 -1.0858,3.00443 -0.38975,0.47386 -0.50128,1.19707 -0.24784,1.60714 0.25343,0.41007 0.15048,0.74558 -0.22878,0.74558 -0.37927,0 -0.52147,0.64285 -0.31599,1.42857 0.21713,0.83032 0.0219,1.42857 -0.46618,1.42857 -0.46185,0 -0.63847,0.32565 -0.39249,0.72367 0.39654,0.64161 -1.10454,7.13422 -2.30982,9.99061 -0.24866,0.58929 -0.50994,1.60565 -0.58064,2.25858 -0.0707,0.65292 -0.38966,1.77792 -0.7088,2.5 -0.31914,0.72207 -0.6534,1.95571 -0.7428,2.74142 -0.0894,0.78572 -0.34433,2.07143 -0.56652,2.85715 -0.22219,0.78571 -0.89477,3.66559 -1.49463,6.39973 -1.50567,6.86292 -2.56978,9.93245 -3.66773,10.57997 -0.57502,0.33911 -0.82059,1.4382 -0.63837,2.85714 0.26834,2.08939 -0.46934,6.32306 -1.58415,9.09173 -0.23727,0.58928 -0.46247,1.55357 -0.50045,2.14286 -0.038,0.58928 -0.52522,0.97293 -1.0828,0.85255 -0.84456,-0.18234 -0.85737,-0.0304 -0.0768,0.91012 0.51533,0.62095 0.71298,1.35299 0.43921,1.62676 -0.27377,0.27377 -0.7968,0.0249 -1.16228,-0.55298 -0.56241,-0.8893 -0.66619,-0.86517 -0.67545,0.1571 -0.006,0.66432 0.3105,1.4065 0.70335,1.6493 0.39286,0.2428 0.71429,0.78327 0.71429,1.20105 0,0.53525 -0.27123,0.53449 -0.91836,-0.003 -0.69266,-0.57485 -0.91838,-0.43368 -0.91838,0.57438 0,0.73511 0.25255,1.18048 0.56123,0.9897 0.30867,-0.19076 0.56122,-0.0254 0.56122,0.36744 0,0.39286 -0.34942,0.93024 -0.77651,1.19419 -0.42708,0.26395 -0.61797,1.08617 -0.4242,1.82716 0.19377,0.74099 0.0611,1.52725 -0.29491,1.74726 -0.35598,0.22 -0.64723,1.28478 -0.64723,2.36618 0,2.29735 -2.51039,12.49726 -3.71452,15.09237 -0.4557,0.98215 -0.85855,2.42858 -0.8952,3.21429 -0.14131,3.02978 -2.89157,11.80101 -3.6134,11.52402 -0.41606,-0.15966 -0.76681,0.23569 -0.77944,0.87856 -0.0126,0.64287 -0.26329,1.97242 -0.557,2.95456 -0.40371,1.34995 -0.35096,1.52426 0.21611,0.71429 0.57571,-0.82229 0.75269,-0.84785 0.76108,-0.10994 0.0168,1.47612 -2.22115,8.93432 -2.9575,9.85618 -0.35921,0.44972 -0.60377,1.09258 -0.54347,1.42857 0.28226,1.57255 -0.15638,3.10573 -1.18197,4.13131 -0.70278,0.70279 -0.80774,1.12245 -0.28072,1.12245 0.50943,0 0.65107,0.49346 0.35877,1.25 -0.54693,1.41559 -1.67523,6.98596 -2.27872,11.25 -0.22241,1.57143 -0.7041,3.22767 -1.07044,3.68054 -0.4177,0.51636 -0.39568,0.91588 0.0591,1.07142 0.48572,0.16615 0.45925,1.84855 -0.0802,5.09599 l -0.80528,4.84794 -1.06377,-2.19643 c -0.90831,-1.87546 -0.92168,-2.47954 -0.0915,-4.13367 0.53474,-1.06547 1.08971,-2.17829 1.23327,-2.47293 0.14356,-0.29465 -0.0179,-0.53572 -0.35879,-0.53572 -1.42677,0 -3.01377,4.0829 -2.59354,6.67245 0.45815,2.82323 -0.12101,3.21636 -2.30489,1.56455 -1.93753,-1.46546 -4.85135,-1.34403 -6.84311,0.28521 l -1.68627,1.37934 -2.27006,-2.18395 c -1.73832,-1.6724 -2.68192,-2.0806 -4.02836,-1.74266 -2.28895,0.57449 -2.82771,2.10442 -1.32693,3.76814 2.87355,3.18553 5.12535,6.12711 5.12535,6.69539 0,0.33802 -1.04465,0.45113 -2.32143,0.25138 -1.47395,-0.23061 -2.84296,0.0354 -3.75,0.72875 -1.32223,1.01067 -1.15108,1.06042 2.29901,0.66841 4.3202,-0.49088 6.64395,0.63047 8.41875,4.06258 0.60755,1.17487 1.46274,2.13613 1.90041,2.13613 0.43767,0 1.21416,0.5625 1.72554,1.25 0.73324,0.98579 1.20281,1.0836 2.2216,0.46276 2.27998,-1.38941 1.93242,-3.65225 -1.15693,-7.53231 -2.8216,-3.54378 -3.39043,-4.88887 -2.46068,-5.81863 0.60613,-0.60612 4.53215,1.46355 6.53689,3.44603 1.49849,1.48185 1.56741,1.88433 0.86981,5.07933 -1.15885,5.30883 -2.89719,10.25595 -3.60344,10.25595 -0.34896,0 -0.42922,0.53487 -0.17836,1.1886 0.3243,0.8451 0.19249,1.02568 -0.45609,0.62484 -0.66455,-0.41072 -0.79148,-0.18344 -0.46755,0.83716 0.30502,0.96103 -0.33243,2.41865 -2.03004,4.64192 -1.36107,1.78255 -2.69138,4.10441 -2.95624,5.1597 -0.30879,1.23031 -0.83435,1.78332 -1.46487,1.54137 -0.54081,-0.20753 -0.9833,-0.066 -0.9833,0.31453 0,0.38053 0.32143,0.69188 0.71429,0.69188 0.39286,0 0.70936,0.5625 0.70335,1.25 -0.007,0.80283 -0.19867,0.9564 -0.53572,0.42927 -0.28862,-0.45139 -0.61607,4.69147 -0.72764,11.42858 -0.124,7.48718 0.08,12.66582 0.52478,13.32072 1.01424,1.49344 0.99134,1.70085 1.32144,-11.96429 0.0811,-3.35748 0.44968,-5.89286 0.85665,-5.89286 0.39285,0 0.71428,0.43928 0.71428,0.97618 0,1.02004 1.94869,6.15434 4.64489,12.23811 2.15289,4.85781 4.79561,15.88706 4.23211,17.66248 -0.25214,0.79444 -0.10597,1.66228 0.32484,1.92853 0.4308,0.26625 0.86698,2.95511 0.96929,5.97524 0.10231,3.02013 0.37934,5.4943 0.61564,5.49816 0.23629,0.004 0.62768,2.81361 0.86976,6.24389 0.53612,7.59695 -0.12732,16.76678 -1.16662,16.12446 -0.44862,-0.27727 -0.55167,0.0188 -0.26582,0.76378 0.49558,1.29147 -12.51639,37.91592 -13.22061,37.2117 -0.21799,-0.21798 -0.4085,0.34027 -0.42336,1.24057 -0.0149,0.9003 -2.32064,7.90476 -5.12393,15.56548 -5.7312,15.66193 -15.08742,43.49707 -18.60719,55.35714 -1.83473,6.18224 -2.34427,9.22752 -2.39031,14.28571 -0.0814,8.95132 0.68079,19.1966 1.54891,20.8187 0.50249,0.93892 0.48643,1.7984 -0.0518,2.77117 -0.67451,1.2191 -0.6325,1.28943 0.31007,0.51915 0.92559,-0.75641 1.29354,-0.44022 2.436,2.0933 0.74015,1.64135 1.38248,3.32801 1.42741,3.74813 0.0449,0.42011 0.13064,1.34531 0.19049,2.056 0.0598,0.71068 0.43022,1.0935 0.82308,0.8507 0.39285,-0.2428 0.75446,-0.10106 0.80357,0.31498 0.17996,1.5247 0.30368,1.87952 1.61077,4.61984 1.22449,2.56714 1.25834,3.30398 0.42036,9.15028 -0.5373,3.74856 -1.14352,5.98267 -1.47698,5.44311 -0.3111,-0.50336 -0.42668,1.00402 -0.25686,3.34973 0.29649,4.09521 0.26455,4.19386 -0.80253,2.4792 -0.76,-1.22123 -0.95786,-1.33413 -0.6259,-0.35714 0.26697,0.78571 0.5988,2.875 0.73742,4.64285 0.1386,1.76786 0.0788,2.64785 -0.13298,1.95555 -0.21175,-0.69232 -0.62796,-1.10859 -0.92492,-0.92505 -0.29696,0.18352 -1.11439,-1.50004 -1.8165,-3.74126 -0.70211,-2.24122 -3.33015,-9.42634 -5.8401,-15.96694 -3.04973,-7.94721 -4.66637,-13.24483 -4.87355,-15.9703 -0.33379,-4.39087 -0.80858,-5.53357 -1.52427,-3.66852 -0.24771,0.64552 -0.72946,1.17367 -1.07056,1.17367 -0.3411,0 -0.30672,-0.8245 0.0764,-1.83222 0.87485,-2.30103 0.87969,-3.13473 0.0102,-1.7599 -0.36548,0.57791 -0.8352,0.88005 -1.04382,0.67143 -1.04122,-1.04121 -3.25808,-24.90046 -5.06049,-54.464 -0.73037,-11.9797 -1.07249,-29.62165 -1.05342,-54.32034 0.0283,-36.66918 -0.24547,-48.8099 -1.47567,-65.43783 -0.6379,-8.62194 -0.83018,-10.05929 -1.77594,-13.27552 -0.29884,-1.01627 0.15799,-2.1982 1.43731,-3.71857 1.83247,-2.17778 1.84677,-2.27245 0.62493,-4.13721 -1.23506,-1.88494 -1.2237,-1.93234 0.92316,-3.85055 2.5386,-2.26824 4.40576,-9.1746 2.64879,-9.7975 -0.52519,-0.18619 -0.99846,1.25866 -1.32014,4.03026 -0.33289,2.86817 -0.82088,4.32052 -1.45172,4.32052 -0.52265,0 -1.45291,0.50263 -2.06724,1.11697 -0.61434,0.61433 -1.41789,0.93099 -1.78567,0.70369 -0.36778,-0.22731 -0.80862,0.3147 -0.97963,1.20446 -0.27741,1.44327 -0.32143,1.41243 -0.40822,-0.286 -0.065,-1.2723 0.61348,-2.57458 2.04559,-3.92626 1.28379,-1.21169 2.14285,-2.74728 2.14285,-3.83037 0,-1.84434 -2.16171,-4.28641 -3.75816,-4.24558 -0.48658,0.0124 -7.1e-4,0.68212 1.07959,1.48815 2.31441,1.72674 2.40215,2.54946 0.51363,4.81629 -2.38647,2.86452 -3.71699,1.55043 -3.20748,-3.16787 0.29007,-2.68633 0.18778,-3.84368 -0.31242,-3.53453 -0.89727,0.55454 -0.95398,-0.32973 -0.10689,-1.66667 0.44365,-0.7002 1.41855,-0.83481 3.49956,-0.48323 l 2.8846,0.48735 -0.34847,-2.73105 c -0.29006,-2.27321 0.006,-3.15019 1.76873,-5.23107 1.8995,-2.24293 2.46855,-2.49265 5.53408,-2.42855 2.86846,0.06 3.6829,0.4039 5.07436,2.14285 1.582,1.97707 1.65765,1.99822 1.66104,0.46427 0.003,-1.24907 0.41276,-1.60714 1.84028,-1.60714 1.64794,0 1.7245,0.11224 0.74487,1.09187 -0.76734,0.76735 -0.91246,1.56347 -0.48824,2.67857 1.17388,3.08565 7.90664,0.9972 7.90664,-2.45257 0,-0.83295 0.51541,-1.31787 1.40074,-1.31787 1.67429,0 4.45231,-2.76903 3.81407,-3.80172 -0.24809,-0.40142 -0.69538,-0.0651 -0.99667,0.74936 -0.93683,2.53248 -2.18357,2.70379 -3.77527,0.51874 -0.81618,-1.12044 -2.29436,-2.86805 -3.28484,-3.88358 -0.99049,-1.01553 -2.35866,-2.70073 -3.04039,-3.74488 -1.22615,-1.87801 -1.21565,-1.91543 0.97499,-3.47531 2.06393,-1.46964 2.18487,-1.48352 1.77881,-0.20414 -0.31656,0.9974 0.53982,2.4394 3.13215,5.27403 4.48883,4.90839 4.69208,4.03986 0.26679,-1.14001 -2.82961,-3.31208 -3.09066,-3.86392 -1.82787,-3.86392 0.81025,0 1.67183,0.32143 1.91463,0.71429 0.68144,1.10258 1.79077,0.8443 1.34649,-0.31349 -0.21692,-0.56528 -1.29952,-1.22658 -2.40578,-1.46956 -1.61461,-0.35463 -2.10583,-0.94521 -2.49015,-2.99383 -0.62134,-3.31199 0.48451,-4.52722 2.47801,-2.72312 1.12105,1.01453 1.65843,1.12728 2.3026,0.48312 1.14428,-1.14429 1.74755,-1.05584 2.28106,0.33446 0.25348,0.66055 -0.0742,1.7548 -0.74857,2.5 -0.65964,0.7289 -0.90847,1.32747 -0.55294,1.33015 0.35554,0.003 1.42378,1.14624 2.37388,2.54122 1.29319,1.89872 2.19102,2.50694 3.57143,2.41943 4.23226,-0.26831 4.94279,0.76337 1.6654,2.41813 -2.29384,1.15815 -3.40679,0.88163 -5.70617,-1.41775 -0.92411,-0.9241 -1.82629,-1.68019 -2.00487,-1.68019 -0.86165,0 -0.13292,1.42551 1.62985,3.18829 1.62747,1.62747 2.4011,1.89462 4.62328,1.59657 1.46782,-0.19687 3.20044,-0.88964 3.85027,-1.53947 1.09915,-1.09915 1.29497,-1.07491 2.80933,0.34775 1.33883,1.25777 1.89339,1.38712 3.12377,0.72864 1.65727,-0.88694 1.95873,-2.85902 0.63883,-4.17892 -1.35852,-1.35852 -2.09891,-0.99613 -1.13108,0.5536 0.70354,1.12655 0.69508,1.5942 -0.0421,2.32143 -0.74927,0.73922 -1.10788,0.66037 -1.90469,-0.41879 -0.53989,-0.73121 -2.21907,-2.65978 -3.73151,-4.28571 -1.51244,-1.62594 -3.29907,-3.75098 -3.97029,-4.72233 -0.84931,-1.2291 -1.22036,-1.42127 -1.22036,-0.63203 0,0.62371 0.64285,1.95129 1.42857,2.95016 2.86335,3.64016 0.82488,5.42515 -2.17781,1.907 -1.54174,-1.80641 -1.92434,-2.8412 -1.61756,-4.37505 0.49542,-2.47714 -0.88736,-4.35239 -2.76903,-3.75518 -0.74948,0.23788 -2.14195,-0.0781 -3.09437,-0.70212 -1.64827,-1.08 -1.78916,-1.04689 -2.92553,0.68743 -1.03079,1.57318 -1.0623,2.06792 -0.23062,3.62191 0.89847,1.67881 0.80935,1.92026 -1.32521,3.59081 -1.25864,0.98504 -2.28844,2.24982 -2.28844,2.81064 0,0.56081 -0.44279,1.01966 -0.98398,1.01966 -0.54117,0 -1.38394,0.48194 -1.8728,1.07099 -0.76734,0.92458 -0.584,1.01002 1.3411,0.625 2.84216,-0.56844 3.11231,1.2441 0.37156,2.49287 -1.56605,0.71354 -1.71534,1.01911 -0.94902,1.94247 0.6632,0.79911 1.6295,0.97407 3.56954,0.6463 2.18236,-0.36871 2.92727,-0.16271 4.1474,1.14694 2.51402,2.69849 0.50037,6.99895 -3.30238,7.05271 -2.19978,0.0311 -2.0691,-1.94028 0.19708,-2.97282 2.74698,-1.25161 1.69227,-2.38921 -1.99678,-2.15368 -2.70777,0.17287 -3.44764,-0.0646 -4.38923,-1.40893 -0.62287,-0.88928 -1.13249,-2.20717 -1.13249,-2.92865 0,-0.76791 -0.32405,-1.11153 -0.78155,-0.82878 -0.42985,0.26567 -0.63515,1.24893 -0.4562,2.18502 0.29792,1.55846 0.0898,1.70198 -2.4682,1.70198 -5.39457,0 -8.43691,2.85005 -8.43691,7.90365 0,2.27088 -0.39931,2.45233 -3.12019,1.41785 -1.2671,-0.48176 -1.88563,-0.42997 -2.13296,0.17857 -0.19159,0.47139 -0.37373,-0.0498 -0.40474,-1.15823 -0.031,-1.10841 -0.53854,-2.49745 -1.12783,-3.08674 -0.97463,-0.97463 -1.38083,-3.18493 -1.29391,-7.04081 0.0177,-0.78571 -0.20529,-1.58929 -0.49556,-1.78571 -0.65516,-0.44335 -3.45759,-16.89023 -3.91833,-22.99579 -0.23048,-3.05443 -0.11732,-4.15935 0.35159,-3.43279 0.57776,0.89523 0.71337,0.83649 0.8246,-0.35714 0.28246,-3.03136 0.43949,-3.65221 1.57488,-6.22706 0.64406,-1.4606 1.17102,-2.95299 1.17102,-3.31643 0,-1.25785 2.049,-1.46967 2.30556,-0.23834 0.20137,0.96638 0.33792,0.89784 0.67733,-0.33999 0.34439,-1.25599 0.16005,-1.49935 -0.97074,-1.28158 -0.86655,0.16689 -1.27571,-0.0578 -1.07901,-0.59246 0.17427,-0.4737 0.6455,-0.79191 1.04717,-0.70713 0.4019,0.0848 0.57479,-0.55759 0.38447,-1.42857 -0.25207,-1.15358 -0.15958,-1.31995 0.34111,-0.61361 1.17867,1.66278 1.7491,-0.39957 0.82067,-2.96708 -0.68042,-1.88168 -0.61469,-3.89812 0.33166,-10.17441 0.64914,-4.30519 1.2074,-8.47048 1.24057,-9.2562 0.26757,-6.33783 1.47888,-25.10615 2.05147,-31.78571 0.77715,-9.0659 0.94494,-70.49002 0.2558,-93.64177 -0.40495,-13.60413 -0.33715,-14.86734 0.89942,-16.75809 0.73556,-1.12469 0.9578,-1.811 0.49388,-1.52515 -0.46393,0.28586 -1.02282,0.22961 -1.24197,-0.12499 -0.21915,-0.3546 0.24077,-0.81189 1.02207,-1.01621 0.7813,-0.20431 1.42054,-0.7343 1.42054,-1.17776 0,-0.5687 -0.39696,-0.59384 -1.34711,-0.0853 -1.28954,0.69014 -1.36753,0.16456 -1.82463,-12.2963 -0.57125,-15.57281 -1.59392,-29.18838 -2.66327,-35.45802 -0.68921,-4.04093 -0.6393,-4.68781 0.42162,-5.46357 0.91495,-0.66902 0.9803,-0.96932 0.27268,-1.25284 -0.5119,-0.20509 -0.2075,-0.39827 0.67642,-0.42928 0.88393,-0.031 1.60715,-0.46837 1.60715,-0.97188 0,-0.99071 5.94591,-3.03855 6.97528,-2.40237 0.34487,0.21314 1.15795,-0.23254 1.80685,-0.99039 0.87327,-1.0199 1.78795,-1.28524 3.52027,-1.02119 1.61185,0.24569 1.92065,0.17205 0.99193,-0.23653 -1.12634,-0.49553 -0.78968,-0.80669 2.04339,-1.88866 1.86555,-0.71245 4.24024,-1.2906 5.27709,-1.28476 1.03685,0.006 2.29862,-0.32443 2.80392,-0.73394 0.5053,-0.4095 3.33305,-0.89949 6.28387,-1.08886 4.45177,-0.2857 5.32563,-0.54076 5.13308,-1.49821 -0.15921,-0.79166 -0.89859,-1.11115 -2.3553,-1.01775 -1.16778,0.0749 -4.58303,0.23558 -7.58945,0.35714 -3.00641,0.12156 -5.3178,0.46208 -5.13642,0.75672 0.18139,0.29464 -0.90337,0.53571 -2.41057,0.53571 -1.5072,0 -3.37439,0.42357 -4.14929,0.94125 -2.04863,1.3686 -8.34252,3.62592 -9.81723,3.52098 -0.69599,-0.0495 -1.0818,0.20708 -0.85735,0.57025 0.23626,0.38229 -0.58427,0.48914 -1.94885,0.25377 -1.57898,-0.27234 -2.04322,-0.18418 -1.40647,0.2671 1.38878,0.98425 -2.71882,1.67902 -5.3208,0.89998 -1.50542,-0.45073 -1.67455,-0.63858 -0.62967,-0.69937 1.32024,-0.0768 1.33335,-0.13856 0.17292,-0.81433 -0.69062,-0.40218 -1.5261,-0.56409 -1.85664,-0.3598 -0.33053,0.20427 -1.02516,-0.42118 -1.54361,-1.38992 -0.51845,-0.96873 -1.21447,-1.76133 -1.54672,-1.76133 -0.64034,0 -3.43304,-4.24136 -3.43756,-5.22073 -10e-4,-0.31783 0.36842,-0.34852 0.82198,-0.0682 0.5228,0.32312 0.63025,0.19512 0.29355,-0.34967 -0.40667,-0.65801 -0.76721,-0.66338 -1.53894,-0.0229 -1.24551,1.03369 -1.34351,-0.14318 -0.11498,-1.38081 0.71547,-0.72077 0.66789,-0.81388 -0.23952,-0.46872 -0.74814,0.28459 -1.89941,-0.46722 -3.39286,-2.21562 -1.24326,-1.45547 -2.26047,-2.25415 -2.26047,-1.77481 0,0.47934 -0.32668,0.66963 -0.72594,0.42288 -0.39926,-0.24676 -0.54329,-0.7442 -0.32004,-1.1054 0.22323,-0.36122 -0.028,-0.49025 -0.55835,-0.28674 -0.53033,0.20351 -1.72806,-0.44303 -2.66161,-1.43676 -0.93356,-0.99372 -1.44127,-1.80676 -1.12826,-1.80676 0.31302,0 0.16897,-0.48214 -0.32009,-1.07143 -0.7249,-0.87345 -0.68606,-1.07143 0.21016,-1.07143 0.60465,0 1.26275,0.32947 1.46246,0.73215 0.1997,0.40267 0.27728,0.32232 0.1724,-0.17858 -0.10488,-0.50089 -1.12542,-0.93722 -2.26786,-0.96963 -3.38516,-0.096 -3.86287,-0.25049 -3.86287,-1.24895 0,-0.5229 -0.88393,-1.36418 -1.96429,-1.86952 -1.08036,-0.50532 -2.76786,-1.38267 -3.75,-1.94965 -4.22579,-2.4395 -9.31926,-4.5794 -9.959,-4.18402 -0.61224,0.3784 -2.59859,-0.98108 -5.44214,-3.72465 -0.50896,-0.49108 -1.33799,-0.89286 -1.84229,-0.89286 -0.50429,0 0.15621,0.89587 1.46779,1.99082 1.35814,1.13383 2.4227,2.71399 2.47302,3.67079 0.0657,1.25029 0.55932,1.73009 1.9298,1.87593 1.01281,0.10777 3.06658,1.02734 4.56396,2.04349 1.49737,1.01615 3.05265,1.84754 3.45615,1.84754 0.40352,0 0.52142,0.21224 0.26202,0.47165 -0.25941,0.2594 0.22938,0.96266 1.0862,1.56281 1.20744,0.84572 1.62589,0.88706 1.86031,0.18379 0.18117,-0.54351 0.80977,-0.0732 1.56756,1.17293 0.69581,1.14416 2.45976,2.64721 3.91991,3.34008 2.1974,1.04274 2.59789,1.55745 2.32452,2.98751 -0.19642,1.02752 -0.008,1.67693 0.46524,1.60241 1.38956,-0.21889 4.72409,0.94969 4.72409,1.65556 0,0.37345 0.32143,0.48035 0.71429,0.23755 0.39286,-0.2428 0.71428,0.0596 0.71428,0.67212 0,0.61248 0.31135,1.11359 0.69188,1.11359 0.38052,0 0.48661,0.53487 0.23575,1.1886 -0.27643,0.72038 -0.16837,1.01077 0.27433,0.73717 0.93354,-0.57696 3.4409,1.23088 3.4409,2.48094 0,0.52273 0.40464,0.95043 0.89919,0.95043 0.49455,0 1.56289,1.09139 2.37409,2.4253 1.18092,1.94186 1.28644,2.54479 0.52939,3.02477 -0.70659,0.448 -0.61033,0.60225 0.3809,0.61043 0.88352,0.007 1.18913,0.36869 0.91527,1.08236 -0.22613,0.58929 -0.0604,1.07143 0.36818,1.07143 0.4835,0 0.4072,0.45748 -0.20099,1.20516 -0.85644,1.05288 -0.82549,1.14717 0.24492,0.74621 0.95179,-0.35653 1.38062,0.10377 1.92142,2.0624 0.3829,1.38675 0.50014,3.03226 0.26052,3.65669 -0.26632,0.69402 -0.14362,0.95482 0.31568,0.67097 1.79292,-1.10809 4.72266,17.75566 5.66075,36.44789 0.36627,7.29839 0.28133,9.59435 -0.34071,9.20991 -0.49822,-0.30792 -0.82861,-0.0513 -0.82861,0.64363 0,0.63565 0.32143,0.95708 0.71429,0.71428 0.95025,-0.58728 0.93358,4.68734 -0.0227,7.2027 -0.6523,1.71568 -0.60903,1.83232 0.37642,1.01448 1.00715,-0.83587 1.09214,4.59187 0.89025,56.85794 -0.26899,69.63319 -0.51166,80.10232 -1.87631,80.94571 -0.64766,0.40026 -0.83184,1.23986 -0.53309,2.43016 0.25708,1.02431 0.12205,2.02526 -0.30916,2.29178 -0.42109,0.26024 -0.58432,0.94559 -0.36274,1.523 0.22157,0.57741 -0.10657,3.28962 -0.7292,6.02712 -1.0308,4.53206 -1.27013,4.94018 -2.6756,4.5624 l -1.54353,-0.41488 1.49053,0.92265 c 1.26243,0.78146 1.39594,1.2779 0.87243,3.24408 -0.33995,1.27679 -1.01069,2.32635 -1.49053,2.33237 -0.62802,0.008 -0.64637,0.15795 -0.0655,0.53571 0.58564,0.38085 0.47609,1.60225 -0.39942,4.45335 -0.66351,2.16072 -1.37574,3.60715 -1.58274,3.21429 -0.207,-0.39286 -0.28549,-0.33092 -0.17441,0.13764 0.11107,0.46857 -0.12899,1.91499 -0.53348,3.21429 -1.81167,5.81948 -1.92057,7.36645 -0.96574,13.71857 1.27151,8.45886 1.57719,10.05926 2.76203,14.46103 0.54398,2.02091 0.84124,4.59234 0.66058,5.71429 -0.22486,1.39644 -0.11787,1.74098 0.33918,1.09225 0.46308,-0.65726 1.06154,0.92929 1.9531,5.17774 1.16974,5.57402 1.18445,6.23797 0.16341,7.37621 -0.61711,0.68796 -1.40917,2.36909 -1.76012,3.73585 -0.55576,2.16436 -0.95254,2.51051 -3.07514,2.68264 -1.34037,0.1087 -2.92882,0.72358 -3.5299,1.3664 -0.99197,1.06086 -0.96098,1.12082 0.3357,0.64944 0.78572,-0.28562 2.5271,-0.70349 3.86975,-0.92858 1.93147,-0.32381 2.35911,-0.19544 2.04819,0.61481 -0.92455,2.40935 -2.07594,9.3744 -1.70812,10.3329 0.33223,0.8658 0.64862,0.88914 1.85338,0.13675 0.79903,-0.499 1.60984,-1.40216 1.80182,-2.00702 0.19197,-0.60487 0.99196,-1.14819 1.77773,-1.20738 2.2276,-0.1678 1.97559,0.4558 -2.15767,5.33931 -0.63334,0.74831 -3.89453,1.29062 -5.87793,0.97744 -0.29465,-0.0465 -0.53572,0.36912 -0.53572,0.92365 0,0.57518 0.53689,0.90544 1.25,0.76893 0.6875,-0.13161 1.96213,-0.26388 2.83252,-0.29394 1.61543,-0.0558 5.08626,-2.98189 6.47009,-5.45466 0.42285,-0.7556 0.96044,-1.18218 1.19464,-0.94798 0.37925,0.37925 2.22222,10.03635 2.4383,12.77656 0.21679,2.74913 0.92865,42.47156 1.21607,67.85714 0.17569,15.51786 0.4294,37.85354 0.5638,49.63485 0.1344,11.78131 0.0276,20.80265 -0.23731,20.04741 -0.30218,-0.86145 -0.66313,-1.07956 -0.9686,-0.58528 -0.26781,0.43332 0.005,1.2797 0.60606,1.88084 1.07444,1.07443 1.13109,1.90736 1.26944,18.66504 0.0162,1.96429 -0.19091,4.375 -0.46028,5.35714 -0.38468,1.40259 -0.35297,1.47922 0.14783,0.35715 0.47171,-1.05692 0.76507,0.0581 1.12761,4.28571 0.5209,6.07436 1.30143,10.55934 2.22686,12.79574 0.34234,0.82732 0.2962,1.2006 -0.11687,0.9453 -0.37543,-0.23202 -0.68261,0.16153 -0.68261,0.87456 0,0.92527 0.46587,1.24529 1.62721,1.11781 2.11086,-0.23172 3.19011,1.13326 3.27541,4.14256 0.0539,1.90226 0.32625,2.35039 1.27718,2.10171 1.12012,-0.29291 1.13337,0.01 0.18087,4.13276 -0.56528,2.44686 -0.86022,4.8855 -0.65542,5.4192 0.2048,0.5337 0.10223,0.97036 -0.22794,0.97036 -0.33017,0 -0.56714,1.26472 -0.52661,2.81049 0.0437,1.6676 0.3081,2.46638 0.65012,1.96428 0.31705,-0.46541 0.4211,0.76095 0.23125,2.72523 -0.26651,2.75741 -0.17233,3.26699 0.41319,2.23573 0.61143,-1.07688 0.87746,-1.14608 1.37291,-0.35714 0.33799,0.5382 0.42672,1.5813 0.19717,2.318 -0.27202,0.873 -0.14197,1.16925 0.37345,0.8507 0.43494,-0.2688 0.79081,-0.16731 0.79081,0.22555 0,0.39285 -0.32143,0.91293 -0.71429,1.15573 -1.19189,0.73663 -0.80054,1.78572 0.66615,1.78572 1.48918,0 2.60666,2.32098 1.76959,3.6754 -0.2996,0.48477 -0.20384,0.63959 0.22983,0.37157 0.40889,-0.25272 0.9325,0.26012 1.16357,1.13963 0.23107,0.87951 0.14361,1.69402 -0.19435,1.81001 -0.90958,0.31219 1.71704,6.96167 2.66931,6.75757 0.98036,-0.21012 1.87806,2.94 1.28111,4.4956 -0.2444,0.63692 -0.125,0.92411 0.28011,0.67373 0.38836,-0.24001 0.70611,0.10677 0.70611,0.77065 0,0.97864 -0.46914,1.13084 -2.47985,0.80454 -5.592,-0.90738 -13.10326,-8.3795 -18.53754,-18.44087 l -2.80313,-5.18983 -7.74331,-105.39829 -7.74332,-105.39828 1.43928,-2.59725 c 1.52927,-2.75965 1.91213,-6.66905 0.72499,-7.40275 -0.43577,-0.26933 -0.71429,0.81186 -0.71429,2.77283 0,1.76786 -0.30518,3.4029 -0.67819,3.63343 -0.87955,0.54359 -1.40875,-2.71559 -1.73608,-10.69198 -0.1451,-3.53571 -1.24222,-19.28571 -2.43804,-35 -1.19583,-15.71428 -2.37673,-34.67857 -2.62424,-42.14286 -0.2475,-7.46428 -0.58249,-15.01785 -0.74442,-16.78571 -0.16194,-1.76786 -2.29025,-49.98214 -4.7296,-107.14286 -2.43933,-57.16071 -4.69658,-104.22857 -5.0161,-104.59523 -0.31952,-0.36667 -0.73563,-0.51199 -0.92469,-0.32293 -0.18906,0.18906 2.05447,55.13192 4.98562,122.09524 2.93115,66.96332 5.33048,123.45797 5.33184,125.54365 0.001,2.08569 -0.28527,3.61432 -0.63697,3.39696 -0.90358,-0.55845 -1.49103,1.31805 -0.7752,2.47628 0.34843,0.56377 0.2074,1.72379 -0.33948,2.79237 -1.32244,2.58396 -1.99921,8.74657 -1.10283,10.04223 0.64303,0.92946 0.88142,0.88771 1.7991,-0.31509 0.58182,-0.76258 1.05786,-2.28937 1.05786,-3.39286 0,-1.10348 0.33445,-2.00633 0.74322,-2.00633 0.40877,0 0.6955,1.20536 0.63716,2.67857 -0.0969,2.44651 1.6317,26.78741 2.53476,35.69331 0.44631,4.40152 -0.28474,4.44072 -3.558,0.1908 -1.17857,-1.53024 -2.64107,-2.79713 -3.25,-2.81532 -2.78342,-0.0832 -3.79296,3.8663 -1.51519,5.92765 2.02325,1.83101 2.53692,1.39576 0.86348,-0.73167 -1.29455,-1.64575 -1.36451,-2.05468 -0.49948,-2.91971 0.84294,-0.84293 1.25203,-0.8522 2.52498,-0.0572 0.83549,0.52177 1.51907,1.34219 1.51907,1.82315 0,0.48096 0.59877,1.19494 1.3306,1.5866 1.34406,0.71931 2.47415,3.02866 3.2772,6.69701 0.40577,1.85358 0.32767,1.94258 -1.05526,1.20245 -3.21109,-1.71855 -7.12397,0.59989 -7.12397,4.22101 0,1.75714 2.63913,4.3605 4.4204,4.3605 2.00485,0 1.52924,-1.02653 -0.90053,-1.94367 -1.82941,-0.69053 -2.15613,-1.15935 -1.96429,-2.81862 0.31527,-2.72662 3.22695,-4.22735 5.03217,-2.59366 1.3759,1.24519 1.70727,4.14387 0.5551,4.85595 -1.09227,0.67507 -0.8496,1.99048 0.28676,1.55442 0.99388,-0.38138 2.21121,2.25857 1.40975,3.05725 -0.21433,0.21358 -2.12018,0.37152 -4.23522,0.35097 -4.34638,-0.0422 -4.50016,0.2462 -0.60024,1.12578 1.61851,0.36503 3.20456,0.33017 3.98516,-0.0876 0.71316,-0.38167 1.28332,-0.44156 1.26704,-0.1331 -0.0163,0.30846 1.98324,28.30159 4.4434,62.20694 3.90514,53.81962 4.33965,61.7404 3.42248,62.38881 -0.9041,0.63917 -0.89515,0.69389 0.0641,0.39252 0.97284,-0.30562 1.3455,2.84479 2.92812,24.75405 1.14323,15.82647 1.55932,25.27027 1.12589,25.55349 -0.42746,0.27932 -0.40495,0.5495 0.0595,0.71428 0.44267,0.15706 1.23972,7.10378 1.95636,17.05075 1.09116,15.14545 1.38471,17.13471 3.00411,20.35715 2.72541,5.42329 7.20523,11.73551 10.83566,15.26782 3.18322,3.09719 9.22871,6.49695 11.57779,6.51085 1.26129,0.01 2.30252,1.8627 1.64373,2.9286 -0.22089,0.3574 -0.0263,0.6498 0.43226,0.6498 0.53279,0 0.67205,-0.6447 0.38569,-1.7857 -0.8012,-3.1922 0.33541,-1.8904 2.48097,2.8415 2.20937,4.8726 2.45068,5.6751 1.53684,5.1103 -0.30868,-0.1908 -0.56123,0.2546 -0.56123,0.9897 0,0.9034 0.25857,1.1219 0.79791,0.6743 0.55776,-0.4629 1.5866,1.4674 3.41837,6.4136 2.80794,7.582 2.90454,7.9441 2.08474,7.8146 -1.45112,-0.2291 -2.32143,0.182 -2.32143,1.0965 0,0.5565 -0.40178,1.1965 -0.89285,1.422 -0.49107,0.2255 -0.16965,0.2307 0.71428,0.011 2.14702,-0.5327 2.02694,-0.1672 -0.57782,1.7586 -1.8534,1.3703 -2.36146,1.472 -3.34802,0.67 -1.01049,-0.8213 -1.09761,-0.7709 -0.66408,0.3842 0.38134,1.0161 0.23573,1.2285 -0.61765,0.901 -0.64204,-0.2463 -0.93115,-0.1283 -0.68023,0.2777 0.24002,0.3883 0.10609,0.7061 -0.29763,0.7061 -0.40371,0 -0.5476,0.4857 -0.31976,1.0795 0.27114,0.7066 0.0783,0.9603 -0.55814,0.7344 -1.26412,-0.4487 -3.58539,1.3246 -3.32057,2.5367 0.11293,0.5169 -0.35112,0.9548 -1.03122,0.9731 -1.62988,0.044 -5.53381,3.2953 -5.60556,4.6684 -0.0383,0.7333 -0.17187,0.7931 -0.41666,0.1864 -0.42692,-1.058 -3.09835,-1.212 -3.09835,-0.1785 0,0.3928 0.24107,0.6762 0.53571,0.6297 1.56854,-0.2477 1.43018,0.3171 -0.63316,2.5845 -2.11194,2.3209 -4.16018,3.4739 -3.08731,1.738 z m -2.52953,-5.6441 c 0,-0.3806 -0.48214,-0.5069 -1.07142,-0.2807 -0.58929,0.2261 -1.07143,0.5374 -1.07143,0.6918 0,0.1544 0.48214,0.2808 1.07143,0.2808 0.58928,0 1.07142,-0.3114 1.07142,-0.6919 z m 12.5,-5.0224 c -0.2428,-0.3929 -0.76287,-0.7143 -1.15573,-0.7143 -0.39286,0 -0.51564,0.3214 -0.27284,0.7143 0.2428,0.3928 0.76288,0.7143 1.15574,0.7143 0.39286,0 0.51563,-0.3215 0.27283,-0.7143 z m 11.16007,-8.0477 c -0.70544,-0.7001 -0.78749,-0.6181 -0.39986,0.3999 0.26824,0.7044 0.66764,1.1008 0.88756,0.881 0.21992,-0.2199 4.6e-4,-0.7963 -0.4877,-1.2809 z m 0.98279,-2.6666 c 0.2428,-0.3929 0.10106,-0.7143 -0.31498,-0.7143 -0.41605,0 -0.75645,0.3214 -0.75645,0.7143 0,0.3928 0.14175,0.7143 0.31499,0.7143 0.17324,0 0.51364,-0.3215 0.75644,-0.7143 z m -1.08236,-8.435 c -0.009,-1.0409 -0.10664,-1.0598 -0.70335,-0.1364 -0.904,1.3988 -0.904,2.3444 0,1.7857 0.39285,-0.2428 0.70936,-0.985 0.70335,-1.6493 z m 0.66408,-5.1364 c -0.0259,-0.7065 -0.24838,-0.5849 -0.65315,0.3571 -0.8438,1.9636 -0.8438,3.0914 0,1.7857 0.38083,-0.5893 0.67475,-1.5536 0.65315,-2.1428 z m -40,-23.92862 c 0.0216,-0.39286 -0.27232,-0.23214 -0.65315,0.35714 -0.38083,0.58929 -0.67474,1.55358 -0.65314,2.14286 0.0414,1.13132 1.23191,-1.14698 1.30629,-2.5 z m 28.16781,-0.69141 c 0.2213,-0.5767 0.095,-1.23853 -0.28072,-1.47072 -0.3757,-0.2322 -0.68309,0.23965 -0.68309,1.04855 0,1.72469 0.39722,1.89868 0.96381,0.42217 z m -24.27694,-7.16573 c -0.22613,-0.58929 -0.53747,-1.07143 -0.69187,-1.07143 -0.15439,0 -0.28072,0.48214 -0.28072,1.07143 0,0.58928 0.31134,1.07143 0.69187,1.07143 0.38052,0 0.50685,-0.48215 0.28072,-1.07143 z m 0.45598,-12.81499 c 0,-0.17324 -0.32143,-0.51364 -0.71428,-0.75644 -0.39286,-0.2428 -0.71429,-0.10106 -0.71429,0.31499 0,0.41604 0.32143,0.75644 0.71429,0.75644 0.39285,0 0.71428,-0.14174 0.71428,-0.31499 z m -1.65492,-11.24751 c -0.22801,-0.56981 -0.39727,-0.40056 -0.43154,0.43155 -0.031,0.75297 0.1378,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85343 0.0564,-1.36905 z m 36.64399,-2.54464 c -0.006,-0.29465 -0.32252,-1.01786 -0.70335,-1.60715 -0.55991,-0.8664 -0.6945,-0.76388 -0.70335,0.53572 -0.006,0.88393 0.31049,1.60714 0.70335,1.60714 0.39285,0 0.70936,-0.24107 0.70335,-0.53571 z m -35.9297,-1.74108 c -0.22802,-0.5698 -0.39727,-0.40055 -0.43155,0.43155 -0.031,0.75298 0.1378,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85342 0.0564,-1.36905 z m 1.29778,-9.86607 c 0.2428,-0.39285 0.10105,-0.71428 -0.31499,-0.71428 -0.41604,0 -0.75644,0.32143 -0.75644,0.71428 0,0.39286 0.14174,0.71429 0.31498,0.71429 0.17325,0 0.51365,-0.32143 0.75645,-0.71429 z m 28.21428,-1.42857 c 0,-0.39286 -0.14174,-0.71428 -0.31498,-0.71428 -0.17325,0 -0.51365,0.32142 -0.75645,0.71428 -0.2428,0.39286 -0.10105,0.71429 0.31499,0.71429 0.41604,0 0.75644,-0.32143 0.75644,-0.71429 z m -35.04465,-15.97524 c -0.67922,-0.62564 -0.77446,-0.51207 -0.41762,0.49795 0.25425,0.71963 0.50604,1.84463 0.55954,2.5 0.0535,0.65536 0.24143,0.43129 0.41762,-0.49795 0.17619,-0.92924 -0.0756,-2.05424 -0.55954,-2.5 z m 33.23049,-13.02836 c -2.21397,-1.14862 -2.47155,-1.19568 -2.47155,-0.45149 0,0.72316 3.05311,2.12433 3.80319,1.7454 0.3239,-0.16364 -0.27534,-0.74589 -1.33164,-1.29391 z m -3.90012,-2.73996 c 0,-0.17324 -0.32143,-0.51364 -0.71429,-0.75644 -0.39286,-0.2428 -0.71429,-0.10106 -0.71429,0.31499 0,0.41604 0.32143,0.75644 0.71429,0.75644 0.39286,0 0.71429,-0.14174 0.71429,-0.31499 z m -2.85715,-1.82787 c 0,-0.39285 -0.3404,-0.71428 -0.75644,-0.71428 -0.41604,0 -0.55779,0.32143 -0.31499,0.71428 0.2428,0.39286 0.5832,0.71429 0.75645,0.71429 0.17324,0 0.31498,-0.32143 0.31498,-0.71429 z m -3.07823,-3.38435 c -1.09902,-1.09903 -1.20748,-1.10285 -1.20748,-0.0425 0,0.64073 0.40178,1.30847 0.89286,1.48384 1.45942,0.52123 1.60595,-0.15 0.31462,-1.44132 z m -10.40456,-7.52041 c -0.70544,-0.70019 -0.78749,-0.61814 -0.39986,0.39986 0.26824,0.70444 0.66764,1.10087 0.88756,0.88095 0.21992,-0.21993 4.6e-4,-0.79628 -0.4877,-1.28081 z m -2.23149,-1.55308 c 0,-0.17324 -0.32143,-0.51364 -0.71429,-0.75644 -0.39286,-0.2428 -0.71428,-0.10106 -0.71428,0.31498 0,0.41605 0.32142,0.75645 0.71428,0.75645 0.39286,0 0.71429,-0.14175 0.71429,-0.31499 z m -16.07143,-12.54216 c -0.2428,-0.39285 -0.76288,-0.71428 -1.15574,-0.71428 -0.39285,0 -0.51563,0.32143 -0.27283,0.71428 0.2428,0.39286 0.76288,0.71429 1.15573,0.71429 0.39286,0 0.51564,-0.32143 0.27284,-0.71429 z m -3.12565,-2.33333 c -0.70544,-0.70019 -0.78749,-0.61815 -0.39986,0.39985 0.26824,0.70445 0.66764,1.10088 0.88756,0.88095 0.21992,-0.21992 4.6e-4,-0.79627 -0.4877,-1.2808 z m -7.23149,-5.12451 c 0,-0.17324 -0.32143,-0.51364 -0.71429,-0.75644 -0.39286,-0.2428 -0.71429,-0.10106 -0.71429,0.31498 0,0.41605 0.32143,0.75645 0.71429,0.75645 0.39286,0 0.71429,-0.14175 0.71429,-0.31499 z m -4.47279,-4.25984 c -0.86168,-0.86168 -1.00341,-0.71996 -1.00341,1.0034 0,1.72335 0.14173,1.86508 1.00341,1.0034 0.86167,-0.86168 0.86167,-1.14512 0,-2.0068 z m 42.82492,-3.80444 c -0.1811,-0.69498 -0.34118,-0.29931 -0.35574,0.87927 -0.0146,1.17857 0.13361,1.74718 0.32928,1.26359 0.19565,-0.48359 0.20756,-1.44788 0.0265,-2.14286 z m -47.63785,-5.59146 c 0,-0.61247 -0.32667,-0.91169 -0.72593,-0.66493 -0.39927,0.24676 -0.54102,0.74787 -0.31499,1.11358 0.61231,0.99075 1.04092,0.80601 1.04092,-0.44865 z m 39.77365,-39.02035 c -0.22801,-0.5698 -0.39727,-0.40055 -0.43154,0.43155 -0.031,0.75298 0.1378,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85342 0.0564,-1.36905 z m -47.63079,-41.29464 c 0,-0.39286 -0.14174,-0.71428 -0.31499,-0.71428 -0.17324,0 -0.51364,0.32142 -0.75644,0.71428 -0.2428,0.39286 -0.10106,0.71429 0.31499,0.71429 0.41604,0 0.75644,-0.32143 0.75644,-0.71429 z m 105.48793,-8.70536 c -0.22801,-0.5698 -0.39727,-0.40055 -0.43154,0.43155 -0.031,0.75298 0.1378,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85342 0.0564,-1.36905 z m 1.43563,-1.10247 c -0.1811,-0.69498 -0.34118,-0.29931 -0.35574,0.87926 -0.0146,1.17857 0.13361,1.74719 0.32928,1.26359 0.19566,-0.48359 0.20756,-1.44788 0.0265,-2.14285 z m -100.13785,0.52212 c 0.2428,-0.39286 0.10106,-0.71429 -0.31498,-0.71429 -0.41605,0 -0.75645,0.32143 -0.75645,0.71429 0,0.39285 0.14175,0.71428 0.31499,0.71428 0.17324,0 0.51364,-0.32143 0.75644,-0.71428 z m 11.76983,-9.10715 c -0.009,-0.29464 -0.64444,-1.33928 -1.41268,-2.32142 -2.72769,-3.48715 -0.96593,-9.12498 3.36615,-10.77203 0.96247,-0.36593 1.62339,-1.04505 1.46869,-1.50915 -0.43142,-1.29425 -1.9777,-1.5495 -1.9777,-0.32648 0,0.59555 -0.58498,1.26848 -1.29996,1.49541 -1.38502,0.43959 -4.41433,5.49605 -4.41433,7.3683 0,1.92835 2.37262,6.60109 3.35175,6.60109 0.51368,0 0.92682,-0.24107 0.91808,-0.53572 z m 61.76564,-13.86366 c 0.41803,-4.68549 1.26078,-7.73299 2.01036,-7.26972 0.41048,0.25369 0.54527,0.13593 0.29952,-0.2617 -0.41739,-0.67535 0.12107,-3.20487 1.29954,-6.10492 0.35867,-0.88263 0.17061,-1.25 -0.63989,-1.25 -0.63133,0 -1.0675,-0.40178 -0.96928,-0.89285 0.0982,-0.49107 -0.46429,-0.89286 -1.25,-0.89286 -0.78572,0 -1.78487,-0.23192 -2.22033,-0.51539 -0.54088,-0.35207 -0.72532,0.32201 -0.58207,2.12741 0.11534,1.45354 0.50998,2.74289 0.877,2.86523 0.37951,0.1265 0.22667,1.50137 -0.3544,3.18794 -1.3159,3.81941 -1.43944,9.43715 -0.23934,10.88318 1.18639,1.42952 1.50402,1.09259 1.76889,-1.87632 z m -46.03547,-2.38634 c 0,-4.23922 -0.26313,-4.55826 -2.26518,-2.74643 -1.65519,1.49792 -1.68437,4.44477 -0.0562,5.68068 2.03852,1.54746 2.32143,1.18987 2.32143,-2.93425 z m 31.2413,-2.78865 c -0.0936,-2.12633 -0.465,-3.6778 -0.82697,-3.45425 -0.36141,0.2232 -0.45185,-0.12905 -0.20098,-0.78278 0.60282,-1.57094 -0.1165,-3.33146 -1.3612,-3.33146 -1.50725,0 -1.19538,-1.31108 0.73812,-3.10299 1.79886,-1.66712 3.25738,-8.32558 1.8237,-8.32558 -0.38482,0 -0.70407,0.88393 -0.70943,1.96429 -0.0151,3.05467 -0.67569,4.81692 -2.15074,5.7381 -1.38598,0.86556 -3.5538,0.4913 -3.5538,-0.61353 0,-0.3385 0.49529,-0.4254 1.10064,-0.1931 0.60536,0.2323 1.03559,0.14185 0.95608,-0.20099 -0.0795,-0.34283 0.22878,-1.52819 0.68508,-2.63413 1.0173,-2.46563 1.04765,-3.34635 0.11535,-3.34635 -0.39286,0 -0.71429,-0.44776 -0.71429,-0.99501 0,-2.2127 -4.89556,-2.52216 -6.78968,-0.42919 -1.62431,1.79485 -0.82668,2.7884 0.94869,1.18172 1.60893,-1.45606 3.46637,-1.5199 4.82058,-0.16569 1.40224,1.40224 1.2783,2.81051 -0.37938,4.31069 -1.82127,1.64823 -5.02878,0.97278 -5.02878,-1.05899 0,-0.77823 -0.32143,-1.41496 -0.71429,-1.41496 -1.26173,0 -0.76322,2.09392 0.89277,3.7499 0.95226,0.95227 1.60709,2.4802 1.60714,3.75 6e-5,1.20858 0.35291,2.07726 0.80924,1.99228 0.44504,-0.0829 1.01716,0.88142 1.27138,2.14286 0.30237,1.50033 0.65541,1.98357 1.02081,1.39729 0.38163,-0.61233 1.04228,0.01 2.08546,1.96428 0.90163,1.68919 1.19795,2.86053 0.72362,2.86053 -0.84513,0 1.5642,2.74142 2.47373,2.81469 0.28986,0.0234 0.45057,-1.69458 0.35715,-3.81763 z m -35.52701,-2.61065 c 0,-0.36967 -0.32143,-0.67212 -0.71429,-0.67212 -0.39285,0 -0.71428,0.50111 -0.71428,1.11358 0,0.61247 0.32143,0.91493 0.71428,0.67213 0.39286,-0.2428 0.71429,-0.74391 0.71429,-1.11359 z m 70.55059,-0.0918 c -0.15551,-0.46652 -0.66465,-0.97552 -1.13143,-1.13111 -0.52197,-0.17399 -0.6816,0.15256 -0.41465,0.84821 0.49822,1.29837 1.97462,1.56852 1.54608,0.2829 z m -34.34837,-4.28571 c -0.22801,-0.56981 -0.39727,-0.40056 -0.43154,0.43155 -0.031,0.75297 0.1378,1.17485 0.37515,0.9375 0.23735,-0.23735 0.26273,-0.85343 0.0564,-1.36905 z M 434.60391,722.4923 c 0.0726,-2.49586 -0.40463,-1.59023 -0.90962,1.72619 -0.3032,1.99129 -0.2389,2.42422 0.21218,1.42858 0.35598,-0.78572 0.66983,-2.20536 0.69744,-3.15477 z m -9.46186,-4.47916 c -0.22801,-0.56981 -0.39727,-0.40056 -0.43154,0.43155 -0.031,0.75297 0.1378,1.17485 0.37515,0.9375 0.23735,-0.23735 0.26273,-0.85343 0.0564,-1.36905 z m 26.65492,-2.00893 c 0,-0.39286 -0.14174,-0.71429 -0.31498,-0.71429 -0.17325,0 -0.51365,0.32143 -0.75645,0.71429 -0.2428,0.39286 -0.10105,0.71428 0.31499,0.71428 0.41604,0 0.75644,-0.32142 0.75644,-0.71428 z m -58.23236,-2.11361 c 0.45854,-0.74193 -1.65863,-8.54426 -3.55312,-13.09417 -0.36561,-0.87809 -0.23975,-1.21406 0.4014,-1.07143 0.5645,0.12558 1.00662,-0.57586 1.11752,-1.773 0.12438,-1.3425 -0.0811,-1.81724 -0.63761,-1.47329 -2.03919,1.26029 -4.16906,0.85446 -4.84491,-0.92317 -0.90718,-2.38605 -0.85709,-3.31683 0.14516,-2.69741 0.51503,0.31831 0.63059,0.19566 0.30779,-0.32664 -0.28428,-0.45996 -0.81608,-0.65137 -1.1818,-0.42535 -0.36571,0.22603 -0.66493,0.006 -0.66493,-0.48835 0,-0.69945 -0.19047,-0.70882 -0.85714,-0.0421 -1.12759,1.12759 -2.22558,1.10263 -1.57049,-0.0357 0.2826,-0.49107 0.24145,-0.64524 -0.0915,-0.3426 -0.79099,0.71913 -0.98831,3.42304 -0.21491,2.94506 0.78825,-0.48717 2.1622,3.19625 1.55731,4.17498 -0.29985,0.48517 -0.13003,0.55299 0.46455,0.18551 0.70453,-0.43542 0.83206,-0.17725 0.51373,1.04003 -0.31672,1.21114 -0.0751,1.71032 0.95891,1.98071 1.33924,0.35022 1.51612,0.61706 1.66807,2.51631 0.0393,0.49107 0.39285,1.13393 0.78571,1.42857 0.44937,0.33703 0.31691,0.82562 -0.35714,1.31738 -0.9228,0.67323 -0.90729,0.72944 0.11181,0.40518 0.83247,-0.26488 1.46512,0.29745 2.13412,1.8969 0.52298,1.25037 0.87445,2.51447 0.78105,2.80911 -0.0934,0.29463 0.15159,0.5357 0.54445,0.5357 0.39285,0 0.71428,0.48214 0.71428,1.07143 0,1.19771 1.11551,1.44156 1.76764,0.38639 z m 2.51808,-2.17211 c 0,-0.39285 -0.14175,-0.71428 -0.31499,-0.71428 -0.17324,0 -0.51364,0.32143 -0.75644,0.71428 -0.2428,0.39286 -0.10106,0.71429 0.31498,0.71429 0.41605,0 0.75645,-0.32143 0.75645,-0.71429 z m 90.09146,-5.39904 c 1.55393,-2.64846 1.64279,-4.33081 0.25684,-4.86265 -0.8385,-0.32176 -0.98514,-0.0356 -0.65525,1.27883 0.48887,1.94781 -1.87662,5.16614 -4.55746,6.2006 -0.90757,0.3502 -1.45897,0.94603 -1.22534,1.32406 0.65877,1.0659 4.78837,-1.56693 6.18121,-3.94084 z m -29.64056,2.14192 c 1.03109,-1.57365 1.05769,-1.96898 0.1908,-2.83587 -1.33525,-1.33525 -4.03927,-0.58006 -4.63415,1.29426 -0.31671,0.99786 -0.0489,1.78229 0.82715,2.42288 1.80072,1.31673 2.24732,1.20788 3.6162,-0.88127 z m -62.82011,-1.16252 c -0.22802,-0.56981 -0.39727,-0.40056 -0.43154,0.43155 -0.031,0.75297 0.1378,1.17485 0.37515,0.9375 0.23735,-0.23735 0.26272,-0.85343 0.0564,-1.36905 z m 87.01206,-1.12701 c 0.39286,-0.28862 1.29057,-1.20817 1.99492,-2.04344 1.21944,-1.44609 1.22165,-1.64236 0.0463,-4.10714 -1.05984,-2.22249 -1.57636,-2.58848 -3.65309,-2.58848 -2.38185,0 -4.45955,1.30736 -4.45955,2.80612 0,0.42092 0.32143,0.76531 0.71429,0.76531 0.39286,0 0.71429,-0.31012 0.71429,-0.68916 0,-0.37903 0.66441,-1.04473 1.47647,-1.47933 1.77383,-0.94933 4.9521,0.7607 4.9521,2.66442 0,2.91838 -4.29577,4.92259 -6.28572,2.93264 -0.52768,-0.52769 -0.85714,-0.56964 -0.85714,-0.10915 0,0.74247 2.55906,2.26386 3.92857,2.33559 0.39286,0.0206 1.03572,-0.19875 1.42857,-0.48738 z m -8.1909,-8.33387 c 0.8425,-0.8425 0.90137,-1.83376 0.10891,-1.83376 -1.11515,0 -3.05076,5.11178 -2.53031,6.68229 0.42999,1.29752 0.60127,1.09659 1.11909,-1.31281 0.33626,-1.56465 0.92231,-3.15572 1.30231,-3.53572 z m -63.59481,2.45195 c 0,-0.78571 -0.29134,-1.42857 -0.64742,-1.42857 -0.35607,0 -0.4793,0.64286 -0.27383,1.42857 0.20547,0.78572 0.49681,1.42857 0.64741,1.42857 0.15061,0 0.27384,-0.64285 0.27384,-1.42857 z m 46.02938,-9.62014 c -1.61097,-1.21847 -2.45795,-1.36741 -2.45795,-0.43223 0,0.36405 0.5625,0.80891 1.25,0.98857 2.33974,0.61144 2.5959,0.49346 1.20795,-0.55634 z m -3.88652,-2.8377 c 0,-0.17324 -0.32143,-0.51364 -0.71429,-0.75644 -0.39286,-0.2428 -0.71429,-0.10106 -0.71429,0.31498 0,0.41605 0.32143,0.75645 0.71429,0.75645 0.39286,0 0.71429,-0.14175 0.71429,-0.31499 z m -5,-3.97073 c 0,-0.39286 -0.3404,-0.71428 -0.75645,-0.71428 -0.41604,0 -0.55778,0.32142 -0.31498,0.71428 0.2428,0.39286 0.5832,0.71429 0.75644,0.71429 0.17324,0 0.31499,-0.32143 0.31499,-0.71429 z m -3.57143,-2.85714 c -2.31126,-1.80789 -3.51257,-1.83734 -1.73212,-0.0424 0.75624,0.76236 1.85712,1.39807 2.4464,1.41269 0.69467,0.0172 0.44349,-0.46462 -0.71428,-1.37024 z m -17.14286,-13.1721 c 0,-0.17324 -0.32143,-0.51364 -0.71429,-0.75644 -0.39285,-0.2428 -0.71428,-0.10106 -0.71428,0.31498 0,0.41605 0.32143,0.75645 0.71428,0.75645 0.39286,0 0.71429,-0.14175 0.71429,-0.31499 z m -8.92857,-6.82787 c -0.2428,-0.39286 -0.76288,-0.71429 -1.15574,-0.71429 -0.39285,0 -0.51563,0.32143 -0.27283,0.71429 0.2428,0.39286 0.76288,0.71428 1.15573,0.71428 0.39286,0 0.51564,-0.32142 0.27284,-0.71428 z m -3.12565,-2.33334 c -0.70544,-0.70018 -0.78749,-0.61814 -0.39986,0.39986 0.26824,0.70444 0.66764,1.10087 0.88756,0.88095 0.21992,-0.21992 4.6e-4,-0.79628 -0.4877,-1.28081 z m -10.80292,-8.38095 c 0,-0.39285 -0.3404,-0.71428 -0.75645,-0.71428 -0.41604,0 -0.55778,0.32143 -0.31498,0.71428 0.2428,0.39286 0.5832,0.71429 0.75644,0.71429 0.17324,0 0.31499,-0.32143 0.31499,-0.71429 z m -2.85715,-2.14285 c -0.58928,-0.38083 -1.39285,-0.69241 -1.78571,-0.69241 -0.39286,0 -0.23214,0.31158 0.35714,0.69241 0.58929,0.38082 1.39286,0.6924 1.78572,0.6924 0.39285,0 0.23214,-0.31158 -0.35715,-0.6924 z m 38.34508,-1.5625 c -0.22801,-0.56981 -0.39727,-0.40056 -0.43154,0.43155 -0.031,0.75297 0.1378,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85343 0.0564,-1.36905 z m -42.63079,-1.60963 c 0,-0.17325 -0.32143,-0.51365 -0.71429,-0.75645 -0.39285,-0.2428 -0.71428,-0.10105 -0.71428,0.31499 0,0.41604 0.32143,0.75644 0.71428,0.75644 0.39286,0 0.71429,-0.14174 0.71429,-0.31498 z m -4.30004,-3.63085 c -0.49695,-0.59878 -1.08949,-0.90273 -1.31677,-0.67545 -0.22729,0.22728 0.0596,0.71228 0.6375,1.07775 1.51212,0.9563 1.7097,0.83928 0.67927,-0.4023 z m -2.14378,-1.58988 c -0.0214,-0.75102 -5.70508,-4.69634 -6.13961,-4.2618 -0.19578,0.19577 0.70719,1.10262 2.00659,2.01522 1.2994,0.91259 2.4697,1.91194 2.60065,2.22078 0.3035,0.71575 1.55261,0.73678 1.53237,0.0258 z m 43.36738,-2.12927 c -0.1811,-0.69497 -0.34118,-0.2993 -0.35574,0.87927 -0.0146,1.17857 0.13362,1.74718 0.32928,1.26359 0.19566,-0.48359 0.20756,-1.44788 0.0265,-2.14286 z m 72.83521,-3.94216 c -0.19815,-0.49107 -0.36028,-0.0893 -0.36028,0.89286 0,0.98214 0.16213,1.38393 0.36028,0.89285 0.19815,-0.49107 0.19815,-1.29464 0,-1.78571 z m -125.8302,-1.25 c -0.2428,-0.39286 -0.76288,-0.71429 -1.15574,-0.71429 -0.39285,0 -0.51563,0.32143 -0.27283,0.71429 0.2428,0.39286 0.76288,0.71429 1.15574,0.71429 0.39286,0 0.51563,-0.32143 0.27283,-0.71429 z m -25.35714,-2.06644 c 0,-0.35082 -0.52761,-0.84032 -1.17246,-1.08777 -0.98034,-0.3762 -1.02453,-0.27168 -0.26968,0.63786 1.02866,1.23946 1.44214,1.36846 1.44214,0.44991 z m 22.85714,-0.0764 c 0,-0.39285 -0.32143,-0.71428 -0.71428,-0.71428 -0.39286,0 -0.71429,0.32143 -0.71429,0.71428 0,0.39286 0.32143,0.71429 0.71429,0.71429 0.39285,0 0.71428,-0.32143 0.71428,-0.71429 z m -3.92857,-3.21264 c -0.78571,-0.56339 -1.81679,-1.35674 -2.29128,-1.76299 -0.47449,-0.40626 -1.11059,-0.73865 -1.41355,-0.73865 -1.04522,0 2.9931,3.48513 4.06197,3.50553 0.77856,0.0149 0.68094,-0.25954 -0.35714,-1.00389 z m -19.38455,-0.71593 c -0.22613,-0.58928 -0.53747,-1.07143 -0.69187,-1.07143 -0.1544,0 -0.28072,0.48215 -0.28072,1.07143 0,0.58929 0.31134,1.07143 0.69187,1.07143 0.38052,0 0.50685,-0.48214 0.28072,-1.07143 z m -1.91323,-2.63393 c -0.22801,-0.5698 -0.39727,-0.40055 -0.43154,0.43155 -0.031,0.75297 0.1378,1.17485 0.37515,0.9375 0.23735,-0.23735 0.26273,-0.85343 0.0564,-1.36905 z m 9.51207,-5.13575 c 0,-0.14833 -0.4895,-0.67593 -1.08778,-1.17246 -0.90954,-0.75484 -1.01406,-0.71066 -0.63787,0.26968 0.38421,1.00124 1.72565,1.70302 1.72565,0.90278 z m -13.57143,-9.73032 c 0,-0.39286 -0.14175,-0.71428 -0.31499,-0.71428 -0.17324,0 -0.51364,0.32142 -0.75644,0.71428 -0.2428,0.39286 -0.10106,0.71429 0.31499,0.71429 0.41604,0 0.75644,-0.32143 0.75644,-0.71429 z m -1.65492,-2.27678 c -0.22802,-0.56981 -0.39727,-0.40056 -0.43155,0.43155 -0.031,0.75297 0.13781,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26273,-0.85343 0.0564,-1.36905 z M 335.3684,571.00424 c 0,-0.39286 -0.3404,-0.71429 -0.75644,-0.71429 -0.41604,0 -0.55779,0.32143 -0.31499,0.71429 0.2428,0.39286 0.5832,0.71428 0.75644,0.71428 0.17325,0 0.31499,-0.32142 0.31499,-0.71428 z m 191.40669,-14.64286 c 0,-0.39286 -0.31158,-0.23214 -0.6924,0.35714 -0.38083,0.58929 -0.69241,1.39286 -0.69241,1.78572 0,0.39286 0.31158,0.23214 0.69241,-0.35714 0.38082,-0.58929 0.6924,-1.39286 0.6924,-1.78572 z m -195.12294,-1.16761 c -0.22492,-1.42978 -0.32552,-1.32917 -0.65435,0.65434 -0.23532,1.41944 -0.13049,2.08579 0.26578,1.68952 0.35989,-0.35988 0.53474,-1.41463 0.38857,-2.34386 z m 1.34705,-0.0377 c -0.22802,-0.5698 -0.39728,-0.40055 -0.43155,0.43155 -0.031,0.75297 0.1378,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85343 0.0564,-1.36905 z m 63.08349,-5.66469 c 0,-0.39286 -0.32143,-0.51564 -0.71429,-0.27284 -0.39286,0.2428 -0.71429,0.76288 -0.71429,1.15574 0,0.39286 0.32143,0.51564 0.71429,0.27284 0.39286,-0.2428 0.71429,-0.76288 0.71429,-1.15574 z m 36.90162,-20.80855 c -0.19815,-0.49107 -0.36027,-0.0893 -0.36027,0.89286 0,0.98214 0.16212,1.38393 0.36027,0.89285 0.19815,-0.49107 0.19815,-1.29464 0,-1.78571 z m 0,-11.42857 c -0.19815,-0.49107 -0.36027,-0.0893 -0.36027,0.89286 0,0.98214 0.16212,1.38392 0.36027,0.89285 0.19815,-0.49107 0.19815,-1.29464 0,-1.78571 z m -110.69234,-1.77212 c -0.18111,-0.69498 -0.34119,-0.29931 -0.35575,0.87926 -0.0146,1.17857 0.13362,1.74719 0.32928,1.26359 0.19566,-0.48359 0.20757,-1.44787 0.0265,-2.14285 z m -1.45051,-1.79931 c -0.19815,-0.49107 -0.36028,-0.0893 -0.36028,0.89286 0,0.98214 0.16213,1.38393 0.36028,0.89285 0.19815,-0.49107 0.19815,-1.29464 0,-1.78571 z m 181.47635,0.46131 c -0.23735,-0.23735 -0.85343,-0.26272 -1.36905,-0.0564 -0.56981,0.22801 -0.40056,0.39727 0.43155,0.43154 0.75297,0.031 1.17485,-0.1378 0.9375,-0.37515 z m -5.52084,-6.31201 c 0,-0.17324 -0.32143,-0.51364 -0.71428,-0.75644 -0.39286,-0.2428 -0.71429,-0.10106 -0.71429,0.31498 0,0.41605 0.32143,0.75645 0.71429,0.75645 0.39285,0 0.71428,-0.14175 0.71428,-0.31499 z m 42.61592,-3.43501 c -0.19815,-0.49108 -0.36028,-0.0893 -0.36028,0.89285 0,0.98215 0.16213,1.38393 0.36028,0.89286 0.19815,-0.49107 0.19815,-1.29464 0,-1.78571 z M 430.85634,502.2989 c -0.22802,-0.56981 -0.39728,-0.40056 -0.43155,0.43155 -0.031,0.75297 0.1378,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85343 0.0564,-1.36905 z m 0.6994,-10.75893 c -0.19815,-0.49107 -0.36028,-0.0893 -0.36028,0.89286 0,0.98214 0.16213,1.38393 0.36028,0.89286 0.19815,-0.49107 0.19815,-1.29465 0,-1.78572 z m 40.18171,-0.27533 c 0.16369,-0.14321 -1.52381,-0.26038 -3.75,-0.26038 -2.31207,0 -4.04762,0.31682 -4.04762,0.73888 0,0.66917 6.97506,0.24114 7.79762,-0.4785 z m 5.58036,0.0224 c -0.23736,-0.23735 -0.85343,-0.26272 -1.36905,-0.0564 -0.56981,0.22801 -0.40056,0.39727 0.43155,0.43154 0.75297,0.031 1.17485,-0.13781 0.9375,-0.37516 z m -15.11962,-5.63795 c -0.0242,-2.94537 -0.28515,-5.35609 -0.57979,-5.35715 -0.29464,-7.1e-4 -0.53571,2.4088 -0.53571,5.35523 0,2.94642 0.2609,5.35714 0.57978,5.35714 0.31889,0 0.55996,-2.40985 0.53572,-5.35522 z m 9.59878,4.10143 c 0,-0.29673 -1.125,-0.89163 -2.5,-1.322 -1.375,-0.43037 -2.5,-0.50902 -2.5,-0.17478 0,0.33424 0.48214,0.60771 1.07143,0.60771 0.58929,0 1.07143,0.32143 1.07143,0.71429 0,0.39285 0.64286,0.71428 1.42857,0.71428 0.78571,0 1.42857,-0.24278 1.42857,-0.5395 z m 0.96774,-1.97315 c -0.2288,-0.59624 -0.92057,-0.99803 -1.53726,-0.89285 -0.68702,0.11716 -1.28977,-0.49756 -1.55637,-1.5873 -0.28276,-1.15574 -0.62049,-1.47856 -0.96452,-0.92191 -0.72947,1.1803 0.942,3.65052 2.70804,4.00214 0.79959,0.1592 1.52407,0.33323 1.60996,0.38673 0.0859,0.0535 -0.0311,-0.39056 -0.25985,-0.98681 z m 1.67921,-4.09449 c -0.17025,-0.88393 -0.30955,-0.16071 -0.30955,1.60714 0,1.76786 0.1393,2.49107 0.30955,1.60715 0.17026,-0.88393 0.17026,-2.33036 0,-3.21429 z m 5.46188,0.53571 c 0.30921,-2.43815 0.23129,-3.23145 -0.24558,-2.5 -0.63034,0.96686 -1.07548,7.07865 -0.46388,6.36905 0.14109,-0.16369 0.46035,-1.90476 0.70946,-3.86905 z m -12.51595,-1.78571 c 0.0129,-0.65641 -0.21679,-0.51808 -0.59288,0.35714 -0.33763,0.78572 -0.60443,2.07143 -0.59288,2.85715 0.0169,1.14842 0.13315,1.07837 0.59288,-0.35715 0.31454,-0.98214 0.58134,-2.26785 0.59288,-2.85714 z m 10.47855,-0.71429 c -0.2428,-0.39285 -0.74391,-0.71428 -1.11359,-0.71428 -0.36967,0 -0.67212,0.32143 -0.67212,0.71428 0,0.39286 0.50111,0.71429 1.11358,0.71429 0.61247,0 0.91493,-0.32143 0.67213,-0.71429 z m -6.60714,-0.47305 c -0.49107,-0.19815 -1.29465,-0.19815 -1.78572,0 -0.49107,0.19815 -0.0893,0.36028 0.89286,0.36028 0.98214,0 1.38393,-0.16213 0.89286,-0.36028 z m -4.10715,-2.38409 c -0.2428,-0.39286 -0.90462,-0.71428 -1.47072,-0.71428 -0.5661,0 -1.02928,0.32142 -1.02928,0.71428 0,0.39286 0.66183,0.71429 1.47073,0.71429 0.8089,0 1.27207,-0.32143 1.02927,-0.71429 z m 8.21429,0.0136 c 0,-0.94945 -2.93866,-1.62236 -5.44941,-1.24783 -1.78352,0.26605 -1.70722,0.31983 0.58582,0.41292 1.45003,0.0589 2.83508,0.42845 3.07788,0.82131 0.56713,0.91765 1.78571,0.92693 1.78571,0.0136 z m 15,-3.97862 c 0,-0.27259 -0.48214,-0.0955 -1.07143,0.39359 -0.58928,0.48906 -1.07143,1.19423 -1.07143,1.56705 0,0.37281 0.48215,0.1957 1.07143,-0.39358 0.58929,-0.58929 1.07143,-1.29447 1.07143,-1.56706 z m 4.82367,-4.15829 c 1.27802,-1.16067 2.18984,-2.24413 2.02629,-2.40769 -0.16356,-0.16355 -1.69135,1.05432 -3.3951,2.7064 -3.40506,3.3018 -2.33974,3.06931 1.36881,-0.29871 z m -40.07877,-4.37666 c -1.19884,-1.19883 -2.60204,-1.41967 -2.60204,-0.40951 0,0.58014 1.2256,1.13525 3.08673,1.39808 0.3227,0.0456 0.1046,-0.39928 -0.48469,-0.98857 z m 44.79036,-0.42504 c 0.70473,-0.82306 1.15351,-1.62428 0.9973,-1.78049 -0.15621,-0.15621 -0.98067,0.5172 -1.83214,1.49647 -0.85146,0.97927 -1.30025,1.78049 -0.9973,1.78049 0.30295,0 1.12742,-0.67341 1.83214,-1.49647 z m -48.82097,-2.38994 c 0,-0.17325 -0.32143,-0.51365 -0.71429,-0.75645 -0.39286,-0.2428 -0.71429,-0.10105 -0.71429,0.31499 0,0.41604 0.32143,0.75644 0.71429,0.75644 0.39286,0 0.71429,-0.14174 0.71429,-0.31498 z m 53.90405,-3.1494 c -0.40248,-0.42368 -1.7612,0.6501 -1.7612,1.39184 0,0.38516 0.44972,0.28583 0.99939,-0.22072 0.54966,-0.50657 0.89248,-1.03357 0.76181,-1.17112 z m -56.24036,0.88997 c -0.23736,-0.23735 -0.85343,-0.26272 -1.36905,-0.0564 -0.56981,0.22801 -0.40056,0.39727 0.43155,0.43154 0.75297,0.031 1.17485,-0.13781 0.9375,-0.37516 z m -2.66369,-1.7113 c 0,-0.39286 -0.3404,-0.71429 -0.75645,-0.71429 -0.41604,0 -0.55778,0.32143 -0.31498,0.71429 0.2428,0.39285 0.5832,0.71428 0.75644,0.71428 0.17324,0 0.31499,-0.32143 0.31499,-0.71428 z m -3.57143,-2.85715 c -2.31126,-1.80789 -3.51257,-1.83733 -1.73212,-0.0424 0.75624,0.76236 1.85712,1.39807 2.4464,1.41268 0.69467,0.0172 0.44349,-0.46461 -0.71428,-1.37023 z m -16.9433,-1.4569 c -0.20955,-0.8013 -0.5406,-1.2973 -0.73566,-1.10223 -0.38643,0.38642 0.29614,2.55913 0.80396,2.55913 0.17198,0 0.14124,-0.6556 -0.0683,-1.4569 z m 86.53401,-0.34415 c 0.75704,-0.57273 1.18007,-1.23768 0.94008,-1.47767 -0.23999,-0.23999 -1.16106,0.23883 -2.04683,1.06405 -1.82086,1.69639 -0.99618,2.0046 1.10675,0.41362 z m -72.805,-1.05609 c 0.2428,-0.39286 -0.0407,-0.71428 -0.62998,-0.71428 -0.58928,0 -1.27008,0.32142 -1.51288,0.71428 -0.2428,0.39286 0.0407,0.71429 0.62998,0.71429 0.58929,0 1.27008,-0.32143 1.51288,-0.71429 z m 77.82923,-3.92265 c 1.16322,-0.95063 1.90086,-1.9425 1.63919,-2.20416 -0.26165,-0.26167 -1.47918,0.52768 -2.7056,1.7541 -2.63325,2.63325 -1.95517,2.91942 1.06641,0.45006 z m -65.52268,-0.79461 c -0.23736,-0.23735 -0.85343,-0.26272 -1.36905,-0.0564 -0.56981,0.22801 -0.40056,0.39727 0.43155,0.43154 0.75297,0.031 1.17485,-0.1378 0.9375,-0.37515 z m 72.88602,-6.61642 c 1.28447,-1.34633 2.19407,-2.5892 2.02132,-2.76195 -0.33802,-0.33802 -6.85675,6.05556 -6.85675,6.7251 0,0.60195 2.20147,-1.2024 4.83543,-3.96315 z m 12.79537,2.62832 c -0.22802,-0.5698 -0.39727,-0.40055 -0.43155,0.43155 -0.031,0.75298 0.13781,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85342 0.0564,-1.36905 z M 420.3684,444.53351 c 0,-0.36967 -0.26786,-0.67213 -0.59524,-0.67213 -0.32738,0 -0.59524,0.46801 -0.59524,1.04001 0,0.57201 0.26786,0.87446 0.59524,0.67213 0.32738,-0.20233 0.59524,-0.67034 0.59524,-1.04001 z m 48.04931,-1.14066 c -0.4836,-0.19565 -1.44788,-0.20756 -2.14286,-0.0265 -0.69498,0.1811 -0.29931,0.34119 0.87926,0.35575 1.17858,0.0146 1.74719,-0.13362 1.2636,-0.32928 z m -54.22835,-5.62578 c -0.55802,-1.45417 -0.89472,-1.30986 -0.77115,0.33054 0.0571,0.7585 0.34455,1.23035 0.6387,1.04856 0.29415,-0.1818 0.35375,-0.80239 0.13245,-1.3791 z m 114.75047,0.38003 c 0,-0.39286 -0.14174,-0.71429 -0.31499,-0.71429 -0.17324,0 -0.51364,0.32143 -0.75644,0.71429 -0.2428,0.39285 -0.10106,0.71428 0.31499,0.71428 0.41604,0 0.75644,-0.32143 0.75644,-0.71428 z M 322.28491,424.44174 c -0.22802,-0.56981 -0.39727,-0.40056 -0.43155,0.43155 -0.031,0.75297 0.13781,1.17485 0.37516,0.9375 0.23735,-0.23736 0.26273,-0.85343 0.0564,-1.36905 z m 83.78345,-3.81191 c -0.49695,-0.59878 -1.08949,-0.90273 -1.31677,-0.67544 -0.22729,0.22728 0.0596,0.71227 0.6375,1.07775 1.51212,0.95629 1.7097,0.83928 0.67927,-0.40231 z m -11.47377,-5.59653 c -0.16369,-0.14117 -1.2619,-0.47236 -2.44048,-0.73599 -1.56494,-0.35005 -1.8539,-0.28379 -1.07142,0.24572 0.96455,0.65272 4.22867,1.10839 3.5119,0.49027 z m 131.97603,-4.87728 c -0.22801,-0.5698 -0.39727,-0.40055 -0.43154,0.43155 -0.031,0.75298 0.13781,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85342 0.0564,-1.36905 z m -144.77365,-0.18105 c 0,-0.17325 -0.32143,-0.51365 -0.71428,-0.75645 -0.39286,-0.2428 -0.71429,-0.10105 -0.71429,0.31499 0,0.41604 0.32143,0.75644 0.71429,0.75644 0.39285,0 0.71428,-0.14174 0.71428,-0.31498 z m -2.33631,-2.25942 c -0.23735,-0.23735 -0.85342,-0.26273 -1.36905,-0.0564 -0.5698,0.22801 -0.40055,0.39727 0.43155,0.43154 0.75298,0.031 1.17485,-0.13781 0.9375,-0.37516 z m -2.66369,-1.71131 c 0,-0.39286 -0.3404,-0.71429 -0.75644,-0.71429 -0.41604,0 -0.55779,0.32143 -0.31499,0.71429 0.2428,0.39286 0.5832,0.71428 0.75644,0.71428 0.17325,0 0.31499,-0.32142 0.31499,-0.71428 z m -2.85714,-2.85714 c 0,-0.39286 -0.44279,-0.71429 -0.98397,-0.71429 -0.54118,0 -1.38411,-0.48214 -1.87317,-1.07143 -0.48907,-0.58928 -1.18262,-1.07143 -1.54123,-1.07143 -0.35862,0 0.0825,0.78392 0.98031,1.74203 1.68754,1.80092 3.41806,2.36549 3.41806,1.11512 z m 146.91651,-7.99108 c -0.22802,-0.5698 -0.39728,-0.40055 -0.43155,0.43155 -0.031,0.75298 0.13781,1.17485 0.37516,0.9375 0.23735,-0.23735 0.26272,-0.85342 0.0564,-1.36905 z m -157.6308,0.53323 c 0,-0.17324 -0.32143,-0.51364 -0.71428,-0.75644 -0.39286,-0.2428 -0.71429,-0.10106 -0.71429,0.31499 0,0.41604 0.32143,0.75644 0.71429,0.75644 0.39285,0 0.71428,-0.14174 0.71428,-0.31499 z m -2.14285,-1.82787 c 0,-0.39286 -0.32143,-0.71428 -0.71429,-0.71428 -0.39286,0 -0.71429,0.32142 -0.71429,0.71428 0,0.39286 0.32143,0.71429 0.71429,0.71429 0.39286,0 0.71429,-0.32143 0.71429,-0.71429 z m -12.33586,-23.37692 c -0.15463,-1.48198 -0.28373,-0.44451 -0.2869,2.30549 -0.003,2.75 0.12334,3.96253 0.28114,2.69451 0.15779,-1.26803 0.16038,-3.51803 0.006,-5 z m 82.20541,-6.29762 c 0.78863,-0.63878 -5.73863,-1.01733 -6.79638,-0.39415 -1.01826,0.5999 -0.76473,0.67381 1.21254,0.35346 1.90679,-0.30893 2.24576,-0.22152 1.42857,0.36838 -0.8118,0.58601 -0.46563,0.66226 1.42857,0.31468 1.375,-0.25231 2.60202,-0.54138 2.7267,-0.64237 z m 12.68267,-0.0898 c -0.25176,-0.65609 -0.0451,-1.48998 0.4593,-1.8531 0.66216,-0.4767 0.57598,-0.55087 -0.31007,-0.26687 -0.67493,0.21633 -1.41711,0.0859 -1.6493,-0.28976 -0.2322,-0.3757 -0.0282,-0.68309 0.45331,-0.68309 0.48152,0 0.63216,-0.24107 0.33476,-0.53572 -0.2974,-0.29464 -1.2349,-0.53571 -2.08334,-0.53571 -1.02685,0 -1.50986,-0.41535 -1.44467,-1.24231 0.0539,-0.68328 -0.15079,-1.0886 -0.45479,-0.90072 -0.30398,0.18787 -0.92616,-0.1084 -1.3826,-0.65839 -0.56811,-0.68453 -0.59365,-1.14599 -0.0809,-1.46286 0.41194,-0.25459 0.74897,-0.12249 0.74897,0.29355 0,0.41605 0.32143,0.75644 0.71429,0.75644 0.39286,0 0.71428,-0.45348 0.71428,-1.00774 0,-1.05517 -4.3208,-1.02595 -8.92857,0.0604 -1.17857,0.27787 -2.38393,0.44398 -2.67857,0.36914 -0.29464,-0.0748 -0.53571,0.23517 -0.53571,0.68892 0,0.4936 -0.5247,0.35014 -1.30625,-0.35714 -1.7038,-1.54193 -1.9376,-1.4952 -2.08156,0.416 -0.092,1.22132 0.0314,1.35251 0.52344,0.5564 0.35411,-0.57295 0.87362,-0.81194 1.15448,-0.53109 0.65551,0.6555 -1.85473,3.46507 -2.65435,2.97088 -0.33104,-0.20459 -1.49344,0.13616 -2.58311,0.75722 -1.58837,0.90531 -1.66255,1.04368 -0.37408,0.69784 2.05956,-0.5528 2.10143,0.24237 0.0526,1.00026 l -1.55447,0.57503 1.55546,0.40676 c 0.99925,0.26131 1.38735,0.13477 1.08534,-0.35389 -0.32541,-0.52652 1.15809,-0.62416 4.81944,-0.3172 3.44048,0.28843 4.91537,0.20691 4.21913,-0.23322 -0.82606,-0.5222 -0.62199,-0.67918 0.89386,-0.68762 1.08036,-0.006 2.5692,0.59398 3.30855,1.33333 0.83642,0.83642 1.69863,1.12524 2.28228,0.76452 0.53752,-0.3322 1.7172,-0.15592 2.76288,0.41286 2.6154,1.42258 4.59373,1.35215 4.01995,-0.14311 z m -9.17425,-0.66723 c -0.23735,-0.23735 -0.85342,-0.26272 -1.36905,-0.0564 -0.5698,0.22802 -0.40055,0.39727 0.43155,0.43155 0.75298,0.031 1.17485,-0.13781 0.9375,-0.37516 z m -70.92733,-26.07688 c -0.26994,-0.43678 -0.0478,-1.10411 0.49356,-1.48295 0.8091,-0.56616 0.79359,-0.63679 -0.0871,-0.39667 -1.26727,0.34555 -1.89815,2.67377 -0.72451,2.67377 0.44485,0 0.58795,-0.35737 0.31801,-0.79415 z m 31.12078,-7.77728 c 0,-0.39286 -0.14174,-0.71429 -0.31498,-0.71429 -0.17324,0 -0.51364,0.32143 -0.75644,0.71429 -0.2428,0.39285 -0.10106,0.71428 0.31498,0.71428 0.41604,0 0.75644,-0.32143 0.75644,-0.71428 z m 1.42858,-4.28572 c 0,-0.39285 -0.14175,-0.71428 -0.31499,-0.71428 -0.17324,0 -0.51364,0.32143 -0.75644,0.71428 -0.2428,0.39286 -0.10106,0.71429 0.31498,0.71429 0.41605,0 0.75645,-0.32143 0.75645,-0.71429 z"
id="path864"
transform="scale(0.26458333)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 107.97793,33.725826 c -0.34921,4.355274 -2.1446,9.552448 -6.39683,10.308399 -4.252233,0.755952 -10.771608,3.707941 -14.267889,7.109726 -3.496278,3.401788 -5.103389,8.670781 -5.575861,15.285364 -0.472469,6.614583 1.889881,14.174107 1.039434,16.819941 -0.850445,2.645833 -5.764136,10.488837 -6.236608,15.68601 -0.472469,5.197174 0.175558,20.966214 -0.580393,23.234074 -0.755955,2.26786 -2.632402,7.19301 -2.632402,10.5003 0,3.30729 0.944941,6.14211 2.456844,7.18155 1.511906,1.03943 4.535715,4.63021 5.291666,3.77976 0.755952,-0.85045 -3.685267,-4.63021 -4.063243,-6.52009 -0.377976,-1.88988 -0.944941,-6.14211 0.377976,-6.14211 1.322917,0 0.566965,2.45685 1.322917,4.25223 0.755951,1.79539 0.566965,4.53572 1.606399,3.96875 1.039434,-0.56696 -0.188989,-4.25223 0.377976,-5.57515 0.566965,-1.32292 1.439164,-1.99502 1.984375,-3.87426 0.545211,-1.87923 -2.033014,-6.35877 -2.127507,-7.96517 -0.09449,-1.6064 2.977954,-8.57128 2.977954,-8.57128"
id="path910"
sodipodi:nodetypes="cssssssssssssssssc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 80.832327,137.32642 c 0.835218,0.93545 3.307461,4.00904 2.956668,4.32643 -0.35079,0.31738 -3.157119,-1.78737 -3.374276,-2.20498 -0.217157,-0.4176 -0.233863,-0.4176 -0.233863,-0.4176"
id="path912" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 77.257597,133.75169 c 0.217157,0.85193 1.41987,3.85871 1.854181,4.29302 0.434314,0.43431 3.591436,3.72507 3.775184,4.49347 0.183748,0.7684 -0.283975,0.96885 -0.584653,0.91874 -0.300678,-0.0501 -1.503391,-1.05238 -1.503391,-1.05238"
id="path914" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 93.832589,56.64918 c 2.078868,1.181177 3.496278,1.937128 2.173361,4.110493 -1.322916,2.173361 -1.08668,14.174107 -0.330729,16.441962 0.755955,2.267857 0.211184,3.146908 1.181177,6.000374 1.536359,4.519567 -4.514109,10.577873 -6.309497,12.609495 -1.795386,2.031629 -6.872423,14.982766 -7.014163,17.392366 -0.141742,2.4096 -1.039437,13.93787 -0.661458,16.06399 0.377976,2.12611 1.275667,10.44159 2.456844,14.07961 1.181177,3.63802 8.362722,26.74181 9.21317,28.63169 0.850447,1.88989 2.740326,4.53572 2.929316,6.23661 0.188986,1.70089 -1.181177,10.91406 -1.370164,12.94569 -0.188989,2.03162 -0.803201,11.71726 -0.236236,14.74107 0.566966,3.02381 14.97731,40.58519 15.54427,42.0026 0.56697,1.41741 1.03944,2.31511 0.99219,3.07106 -0.0473,0.75595 0.61421,6.52009 0,7.79576 -0.61421,1.27567 -6.03721,12.61857 -5.85863,13.93787 0.4094,3.02448 7.91183,5.6088 10.45238,5.16676 2.54056,-0.44204 8.15349,-2.12405 8.0212,-5.403 -0.0628,-1.55787 -6.18936,-14.07961 -6.42559,-15.7805 -0.23624,-1.7009 -1.79539,-6.66183 -1.84264,-7.60677 -0.0472,-0.94494 -0.56696,-41.67188 -0.66145,-43.56176 -0.0945,-1.88988 0.0472,-5.33891 -0.8032,-7.37054 -0.85045,-2.03162 -0.66146,-2.26785 -0.66146,-2.26785 0,0 -2.78758,-11.859 -2.26786,-13.18192 0.51972,-1.32292 2.45685,-6.3311 2.50409,-9.35491 0.0472,-3.02381 0.51972,-41.34115 0.0472,-44.4122 -0.47247,-3.07106 -0.37798,-9.07143 -2.88207,-11.85901 -2.50409,-2.78757 -6.04762,-6.04761 -8.88244,-6.52009"
id="path916"
sodipodi:nodetypes="cssssssssssssssssssssccsscsc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 125.06287,116.51116 c -1.70089,-0.0473 -5.14992,0.94494 -6.89807,1.5119 -1.74813,0.56697 -2.78757,1.55916 -5.05543,1.18118"
id="path918" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 133.96885,53.721174 c -0.80181,2.806329 -0.80181,9.68852 -0.53454,12.294399 0.26727,2.605878 0.80181,7.951269 0.13364,10.089425 -0.66818,2.138156 -5.31867,7.363274 -4.51686,10.704144 0.8018,3.34087 5.09148,8.031448 6.96237,10.971409 1.87089,2.939969 5.51106,15.304959 6.14317,20.000339 0.63211,4.69537 2.9039,14.11662 1.16665,18.72702 -1.73725,4.6104 -8.68626,33.60914 -9.88897,37.41773 -1.20271,3.80859 -3.20723,15.83572 -4.40995,17.43934 -1.20271,1.60362 1.93771,3.87541 2.40543,9.48807 0.46772,5.61266 1.87088,8.75307 -0.46772,15.83572 -2.33861,7.08264 -9.2208,24.52198 -9.48807,27.19467 -0.26727,2.6727 -0.66818,4.07586 0.86863,7.14946 1.5368,3.0736 2.60587,4.74404 1.60361,7.81763 -1.00226,3.07361 -1.67043,7.41674 -1.67043,7.41674"
id="path920"
sodipodi:nodetypes="csssssssssssssc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 128.75709,191.96634 c -0.53454,2.53906 -1.00226,4.00904 -0.86862,5.87992"
id="path922" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 119.25262,33.656799 c 0.0164,2.625039 -0.7854,4.562742 0.95185,5.899091 1.73725,1.336347 4.26355,3.728342 7.47078,3.527891 3.20724,-0.200453 7.07324,0.284896 10.3473,2.757139 3.27405,2.472242 7.50571,8.281159 8.37433,13.559731 0.86863,5.278575 0.40091,16.437078 1.26953,18.508416 0.86863,2.071338 4.2095,6.748555 5.07812,9.755338 0.86863,3.006781 4.94449,26.593315 5.81312,28.196935 0.86862,1.60361 2.87314,5.07812 4.87766,6.5481 2.00453,1.46999 2.93997,3.60814 4.07586,4.34313 1.1359,0.73499 3.67496,1.5368 3.14042,2.20497 -0.53454,0.66818 -3.67496,-0.26726 -4.47676,-0.8018 -0.80181,-0.53454 -6.41447,-4.67722 -8.15172,-4.6104 -1.73726,0.0668 0.33408,2.40542 1.00226,3.94222 0.66817,1.5368 1.40316,5.61266 0.26727,5.7463 -1.1359,0.13363 -1.46999,-3.80859 -2.27179,-5.34539 -0.80181,-1.5368 -2.60588,-2.53906 -2.40543,-4.54358 0.20045,-2.00452 1.00226,-5.41221 0.0668,-6.94901 -0.93545,-1.5368 -12.42804,-18.642052 -13.4303,-22.651093 -1.00226,-4.009043 -2.13815,-12.428035 -3.20723,-13.697564 -1.06908,-1.269531 -2.13816,-3.942225 -4.54358,-5.412208"
id="path924"
sodipodi:nodetypes="csssssssssssssssssssc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 157.95629,125.21577 c 1.80407,1.00226 3.34087,2.87315 4.74403,5.47903 1.40317,2.60587 2.6727,4.87767 3.34087,4.20949 0.66818,-0.66817 -1.06908,-3.60814 -1.80407,-5.0113"
id="path926" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 161.16352,125.88395 c 0.66818,1.00226 2.00451,2.93996 3.0736,4.00904 1.06908,1.06908 2.80633,5.0113 3.80859,4.87767 1.00227,-0.13364 -0.13363,-3.14042 -0.66817,-3.67496"
id="path928" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 162.83396,125.95076 c 0.86862,1.67044 3.14041,4.34313 4.54358,5.14494 1.40316,0.80181 2.40543,2.60588 3.20723,2.07134 0.80181,-0.53454 -2.13815,-3.27405 -2.80633,-4.14268"
id="path930" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 80.915848,133 c 0.701582,2.67269 1.703845,5.07812 2.204974,5.54584 0.501131,0.46772 0.03341,1.30294 -0.400905,0.96885"
id="path932" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Layer 3"
style="display:inline">
<path
style="display:inline;fill:#ffe6d5;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 96.751567,59.467469 c -1.937702,2.939965 -5.011303,6.882191 -4.142676,10.757598 0.868624,3.875408 1.737251,7.283096 5.679477,7.951269 3.942222,0.668173 10.824412,1.069078 13.831192,-2.873147 3.00679,-3.942226 2.13816,-8.619443 1.26954,-10.089425"
id="path934" />
<path
style="display:inline;fill:#ffe6d5;fill-opacity:1;stroke:#000000;stroke-width:0.263691px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 133.41228,58.106342 c 1.92465,2.939965 4.97756,6.882191 4.11478,10.757598 -0.86278,3.875408 -1.72556,7.283096 -5.64124,7.951269 -3.91568,0.668173 -10.75154,1.069078 -13.73808,-2.873147 -2.98655,-3.942226 -2.12376,-8.619443 -1.26099,-10.089425"
id="path934-7" />
</g>
</svg>
</div>
</html><<include PlayerSVGFemale>>\
<<include PlayerSVGMale>>\
<<script>>
window.setup_avatar();
<</script>>\You go into the Hotel Elevator.
Where to?
[[Casino|MainFloor]]
[[Room 105 (Your Suite)|YourSuite]]
<<if def $dealer>>[[Suite 309]]<</if>>
<<if $playboy > 4>>[[Suite 409]]<</if>>The cool air of your room is a welcome change to the horrible stickiness of the casino floor.
The Air conditioning is running full-pelt.
You have ?timeLeft until the Mob comes to collect.
[[Mirror]]
<<link "Rest (1hr)" YourSuite>><<set $fem_d = 100>><<set $time += 60 * 60>><</link>>
[[Exit|Hotel]]You knock on the door to Suite 309
<<if $dealer == 0>>
<<set $dealer = 1>>
A long haired man with a scratchy beard pokes his head out of the door.
There's a sudden light of recognition in his eyes.
<<quote dealer>>Hey, ?dude it's you! Man, you're wild! Back for more already?
You got some stamina ?dude!<</quote>>
<<quote you>>Uuuh, I don't... remember much. Who are you?<</quote>>
<<quote dealer>>I am hurt ?dude. I'm Devin! We just had one hell of a fucking orgy. There was drink. Lots of free love. Drugs too. Man you popped so many of those.<</quote>>
<<quote you>>I did? Did those pills do this to me?<</quote>>
<<if $has_vagina>>You point to your ripe new vagina<<elseif $fem > 50>>You indicate your breasts<<else>>You wave over yourself<</if>>
<<quote dealer>>Yeah man, I found a whole bunch of pills out the back of the Casino. Didn't know what they were but you seemed up to tryin them. Took a bunch of guys down to the casino floor, said they wanted to 'try you out for luck' or something.
You have a good time?<</quote>>
<<quote you>>Look, have you got anything that can undo this? <<if $has_vagina>>I'd at least like my penis back<</if>><</quote>>
<<quote dealer>>Yeah man. Now I know what they are I know what they're worth!
Pink Pill makes you a gorgeous hottie. Practically givin' that one away.
Blue Pill turns you into a real stud. That'll cost you.
Purple Pill's a little bit of both. Best of both worlds!
And if they seem a bit pricey, well, I know some guys who can get you a good line of credit
<</quote>>
<<else>>
<<quote dealer>>Yo ?dude, you back for more?<</quote>>
<</if>>
[[Join the Orgy|Orgy]] | [[Buy Pink Pill ($1,000)|Dealer_Pink]] | [[Buy Blue Pill ($5,000)|Dealer_Blue]] | [[Buy Purple Pill ($1,000)|Dealer_Purple]] |[[Leave|Hotel]]<<if ndef $orgy_act>>
You ask if you can join the Orgy.
Devin smiles and opens the door fully.
<</if>>
<<unset $orgy_act>>\
<<unset $orgy_forceambush>>\
The suite is huge, and every piece of floor space and every empty surface has some form of naked person engaged in every kind of sexual exploit you can imagine.
<<if $has_penis>>
<<link "Fuck someone's pussy" OrgyScenes>>
<<set $orgy_target = "female">>
<<set $orgy_act = "give_vaginal">>
<<set $orgy_dombuff = 25>>
<</link>><</if>>
<<if $has_penis>>
<<link "Fuck someone in the ass" OrgyScenes>>
<<set $orgy_target = "female">>
<<set $orgy_act = "give_anal">>
<<set $orgy_dombuff = 25>>
<</link>><</if>>
<<if $has_penis>>
<<link "Get Head" OrgyScenes>>
<<set $orgy_target = "female">>
<<set $orgy_act = "get_oral">>
<<set $orgy_dombuff = 25>>
<</link>><</if>>
<<if $has_vagina>>
<<link "Get fucked" OrgyScenes>>
<<set $orgy_target = "male">>
<<set $orgy_act = "get_vaginal">>
<<set $orgy_dombuff = -25>>
<</link>><</if>>
<<link "Get fucked in the ass" OrgyScenes>>
<<set $orgy_target = "male">>
<<set $orgy_act = "get_anal">>
<<set $orgy_dombuff = -25>>
<</link>>
<<link "Give Head" OrgyScenes>>
<<set $orgy_target = "male">>
<<set $orgy_act = "give_oral">>
<<set $orgy_dombuff = -25>>
<</link>>
<<link "See what happens" OrgyScenes>>
<<unset $orgy_target>>
<<unset $orgy_act>>
<<set $orgy_dombuff = 0>>
<<set $orgy_forceambush = true>>
<</link>>
[[Leave|Hotel]]You take the pill off of Devin and swallow it quickly.
It takes about 5 minutes to fully work.
<<if $fem < 50>>
It sounds like your stomach is rumbling, but on a closer listen you discover it's coming from your chest.
You writhe around in exquisite pleasure as your chest and hips expand, bringing you constantly to the edge of orgasm, but never beyond.
<<elseif $fem < 80>>
The pill has a small but noticeable effect on you.
You feel your hips and breasts growing larger.
You squirm as heat builds up between your legs.
<<else>>
It might have been a dud, or you might be as womanly as you can get, as your body doesn't change at all.
<</if>>\
<<if $has_penis>>You feel your penis retract inside you, your balls empty one last time before they completely disappear
<</if>>\
<<if $has_vagina != true>>A small slit opens up between your legs, growing ever wider and emptier. It cries out to be filled.
<</if>>\
The experience has left you feeling very horny.
[[Continue|Suite 309]]
<<silently>>
<<set $horny = 70>>
<<set $fem = 100>>
<<set $has_penis = false>>
<<set $has_vagina = true>>
<<set $cash -= 1000>>
<<set $time += 60 * 5>>
<</silently>>You take the pill off of Devin and swallow it quickly.
It takes about 5 minutes to fully work.
<<if $fem > 50>>
The weirdest pleasure you've ever felt washes over you as the flesh in your chest and hips begin to migrate around your body. Flowing from your curves and into your core, restoring your masculine form.
You barely hold back an orgasm as your very erect cock twitches rapidly.
<<elseif $fem > 10>>
The pill has a small but noticeable effect on you.
You feel your androgynous nature fade and you are restored to your former masculinity.
<<else>>
It might have been a dud, or you might be as manly as you can get, as your body doesn't change at all.
<</if>>\
<<if $has_vagina>>As your dwindling pussy closes up, it fires off one last farewell orgasm. Some part of you regrets losing it.
<</if>>\
<<if $has_penis != true>>You have your penis back!
<</if>>\
The experience has left you feeling very horny.
[[Continue|Suite 309]]
<<silently>>
<<set $horny = 70>>
<<set $fem = 0>>
<<set $has_penis = true>>
<<set $has_vagina = false>>
<<set $cash -= 5000>>
<<set $time += 60 * 5>>
<</silently>>You take the pill off of Devin and swallow it quickly.
It takes about 5 minutes to fully work.
<<set _transNull = State.random() > 0.5>>
<<if $fem < 50>>
It sounds like your stomach is rumbling, but on a closer listen you discover it's coming from your chest.
You writhe around in exquisite pleasure as your chest and hips expand, bringing you constantly to the edge of orgasm, but never beyond.
<<elseif $fem < 80>>
The pill has a small but noticeable effect on you.
You feel your hips and breasts growing larger.
You squirm as heat builds up between your legs.
<<else>>
It might have been a dud, or you might be as womanly as you can get, as your body doesn't change at all.
<</if>>\
<<if _transNull>>
Something's gone wrong.
<<if $has_penis>>You feel your penis retract inside you! It ejaculates one last time before it's replaced by a flat, unresponsive, sealed layer of skin.
<</if>>\
<<if $has_vagina>>Your vagina closes up on itself, sending one last farewell orgasm through your body before it disappears completely
<</if>>\
The experience has left you feeling very horny, but you have no genitals to stimulate.
<<set $has_penis = false>>
<<set $has_vagina = false>>
<<else>>
<<if $has_penis != true>>You discover that you now have your penis back!
<</if>>\
<<if $has_vagina != true>>A small slit opens up between your legs, growing ever wider and emptier. It cries out to be filled.
<</if>>\
You now have both a Penis and a Vagina
The experience has left you feeling very horny.
<<set $has_penis = true>>
<<set $has_vagina = true>>
<</if>>
[[Continue|Suite 309]]
<<silently>>
<<set $horny = 70>>
<<set $fem = 100>>
<<set $cash -= 1000>>
<<set $time += 60 * 5>>
<</silently>><<silently>>
<<if ndef $orgy_target>><<set $orgy_target = "female">><</if>>
<<if ndef $orgy_act>><<set $orgy_act = "give_vaginal">><</if>>
<<if ndef $orgy_dombuff>><<set $orgy_dombuff = 0>><</if>>
<<set $time += 60>>
<<set _domTarget = $fem - $orgy_dombuff>>
<<set _subTarget = _domTarget - 25>>
<<set _domRoll = State.random() * 100>>
<<set _isDom = !$orgy_forceambush && _domRoll >= _domTarget>>
<<set _isSub = _domRoll <= _subTarget>>
<<set _ambushed = $orgy_forceambush || (_isDom == false && State.random() > 0.5)>>
<</silently>>
_domRoll, _isDom, _isSub, _ambushed
<<if $orgy_dombuff > 0>>You jump into the room, strutting about, very sure of yourself, looking for just the right <<if $orgy_target=="male">>guy<<else>>girl<</if>>.<<elseif $orgy_dombuff == 0>>You wade into the writing mass of bodies looking for a <<if $orgy_target=="male">>guy<<else>>girl<</if>>.<<else>>You enter the room, unsure of yourself. you sheepishly look around for a <<if $orgy_target=="male">>guy<<else>>girl<</if>> to catch your eye<</if>>
<<if _isDom>>You spot <<if $orgy_target=="male">>him<<else>>her<</if>>. <<if $orgy_target=="male">>he's<<else>>she's<</if>> just finishing up with someone else. You relax down next to <<if $orgy_target=="male">>him<<else>>her<</if>> and <<if $orgy_target=="male">>he<<else>>she<</if>> leans over and kisses you.
You both begin to explore each others bodies before you whisper in <<if $orgy_target=="male">>his<<else>>her<</if>> ear what you want.
<<elseif _ambushed || _isSub>>
You try to spot someone, but your less than confident nature has caught the attention of someone much more sure of themselves.
<<set $orgy_target = (State.random() >= 0.3 ? "male":"female")>>
<<set _orgyroll = State.random() * 100>>
<<if $orgy_target == "male">>
<<if _orgyroll < 10>><<set $orgy_act = "give_anal">>
<<elseif _orgyroll < 20>><<set $orgy_act = "get_oral">>
<<elseif _orgyroll < 60>><<set $orgy_act = "give_oral">>
<<elseif _orgyroll < 80 && $has_vagina>><<set $orgy_act = "get_vaginal">>
<<else>><<set $orgy_act = "get_anal">>
<</if>>
<<elseif $orgy_target == "female">>
<<if _orgyroll < 10>><<set $orgy_act = "give_anal">>
<<elseif _orgyroll < 20>><<set $orgy_act = "get_oral">>
<<elseif _orgyroll < 40>><<set $orgy_act = "give_oral">>
<<elseif _orgyroll < 40 && $has_penis>><<set $orgy_act = "give_vaginal">>
<<elseif _orgyroll < 80 && $has_vagina>><<set $orgy_act = "get_vaginal">>
<<else>><<set $orgy_act = "get_anal">>
<</if>>
<</if>>
<<else>>
You spot <<if $orgy_target=="male">>him<<else>>her<</if>>. <<if $orgy_target=="male">>he's<<else>>she's<</if>> just finishing up with someone else. You sit down next to <<if $orgy_target=="male">>him<<else>>her<</if>> and you introduce yourself. <<if $orgy_target=="male">>he<<else>>she<</if>> doesn't respond and just leans over and kisses you.
You both begin to explore each others bodies before <<if $orgy_target=="male">>he<<else>>she<</if>> asks you what you're into.
<</if>>
<<if $horny < 50>><<set $horny += 50>><<else>><<set $horny_d += 10>><</if>>
<<switch $orgy_act>>
<<case "give_vaginal">>
She giggles and leans back. Her legs open, waiting and ready for you. <<if $has_penis>><<if $has_penis && $fem < 50>>Your penis twitches, standing quickly to attention.<<elseif $has_penis>>Your diminutive penis twitches, but fails to respond.<<elseif $has_vagina>>Your clitoris responds, you feel a wetness growing in response.<<else>>You don't have any genitals but you still feel yourself growing horny as fuck.<</if>><</if>>
<<case "give_oral">>
<<if $orgy_target=="male">>he<<else>>she<</if>> puts their finger in your mouth, and begins to rub their <<if $orgy_target=="male">>testicles<<else>>pussy<</if>>.
<<if $orgy_target=="male">>he<<else>>she<</if>> begins to guide your head downwards.
<<case "give_anal">>
<<if $orgy_target=="male">>he<<else>>she<</if>> rolls over, presenting their ass.
<<if $orgy_target=="male">>he<<else>>she<</if>> spreads their cheeks, waiting for you.
<<case "get_vaginal">>
<<if $orgy_target == "female">>She begins massaging your pussy with one hand, and grabs a nearby strap on with the other. She kisses you, before pulling away and slipping into the harness<<else>>He moves in to kiss you, rubbing your pussy at the same time. You feel his stiff member rubbing against your inner thigh.<</if>>
<<case "get_oral">>
<<if $orgy_target == "female">>She smiles and kisses you gently, before moving slowly down your body. <<if $has_penis>>She gently massages your testicles,<<elseif $has_vagina>>gently rubbing your pussy at the same time,<</if>> before her face reaches your crotch.<<else>>He grabs you roughly by the waist, <<if $has_penis>>moving to grip your testicles,<<elseif $has_vagina>>and sticks two fingers in your pussy,<</if>> as his head moves quicly towards your crotch.<</if>>
<<case "get_anal">>
<<if $orgy_target == "female">>She reaches for one of the nearby strap ons and slips into the harness. With a slow hand movement she indicates for you to turn around...<<else>>
<<if $fem < 50>>He grins at you and looks at your erect penis. Shaking his head he indicates for you to turn around<<else>>
With a force that catches you by surprise he grabs you and flips you over. You feel his penis rub against your back as he gets ready to stick it in.
<</if>>
<</if>>
<<case "get_oral">>
<<if $orgy_target == "female">>She smiles and kisses you gently, before moving slowly down your body. <<if $has_penis>>She gently massages your testicles,<<elseif $has_vagina>>gently rubbing your pussy at the same time,<</if>> before her face reaches your crotch.<<else>>He grabs you roughly by the waist, <<if $has_penis>>moving to grip your testicles,<<elseif $has_vagina>>and sticks two fingers in your pussy,<</if>> as his head moves quickly towards your crotch.<</if>>
<</switch>>
<span id="orgy_act">
<<link "Keep going">><<replace "#orgy_act">>
<<switch $orgy_act>>\
<<case "give_vaginal">>\
<<include "Orgy_GiveVaginal">>
<<case "give_oral">>
<<include "Orgy_GiveOral">>
<<case "give_anal">>
<<include "Orgy_GiveAnal">>
<<case "get_vaginal">>
<<include "Orgy_GetVaginal">>
<<case "get_oral">>
<<include "Orgy_GetOral">>
<<case "get_anal">>
<<include "Orgy_GetAnal">>
<</switch>>
[[Finish Up|Orgy]]
<</replace>>
<</link>> | [[Make your excuses and go|Orgy]]
</span> <<set $horny = 20>>\
<<set $vsex_count ++>>\
<<if $has_penis>>\
<<set $psex_count++>>\
<<if $fem < 50>>\
<<set $fem -= 10>>\
<<set $time += 240>>\
You stand in front of her, your erect penis ready to plunge into her waiting pussy.
<<else>>\
Your lack of erection isn't going to stop you. You grab a nearby strap on and slip into the harness.
<<set $fem_d += 10>>\
<</if>>\
<<elseif $has_vagina>>\
You grab a nearby strap on and slip into the harness.
<<set $fem_d += 10>>\
<<else>>\
Your lack of genitals isn't going to stop you. You grab a nearby strap on and slip into the harness.
<<set $fem_d += 10>>\
<</if>>\
She lets out a soft moan as you push the tip beyond the threshold. You tease her as you gently move the head in and out and around her folds.
<<if $fem > 30>>\
You move together as you push futher in, meeting in the middle with a passionate kiss. Her hands caressing you gently before holding on as you begin pumping in and out.
Your thrust begin to quicken as she responds in kind. Faster. Faster. Slower. Harder. Softer. You naturally respond to each others growing pleasure. You feel in tune with each other.
<<if State.random()*20 <= $vsex_count>>\
As the pace quickens once again, you find yourself about to reach orgasm. As you do, she does too. Both your moans in sync drown out the noise from the other couples who clearly are not having as good a time as both of you are.
After you pull out, a man comes up and gives her the 'look'. She flips him off, wanting to bask in the afterglow of your lovemaking a little longer.
<<set $time += 60>>\
<<else>>\
As the pace quickens once again, you find yourself about to reach orgasm. There's a short pause before she orgasms as well.
Before you even have time to clean up, a man comes up and gives her the 'look'. In a blink she's going down on him. He gives you a quick dismissive look before turning his attention to her.
<</if>>\
<<else>>\
You move together as you push further in, meeting in the middle with a passionate kiss. Her hands caressing you gently before holding on as you begin vigorously pumping in and out.
Her moans continue as you pump harder and harder. Faster and faster. You cum hard.
She quickly cleans up and moves on to her next partner, hoping to finish what you started.
<</if>>\
<<set $time += 120>>\
<<set $asex_count ++>>\
<<set $horny = 20>>\
<<set $fem -= 10>>\
<<if $has_penis>>\
<<if $fem < 50>>\
<<set $fem -= 10>> \
<<set $time += 240>>\
You stand in front of <<if $orgy_target =="male">>him<<else>>her<</if>>, your erect penis ready to plunge into their ass.
<<else>>\
Your lack of erection isn't going to stop you. You grab a nearby strap on and slip into the harness.
<<set $fem_d += 20>>\
<</if>>\
<<elseif $has_vagina>>\
You grab a nearby strap on and slip into the harness.
<<set $fem_d += 20>>\
<<else>>\
Your lack of genitals isn't going to stop you. You grab a nearby strap on and slip into the harness.
<<set $fem_d += 20>>\
<</if>>\
<<if $orgy_target=="male">>\
He rubs some lube around his ass before handing you the bottle. You quickly lube up before taking the plunge.
His ass yields to your lubed up member before tensing up as you bottom out.
<<if State.random()*20 <= $asex_count>>\
Your thrusting ramps up and falls off in response to your partners reactions. As you begin to edge you slow down, giving your partner some gentle encouragement on his penis, taking your time to bring him back up to speed.
As you both continue. He cums hard as you do.
<<else>>\
Your thrusting continues until you cum. Unsatisfied, he goes to find someone else to finish him off.
<</if>>\
<<else>>\
She rubs some lube around her ass before handing you the bottle. You quickly lube up before taking the plunge.
Her ass yields to your lubed up member before tensing up as you bottom out.
<<if State.random()*20 <= $asex_count>>
Your thrusting ramps up and falls off in response to your partners reactions. As you begin to edge you slow down, giving your partner some gentle clitoral encouragement, taking your time to bring her back up to speed.
As you both continue. She cums hard as you do.
<<else>>\
Your thrusting continues until you cum. Unsatisfied, they go to find someone else to finish them off.
<</if>>\
<</if>>\
<<set $o_count ++>>\
<<set $horny_d += 20>>\
<<set _goodhead = State.random() * 20 <= $o_count>>\
<<if _goodhead>>\
<<if $orgy_target == "male">>\
<<set $fem_d += 20>>\
<<set $time += 240>>\
Confidently, you take his erect penis in your hands and begin rubbing gently. The musky scent fills your nostrils as you move your mouth over the tip.
You work the balls gently until you begin to taste the precum.
You begin to use your mouth more, taking more and more of his penis as you go.
He begins to gently thrust until his throbbing member makes its way down your throat.
With a satisfied moan he cums straight into your belly.
<<else>>\
You lap gently at the soft wetness.
She moans slightly as you do so. Her hand keeps your head in place so you continue to lick.
You try to use your hands but she bats them away. She's intent on you using only your mouth.
Her wetness dribbles down your chin as you stick your tongue deep within her.
She urgently moans as she nears climax, her grip on your head tightening as she gets closer and closer.
You know when she orgasms as you are almost drowned in fluid. She holds you there until she's completely sated. You pull away, gasping for breath.
She smiles at you before cleaning up and moving on to her next victim.
<</if>>\
<<else>>\
<<if $orgy_target == "male">>\
You take his erect penis in your hands and begin rubbing vigorously. You're unsure actions lead to your partner becoming impatient.
The moment you bring your mouth to his penis he shoves it right in. Your gag reflex tightening your throat, but it's no match for his powerful thrusts.
Quickly he cums, depositing a load of semen in your stomach.
He wipes up and goes off to find another partner.
<<else>>\
You bury your face in her pussy, laping vigorously at the soft wetness.
She moans slightly, but you're not sure if she's just keeping up appearences.
Her wetness dribbles down your chin as you stick your tongue deep within her.
You're not sure if she came or not but she pulls away, cleans up and moves on to her next partner.
<</if>>\
<</if>>\<<set $vsex_recieved ++>>
<<set $fem_d += 50>>
<<set $time += 240>>\
<<set $horny = 20>>\
<<set _he = $orgy_target == "male" ? "he":"she">>\
<<set _him = $orgy_target == "male" ? "him":"her">>\
<<set _his = $orgy_target == "male" ? "his":"her">>\
<<if $orgy_target == "female">>She grabs a strap on from nearby and slips into the harness<</if>>
_he is already well lubricated and it seems so are you.
You get closer and mount _his member. You let out a soft gasp as he enters you.
<<if $vsex_revieved <= 1>>\
You both get into a good rhythm, feeling the cock deep inside you for the first time scares you, but you give in to the pleasure quickly.
<<else>>\
Your anticipation for what comes next excites you. You both get into a good rhythm as you bounce up and down on top of _him.
<</if>>\
<<if $fem > 40>>Your breasts bounce in time with your lovemaking, bringing you closer to climax much quicker<<else>>
<</if>>
As your thrusts get faster and your moans get louder, _his thrusts and moans grow in tandem.
<<if State.random() * 20 < $vsex_recieved>>\
You both orgasm at the same time
<<else>>\
_he orgasms first, but continues going until you cum too.
<</if>>\
<<if $orgy_target == "male">>You feel a stream of cum leaking out down your leg. You're unsure if this body can get pregnant. You hope not.<</if>>
Your partner cleans up before moving on to find another partner.<<set $asex_recieved ++>>\
<<set $horny = 20>>\
<<set $fem_d += 20>>\
<<set $time += 240>>\
<<set _he = $orgy_target == "male" ? "he":"she">>\
<<set _him = $orgy_target == "male" ? "him":"her">>\
<<set _his = $orgy_target == "male" ? "his":"her">>\
You flip over and present your ass to _him.
<<if $orgy_target == "female">>She grabs a strap on from nearby and slips into the harness<</if>>
_he runs _his finger around your butthole, rubbing a thin ring of lube around the edge, before coating _his cock in it too.
You try and relax as you're initially penetrated. You let out a soft yelp as it goes in.
Impatiently, _he begins thrusting, bringing themselves closer to climax.
<<if $has_penis>>
As you feel it rub your prostate you tense your sphincter, bringing yourself closer to orgasm<<else>>You feel the cock deep within you, you feel your orgasm building slowly<</if>>
A wave of pleasure crashes over you as you cum hard.
<<if $orgy_target == "male">>You feel a stream of cum leaking out down your leg<</if>>
Your partner cleans up before moving on to find another partner.<<set $o_recieved ++>>\
<<set _he = $orgy_target == "male" ? "he":"she">>\
<<set _him = $orgy_target == "male" ? "him":"her">>\
<<set _his = $orgy_target == "male" ? "his":"her">>\
<<set $time += 240>>\
<<if $has_vagina && $has_penis>>\
There's a slight look of surprise on _his face as _he sees your multiple genitals.
<<if $fem > 50>><<set _use = "penis">><</else>><<set _use = "vagina">><</if>>\
<<elseif $has_penis>>\
<<set _use = "penis">>\
<<elseif $has_vagina>>\
<<set _use = "vagina">>\
<<else>>\
Your lack of genitals surprises _him, but _he tries to stimulate you anyway.
The attempt is futile as you are unable to feel any arousal from being stimulated there.
<</if>>\
<<if _use == "penis">>\
<<set $fem -= 10>>\
<<set $horny = 20>>\
<<set $fem_d -= 20>>\
_he massages your testicles with one hand and begins rubbing the tip with the other.
As you begin to leak precum _he gets closer, moving _his tongue over the tip of your penis.
As your erection grows _he takes more and more of your penis in _his mouth. You reflexively begin to buck your hips in time with _his sucking as you grow closer and closer to orgasm.
With a shudder you cum, sending sperm straight down _his throat.
_he cleans up and moves on to find another partner.
<<elseif _use == "vagina">> \
<<set $horny = 20>>\
<<set $fem_d += 20>>\
_he uses one hand to tease your pussy as _he begins exploring your chest with _his mouth. After _he feels your wetness grow _he continues from your chest, south, with a series of kisses.
Reaching your sopping wet pussy, _he begins to lick you tenderly.
As you begin to leak precum _he gets closer, moving _his tongue over the tip of your penis.
As your erection grows _he takes more and more of your penis in _his mouth. You reflexively begin to buck your hips in time with _his sucking as you grow closer and closer to orgasm.
With a shudder you cum, sending sperm straight down _his throat.
_he cleans up and moves on to find another partner.
<</if>>\You decide to cut your losses and turn yourself over to the Mob.
You sigh and head to the reception.
<<quote bunny>>Hi! How can I help you today?<</quote>>
<<quote you>>Uh, hi... I can't pay my debt... I'd like to-<</quote>>
before you finished your sentence a Bouncer appears beside you.
<<quote bouncer>>Follow me<</quote>>
He is quite insistent, but you reluctantly follow him.
He leads you through one of the doors marked STAFF ONLY, into the corridors that run the length of the casino.
As the door closes you feel yourself black out.
<<set $end = "bunny">>
[[Wake Up|End]]<<switch $colonel>>
<<case 0 1 2 5>>
<<include "Colonel" >>
<<case 3>>
<<if $colonel_bailout>>
<<quote colonel>>You're out of money? Sorry ?son, I ain't got nothing more for you. Unless you can find a way to get more money you're outta luck.<</quote>>
<<else>>
<<quote colonel>>You're out of money? Are you playing the slots like we discussed? Here, here's another <<money 1000>>, go play the slots. Make sure you find one that's got less than 20 or so spins left ?son.<</quote>>
<<set $money += 1000>>
<<set $colonel_bailout = true>>
<</if>>
[[High Rollers]]
<<case 4>>
<<quote colonel>>You don't need cash to explore the casino. Find that scientist<</quote>>
[[High Rollers]]
<</switch>><<set $noblackout = true>>
You head up to Suite 309 and knock on the door
<<quote dealer>>Hey, it's yourself! You look beat dude, what's up?<</quote>>
<<quote you>>I'm out of cash. <<if $debt > 0>>and I owe money to some powerful people<</if>><</quote>>
<<quote dealer>>Oh, I see. And you want ol' Devin to bail you out?<</quote>>
you nod.
<<quote dealer>>Devin's got a plan. Y'see, the casino owners know me. They let me work outta here so long as they get a nice slice of the pie, y'dig?
And if I cross them, well, I don't wanna think 'bout that.<</quote>>
He beckons you inside. The Orgy is still going strong. He leads you into the bathroom, shooing away a couple in the middle of some kind of sex act. He closes the door behind them.
<<quote dealer>>The only thing more powerful than money here is Information. So. If you got any of <i>that</i> I think I can make your debt go away. <</quote>>
<span id='info'>
<<if $colonel > 1>><<link "Rat out the Colonel">>
<<replace '#info' >>
<<quote you>>There's a guy, Old Colonel type of guy, says he works for the NNGC. He's investigating the casino.<</quote>>
<<quote dealer>>Oh we can work with that, absolutely. Where is he?<</quote>>
<<quote you>>Down in the High Rollers lounge.<</quote>>
In a flash, Devin pulls a gun out of somewhere. He's completely naked, you're not sure where it came from.
<<quote dealer>>We'll deal with him, don't worry. But you, you're staying right here, with us.<</quote>>
He pulls out a small bag of pills from a drawer.
<<quote dealer>>Special stash. Higher ups wanted me to test these out on someone. Might as well be you. You're going to down all six of them at once.<</quote>>
Held at gunpoint there's nothing much more you can do. You begin to swallow them one by one as Devin's grin grows. As you finish the last one.
<<quote dealer>>I hope these work. Boss says whatever happens I get to keep you.<</quote>>
He pulls another, similar, bag from the drawer. You begin to feel very very strange indeed.
<<quote dealer>>Now lets go visit your Colonel friend.<</quote>>
He lowers the gun, but all your resistance has faded. You can do nothing but
[[go with him|End]]
<<set $end = "ratoutcolonel">>\
<</replace>>
<</link>><</if>>
<<if $playboy > 4>><<link "Rat out John">>
<<replace '#info' >>
<<quote you>>There's a guy, says he works for Globotech Pharma. He's looking for you, and I think he's got an eye for taking down this whole casino.<</quote>>
<<quote dealer>>Oh we can work with that, absolutely. Where is he?<</quote>>
<<quote you>>Suite 409. Right above you<</quote>>
In a flash, Devin pulls a gun out of somewhere. He's completely naked, you're not sure where it came from.
<<quote dealer>>We'll deal with him, don't worry. But you, you're staying right here, with us.<</quote>>
He pulls out a small bag of pills from a drawer.
<<quote dealer>>Special stash. Higher ups wanted me to test these out on someone. Might as well be you. You're going to down all six of them at once.<</quote>>
Held at gunpoint there's nothing much more you can do. You begin to swallow them one by one as Devin's grin grows. As you finish the last one.
<<quote dealer>>I hope these work. Boss says whatever happens I get to keep you.<</quote>>
He pulls another, similar, bag from the drawer. You begin to feel very very strange indeed.
<<quote dealer>>Now lets go visit your narc friend.<</quote>>
He lowers the gun, but all your resistance has faded. You can do nothing but
[[go with him|End]]
<<set $end = "ratoutjohn">>\
<</replace>>
<</link>><</if>>
<<link "You have nothing">>
<<replace '#info' >>
<<quote you>>I... I don't have anything. I'm sorry.<</quote>>
<<quote dealer>>Well that's a crying shame isn't it.<</quote>>
In a flash, Devin pulls a gun out of somewhere. He's completely naked, you're not sure where it came from.
<<quote dealer>>I had my eye on you since you first droppe by. You're staying right here, with me.<</quote>>
He pulls out a small bag of pills from a drawer.
<<quote dealer>>Special stash. Higher ups wanted me to test these out on someone. Might as well be you. You're going to down all six of them at once.<</quote>>
Held at gunpoint there's nothing much more you can do. You begin to swallow them one by one as Devin's grin grows. As you finish the last one.
<<quote dealer>>I hope these work. Boss says whatever happens I get to keep you.<</quote>>
You begin to feel very very strange indeed.
<<quote dealer>>Come with me<</quote>>
He lowers the gun, but all your resistance has faded. You can do nothing but
[[go with him|End]]
<<set $end = "haremgirl">>\
<</replace>>
<</link>>
</span>You go off to find John, the Globotech agent, and explain your situation.
<<quote playboy>>I can't help you unless you tell me where the Pill Dealer is working from<</quote>>
<<if def $dealer>>[[Rat out the Dealer|PlayboySqueal]]<</if>>
[[Leave|Hotel]]
The strip is still alive and bustling at this time of night, you head south along the strip until you cross the 593 about an hour later.
You can see the faint lights of the control tower to the South West and follow the road.
As you leave Las Vegas and cross into Paradise the ambient mood changes a lot.
<<if $fem > 50>>Looking like you do, wandering along a dark desert road at this time of night, you suddenly feel very vulnerable. <</if>>
There's not much here. One side of the road is walled off, leading straight into the airport. The other side is lined with clsoed shops, parking garages and gas stations.
You hear a small blip from a siren behind you.
A police car pulls over and the officer inside leans out.
<<if $fem > 50>>
<<quote police>>Is everything alright here ma'am?<</quote>>
<<quote you>>Yes, I'm just heading for the Airport. Kinda lost my cab fare at the casino<</quote>>
The officer chuckles, as does his partner.
<<quote police>>We can give you a ride if you like.<</quote>>
<span id='policeride'>
<<link "Go with the officers">>
<<replace "#policeride">>
You accept the ride and get in the back of the car.
Part of you worries that this might be a mistake.
The rear doors automatically lock and the car drives off slowly, continuing south before turning off. You feel a jump in the pit of your stomach as you drive down the road. It's dark outside and you can't see out of the tinted windows.
The car stops.
<<quote police>>We're here<</quote>>
The automatic lock disengages and you open the door. You're greeted by the lights of Terminal 1. You breath a sigh of relief
<<quote police>>Glad to be of service<</quote>>
The police get out too and head inside. One rubs their hands gleefully.
<<quote police>>Can't wait to get the first fresh rack of ribs<</quote>>
[[Continue|WalkToAirport_End]]
<</replace>>
<</link>>
<<link "Decline">>
<<replace "#policeride">>
You decline the ride and continue walking.
Part of you worries that this might be a mistake.
By the time you get to Terminal 1 the sun is starting to come up and your feet are aching after a 2 hour walk.
You see the police car that stopped out sitting in the bay outside the terminal. The two officers sitting in the car eating what appears to be some kind of BBQ Ribs.
[[Continue|WalkToAirport_End]]
<</replace>>
<</link>>
</span>
<<else>>
<<quote police>>Is everything alright here sir?<</quote>>
<<quote you>>Yes, I'm just heading for the Airport. Kinda lost my cab fare at the casino<</quote>>
The officer frowns. His partner doesn't react
<<quote police>>Can I see some Id?<</quote>>
You pull out your passport. You remove your return tickets and show them the photo page.
The officer takes it and turns back into the car. He punches something into the dashboard computer.
There's a pause before he hands you back your passport.
<<quote police>>Everything seems to be in order sir, sorry for troubling you<</quote>>
The car rides off and you continue walking.
By the time you get to Terminal 1 the sun is starting to come up and your feet are aching after a 2 hour walk.
You see the police car that stopped out sitting in the bay outside the terminal. The two officers sitting in the car eating what appears to be some kind of BBQ Ribs.
[[Continue|WalkToAirport_End]]
<</if>><<set $end="home">>\
You get to the check-in desk and show your tickets to the clerk.
She doesn't question your lack of luggage, it's clear she's seen people in your position before.
<<if $fem < 30>>
You clear security easily. You have nothing on you but your clothes and your passport.
<<elseif $fem < 50>>You clear security, though the guard does do a double take when looking at your Passport. You're not exactly the same person you were when you arrived
<<else>>
Security takes you aside after looking at your passport.
You're clearly no longer the person in your passport photo.
You try and explain the situation. You're not entirely sure they'd believe the truth.
<<set $end = "security">>
<</if>>
[[Continue|End]]<<if ndef $end>><<set $end ="bunny">><</if>>
<<switch $end>>
<<case "bunny">>
<<include "Ending_BunnySlaveTransform">>
<<set $end_number = 1>>\
<<set $end_result = "Ending 1: Bunny Croupier">>\
<<case "home">>
You return home. Out of debt. <<if $cash == 0>>Out of money<<else>><<money $cash>> in your pocket<</if>>
<<set $end_number = 0>>\
<<set $end_result = "Ending 0: Back to Normality">>\
<<case "security">>
You are taken into custody by Airport Security while they try and verify your identity.
You sit in a locked room, alone, staring at four walls for what seems like hours. You've definitely missed your flight by this point.
The Security officer eventually returns, flanked by the two officers you saw earlier.
<<quote police>>Ma'am, we're going to have to ask you to come with us. The casino you work for has confirmed who you really are. You are under arrest in connection with the disappearence of $name $sname.<</quote>>
<<quote you>>No, no! You don't understand, I <i>am</i> $name $sname. The casino did things to me, turned me in to this<</quote>>
The Security Officer readies his Taser, urging you not to resist.
Before you can react you feel the pain of electicity coursing through you and unconciousness takes you.
-----
<<include "Ending_BunnySlaveTransform">>
<<set $end_number = 2>>\
<<set $end_result = "Ending 2: Mistaken Identity">>\
<<case "break_capture">>
<<include "Ending_BunnySlaveTransform">>
<<set $end_number = 3>>\
<<set $end_result = "Ending 3: An offer you could refuse">>\
<<case "caught_snooping">>
<<include "Ending_BunnySlaveTransform">>
<<set $end_number = 4>>\
<<set $end_result = "Ending 4: Caught Snooping">>\
<<case "witness">>
<<include "Ending_Witness">>
<<case "ratoutjohn" "ratoutcolonel" "haremgirl">>
<<include "Ending_Harem">>
<<case "colonel" "colonel_victory">>
<<include "Ending_Colonel">>
<</switch>>
<div name="avatar"></div>
<<include "PlayerOverview">>
<h3>$end_result</h3>
<<run memorize("ending_"+$end_number,true) >>You wake up with a headache. You're staring up at a bright ceiling light.
You try to move but you appear to be restrained.
You turn your head to see two Casino bouncers standing beside you, but they don't notice you.
<<quote bouncer>>Status of this one?<</quote>>
<<quote bouncer2>>Debt accrued over the course of the last week. Eventually ran close to zero at about 1800 hours. Go-ahead was given from management to begin the experiment.<</quote>>
<<if $fem > 50>>
<<quote bouncer>>The experiment appears to have been successful<</quote>>
<<if $has_vagina == false>>
<<quote bouncer2>>Not entirely. We've been given the Okay to complete the transformation manually.<</quote>>
<<elseif $has_penis>>
<<quote bouncer2>>Partially. ?he appears to have both male and female genitals. We've been given the Okay to complete the transformation manually<</quote>>
<<else>>
<<quote bouncer2>>Very successful. Fully female it appears.<</quote>>
<</if>>
<<else>>
<<quote bouncer>>They appear to have some resistance to the treatment<</quote>>
<<quote bouncer2>>We've been given the Okay to complete the transformation manually.<</quote>>
<</if>>
<<quote bouncer>>?he's awake.<</quote>>
<<quote bouncer2>>Well, I wonder how much they overheard. No matter.<</quote>>
<<quote you>>Who are you people? What are you doing to me? I have family. Friends. They'll miss me, they'll find me!<</quote>>
<<quote bouncer>>Don't be so sure of that. $name $sname is dead. He got drunk and left the Casino. Went and got himself lost in the desert.<</quote>>
He shows you a security video that clearly shows you, the original you, stumbling out of the casino.
You're wearing just your shirt and underpants and are clearly under the influence.
<<quote bouncer2>>We've gotten quite good at these fake videos.<</quote>>
The bouncer turns away to work on a computer panel. The light above you fades to black as you lose consciousness again.
----
<<set $fem = 100>>\
<<set $has_penis = false>>\
<<set $has_vagina = true>>\
<<quote bunny>>No More Bets!<</quote>>
You spin the wheel and drop the ball in the roulette wheel.
<<quote bunny>>32! Red! Congratulation Winners!<</quote>>
It's been two weeks since you went under. Within a matter of hours you were a fully female, curvy, filled-out, sexy bunny girl.
You fought the changes as best you could but to no avail. The mental changes were even harder to resist but you managed to keep a little semblance of yourself alive as the programming took over.
<<set $controlroomempty = true>>\
You pull the fire alarm. No alarms sound, but there is a blue light flashing by the panel.
After a few seconds you hear the main control room door slam shut.
[[Slip into the control room|BreakTheBank_ControlRoom]]The door opens with a soft click. You wince, before checking to see if the room is empty.
Unfortunately it is not. The Bouncers are here. One of them is inspecting the fire alarm.
The other rushes for you, and before you can slip back into the control room you're knocked out.
<<set $end = "caught_snooping">>
[[Oh Shit|End]]You go back into the interview room.
[[Wait|BreakTheBank_WaitPostSnoop]] | [[Back to Snooping|BreakTheBank_Snoop]]The bouncer comes back into the room. He seems slightly surprised that you're there.
He sits down opposite you.
<<quote bouncer>>I have uuh... spoken to management. The uuh... offer stands. Take it or leave it.<</quote>>
[[Accept the Deal|BreakTheBank_Accept]] | [[Demand Full Payment|BreakTheBank_Demand]]<table class="roulette">
<tbody>
<tr>
<td class="blank"></td>
<td class="full" colspan="9">0</td>
<td class="blank" colspan="2"></td>
</tr>
<tr class="top">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="full vertical" rowspan="12">1st 12</td>
<td class="full vertical" rowspan="6">1-18</td>
</tr>
<tr class="mid">
<td class="left right"></td>
<td class="left"></td>
<td class="center red">1</td>
<td class="right"></td>
<td class="left"></td>
<td class="center black">2</td>
<td class="right"></td>
<td class="left"></td>
<td class="center red">3</td>
<td class="right"></td>
</tr>
<tr class="bottom">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="top">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="mid">
<td class="left right"></td>
<td class="left"></td>
<td class="center black">4</td>
<td class="right"></td>
<td class="left"></td>
<td class="center red">5</td>
<td class="right"></td>
<td class="left"></td>
<td class="center black">6</td>
<td class="right"></td>
</tr>
<tr class="bottom">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="top">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="full vertical" rowspan="6">EVEN</td>
</tr>
<tr class="mid">
<td class="left right"></td>
<td class="left"></td>
<td class="center red">7</td>
<td class="right"></td>
<td class="left"></td>
<td class="center black">8</td>
<td class="right"></td>
<td class="left"></td>
<td class="center red">9</td>
<td class="right"></td>
</tr>
<tr class="bottom">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="top">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="mid">
<td class="left right"></td>
<td class="left"></td>
<td class="center black">10</td>
<td class="right"></td>
<td class="left"></td>
<td class="center black">11</td>
<td class="right"></td>
<td class="left"></td>
<td class="center red">12</td>
<td class="right"></td>
</tr>
<tr class="bottom">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="top">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="full vertical" rowspan="12">2nd 12</td>
<td class="full vertical" rowspan="6">RED</td>
</tr>
<tr class="mid">
<td class="left right"></td>
<td class="left"></td>
<td class="center black">13</td>
<td class="right"></td>
<td class="left"></td>
<td class="center red">14</td>
<td class="right"></td>
<td class="left"></td>
<td class="center black">15</td>
<td class="right"></td>
</tr>
<tr class="bottom">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="top">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="mid">
<td class="left right"></td>
<td class="left"></td>
<td class="center red">16</td>
<td class="right"></td>
<td class="left"></td>
<td class="center black">17</td>
<td class="right"></td>
<td class="left"></td>
<td class="center red">18</td>
<td class="right"></td>
</tr>
<tr class="bottom">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="top">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="full vertical" rowspan="6">BLACK</td>
</tr>
<tr class="mid">
<td class="left right"></td>
<td class="left"></td>
<td class="center red">19</td>
<td class="right"></td>
<td class="left"></td>
<td class="center black">20</td>
<td class="right"></td>
<td class="left"></td>
<td class="center red">21</td>
<td class="right"></td>
</tr>
<tr class="bottom">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="top">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="mid">
<td class="left right"></td>
<td class="left"></td>
<td class="center black">22</td>
<td class="right"></td>
<td class="left"></td>
<td class="center red">23</td>
<td class="right"></td>
<td class="left"></td>
<td class="center black">24</td>
<td class="right"></td>
</tr>
<tr class="bottom">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="top">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="full vertical" rowspan="12">3rd 12</td>
<td class="full vertical" rowspan="6">ODD</td>
</tr>
<tr class="mid">
<td class="left right"></td>
<td class="left"></td>
<td class="center red">25</td>
<td class="right"></td>
<td class="left"></td>
<td class="center black">26</td>
<td class="right"></td>
<td class="left"></td>
<td class="center red">27</td>
<td class="right"></td>
</tr>
<tr class="bottom">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="top">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="mid">
<td class="left right"></td>
<td class="left"></td>
<td class="center black">28</td>
<td class="right"></td>
<td class="left"></td>
<td class="center black">29</td>
<td class="right"></td>
<td class="left"></td>
<td class="center red">30</td>
<td class="right"></td>
</tr>
<tr class="bottom">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="top">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="full vertical" rowspan="6">19-36</td>
</tr>
<tr class="mid">
<td class="left right"></td>
<td class="left"></td>
<td class="center black">31</td>
<td class="right"></td>
<td class="left"></td>
<td class="center red">32</td>
<td class="right"></td>
<td class="left"></td>
<td class="center black">33</td>
<td class="right"></td>
</tr>
<tr class="bottom">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="top">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr class="mid">
<td class="left right"></td>
<td class="left"></td>
<td class="center red">34</td>
<td class="right"></td>
<td class="left"></td>
<td class="center black">35</td>
<td class="right"></td>
<td class="left"></td>
<td class="center red">36</td>
<td class="right"></td>
</tr>
<tr class="bottom">
<td class="left right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
<td class="left"></td>
<td class="center"></td>
<td class="right"></td>
</tr>
<tr>
<td class="blank"></td>
<td class="full" colspan="3">2to1</td>
<td class="full" colspan="3">2to1</td>
<td class="full" colspan="3">2to1</td>
<td class="blank" colspan="2"></td>
</tr>
</tbody>
</table>
<style>
table.roulette {
background-color: green;
color: yellow;
}
table.roulette td {
border: none;
text-align: center;
font-weight: bold;
position: relative;
}
table.roulette td.vertical {
width: 64px;
padding: 0;
padding-left: 24px;
}
table.roulette td.blank {
width: 8px;
border: none;
}
table.roulette tr.top td {
height: 10px;
border-top: 1px solid yellow;
}
table.roulette tr.mid td {
height: 24px;
}
table.roulette tr.bottom td {
height: 10px;
border-bottom: 1px solid yellow;
}
table.roulette td.left {
width: 10px;
border-left: 1px solid yellow;
}
table.roulette td.center {
width: 24px;
}
table.roulette td.right {
width: 10px;
border-right: 1px solid yellow;
}
table.roulette td.full {
min-height: 44px;
border: 1px solid yellow;
}
table.roulette td.row {
width: 8px;
border: none;
cursor: pointer;
}
table.roulette .chip {
position: absolute;
bottom: 2px;
left: 12px;
width: 32px;
height: 32px;
margin: 0 auto;
border: 1px solid #422;
background-color: #833;
color: white;
text-shadow: none;
}
table.roulette td.red {
color: red;
font-size: 24px;
width: 96px;
text-shadow: 2px 2px 0 #fff,
-2px -2px 0 #fff,
2px -2px 0 #fff,
-2px 2px 0 #fff,
2px 2px 0 #fff;
}
table.roulette td.black {
color: black;
font-size: 24px;
text-shadow: 2px 2px 0 #fff,
-2px -2px 0 #fff,
2px -2px 0 #fff,
-2px 2px 0 #fff,
2px 2px 0 #fff;
}
table.roulette td.zero {
color: white;
font-size: 24px;
text-shadow: 2px 2px 0 #000,
-2px -2px 0 #000,
2px -2px 0 #000,
-2px 2px 0 #000,
2px 2px 0 #000;
}
.top .vertical {
height: 64px !important;
}
.vertical {
writing-mode: vertical-rl;
text-orientation: sideways;
height: auto;
}
</style>
<script>
function setup_row(r) {
}
function get_cell_above(cell) {
var p = $(cell).parent();
var index = $(cell).index();
var row_above = $(p).prev();
return row_above.children()[index];
}
function get_cell_below(cell) {
var p = $(cell).parent();
var index = $(cell).index();
var row_above = $(p).next();
return row_above.children()[index];
}
function get_cell_before(cell) {
return $(cell).prev();
}
function get_cell_after(cell) {
return $(cell).next();
}
function get_owner_number(cell) {
var horiz = $(cell).hasClass("left") ? "left" : $(cell).hasClass("right") ? "right" : "center";
var vert = $(cell).parent().hasClass("top") ? "top" : $(cell).parent().hasClass("bottom") ? "bottom" : "mid";
var target = cell;
switch (horiz) {
case "left":
target = get_cell_after(target);
break;
case "right":
target = get_cell_before(target);
break;
}
switch (vert) {
case "top":
target = get_cell_below(target);
break;
case "bottom":
target = get_cell_above(target);
break;
}
return parseInt($(target).text());
}
function is_full_row(cell) {
return $(cell).hasClass("left") && $(cell).hasClass("right");
}
function requires_processing(cell) {
if ($(cell).text()) return false;
if ($(cell).hasClass("blank")) return false;
return true;
}
function add_valid_number(n, arr) {
if (n < 1 || n > 36) return;
arr.push(n);
}
function process_cell(cell) {
if (!requires_processing(cell)) return;
var istop = cell.parent().hasClass("top");
var isbottom = cell.parent().hasClass("bottom");
var isleft = cell.hasClass("left");
var isright = cell.hasClass("right");
if (is_full_row(cell)) {
var ownerNumber = get_owner_number(cell.next());
var numbers = [ownerNumber, ownerNumber + 1, ownerNumber + 2];
if (istop) {
add_valid_number(ownerNumber - 1, numbers);
add_valid_number(ownerNumber - 2, numbers);
add_valid_number(ownerNumber - 3, numbers);
} else if (isbottom) {
add_valid_number(ownerNumber + 3, numbers);
add_valid_number(ownerNumber + 4, numbers);
add_valid_number(ownerNumber + 5, numbers);
}
cell.attr("title", numbers.sort(function (a, b) { return a - b; }).join(","));
} else {
var ownerNumber = get_owner_number(cell);
var numbers = [ownerNumber];
isleft = isleft && (ownerNumber % 3 != 1);
isright = isright && (ownerNumber % 3 != 0);
if (istop) {
add_valid_number(ownerNumber -3, numbers);
} else if (isbottom) {
add_valid_number(ownerNumber +3, numbers);
}
if (isleft) {
add_valid_number(ownerNumber -1, numbers);
} else if (isright) {
add_valid_number(ownerNumber + 1, numbers);
}
if (isbottom && isleft) {
add_valid_number(ownerNumber + 2, numbers);
} else if (isbottom && isright) {
add_valid_number(ownerNumber + 4, numbers);
} else if (istop && isleft) {
add_valid_number(ownerNumber - 4, numbers);
} else if (istop && isright) {
add_valid_number(ownerNumber - 2, numbers);
}
cell.attr("title", numbers.sort(function (a, b) { return a - b; }).join(","));
}
}
var roulette_cells = $(".roulette td");
for (var i = 0; i < roulette_cells.length; i++) {
process_cell($(roulette_cells[i]))
}
</script><<set $cash to 10>>
<<set $name to 'Todd'>>
<<set $mname to 'Todd'>>
<<set $fname to 'Tammy'>>
<<set $sname to 'Mac'>>
<<set $debt to 5000>>
<<set $casino_bank to 500000>>
<<set $fem to 0>>
<<set $fem_d = 0>>
<<set $man_d = 0>>
<<set $last_fem to 0>>
<<set $has_penis to true>>
<<set $has_vagina to false>>
<<set $presenting to 'male'>>
<<set $o_count to 0>>
<<set $o_recieved to 0>>
<<set $vsex_count to 0>>
<<set $vsex_recieved to 0>>
<<set $asex_count to 0>>
<<set $asex_recieved to 0>>
<<set $psex_count to 0>>
<<set $slots to 10>>
<<set $time = 0>>
<<set $last_update_time = 0>>
<<set $colonel = 0>>
<<set $oskill = 0>>
<<set $askill = 0>>
<<set $pskill = 10>>
<<set $vskill = 0>>
<<set $drunk = 0>>
<<set $horny = 0>>
<<set $horny_d = 0>>
<<set $noblackout = false>>
<<if ndef $endings>><<remember $endings = []>><</if>><<switch $colonel>>
<<case 0>>
You sit down next to the Colonel. His hat is sitting on the table next to a stiff looking bourbon.
<<quote colonel>>Howdy friend. Come to take me up on my offer?<</quote>>
<<quote you>>You said you can help me?<</quote>>
<<quote colonel>>Well, certainly ?boy, but you'll have to help me out first. Lil' bit of tit-for-tat if you catch my meaning<</quote>>
<<quote you>>What do you need?<</quote>>
<<quote colonel>>I just need you to distract the bouncer by the toilets in the main hall. Don't care how you do it. Just hold their attention for a few minutes.<</quote>>
<<quote you>>And you'll pay off my debt?<</quote>>
<<quote colonel>>Well, that's just step one. If you can do that for me we'll move on to step two. And you'll be paying off that debt in no time<</quote>>
<<set $colonel = 1>>
[[High Rollers]]
<<case 1>>
<<quote colonel>>Distract the bouncer for me. Maybe try going in to the wrong toilets. Strict laws here on who can go into what bathroom<</quote>>
[[High Rollers]]
<<case 2>>
<<quote colonel>>Well done. That was some smart thinking ?son. Now, how would you like to clear your debt?<</quote>>
<<if $debt <= 0>>
<<quote you>>Actually, I'm debt free now.<</quote>>
<<quote colonel>>Well that's a shame now. How would you like to take these bastards for all the money they have?<</quote>>
<<else>>
<<quote you>>Depends on what you want me to do I guess<</quote>>
<<quote colonel>>How would you like to take these bastards for all the money they have?<</quote>>
<</if>>
<<quote you>>Are you... we... going to rob the place?<</quote>>
<<quote colonel>>Not exactly. Now listen up ?son. I'm going to burden you with some knowledge and you have to promise me you tell no-one, okay?<</quote>>
<<quote you>>Okay<</quote>>
<<quote colonel>>I'm from the New Nevada Gaming Commission. There's been strange rumours coming out of this place. Rigged games. Undocumented Workers. Guests Disappearing. I'm here to find out the truth. <<if $fem > 50>>And by the look of you there's more going on here than I imagined<</if>><</quote>>
<<quote you>>Wait, is it safe to be talking here?<</quote>>
<<quote colonel>>Sure it is. The problem with 100% surveillance is that it's impossible to monitor it all at once. They'll only watch suspicious people. Sometimes it pays to be obvious.<</quote>>
<<quote colonel>>My little drone friend mapped out all kinds of things in the staff only area, but nothing incriminating. Eventually hit a locked stairwell. Couldn't get past it. Need to find out what's down there.<</quote>>
He pulls out a small device and hands it to you.
<<quote colonel>>Take this. It's a slot debugger. It'll let you know how far off any given machine is from spitting out a jackpot.<</quote>>
<<quote you>>Wait...<</quote>>
<<quote colonel>>And here's $2,000. Don't call it debt, call it a downpayment. If you succeed, I'll be in <i>your</i> debt.<</quote>>
<<quote you>>What am I going to do?<</quote>>
<<quote colonel>>You're going to break the bank. Well, almost. You're going to win jackpot after jackpot until they notice you. They'll take you back behind the scenes and, because all transactions are logged, they'll be forced to make you a deal.<</quote>>
<<quote you>>So I get taken away and take the deal?<</quote>>
<<quote colonel>>Well, maybe push a little bit. Try and get left alone for a while. I need you to snoop around and figure out what's going on back there. <</quote>>
<<quote colonel>>Don't push them too hard though or they'll be forced to do something drastic. I need you out of there in once piece.<</quote>>casino_bank
<<quote you>>Guess I'll go play some slots.<</quote>>
<<set $cash += 2000>>
<<set $colonel = 3>>
[[High Rollers]]
<<case 3>>
<<if def $colonel_lab && def $colonel_security>>
<<quote colonel>>Excellent work my friend. You should be debt free now. I do have one last request. If you'll indulge me.<</quote>>
<<quote you>>Haven't I done enough?<</quote>>
<<quote colonel>>Indeed you have. My last request is that you help me find this scientist. I have a horrible feeling he may have been a victim of his own medicine.<</quote>>
<<quote you>>And if I don't?<</quote>>
<<quote colonel>>This is a request ?son. You've done more than enough, and been rewarded for it. But if we are to put a stop to this I need that scientist.<</quote>>
<<quote you>>How do we find him?<</quote>>
<<quote colonel>>The data you downloaded included a headshot. I've run it through a few algorithms to see what a female version of him might look like.<</quote>>
He passes you a tablet device with some photos on it.
<<quote you>>So if I see any of these girls, I come tell you<</quote>>
<<quote colonel>>All I can ask of you now ?son.<</quote>>
<<set $colonel = 4>>
<<else>>
<<quote colonel>>By my calculations you'll need to hit about <<money $casino_bank>> to grab their attention.<</quote>>
<</if>>
[[High Rollers]]
<<case 4>>
He passes you a tablet device with some photos on it.
<<quote colonel>>Here's the photos if you need to see them again. Try and find him, please?<</quote>>
[[High Rollers]]
<<case 5>>
<<quote colonel>>I've messaged the NNGC and law enforcement. We're about ready to move in on the casino. Have you found the good doctor yet?<</quote>>
[[Yes, at the Roulette table|Colonel_EndTalk]]
[[Not Yet|High Rollers]]
<<default>>
<</switch>>
<<set $playboy = 1>>\
As you make your way through the Casino, you catch the eye of a well dressed man.
He comes up beside you and smiles
<<quote playboy>>Hey there. Having a a good time?<</quote>>
His voice is smooth and inviting. It's a struggle not to stare at him as he talks
<<quote playboy>>I like a quiet girl. I'm Stockman, John Stockman. Can I get you a drink?<</quote>>
[[Go to the Bar with him|Bar]]
[[Go back to the main floor|MainFloor]]
<<set $playboy = 4>>\
<<set $drunk = 20>>\
<<set $horny = 0>>\
<<set $time += 60*60>>\
Your head hurts, you're clearly hung over. You're lying down on top of a bed, staring at the ceiling.
Looking around you notice you're not in your hotel room. You are, in fact, in a suite.
You remember the man, John, from the bar and your face flushes red.
What happened? Is this his room?
You look down and see you're not in your own clothes. Instead you're in a very modest hotel dressing gown. You spot your clothes draped neatly over a chair in the corner of the room.
On the dresser is a smartphone.
<span id='investigate'>
<<link "Investigate the Smartphone">>
<<replace '#investigate'>>
The phone is unlocked, much to your surprise. It's open on the gallery. There are numerous shots of you, naked, and posing. You scroll through them until you see shots of you passed out.
The shots get more and more intimate, getting close shots of your breasts and <<if $has_penis && $has_vagina>>your mutliple sets of genitals<<elseif $has_penis>>your penis<<elseif $has_vagina>>your pussy<<else>>your complete lack of genitals<</if>>
[[The door Opens|PlayboyTalk]]
<</replace>>
<</link>>
<<link "Get dressed">>
<<replace '#investigate'>>
You go over to the chair and put your clothes back on.
[[The door Opens|PlayboyTalk]]
<</replace>>
<</link>>
</span>John comes through the door
<<quote playboy>>Ah, you're awake.<</quote>>
You no longer appear to be in the funk you were in the bar. His voice doesn't seem at all hypnotic and your thoughts are entirely your own.
<<quote you>>What's going on? Where am I? What happened?<</quote>>
<<quote playboy>>I apologise for any distress. I haven't been entirely forthcoming with who I am, but I had to be sure you were who I thought you were.<</quote>>
<<quote you>>And what does that mean?<</quote>>
<<quote playboy>>I'm a representative of Globotech Pharmaceuticals. A year ago one of our scientists stole some of our research and went underground. We believe he's made his way here and is using casino patrons as guinea pigs. Yourself included.<</quote>>
You look down at your body as he moves into the room.
<<quote you>>The changes? Why didn't you just say so? Why get me drunk? Did we...<</quote>>
He picks up his phone and looks at it.
<<quote playboy>>The casino floor is rigged with surveillance. I couldn't risk revealing who I was out there. I've swept the room for bugs. We can talk freely here.
And no, we did not.
Though I had to do a proper examination, and gather evidence for my employer, which required the removal of your clothes. <</quote>>
<<quote you>>Can you reverse it? The changes I mean?<</quote>>
<<quote playboy>>I'm afraid we cant. The research he was doing was deemed unethical and unnatural. We cancelled his project. <</quote>>
<<quote you>>Unnatural?<</quote>>
<<quote playboy>>He was playing God. His work was... perverted.
It only makes sense that a Godless wretch like that would find their way to Las Vegas.<</quote>>
<<quote you>>How did you know he was here?<</quote>>
<<quote playboy>>That is not for you to know. Just know that all the clues led me to this Casino.<</quote>>
He gestures with his smartphone
<<quote playboy>>This phone has built-in chemical detectors. For the most part it detected the usual casino-standard levels of dopamine enhancing substances.
However, around you the concentrations seemed to spike. And they contained substances related to the cancelled project.
I followed you around until I was sure you were being affected.
It was subtle at first, but now it's undeniable.<</quote>>
<<quote you>>There must be something I can do?<</quote>>
<<quote playboy>>We think there's a drug dealer somewhere in the hotel who is selling pills - Concentrated versions of these compounds. If we can find him, we can seize his stash as Globotech property. He may have the key to reversing this.<</quote>>
<<if $dealer > 0>>\
[[Tell him about Devin|PlayboySqueal]]
[[Promise to find the Dealer (Lie)|PlayboyMissionStart]]
<<else>>\
[[Promise to help find the Dealer|PlayboyMissionStart]]
<</if>>\<<set $playboy = 6>>\
<<set $noblackout = true>>\
<<quote you>>I know where the Dealer is. He's in Suite 309. Right below you<</quote>>
<<if $fem < 50>>
<<quote playboy>>I can tell. You have partaken in the cure?<</quote>>
<<quote you>>Yes. Though I still think I'm being changed<</quote>>
<</if>>
John picks up his phone and begins to tap away at it.
<<quote playboy>>I will report to my superiors and we will deal with this dealer.<</quote>>
<<quote you>>What happens to me?<</quote>>
<<quote playboy>>We're also moving to arrest the casino owners simultaneously. Any winnings you have will be null and void, but so will any debt you've accrued.
You're a key witness here, we'll have to move you to protective custody until it gets to court. Maybe even beyond that.<</quote>>
You gulp. You weren't prepared for that.
John grabs a pair of handcuffs from a duffelbag.
He snaps one end of the cuffs to your wrist and the other to his
<<quote you>>HEY!<</quote>>
<<quote playboy>>I have to go monitor the arrest, you're going to have to come with me. I can't trust they won't come for you here.<</quote>>
He pulls a gun out of the bag as well and holsters it under his jacket.
He tugs on the cuffs and moves towards the exit.
[[Follow|PlayboyEnd_Arrest]]<<set $playboy = 5>>\
<<quote you>>I'll do my best to find him<</quote>>
<<quote playboy>>I'm not sure how you're going to find him. I have been unable to locate him. Perhaps my pious and chaste nature prevents me from making contact.
I cannot ask you to... sin... in order to find him. But you may have to ask God for forgiveness by the time this is over<</quote>>
<<quote you>>Sin?<</quote>>
<<quote playboy>>Vegas is a den of excess, sin and vice. Perhaps overindulging in that may lead you to him.<</quote>>
<<quote you>>Get blackout drunk and fuck a lot of people then?<</quote>>
John winces as you swear.
<<quote playboy>>Come back here when you find him.<</quote>>
[[Leave the Room|Hotel]]You knock on the door and John opens it.
<<quote playboy>>Anything to report?<</quote>>
<<if $dealer > 0>>\
[[I've found the Dealer|PlayboySqueal]]
<</if>>\
[[Nothing to Report, Sorry|Hotel]]<<set $noblackout = true>>\
<<if $colonel >= 4>>\
As you descend in the elevator a thought comes to you;
<<quote you>>What about the scientist? Where is he?<</quote>>
<<quote playboy>>You don't need to worry about him. We have his location. He won't escape<</quote>>
<</if>>\
You and John step out of the elevator onto Floor 3.
There are already about eight SWAT-looking guys lining the corridor outside of Suite 309, readying themselves to go in.
You notice the patch on their shoulder is the Globotech logo.
What have you gotten yourself into. This company has it's own SWAT team. It's own spy network.
You're in way over your head.
Before you can gather your thoughts the door bursts open and the team pour into the room.
You can hear shouting and screaming, followed by gunshots.
John tugs the cuffs and pulls you down the corridor and into the room.
It's not quite the bloodbath you expected.
About two dozen naked people line the walls of the suite, huddled together whimpering. Devin, the dealer, lies dead on the bed, pistol in his hand.
He is also completely naked. You're not sure where he was keeping it.
John begins to command the assault team, directing them to evidence. Picking up pill bags.
You spot some pills on the ground. You have time to grab one.
<<link "Blue Pill" "PlayboyGrab">><<set $pillgrab = "blue">><</link>>
<<link "Pink Pill" "PlayboyGrab">><<set $pillgrab = "pink">><</link>>
<<link "Purple Pill" "PlayboyGrab">><<set $pillgrab = "purple">><</link>>
[[Ignore them|PlayboyGrab]]<<set $end = "witness">>\
<<set $debt = 0>>\
<<set $cash = 0>>\
<<if def $pillgrab>>You grab a $pillgrab pill off the floor and pocket it.<</if>>
The assault team leave the room and John pulls you out too.
<<quote playboy>>I'm sorry you had to see that, but you have to understand who exactly it is that is protecting you now<</quote>>
You enter into the elevator and he unlocks the handcuffs.
<<quote playboy>>The rest of the team waiting on the floor for us. You should be safe now<</quote>>
You exit out onto casino floor. The place is swarming with heavilly armed men.
<<if $colonel >= 4>>[[Run to the Colonel|PlayboyColonelMeet]]<</if>>
[[Leave with John|End]]As you're passing the High Roller lounge you spot the Colonel standing with two of the soldiers.
You slip away from John run towards the Colonel.
The two soldiers turn and ready their guns, you stop and put your hands up
<<quote colonel>>It's okay ?he's with me<</quote>>
John walks through the door
<<quote playboy>>You've been working with Sanders here too?<</quote>>
<<quote colonel>>Show some damn respect boy. You've already stepped well out of line with this invasion. I know you mormon boys are sheltered, but Utah and Nevada have been in different countries for a decade now.<</quote>>
<<quote playboy>>I'm sure you are aware of what's going on here. Especially if you've been working with my friend here. You're a God-fearing man Colonel. We are here to do Gods work, and God cares not about Jurisdiction.<</quote>>
He gestures to the soldiers.
<<quote playboy>>Kill them both.<</quote>>
The guards raise their guns and fire. John collapses on the floor. The Colonel walks over to the bullet riddled body and grabs his bag.
<<quote colonel>>Dumb bastard. Okay boys, through the back door. I've got a car waiting for us.<</quote>>
<<set $end = 'colonel_victory'>>
[[Go with them|End]]You leave the casino with John and get into the back of a waiting police van.
There is a croupier bunny sitting in the back smiling to herself
<<quote bunny>>Hi there! I'm Candy! I remember you! From the Roulette table!<</quote>>
<<quote playboy>>Mr $sname, this is Dr. Richard Ryder.<</quote>>
<<quote you>>Was this what they had planned for me?<</quote>>
<<quote playboy>>Most likely. Once we're secure we'll be using his own formula to restore him to normal.<</quote>>
The door closes and the van drives off.
---
Two days later, after having countless statements taken by many different people - Some law enforcement, some Federal, some from God-knows-where - you are taken to the airport and bundled aboard a private jet. You're being flown to your new home.
<<switch $pillgrab>>
<<case "blue">>
During the flight, John confronts you about the pill you took.
<<quote playboy>>We were going to give you one of the pills to turn you back to normal, but it seems you took matters into your own hands.
i'm disappointed you didn't trust us, but I can understand. Feel free to use the restroom.<</quote>>
You nod, leave your seat and go into the restroom.
<<set $has_penis = true>>\
<<set $has_vagina = false>>\
<<set $fem = 0>>\
After five minutes, and a mind-blistering orgasm, you find yourself completely back to normal.
<<case "pink" "purple">>
During the flight, John confronts you about the pill you took.
<<quote playboy>>We were going to give you one of the pills to turn you back to normal, but it seems you took matters into your own hands.
i'm disappointed you didn't trust us, but I can understand. Feel free to use the restroom.<</quote>>
You show John the $pillgrab pill.
John sighs
<<quote playboy>>You really are a Godless heathen aren't you? Fine. If this is what you really want go ahead. I can spin this to my superiors that this will at least make you more difficult to find. but understand there is no way back from this. Once this is over we're destroying all research and pills.<</quote>>
You nod and make your way to the bathroom
<<set $has_penis = ($pillgrab == "purple")>>\
<<set $has_vagina = true>>\
<<set $fem = 100>>\
After five minutes, and a mind-blistering orgasm, you find yourself completely feminized.
<<default>>
<<if $fem > 0>>
During the flight, John pulls out a blue pill.
<<quote playboy>>I took one of these pills from the evidence. I promised you we'd see you right. Feel free to use the restroom.<</quote>>
You nod, leave your seat and go into the restroom.
<<set $has_penis = true>>\
<<set $has_vagina = false>>\
<<set $fem = 0>>\
After five minutes, and a mind-blistering orgasm, you find yourself completely back to normal.
<</if>>
<</switch>>
After what feels like an age, the plane lands. Somewhere in rural Utah. A small farm.
<<quote playboy>>You're going to be living on a farm, the owners are Globotech employees. They grow and test our techno-crops. You'll be working with them as a farmhand<</quote>>
<<quote you>>How long for?<</quote>>
<<quote playboy>>As long as it needs to to keep you safe.<</quote>>
---
<<if $fem > 50>>
Two Years Later
Working at the farm, waiting for your day in court, was very eventful. The family you were staying with were strict Mormons, a complete one-eighty from the hedonism you escaped from, and were very welcoming - especially the son, Jake.
He convinced his father that a lady like yourself shouldn't be out working the fields. It was clear he was crushing on you.
You spent your days in the farmhouse doing household chores. You got a wage from Globotech for your work, despite it not being what you were originally asked to do.
Jake's strict Mormon upbringing prevented him from properly making moves on you. <<if $has_penis>> Keeping your secret from him was easy.<</if>> But towards the end of your stay there he became clearly anxious about you leaving.
You've been through a lot, but the case is over. The casino has been shut down, those responsible for the kidnappings have been rounded up. The New Confederacy doesn't fuck around it seems, as all the higher ups in the organisation were sentenced to death. Dr Ryder was changed back and stood trial as well. He was sentenced to life imprisonment.
Freed from the need for protection you think about returning to your old life.
<<if $has_penis>>You feel that you can't lie to Jake any more and tell him about your true nature. He is naturally upset that you didn't tell him sooner, but after a few days he comes to you to let you know he doesn't care. He loves you, and he wants to leave the farm behind.
Jake's father is disappointed, but understands and gives his blessing. You both return to your old apartment and you attempt to return to your old life. Well, not quite exactly as it was. It's going to be much more fun.
<<set $end_number = 6>>\
<<set $end_result = "Ending 6: Big City Girl">>\
<<else>>Being around Jake awakened things in you you never thought possible. a few weeks before you were set to leave your desire takes over, and Jake reciprocates enthusiastically.
A night of lovemaking in the barn ensues.
A week goes by and you begin to feel ill. Worried, you take a pregnancy test. Positive.
You're not sure how you feel about this. Jake is certainly upset and scared. Neither of you are sure what to do.
The day before you're set to leave, Jake professes his love for you. He wants you to stay here and raise your child together.
Jakes father is upset when you tell him. He demands you two get married before the baby is born.
Two months later, while still able to hide your pregnancy, you are married in a shotgun ceremony.
you eventually resign yourself that this is your life now, and even learn to enjoy being a Farmhands wife.
Over the coming years you have four wonderful children with Jake. After his father passes, Jake takes over the farm and you become a proper Farmer's Wife.
<<set $end_number = 5>>\
<<set $end_result = "Ending 5: Farmer Wife">>\
<</if>>
<<else>>
Two Years Later
Working at the farm, waiting for your day in court, was largely uneventful. The family you were staying with were strict Mormons, a complete one-eighty from the hedonism you escaped from, and were very welcoming - if a little boring.
The work was hard, but steady, and you got used to it. You got a wage from Globotech for your work, but you'll be glad to get back home.
You've been through a lot, but the case is over. The casino has been shut down, those responsible for the kidnappings have been rounded up. The New Confederacy doesn't fuck around it seems, as all the higher ups in the organisation were sentenced to death. Dr Ryder was changed back and stood trial as well. He was sentenced to life imprisonment.
Freed from the need for protection you attempt to return to your old life, as hard as that might be.
<<set $end_number = 7>>\
<<set $end_result = "Ending 7: Witness Protection">>\
<</if>><<set _endings = [
"Back to normality",
"Bunny Croupier",
"Mistaken Identity",
"An offer you could refuse",
"Caught Snooping",
"Farm Girl",
"Big City Girl",
"Witness Protection",
"Globo Dolls",
"Southern Fried Belle",
"Barbie Girl",
"Upping the Antebellum",
"The South will Raise you",
"Doing Dallas"
]>>\
<<set _ending_hints = [
"Clear your debt and get home",
"Go bankrupt and hand yourself over",
"You don't look like your passport photo...",
"Break the Bank and be stubbourn",
"Get caught behind the scenes",
"Fall in love with a Farmhand",
"They love Futa in Utah",
"Get through Witness Protection",
"Narc on the Narc",
"Pit the Colonel and the Dealer against each other",
"Become the dealer's doll",
"Keep secrets from the Colonel",
"Go all in with the Colonel",
"Go all in with the Colonel, and be a slut"
]>>\
<<for _i = 0; _i < _endings.length; _i++>>
* <<if recall("ending_"+_i,false) == true>><span class='ending_unlocked'>_endings[_i]</span><<else>><span class='ending_locked'>_ending_hints[_i]</span><</if>>
<</for>>As he leads you through the hotel you begin to feel the changes more acutely.
<<if $has_penis>>Your penis disappears. No orgasm this time. Just vanishes.<</if>>\
<<if $has_vagina != true>>Between your legs grows a wet and needy vagina.<</if>>\
<<if $fem < 70>>Your body fills out to exceptionally feminine proportions. There is no feeling as this happens. Your body is completely numb<<else>>
Your body doesn't change too much, but you do begin to lose sensation.
<</if>>
<<switch $end>>
<<case "ratoutjohn" >>
By the time you reach Suite 409 you are almost completely numb to all external stimulation. You can hear and see, but your skin registers almost nothing when you touch yourself. And you're beginning to feel <i>very</i> needy in that department.
Devin, still naked, uses his personal wallet to open the Suite door and quickly rushes in, brandishing his gun.
<<quote playboy>>What manner of intrusion is this!<</quote>>
John dives for his duffelbag but doesn't make it before Devin is upon him.
You stand in the door and watch the ensuing struggle.
With surprising strength and brutality for such a skinny figure, Devin overpowers the agent, knocking him down.
He begins to feed the pills down the unconscious mans mouth.
You try to move into the room but you find your movements beginning to stiffen.
You try and cry out to Devin but all that comes out is a weak squeak.
<<quote dealer>>So this is what they do? Amazing. Two living sex dolls! I wonder if they were supposed to do this.<</quote>>
He comes over, picks you up and effortlessly throws you on the bed. With your movement limited and the door closed, your fate is all but sealed.
Devin rifles through Johns belongings, gathering up the evidence, and taking Johns gun. Devin comes over to you, completely motionless. Lying rigidly in your last standing pose.
He experiments, moving your arms and legs. It seems you're fully articulated. Like an action figure. You feel nothing at all from his fumblings except a deep, longing need to be fucked.
He puts a finger in your self-lubricating plastic pussy. A sharp jolt fires up your spine. You let out the only sound you can, a sensual moan, as you cum harder than you ever have.
After a few minutes, John comes to. He's already showing signs of changing. His formerly tall playboy-ish figure has shrunk down and filled out to be, well, a playboy cover model figure. He has already lost the ability to speak, and can barely make any movements of his own volition.
<<quote dealer>>Time to move you two somewhere more secure I think<</quote>>
He picks you both up under his arms. You're clearly much lighter than you were before, though not entirely weightless as he does struggle to get you both out of the room at the same time.
He takes you both into the Elevator and down. Deep into the basement.
<<quote dealer>>I keep a small safe room down here. Just in case.<</quote>>
The room is dimly lit. It's well furnished though. Like a smaller single-bed hotel room, but with no windows.
He lays you both down on the bed and begins fucking you hard. Again you feel a jolt of pleasure every time he thrusts. You moan with every hard fuck, which just encourages him to go faster.
Once he's done he moves over to John and does the same. You quickly feel empty again.
When is he coming back? You need it. You need it all the time. You can't wait until he comes back, but he's not. You need it. You want to be fucked.
<<quote dealer>>I'll be able to charge a small fortune for both your holes, I just know it<</quote>>
Fucked. Fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked.
<<set $end_number = 8>>\
<<set $end_result = "Ending 8: Globo Dolls">>\
<<set $has_penis = false>>
<<set $has_vagina = true>>
<<set $fem = 100>>
<<case "ratoutcolonel">>
Devin had put some clothes on for this, seeing as he has to go down to the Casino floor.
By the time you reach the High Rollers lounge you are almost completely numb to all external stimulation. You can hear and see, but your skin registers almost nothing when you touch yourself. And you're beginning to feel <i>very</i> needy in that department.
The High Rollers lounge is quiet right now. Only the Colonel and the Bar Bunny are in there.
The Colonel registers you and Devin, seconds before Devin breaks out into a sprint and goes to tackle him.
The ensuing struggle sees the Colonels ten gallon hat fly off. The surprisingly fit old man versus the destructively fast drug dealer.
As tables smash and chairs break, it's not clear who has the upper hand until the Colonel stands up and Devin doesn't.
<<quote colonel>>What have they done to you?<</quote>>
He looks at you in horror. You are unable to respond. Or even move. You just feel the ever growing need to be fucked in your plastic pussy.
He looks down at Devin and picks up his gun, and the bag of pills he was trying to force down his throat.
<<quote colonel>>He's dead. <</quote>>
The Bar bunny stands motionless, smiling. The red Jewel on her choker glinting.
<<quote colonel>>We need to get out of here. Now. <</quote>>
He grabs you under one arm and heads for a Staff only door.
Two bouncers come in through the main door as the Colonel shoots the lock off the Staff door.
They give chase as he bursts behind the scenes. Sprinting down the white corridors faster than you'd give a man of his age credit for, he handilly outpaces the two bouncers chasing you.
<<quote colonel>>Thanks to you I have a full map of these corridors. There should be an exit into the car park round this corner.<</quote>>
He bursts out into the open air. The hot night air blowing against your aching pussy. Driving you insane. You need to be fucked.
Quickly he reaches his car. A bright yellow Humvee. He puts you in the passenger seat before climbing in to drive. You need to be fucked.
Around seven bouncers begin to approach the vehicle, you need to be fucked, but the huge off-roader just backs up, you need to be fucked, and straight through the security wall, you need to be fucked, out onto a side road. You need to be fucked.
--
A few hours you need to be fucked later.
You need to be fucked. You need to be fucked. You need to be fucked.
The Colonel is saying something to you need to be fucked, but you need to be fucked and don't care what he's saying. You need to be fucked. You make out something about an antidote but you need to be fucked.
You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked.
--
Some. You need to be fucked. Time. You need to be fucked. Later. You need to be fucked.
<<quote colonel>>Are you okay now?<</quote>>
For the first time in what seems like years you don't need to be fucked any more.
You manage to nod your head just a bit.
<<quote colonel>>Good, it's working. It's been two weeks since Vegas. We shut that casino down and got those bastards good. They managed to destroy most of their supply though.<</quote>>
You begin to feel more human again. You look down. You're still female. But at least you can look down.
<<quote you>>I... <</quote>>
<<quote colonel>>Don't strain yourself. We were only able to salvage one of these 'pink pills' from the crime scene. Not one of the blue ones. We tried to get Globotech to make us a batch but they outright refused. Mormon bastards.<</quote>>
You're begining to feel your strength returning.
<<quote you>>Thank you... for saving me<</quote>>
You look around you. You're not sure where you are, but it's very very expensive looking
<<quote you>>Where are we?<</quote>>
<<quote colonel>>We're at my ranch, just outside Dallas. I felt it was my duty to look after you. After all, I'm the reason you got into this mess. I should never have put you in that position. You're welcome to stay here as long as you like.<</quote>>
--
Six months later and you're still there. You want for nothing. You lounge around the mansionhouse all day, sipping ice tea on the porch. Eventually you pluck up the courage to join the other ladies in the area in their activities.
The Colonel was true to his word, he never asked you to leave. Even when those responsible were all brought to justice. He's shown no desire beyond treating you like a proper southern lady.
After another year you both realised what was happening. You were happy here, and he finally got the daughter he never had. He pulled some strings and got you citizenship in the New Confederacy, as his adopted daughter.
<<set $end_number = 9>>\
<<set $end_result = "Ending 9: Southern Fried Belle">>\
<<set $has_penis = false>>
<<set $has_vagina = true>>
<<set $fem = 100>>
<<case "haremgirl">>
He takes you in the elevator, still naked, and you descend into the basement.
By the time you reach your destination you are almost completely numb to all external stimulation. You can hear and see, but your skin registers almost nothing when you touch yourself. And you're beginning to feel <i>very</i> needy in that department.
<<quote dealer>>I keep a small safe room down here. Just in case.<</quote>>
The room is dimly lit. It's well furnished though. Like a smaller single-bed hotel room, but with no windows.
You shuffle into the room. It's hard to move properly but you manage it.
He pushes you down onto the bed and begins to fuck you. You are unable to stop him. But you don't want to. You need to be fucked.
He puts a finger in your self-lubricating plastic pussy. A sharp jolt fires up your spine. You let out the only sound you can, a sensual moan, as you cum harder than you ever have.
As he fucks you harder and harder and harder you lose all sensation everywhere except from your deep, yielding pussy. You are unable to move of your own accord now.
He pulls out and begins moving your arms and legs by hand. It seems you're fully articulated. Like an action figure. You feel nothing at all from his fumblings except a deep, longing need to be fucked.
He lays you down on the bed and begins fucking you hard again. Again you feel a jolt of pleasure every time he thrusts. You moan with every hard fuck, which just encourages him to go faster.
Once he's done he stands up and marvels at you. You quickly feel empty again.
When is he coming back? You need it. You need it all the time. You can't wait until he comes back, but he's not. You need it. You want to be fucked.
<<quote dealer>>I'll be able to charge a small fortune for your hole, I just know it<</quote>>
Fucked. Fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked. You need to be fucked.
<<set $end_number = 10>>\
<<set $end_result = "Ending 10: Barbie Girl">>\
<<set $has_penis = false>>
<<set $has_vagina = true>>
<<set $fem = 100>>
<</switch>><<set $noblackout = true>>
<<if $debt > 0>>
You are out of time.
<<if $debt > $cash>>
You cannot pay off your debt. Before you can think you're knocked unconcious.
<<set $end="bunny">>
[[Wake Up|End]]
<<else>>
You have enough cash to pay off your debt.
You hurry outside and head to the airport
<<set $cash -= $debt>>\
<<set $debt = 0>>\
<<if $cash < 10>>[[Walk to the Airport|WalkToAirport]]<<else>>
[[Get a taxi to the Airport|WalkToAirport_End]]<</if>>
<</if>>
<<else>>
You hurry outside and head to the airport
<<set $cash -= $debt>>\
<<set $debt = 0>>\
<<if $cash < 10>>[[Walk to the Airport|WalkToAirport]]<<else>>
[[Get a taxi to the Airport|WalkToAirport_End]]<</if>>
<</if>><<set _sexcount = $o_count + $o_recieved +$vsex_count+$vsex_recieved +$asex_count+$asex_recieved +$psex_count >>
<<switch $end>>
<<case "colonel">>
<<quote colonel>>It's showtime<</quote>>
The colonel picks up his phone and moves towards the Casino floor, he motions for you to follow.
As you get there, a dozen Law Enforcement agents come through the front door, disarming and arresting any of the Bouncers they see.
One of them comes over to the colonel
<<quote sheriff>>We've already arrested the Ring-leaders at another location. We'll do a sweep of the floor for known persons of interest. Anything else we need to know?<</quote>>
<<quote colonel>> <<if $colonel_dealer && $colonel_playboy>>There's a mob-aligned dealer in Suite 309, and a Globotech agent in Suite 409. Send a team up to get them.<<elseif $colonel_dealer>>There's a mob-aligned dealer in Suite 309. Send a team up to get them.<<elseif $colonel_playboy>>There's a Globotech agent in Suite 409. Send a team up to get them.<<else>>Do a sweep of the hotel suites, just in case.<</if>>
I'll take this witness into protective custody.
<</quote>>
<<case "colonel_victory">>
<<set $colonel_dealer = true>>
<<set $colonel_playboy = true>>
You follow the Colonel and his men through the back corridors. Following the map his drone made.
Outside, more Globotech guards patrol the car park. The Colonels men, still dressed in their Uniforms, go unnoticed.
All four of you bundle in to the Colonels Humvee. He backs it up through the brick wall behind you and reverses onto the road.
The guards notice you, but are caught flat-footed and are unable to give chase.
<<quote colonel>>After we got the information you retrieved we figured Globotech would make a move first. Got these fine boys, local Sherrif's men, to come in disguise to extract us.<</quote>>
<<quote colonel>>Globotech just caused a major international incident. But we got the evidence. We got the formulae as well, so we should be able to restore anyone that got transformed too.<</quote>>
<<switch $pillgrab>>\
<<case "blue">>
<<set $has_vagina = false>>
<<set $has_penis = true>>
<<set $fem = 0>>
<<set $presenting = "male">>
You show the colonel the blue pill you swiped.
<<quote colonel>>Speaking of 'curing'. That'll put you back to your old self then? If'n you want a bit of privacy, the back of the 'vee folds out into little bunk room.<</quote>>
You nod and clamber back there, pulling down the privacy shade. You hold back the moans as your body morphs back to the way it was before all this madness happened.
<<case "pink">>
<<set $has_vagina = true>>
<<set $has_penis = false>>
<<set $fem = 100>>
<<set $presenting = "female">>
You show the colonel the pink pill you swiped.
<<quote colonel>>Speaking of 'curing'. You really want to be a proper lady then? By all means ?boy. If'n you want a bit of privacy, the back of the 'vee folds out into little bunk room.<</quote>>
You nod and clamber back there, pulling down the privacy shade. You hold back the moans as your body morphs completely into a woman for the last time.
<<case "purple">>
<<set $has_vagina = true>>
<<set $has_penis = true>>
<<set $fem = 100>>
<<set $presenting = "female">>
You show the colonel the purple pill you swiped.
<<quote colonel>>Speaking of 'curing'. Is that the one that gives you.. y'know... both? I guess if that's what you want, by all means... If'n you want a bit of privacy, the back of the 'vee folds out into little bunk room.<</quote>>
You nod and clamber back there, pulling down the privacy shade. You hold back the moans as your body morphs into a curvy shape, both your penis and pussy sending orgasmic shocks through your body. You have trouble holding back your screams of exstacy.
<</switch>>
One of the guards radios crackles to life.
<<quote sheriff>>We've intercepted the Globotech trucks en route to the border. Including the Croupier from the Roulette table.<</quote>>
<<quote colonel>>Well whaddayaknow. We got ourselves a full house<</quote>>
<</switch>>\
--
Two Weeks later
For your help in uncovering a conspiracy, exposing a corrupt megacorporation and giving an unconditional win to the New Confederacy, the Colonel has managed to arrange Asylum for you.
<<if $colonel_dealer != true>>He reports that a number of the local law enforcement were killed trying to apprehend the mobs dealer in the Hotel suite<</if>>
<<if $colonel_playboy != true>>The globotech agent trying to keep the truth hidden escaped custody.
<</if>>\
<<if $colonel_dealer && $colonel_playboy>>\
The Colonel sends his personal congratulations to you on bringing the whole organisation down and putting a stop to the clandestine experiments on unsuspecting Casino Patrons.
<<set $end_number = 12>>\
<<set $end_result = "Ending 12: The South will Raise You">>\
<<else>>
<<set $end_number = 11>>\
<<set $end_result = "Ending 11: Upping the Antebellum">>\
<</if>>
<<if $presenting == 'female'>>\
The New Confederacy always seemed to you, from the outside, to be a backwards looking nation. Deciding to be a Woman in this society was always going to be a bit of a gamble, but lets face it, you didn't get where you are right now by not being a bit of a gambler.
The Colonel offered to look after you, but couldn't while the investigation was going on. Conflict of Interest.
You were put up in an appartment in Dallas, Texas. You were called as a witness a few times, giving testimony at the hearings, but were mostly left on your own.
Living on your own in a strange town, in a strange body, left you feeling lonely. Getting a decent paying job here, with your skills, as a woman was hard. <<if $cash > 100>>Especially since none of the money you made at the casino could be cashed out.<<else>>Especially since you had no real cash to your name<</if>>
<<if _sexcount < 5>>Times get so hard you consider selling your new body but shudder at the thought. You settle down with your new life, your new identity, working in a local diner.
<<elseif _sexcount < 20>>Times get hard. You take to the streets to pay the bills. Your experience in Vegas has served you well enough to get by. You take the odd job working diners or cleaning houses, but the additional cash from whoring yourself out makes life a lot more comfortable.
<<else >>Times get hard. You take to the streets to pay the bills. Something clicks in your mind. Something deep surfaces. A longing need to be the biggest whore in the city. Maybe it was all that sex you had in Vegas, or all the pills you took. Or both.
Regardless you find yourself out walking to streets most nights. <<if $has_penis && $has_vagina>>Your ability to please everyone with both your penis and vagina sees you in high demand, even if you're hardly treated with respect<</if>>
After an altercation with a client, you're spotted by a pimp who offers to deal with him in exchange for you coming under his employ.
<</if>>\
<<else>>\
<<if _sexcount < 20>>Without continued support, your money runs very low. You take multiple jobs to make ends meet.
<<else >>Times get hard. You find yourself back in public bathrooms giving hand jobs. Your skilled hands allow you to make enough to survive.
After an altercation with a client, a pimp offers to protect you, giving you a safe space to practice your craft and move on to more lucrative acts in exchange for a slice of your earnings.
<</if>>\
<</if>>\
Five years pass before the case is considered 'complete', but the political and social ramifications of what went on in Vegas still reverberate around the world. Especially as the pills formula leaked in the process.
<<if _sexcount < 20>>\
After your good work, the Colonel offers you a position at the NNGC working under him, as an agent.
<<else >>\
After it's all over, the Colonel comes to find you but is disgusted by what he sees you've been doing.
You go back to your pimp and spend the rest of your days being whored out on the streets of Dallas.
One day, your pimp offers you a pill that will heighten your sexual abilities. You know it's one of the Globotech pills, but you take it anyway. <<if $fem < 50>>You find yourself transformed into a gorgeous busty woman.<</if>> Somehow it's different this time. You find yourself loving every minute of it, even beyond the transformation. Your pleasure heightened, your hunger for sex insatiable. You feel every fiber of your being pulse with sexual energy continually. You must have sex with everyone you meet. <<set $has_vagina = true>><<set $has_penis = false>><<set $fem = 100>><<set $presenting = 'female'>>
<<set $end_number = 13>>\
<<set $end_result = "Ending 13: Doing Dallas">>\
<</if>><<set $end = 'colonel'>>\
<<set _incongruentpresentation = ($fem <= 50 && $presenting == 'female') || ($fem >= 60 && $presenting == 'male')>>
<<quote colonel>>You've done good work for us, ?boy. With the information you've gotten us, we'll guarantee your safety here in the Confederacy. After what we're about to do to Globotech you might not be safe back home. Wherever that is, I'm sure they have an extradition treaty.<<if _incongruentpresentation>>
Are you okay being called ?boy by the way?<</if>>\
<</quote>>
<<if _incongruentpresentation>>\
<<quote you>>I'm <<cycle "$presenting">><<option "male">><<option "female">><<option "Not quite sure" ($fem < 50 ? "male":"female)>><</cycle>><</quote>>
<</if>>\
<<quote colonel>>If there's anything else you could tell us. Any more information before we take this place down?<</quote>>
Tell the colonel about:
<<if $dealer > 0>>The dealer: <<cycle "$colonel_dealer">><<option "Yes" true>><<option "No" false>><</cycle>><</if>>
<<if $playboy > 4>>John: <<cycle "$colonel_playboy">><<option "Yes" true>><<option "No" false>><</cycle>><</if>>
[[Let's Go|End]]The Atrium is a welcome change from the bustling main floor of the casino.
The raised ceiling mimics being outdoors and the air is slightly less stale here than it is in the rest of the Casino, but it's just not the same as being outdoors.
There are palm trees, water features, benches, tables and various stalls selling food and tacky merchandise.
In the center is a statue of [[General Lee]].
From here you can access any of the casino facilities.
[[Bar]]
[[Restaurant]]
[[Toilets]]
[[High Rollers]]
[[Hotel]]
[[Main Floor|MainFloor]]You go up to the ATM before remembering you threw your bank card away in frustration earlier today.
You stare at it feebly, as if expecting it to take pity on you and throw you a bone.
It does not.
[[Main Floor|MainFloor]]The statue of General Lee, the Old Confederate General, stands tall and proud, draped in the New Confederate Flag.
Beneath him is a plaque detailing the founding of the New Confederacy in 2054.
Your knowledge of the details are limited, but you know that Texas seceded from the Union in 2052, creating the New Republic of Texas. The plaque doesn't go into much detail. Instead memorializing those that died in the 2nd Civil War and skimping out on the reasons for Secession.
You are aware though, that a number of other states decided to secede afterwards, for various reasons. Though at the time the official reasons were long-winded and boring, the critics all said it was because the USA elected a black-female president, and the phrase 'Un-Christian' was bandied about a lot too.
By 2058 Texas had joined together with 5 of the Old Confederate states to form the New Confederacy.
A protracted war was carried out. Parts of New Mexico and Arizona were on the side of the NC, but the states were split.
No-one quite knows why the NC pushed so hard for Vegas. Maybe they needed the Tourism money. Maybe they wanted Hoover Dam. But Pushed they did.
Once the war was over, Las Vegas was firmly in the hands of the NC, even if the rest of Nevada wasn't.
[[Atrium]]