From b9f2b31d3c43a93742c0e844a17791f2555e7caa Mon Sep 17 00:00:00 2001 From: klorpa <30924131+klorpa@users.noreply.github.com> Date: Thu, 14 Mar 2019 23:45:12 -0500 Subject: [PATCH] EndSPace --- compile | 2 +- .../sugarcube-fc-changes-2-24.0.patch | 16 +++++------ .../sugarcube-fc-changes.patch | 18 ++++++------ devTools/PreCompile.sh | 4 +-- fixSpellingMistakes2 | 2 +- .../body/addon/boob 0 areola piercing.svg | 6 ++-- .../body/addon/boob 0 piercing heavy.svg | 8 +++--- .../vector/body/addon/boob 0 piercing.svg | 4 +-- .../body/addon/boob 1 areola piercing.svg | 6 ++-- .../body/addon/boob 1 piercing heavy.svg | 8 +++--- .../vector/body/addon/boob 1 piercing.svg | 4 +-- .../body/addon/boob 2 areola piercing.svg | 6 ++-- .../body/addon/boob 2 piercing heavy.svg | 8 +++--- .../vector/body/addon/boob 2 piercing.svg | 4 +-- .../body/addon/boob 3 areola piercing.svg | 6 ++-- .../body/addon/boob 3 piercing heavy.svg | 8 +++--- .../vector/body/addon/boob 3 piercing.svg | 4 +-- .../body/addon/boob 4 areola piercing.svg | 6 ++-- .../body/addon/boob 4 piercing heavy.svg | 8 +++--- .../vector/body/addon/boob 4 piercing.svg | 4 +-- .../body/addon/boob 5 areola piercing.svg | 6 ++-- .../body/addon/boob 5 piercing heavy.svg | 8 +++--- .../vector/body/addon/boob 5 piercing.svg | 4 +-- .../body/addon/boob 6 areola piercing.svg | 6 ++-- .../body/addon/boob 6 piercing heavy.svg | 8 +++--- .../vector/body/addon/boob 6 piercing.svg | 4 +-- .../body/addon/boob 7 areola piercing.svg | 6 ++-- .../body/addon/boob 7 piercing heavy.svg | 8 +++--- .../vector/body/addon/boob 7 piercing.svg | 4 +-- .../vector/body/addon/clit piercing smart.svg | 2 +- .../body/addon/pussy piercing heavy.svg | 12 ++++---- resources/vector/body/white/belly preg.svg | 2 +- resources/vector/body/white/boob 0 areola.svg | 2 +- resources/vector/body/white/boob 1 areola.svg | 2 +- resources/vector/body/white/boob 2 areola.svg | 2 +- resources/vector/body/white/boob 3 areola.svg | 2 +- resources/vector/body/white/boob 4 areola.svg | 2 +- resources/vector/body/white/boob 5 areola.svg | 2 +- resources/vector/body/white/boob 6 areola.svg | 2 +- resources/vector/body/white/boob 7 areola.svg | 2 +- .../vector/body/white/preg belly 5000.svg | 2 +- .../vector/outfit/chastity male fore 0.svg | 28 +++++++++---------- .../vector/outfit/chastity male fore 1.svg | 28 +++++++++---------- .../vector/outfit/chastity male fore 2.svg | 26 ++++++++--------- .../vector/outfit/chastity male fore 3.svg | 28 +++++++++---------- .../vector/outfit/chastity male fore 4.svg | 28 +++++++++---------- .../vector/outfit/chastity male fore 5.svg | 28 +++++++++---------- .../vector/outfit/chastity male fore 6.svg | 26 ++++++++--------- .../vector/outfit/nice retirement counter.svg | 2 +- resources/vector/outfit/shock punishment.svg | 4 +-- resources/vector/outfit/stylish leather.svg | 4 +-- resources/vector/test ui.svg | 2 +- 52 files changed, 212 insertions(+), 212 deletions(-) diff --git a/compile b/compile index 71583bfdcf9..a85bdfa5024 100755 --- a/compile +++ b/compile @@ -1,5 +1,5 @@ #!/bin/bash -find bin/ >/dev/null 2>&1;if [ `echo $?` -gt 0 ];then mkdir bin/;fi +find bin/ >/dev/null 2>&1;if [ `echo $?` -gt 0 ];then mkdir bin/;fi while [[ "$1" ]] do case $1 in diff --git a/devNotes/sugarcube stuff/sugarcube-fc-changes-2-24.0.patch b/devNotes/sugarcube stuff/sugarcube-fc-changes-2-24.0.patch index 9be9b46470f..c7d32d1dc9a 100644 --- a/devNotes/sugarcube stuff/sugarcube-fc-changes-2-24.0.patch +++ b/devNotes/sugarcube stuff/sugarcube-fc-changes-2-24.0.patch @@ -4,7 +4,7 @@ diff -r cd5d732c8669 src/lib/jquery-plugins.js @@ -37,6 +37,10 @@ return function () { const $this = jQuery(this); - + + const dataPassage = $this.attr('data-passage'); + const initialDataPassage = window && window.SugarCube && window.SugarCube.State && window.SugarCube.State.passage; + const savedYOffset = window.pageYOffset; @@ -13,7 +13,7 @@ diff -r cd5d732c8669 src/lib/jquery-plugins.js if ($this.is('[aria-pressed]')) { $this.attr('aria-pressed', $this.attr('aria-pressed') === 'true' ? 'false' : 'true'); @@ -44,6 +48,11 @@ - + // Call the true handler. fn.apply(this, arguments); + @@ -23,35 +23,35 @@ diff -r cd5d732c8669 src/lib/jquery-plugins.js + window.lastDataPassageLink = dataPassage; }; } - + diff -r cd5d732c8669 src/lib/simplestore/adapters/webstorage.js --- a/src/lib/simplestore/adapters/webstorage.js Fri Mar 09 07:43:39 2018 -0600 +++ b/src/lib/simplestore/adapters/webstorage.js Fri Jan 25 18:37:15 2019 +0100 @@ -192,11 +192,11 @@ } - + static _serialize(obj) { - return LZString.compressToUTF16(JSON.stringify(obj)); + return JSON.stringify(obj); } - + static _deserialize(str) { - return JSON.parse(LZString.decompressFromUTF16(str)); + return JSON.parse((!str || str[0] == "{") ? str : LZString.decompressFromUTF16(str)); } } - + diff -r cd5d732c8669 src/state.js --- a/src/state.js Fri Mar 09 07:43:39 2018 -0600 +++ b/src/state.js Fri Jan 25 18:37:15 2019 +0100 @@ -104,7 +104,7 @@ } - + if (_expired.length > 0) { - stateObj.expired = [..._expired]; + stateObj.expired = []; } - + if (_prng !== null) { diff -r cd5d732c8669 src/ui.js --- a/src/ui.js Fri Mar 09 07:43:39 2018 -0600 diff --git a/devNotes/sugarcube stuff/sugarcube-fc-changes.patch b/devNotes/sugarcube stuff/sugarcube-fc-changes.patch index 61c709cadbc..585ab60823a 100644 --- a/devNotes/sugarcube stuff/sugarcube-fc-changes.patch +++ b/devNotes/sugarcube stuff/sugarcube-fc-changes.patch @@ -4,7 +4,7 @@ diff -r df721eb4cd55 src/lib/jquery-plugins.js @@ -43,14 +43,9 @@ return function () { const $this = jQuery(this); - + - // Exit if the element is disabled. - // - // NOTE: This should only be necessary for elements which are not disableable @@ -16,11 +16,11 @@ diff -r df721eb4cd55 src/lib/jquery-plugins.js + const dataPassage = $this.attr('data-passage'); + const initialDataPassage = window && window.SugarCube && window.SugarCube.State && window.SugarCube.State.passage; + const savedYOffset = window.pageYOffset; - + // Toggle "aria-pressed" status, if the attribute exists. if ($this.is('[aria-pressed]')) { @@ -59,6 +54,11 @@ - + // Call the true handler. fn.apply(this, arguments); + @@ -30,35 +30,35 @@ diff -r df721eb4cd55 src/lib/jquery-plugins.js + window.lastDataPassageLink = dataPassage; }; } - + diff -r df721eb4cd55 src/lib/simplestore/adapters/webstorage.js --- a/src/lib/simplestore/adapters/webstorage.js Sun Dec 16 04:39:00 2018 -0600 +++ b/src/lib/simplestore/adapters/webstorage.js Fri Jan 25 00:54:01 2019 +0100 @@ -189,11 +189,11 @@ } - + static _serialize(obj) { - return LZString.compressToUTF16(JSON.stringify(obj)); + return JSON.stringify(obj); } - + static _deserialize(str) { - return JSON.parse(LZString.decompressFromUTF16(str)); + return JSON.parse((!str || str[0] == "{") ? str : LZString.decompressFromUTF16(str)); } } - + diff -r df721eb4cd55 src/state.js --- a/src/state.js Sun Dec 16 04:39:00 2018 -0600 +++ b/src/state.js Fri Jan 25 00:54:01 2019 +0100 @@ -104,7 +104,7 @@ } - + if (_expired.length > 0) { - stateObj.expired = [..._expired]; + stateObj.expired = []; } - + if (_prng !== null) { diff -r df721eb4cd55 src/ui.js --- a/src/ui.js Sun Dec 16 04:39:00 2018 -0600 diff --git a/devTools/PreCompile.sh b/devTools/PreCompile.sh index e0f9f459b97..8ea804f5c90 100755 --- a/devTools/PreCompile.sh +++ b/devTools/PreCompile.sh @@ -3,5 +3,5 @@ mega-login $1 $2;echo 'New clone? 0:y 1:n 2:na';read Opt #Requirements:MEGAcmd,m while true;do cd $4;gen=0 if [ $Opt == 0 ];then mkdir -p $4&&git clone -q --depth 1 $5 $4&&cd $4&&if [[ ! `mega-ls $3|cut -c29-32|paste -sd,` =~ `git log|head -1|cut -c8-11` ]];then gen=1;fi #arraryCheck:stackoverflow.com/a/15394738 elif [[ $Opt > 0||$gen < 1 ]];then git fetch -q&&if [ `git rev-list ...origin --count` -gt 0 ];then git reset -q --hard&&git pull -q&&gen=1;fi ;fi #gitCheck:stackoverflow.com/a/17192101 - if [[ $Opt > 1||$gen > 0 ]];then minify -rao $4 $4&&./compile --insane&&cd bin/&&rm FC-*;mv * FC-pregmod-`git log -1 --format=%cd --date=format:%m-%d-%Y-%H-%M`-`git log|head -1|cut -c8-11`.html&&mega-put -c * $3&&mega-rm $3`mega-ls $3|sort -r|tail -n +11`;fi -Opt=-1;clear;sleep 15m;done + if [[ $Opt > 1||$gen > 0 ]];then minify -rao $4 $4&&./compile --insane&&cd bin/&&rm FC-*;mv * FC-pregmod-`git log -1 --format=%cd --date=format:%m-%d-%Y-%H-%M`-`git log|head -1|cut -c8-11`.html&&mega-put -c * $3&&mega-rm $3`mega-ls $3|sort -r|tail -n +11`;fi +Opt=-1;clear;sleep 15m;done diff --git a/fixSpellingMistakes2 b/fixSpellingMistakes2 index 40e4d9aa129..d2f677c94ec 100755 --- a/fixSpellingMistakes2 +++ b/fixSpellingMistakes2 @@ -2,7 +2,7 @@ if [ ! -d ".git" ]; then exit 0 fi -GREP="git grep -lz" +GREP="git grep -lz" $GREP "\babandonned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babandonned\b/abandoned/g" *.tw $GREP "\baberation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baberation\b/aberration/g" *.tw $GREP "\babilityes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babilityes\b/abilities/g" *.tw diff --git a/resources/vector/body/addon/boob 0 areola piercing.svg b/resources/vector/body/addon/boob 0 areola piercing.svg index 69b5e73b56a..b7555d1ca85 100644 --- a/resources/vector/body/addon/boob 0 areola piercing.svg +++ b/resources/vector/body/addon/boob 0 areola piercing.svg @@ -17,13 +17,13 @@ <ellipse id="XMLID_234_" class="st0" cx="467.2" cy="271" rx="0.5" ry="0.7"/> <ellipse id="XMLID_233_" class="st0" cx="468.3" cy="270.5" rx="0.5" ry="0.7"/> <ellipse id="XMLID_232_" class="st0" cx="466.3" cy="277.3" rx="0.5" ry="0.7"/> - + <ellipse id="XMLID_231_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 918.0208 572.7028)" class="st0" cx="465.8" cy="275.5" rx="0.5" ry="0.7"/> <ellipse id="XMLID_230_" class="st0" cx="472" cy="274" rx="0.5" ry="0.7"/> <ellipse id="XMLID_229_" class="st0" cx="472.8" cy="276" rx="0.5" ry="0.7"/> - + <ellipse id="XMLID_228_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 1007.9313 386.819)" class="st0" cx="470.3" cy="281.1" rx="0.5" ry="0.7"/> - + <ellipse id="XMLID_227_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 1009.6696 387.3601)" class="st0" cx="471.5" cy="280.5" rx="0.5" ry="0.7"/> </g> </svg> diff --git a/resources/vector/body/addon/boob 0 piercing heavy.svg b/resources/vector/body/addon/boob 0 piercing heavy.svg index 0f2e9484b80..030587ff4af 100644 --- a/resources/vector/body/addon/boob 0 piercing heavy.svg +++ b/resources/vector/body/addon/boob 0 piercing heavy.svg @@ -17,13 +17,13 @@ <circle id="XMLID_222_" class="st0" cx="532.4" cy="278.7" r="1"/> <circle id="XMLID_221_" class="st0" cx="530.2" cy="276" r="1"/> <circle id="XMLID_220_" class="st0" cx="530.4" cy="280.9" r="1"/> - + <ellipse id="XMLID_219_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 985.4068 454.8795)" class="st0" cx="470.4" cy="275.7" rx="0.6" ry="0.8"/> - + <ellipse id="XMLID_218_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 855.6479 655.2993)" class="st0" cx="467.6" cy="275.7" rx="0.6" ry="0.8"/> - + <ellipse id="XMLID_217_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 296.3026 788.395)" class="st0" cx="468.2" cy="273.9" rx="0.6" ry="0.5"/> - + <ellipse id="XMLID_216_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 707.4532 -212.5916)" class="st0" cx="469.2" cy="277.9" rx="0.6" ry="0.5"/> </g> </svg> diff --git a/resources/vector/body/addon/boob 0 piercing.svg b/resources/vector/body/addon/boob 0 piercing.svg index c547be020d4..d21f482ead0 100644 --- a/resources/vector/body/addon/boob 0 piercing.svg +++ b/resources/vector/body/addon/boob 0 piercing.svg @@ -11,9 +11,9 @@ <circle id="XMLID_214_" class="st0" cx="532.4" cy="278.7" r="1"/> </g> <g id="XMLID_531_"> - + <ellipse id="XMLID_213_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 985.4068 454.8795)" class="st0" cx="470.4" cy="275.7" rx="0.6" ry="0.8"/> - + <ellipse id="XMLID_212_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 855.6479 655.2993)" class="st0" cx="467.6" cy="275.7" rx="0.6" ry="0.8"/> </g> </g> diff --git a/resources/vector/body/addon/boob 1 areola piercing.svg b/resources/vector/body/addon/boob 1 areola piercing.svg index a245e90132f..217e2c99a7f 100644 --- a/resources/vector/body/addon/boob 1 areola piercing.svg +++ b/resources/vector/body/addon/boob 1 areola piercing.svg @@ -17,13 +17,13 @@ <ellipse id="XMLID_196_" class="st0" cx="451.7" cy="271.3" rx="0.5" ry="0.7"/> <ellipse id="XMLID_195_" class="st0" cx="452.9" cy="270.8" rx="0.5" ry="0.7"/> <ellipse id="XMLID_194_" class="st0" cx="450.8" cy="277.6" rx="0.5" ry="0.7"/> - + <ellipse id="XMLID_193_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 887.0982 572.5067)" class="st0" cx="450.3" cy="275.7" rx="0.5" ry="0.7"/> <ellipse id="XMLID_192_" class="st0" cx="456.5" cy="274.3" rx="0.5" ry="0.7"/> <ellipse id="XMLID_191_" class="st0" cx="457.2" cy="276.2" rx="0.5" ry="0.7"/> - + <ellipse id="XMLID_190_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 978.0084 392.5092)" class="st0" cx="454.9" cy="281.3" rx="0.5" ry="0.7"/> - + <ellipse id="XMLID_189_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 979.7283 392.9969)" class="st0" cx="456.1" cy="280.8" rx="0.5" ry="0.7"/> </g> </svg> diff --git a/resources/vector/body/addon/boob 1 piercing heavy.svg b/resources/vector/body/addon/boob 1 piercing heavy.svg index ad3ed18a2d0..f8a0ddd4e28 100644 --- a/resources/vector/body/addon/boob 1 piercing heavy.svg +++ b/resources/vector/body/addon/boob 1 piercing heavy.svg @@ -18,13 +18,13 @@ <circle id="XMLID_184_" class="st0" cx="516.8" cy="279" r="1"/> <circle id="XMLID_183_" class="st0" cx="514.6" cy="276.2" r="1"/> <circle id="XMLID_182_" class="st0" cx="515" cy="281.2" r="1"/> - + <ellipse id="XMLID_181_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 954.8359 458.3842)" class="st0" cx="455" cy="276" rx="0.6" ry="0.8"/> - + <ellipse id="XMLID_180_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 825.0893 652.1412)" class="st0" cx="452.1" cy="276" rx="0.6" ry="0.8"/> - + <ellipse id="XMLID_179_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 277.3305 773.6921)" class="st0" cx="452.7" cy="274.3" rx="0.6" ry="0.5"/> - + <ellipse id="XMLID_178_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 693.3712 -196.8819)" class="st0" cx="453.6" cy="278.1" rx="0.6" ry="0.5"/> </g> </svg> diff --git a/resources/vector/body/addon/boob 1 piercing.svg b/resources/vector/body/addon/boob 1 piercing.svg index dd492587c06..ed25eb35e82 100644 --- a/resources/vector/body/addon/boob 1 piercing.svg +++ b/resources/vector/body/addon/boob 1 piercing.svg @@ -11,9 +11,9 @@ <circle id="XMLID_176_" class="st0" cx="516.8" cy="279" r="1"/> </g> <g id="XMLID_491_"> - + <ellipse id="XMLID_175_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 954.8359 458.3842)" class="st0" cx="455" cy="276" rx="0.6" ry="0.8"/> - + <ellipse id="XMLID_174_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 825.0893 652.1412)" class="st0" cx="452.1" cy="276" rx="0.6" ry="0.8"/> </g> </g> diff --git a/resources/vector/body/addon/boob 2 areola piercing.svg b/resources/vector/body/addon/boob 2 areola piercing.svg index 143fe6b2ec6..2a065b9bff2 100644 --- a/resources/vector/body/addon/boob 2 areola piercing.svg +++ b/resources/vector/body/addon/boob 2 areola piercing.svg @@ -17,13 +17,13 @@ <ellipse id="XMLID_158_" class="st0" cx="436.2" cy="284.4" rx="0.7" ry="0.9"/> <ellipse id="XMLID_157_" class="st0" cx="437.7" cy="283.9" rx="0.7" ry="0.9"/> <ellipse id="XMLID_156_" class="st0" cx="435.1" cy="292.2" rx="0.7" ry="0.9"/> - + <ellipse id="XMLID_155_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 854.8103 600.1753)" class="st0" cx="434.5" cy="289.9" rx="0.7" ry="0.9"/> <ellipse id="XMLID_154_" class="st0" cx="442.2" cy="288.1" rx="0.7" ry="0.9"/> <ellipse id="XMLID_153_" class="st0" cx="443.1" cy="290.5" rx="0.7" ry="0.9"/> - + <ellipse id="XMLID_152_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 954.6022 427.724)" class="st0" cx="440.1" cy="296.9" rx="0.7" ry="0.9"/> - + <ellipse id="XMLID_151_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 956.7655 427.9553)" class="st0" cx="441.6" cy="296.3" rx="0.7" ry="0.9"/> </g> </svg> diff --git a/resources/vector/body/addon/boob 2 piercing heavy.svg b/resources/vector/body/addon/boob 2 piercing heavy.svg index 9527bb6d541..6573c2f2648 100644 --- a/resources/vector/body/addon/boob 2 piercing heavy.svg +++ b/resources/vector/body/addon/boob 2 piercing heavy.svg @@ -17,13 +17,13 @@ <circle id="XMLID_146_" class="st0" cx="517.1" cy="294" r="1.2"/> <circle id="XMLID_145_" class="st0" cx="514.3" cy="290.6" r="1.2"/> <circle id="XMLID_144_" class="st0" cx="514.7" cy="296.8" r="1.2"/> - + <ellipse id="XMLID_143_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 928.3824 489.6277)" class="st0" cx="440.2" cy="290.3" rx="0.8" ry="1"/> - + <ellipse id="XMLID_142_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 791.3661 676.6553)" class="st0" cx="436.7" cy="290.3" rx="0.8" ry="1"/> - + <ellipse id="XMLID_141_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 245.4174 775.3432)" class="st0" cx="437.4" cy="288.1" rx="0.8" ry="0.7"/> - + <ellipse id="XMLID_140_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 694.4183 -168.4039)" class="st0" cx="438.7" cy="292.9" rx="0.8" ry="0.7"/> </g> </svg> diff --git a/resources/vector/body/addon/boob 2 piercing.svg b/resources/vector/body/addon/boob 2 piercing.svg index 71054e82931..375e9bf20b3 100644 --- a/resources/vector/body/addon/boob 2 piercing.svg +++ b/resources/vector/body/addon/boob 2 piercing.svg @@ -11,9 +11,9 @@ <circle id="XMLID_138_" class="st0" cx="517.1" cy="294" r="1.2"/> </g> <g id="XMLID_451_"> - + <ellipse id="XMLID_137_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 928.3824 489.6277)" class="st0" cx="440.2" cy="290.3" rx="0.8" ry="1"/> - + <ellipse id="XMLID_136_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 791.3661 676.6553)" class="st0" cx="436.7" cy="290.3" rx="0.8" ry="1"/> </g> </g> diff --git a/resources/vector/body/addon/boob 3 areola piercing.svg b/resources/vector/body/addon/boob 3 areola piercing.svg index 542b1bac542..f8aacd56e71 100644 --- a/resources/vector/body/addon/boob 3 areola piercing.svg +++ b/resources/vector/body/addon/boob 3 areola piercing.svg @@ -17,13 +17,13 @@ <ellipse id="XMLID_120_" class="st0" cx="423.4" cy="295.4" rx="0.9" ry="1.1"/> <ellipse id="XMLID_119_" class="st0" cx="425.1" cy="294.8" rx="0.9" ry="1.1"/> <ellipse id="XMLID_118_" class="st0" cx="422" cy="304.8" rx="0.9" ry="1.1"/> - + <ellipse id="XMLID_117_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 827.7614 624.0518)" class="st0" cx="421.3" cy="302.2" rx="0.9" ry="1.1"/> <ellipse id="XMLID_116_" class="st0" cx="430.6" cy="300" rx="0.9" ry="1.1"/> <ellipse id="XMLID_115_" class="st0" cx="431.7" cy="302.8" rx="0.9" ry="1.1"/> - + <ellipse id="XMLID_114_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 935.8943 458.1015)" class="st0" cx="428.1" cy="310.4" rx="0.9" ry="1.1"/> - + <ellipse id="XMLID_113_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 938.5138 458.1071)" class="st0" cx="429.9" cy="309.8" rx="0.9" ry="1.1"/> </g> </svg> diff --git a/resources/vector/body/addon/boob 3 piercing heavy.svg b/resources/vector/body/addon/boob 3 piercing heavy.svg index a4a80b25939..622d7672770 100644 --- a/resources/vector/body/addon/boob 3 piercing heavy.svg +++ b/resources/vector/body/addon/boob 3 piercing heavy.svg @@ -17,13 +17,13 @@ <circle id="XMLID_108_" class="st0" cx="520.9" cy="307.1" r="1.5"/> <circle id="XMLID_107_" class="st0" cx="517.6" cy="303" r="1.5"/> <circle id="XMLID_106_" class="st0" cx="518.1" cy="310.4" r="1.5"/> - + <ellipse id="XMLID_105_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 907.0026 516.2271)" class="st0" cx="428.2" cy="302.5" rx="1" ry="1.2"/> - + <ellipse id="XMLID_104_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 763.2371 697.7639)" class="st0" cx="424" cy="302.6" rx="1" ry="1.2"/> - + <ellipse id="XMLID_103_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 218.8256 777.2117)" class="st0" cx="424.9" cy="299.8" rx="1" ry="0.9"/> - + <ellipse id="XMLID_102_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 695.8627 -144.3055)" class="st0" cx="426.3" cy="305.8" rx="1" ry="0.9"/> </g> </svg> diff --git a/resources/vector/body/addon/boob 3 piercing.svg b/resources/vector/body/addon/boob 3 piercing.svg index e225c9ab1d9..7dc4ed1e9eb 100644 --- a/resources/vector/body/addon/boob 3 piercing.svg +++ b/resources/vector/body/addon/boob 3 piercing.svg @@ -11,9 +11,9 @@ <circle id="XMLID_100_" class="st0" cx="520.9" cy="307.1" r="1.5"/> </g> <g id="XMLID_411_"> - + <ellipse id="XMLID_99_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 907.0026 516.2271)" class="st0" cx="428.2" cy="302.5" rx="1" ry="1.2"/> - + <ellipse id="XMLID_98_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 763.2371 697.7639)" class="st0" cx="424" cy="302.6" rx="1" ry="1.2"/> </g> </g> diff --git a/resources/vector/body/addon/boob 4 areola piercing.svg b/resources/vector/body/addon/boob 4 areola piercing.svg index 639beaffa41..2a0af445067 100644 --- a/resources/vector/body/addon/boob 4 areola piercing.svg +++ b/resources/vector/body/addon/boob 4 areola piercing.svg @@ -17,13 +17,13 @@ <ellipse id="XMLID_82_" class="st0" cx="393.5" cy="322.8" rx="1.2" ry="1.4"/> <ellipse id="XMLID_81_" class="st0" cx="395.7" cy="322" rx="1.2" ry="1.4"/> <ellipse id="XMLID_80_" class="st0" cx="391.7" cy="335.1" rx="1.2" ry="1.4"/> - + <ellipse id="XMLID_79_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 765.4359 681.4077)" class="st0" cx="390.8" cy="331.6" rx="1.2" ry="1.4"/> <ellipse id="XMLID_78_" class="st0" cx="402.9" cy="328.7" rx="1.2" ry="1.4"/> <ellipse id="XMLID_77_" class="st0" cx="404.3" cy="332.5" rx="1.2" ry="1.4"/> - + <ellipse id="XMLID_76_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 891.3522 529.8864)" class="st0" cx="399.6" cy="342.4" rx="1.2" ry="1.4"/> - + <ellipse id="XMLID_75_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 894.9265 529.0276)" class="st0" cx="402" cy="341.5" rx="1.2" ry="1.4"/> </g> </svg> diff --git a/resources/vector/body/addon/boob 4 piercing heavy.svg b/resources/vector/body/addon/boob 4 piercing heavy.svg index 85778abc194..07ac28940f8 100644 --- a/resources/vector/body/addon/boob 4 piercing heavy.svg +++ b/resources/vector/body/addon/boob 4 piercing heavy.svg @@ -18,13 +18,13 @@ <circle id="XMLID_70_" class="st0" cx="520.8" cy="337.9" r="2"/> <circle id="XMLID_69_" class="st0" cx="516.5" cy="332.6" r="2"/> <circle id="XMLID_68_" class="st0" cx="517" cy="342.3" r="2"/> - + <ellipse id="XMLID_67_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 856.431 580.3391)" class="st0" cx="399.8" cy="332.1" rx="1.2" ry="1.5"/> - + <ellipse id="XMLID_66_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 697.4272 749.1066)" class="st0" cx="394.2" cy="332.2" rx="1.2" ry="1.5"/> - + <ellipse id="XMLID_65_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 155.0886 783.064)" class="st0" cx="395.4" cy="328.6" rx="1.2" ry="1.2"/> - + <ellipse id="XMLID_64_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 699.5681 -87.4572)" class="st0" cx="397.3" cy="336.2" rx="1.2" ry="1.2"/> </g> </svg> diff --git a/resources/vector/body/addon/boob 4 piercing.svg b/resources/vector/body/addon/boob 4 piercing.svg index caec1c7f3ba..74bef4f2fe3 100644 --- a/resources/vector/body/addon/boob 4 piercing.svg +++ b/resources/vector/body/addon/boob 4 piercing.svg @@ -11,9 +11,9 @@ <circle id="XMLID_62_" class="st0" cx="520.8" cy="337.9" r="2"/> </g> <g id="XMLID_371_"> - + <ellipse id="XMLID_61_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 856.431 580.3391)" class="st0" cx="399.8" cy="332.1" rx="1.2" ry="1.5"/> - + <ellipse id="XMLID_60_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 697.4272 749.1066)" class="st0" cx="394.2" cy="332.2" rx="1.2" ry="1.5"/> </g> </g> diff --git a/resources/vector/body/addon/boob 5 areola piercing.svg b/resources/vector/body/addon/boob 5 areola piercing.svg index 769773681aa..61b568ef9bd 100644 --- a/resources/vector/body/addon/boob 5 areola piercing.svg +++ b/resources/vector/body/addon/boob 5 areola piercing.svg @@ -17,13 +17,13 @@ <ellipse id="XMLID_44_" class="st0" cx="352.7" cy="360.5" rx="1.5" ry="1.9"/> <ellipse id="XMLID_43_" class="st0" cx="355.6" cy="359.3" rx="1.5" ry="1.9"/> <ellipse id="XMLID_42_" class="st0" cx="350.2" cy="377" rx="1.5" ry="1.9"/> - + <ellipse id="XMLID_41_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 679.8478 760.7689)" class="st0" cx="349" cy="372.3" rx="1.5" ry="1.9"/> <ellipse id="XMLID_40_" class="st0" cx="365.2" cy="368.4" rx="1.5" ry="1.9"/> <ellipse id="XMLID_39_" class="st0" cx="367.1" cy="373.4" rx="1.5" ry="1.9"/> - + <ellipse id="XMLID_38_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 831.1002 629.0543)" class="st0" cx="360.9" cy="386.8" rx="1.5" ry="1.9"/> - + <ellipse id="XMLID_37_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 835.9724 627.3287)" class="st0" cx="364" cy="385.6" rx="1.5" ry="1.9"/> </g> </svg> diff --git a/resources/vector/body/addon/boob 5 piercing heavy.svg b/resources/vector/body/addon/boob 5 piercing heavy.svg index 086ffdb965d..5391c864728 100644 --- a/resources/vector/body/addon/boob 5 piercing heavy.svg +++ b/resources/vector/body/addon/boob 5 piercing heavy.svg @@ -17,13 +17,13 @@ <circle id="XMLID_32_" class="st0" cx="523.9" cy="380.7" r="2.7"/> <circle id="XMLID_31_" class="st0" cx="518" cy="373.6" r="2.7"/> <circle id="XMLID_30_" class="st0" cx="518.7" cy="386.6" r="2.7"/> - + <ellipse id="XMLID_29_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 787.6197 668.8575)" class="st0" cx="361" cy="373" rx="1.7" ry="2"/> - + <ellipse id="XMLID_28_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 607.6005 819.9565)" class="st0" cx="353.6" cy="373.1" rx="1.7" ry="2"/> - + <ellipse id="XMLID_27_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 67.8569 791.334)" class="st0" cx="355.1" cy="368.1" rx="1.7" ry="1.5"/> - + <ellipse id="XMLID_26_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 705.519 -9.3184)" class="st0" cx="357.8" cy="378.5" rx="1.7" ry="1.5"/> </g> </svg> diff --git a/resources/vector/body/addon/boob 5 piercing.svg b/resources/vector/body/addon/boob 5 piercing.svg index 99a0e33cc14..34308e8e7cd 100644 --- a/resources/vector/body/addon/boob 5 piercing.svg +++ b/resources/vector/body/addon/boob 5 piercing.svg @@ -11,9 +11,9 @@ <circle id="XMLID_24_" class="st0" cx="523.9" cy="380.7" r="2.7"/> </g> <g id="XMLID_331_"> - + <ellipse id="XMLID_23_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 787.6197 668.8575)" class="st0" cx="361" cy="373" rx="1.7" ry="2"/> - + <ellipse id="XMLID_22_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 607.6005 819.9565)" class="st0" cx="353.6" cy="373.1" rx="1.7" ry="2"/> </g> </g> diff --git a/resources/vector/body/addon/boob 6 areola piercing.svg b/resources/vector/body/addon/boob 6 areola piercing.svg index 412de0c08ac..096d5754b1a 100644 --- a/resources/vector/body/addon/boob 6 areola piercing.svg +++ b/resources/vector/body/addon/boob 6 areola piercing.svg @@ -17,13 +17,13 @@ <ellipse id="XMLID_401_" class="st0" cx="301.1" cy="406.9" rx="2" ry="2.5"/> <ellipse id="XMLID_400_" class="st0" cx="305" cy="405.3" rx="2" ry="2.5"/> <ellipse id="XMLID_399_" class="st0" cx="297.9" cy="428.6" rx="2" ry="2.5"/> - + <ellipse id="XMLID_398_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 572.0126 858.504)" class="st0" cx="296.2" cy="422.5" rx="2" ry="2.5"/> <ellipse id="XMLID_397_" class="st0" cx="317.7" cy="417.3" rx="2" ry="2.5"/> <ellipse id="XMLID_396_" class="st0" cx="320.1" cy="424" rx="2" ry="2.5"/> - + <ellipse id="XMLID_395_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 754.4891 751.8561)" class="st0" cx="311.9" cy="441.5" rx="2" ry="2.5"/> - + <ellipse id="XMLID_394_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 760.9403 748.9292)" class="st0" cx="316.1" cy="439.9" rx="2" ry="2.5"/> </g> </svg> diff --git a/resources/vector/body/addon/boob 6 piercing heavy.svg b/resources/vector/body/addon/boob 6 piercing heavy.svg index cd9535bfd4f..68bca634e46 100644 --- a/resources/vector/body/addon/boob 6 piercing heavy.svg +++ b/resources/vector/body/addon/boob 6 piercing heavy.svg @@ -17,13 +17,13 @@ <circle id="XMLID_389_" class="st0" cx="526.6" cy="433.6" r="3.5"/> <circle id="XMLID_388_" class="st0" cx="518.8" cy="424.2" r="3.5"/> <circle id="XMLID_387_" class="st0" cx="519.8" cy="441.3" r="3.5"/> - + <ellipse id="XMLID_386_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 700.4802 778.1339)" class="st0" cx="312.1" cy="423.4" rx="2.2" ry="2.7"/> - + <ellipse id="XMLID_385_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 494.4378 907.0223)" class="st0" cx="302.3" cy="423.5" rx="2.2" ry="2.7"/> - + <ellipse id="XMLID_384_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 -41.1507 800.4734)" class="st0" cx="304.4" cy="416.9" rx="2.2" ry="2"/> - + <ellipse id="XMLID_383_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 711.6222 88.2673)" class="st0" cx="307.9" cy="430.6" rx="2.2" ry="2"/> </g> </svg> diff --git a/resources/vector/body/addon/boob 6 piercing.svg b/resources/vector/body/addon/boob 6 piercing.svg index 4f315d7b581..a027fed2623 100644 --- a/resources/vector/body/addon/boob 6 piercing.svg +++ b/resources/vector/body/addon/boob 6 piercing.svg @@ -11,9 +11,9 @@ <circle id="XMLID_381_" class="st0" cx="526.6" cy="433.6" r="3.5"/> </g> <g id="XMLID_372_"> - + <ellipse id="XMLID_379_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 700.4802 778.1339)" class="st0" cx="312.1" cy="423.4" rx="2.2" ry="2.7"/> - + <ellipse id="XMLID_375_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 494.4378 907.0223)" class="st0" cx="302.3" cy="423.5" rx="2.2" ry="2.7"/> </g> </g> diff --git a/resources/vector/body/addon/boob 7 areola piercing.svg b/resources/vector/body/addon/boob 7 areola piercing.svg index 7cfd4c90735..b4fc2fc4d0b 100644 --- a/resources/vector/body/addon/boob 7 areola piercing.svg +++ b/resources/vector/body/addon/boob 7 areola piercing.svg @@ -17,13 +17,13 @@ <ellipse id="XMLID_443_" class="st0" cx="257.4" cy="448.8" rx="2.4" ry="3"/> <ellipse id="XMLID_442_" class="st0" cx="262.1" cy="447" rx="2.4" ry="3"/> <ellipse id="XMLID_441_" class="st0" cx="253.4" cy="475.3" rx="2.4" ry="3"/> - + <ellipse id="XMLID_440_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 480.3226 947.0313)" class="st0" cx="251.4" cy="467.8" rx="2.4" ry="3"/> <ellipse id="XMLID_439_" class="st0" cx="277.5" cy="461.5" rx="2.4" ry="3"/> <ellipse id="XMLID_438_" class="st0" cx="280.5" cy="469.6" rx="2.4" ry="3"/> - + <ellipse id="XMLID_437_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 690.8691 861.9293)" class="st0" cx="270.5" cy="491" rx="2.4" ry="3"/> - + <ellipse id="XMLID_436_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 698.752 857.9261)" class="st0" cx="275.6" cy="489.1" rx="2.4" ry="3"/> </g> </svg> diff --git a/resources/vector/body/addon/boob 7 piercing heavy.svg b/resources/vector/body/addon/boob 7 piercing heavy.svg index d390047ded9..d1a19844a5d 100644 --- a/resources/vector/body/addon/boob 7 piercing heavy.svg +++ b/resources/vector/body/addon/boob 7 piercing heavy.svg @@ -17,13 +17,13 @@ <circle id="XMLID_431_" class="st0" cx="532" cy="481.3" r="4.3"/> <circle id="XMLID_430_" class="st0" cx="522.5" cy="469.9" r="4.3"/> <circle id="XMLID_429_" class="st0" cx="523.7" cy="490.7" r="4.3"/> - + <ellipse id="XMLID_428_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 627.4544 876.3939)" class="st0" cx="270.8" cy="468.9" rx="2.7" ry="3.3"/> - + <ellipse id="XMLID_427_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 397.8483 986.4601)" class="st0" cx="258.8" cy="469.1" rx="2.7" ry="3.3"/> - + <ellipse id="XMLID_426_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 -136.2163 811.5947)" class="st0" cx="261.3" cy="461.1" rx="2.7" ry="2.4"/> - + <ellipse id="XMLID_425_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 719.8191 173.6128)" class="st0" cx="265.6" cy="477.7" rx="2.7" ry="2.4"/> </g> </svg> diff --git a/resources/vector/body/addon/boob 7 piercing.svg b/resources/vector/body/addon/boob 7 piercing.svg index 88818c77c4a..74a993b8eff 100644 --- a/resources/vector/body/addon/boob 7 piercing.svg +++ b/resources/vector/body/addon/boob 7 piercing.svg @@ -11,9 +11,9 @@ <circle id="XMLID_423_" class="st0" cx="532" cy="481.3" r="4.3"/> </g> <g id="XMLID_419_"> - + <ellipse id="XMLID_421_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 627.4544 876.3939)" class="st0" cx="270.8" cy="468.9" rx="2.7" ry="3.3"/> - + <ellipse id="XMLID_420_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 397.8483 986.4601)" class="st0" cx="258.8" cy="469.1" rx="2.7" ry="3.3"/> </g> </g> diff --git a/resources/vector/body/addon/clit piercing smart.svg b/resources/vector/body/addon/clit piercing smart.svg index ae117891a19..5bb94d51522 100644 --- a/resources/vector/body/addon/clit piercing smart.svg +++ b/resources/vector/body/addon/clit piercing smart.svg @@ -11,7 +11,7 @@ <circle id="XMLID_1_" class="st0" cx="483.6" cy="436.1" r="1.2"/> <path id="XMLID_311_" class="st0" d="M483.8,436.2c-0.1-0.1-2.3,3.3-1.1,5.5c1.4,2.7,6.4,2.1,7.4-0.8c0.8-2.4-1.6-5.4-1.8-5.3 c-0.1,0.1,1.4,2.5,0.5,4.4c-1,2.1-3.6,2.3-4.9,0.3C482.7,438.5,483.9,436.3,483.8,436.2z"/> - + <rect id="XMLID_312_" x="482.9" y="443.1" transform="matrix(0.7488 0.6629 -0.6629 0.7488 418.3834 -210.2396)" class="st1" width="7.3" height="7.3"/> </g> </svg> diff --git a/resources/vector/body/addon/pussy piercing heavy.svg b/resources/vector/body/addon/pussy piercing heavy.svg index 195f0379d6a..1cc659402fb 100644 --- a/resources/vector/body/addon/pussy piercing heavy.svg +++ b/resources/vector/body/addon/pussy piercing heavy.svg @@ -9,9 +9,9 @@ <path id="XMLID_275_" class="st0" d="M491.3,459.9c0.2,0,2,2.8,0.8,5.2c-1,2-3.6,3.1-6,2c-2.1-1.1-2.8-3.7-2-5.6 c0.9-2.4,3.7-3.1,3.9-2.9c0.1,0.2-2.6,1.4-2.7,3.6c-0.1,1.2,0.5,2.6,1.9,3.1c1.4,0.6,3.1,0,3.9-1 C492.4,462.6,491.2,460,491.3,459.9z"/> - + <ellipse id="XMLID_274_" transform="matrix(-0.9904 0.1385 -0.1385 -0.9904 1031.9863 859.9408)" class="st0" cx="486.1" cy="465.9" rx="1.8" ry="2"/> - + <ellipse id="XMLID_273_" transform="matrix(-0.9904 0.1385 -0.1385 -0.9904 1037.9608 861.3239)" class="st0" cx="489" cy="466.8" rx="1.7" ry="1.8"/> <path id="XMLID_272_" class="st0" d="M488,449.7c0.2,0,1.7,3,0.1,5.2c-1.2,1.8-4.1,2.6-6.1,1.2c-2-1.4-2.2-4.1-1.2-5.8 c1.2-2.2,4.2-2.6,4.3-2.4c0.1,0.2-2.8,1.1-3.1,3.1c-0.2,1.2,0.2,2.6,1.4,3.4c1.3,0.9,3.1,0.4,4-0.4 @@ -20,16 +20,16 @@ <ellipse id="XMLID_270_" class="st0" cx="482.6" cy="455.4" rx="1.7" ry="1.8"/> <path id="XMLID_269_" class="st0" d="M491.3,459.3c-0.2,0-1.4,3.2,0.4,5.2c1.4,1.7,4.3,2.2,6.2,0.6c1.9-1.5,1.9-4.3,0.8-5.9 c-1.3-2.1-4.4-2.2-4.4-2s2.8,0.8,3.4,2.8c0.3,1.1,0,2.6-1.1,3.5c-1.2,1-3,0.7-4-0.2C490.9,462.1,491.5,459.3,491.3,459.3z"/> - + <ellipse id="XMLID_268_" transform="matrix(0.9965 -8.364829e-002 8.364829e-002 0.9965 -37.0735 43.2815)" class="st0" cx="498" cy="464.1" rx="1.8" ry="2"/> - + <ellipse id="XMLID_267_" transform="matrix(0.9965 -8.364948e-002 8.364948e-002 0.9965 -37.2023 43.0654)" class="st0" cx="495.3" cy="465.5" rx="1.7" ry="1.8"/> <path id="XMLID_266_" class="st0" d="M488.5,449.9c-0.2,0-0.8,3.4,1.3,5.1c1.7,1.3,4.6,1.4,6.2-0.5c1.5-1.9,1-4.5-0.4-6 c-1.8-1.8-4.7-1.3-4.7-1.2c-0.1,0.3,2.9,0.3,3.9,2.1c0.5,1.1,0.5,2.6-0.4,3.6c-1.1,1.2-2.8,1.2-4,0.6 C488.7,452.7,488.7,449.8,488.5,449.9z"/> - + <ellipse id="XMLID_265_" transform="matrix(0.9627 -0.2707 0.2707 0.9627 -104.7882 150.3477)" class="st0" cx="492.7" cy="455.1" rx="1.8" ry="2"/> - + <ellipse id="XMLID_264_" transform="matrix(0.9627 -0.2707 0.2707 0.9627 -104.396 151.0398)" class="st0" cx="495.4" cy="454" rx="1.7" ry="1.8"/> </g> </svg> diff --git a/resources/vector/body/white/belly preg.svg b/resources/vector/body/white/belly preg.svg index 4dca6783247..3deef9e3db4 100644 --- a/resources/vector/body/white/belly preg.svg +++ b/resources/vector/body/white/belly preg.svg @@ -12,7 +12,7 @@ c-40.1,6.2-61.8,42.8-63.9,96.9C435.1,417.8,466,435.8,494.8,433.8z"/> <path id="XMLID_251_" class="st1" d="M494.8,433.8c20.8,0.1,49.4-13,61.9-42.4c12.5-29.4-18.5-83.4-46-101.7 c-6.5-4.3-38.7-8.2-40.4,0c-2.6,11.6-44.9,33.3-41.4,96.8C430.7,421.3,474,433.7,494.8,433.8z"/> - + <ellipse id="XMLID_250_" transform="matrix(0.9799 -0.1994 0.1994 0.9799 -69.6424 101.0976)" class="st2" cx="467.1" cy="396.3" rx="2.8" ry="3.1"/> </g> </svg> diff --git a/resources/vector/body/white/boob 0 areola.svg b/resources/vector/body/white/boob 0 areola.svg index 82b63852a92..d56b2b1ca0d 100644 --- a/resources/vector/body/white/boob 0 areola.svg +++ b/resources/vector/body/white/boob 0 areola.svg @@ -8,7 +8,7 @@ <g id="Areola_3_"> <path id="XMLID_244_" class="st0" d="M467.8,271.4c1.3-0.4,2.9,1.2,3.5,3.5c0.5,2.3-0.1,4.5-1.3,4.9c-1.3,0.4-2.9-1.2-3.5-3.5 C465.7,273.9,466.4,271.8,467.8,271.4z"/> - + <ellipse id="XMLID_243_" transform="matrix(6.481902e-002 0.9979 -0.9979 6.481902e-002 774.4482 -268.8443)" class="st0" cx="530.7" cy="278.8" rx="6.1" ry="4.9"/> </g> </svg> diff --git a/resources/vector/body/white/boob 1 areola.svg b/resources/vector/body/white/boob 1 areola.svg index 76007aded51..9f08607efef 100644 --- a/resources/vector/body/white/boob 1 areola.svg +++ b/resources/vector/body/white/boob 1 areola.svg @@ -8,7 +8,7 @@ <g id="Areola_2_"> <path id="XMLID_206_" class="st0" d="M452.2,271.7c1.3-0.4,2.9,1.2,3.5,3.5c0.5,2.3-0.1,4.5-1.3,4.9c-1.3,0.4-2.9-1.2-3.5-3.5 C450.3,274.3,450.9,272.1,452.2,271.7z"/> - + <ellipse id="XMLID_205_" transform="matrix(6.481902e-002 0.9979 -0.9979 6.481902e-002 760.2567 -253.1356)" class="st0" cx="515.2" cy="279.1" rx="6.1" ry="4.9"/> </g> </svg> diff --git a/resources/vector/body/white/boob 2 areola.svg b/resources/vector/body/white/boob 2 areola.svg index 4246d250493..0097842d090 100644 --- a/resources/vector/body/white/boob 2 areola.svg +++ b/resources/vector/body/white/boob 2 areola.svg @@ -8,7 +8,7 @@ <g id="Areola"> <path id="XMLID_168_" class="st0" d="M437,285c1.7-0.4,3.6,1.5,4.4,4.4c0.7,2.8-0.1,5.6-1.7,6c-1.7,0.4-3.6-1.5-4.4-4.4 C434.5,288.1,435.3,285.5,437,285z"/> - + <ellipse id="XMLID_167_" transform="matrix(6.481902e-002 0.9979 -0.9979 6.481902e-002 775.0793 -238.9386)" class="st0" cx="515" cy="294.1" rx="7.6" ry="6"/> </g> </svg> diff --git a/resources/vector/body/white/boob 3 areola.svg b/resources/vector/body/white/boob 3 areola.svg index ffb493c51d5..994bb23e88f 100644 --- a/resources/vector/body/white/boob 3 areola.svg +++ b/resources/vector/body/white/boob 3 areola.svg @@ -8,7 +8,7 @@ <g id="Areola_4_"> <path id="XMLID_130_" class="st0" d="M424.2,296.1c2-0.5,4.4,1.9,5.2,5.2c0.9,3.5-0.1,6.8-2,7.3c-2,0.5-4.4-1.9-5.2-5.2 C421.2,299.9,422.2,296.7,424.2,296.1z"/> - + <ellipse id="XMLID_129_" transform="matrix(6.481902e-002 0.9979 -0.9979 6.481902e-002 791.2404 -230.0869)" class="st0" cx="518.4" cy="307.1" rx="9.2" ry="7.3"/> </g> </svg> diff --git a/resources/vector/body/white/boob 4 areola.svg b/resources/vector/body/white/boob 4 areola.svg index 81a2954d717..8741a941584 100644 --- a/resources/vector/body/white/boob 4 areola.svg +++ b/resources/vector/body/white/boob 4 areola.svg @@ -8,7 +8,7 @@ <g id="Areola_5_"> <path id="XMLID_92_" class="st0" d="M394.6,323.8c2.7-0.7,5.8,2.4,6.8,6.8c1.2,4.4-0.2,8.8-2.7,9.5c-2.7,0.7-5.8-2.4-6.8-6.8 C390.7,328.7,392,324.4,394.6,323.8z"/> - + <ellipse id="XMLID_91_" transform="matrix(6.481902e-002 0.9979 -0.9979 6.481902e-002 821.1389 -200.3058)" class="st0" cx="517.4" cy="338" rx="11.9" ry="9.5"/> </g> </svg> diff --git a/resources/vector/body/white/boob 5 areola.svg b/resources/vector/body/white/boob 5 areola.svg index c2cbd5fdbfc..366759edaa0 100644 --- a/resources/vector/body/white/boob 5 areola.svg +++ b/resources/vector/body/white/boob 5 areola.svg @@ -8,7 +8,7 @@ <g id="Areola_1_"> <path id="XMLID_54_" class="st0" d="M354.1,361.7c3.6-1,7.7,3.2,9.2,9.2c1.5,6-0.2,11.8-3.6,12.8c-3.6,1-7.7-3.2-9.2-9.2 C348.9,368.3,350.6,362.6,354.1,361.7z"/> - + <ellipse id="XMLID_53_" transform="matrix(6.481902e-002 0.9979 -0.9979 6.481902e-002 865.7677 -162.0763)" class="st0" cx="519.4" cy="380.9" rx="16" ry="12.8"/> </g> </svg> diff --git a/resources/vector/body/white/boob 6 areola.svg b/resources/vector/body/white/boob 6 areola.svg index c8de7c78ca8..3c04e1546e7 100644 --- a/resources/vector/body/white/boob 6 areola.svg +++ b/resources/vector/body/white/boob 6 areola.svg @@ -8,7 +8,7 @@ <g id="Areola_6_"> <path id="XMLID_412_" class="st0" d="M303,408.5c4.7-1.3,10.2,4.2,12.2,12.2c2,8-0.2,15.6-4.7,16.9c-4.7,1.3-10.2-4.2-12.2-12.2 C296.1,417.2,298.3,409.7,303,408.5z"/> - + <ellipse id="XMLID_410_" transform="matrix(6.481902e-002 0.9979 -0.9979 6.481902e-002 919.7263 -113.9278)" class="st0" cx="520.6" cy="433.7" rx="21.1" ry="16.9"/> </g> </svg> diff --git a/resources/vector/body/white/boob 7 areola.svg b/resources/vector/body/white/boob 7 areola.svg index 957dcf1917a..fcd9714602a 100644 --- a/resources/vector/body/white/boob 7 areola.svg +++ b/resources/vector/body/white/boob 7 areola.svg @@ -8,7 +8,7 @@ <g id="Areola_7_"> <path id="XMLID_455_" class="st0" d="M259.7,450.8c5.7-1.6,12.4,5.1,14.8,14.8c2.4,9.7-0.3,19-5.7,20.5 c-5.7,1.6-12.4-5.1-14.8-14.8C251.3,461.4,254,452.2,259.7,450.8z"/> - + <ellipse id="XMLID_453_" transform="matrix(6.481902e-002 0.9979 -0.9979 6.481902e-002 971.2539 -73.2956)" class="st0" cx="524.7" cy="481.5" rx="25.7" ry="20.5"/> </g> </svg> diff --git a/resources/vector/body/white/preg belly 5000.svg b/resources/vector/body/white/preg belly 5000.svg index 4dca6783247..3deef9e3db4 100644 --- a/resources/vector/body/white/preg belly 5000.svg +++ b/resources/vector/body/white/preg belly 5000.svg @@ -12,7 +12,7 @@ c-40.1,6.2-61.8,42.8-63.9,96.9C435.1,417.8,466,435.8,494.8,433.8z"/> <path id="XMLID_251_" class="st1" d="M494.8,433.8c20.8,0.1,49.4-13,61.9-42.4c12.5-29.4-18.5-83.4-46-101.7 c-6.5-4.3-38.7-8.2-40.4,0c-2.6,11.6-44.9,33.3-41.4,96.8C430.7,421.3,474,433.7,494.8,433.8z"/> - + <ellipse id="XMLID_250_" transform="matrix(0.9799 -0.1994 0.1994 0.9799 -69.6424 101.0976)" class="st2" cx="467.1" cy="396.3" rx="2.8" ry="3.1"/> </g> </svg> diff --git a/resources/vector/outfit/chastity male fore 0.svg b/resources/vector/outfit/chastity male fore 0.svg index 947bd94f3c1..d693cf15c67 100644 --- a/resources/vector/outfit/chastity male fore 0.svg +++ b/resources/vector/outfit/chastity male fore 0.svg @@ -9,33 +9,33 @@ <g id="chastity_male_5_5_"> <g> <ellipse transform="matrix(1 -9.029423e-03 9.029423e-03 1 -4.0013 4.3553)" cx="480.3" cy="445.3" rx="1.8" ry="0.3"/> - + <ellipse transform="matrix(1 -9.029423e-03 9.029423e-03 1 -4.0019 4.3547)" class="st0" cx="480.3" cy="445.4" rx="1.8" ry="0.3"/> </g> <g> <g> <ellipse transform="matrix(0.9512 -0.3087 0.3087 0.9512 -109.747 170.7623)" cx="484.8" cy="432.2" rx="0.3" ry="2.3"/> - + <ellipse transform="matrix(0.9512 -0.3087 0.3087 0.9512 -109.7311 170.7343)" class="st0" cx="484.7" cy="432.2" rx="0.3" ry="2.3"/> </g> <g> <ellipse transform="matrix(0.8911 -0.4539 0.4539 0.8911 -143.7794 266.5528)" cx="483.4" cy="432.8" rx="0.3" ry="2.6"/> - + <ellipse transform="matrix(0.8911 -0.4539 0.4539 0.8911 -143.7645 266.4998)" class="st0" cx="483.3" cy="432.8" rx="0.3" ry="2.6"/> </g> <g> <ellipse transform="matrix(0.5844 -0.8114 0.8114 0.5844 -153.1334 571.2214)" cx="481.1" cy="435.1" rx="0.3" ry="2.8"/> - + <ellipse transform="matrix(0.5844 -0.8114 0.8114 0.5844 -153.1785 571.1201)" class="st0" cx="481" cy="435.1" rx="0.3" ry="2.7"/> </g> <g> <ellipse transform="matrix(0.1595 -0.9872 0.9872 0.1595 -29.4134 842.6671)" cx="480.2" cy="438.6" rx="0.3" ry="2.7"/> - + <ellipse transform="matrix(0.1595 -0.9872 0.9872 0.1595 -29.5523 842.6018)" class="st0" cx="480.1" cy="438.7" rx="0.3" ry="2.6"/> </g> <g> <ellipse transform="matrix(1 -7.680404e-03 7.680404e-03 1 -3.3898 3.7013)" cx="480.2" cy="443.2" rx="0.3" ry="2.4"/> - + <ellipse transform="matrix(1 -7.680404e-03 7.680404e-03 1 -3.3891 3.7008)" class="st0" cx="480.1" cy="443.1" rx="0.3" ry="2.4"/> </g> <g> @@ -56,23 +56,23 @@ </g> <g> <ellipse transform="matrix(0.9751 -0.2217 0.2217 0.9751 -83.6319 118.5546)" cx="486.2" cy="431.8" rx="0.2" ry="2.1"/> - + <ellipse transform="matrix(0.9751 -0.2217 0.2217 0.9751 -83.6187 118.5391)" class="st0" cx="486.1" cy="431.7" rx="0.2" ry="2.1"/> </g> <g> <ellipse transform="matrix(1 -9.029380e-03 9.029380e-03 1 -3.9805 4.3536)" cx="480.2" cy="443" rx="2.4" ry="0.3"/> - + <ellipse transform="matrix(1 -9.029380e-03 9.029380e-03 1 -3.9811 4.3528)" class="st0" cx="480.1" cy="443.1" rx="2.3" ry="0.3"/> </g> <path d="M484.5,437.4"/> <g> <ellipse transform="matrix(0.7542 -0.6566 0.6566 0.7542 -166.3126 423.3106)" cx="482.3" cy="433.8" rx="0.3" ry="2.7"/> - + <ellipse transform="matrix(0.7542 -0.6566 0.6566 0.7542 -166.3191 423.2261)" class="st0" cx="482.2" cy="433.8" rx="0.3" ry="2.7"/> </g> <g> <ellipse transform="matrix(0.3711 -0.9286 0.9286 0.3711 -103.3024 720.9841)" cx="480.6" cy="436.8" rx="0.3" ry="2.8"/> - + <ellipse transform="matrix(0.3711 -0.9286 0.9286 0.3711 -103.3987 720.8875)" class="st0" cx="480.5" cy="436.8" rx="0.3" ry="2.7"/> </g> <path d="M487.1,431.5c0,0.1-1.5,0.4-3.2,1.6c-0.6,0.4-1.3,0.9-2,1.7c-0.9,1.1-1.2,2.1-1.3,2.4c-0.2,0.7-0.3,1.4-0.3,2 @@ -87,15 +87,15 @@ <path class="st0" d="M479.5,432.6"/> <path d="M478,431.7"/> <g> - + <ellipse transform="matrix(3.821885e-02 -0.9993 0.9993 3.821885e-02 21.5063 903.8339)" cx="480.3" cy="440.7" rx="0.3" ry="2.5"/> - + <ellipse transform="matrix(3.821885e-02 -0.9993 0.9993 3.821885e-02 21.3531 903.7986)" class="st0" cx="480.2" cy="440.8" rx="0.3" ry="2.5"/> </g> <g> - + <ellipse transform="matrix(0.9995 -3.300942e-02 3.300942e-02 0.9995 -13.9759 16.3235)" cx="487.4" cy="431.4" rx="0.2" ry="2"/> - + <ellipse transform="matrix(0.9995 -3.300942e-02 3.300942e-02 0.9995 -13.9736 16.3218)" class="st0" cx="487.3" cy="431.4" rx="0.2" ry="2"/> </g> </g> diff --git a/resources/vector/outfit/chastity male fore 1.svg b/resources/vector/outfit/chastity male fore 1.svg index f8d469e66a4..a290ea8877f 100644 --- a/resources/vector/outfit/chastity male fore 1.svg +++ b/resources/vector/outfit/chastity male fore 1.svg @@ -9,33 +9,33 @@ <g id="chastity_male_5_4_"> <g> <ellipse transform="matrix(1 -9.029423e-03 9.029423e-03 1 -4.1116 4.312)" cx="475.5" cy="457.5" rx="3.3" ry="0.6"/> - + <ellipse transform="matrix(1 -9.029423e-03 9.029423e-03 1 -4.1127 4.3109)" class="st0" cx="475.4" cy="457.6" rx="3.2" ry="0.5"/> </g> <g> <g> <ellipse transform="matrix(0.9512 -0.3087 0.3087 0.9512 -110.1412 170.4926)" cx="483.8" cy="433.3" rx="0.5" ry="4.3"/> - + <ellipse transform="matrix(0.9512 -0.3087 0.3087 0.9512 -110.1119 170.4408)" class="st0" cx="483.6" cy="433.2" rx="0.5" ry="4.2"/> </g> <g> <ellipse transform="matrix(0.8911 -0.4539 0.4539 0.8911 -144.7493 265.7138)" cx="481.2" cy="434.4" rx="0.6" ry="4.9"/> - + <ellipse transform="matrix(0.8911 -0.4539 0.4539 0.8911 -144.7218 265.6161)" class="st0" cx="481" cy="434.3" rx="0.5" ry="4.8"/> </g> <g> <ellipse transform="matrix(0.5844 -0.8114 0.8114 0.5844 -157.7537 569.306)" cx="476.9" cy="438.7" rx="0.6" ry="5.1"/> - + <ellipse transform="matrix(0.5844 -0.8114 0.8114 0.5844 -157.8369 569.1187)" class="st0" cx="476.7" cy="438.7" rx="0.5" ry="5.1"/> </g> <g> <ellipse transform="matrix(0.1595 -0.9872 0.9872 0.1595 -40.0248 843.2256)" cx="475.2" cy="445.1" rx="0.6" ry="4.9"/> - + <ellipse transform="matrix(0.1595 -0.9872 0.9872 0.1595 -40.2815 843.1051)" class="st0" cx="475" cy="445.2" rx="0.5" ry="4.9"/> </g> <g> <ellipse transform="matrix(1 -7.680404e-03 7.680404e-03 1 -3.4698 3.6635)" cx="475.3" cy="453.6" rx="0.6" ry="4.5"/> - + <ellipse transform="matrix(1 -7.680404e-03 7.680404e-03 1 -3.4685 3.6626)" class="st0" cx="475.1" cy="453.4" rx="0.5" ry="4.4"/> </g> <g> @@ -56,22 +56,22 @@ </g> <g> <ellipse transform="matrix(0.9751 -0.2217 0.2217 0.9751 -83.7847 118.5983)" cx="486.3" cy="432.5" rx="0.4" ry="3.9"/> - + <ellipse transform="matrix(0.9751 -0.2217 0.2217 0.9751 -83.7604 118.5697)" class="st0" cx="486.2" cy="432.3" rx="0.4" ry="3.9"/> </g> <g> <ellipse transform="matrix(1 -9.029380e-03 9.029380e-03 1 -4.0731 4.3089)" cx="475.2" cy="453.2" rx="4.4" ry="0.6"/> - + <ellipse transform="matrix(1 -9.029380e-03 9.029380e-03 1 -4.0743 4.3074)" class="st0" cx="475" cy="453.4" rx="4.3" ry="0.5"/> </g> <g> <ellipse transform="matrix(0.7542 -0.6566 0.6566 0.7542 -168.7034 421.8014)" cx="479.1" cy="436.2" rx="0.6" ry="5"/> - + <ellipse transform="matrix(0.7542 -0.6566 0.6566 0.7542 -168.7155 421.6453)" class="st0" cx="478.8" cy="436.2" rx="0.5" ry="5"/> </g> <g> <ellipse transform="matrix(0.3711 -0.9286 0.9286 0.3711 -110.7958 719.8)" cx="476" cy="441.7" rx="0.6" ry="5.1"/> - + <ellipse transform="matrix(0.3711 -0.9286 0.9286 0.3711 -110.9738 719.6215)" class="st0" cx="475.8" cy="441.7" rx="0.5" ry="5.1"/> </g> <path d="M488.1,432c0,0.1-2.7,0.7-5.9,2.9c-1.2,0.8-2.4,1.6-3.6,3.1c-1.6,2-2.2,3.9-2.4,4.4c-0.4,1.3-0.5,2.7-0.6,3.6 @@ -82,15 +82,15 @@ c-0.1,0.1-0.3,0.5-0.6,1.1c-2.3,4.7-1.4,9.4-1.8,9.4c-0.1,0-0.3-0.4-0.3-0.7c-0.2-0.7-0.8-3,0.7-7.3c0.3-0.8,0.7-1.8,1.3-3 c0.7-1.1,1.4-1.9,1.9-2.4c0,0,0.1-0.1,0.1-0.1c2.7-2.7,7.3-3.8,7.3-3.8C487.2,432,488.1,431.9,488.1,431.9z"/> <g> - + <ellipse transform="matrix(3.821885e-02 -0.9993 0.9993 3.821885e-02 8.4805 906.9459)" cx="475.4" cy="449.1" rx="0.6" ry="4.6"/> - + <ellipse transform="matrix(3.821885e-02 -0.9993 0.9993 3.821885e-02 8.1973 906.8807)" class="st0" cx="475.2" cy="449.2" rx="0.5" ry="4.6"/> </g> <g> - + <ellipse transform="matrix(0.9995 -3.300942e-02 3.300942e-02 0.9995 -13.9896 16.3609)" cx="488.5" cy="431.9" rx="0.4" ry="3.6"/> - + <ellipse transform="matrix(0.9995 -3.300942e-02 3.300942e-02 0.9995 -13.9853 16.3578)" class="st0" cx="488.4" cy="431.7" rx="0.4" ry="3.6"/> </g> </g> diff --git a/resources/vector/outfit/chastity male fore 2.svg b/resources/vector/outfit/chastity male fore 2.svg index 5ad3f4f7dd2..3c084356ad1 100644 --- a/resources/vector/outfit/chastity male fore 2.svg +++ b/resources/vector/outfit/chastity male fore 2.svg @@ -14,27 +14,27 @@ <g> <g> <ellipse transform="matrix(0.9512 -0.3087 0.3087 0.9512 -110.4285 169.0153)" cx="479" cy="433.5" rx="0.7" ry="6.1"/> - + <ellipse transform="matrix(0.9512 -0.3087 0.3087 0.9512 -110.3869 168.9417)" class="st0" cx="478.7" cy="433.3" rx="0.7" ry="6"/> </g> <g> <ellipse transform="matrix(0.8911 -0.4539 0.4539 0.8911 -145.6728 263.1042)" cx="475.3" cy="435" rx="0.8" ry="6.9"/> - + <ellipse transform="matrix(0.8911 -0.4539 0.4539 0.8911 -145.6338 262.9652)" class="st0" cx="475" cy="434.9" rx="0.8" ry="6.8"/> </g> <g> <ellipse transform="matrix(0.5844 -0.8114 0.8114 0.5844 -162.9033 564.0713)" cx="469.3" cy="441.1" rx="0.8" ry="7.2"/> - + <ellipse transform="matrix(0.5844 -0.8114 0.8114 0.5844 -163.0215 563.8052)" class="st0" cx="468.9" cy="441.1" rx="0.8" ry="7.2"/> </g> <g> <ellipse transform="matrix(0.1595 -0.9872 0.9872 0.1595 -52.1584 839.2234)" cx="466.8" cy="450.2" rx="0.8" ry="7"/> - + <ellipse transform="matrix(0.1595 -0.9872 0.9872 0.1595 -52.5232 839.0521)" class="st0" cx="466.5" cy="450.4" rx="0.8" ry="6.9"/> </g> <g> <ellipse transform="matrix(1 -7.680404e-03 7.680404e-03 1 -3.5368 3.5993)" cx="466.9" cy="462.3" rx="0.8" ry="6.4"/> - + <ellipse transform="matrix(1 -7.680404e-03 7.680404e-03 1 -3.535 3.5979)" class="st0" cx="466.7" cy="462.1" rx="0.8" ry="6.3"/> </g> <g> @@ -55,22 +55,22 @@ </g> <g> <ellipse transform="matrix(0.9751 -0.2217 0.2217 0.9751 -83.8322 117.7637)" cx="482.6" cy="432.3" rx="0.6" ry="5.5"/> - + <ellipse transform="matrix(0.9751 -0.2217 0.2217 0.9751 -83.7977 117.723)" class="st0" cx="482.4" cy="432.1" rx="0.5" ry="5.5"/> </g> <g> <ellipse transform="matrix(1 -9.029380e-03 9.029380e-03 1 -4.1506 4.233)" cx="466.7" cy="461.8" rx="6.2" ry="0.8"/> - + <ellipse transform="matrix(1 -9.029380e-03 9.029380e-03 1 -4.1522 4.2309)" class="st0" cx="466.5" cy="462" rx="6.2" ry="0.8"/> </g> <g> <ellipse transform="matrix(0.7542 -0.6566 0.6566 0.7542 -171.2854 417.6797)" cx="472.3" cy="437.6" rx="0.8" ry="7.2"/> - + <ellipse transform="matrix(0.7542 -0.6566 0.6566 0.7542 -171.3025 417.4578)" class="st0" cx="472" cy="437.5" rx="0.8" ry="7.1"/> </g> <g> <ellipse transform="matrix(0.3711 -0.9286 0.9286 0.3711 -119.3037 714.6041)" cx="467.9" cy="445.4" rx="0.8" ry="7.2"/> - + <ellipse transform="matrix(0.3711 -0.9286 0.9286 0.3711 -119.5567 714.3504)" class="st0" cx="467.6" cy="445.4" rx="0.8" ry="7.2"/> </g> <path d="M485,431.6c0.1,0.2-3.8,1.1-8.4,4.1c-1.6,1.1-3.4,2.3-5.2,4.5c-2.3,2.8-3.1,5.6-3.4,6.3c-0.6,1.9-0.8,3.8-0.9,5.2 @@ -81,15 +81,15 @@ c-0.1,0.2-0.4,0.7-0.8,1.5c-3.3,6.7-2,13.4-2.6,13.4c-0.2,0-0.4-0.6-0.5-1c-0.3-1-1.1-4.3,0.9-10.4c0.4-1.1,1-2.6,1.9-4.3 c1-1.5,2-2.6,2.8-3.4c0,0,0.1-0.1,0.1-0.1c3.9-3.8,10.4-5.4,10.4-5.4C483.8,431.6,485.1,431.4,485.1,431.5z"/> <g> - + <ellipse transform="matrix(3.821885e-02 -0.9993 0.9993 3.821885e-02 -6.3255 905.137)" cx="467" cy="455.9" rx="0.8" ry="6.5"/> - + <ellipse transform="matrix(3.821885e-02 -0.9993 0.9993 3.821885e-02 -6.7279 905.0443)" class="st0" cx="466.8" cy="456" rx="0.8" ry="6.5"/> </g> <g> - + <ellipse transform="matrix(0.9995 -3.300942e-02 3.300942e-02 0.9995 -13.9762 16.2676)" cx="485.7" cy="431.4" rx="0.6" ry="5.2"/> - + <ellipse transform="matrix(0.9995 -3.300942e-02 3.300942e-02 0.9995 -13.9701 16.2633)" class="st0" cx="485.6" cy="431.2" rx="0.5" ry="5.1"/> </g> </g> diff --git a/resources/vector/outfit/chastity male fore 3.svg b/resources/vector/outfit/chastity male fore 3.svg index 3dfe58ddf9f..70a3a213518 100644 --- a/resources/vector/outfit/chastity male fore 3.svg +++ b/resources/vector/outfit/chastity male fore 3.svg @@ -9,33 +9,33 @@ <g id="chastity_male_5_2_"> <g> <ellipse transform="matrix(1 -9.029423e-03 9.029423e-03 1 -4.3743 4.1632)" cx="458.9" cy="486.5" rx="7.2" ry="1.3"/> - + <ellipse transform="matrix(1 -9.029423e-03 9.029423e-03 1 -4.3767 4.1608)" class="st0" cx="458.6" cy="486.8" rx="7.1" ry="1.2"/> </g> <g> <g> <ellipse transform="matrix(0.9512 -0.3087 0.3087 0.9512 -110.5409 168.4236)" cx="477" cy="433.6" rx="1.1" ry="9.3"/> - + <ellipse transform="matrix(0.9512 -0.3087 0.3087 0.9512 -110.4769 168.3101)" class="st0" cx="476.7" cy="433.3" rx="1" ry="9.3"/> </g> <g> <ellipse transform="matrix(0.8911 -0.4539 0.4539 0.8911 -146.4997 261.4242)" cx="471.4" cy="435.9" rx="1.3" ry="10.7"/> - + <ellipse transform="matrix(0.8911 -0.4539 0.4539 0.8911 -146.4395 261.2099)" class="st0" cx="471" cy="435.7" rx="1.2" ry="10.6"/> </g> <g> <ellipse transform="matrix(0.5844 -0.8114 0.8114 0.5844 -169.265 559.971)" cx="462.1" cy="445.2" rx="1.3" ry="11.2"/> - + <ellipse transform="matrix(0.5844 -0.8114 0.8114 0.5844 -169.4474 559.5605)" class="st0" cx="461.6" cy="445.2" rx="1.2" ry="11.1"/> </g> <g> <ellipse transform="matrix(0.1595 -0.9872 0.9872 0.1595 -68.3341 838.4819)" cx="458.3" cy="459.4" rx="1.3" ry="10.7"/> - + <ellipse transform="matrix(0.1595 -0.9872 0.9872 0.1595 -68.8968 838.2177)" class="st0" cx="457.8" cy="459.6" rx="1.2" ry="10.6"/> </g> <g> <ellipse transform="matrix(1 -7.680404e-03 7.680404e-03 1 -3.6574 3.5345)" cx="458.4" cy="478" rx="1.3" ry="9.8"/> - + <ellipse transform="matrix(1 -7.680404e-03 7.680404e-03 1 -3.6546 3.5324)" class="st0" cx="458.1" cy="477.6" rx="1.2" ry="9.7"/> </g> <g> @@ -56,23 +56,23 @@ </g> <g> <ellipse transform="matrix(0.9751 -0.2217 0.2217 0.9751 -83.6923 117.7559)" cx="482.6" cy="431.6" rx="0.9" ry="8.6"/> - + <ellipse transform="matrix(0.9751 -0.2217 0.2217 0.9751 -83.6391 117.6932)" class="st0" cx="482.4" cy="431.4" rx="0.8" ry="8.5"/> </g> <g> <ellipse transform="matrix(1 -9.029380e-03 9.029380e-03 1 -4.29 4.1563)" cx="458.2" cy="477.2" rx="9.6" ry="1.3"/> - + <ellipse transform="matrix(1 -9.029380e-03 9.029380e-03 1 -4.2924 4.1531)" class="st0" cx="457.8" cy="477.4" rx="9.5" ry="1.2"/> </g> <path d="M475.7,454.4"/> <g> <ellipse transform="matrix(0.7542 -0.6566 0.6566 0.7542 -174.1549 414.5935)" cx="466.7" cy="439.9" rx="1.3" ry="11.1"/> - + <ellipse transform="matrix(0.7542 -0.6566 0.6566 0.7542 -174.1813 414.2514)" class="st0" cx="466.2" cy="439.8" rx="1.2" ry="11"/> </g> <g> <ellipse transform="matrix(0.3711 -0.9286 0.9286 0.3711 -130.3141 711.3275)" cx="460" cy="451.9" rx="1.3" ry="11.2"/> - + <ellipse transform="matrix(0.3711 -0.9286 0.9286 0.3711 -130.7043 710.9363)" class="st0" cx="459.5" cy="452" rx="1.2" ry="11.1"/> </g> <path d="M486.4,430.5c0.1,0.2-5.9,1.6-13,6.3c-2.5,1.7-5.3,3.5-8,6.9c-3.5,4.4-4.8,8.6-5.2,9.7c-0.9,2.9-1.2,5.9-1.4,8 @@ -87,15 +87,15 @@ <path class="st0" d="M455.6,434.9"/> <path d="M449.2,431.5"/> <g> - + <ellipse transform="matrix(3.821885e-02 -0.9993 0.9993 3.821885e-02 -26.5543 908.4625)" cx="458.7" cy="468" rx="1.3" ry="10.1"/> - + <ellipse transform="matrix(3.821885e-02 -0.9993 0.9993 3.821885e-02 -27.1749 908.3197)" class="st0" cx="458.3" cy="468.3" rx="1.2" ry="10"/> </g> <g> - + <ellipse transform="matrix(0.9995 -3.300942e-02 3.300942e-02 0.9995 -13.9396 16.324)" cx="487.4" cy="430.3" rx="0.9" ry="8"/> - + <ellipse transform="matrix(0.9995 -3.300942e-02 3.300942e-02 0.9995 -13.9302 16.3173)" class="st0" cx="487.2" cy="430" rx="0.8" ry="7.9"/> </g> </g> diff --git a/resources/vector/outfit/chastity male fore 4.svg b/resources/vector/outfit/chastity male fore 4.svg index e60ef11ba84..428b6d35cf4 100644 --- a/resources/vector/outfit/chastity male fore 4.svg +++ b/resources/vector/outfit/chastity male fore 4.svg @@ -9,33 +9,33 @@ <g id="chastity_male_5_2_"> <g> <ellipse transform="matrix(1 -9.029055e-03 9.029055e-03 1 -4.5007 4.0808)" cx="449.7" cy="500.5" rx="8.8" ry="1.6"/> - + <ellipse transform="matrix(1 -9.029055e-03 9.029055e-03 1 -4.504 4.0775)" class="st0" cx="449.3" cy="500.9" rx="8.7" ry="1.5"/> </g> <g> <g> <ellipse transform="matrix(0.9512 -0.3087 0.3087 0.9512 -111.5603 166.926)" cx="471.8" cy="436" rx="1.3" ry="11.3"/> - + <ellipse transform="matrix(0.9512 -0.3087 0.3087 0.9512 -111.4638 166.7897)" class="st0" cx="471.4" cy="435.7" rx="1.2" ry="11.3"/> </g> <g> <ellipse transform="matrix(0.8911 -0.4539 0.4539 0.8911 -148.5177 258.8278)" cx="464.9" cy="438.8" rx="1.6" ry="13"/> - + <ellipse transform="matrix(0.8911 -0.4539 0.4539 0.8911 -148.4524 258.5858)" class="st0" cx="464.5" cy="438.6" rx="1.5" ry="12.9"/> </g> <g> <ellipse transform="matrix(0.5844 -0.8114 0.8114 0.5844 -176.8199 555.0465)" cx="453.5" cy="450.2" rx="1.6" ry="13.6"/> - + <ellipse transform="matrix(0.5844 -0.8114 0.8114 0.5844 -177.0554 554.5748)" class="st0" cx="452.9" cy="450.1" rx="1.5" ry="13.5"/> </g> <g> <ellipse transform="matrix(0.1595 -0.9872 0.9872 0.1595 -84.0521 836.002)" cx="448.9" cy="467.4" rx="1.6" ry="13"/> - + <ellipse transform="matrix(0.1595 -0.9872 0.9872 0.1595 -84.8221 835.7343)" class="st0" cx="448.4" cy="467.7" rx="1.5" ry="12.9"/> </g> <g> <ellipse transform="matrix(1 -7.680178e-03 7.680178e-03 1 -3.7511 3.4635)" cx="449.1" cy="490.1" rx="1.6" ry="11.9"/> - + <ellipse transform="matrix(1 -7.680178e-03 7.680178e-03 1 -3.7473 3.4607)" class="st0" cx="448.7" cy="489.6" rx="1.5" ry="11.8"/> </g> <g> @@ -56,22 +56,22 @@ </g> <g> <ellipse transform="matrix(0.9751 -0.2217 0.2217 0.9751 -84.2233 116.8819)" cx="478.5" cy="433.6" rx="1.1" ry="10.5"/> - + <ellipse transform="matrix(0.9751 -0.2217 0.2217 0.9751 -84.1713 116.8251)" class="st0" cx="478.3" cy="433.3" rx="1" ry="10.4"/> </g> <g> <ellipse transform="matrix(1 -9.029012e-03 9.029012e-03 1 -4.3984 4.0726)" cx="448.9" cy="489.2" rx="11.7" ry="1.6"/> - + <ellipse transform="matrix(1 -9.029012e-03 9.029012e-03 1 -4.4006 4.0682)" class="st0" cx="448.4" cy="489.4" rx="11.6" ry="1.5"/> </g> <g> <ellipse transform="matrix(0.7542 -0.6566 0.6566 0.7542 -178.5176 410.5447)" cx="459.1" cy="443.7" rx="1.6" ry="13.5"/> - + <ellipse transform="matrix(0.7542 -0.6566 0.6566 0.7542 -178.5867 410.1426)" class="st0" cx="458.6" cy="443.6" rx="1.5" ry="13.4"/> </g> <g> <ellipse transform="matrix(0.3711 -0.9286 0.9286 0.3711 -141.8914 707.0615)" cx="451.1" cy="458.3" rx="1.6" ry="13.6"/> - + <ellipse transform="matrix(0.3711 -0.9286 0.9286 0.3711 -142.386 706.5995)" class="st0" cx="450.5" cy="458.4" rx="1.5" ry="13.5"/> </g> <path d="M483.2,432.2c0.1,0.2-7.2,1.9-15.8,7.7c-3,2.1-6.5,4.3-9.7,8.4c-4.3,5.4-5.8,10.5-6.3,11.8c-1.1,3.5-1.5,7.2-1.7,9.7 @@ -82,15 +82,15 @@ c-0.2,0.2-0.9,1.3-1.6,2.8c-6.2,12.5-3.7,25.1-4.8,25.2c-0.4,0-0.7-1.1-0.9-1.8c-0.5-1.9-2.1-8,1.8-19.5c0.7-2.1,1.8-4.9,3.5-8 c1.9-2.8,3.8-5,5.2-6.3c0.1-0.1,0.1-0.1,0.2-0.2c7.3-7.2,19.5-10.1,19.5-10.1C480.9,432.4,483.3,432,483.3,432.2z"/> <g> - + <ellipse transform="matrix(3.821768e-02 -0.9993 0.9993 3.821768e-02 -45.3476 908.6811)" cx="449.4" cy="477.9" rx="1.6" ry="12.3"/> - + <ellipse transform="matrix(3.821768e-02 -0.9993 0.9993 3.821768e-02 -46.0682 908.5864)" class="st0" cx="449" cy="478.2" rx="1.5" ry="12.2"/> </g> <g> - + <ellipse transform="matrix(0.9995 -3.300794e-02 3.300794e-02 0.9995 -13.9963 16.2254)" cx="484.4" cy="432" rx="1.1" ry="9.7"/> - + <ellipse transform="matrix(0.9995 -3.300794e-02 3.300794e-02 0.9995 -13.9844 16.2172)" class="st0" cx="484.2" cy="431.7" rx="1" ry="9.6"/> </g> </g> diff --git a/resources/vector/outfit/chastity male fore 5.svg b/resources/vector/outfit/chastity male fore 5.svg index a38bfc843ea..9e705da0d8d 100644 --- a/resources/vector/outfit/chastity male fore 5.svg +++ b/resources/vector/outfit/chastity male fore 5.svg @@ -9,33 +9,33 @@ <g id="chastity_male_5_2_"> <g> <ellipse transform="matrix(1 -9.029055e-03 9.029055e-03 1 -4.6774 3.9848)" cx="439" cy="520" rx="11.4" ry="2.1"/> - + <ellipse transform="matrix(1 -9.029055e-03 9.029055e-03 1 -4.6817 3.9806)" class="st0" cx="438.5" cy="520.5" rx="11.2" ry="1.9"/> </g> <g> <g> <ellipse transform="matrix(0.9512 -0.3087 0.3087 0.9512 -111.8841 165.6582)" cx="467.6" cy="436.4" rx="1.7" ry="14.7"/> - + <ellipse transform="matrix(0.9512 -0.3087 0.3087 0.9512 -111.759 165.4814)" class="st0" cx="467.1" cy="435.9" rx="1.6" ry="14.7"/> </g> <g> <ellipse transform="matrix(0.8911 -0.4539 0.4539 0.8911 -149.7426 256.1461)" cx="458.7" cy="440" rx="2.1" ry="16.9"/> - + <ellipse transform="matrix(0.8911 -0.4539 0.4539 0.8911 -149.6579 255.8323)" class="st0" cx="458.1" cy="439.7" rx="1.9" ry="16.7"/> </g> <g> <ellipse transform="matrix(0.5844 -0.8114 0.8114 0.5844 -184.5233 549.1611)" cx="443.9" cy="454.7" rx="2.1" ry="17.7"/> - + <ellipse transform="matrix(0.5844 -0.8114 0.8114 0.5844 -184.8288 548.5495)" class="st0" cx="443.1" cy="454.7" rx="1.9" ry="17.5"/> </g> <g> <ellipse transform="matrix(0.1595 -0.9872 0.9872 0.1595 -102.8167 833.3342)" cx="438" cy="477" rx="2.1" ry="16.9"/> - + <ellipse transform="matrix(0.1595 -0.9872 0.9872 0.1595 -103.8153 832.9871)" class="st0" cx="437.3" cy="477.5" rx="1.9" ry="16.7"/> </g> <g> <ellipse transform="matrix(1 -7.680178e-03 7.680178e-03 1 -3.8777 3.3803)" cx="438.2" cy="506.6" rx="2.1" ry="15.5"/> - + <ellipse transform="matrix(1 -7.680178e-03 7.680178e-03 1 -3.8729 3.3766)" class="st0" cx="437.7" cy="505.9" rx="1.9" ry="15.3"/> </g> <g> @@ -56,22 +56,22 @@ </g> <g> <ellipse transform="matrix(0.9751 -0.2217 0.2217 0.9751 -84.2034 116.3937)" cx="476.4" cy="433.3" rx="1.4" ry="13.6"/> - + <ellipse transform="matrix(0.9751 -0.2217 0.2217 0.9751 -84.1359 116.3201)" class="st0" cx="476.1" cy="432.9" rx="1.3" ry="13.4"/> </g> <g> <ellipse transform="matrix(1 -9.029012e-03 9.029012e-03 1 -4.5447 3.9742)" cx="437.9" cy="505.3" rx="15.2" ry="2.1"/> - + <ellipse transform="matrix(1 -9.029012e-03 9.029012e-03 1 -4.5476 3.9685)" class="st0" cx="437.2" cy="505.6" rx="15" ry="1.9"/> </g> <g> <ellipse transform="matrix(0.7542 -0.6566 0.6566 0.7542 -182.219 406.0033)" cx="451.2" cy="446.4" rx="2.1" ry="17.5"/> - + <ellipse transform="matrix(0.7542 -0.6566 0.6566 0.7542 -182.3086 405.4819)" class="st0" cx="450.5" cy="446.3" rx="1.9" ry="17.4"/> </g> <g> <ellipse transform="matrix(0.3711 -0.9286 0.9286 0.3711 -154.8735 701.8762)" cx="440.7" cy="465.3" rx="2.1" ry="17.7"/> - + <ellipse transform="matrix(0.3711 -0.9286 0.9286 0.3711 -155.5149 701.2772)" class="st0" cx="440" cy="465.4" rx="1.9" ry="17.5"/> </g> <path d="M482.4,431.5c0.2,0.3-9.3,2.5-20.5,10c-3.9,2.7-8.4,5.5-12.6,10.9c-5.5,7-7.6,13.6-8.2,15.3c-1.4,4.6-1.9,9.3-2.2,12.6 @@ -83,15 +83,15 @@ c0.9-2.7,2.4-6.3,4.6-10.4c2.5-3.6,4.9-6.5,6.8-8.2c0.2-0.2,0.2-0.2,0.3-0.3c9.5-9.3,25.3-13.1,25.3-13.1 C479.4,431.7,482.6,431.2,482.6,431.5z"/> <g> - + <ellipse transform="matrix(3.821768e-02 -0.9993 0.9993 3.821768e-02 -68.5551 910.1953)" cx="438.6" cy="490.7" rx="2.1" ry="16"/> - + <ellipse transform="matrix(3.821768e-02 -0.9993 0.9993 3.821768e-02 -69.4896 910.0724)" class="st0" cx="438" cy="491.1" rx="1.9" ry="15.8"/> </g> <g> - + <ellipse transform="matrix(0.9995 -3.300794e-02 3.300794e-02 0.9995 -13.9701 16.2114)" cx="484" cy="431.2" rx="1.4" ry="12.6"/> - + <ellipse transform="matrix(0.9995 -3.300794e-02 3.300794e-02 0.9995 -13.9546 16.2007)" class="st0" cx="483.7" cy="430.8" rx="1.3" ry="12.5"/> </g> </g> diff --git a/resources/vector/outfit/chastity male fore 6.svg b/resources/vector/outfit/chastity male fore 6.svg index 5d84a9acd79..e497afd4f0b 100644 --- a/resources/vector/outfit/chastity male fore 6.svg +++ b/resources/vector/outfit/chastity male fore 6.svg @@ -14,27 +14,27 @@ <g> <g> <ellipse transform="matrix(0.9512 -0.3087 0.3087 0.9512 -112.1837 163.5743)" cx="460.9" cy="436.3" rx="2.1" ry="18.1"/> - + <ellipse transform="matrix(0.9512 -0.3087 0.3087 0.9512 -112.0293 163.3563)" class="st0" cx="460.3" cy="435.7" rx="1.9" ry="18.1"/> </g> <g> <ellipse transform="matrix(0.8911 -0.4539 0.4539 0.8911 -151.0392 252.23)" cx="449.9" cy="440.8" rx="2.5" ry="20.9"/> - + <ellipse transform="matrix(0.8911 -0.4539 0.4539 0.8911 -150.9347 251.8429)" class="st0" cx="449.2" cy="440.4" rx="2.3" ry="20.7"/> </g> <g> <ellipse transform="matrix(0.5844 -0.8114 0.8114 0.5844 -193.0136 540.9384)" cx="431.6" cy="458.9" rx="2.5" ry="21.8"/> - + <ellipse transform="matrix(0.5844 -0.8114 0.8114 0.5844 -193.3904 540.184)" class="st0" cx="430.7" cy="458.9" rx="2.3" ry="21.6"/> </g> <g> <ellipse transform="matrix(0.1595 -0.9872 0.9872 0.1595 -123.5585 827.7478)" cx="424.3" cy="486.4" rx="2.5" ry="20.9"/> - + <ellipse transform="matrix(0.1595 -0.9872 0.9872 0.1595 -124.7902 827.3197)" class="st0" cx="423.5" cy="486.9" rx="2.3" ry="20.7"/> </g> <g> <ellipse transform="matrix(1 -7.680178e-03 7.680178e-03 1 -4.0032 3.2763)" cx="424.6" cy="522.9" rx="2.5" ry="19.1"/> - + <ellipse transform="matrix(1 -7.680178e-03 7.680178e-03 1 -3.9972 3.2718)" class="st0" cx="424" cy="522.1" rx="2.3" ry="18.9"/> </g> <g> @@ -55,22 +55,22 @@ </g> <g> <ellipse transform="matrix(0.9751 -0.2217 0.2217 0.9751 -84.1357 115.333)" cx="471.7" cy="432.4" rx="1.8" ry="16.8"/> - + <ellipse transform="matrix(0.9751 -0.2217 0.2217 0.9751 -84.0525 115.2422)" class="st0" cx="471.3" cy="432" rx="1.6" ry="16.6"/> </g> <g> <ellipse transform="matrix(1 -9.029012e-03 9.029012e-03 1 -4.6897 3.8514)" cx="424.2" cy="521.3" rx="18.7" ry="2.5"/> - + <ellipse transform="matrix(1 -9.029012e-03 9.029012e-03 1 -4.6932 3.8443)" class="st0" cx="423.4" cy="521.7" rx="18.5" ry="2.3"/> </g> <g> <ellipse transform="matrix(0.7542 -0.6566 0.6566 0.7542 -186.2816 399.6193)" cx="440.7" cy="448.6" rx="2.5" ry="21.6"/> - + <ellipse transform="matrix(0.7542 -0.6566 0.6566 0.7542 -186.3922 398.9762)" class="st0" cx="439.8" cy="448.5" rx="2.3" ry="21.4"/> </g> <g> <ellipse transform="matrix(0.3711 -0.9286 0.9286 0.3711 -169.2202 693.9716)" cx="427.7" cy="471.9" rx="2.5" ry="21.8"/> - + <ellipse transform="matrix(0.3711 -0.9286 0.9286 0.3711 -170.0115 693.2327)" class="st0" cx="426.8" cy="472.1" rx="2.3" ry="21.6"/> </g> <path d="M479.1,430.3c0.2,0.4-11.5,3.1-25.3,12.3c-4.9,3.3-10.3,6.8-15.6,13.4c-6.8,8.6-9.4,16.8-10.1,18.9 @@ -82,15 +82,15 @@ c1.2-3.3,2.9-7.8,5.7-12.9c3.1-4.5,6-8,8.4-10.1c0.2-0.2,0.2-0.2,0.4-0.4c11.7-11.5,31.2-16.2,31.2-16.2 C475.4,430.5,479.3,429.9,479.3,430.3z"/> <g> - + <ellipse transform="matrix(3.821768e-02 -0.9993 0.9993 3.821768e-02 -94.1239 908.785)" cx="425" cy="503.3" rx="2.5" ry="19.7"/> - + <ellipse transform="matrix(3.821768e-02 -0.9993 0.9993 3.821768e-02 -95.2766 908.6335)" class="st0" cx="424.4" cy="503.8" rx="2.3" ry="19.5"/> </g> <g> - + <ellipse transform="matrix(0.9995 -3.300794e-02 3.300794e-02 0.9995 -13.9284 16.1148)" cx="481.1" cy="429.9" rx="1.8" ry="15.6"/> - + <ellipse transform="matrix(0.9995 -3.300794e-02 3.300794e-02 0.9995 -13.9093 16.1016)" class="st0" cx="480.7" cy="429.3" rx="1.6" ry="15.4"/> </g> </g> diff --git a/resources/vector/outfit/nice retirement counter.svg b/resources/vector/outfit/nice retirement counter.svg index 00160374c0a..19260feab80 100644 --- a/resources/vector/outfit/nice retirement counter.svg +++ b/resources/vector/outfit/nice retirement counter.svg @@ -53,7 +53,7 @@ <path d="M514.4,212.7l6.3,0.4l-0.1,2.5l-6.3-0.4L514.4,212.7 M513.9,212.1l-0.2,3.6l7.3,0.4l0.2-3.6L513.9,212.1L513.9,212.1z"/> </g> <g> - + <rect x="513.8" y="212.2" transform="matrix(0.9983 5.764509e-02 -5.764509e-02 0.9983 13.1916 -29.4672)" width="7.1" height="3.4"/> <path class="st0" d="M514.4,212.6l6.1,0.4l-0.1,2.4l-6.1-0.4L514.4,212.6 M513.9,212l-0.2,3.4l7.1,0.4l0.2-3.4L513.9,212 L513.9,212z"/> diff --git a/resources/vector/outfit/shock punishment.svg b/resources/vector/outfit/shock punishment.svg index 9b30583def8..212f1569d0e 100644 --- a/resources/vector/outfit/shock punishment.svg +++ b/resources/vector/outfit/shock punishment.svg @@ -16,9 +16,9 @@ <path d="M519.9,194.4c-5.4,0-7.7-3.1-7.8-3.3c-0.5-0.7-0.3-1.6,0.4-2.1c0.7-0.5,1.6-0.3,2.1,0.4c0.2,0.3,4.4,5.6,16.9-2 c0.7-0.4,1.6-0.2,2.1,0.5c0.4,0.7,0.2,1.6-0.5,2.1C527.4,193.4,523.1,194.4,519.9,194.4z"/> </g> - + <rect x="515.8" y="187.9" transform="matrix(0.9976 6.930247e-02 -6.930247e-02 0.9976 14.6313 -35.5031)" class="st0" width="6.3" height="10.5"/> - + <rect x="515.8" y="187.9" transform="matrix(0.9976 6.930247e-02 -6.930247e-02 0.9976 14.6186 -35.4925)" class="st1" width="6" height="10.1"/> <circle class="st2" cx="518.7" cy="192.8" r="1.3"/> <circle class="st3" cx="518.7" cy="192.7" r="1.2"/> diff --git a/resources/vector/outfit/stylish leather.svg b/resources/vector/outfit/stylish leather.svg index 56606c2a315..91dc359df44 100644 --- a/resources/vector/outfit/stylish leather.svg +++ b/resources/vector/outfit/stylish leather.svg @@ -13,9 +13,9 @@ <path d="M513.7,188.8c1.8,1,8.4,3.6,18-1.9c0.3-0.2,0.6,0,0.7,0.3l0.7,3.5c0,0.2-0.1,0.4-0.2,0.5c-5.6,3.3-9.7,4.3-13,4.3 c-5.2,0-7.1-1.8-7.6-2.5c-0.1-0.1-0.1-0.3-0.1-0.4l0.9-3.4C513.1,188.8,513.4,188.6,513.7,188.8z"/> </g> - <polygon class="st0" points="522.9,196.2 517.5,196.2 517.5,189.2 522.9,189.2 522.9,190.5 521.9,190.6 521.9,190.1 518.5,190.1 + <polygon class="st0" points="522.9,196.2 517.5,196.2 517.5,189.2 522.9,189.2 522.9,190.5 521.9,190.6 521.9,190.1 518.5,190.1 518.5,195.3 521.9,195.3 521.9,194.7 522.9,194.7 "/> - + <rect x="517.4" y="191.4" transform="matrix(3.349746e-02 -0.9994 0.9994 3.349746e-02 307.9673 703.8356)" class="st0" width="1" height="2.5"/> </g> </g> diff --git a/resources/vector/test ui.svg b/resources/vector/test ui.svg index fc38bb76305..c57ef7a8fc5 100644 --- a/resources/vector/test ui.svg +++ b/resources/vector/test ui.svg @@ -67,7 +67,7 @@ <circle id="XMLID_377_" class="st0" cx="85.5" cy="633.2" r="63.3"/> <circle id="XMLID_376_" class="st0" cx="219.4" cy="633.2" r="63.3"/> <circle id="XMLID_378_" class="st0" cx="149" cy="432.5" r="130.5"/> -<polygon id="XMLID_370_" class="st1" points="111.7,363.3 186.3,363.3 230.3,386.7 213.7,414 189,410 193,470 109,470 112.3,408.7 +<polygon id="XMLID_370_" class="st1" points="111.7,363.3 186.3,363.3 230.3,386.7 213.7,414 189,410 193,470 109,470 112.3,408.7 91.7,412.7 77.7,380 "/> <polygon id="XMLID_373_" class="st2" points="109,470 193,470 199.7,534.7 167,537.3 154,488 133.7,536 97.7,527.3 "/> </svg> -- GitLab