diff --git a/devTools/vector_clothing_replicator.py b/devTools/vector_clothing_replicator.py new file mode 100644 index 0000000000000000000000000000000000000000..6334f54334ed18d244e0404c3c9aa784555f4001 --- /dev/null +++ b/devTools/vector_clothing_replicator.py @@ -0,0 +1,161 @@ +#!/usr/bin/env python3 + +''' +Application for procedural content adaption +Contains a very poor man's implementation of spline mesh warping. + +This application parses SVG path data of an outfit sample aligned to a body part. +The outfit is then replicated for other shapes of the same body part. + +Example data is geared towards generating a strap outfit for boobs and torso +for all sizes of boobs and all shapes of torsos based on a single outfit for +boobs of size 2 and a hourglass torso respectively. + +Limitations: +* handles paths only +* only svg.path Line and CubicBezier are tested +* only the aforementioned examples are tested +''' + +from svg.path import parse_path +import copy +import lxml.etree as etree +import sys + +REFERENCE_PATH_SAMPLES = 50 +EMBED_REPLICATIONS = False # wether to embed all replications into the input file or output separate files + +bodypart = sys.argv[1] + +# TODO: make these configurable +input_file = 'vector source.svg' +output_file_pattern = '%s %s %s.svg' #bodypart, target_id, clothing +output_file_embed = 'replicated clothing.svg' + +clothing = 'straps' +if ('boob' == bodypart): + xpath_shape = './svg:g[@id="Chest"]/svg:g[@id="Boob_%s"]/svg:g[starts-with(@id, "Boob_Large") or starts-with(@id, "Areola")]/svg:path[@style="fill:#f6e0e8" or @style="fill:#d76b93"]/@d' + xpath_outfit_container = './svg:g[@id="Chest_Outfit"]' + xpath_outfit = './svg:g[@id="Boob_%s_straps"]' + target_ids = "1,2,3,4,5,6,7".split(",") + reference_id = "2" +elif ('torso' == bodypart): + xpath_shape = './svg:g[@id="Torso"]/svg:g[@id="Torso_%s"]/svg:path[@style="fill:#f6e0e8"]/@d' + xpath_outfit_container = './svg:g[@id="Torso_Outfit"]' + xpath_outfit = './svg:g[@id="Torso_%s_straps"]' + target_ids = "Unnatural,Hourglass,Normal".split(",") + reference_id = "Hourglass" +else: + raise RuntimeError("Please specify a bodypart for clothing to replicate.") + +''' +Problems with originally supplied "vector source.svg": +* Inconsistent layer names +* Generated by Adobe Illustrator, groups are no Inkscape layers by default +* Inkscape uses layer labels instead of layer ids +''' +root = etree.parse(input_file) # TODO: do not hardcode input file path +ns = {'svg' : 'http://www.w3.org/2000/svg'} + +canvas = copy.deepcopy(root) +for e in canvas.xpath('./svg:g',namespaces=ns)+canvas.xpath('./svg:path',namespaces=ns): + # TODO: this should be "remove all objects, preserve document properties" + e.getparent().remove(e) + +def get_points(xpath_shape): + ''' + This funciton extracts reference paths by the given xpath selector. + Each path is used to sample a fixed number of points. + ''' + paths_data = root.xpath(xpath_shape,namespaces=ns) + points = [] + path_length = None + for path_data in paths_data: + p = parse_path(path_data) + points += [ + p.point(1.0/float(REFERENCE_PATH_SAMPLES)*i) + for i in range(REFERENCE_PATH_SAMPLES) + ] + if (not points): + raise RuntimeError( + 'No paths for reference points found by selector "%s".'%(xpath_shape) + ) + return points + +def point_movement(point, reference_points, target_points): + ''' + For a given point, finds the nearest point in the reference path. + Gives distance vector from the nearest reference point to the + respective target reference point. + ''' + distances = [abs(point-reference_point) for reference_point in reference_points] + min_ref_dist_idx = min(enumerate(distances), key=lambda x:x[1])[0] + movement = target_points[min_ref_dist_idx] - reference_points[min_ref_dist_idx] + return movement + +reference_points = get_points(xpath_shape%(reference_id)) +container = root.xpath(xpath_outfit_container,namespaces=ns) +if (len(container) != 1): + raise RuntimeError('Outfit container selector "%s" does not yield exactly one layer.'%(xpath_outfit_container)) +container = container[0] +outfit_source = container.xpath(xpath_outfit%(reference_id),namespaces=ns) +if (len(outfit_source) != 1): + raise RuntimeError('Outfit source selector "%s" does not yield exactly one outfit layer in container selected by "%s".'%(xpath_outfit%(reference_id), xpath_outfit_container)) +outfit_source = outfit_source[0] + +for target_id in target_ids: + print( + 'Generating variant "%s" of clothing "%s" for bodypart "%s"...'% + (target_id, clothing, bodypart) + ) + outfit = copy.deepcopy(outfit_source) + paths = outfit.xpath('./svg:path',namespaces=ns) + if target_id != reference_id: + layerid = outfit.get('id').replace('_%s_'%(reference_id),'_%s_'%(target_id)) + outfit.set('id', layerid) + outfit.set(etree.QName('http://www.inkscape.org/namespaces/inkscape', 'label'), layerid) # for the Inkscape-users + target_points = get_points(xpath_shape%(target_id)) + if (len(reference_points) != len(target_points)): + raise RuntimeError( + ('Different amounts of sampled points in reference "%s" and target "%s" paths. '+ + 'Selector "%s" probably matches different number of paths in the two layers.')% + (reference_id, target_id, xpath_shape) + ) + for path in paths: + path_data = path.get("d") + p = parse_path(path_data) + for segment in p: + original_distance = abs(segment.end-segment.start) + start_movement = point_movement(segment.start, reference_points, target_points) + segment.start += start_movement + end_movement = point_movement(segment.end, reference_points, target_points) + segment.end += end_movement + distance = abs(segment.end-segment.start) + try: + # enhance position of CubicBezier control points + # amplification is relative to the distance gained by movement + segment.control1 += start_movement + segment.control1 += (segment.control1-segment.start)*(distance/original_distance-1.0) + segment.control2 += end_movement + segment.control2 += (segment.control2-segment.end)*(distance/original_distance-1.0) + except AttributeError as ae: + # segment is not a CubicBezier + pass + path.set("d", p.d()) + if EMBED_REPLICATIONS: + container.append(outfit) + if not EMBED_REPLICATIONS: + container = copy.deepcopy(canvas).xpath('.',namespaces=ns)[0] + container.append(outfit) + + if not EMBED_REPLICATIONS: + svg = etree.tostring(container, pretty_print=True) + with open((output_file_pattern%(bodypart, target_id, clothing)).lower(), 'wb') as f: + f.write('<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n'.encode("utf-8")) + f.write(svg) + +if EMBED_REPLICATIONS: + svg = etree.tostring(root, pretty_print=True) + with open(output_file_embed, 'wb') as f: + f.write('<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n'.encode("utf-8")) + f.write(svg) diff --git a/src/init/setupVars.tw b/src/init/setupVars.tw index 7ab7f094637b38c64dc9da6c1cb7c8f364c78b62..a37654593d6c51a2c147310670160dc76bd039a5 100644 --- a/src/init/setupVars.tw +++ b/src/init/setupVars.tw @@ -42,10 +42,13 @@ <<set setup.belarusianSlaveNames = ["Alena", "Alex", "Alexandra", "Alexandra", "Alina", "Anastasia", "Anastasiya", "Anastasiya", "Ann", "Anna", "Anya", "Arina", "Arina", "Daria", "Daria", "Darya", "Darya", "Dasha", "Diana", "Diana", "Ekaterina", "Helen", "Helena", "Irene", "Irina", "Julia", "Karina", "Kastiaryna", "Kate", "Katerina", "Katia", "Katya", "Kristina", "Ksenia", "Kseniya", "Ksusha", "Lena", "Lena", "Lera", "Liza", "Maria", "Marina", "Mariya", "Mary", "Masha", "Masha", "Nadzeya", "Nastya", "Natalia", "Natalia", "Natalya", "Natasha", "Oksana", "Olga", "Polina", "Sasha", "Sonya", "Sveta", "Svetlana", "Tanya", "Tatiana", "Tatiana", "Taya", "Valeria", "Valeria", "Victoria", "Viktoriya", "Vitaliya", "Yana", "Yulia", "Yuliya", "Zlata"]>> +<<set setup.belarusianSlaveSurnames = ["Oao", "Rup", "Ivanova", "Zao", "Ivanov", "Zhuk", "Kovaleva", "Kozlova", "Kovalev", "Novik", "Kozlov", "Moroz", "Magazin", "Upravlenie", "Odo", "Novikova", "Kravchenko", "Kovalenko", "Novikov", "Klimovich", "Karpovich", "Bondarenko", "Makarevich", "Uvd", "Zaytseva", "Zaytsev", "Kovalchuk", "Tarasevich", "Otdel", "Stankevich", "Morozova", "Kozel", "Marchenko", "Pashkevich", "Kuznetsova", "Lukashevich", "Kozlovskaya", "Savchenko", "Sidorenko", "Melnikova", "Volkova", "Bogdanovich", "Smirnova", "Vasileva", "Borisevich", "Pinchuk", "Drozd", "Petrova", "Shevchenko", "Zavod", "Melnikov", "Baranova", "Goncharova", "Shkola", "Savitskaya", "Morozov", "Kozlovskiy", "Volkov", "Murashko", "Yushkevich", "Mogilevskiy", "Vorobeva", "Kazak", "Zayats", "Kisel", "Pavlovich", "Baranov", "Matskevich", "Vasilevskaya", "Filial", "Petrovich", "Adamovich", "Makarenko", "Sinkevich", "Soloveva", "Dubovik", "Sokolova", "Melnik", "Ministerstvo", "Kuzmich", "Boyko", "Minskiy", "Goncharov", "Semenova", "Kuznetsov", "Bondar", "Borisenko", "Korol", "Mgts", "Golub", "Gerasimovich", "Spk", "Gurinovich", "Savitskiy", "Ignatovich", "Pavlova", "Gnu", "Gavrilenko", "Kiseleva", "Matusevich"]>> <<set setup.dominicanSlaveNames = ["Alaysha", "Andrea", "Brandy", "Camila", "Carmen", "Crystal", "Diana", "Dorcas", "Erika", "Isamar", "Jhoka", "Kimberly", "Lola", "Maria", "Nachelle", "Naelle", "Nicole", "Osari", "Pamola", "Regine", "Sarah", "Zuleyka"]>> +<<set setup.dominicanSlaveSurames = ["RodrÃguez", "Pérez", "MartÃnez", "GarcÃa", "Reyes", "Sánchez", "DÃaz", "Peña", "Jiménez", "RamÃrez", "Hernández", "Rosario", "González", "Santana", "Núñez", "Castillo", "De la Cruz", "Cruz", "Guzmán", "Gómez", "Santos", "López", "Féliz", "Vásquez", "De los Santos", "MejÃa", "Polanco", "Fernández", "Vargas", "Almonte"]>> <<set setup.scottishSlaveNames = ["Aileen", "Alisa", "Beatrice", "Blair", "Edna", "Fergie", "Fiona", "Jamie", "Jean", "Jessie", "Kristie", "Lindsay", "Marie", "Mary", "Morrigan", "Olivia", "Rodina", "Sheena", "Sheona"]>> +<<set setup.scottishSlaveSurnames = ["Paterson", "Wood", "Anderson", "Crawford", "Stewart", "Graham", "MacDonald", "Sinclair", "Alexander", "Scott", "McKenzie", "Johnstone", "McLean", "Marshall", "MacKenzie", "Bell", "Fleming", "Cunningham", "Donaldson", "Campbell"]>> /*** pregmod exclusive end ***/ @@ -368,7 +371,7 @@ <<set setup.iraqiSlaveSurnames = ["Mohammed", "Hussein", "Abbas", "Mahmood", "Aziz", "Ibrahim", "Ahmad", "Hasan", "Hameed", "Salih", "Abd", "Abdullah", "Hussain", "Taha", "Yousif", "Mustafa", "Kareem", "Abnan", "Haider", "Majeed", "Saad", "Mahdi", "Hadi", "Salman", "Saeed", "Saleh", "Kadhim", "Raad", "Jasim", "Hashim", "Salam", "Othman", "Alani", "Mohammad", "Kamal", "Jamal"]>> <<set setup.uzbekSlaveNames = ["Anora", "Chinara", "Durdona", "Elnura", "Feruza", "Firuza", "Guldasta", "Guli", "Gulnara", "Gulnora", "Indira", "Nargiza", "Olma", "Ona", "Parizoda", "Shahlo", "Shahnoza", "Tahmina", "Umida", "Yulduz", "Zarina", "Zeb"]>> -<<set setup.uzbekSlaveSurnames = ["Kim", "Karimova", "Li", "Pak", "Abdullaev", "Tsoy", "Yusupova", "Ibragimova", "Yukdasheva", "Akhmedova", "Umarova", "Sharipova", "Rakhimova", "Usmanova", "Ergasheva", "Saidova", "Naza +<<set setup.uzbekSlaveSurnames = ["Kim", "Karimova", "Li", "Pak", "Abdullaev", "Tsoy", "Yusupova", "Ibragimova", "Yukdasheva", "Akhmedova", "Umarova", "Sharipova", "Rakhimova", "Usmanova", "Ergasheva", "Saidova", "Naza"]>> <<set setup.nepaleseSlaveNames = ["Alina", "Alisha", "Anita", "Anjali", "Anjila", "Anu", "Anusha", "Bhawana", "Bhujunga", "Binu", "Chandra", "Dipa", "Ghim", "Gyanu", "Indu", "Jyoti", "Kajal", "Krishna", "Laxmi", "Luniva", "Mamta", "Mana", "Maya", "Menuka", "Namita", "Nary", "Niru", "Punam", "Rekha", "Renuka", "Rubina", "Sabitra", "Sadina", "Sajana", "Saraswoti", "Sarita", "Sherya", "Sirjana", "Sita", "Sneba", "Sobta", "Sonu", "Sujata", "Trishna", "Yasodha"]>> <<set setup.nepaleseSlaveSurnames = ["Shrestha", "Thapa", "Adhikari", "Maharjan", "Gurung", "Karki", "Ghimire", "Rai", "Lama", "Acharya", "Shakya", "Khadka", "Bhattarai", "Bhandari", "Joshi", "Pradhan", "Pandev", "Nepal", "Dahal", "Neuopane", "Paudel", "Gautam", "Poudel", "Dhakal", "Subedi", "Khanal", "Basnet", "Tamang", "Aryal", "Sapkota", "Manandhar", "Sherpa", "Rana", "Pokharel", "Bajracharya", "Yadav"]>> @@ -414,9 +417,9 @@ <<set setup.ancientEgyptianSlaveNames = ["A'at", "Ahhotep", "Ahmose", "Ahmose", "Ahmose", "Ahmose", "Ahmose", "Ahmose", "Ahmose", "Ahmose", "Ahmose", "Ahmose", "Ahmose-Nefertari", "Ahset", "Amtes", "Amunet", "Ana", "Aneksi", "Ankhes-Pepi", "Ankhesenamon", "Ankhesenpaaten", "Ankhesenpaaten-ta-sherit", "Ankhetitat", "Ankhnes-Pepi", "Ankhnesmery-Re", "Aoh", "Ashait", "Ast", "Atet", "Baketamon", "Bakt", "Baktwerel", "Beketaten", "Berenib", "Betresh", "Betrest", "Bint-Anath", "Bunefer", "Dedyet", "Fent-Ankhet", "Gilukhipa", "Hapynma'at", "Hedjhekenu", "Henhenet", "Henite", "Hent", "Hent-Temehu", "Hent-Tenemu", "Hentaneb", "Hentempet", "Hentmereb", "Hentmire", "Henutmire", "Henutsen", "Henuttawy", "Henuttimehu", "Hep", "Herit", "Herneith", "Hetepheres", "Hetephernebty", "Heterphenebty", "Hornefrure'", "Huy", "Imi", "Inhapi", "Inhapi", "Intakaes", "Iput", "Ipwet", "Ipy", "Isetnofret", "Isis", "Istnofret", "Itekuyet", "Itet", "Kasmut", "Kawit", "Kemanub", "Kemanut", "Kemsit", "Kentetenka", "Khama'at", "Khamerernebty", "Khemut", "Khentikus", "Khentkawes", "Khenut", "Khuit", "Khumit", "Kiya", "Ma'at", "Maatkare-Nefertari", "Maia", "Meket-Aten", "Menhet", "Menwi", "Mereneith", "Mereryet", "Meresankh", "Merit-Amon", "Meritaten", "Meritites", "Merneith", "Merseger", "Merti", "Meryetamun", "Meryetamun", "Meryetre", "Merysankh", "Meryt-Amon", "Meryt-Re-Hatshepsut", "Merytamon", "Merytaten-tasherit", "Mutemwiya", "Mutnodjme", "Mutnofret", "Muyet", "Nebet", "Nebettawy", "Nebt", "Nebt-tawya", "Neferhent", "Neferhetep", "Neferhetepes", "Neferkent", "Neferneferure", "Nefertari", "Nefertiry", "Nefertiti", "Nefertkau", "Nefertkaw", "Neferu", "Neferu", "Neferu-Re", "Neferukhayt", "Neferukhebt", "Nefret", "Nefru", "Nefru-Ptah", "Nefru-Sobek", "Nefru-totenen", "Nefrusheri", "Neith", "Neithotep", "Nemathap", "Nenseddjedet", "Neshkons", "Nestanebtishru", "Nit", "Nitemat", "Nithotep", "Nodjmet", "Nofret", "Nofret", "Nubkhas", "Nubkhesed", "Rai", "Raia", "Redji", "Reputneb", "Sadeh", "Sadek", "Sebek-shedty-Neferu", "Senebsen", "Senisonbe", "Sennuwy", "Seshseshet", "Sit-Hathor-Yunet", "Sitamun", "Sitkamose", "Sitre", "Sobekemsaf", "Sotepenre", "Ta-Opet", "Tadukhipa", "Takhaet", "Tarset", "Taweret", "Tem", "Tener", "Teo", "Tetisheri", "Tey", "Thent", "Tia", "Tiy", "Tiye", "Tjepu", "Tuia", "Tumerisy", "Tuya", "Tuyu", "Twosre", "Weret-Imtes"]>> <<set setup.edoSlaveNames = ["Adakichi", "Aihachi", "Aika", "Aikichi", "Aiko", "Aimatsu", "Akiko", "Ariko", "Asa", "Asakichi", "Asao", "Ayako", "Ayano", "Azuma", "Baicho", "Baisho", "Botan", "Charyoei", "Chieko", "Chikafuku", "Chikafumi", "Chikano", "Chikashizu", "Chikayoshi", "Chikayu", "Chikayuki", "Chisako", "Chiyo", "Chiyoe", "Chiyoha", "Chiyokichi", "Chiyoko", "Chiyoryo", "Chiyoteru", "Chiyotsuru", "Chiyowaka", "Chiyoyakko", "Chizu", "Chizuha", "Chizuru", "Cho", "Chocho", "Dango", "Danji", "Danko", "Dan’ei", "Edagiku", "Emi", "Emicho", "Emigiku", "Emiyo", "Enko", "Eriko", "Fuji", "Fujie", "Fujigiku", "Fujiha", "Fukichiyo", "Fukiha", "Fukimi", "Fukiyo", "Fukizo", "Fuku", "Fukuai", "Fukuaya", "Fukuchiyo", "Fukucho", "Fukudama", "Fukuha", "Fukuhana", "Fukuharu", "Fukuhina", "Fukuhiro", "Fukumi", "Fukumusume", "Fukunae", "Fukusato", "Fukusuke", "Fukusuzu", "Fukuteru", "Fukuya", "Fukuyo", "Fukuyoshi", "Fukuyu", "Fumi", "Fumichiyo", "Fumicho", "Fumihana", "Fumiko", "Fumino", "Fumukazu", "Fusakichi", "Fusako", "Fusao", "Hamako", "Hamayu", "Hanachiyo", "Hanaji", "Hanakichi", "Hanako", "Hanamatsu", "Hanaryo", "Hanayakko", "Harukichi", "Haruko", "Hatsu", "Hatsuko", "Hatsuyo", "Hidechiyo", "Hidecho", "Hideji", "Hidemi", "Hideryu", "Hideyakko", "Hidezuru", "Hinacho", "Hinagiku", "Hinako", "Hinazuru", "Hisa", "Hisacho", "Hisae", "Hisaei", "Hisamomo", "Hisasuzu", "Hisayo", "Hisazuru", "Ichiei", "Ichiemi", "Ichiharu", "Ichiho", "Ichika", "Ichimame", "Ichimomo", "Ichiraku", "Ichiryu", "Ichisayo", "Ichiteru", "Ichitomi", "Ichiume", "Ichiya", "Ichiyakko", "Iku", "Ikumatsu", "Imayoshi", "Ine", "Iroha", "Ishino", "Ishiyakko", "Iso", "Isoei", "Itozuru", "Kameji", "Kameko", "Kaneha", "Kanemi", "Kanoaki", "Kanoemi", "Kanoka", "Kasen", "Katsuchiyo", "Katsue", "Katsuha", "Katsuji", "Katsuna", "Katsune", "Katsuru", "Kayo", "Kichihana", "Kichiyakko", "Kichiyo", "Kichiyu", "Kiku", "Kikuka", "Kikumaru", "Kikumatsu", "Kikuno", "Kikuryo", "Kikutsuru", "Kikuya", "Kikuyakko", "Kikuyu", "Kimiei", "Kimikiku", "Kimina", "Kimitomo", "Kimiyakko", "Kin'ei", "Kin'ichi", "Kinhei", "Kinko", "Kinmatsu", "Kinroku", "Kinryo", "Kinryu", "Kinshi", "Kinsuke", "Kinu", "Kinyo", "Kitanomatsu", "Kiyo", "Koen", "Kofuku", "Kofusa", "Kogiku", "Koi", "Koiku", "Kojako", "Komagiku", "Komaji", "Komako", "Komame", "Komari", "Komaru", "Komasu", "Komomo", "Komume", "Koriki", "Korin", "Koroku", "Kosaki", "Kosaku", "Kosen", "Koshizu", "Kosome", "Kosue", "Kotaka", "Kotama", "Kotatsu", "Koteru", "Kotetsu", "Koto", "Kotobuki", "Kotoei", "Kotogiku", "Kotoha", "Kotoji", "Kotomi", "Kotono", "Kotoyo", "Kotsuma", "Koume", "Koyachiyo", "Koyakko", "Koyana", "Koyei", "Koyo", "Koyone", "Koyoshi", "Koyuka", "Koyuki", "Koyumi", "Kozakura", "Kozuru", "Kuma", "Kumakichi", "Kumano", "Kumayoshi", "Kunigiku", "Kyoka", "Kyoko", "Machi", "Mamefusa", "Mamegiku", "Mamehana", "Mameharu", "Mamehide", "Mamehiro", "Mameka", "Mamekichi", "Mameko", "Mameraku", "Mameriki", "Mameroku", "Mameryo", "Mameyakko", "Mameyo", "Mameyoshi", "Mameyu", "Maru", "Masuwaka", "Matsuko", "Matsuriki", "Matsuyakko", "Miharu", "Mineko", "Mitsu", "Mitsugiku", "Mitsuha", "Mitsuko", "Mitsuyo", "Miyagiku", "Miyo", "Miyoha", "Miyoharu", "Miyoka", "Miyozuru", "Momifuku", "Momiji", "Momochiyo", "Momoko", "Momomaru", "Momoyakko", "Momozuru", "Naka", "Naochiyo", "Naosome", "Naosono", "Narako", "Narayone", "Oimatsu", "Omine", "Omocha", "Onao", "Otomaru", "Otoyu", "Ran", "Ren", "Riki", "Rikigo", "Rikiha", "Rikiharu", "Rikihei", "Rikiji", "Rikiko", "Rikiya", "Royo", "Ryuko", "Sakae", "Sakiko", "Sakyo", "Sana", "Sanae", "Sankatsu", "Sanko", "Sanya", "Sasa", "Sato", "Satochiyo", "Satogiku", "Satoji", "Satoka", "Satokichi", "Satomi", "Satono", "Satotsuya", "Satoyu", "Satoyuki", "Satsuki", "Sayaka", "Sayoko", "Sekka", "Sen", "Shimekichi", "Shimematsu", "Shinneji", "Shizu", "Shizue", "Shizuko", "Shun", "Sodeko", "Somagiku", "Soyo", "Sue", "Sumiko", "Suzu", "Suzuhachi", "Suzuka", "Suzuko", "Takeko", "Takewaka", "Takeyakko", "Tama", "Tamagiku", "Tamakiku", "Tamako", "Tamaryo", "Tamasuke", "Tamaye", "Tamayu", "Tamazuru", "Tamiko", "Tane", "Taneji", "Taneju", "Taneko", "Tatsu", "Tatsuko", "Teruhina", "Teruji", "Teruko", "Teruyo", "Tetsu", "Toba", "Toki", "Tokiko", "Tokimatsu", "Toku", "Tome", "Tomeko", "Tomewaka", "Tomigiku", "Tomiko", "Tomimatsu", "Tomino", "Tomiryo", "Tomitae", "Tomitsuru", "Tomiwaka", "Tomiyakko", "Tomizuru", "Tomogiku", "Tomoko", "Tomoryo", "Tomowaka", "Tomoyuki", "Tonko", "Tora", "Toshifumi", "Toshihana", "Toshiko", "Toye", "Toyochiyo", "Toyofu", "Toyohina", "Toyoji", "Toyoka", "Tsunechiyo", "Tsuneko", "Tsunemomo", "Tsuneyo", "Tsuneyu", "Tsuru", "Tsurue", "Tsuruha", "Tsuruji", "Tsuruka", "Tsurumatsu", "Tsuruyo", "Tsuruyu", "Tsuta", "Tsutaji", "Tsuyachiyo", "Tsuyu", "Ume", "Umechie", "Umechiho", "Umechika", "Umechiyo", "Umegiku", "Umeha", "Umehisa", "Umeji", "Umeko", "Umeko", "Umematsu", "Umeo", "Umeraku", "Umeryo", "Umeryu", "Umesaya", "Umesuke", "Umesuzu", "Umewaka", "Umeyae", "Umeyakko", "Umeyu", "Uno", "Unofuku", "Unoha", "Unohide", "Unoji", "Unoka", "Unokayo", "Unokazu", "Unokiyo", "Unoko", "Unoshizu", "Unowaka", "Uta", "Utachiyo", "Utaji", "Utaka", "Utamatsu", "Utayu", "Wakaba", "Wakacho", "Wakagusa", "Wakai", "Wakaji", "Wakakimi", "Wakako", "Wakakoma", "Wakamurasaki", "Wakaroku", "Wakatsune", "Wakaume", "Wakayakko", "Wakayo", "Wakayone", "Wakazuru", "Wako", "Yachiyoko", "Yae", "Yaemi", "Yaewaka", "Yaezuru", "Yaichi", "Yasohachi", "Yasu", "Yasuku", "Yoi", "Yone", "Yonehachi", "Yoneyakko", "Yuiko", "Yukako", "Yukari", "Yukiryo", "Yukizono"]>> -<<set $edoSlaveSurnames = ["Ashikaga", "Miyoshi", "Kodera", "Akechi", "Saika", "Ikeda", "Wada", "Itami", "Toyotomi", "Tsutsui", "Azai", "Rokkaku", "Amago", "Ouchi", "Uragami", "Akamatsu", "Mori", "Chugoku", "Date", "Soma", "Mogami", "Ashina", "Satake", "Gamo", "Sanada", "Murukami", "Ogasawara", "Suwa", "Kiso", "Nagao", "Uesugi", "Saito", "Asakura", "Imagawa", "Oda", "Matsudaira", "Tokugawa", "Takeda", "Chosokabe", "Ichijo", "Hojo", "Shimazu", "Ito", "Otomo", "Tachibana", "Ryuzoji", "Hattori"]>> +<<set setup.edoSlaveSurnames = ["Ashikaga", "Miyoshi", "Kodera", "Akechi", "Saika", "Ikeda", "Wada", "Itami", "Toyotomi", "Tsutsui", "Azai", "Rokkaku", "Amago", "Ouchi", "Uragami", "Akamatsu", "Mori", "Chugoku", "Date", "Soma", "Mogami", "Ashina", "Satake", "Gamo", "Sanada", "Murukami", "Ogasawara", "Suwa", "Kiso", "Nagao", "Uesugi", "Saito", "Asakura", "Imagawa", "Oda", "Matsudaira", "Tokugawa", "Takeda", "Chosokabe", "Ichijo", "Hojo", "Shimazu", "Ito", "Otomo", "Tachibana", "Ryuzoji", "Hattori"]>> -<<set $chineseRevivalistSlaveSurnames = ["Wu", "Bu", "Chen", "Ding", "Han", "He", "Ling", "Liu", "Lu", "Luo", "Mi", "Pan", "Quan", "Shi", "Song", "Sun", "Tang", "Tao", "Teng", "Wei", "Wen", "Xie", "Xu", "Xue", "Yong", "Yu", "Zhang", "Zhou", "Zhu", "Zhuge", "Shu", "Chen", "Cheng", "Deng", "Dong", "Fei", "Feng", "Fu", "Gao", "Guan", "Hu", "Huang", "Huo", "Jiang", "Li", "Liao", "Luo", "Ma", "Meng", "Wang", "Wei", "Wu", "Xiahou", "Yang", "Zhang", "Zhao", "Zhu", "Zhuge", "Zong", "Cao", "Chen", "Deng", "Du", "Fei", "Gongsun", "Guangqiu", "Guo", "Hao", "Huang", "Jia", "Jiang", "Liang", "Man", "Meng", "Pang", "Qian", "Qin", "Qiu", "Sima", "Sun", "Tang", "Tian", "Wang", "Wen", "Xiahou", "Xu", "Yin", "Yu", "Yue", "Zang", "Zhang", "Zhu", "Zhuge"]>> +<<set setup.chineseRevivalistSlaveSurnames = ["Wu", "Bu", "Chen", "Ding", "Han", "He", "Ling", "Liu", "Lu", "Luo", "Mi", "Pan", "Quan", "Shi", "Song", "Sun", "Tang", "Tao", "Teng", "Wei", "Wen", "Xie", "Xu", "Xue", "Yong", "Yu", "Zhang", "Zhou", "Zhu", "Zhuge", "Shu", "Chen", "Cheng", "Deng", "Dong", "Fei", "Feng", "Fu", "Gao", "Guan", "Hu", "Huang", "Huo", "Jiang", "Li", "Liao", "Luo", "Ma", "Meng", "Wang", "Wei", "Wu", "Xiahou", "Yang", "Zhang", "Zhao", "Zhu", "Zhuge", "Zong", "Cao", "Chen", "Deng", "Du", "Fei", "Gongsun", "Guangqiu", "Guo", "Hao", "Huang", "Jia", "Jiang", "Liang", "Man", "Meng", "Pang", "Qian", "Qin", "Qiu", "Sima", "Sun", "Tang", "Tian", "Wang", "Wen", "Xiahou", "Xu", "Yin", "Yu", "Yue", "Zang", "Zhang", "Zhu", "Zhuge"]>> /* Name pool selector based on nationality and race. Use as follows, given some slave _slave: diff --git a/src/pregmod/generateChild.tw b/src/pregmod/generateChild.tw index 1c0b08b5f272d919e46bd3fedf00f7cc77d39c94..f04952e7c649d92bc290068448015144f3693477 100644 --- a/src/pregmod/generateChild.tw +++ b/src/pregmod/generateChild.tw @@ -141,6 +141,7 @@ <<set $activeSlave.behavioralQuirk = either("none", "none", "none", "none", "none", $mergeDad.sexualFlaw)>> <<set $activeSlave.fetish = either("none", "none", "none", "none", "none", $mergeDad.fetish)>> <</if>> + <<set $activeSlave.slaveSurname = $PC.surname>> <<elseif $babyGender == 2>> <<include "Generate XY Slave">> <<if $PC.pregSource < 1>> @@ -260,6 +261,7 @@ <<set $activeSlave.behavioralQuirk = either("none", "none", "none", "none", "none", $mergeDad.behavioralQuirk)>> <<set $activeSlave.fetish = either("none", "none", "none", "none", "none", $mergeDad.fetish)>> <</if>> + <<set $activeSlave.slaveSurname = $PC.surname>> <<else>> <<if $seeDicks == 100>> <<include "Generate XY Slave">> @@ -276,13 +278,16 @@ <<if $mom.pregSource > 0>> <<set $activeSlave.father = $mergeDad.ID>> <<set $activeSlave.slaveName = String($mom.slaveName + " and " + $mergeDad.slaveName + "'s child")>> + <<if def $mom.surname && $mom.surname != "">><<set $activeSlave.slaveSurname = $mom.surname>><<elseif def $mergeDad.surname && $mergeDad.surname != "">><<set $activeSlave.slaveSurname = $mergeDad.surname>><<else>><<set $activeSlave.slaveSurname = 0>><</if>> <<elseif $mom.pregSource == -1>> <<set $activeSlave.father = -1>> <<set $activeSlave.slaveName = String($mom.slaveName + " and my child")>> + <<set $activeSlave.slaveSurname = $PC.surname>> <<else>> <<set $activeSlave.father = $missingParentID>> <<set $missingParentID-->> <<set $activeSlave.slaveName = String($mom.slaveName + "'s slut child")>> + <<if def $mom.surname && $mom.surname != "">><<set $activeSlave.slaveSurname = $mom.surname>><<else>><<set $activeSlave.slaveSurname = 0>><</if>> <</if>> <<if $mergeMom.nationality == $mergeDad.nationality>> <<set $activeSlave.nationality = $mergeDad.nationality>> @@ -539,6 +544,7 @@ <<set $activeSlave.origin = "Shortly after birth, she was sealed in an aging tank until she was of age. She knows nothing of the world outside of what the tank imprinted her with.">> <<set $activeSlave.career = "a slave since birth">> <<set $activeSlave.birthName = $activeSlave.slaveName>> +<<set $activeSlave.birthSurname = $activeSlave.slaveSurname>> <<set $activeSlave.intelligenceImplant = 0>> <<set $activeSlave.navelPiercing = 0>> <<set $activeSlave.devotion = 0>> diff --git a/src/pregmod/managePersonalAffairs.tw b/src/pregmod/managePersonalAffairs.tw index 728b8a8584b6d3c3109379c25782d027ffc49c8c..94ae0e309c2c3b66ca4b220473d89396ca7441c8 100644 --- a/src/pregmod/managePersonalAffairs.tw +++ b/src/pregmod/managePersonalAffairs.tw @@ -513,7 +513,11 @@ I'm <<if $propOutcome == 1>> <br><br> __Elite Breeder Qualifications__ - <<UpdateStandards>> - <<BreedingStandards>> + <<if ndef $activeStandards>> + <<InitStandards>> + <<else>> + <<UpdateStandards>> + <<BreedingStandards>> + <</if>> <</if>> diff --git a/src/uncategorized/REFS.tw b/src/uncategorized/REFS.tw index 56cbf699d4921ccfcd0706ce4f7f8392cc0e8d71..1fa4b0d054882d8ca9435ec1c658332dbf052e9a 100644 --- a/src/uncategorized/REFS.tw +++ b/src/uncategorized/REFS.tw @@ -46,6 +46,18 @@ <<switch $REFSevent>> +<<case "paternalist encounter">> + +As a result of $arcologies[0].name's adoption of paternalism there has been a remarkable effect on relationships between slaves and owners, with the flourishing of mutual respect between the two forming the basis for social life in the arcology. However, not all citizens are so keen as to internalize the tenants of paternalism, whether out of prejudice, old habits or adherence to a more brutal style of slaveholding. +<br><br> +On one particular outing, you come across an elderly male citizen giving his young slave quite a thrashing in the street outside of a prominent apartment complex. From the skinned state of the poor girl's knees and the cruel spiked collar about her neck, it is clear that her owner has been dragging her about the arcology as if she were a dog. To say nothing of this degrading treatment, beating of a slave in public is a fineable offense. + +<<case "degredationist encounter">> + +As a result of $arcologies[0].name's adoption of degradationism there has been a remarkable effect on the social status of slaves, with the continued reduction of slave rights taking center stage. However, not all citizens are so keen as to internalize the tenants of degredationism, whether out of misplaced compassion, old habits or adherence to the Old World style of relationships. +<br><br> +On one particular outing, you come across an elderly male citizen holding the hand of his young slave, seemingly on a date at one of the arcology's prominent promenades. From the ring on the girl's finger and the modest neckline on her clothing, it is clear that her owner is treating her as if she is his wife. His obscene treatment of his slave has already drawn a large crowd of shocked onlookers. + <<case "physical idealist encounter">> The notion of the physical ideal has taken $arcologies[0].name by storm and a number of enterprising citizens have been quick to respond by providing new services and businesses in response. One such innovation is the open air gym, a now common sight along $arcologies[0].name's many streets. Many citizens utilize such facilities to squeeze in an extra work-out on their daily commute, or in lieu of personal fitness facilities in their own homes. @@ -92,6 +104,74 @@ On this particular outing you happen to cross paths with a comely female citizen <<switch $REFSevent>> +<<case "paternalist encounter">> + +<span id="result"> +<<link "Alert your drones and keep walking">> + <<replace "#result">> + You inform $assistantName that you have a slave beater in need of detainment by your security drones, then continue on your way confident in your knowledge that the citizen will soon be in custody. + <</replace>> +<</link>> +<<if $cash >= 2000>> +<br><<link "Take the poor slave girl into your custody">> + <<replace "#result">> + Confronting the citizen is simplicity in itself, he would not dare defy you under threat of arrest by your security drones and is unlikely to garner any sympathy from the public for his degradationist behaviors. As such, you are able to take civil ownership over the poor slave girl and take her into your care with only minimal compensation to the citizen. As you stride away from her former owner with the girl in your arms, she leans over to plant a chaste kiss of thanks on your cheek. + <<set $cash -= 2000>> + <<set $activeSlaveOneTimeMaxAge = 22>> + <<include "Generate New Slave">> + <<set $activeSlave.origin = "She was taken into your custody from an abusive owner.">> + <<set $activeSlave.devotion = random(-25,0)>> + <<set $activeSlave.trust = random(-25,0)>> + <<set $activeSlave.boobs = random(300,450)>> + <<set $activeSlave.hips = random(-2,-1)>> + <<set $activeSlave.butt = random(0,2)>> + <<set $activeSlave.health = random(10,20)>> + <<include "New Slave Intro">> + <</replace>> +<</link>> // Taking custody of the girl will cost ¤2000. // +<</if>> +<br><<link "Publicly confront the citizen">> + <<replace "#result">> + Your walk up to the citizen is not accompanied by shaking ground or tumultuous fanfare, yet the citizen looks as if death itself has come before him. You don't hurt him physically, instead chastising him publicly in front of his fellow peers who begin to cheer their agreement. You end your tirade of verbal abuse with a reminder that although the man is a citizen of your arcology, that does not give him the impunity to shirk the law. To make it clear his next offense will be his last, a brace of your security drones hover behind you threateningly. The crowd that gathered @@.green;approve of your rebuke of the citizen@@. + <<set $rep += 500>> + <</replace>> +<</link>> +</span> + +<<case "degradationist encounter">> + +<span id="result"> +<<link "Alert your drones and keep walking">> + <<replace "#result">> + You inform $assistantName that you have a slave lover in need of harassment by your security drones, then continue on your way. You did not instruct your drones to attack the obscene pair, as the scrutiny and public shame of a drone escort around the arcology are a more fitting punishment for a citizen and will perhaps encourage him to think twice before treating his slave as an equal. + <</replace>> +<</link>> +<<if $cash >= 2000>> +<br><<link "Take the pampered slave girl into your custody">> + <<replace "#result">> + Confronting the citizen is simplicity in itself, he would not dare defy you directly under threat of arrest by your security drones and is unlikely to garner any sympathy from the public for his disturbing actions. As such, you are able to take civil ownership over the slave girl and claim her for yourself with only token compensation to the citizen. As you stride away from her former owner with the girl in your arms, she clings to you with obvious naievete for how you will treat her. It's time she learnt how slaves are treated in $arcologies[0].name. + <<set $cash -= 2000>> + <<set $activeSlaveOneTimeMaxAge = 22>> + <<include "Generate New Slave">> + <<set $activeSlave.origin = "She was taken into your custody from an owner who treated her as an equal.">> + <<set $activeSlave.devotion = random(-25,0)>> + <<set $activeSlave.trust = random(-25,0)>> + <<set $activeSlave.boobs = random(300,450)>> + <<set $activeSlave.hips = random(-2,-1)>> + <<set $activeSlave.butt = random(0,2)>> + <<set $activeSlave.health = random(70,80)>> + <<include "New Slave Intro">> + <</replace>> +<</link>> // Taking custody of the girl will cost ¤2000. // +<</if>> +<br><<link "Publicly confront the citizen">> + <<replace "#result">> + Your walk up to the citizen is not accompanied by shaking ground or tumultuous fanfare, yet the citizen looks as if death itself has come before him. You don't hurt him physically, instead chastising him publicly in front of his fellow peers who begin to cheer their agreement. You end your tirade of verbal abuse with a reminder that although the man is a citizen of your arcology, that does not give him the impunity to parade a slave around the arcology as if she were his wife. To make it clear that you will not be so forgiving of his next transgression, a brace of your security drones hover behind you threateningly. The crowd that gathered @@.green;approve of your rebuke of the citizen@@. + <<set $rep += 500>> + <</replace>> +<</link>> +</span> + <<case "physical idealist encounter">> <span id="result"> diff --git a/src/uncategorized/randomNonindividualEvent.tw b/src/uncategorized/randomNonindividualEvent.tw index ff14a3ba2bde3512244cb66b6337fea441ec18fa..a358e281681553769ded2e31bb8844061b05d1a4 100644 --- a/src/uncategorized/randomNonindividualEvent.tw +++ b/src/uncategorized/randomNonindividualEvent.tw @@ -1048,24 +1048,33 @@ /* FUTURE SOCIETY EVENTS */ - <<if $arcologies[0].FSBodyPurist > random(1,100)>> + <<if $arcologies[0].FSBodyPurist > random(25,100)>> <<set $REFSevent.push("body purism encounter")>> <</if>> - <<if $arcologies[0].FSTransformationFetishist > random(1,100)>> + <<if $arcologies[0].FSTransformationFetishist > random(25,100)>> <<set $REFSevent.push("transformation fetishism encounter")>> <</if>> - <<if $arcologies[0].FSYouthPreferentialist > random(1,100)>> + <<if $arcologies[0].FSYouthPreferentialist > random(25,100)>> <<set $REFSevent.push("youth preferentialist encounter")>> <</if>> - <<if $arcologies[0].FSMaturityPreferentialist > random(1,100)>> + <<if $arcologies[0].FSMaturityPreferentialist > random(25,100)>> <<set $REFSevent.push("maturity preferentialist encounter")>> <</if>> - <<if $arcologies[0].FSPastoralist > random(1,100)>> + <<if $arcologies[0].FSPastoralist > random(25,100)>> <<set $REFSevent.push("pastoralist encounter")>> <</if>> - <<if $arcologies[0].FSPhysicalIdealist > random(1,100)>> + <<if $arcologies[0].FSPhysicalIdealist > random(25,100)>> <<set $REFSevent.push("physical idealist encounter")>> <</if>> + <</if>> + <<if $arcologies[0].FSPaternalist > random(25,100)>> + <<set $REFSevent.push("paternalist encounter")>> + <</if>> + <</if>> + <<if $arcologies[0].FSDegradationist > random(25,100)>> + <<set $REFSevent.push("degradationist encounter")>> + <</if>> + /* EVENT RANDOMIZATION */ diff --git a/src/utility/artWidgets.tw b/src/utility/artWidgets.tw index beeac09ad08bafccfa40a0f6c47de956e8e6a9d8..ba97fac5f151a666e1b2dc81a2f1789c75424bc9 100644 --- a/src/utility/artWidgets.tw +++ b/src/utility/artWidgets.tw @@ -92,32 +92,34 @@ $args[2]: icon UI Display for vector art, 1 for on. /% Shoulder width and arm or no arm %/ <<if $args[0].amp != 1>> -<<if $args[0].fuckdoll == 0>> - <<if $args[0].devotion > 50>> - <<set _leftArmType = "high">> - <<set _rightArmType = "high">> - <<elseif $args[0].trust >= -20>> - <<if $args[0].devotion < -20>> - <<set _leftArmType = "rebel">> - <<set _rightArmType = "low">> - <<elseif $args[0].devotion <= 20>> - <<set _leftArmType = "low">> - <<set _rightArmType = "low">> - <<else>> - <<set _leftArmType = "mid">> - <<set _rightArmType = "high">> - <</if>> +<<if $args[0].devotion > 50>> + <<set _leftArmType = "high">> + <<set _rightArmType = "high">> +<<elseif $args[0].trust >= -20>> + <<if $args[0].devotion < -20>> + <<set _leftArmType = "rebel">> + <<set _rightArmType = "low">> + <<elseif $args[0].devotion <= 20>> + <<set _leftArmType = "low">> + <<set _rightArmType = "low">> <<else>> <<set _leftArmType = "mid">> - <<set _rightArmType = "mid">> + <<set _rightArmType = "high">> <</if>> +<<else>> + <<set _leftArmType = "mid">> + <<set _rightArmType = "mid">> +<</if>> +<<if $args[0].fuckdoll == 0 && $args[0].clothes != "restrictive latex" && $args[0].clothes != "a latex catsuit">> <<print "<object type='image/svg+xml' data=" + _imgSkinLoc + "/arm left " + _leftArmType + ".svg'" + "/></object>">> <<print "<object type='image/svg+xml' data=" + _imgSkinLoc + "/arm right " + _rightArmType + ".svg'" + "/></object>">> <<else>> - <<set _leftArmType = "mid latex">> - <<set _rightArmType = "mid latex">> - <<print "<object type='image/svg+xml' data=" + _folderLoc + "/outfit/arm left " + _leftArmType + ".svg'" + "/></object>">> - <<print "<object type='image/svg+xml' data=" + _folderLoc + "/outfit/arm right " + _rightArmType + ".svg'" + "/></object>">> + <<if $args[0].fuckdoll != 0>> + <<set _leftArmType = "mid">> + <<set _rightArmType = "mid">> + <</if>> + <<print "<object type='image/svg+xml' data=" + _folderLoc + "/outfit/arm left " + _leftArmType + " latex.svg'" + "/></object>">> + <<print "<object type='image/svg+xml' data=" + _folderLoc + "/outfit/arm right " + _rightArmType + " latex.svg'" + "/></object>">> <</if>> <</if>> @@ -139,7 +141,7 @@ $args[2]: icon UI Display for vector art, 1 for on. <<else>> <<set _buttSize = 0>> <</if>> -<<if $args[0].fuckdoll != 0>> +<<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<set _buttSize = _buttSize + " latex">> <</if>> <<print "<object type='image/svg+xml' data=" + _imgSkinLoc + "/butt " + _buttSize + ".svg'" + "/></object>">> @@ -164,7 +166,7 @@ $args[2]: icon UI Display for vector art, 1 for on. <<if $args[0].amp == 1>> <<set _legSize = "stump " + _legSize>> <</if>> -<<if $args[0].fuckdoll != 0 && $args[0].amp != 1>> +<<if ($args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit") && $args[0].amp != 1>> <<set _legSize = _legSize + " latex">> <<print "<object type='image/svg+xml' data=" + _folderLoc + "/outfit/leg " + _legSize + ".svg'" + "/></object>">> <<else>> @@ -193,13 +195,13 @@ $args[2]: icon UI Display for vector art, 1 for on. <<print "<object type='image/svg+xml' data=" + _imgSkinLoc + "/feet.svg'" + "/></object>">> <</if>> <<if $args[0].shoes == "extreme heels" or $args[0].shoes == "boots">> - <<if $args[0].fuckdoll != 0>> + <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<set _shoesType = _shoesType + " latex">> <</if>> <<print "<object type='image/svg+xml' data=" + _folderLoc + "/outfit/" + _shoesType + ".svg'" + "/></object>">> <</if>> <<if $args[0].shoes == "heels" or $args[0].shoes == "flats">> - <<if $args[0].fuckdoll != 0>> + <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<set _shoesType = _shoesType + " latex">> <<print "<object type='image/svg+xml' data=" + _folderLoc + "/outfit/" + _shoesType + ".svg'" + "/></object>">> <<else>> @@ -225,9 +227,13 @@ $args[2]: icon UI Display for vector art, 1 for on. <<set _torsoSize = "normal">> <</if>> <<print "<object type='image/svg+xml' data=" + _imgSkinLoc + "/torso " + _torsoSize + ".svg'" + "/></object>">> -<<if $args[0].fuckdoll != 0>> - <<set _torsoSize = _torsoSize + " latex">> - <<print "<object type='image/svg+xml' data=" + _folderLoc + "/outfit/torso " + _torsoSize + ".svg'" + "/></object>">> +<<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> + <<set _torsoOutfit = " latex">> +<<elseif $args[0].clothes == "uncomfortable straps">> + <<set _torsoOutfit = " straps">> +<</if>> +<<if _torsoOutfit>> + <<print "<object type='image/svg+xml' data=" + _folderLoc + "/outfit/torso " + _torsoSize + _torsoOutfit + ".svg'" + "/></object>">> <</if>> /*Navel Piercing*/ @@ -264,7 +270,7 @@ $args[2]: icon UI Display for vector art, 1 for on. <</switch>> /% Head base image %/ -<<if $args[0].fuckdoll != 0>> +<<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<print "<object type='image/svg+xml' data=" + _folderLoc + "/outfit/head latex.svg'" + "/></object>">> <<else>> <<print "<object type='image/svg+xml' data=" +_imgSkinLoc + "/head.svg'" + "/></object>">> @@ -382,13 +388,24 @@ $args[2]: icon UI Display for vector art, 1 for on. <<if $args[0].dick > 0>> <<if canAchieveErection($args[0])>> <<if _boobSize < 6>> - <<if $args[0].fuckdoll != 0>> - <<print "<object type='image/svg+xml' data=" + _folderLoc + "/outfit/boob " +_boobSize +" latex.svg'" + "/></object>">> - <<if $args[0].lactation > 0>><<print "<object type='image/svg+xml' data=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + "/></object>">><</if>> + <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> + /* normal case: outfit hides boobs */ + <<set _boobOutfit = " latex" >> + <</if>> + <<if _boobOutfit >> + <<print "<object type='image/svg+xml' data=" + _folderLoc + "/outfit/boob " +_boobSize + _boobOutfit + ".svg'" + "/></object>">> + <<if $args[0].lactation > 0>> + <<print "<object type='image/svg+xml' data=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + "/></object>">> + <</if>> <<else>> <<print "<object type='image/svg+xml' data=" + _imgSkinLoc + "/boob " +_boobSize +".svg'" + "/></object>">> <<print "<object type='image/svg+xml' data=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + "/></object>">> <</if>> + /* special case: straps are actually dawn over the boobs */ + <<if $args[0].clothes == "uncomfortable straps">> + <<set _boobOutfit = " straps" >> + <<print "<object type='image/svg+xml' data=" + _folderLoc + "/outfit/boob " +_boobSize + _boobOutfit + ".svg'" + "/></object>">> + <</if>> <<set _needBoobs = 0>> <</if>> <</if>> @@ -427,13 +444,18 @@ $args[2]: icon UI Display for vector art, 1 for on. <</if>> <</if>> <<if _needBoobs>> - <<if $args[0].fuckdoll != 0>> + <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<print "<object type='image/svg+xml' data=" + _folderLoc + "/outfit/boob " +_boobSize +" latex.svg'" + "/></object>">> <<if $args[0].lactation > 0>><<print "<object type='image/svg+xml' data=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + "/></object>">><</if>> <<else>> <<print "<object type='image/svg+xml' data=" + _imgSkinLoc + "/boob " +_boobSize +".svg'" + "/></object>">> <<print "<object type='image/svg+xml' data=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + "/></object>">> <</if>> + /* special case: straps are actually dawn over the boobs */ + <<if $args[0].clothes == "uncomfortable straps">> + <<set _boobOutfit = " straps" >> + <<print "<object type='image/svg+xml' data=" + _folderLoc + "/outfit/boob " +_boobSize + _boobOutfit + ".svg'" + "/></object>">> + <</if>> <</if>> /% piercings %/ diff --git a/vector source.svg b/vector source.svg index 683900b87deaab0c391dbdf15f513d89213251f9..a036861297298fb677b9e607ac1f6e191545b469 100644 --- a/vector source.svg +++ b/vector source.svg @@ -16,11 +16,11 @@ style="enable-background:new 0 0 1000 1000;" xml:space="preserve" id="svg4356" - sodipodi:docname="fc vector edit.svg" - inkscape:version="0.92.0 r15299"><metadata + sodipodi:docname="vector source.svg" + inkscape:version="0.91 r13725"><metadata id="metadata4362"><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><defs + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs id="defs4360" /><sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" @@ -30,17 +30,23 @@ guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" + inkscape:window-width="1280" + inkscape:window-height="952" id="namedview4358" showgrid="false" - inkscape:zoom="0.85" - inkscape:cx="479.40904" - inkscape:cy="583.29324" - inkscape:window-x="-8" - inkscape:window-y="-8" + inkscape:zoom="0.60104075" + inkscape:cx="547.81045" + inkscape:cy="564.58201" + inkscape:window-x="0" + inkscape:window-y="0" inkscape:window-maximized="1" - inkscape:current-layer="svg4356" /><style + inkscape:current-layer="Boob_hvy_piercing_7_" + inkscape:object-nodes="true" + inkscape:object-paths="false" + inkscape:snap-smooth-nodes="false" + inkscape:snap-object-midpoints="true" + inkscape:snap-global="true" + inkscape:snap-nodes="true" /><style type="text/css" id="style3680"> .st0{fill:#FFFFFF;} @@ -69,8 +75,12 @@ .st23{fill:#070505;} .st24{fill:#BF2126;} </style><g - id="Arm"><g - id="Arm_High"><path + inkscape:groupmode="layer" + id="Arm" + style="display:inline"><g + inkscape:groupmode="layer" + id="Arm_High" + style="display:inline"><path style="fill:#f6e0e8" inkscape:connector-curvature="0" d="m 579.7,208 c 33,6 81.8,-36.8 94.5,-39.6 -28.1,-11.8 -37.6,-29.6 -84.3,-61.1 0,0 -42,18 -43.4,2.2 -3.5,-39.9 31.1,-22.5 48.4,-9.9 14.8,1.2 111.4,57.8 107.4,71.3 -6.1,20.6 -84.8,65.8 -114.7,81.4 -49.9,-6.5 -28.8,-47.8 -7.9,-44.3" @@ -81,7 +91,9 @@ d="m 501.8,204.7 c -21.8,3.4 -60,-36.9 -82.3,-50.2 28.1,-11.8 29.5,-16.2 76.2,-47.7 0,0 42,18 43.4,2.2 3.5,-39.9 -31.1,-22.5 -48.4,-9.9 -14.8,1.2 -92.9,44.3 -88.9,57.8 6.1,20.6 48.4,58 75.4,76 8.9,4.4 28.5,-13.6 24.6,-28.2" class="st3" id="R_2_" /></g><g - id="Arm_Low"><path + inkscape:groupmode="layer" + id="Arm_Low" + style="display:inline"><path style="fill:#f6e0e8" inkscape:connector-curvature="0" d="m 573.4,255 c 33,-6 29.6,56.1 37.5,74.3 -5,16.2 -6.6,41.9 -36.3,87.2 0,0 -42,-18 -43.4,-2.2 -3.5,39.9 28.5,17.8 48.4,9.9 12.4,-4.9 45.3,-83.4 49.9,-100.1 3.1,-11.3 -13.8,-86.7 -31.5,-104.1 -8.1,-7.9 -9.6,-4.9 -16.6,-9.2 -50.1,6.3 -29,47.7 -8,44.2" @@ -92,7 +104,9 @@ d="m 486.2,253.7 c -28.3,-5.9 -25.4,54.5 -32.3,72.2 4.3,15.6 5.7,40.7 31.3,84.7 0,0 36.2,-17.5 37.3,-2.1 3,38.7 -24.5,17.2 -41.7,9.6 -10.7,-4.8 -39,-81 -42.9,-97.1 -2.7,-10.9 11.8,-84.2 27.1,-101.1 6.9,-7.7 8.3,-4.7 14.3,-8.9 43,6 24.9,46 6.9,42.7" class="st3" id="R" /></g><g - id="Arm_Mid"><path + inkscape:groupmode="layer" + id="Arm_Mid" + style="display:inline"><path style="fill:#f6e0e8" inkscape:connector-curvature="0" d="m 487.4,253.7 c -28.3,-5.9 -22.8,53.7 -29.6,71.4 18.2,0.4 51.1,-12.2 103.6,-15.7 0,0 36.2,-17.5 37.3,-2.1 3,38.7 -20.2,22.3 -37.3,14.6 -14.3,-2 -119,32.5 -122.9,16.4 -2.7,-10.9 12.4,-101.7 27.7,-118.5 6.9,-7.7 8.3,-4.7 14.3,-8.9 43.1,6.1 25,46.1 6.9,42.8" @@ -102,18 +116,28 @@ inkscape:connector-curvature="0" d="m 578.1,257 c 28.8,-6 21.8,49.7 28.7,67.6 -18.6,0.4 -50.5,-7.6 -103.8,-11.1 0,0 -36.7,-17.8 -37.9,-2.2 -3,39.3 20.4,22.7 37.9,14.8 14.6,-2 120.8,33 124.8,16.6 2.8,-11.1 -12.7,-103.2 -28.2,-120.3 -7.1,-7.8 -8.4,-4.8 -14.5,-9.1 -43.7,6.4 -25.3,47.1 -7,43.7" class="st3" - id="L_1_" /></g><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - d="m 574.7,252.8 c 25.1,-5.4 9.1,67.7 17,85.9 13.9,6.4 20.4,-4.7 50.5,-19.5 0,0 16.4,-37 9.2,-40 -1.7,-0.7 -6.6,-1.2 -6.6,-1.2 0,-7.6 0.8,-25.2 -2.1,-24.8 -2.4,0.4 -1.4,17.3 -2.9,24.7 -14,1.9 -7.6,20.6 -6.9,30.8 -9.3,8 -15.3,10.8 -24.4,12.1 3.1,-11.3 8.6,-85.7 -9.2,-103 -8.1,-7.9 -9.6,-4.9 -16.6,-9.2 -50,6.3 -29,47.6 -8,44.2" - class="st3" - id="Arm_Left_Rebel" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - d="m 581.3,240.3 c 9.9,3.7 6.2,3.3 36.3,17.8 8.3,4 20.5,9.8 35.5,16.5 11.8,9.2 22.4,13.4 30,15.5 18.5,5.1 33.2,1.6 40.4,11.9 3.9,5.5 4.9,11.6 4.9,11.6 1.8,3.2 3.7,7.7 4.7,13.4 0.9,5.3 0.4,8.9 1.3,9.1 1.1,0.2 3.7,-4.2 3.9,-9.1 0.2,-5.5 -2.7,-8.8 -1.3,-10.3 1.3,-1.3 3.7,1 6.5,0.1 5.7,-1.8 6.1,-14.6 6.2,-16.1 0.1,-4.7 0.3,-10.6 -3.3,-14 -4.4,-4.1 -10.6,-1 -20,-0.7 -9.4,0.4 -20.9,-4.8 -43.8,-15 -10.4,-4.6 -15.5,-6.9 -22.5,-11 -13.4,-7.8 -23.2,-16.1 -29.5,-22 -26.2,-19 -35.6,-24.7 -38.3,-25.4 -0.4,-0.1 -3.1,-0.8 -6.5,-2.3 -0.9,-0.4 -2,-0.9 -3.2,-1.6 -11.7,3 -19,6.2 -23.5,9.2 -3.9,2.7 -6.8,5.7 -6.5,8.7 0.5,5.6 11.9,7.3 28.7,13.7 z" - class="st3" - id="Arm_Left_Thumb_Down" /></g><g - id="Arm_Outfit"><g + id="L_1_" /></g><g + id="Arm_Left_Rebel" + inkscape:groupmode="layer" + style="display:inline"><path + style="fill:#f6e0e8" + inkscape:connector-curvature="0" + d="m 581.3,240.3 c 9.9,3.7 6.2,3.3 36.3,17.8 8.3,4 20.5,9.8 35.5,16.5 11.8,9.2 22.4,13.4 30,15.5 18.5,5.1 33.2,1.6 40.4,11.9 3.9,5.5 4.9,11.6 4.9,11.6 1.8,3.2 3.7,7.7 4.7,13.4 0.9,5.3 0.4,8.9 1.3,9.1 1.1,0.2 3.7,-4.2 3.9,-9.1 0.2,-5.5 -2.7,-8.8 -1.3,-10.3 1.3,-1.3 3.7,1 6.5,0.1 5.7,-1.8 6.1,-14.6 6.2,-16.1 0.1,-4.7 0.3,-10.6 -3.3,-14 -4.4,-4.1 -10.6,-1 -20,-0.7 -9.4,0.4 -20.9,-4.8 -43.8,-15 -10.4,-4.6 -15.5,-6.9 -22.5,-11 -13.4,-7.8 -23.2,-16.1 -29.5,-22 -26.2,-19 -35.6,-24.7 -38.3,-25.4 -0.4,-0.1 -3.1,-0.8 -6.5,-2.3 -0.9,-0.4 -2,-0.9 -3.2,-1.6 -11.7,3 -19,6.2 -23.5,9.2 -3.9,2.7 -6.8,5.7 -6.5,8.7 0.5,5.6 11.9,7.3 28.7,13.7 z" + class="st3" + id="path4819" /></g><g + id="g4814" + inkscape:groupmode="layer" + inkscape:label="Arm_Left_Thumb_Down" + style="display:inline"><path + style="fill:#f6e0e8" + inkscape:connector-curvature="0" + d="m 574.7,252.8 c 25.1,-5.4 9.1,67.7 17,85.9 13.9,6.4 20.4,-4.7 50.5,-19.5 0,0 16.4,-37 9.2,-40 -1.7,-0.7 -6.6,-1.2 -6.6,-1.2 0,-7.6 0.8,-25.2 -2.1,-24.8 -2.4,0.4 -1.4,17.3 -2.9,24.7 -14,1.9 -7.6,20.6 -6.9,30.8 -9.3,8 -15.3,10.8 -24.4,12.1 3.1,-11.3 8.6,-85.7 -9.2,-103 -8.1,-7.9 -9.6,-4.9 -16.6,-9.2 -50,6.3 -29,47.6 -8,44.2" + class="st3" + id="path4821" /></g></g><g + inkscape:groupmode="layer" + id="Arm_Outfit" + style="display:inline"><g + inkscape:groupmode="layer" id="Arm_High_1_"><path style="fill:#515351" inkscape:connector-curvature="0" @@ -125,6 +149,7 @@ d="m 501.8,204.7 c -21.8,3.4 -60,-36.9 -82.3,-50.2 28.1,-11.8 29.5,-16.2 76.2,-47.7 0,0 42,18 43.4,2.2 3.5,-39.9 -31.1,-22.5 -48.4,-9.9 -14.8,1.2 -92.9,44.3 -88.9,57.8 6.1,20.6 48.4,58 75.4,76 8.9,4.4 28.5,-13.6 24.6,-28.2" class="st4" id="R_5_" /></g><g + inkscape:groupmode="layer" id="Arm_Low_Latex"><path style="fill:#515351" inkscape:connector-curvature="0" @@ -136,6 +161,7 @@ d="m 486.2,253.7 c -28.3,-5.9 -25.4,54.5 -32.3,72.2 4.3,15.6 5.7,40.7 31.3,84.7 0,0 36.2,-17.5 37.3,-2.1 3,38.7 -24.5,17.2 -41.7,9.6 -10.7,-4.8 -39,-81 -42.9,-97.1 -2.7,-10.9 11.8,-84.2 27.1,-101.1 6.9,-7.7 8.3,-4.7 14.3,-8.9 43,6 24.9,46 6.9,42.7" class="st4" id="R_4_" /></g><g + inkscape:groupmode="layer" id="Arm_Mid_Latex"><path style="fill:#515351" inkscape:connector-curvature="0" @@ -157,7 +183,9 @@ d="m 581.3,240.3 c 9.9,3.7 6.2,3.3 36.3,17.8 8.3,4 20.5,9.8 35.5,16.5 11.8,9.2 22.4,13.4 30,15.5 18.5,5.1 33.2,1.6 40.4,11.9 3.9,5.5 4.9,11.6 4.9,11.6 1.8,3.2 3.7,7.7 4.7,13.4 0.9,5.3 0.4,8.9 1.3,9.1 1.1,0.2 3.7,-4.2 3.9,-9.1 0.2,-5.5 -2.7,-8.8 -1.3,-10.3 1.3,-1.3 3.7,1 6.5,0.1 5.7,-1.8 6.1,-14.6 6.2,-16.1 0.1,-4.7 0.3,-10.6 -3.3,-14 -4.4,-4.1 -10.6,-1 -20,-0.7 -9.4,0.4 -20.9,-4.8 -43.8,-15 -10.4,-4.6 -15.5,-6.9 -22.5,-11 -13.4,-7.8 -23.2,-16.1 -29.5,-22 -26.2,-19 -35.6,-24.7 -38.3,-25.4 -0.4,-0.1 -3.1,-0.8 -6.5,-2.3 -0.9,-0.4 -2,-0.9 -3.2,-1.6 -11.7,3 -19,6.2 -23.5,9.2 -3.9,2.7 -6.8,5.7 -6.5,8.7 0.5,5.6 11.9,7.3 28.7,13.7 z" class="st4" id="Arm_Left_Thumb_Down_1_" /></g><g - id="Hair_Aft_2_"><path + inkscape:groupmode="layer" + id="Hair_Aft_2_" + style="display:inline"><path style="fill:#f4f1a3" inkscape:connector-curvature="0" d="m 564.6,100.2 c 13.5,72.4 34.5,66.5 14,103.3 -43.3,47.7 -90.1,7 -98.1,-9.8 -41.1,-23.4 -0.3,-140.8 48.3,-130.3 33.3,7.2 33.3,19.5 35.8,36.8" @@ -193,7 +221,9 @@ d="m 564.6,100.2 c 13.5,72.4 34.5,66.5 14,103.3 -43.3,47.7 -90.1,7 -98.1,-9.8 -41.1,-23.4 -0.3,-140.8 48.3,-130.3 33.3,7.2 33.3,19.5 35.8,36.8" class="st11" id="Hair_Aft_7_" /></g><g - id="Ass"><path + inkscape:groupmode="layer" + id="Ass" + style="display:inline"><path style="fill:#f6e0e8" inkscape:connector-curvature="0" d="m 555.8,402.6 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" @@ -214,7 +244,9 @@ d="m 548.6,389.8 c 2.1,-0.5 7.6,3.1 18.7,10.3 5,3.3 11.1,9 25.3,19.2 10.5,7.5 18.5,13.2 24.8,21.8 0,0 16.4,22.6 7.9,55.2 -0.7,3 -1.8,6 -1.8,6 -1.5,4 -3.5,7.3 -7,14.5 -5.2,10.6 -5.7,12.9 -7.7,16.7 -5.3,10.1 -10.2,12.7 -18.8,22.6 -5,5.7 -8.3,10.6 -10.8,14.7 -6.6,11 -7.2,12.9 -8.4,13 -12,0.7 -44.1,-188.5 -22.2,-194 z" class="st3" id="Butt_3" /></g><g - id="Ass_Outfit"><path + inkscape:groupmode="layer" + id="Ass_Outfit" + style="display:inline"><path style="fill:#515351" inkscape:connector-curvature="0" d="m 555.8,402.6 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" @@ -235,11 +267,14 @@ d="m 548.6,389.8 c 2.1,-0.5 7.6,3.1 18.7,10.3 5,3.3 11.1,9 25.3,19.2 10.5,7.5 18.5,13.2 24.8,21.8 0,0 16.4,22.6 7.9,55.2 -0.7,3 -1.8,6 -1.8,6 -1.5,4 -3.5,7.3 -7,14.5 -5.2,10.6 -5.7,12.9 -7.7,16.7 -5.3,10.1 -10.2,12.7 -18.8,22.6 -5,5.7 -8.3,10.6 -10.8,14.7 -6.6,11 -7.2,12.9 -8.4,13 -12,0.7 -44.1,-188.5 -22.2,-194 z" class="st4" id="Butt_3_1_" /></g><g - id="Leg"><g + inkscape:groupmode="layer" + id="Leg" + style="display:inline"><g + inkscape:groupmode="layer" id="Leg_Narrow"><path style="fill:#f6e0e8" inkscape:connector-curvature="0" - d="m 445.9,413.1 c 0,0 -10.3,43.4 -10.6,67.8 -0.5,43.2 14.3,129.1 30.4,183.7 7.5,61.7 6.2,123.3 8.8,185.4 l 11.5,-0.3 c 2.2,-51.3 34,-103.9 16.3,-161.5 2.3,-46.1 10,-72.4 5,-160.3 -5.4,94.3 16.6,109.2 26.4,153.6 -15.6,58 5.7,110.8 6.5,168.9 h 16.3 c 0.2,-58.5 15.6,-94.6 7.7,-168.9 12.4,-64.5 12.4,-139.3 11.6,-205.6 -0.3,-26 -5.4,-64.7 -5.4,-64.7 l -124.5,1.9" + d="m 445.9,413.1 c 0,0 -10.3,43.4 -10.6,67.8 -0.5,43.2 14.3,129.1 30.4,183.7 7.5,61.7 6.2,123.3 8.8,185.4 l 11.5,-0.3 c 2.2,-51.3 34,-103.9 16.3,-161.5 2.3,-46.1 10,-72.4 5,-160.3 -5.4,94.3 16.6,109.2 26.4,153.6 -15.6,58 5.7,110.8 6.5,168.9 l 16.3,0 c 0.2,-58.5 15.6,-94.6 7.7,-168.9 12.4,-64.5 12.4,-139.3 11.6,-205.6 -0.3,-26 -5.4,-64.7 -5.4,-64.7 l -124.5,1.9" class="st3" id="XMLID_464_" /><path style="fill:#010101" @@ -247,10 +282,11 @@ d="m 508,588.6 c -9.8,-40.3 -16.6,-61.7 -12.6,-107.8 -0.7,44.5 3.5,67.1 12.6,107.8 z" class="st12" id="XMLID_465_" /></g><g + inkscape:groupmode="layer" id="Leg_Normal"><path style="fill:#f6e0e8" inkscape:connector-curvature="0" - d="m 446,413.2 c 0,0 -17.1,47.4 -18.7,71.7 -3.8,60.3 16.3,123.8 38.4,179.8 7.5,61.7 6.2,123.3 8.8,185.4 l 11.5,-0.3 c 2.2,-51.3 34,-103.9 16.3,-161.5 12.8,-54.2 10,-72.4 5,-160.3 -5.4,94.3 16.6,109.1 26.4,153.5 -15.6,58 5.6,110.9 6.4,169 h 16.3 c 0.2,-58.5 15.6,-94.7 7.8,-169 23.8,-69.9 25.5,-131.2 20.7,-194.7 -2,-26 -14.5,-75.6 -14.5,-75.6 l -124.4,2" + d="m 446,413.2 c 0,0 -17.1,47.4 -18.7,71.7 -3.8,60.3 16.3,123.8 38.4,179.8 7.5,61.7 6.2,123.3 8.8,185.4 l 11.5,-0.3 c 2.2,-51.3 34,-103.9 16.3,-161.5 12.8,-54.2 10,-72.4 5,-160.3 -5.4,94.3 16.6,109.1 26.4,153.5 -15.6,58 5.6,110.9 6.4,169 l 16.3,0 c 0.2,-58.5 15.6,-94.7 7.8,-169 23.8,-69.9 25.5,-131.2 20.7,-194.7 -2,-26 -14.5,-75.6 -14.5,-75.6 l -124.4,2" class="st3" id="XMLID_466_" /><path style="fill:#010101" @@ -258,10 +294,11 @@ d="m 513.9,619.8 c -9.8,-40.3 -22.5,-96.7 -18.5,-142.8 -0.8,44.7 9.4,102.1 18.5,142.8 z" class="st12" id="XMLID_467_" /></g><g + inkscape:groupmode="layer" id="Leg_Wide"><path style="fill:#f6e0e8" inkscape:connector-curvature="0" - d="m 445.8,413.1 c 0,0 -26.1,35.9 -27.6,60.3 -3.8,60.3 16.8,135.5 38.9,191.5 7.5,61.7 14.8,123 17.3,185.1 l 11.5,-0.3 c 2.3,-52.9 39.2,-99.2 20.2,-160.8 13.6,-57.7 6.2,-71.9 1,-161 -5.4,94.3 4.4,110.4 14.2,154.8 -15.6,58 17.8,109.6 18.6,167.8 h 16.3 c 0.2,-58.5 16.4,-95.2 8.5,-169.5 23.8,-69.9 46.5,-155.6 41.7,-219 -2,-25.9 -36,-50.6 -36,-50.6 l -124.6,1.7" + d="m 445.8,413.1 c 0,0 -26.1,35.9 -27.6,60.3 -3.8,60.3 16.8,135.5 38.9,191.5 7.5,61.7 14.8,123 17.3,185.1 l 11.5,-0.3 c 2.3,-52.9 39.2,-99.2 20.2,-160.8 13.6,-57.7 6.2,-71.9 1,-161 -5.4,94.3 4.4,110.4 14.2,154.8 -15.6,58 17.8,109.6 18.6,167.8 l 16.3,0 c 0.2,-58.5 16.4,-95.2 8.5,-169.5 23.8,-69.9 46.5,-155.6 41.7,-219 -2,-25.9 -36,-50.6 -36,-50.6 l -124.6,1.7" class="st3" id="XMLID_468_" /><path style="fill:#010101" @@ -284,11 +321,14 @@ d="m 446.3,412.5 c 20,-34.8 104.4,-37.1 124,-1.5 11.9,21.7 1.4,60.5 -22.3,72 -0.8,0.4 -20.2,9.5 -34,1 -9.5,-5.8 -10.3,-16.2 -19.3,-17.5 -6.4,-1 -8.4,3.9 -17.8,5.5 -9.2,1.5 -18.7,-1.3 -24,-5 -14.1,-9.8 -16,-38.2 -6.6,-54.5 z" class="st3" id="Stump_Narrow" /></g><g - id="Leg_Outfit"><g + inkscape:groupmode="layer" + id="Leg_Outfit" + style="display:inline"><g + inkscape:groupmode="layer" id="Leg_Narrow_Latex"><path style="fill:#515351" inkscape:connector-curvature="0" - d="m 445.9,413.1 c 0,0 -10.3,43.4 -10.6,67.8 -0.5,43.2 14.3,129.1 30.4,183.7 7.5,61.7 6.2,123.3 8.8,185.4 l 11.5,-0.3 c 2.2,-51.3 34,-103.9 16.3,-161.5 2.3,-46.1 10,-72.4 5,-160.3 -5.4,94.3 16.6,109.2 26.4,153.6 -15.6,58 5.7,110.8 6.5,168.9 h 16.3 c 0.2,-58.5 15.6,-94.6 7.7,-168.9 12.4,-64.5 12.4,-139.3 11.6,-205.6 -0.3,-26 -5.4,-64.7 -5.4,-64.7 l -124.5,1.9" + d="m 445.9,413.1 c 0,0 -10.3,43.4 -10.6,67.8 -0.5,43.2 14.3,129.1 30.4,183.7 7.5,61.7 6.2,123.3 8.8,185.4 l 11.5,-0.3 c 2.2,-51.3 34,-103.9 16.3,-161.5 2.3,-46.1 10,-72.4 5,-160.3 -5.4,94.3 16.6,109.2 26.4,153.6 -15.6,58 5.7,110.8 6.5,168.9 l 16.3,0 c 0.2,-58.5 15.6,-94.6 7.7,-168.9 12.4,-64.5 12.4,-139.3 11.6,-205.6 -0.3,-26 -5.4,-64.7 -5.4,-64.7 l -124.5,1.9" class="st4" id="XMLID_470_" /><path style="fill:#010101" @@ -296,10 +336,11 @@ d="m 508,588.6 c -9.8,-40.3 -16.6,-61.7 -12.6,-107.8 -0.7,44.5 3.5,67.1 12.6,107.8 z" class="st12" id="XMLID_471_" /></g><g + inkscape:groupmode="layer" id="Leg_Normal_Latex"><path style="fill:#515351" inkscape:connector-curvature="0" - d="m 446,413.2 c 0,0 -17.1,47.4 -18.7,71.7 -3.8,60.3 16.3,123.8 38.4,179.8 7.5,61.7 6.2,123.3 8.8,185.4 l 11.5,-0.3 c 2.2,-51.3 34,-103.9 16.3,-161.5 12.8,-54.2 10,-72.4 5,-160.3 -5.4,94.3 16.6,109.1 26.4,153.5 -15.6,58 5.6,110.9 6.4,169 h 16.3 c 0.2,-58.5 15.6,-94.7 7.8,-169 23.8,-69.9 25.5,-131.2 20.7,-194.7 -2,-26 -14.5,-75.6 -14.5,-75.6 l -124.4,2" + d="m 446,413.2 c 0,0 -17.1,47.4 -18.7,71.7 -3.8,60.3 16.3,123.8 38.4,179.8 7.5,61.7 6.2,123.3 8.8,185.4 l 11.5,-0.3 c 2.2,-51.3 34,-103.9 16.3,-161.5 12.8,-54.2 10,-72.4 5,-160.3 -5.4,94.3 16.6,109.1 26.4,153.5 -15.6,58 5.6,110.9 6.4,169 l 16.3,0 c 0.2,-58.5 15.6,-94.7 7.8,-169 23.8,-69.9 25.5,-131.2 20.7,-194.7 -2,-26 -14.5,-75.6 -14.5,-75.6 l -124.4,2" class="st4" id="XMLID_472_" /><path style="fill:#010101" @@ -307,10 +348,11 @@ d="m 513.9,619.8 c -9.8,-40.3 -22.5,-96.7 -18.5,-142.8 -0.8,44.7 9.4,102.1 18.5,142.8 z" class="st12" id="XMLID_473_" /></g><g + inkscape:groupmode="layer" id="Leg_Wide_Latex"><path style="fill:#515351" inkscape:connector-curvature="0" - d="m 445.8,413.1 c 0,0 -26.1,35.9 -27.6,60.3 -3.8,60.3 16.8,135.5 38.9,191.5 7.5,61.7 14.8,123 17.3,185.1 l 11.5,-0.3 c 2.3,-52.9 39.2,-99.2 20.2,-160.8 13.6,-57.7 6.2,-71.9 1,-161 -5.4,94.3 4.4,110.4 14.2,154.8 -15.6,58 17.8,109.6 18.6,167.8 h 16.3 c 0.2,-58.5 16.4,-95.2 8.5,-169.5 23.8,-69.9 46.5,-155.6 41.7,-219 -2,-25.9 -36,-50.6 -36,-50.6 l -124.6,1.7" + d="m 445.8,413.1 c 0,0 -26.1,35.9 -27.6,60.3 -3.8,60.3 16.8,135.5 38.9,191.5 7.5,61.7 14.8,123 17.3,185.1 l 11.5,-0.3 c 2.3,-52.9 39.2,-99.2 20.2,-160.8 13.6,-57.7 6.2,-71.9 1,-161 -5.4,94.3 4.4,110.4 14.2,154.8 -15.6,58 17.8,109.6 18.6,167.8 l 16.3,0 c 0.2,-58.5 16.4,-95.2 8.5,-169.5 23.8,-69.9 46.5,-155.6 41.7,-219 -2,-25.9 -36,-50.6 -36,-50.6 l -124.6,1.7" class="st4" id="XMLID_474_" /><path style="fill:#010101" @@ -318,7 +360,10 @@ d="M 509.6,630.9 C 499.8,590.6 488.8,530 492.8,483.8 c -0.8,44.7 7.6,106.4 16.8,147.1 z" class="st12" id="XMLID_475_" /></g></g><g - id="Shoes"><g + inkscape:groupmode="layer" + id="Shoes" + style="display:inline"><g + inkscape:groupmode="layer" id="Boot_1_"><path style="fill:#8f8f8e" inkscape:connector-curvature="0" @@ -330,6 +375,7 @@ d="m 469.2,698.7 c 7.9,-1.2 22.7,5.2 38.3,4.4 5.2,41.8 -7.7,77.2 -8.9,88 -1.2,10.8 -3.7,28.4 -9.4,65 0,0 -0.5,5.5 1.4,10 0.8,2 1.4,2.1 2.5,3.8 2.8,4.5 3.8,11.4 3.3,16.5 -0.4,4.2 -1.6,4.2 -3.1,9.3 -1.6,5.6 -1.9,13.8 -2.4,30.1 0,1.5 -0.4,5 -0.4,6.5 -0.4,0.3 -2,0.3 -2.6,0 0.1,-1.2 0.1,-3.5 0.1,-4.9 -0.2,-8.4 1.2,-25.3 -0.3,-26.2 -1,-0.6 -3.7,5.1 -5.8,10.9 -4.2,12.2 -2.3,16.9 -5.6,21.3 -2.8,3.8 -7.2,3.4 -15.9,2.7 -9.2,-0.8 -10.9,-3.8 -11.5,-4.8 -2.1,-4 -2.4,-10.8 -0.5,-13.1 0.7,-0.9 1.2,-0.5 3,-1.1 3.3,-1 5.7,-3.4 6.5,-4.3 2.8,-3.2 3.4,-8.4 3.7,-11.5 1.7,-13.2 3,-15.7 4,-20.9 0,0 0.7,-3.9 1,-8.3 0.4,-4.9 5,-101.2 3.6,-160.4 0,-2 -0.7,-7.1 -1,-13 z" class="st13" id="XMLID_477_" /></g><g + inkscape:groupmode="layer" id="Boot_Latex"><path style="fill:#515251" inkscape:connector-curvature="0" @@ -341,6 +387,7 @@ d="m 469.2,698.7 c 7.9,-1.2 22.7,5.2 38.3,4.4 5.2,41.8 -7.7,77.2 -8.9,88 -1.2,10.8 -3.7,28.4 -9.4,65 0,0 -0.5,5.5 1.4,10 0.8,2 1.4,2.1 2.5,3.8 2.8,4.5 3.8,11.4 3.3,16.5 -0.4,4.2 -1.6,4.2 -3.1,9.3 -1.6,5.6 -1.9,13.8 -2.4,30.1 0,1.5 -0.4,5 -0.4,6.5 -0.4,0.3 -2,0.3 -2.6,0 0.1,-1.2 0.1,-3.5 0.1,-4.9 -0.2,-8.4 1.2,-25.3 -0.3,-26.2 -1,-0.6 -3.7,5.1 -5.8,10.9 -4.2,12.2 -2.3,16.9 -5.6,21.3 -2.8,3.8 -7.2,3.4 -15.9,2.7 -9.2,-0.8 -10.9,-3.8 -11.5,-4.8 -2.1,-4 -2.4,-10.8 -0.5,-13.1 0.7,-0.9 1.2,-0.5 3,-1.1 3.3,-1 5.7,-3.4 6.5,-4.3 2.8,-3.2 3.4,-8.4 3.7,-11.5 1.7,-13.2 3,-15.7 4,-20.9 0,0 0.7,-3.9 1,-8.3 0.4,-4.9 5,-101.2 3.6,-160.4 0,-2 -0.7,-7.1 -1,-13 z" class="st14" id="XMLID_479_" /></g><g + inkscape:groupmode="layer" id="Boot_Wide"><path style="fill:#8f8f8e" inkscape:connector-curvature="0" @@ -352,10 +399,11 @@ d="m 460.7,698.7 c 10.3,-1.2 29.8,5.2 50,4.4 6.8,41.8 -10,77.2 -11.6,88 -1.5,10.8 -4.9,28.4 -12.3,65 0,0 -0.6,5.5 1.9,10 1.1,2 1.9,2.1 3.3,3.8 3.7,4.5 5.1,11.4 4.4,16.5 -0.6,4.2 -2.1,4.2 -4.1,9.3 -2.1,5.6 -2.5,13.8 -3.1,30.1 -0.1,1.5 -0.4,5 -0.6,6.5 -0.6,0.3 -2.7,0.3 -3.4,0 0.1,-1.2 0.1,-3.5 0.1,-4.9 -0.3,-8.4 1.6,-25.3 -0.4,-26.2 -1.2,-0.6 -4.9,5.1 -7.5,10.9 -5.4,12.2 -2.9,16.9 -7.3,21.3 -3.6,3.8 -9.4,3.4 -20.9,2.7 -12,-0.8 -14.4,-3.8 -15,-4.8 -2.8,-4 -3.1,-10.8 -0.7,-13.1 0.9,-0.9 1.6,-0.5 4,-1.1 4.4,-1 7.5,-3.4 8.4,-4.3 3.6,-3.2 4.4,-8.4 4.9,-11.5 2.2,-13.2 3.9,-15.7 5.2,-20.9 0,0 0.9,-3.9 1.3,-8.3 0.4,-4.9 6.5,-101.2 4.7,-160.4 0,-2 -0.9,-7.1 -1.3,-13 z" class="st13" id="XMLID_481_" /></g><g + inkscape:groupmode="layer" id="Pump"><path style="fill:#4f6ab2" inkscape:connector-curvature="0" - d="M 473.7,861.4 H 487 c 3.7,3.2 5.2,18.7 2.6,33.1 -0.4,1.8 -0.4,24.1 -0.4,36.9 l -3.1,0.1 c -0.6,-11.2 1.2,-24.3 -0.9,-36.9 -8.2,7.5 -6.7,40.4 -12.8,39.5 -6,0.1 -8.6,0.2 -12,-0.4 -10.4,-1.9 -13.6,-14 -15,-22.7 3.1,-5.4 4.4,-4.6 10.2,-10 7.1,-12.3 9.6,-22.4 18.1,-39.6 z" + d="m 473.7,861.4 13.3,0 c 3.7,3.2 5.2,18.7 2.6,33.1 -0.4,1.8 -0.4,24.1 -0.4,36.9 l -3.1,0.1 c -0.6,-11.2 1.2,-24.3 -0.9,-36.9 -8.2,7.5 -6.7,40.4 -12.8,39.5 -6,0.1 -8.6,0.2 -12,-0.4 -10.4,-1.9 -13.6,-14 -15,-22.7 3.1,-5.4 4.4,-4.6 10.2,-10 7.1,-12.3 9.6,-22.4 18.1,-39.6 z" class="st15" id="XMLID_482_" /><path style="fill:#f6e0e8" @@ -373,10 +421,11 @@ d="m 525.5,860.8 c 5.9,-4.5 10.8,-2.2 15.6,0.1 4.4,9 8.3,30.6 9.2,52.3 -8.7,-2.2 -19.1,-0.4 -22.8,-0.2 -2.8,-3.6 -2.7,-25.8 -2,-52.2 z" class="st3" id="XMLID_485_" /></g><g + inkscape:groupmode="layer" id="Exterme_Heel_Latex"><path style="fill:#515351" inkscape:connector-curvature="0" - d="m 468.2,917.5 c -1.2,-9.6 -9.4,-40 1.5,-55.6 5.2,-5.3 2,-109.2 2,-109.2 l 33.1,2.2 c 0,0 -18.6,97.5 -17.9,105.9 2.8,0.4 10.7,8.4 11.9,15.9 -2.8,15.5 -3.1,61.9 -3.9,72 h -0.8 c -0.6,-11.2 1.1,-43.9 -1.2,-56.5 -3.4,16.4 -2.8,51.3 -8.4,57.1 -2.5,0.4 -3.2,1.6 -5.4,0.5 -7.8,-16 -10.9,-32.3 -10.9,-32.3 z" + d="m 468.2,917.5 c -1.2,-9.6 -9.4,-40 1.5,-55.6 5.2,-5.3 2,-109.2 2,-109.2 l 33.1,2.2 c 0,0 -18.6,97.5 -17.9,105.9 2.8,0.4 10.7,8.4 11.9,15.9 -2.8,15.5 -3.1,61.9 -3.9,72 l -0.8,0 c -0.6,-11.2 1.1,-43.9 -1.2,-56.5 -3.4,16.4 -2.8,51.3 -8.4,57.1 -2.5,0.4 -3.2,1.6 -5.4,0.5 -7.8,-16 -10.9,-32.3 -10.9,-32.3 z" class="st4" id="XMLID_486_" /><path style="fill:#515351" @@ -384,10 +433,11 @@ d="m 540.6,865.6 c 0.5,-6.7 -11.3,-107.5 -10.7,-108.1 l 35,-1.6 -7.9,104.2 c 4.7,13.7 8.6,42.3 9.2,52.3 2.2,6.8 -2.8,24.1 -9.2,47 -2.4,3 -6.9,2.3 -10.1,0.4 -6.8,-19 -10.7,-40.8 -8.1,-47.6 -0.8,-14.1 0.1,-26.3 1.8,-46.6 z" class="st4" id="XMLID_487_" /></g><g + inkscape:groupmode="layer" id="Exterme_Heel_1_"><path style="fill:#4f6ab2" inkscape:connector-curvature="0" - d="m 468.2,917.5 c -1.2,-9.6 -9.4,-40 1.5,-55.6 5.2,-5.3 2,-109.2 2,-109.2 l 33.1,2.2 c 0,0 -18.6,97.5 -17.9,105.9 2.8,0.4 10.7,8.4 11.9,15.9 -2.8,15.5 -3.1,61.9 -3.9,72 h -0.8 c -0.6,-11.2 1.1,-43.9 -1.2,-56.5 -3.4,16.4 -2.8,51.3 -8.4,57.1 -2.5,0.4 -3.2,1.6 -5.4,0.5 -7.8,-16 -10.9,-32.3 -10.9,-32.3 z" + d="m 468.2,917.5 c -1.2,-9.6 -9.4,-40 1.5,-55.6 5.2,-5.3 2,-109.2 2,-109.2 l 33.1,2.2 c 0,0 -18.6,97.5 -17.9,105.9 2.8,0.4 10.7,8.4 11.9,15.9 -2.8,15.5 -3.1,61.9 -3.9,72 l -0.8,0 c -0.6,-11.2 1.1,-43.9 -1.2,-56.5 -3.4,16.4 -2.8,51.3 -8.4,57.1 -2.5,0.4 -3.2,1.6 -5.4,0.5 -7.8,-16 -10.9,-32.3 -10.9,-32.3 z" class="st15" id="XMLID_488_" /><path style="fill:#4f6ab2" @@ -395,10 +445,11 @@ d="m 540.6,865.6 c 0.5,-6.7 -11.3,-107.5 -10.7,-108.1 l 35,-1.6 -7.9,104.2 c 4.7,13.7 8.6,42.3 9.2,52.3 2.2,6.8 -2.8,24.1 -9.2,47 -2.4,3 -6.9,2.3 -10.1,0.4 -6.8,-19 -10.7,-40.8 -8.1,-47.6 -0.8,-14.1 0.1,-26.3 1.8,-46.6 z" class="st15" id="XMLID_489_" /></g><g + inkscape:groupmode="layer" id="Exterme_Heel_Wide"><path style="fill:#4f6ab2" inkscape:connector-curvature="0" - d="m 468.2,917.5 c -1.2,-9.6 -9.4,-40 1.5,-55.6 5.2,-5.3 -2.7,-109.7 -2.7,-109.7 l 41.3,2 c 0,0 -18.7,98.1 -17.9,106.5 2.8,0.4 10.7,8.4 11.9,15.9 -2.8,15.5 -3.1,61.9 -3.9,72 h -0.8 c -0.6,-11.2 1.1,-43.9 -1.2,-56.5 -3.4,16.4 -2.8,51.3 -8.4,57.1 -2.5,0.4 -3.2,1.6 -5.4,0.5 -8,-15.9 -14.4,-32.2 -14.4,-32.2 z" + d="m 468.2,917.5 c -1.2,-9.6 -9.4,-40 1.5,-55.6 5.2,-5.3 -2.7,-109.7 -2.7,-109.7 l 41.3,2 c 0,0 -18.7,98.1 -17.9,106.5 2.8,0.4 10.7,8.4 11.9,15.9 -2.8,15.5 -3.1,61.9 -3.9,72 l -0.8,0 c -0.6,-11.2 1.1,-43.9 -1.2,-56.5 -3.4,16.4 -2.8,51.3 -8.4,57.1 -2.5,0.4 -3.2,1.6 -5.4,0.5 -8,-15.9 -14.4,-32.2 -14.4,-32.2 z" class="st15" id="XMLID_490_" /><path style="fill:#4f6ab2" @@ -406,6 +457,7 @@ d="M 535.5,865.2 C 536,858.5 521.3,756.1 521.9,755.5 l 43.1,0.5 -8,104.1 c 4.7,13.7 8.6,42.3 9.2,52.3 2.2,6.8 -2.8,24.1 -9.2,47 -2.4,3 -12,1.9 -15.2,-0.1 -6.8,-19 -10.7,-40.8 -8.1,-47.6 -0.8,-14.1 0.1,-26.2 1.8,-46.5 z" class="st15" id="XMLID_491_" /></g><g + inkscape:groupmode="layer" id="Heel_Latex"><path style="fill:#515351" inkscape:connector-curvature="0" @@ -432,6 +484,7 @@ d="m 457.3,918.1 c 0.2,2 3.9,4.4 6.5,3.8 4.1,-0.9 3.5,-8.4 8.2,-22.9 3.5,-10.8 5.7,-16.6 10.8,-22.9 1.7,-2.1 4,-7.1 4,-7.1 0,0 1.4,-14.4 -1.4,-20 -0.1,-0.2 -9.5,-3.1 -9.7,-3.1 -0.9,-0.3 -2.8,18.7 -3.6,20.2 -9.6,17.6 -9.6,20.8 -9.6,20.8 -2.1,5.8 -2.5,7.3 -2.7,8.4 -0.5,2.8 -1.6,8.4 -0.7,14.3 0.2,1.5 0.6,3.5 -0.3,5.7 -0.7,1.3 -1.6,1.7 -1.5,2.8 z" class="st4" id="XMLID_496_" /></g><g + inkscape:groupmode="layer" id="Heel_1_"><path style="fill:#3e65b0" inkscape:connector-curvature="0" @@ -458,6 +511,7 @@ d="m 457.3,918.1 c 0.2,2 3.9,4.4 6.5,3.8 4.1,-0.9 3.5,-8.4 8.2,-22.9 3.5,-10.8 5.7,-16.6 10.8,-22.9 1.7,-2.1 4,-7.1 4,-7.1 0,0 1.4,-14.4 -1.4,-20 -0.1,-0.2 -9.5,-3.1 -9.7,-3.1 -0.9,-0.3 -2.8,18.7 -3.6,20.2 -9.6,17.6 -9.6,20.8 -9.6,20.8 -2.1,5.8 -2.5,7.3 -2.7,8.4 -0.5,2.8 -1.6,8.4 -0.7,14.3 0.2,1.5 0.6,3.5 -0.3,5.7 -0.7,1.3 -1.6,1.7 -1.5,2.8 z" class="st3" id="XMLID_501_" /></g><g + inkscape:groupmode="layer" id="Flat_Latex"><path style="fill:#515351" inkscape:connector-curvature="0" @@ -479,6 +533,7 @@ d="m 541.9,846.6 c -1.1,1.1 -1.6,2.6 -2.5,5.7 -1.1,3.3 -2.5,8.1 -2.4,14.4 0.1,5.1 1.2,4.6 1.6,10.6 0.4,5.5 -0.1,9.9 -1,17.2 -1.2,9.8 -2.1,11.4 -0.9,13.8 2.4,4.4 8.8,4.4 12.1,4.4 5.6,0 10.6,-2 11.7,-6.8 0.3,-1.1 0,-2 -0.2,-3.1 -1.7,-8.2 0,-9.3 -1.3,-18.1 -1.3,-9 -2,-8.5 -1.9,-14.6 0.1,-5.1 2.9,-7.9 0,-17.7 -1.4,-3.2 -2.1,-4.6 -2.8,-5.2 -3.2,-3.4 -9.2,-3.9 -12.4,-0.6 z" class="st4" id="XMLID_505_" /></g><g + inkscape:groupmode="layer" id="Flat_1_"><path style="fill:#f6e0e8" inkscape:connector-curvature="0" @@ -500,7 +555,9 @@ d="m 541.9,846.6 c -1.1,1.1 -1.6,2.6 -2.5,5.7 -1.1,3.3 -2.5,8.1 -2.4,14.4 0.1,5.1 1.2,4.6 1.6,10.6 0.4,5.5 -0.1,9.9 -1,17.2 -1.2,9.8 -2.1,11.4 -0.9,13.8 2.4,4.4 8.8,4.4 12.1,4.4 5.6,0 10.6,-2 11.7,-6.8 0.3,-1.1 0,-2 -0.2,-3.1 -1.7,-8.2 0,-9.3 -1.3,-18.1 -1.3,-9 -2,-8.5 -1.9,-14.6 0.1,-5.1 2.9,-7.9 0,-17.7 -1.4,-3.2 -2.1,-4.6 -2.8,-5.2 -3.2,-3.4 -9.2,-3.9 -12.4,-0.6 z" class="st3" id="XMLID_509_" /></g></g><g - id="Feet"><path + inkscape:groupmode="layer" + id="Feet" + style="display:inline"><path style="fill:#f6e0e8" inkscape:connector-curvature="0" d="m 488.6,863.6 c 0.7,1.8 1.5,1.7 2.9,4.2 0,0 2,3.6 2.2,8.1 0.2,5.3 -3.9,7.6 -9.2,15.1 -8.1,11.6 -6.2,17.3 -12.7,20.7 -2.1,1.2 -5,1.6 -10.8,2.7 -0.5,0.1 -3.3,0.3 -9,0.6 -2.4,0.2 -4.6,0.3 -6.3,-1.3 -0.4,-0.4 -1.3,-1.2 -1.2,-2.2 0.2,-1.6 3.1,-1.9 5.7,-3.1 3.6,-1.8 5.5,-4.9 7.3,-7.6 2.8,-4.4 1.8,-6 5.5,-16.4 1.7,-4.6 1.9,-4.4 3,-8.1 1.6,-5 1.6,-6.8 3.1,-12.3 1.9,-7 3.6,-12.8 5.2,-14.4 4.8,-4.9 10.8,-2.8 12.4,1.2 1.5,2.9 0.1,8.2 1.9,12.8 z" @@ -511,8 +568,12 @@ d="m 531.5,880.7 c 0.4,-6.6 5.7,-12.8 8.5,-30.2 0.6,-4.1 2.8,-4.8 5.2,-6 3.7,-1.7 10.6,-2.7 11,6 0.4,6.1 -0.6,16.4 0,27.2 0.4,6.5 0.2,11.4 2,21.2 1.9,10 2.8,15.1 6,20.7 3.9,6.9 8.1,9.2 7.3,12.1 -0.6,2.4 -4.1,2.9 -9.2,3.7 -4.8,0.7 -9.6,1.4 -15.1,-1.3 -1.4,-0.7 -4,-2 -6.2,-4.7 -5.2,-6.1 -2.2,-13.2 -4.7,-24.4 -3.5,-15.8 -5.4,-14.9 -4.8,-24.3 z" class="st3" id="XMLID_510_" /></g><g - id="Torso"><g - id="Torso_Normal"><path + inkscape:groupmode="layer" + id="Torso" + style="display:inline"><g + inkscape:groupmode="layer" + id="Torso_Normal" + style="display:inline"><path style="fill:#010101" inkscape:connector-curvature="0" d="m 446,413.2 c 18.5,5 17.1,34.5 49.8,54.3 7.3,-16.9 20.1,-24.2 32.6,-34.3 12.4,-10 20,-18 41.9,-21.9 -6.1,-10.8 -8.3,-20.4 -9.1,-26.3 -1.4,-10.3 -0.2,-18.5 0.8,-25.3 1.3,-9.1 3.4,-15.7 5.8,-23 6,-18.8 9.6,-21.7 13.3,-34.8 1.7,-6.1 5.2,-18.4 4,-28.5 -4.3,-37.3 -74.4,-71.5 -103.8,-51.8 -4.3,2.9 -6.8,6.3 -10,10.7 -13.9,19 -13,41.2 -12.3,57.7 0.3,6.4 1.1,15.9 3.7,27.3 -1.3,7.3 -2.8,17.3 -3.7,29.3 -1.3,18.3 -0.1,25.7 -2.7,38.7 -1.6,7.2 -4.4,16.9 -10.3,27.9 z" @@ -523,7 +584,9 @@ d="m 493,208.2 c 0,0 -14,4.3 -24.7,28.3 -10.7,24 -10.5,59.4 -4.4,81 -4.9,22.7 -3,28.6 -5.2,48.7 -1.1,10.1 -5.1,26.4 -12.7,46.9 17.9,5.5 31.8,50.5 49.8,54.3 8.9,-18.2 32.8,-45.5 74.6,-56.2 -9.1,-20.7 -6.7,-34.7 -8,-47.6 -1.6,-15.9 10,-41.9 12.8,-47.9 8.9,-21.9 18.3,-62.5 10.5,-86 -11.7,-21.9 -21.9,-21 -21.9,-21 -32.6,-3.4 -34.9,-14 -30.6,-50.1 l -22.3,1 c 8.4,43.5 -2.8,39.9 -17.9,48.6" class="st3" id="Body_Normal_1_" /></g><g - id="Torso_Hourglass"><path + inkscape:groupmode="layer" + id="Torso_Hourglass" + style="display:inline"><path style="fill:#010101" inkscape:connector-curvature="0" d="m 446,413.2 c 18.5,5 17.1,34.5 49.8,54.3 7.3,-16.9 20.1,-24.2 32.6,-34.3 12.4,-10 20,-18 41.9,-21.9 -7,-14.9 -12.2,-22.2 -15.8,-26.1 -0.9,-1 -3.9,-4.1 -6,-9 0,0 -1.9,-4.4 -2.3,-9 -0.4,-4.8 1.1,-10.5 13.5,-27.3 9,-12.2 10.8,-12.6 14.5,-19.8 3.7,-7.1 5.4,-13.1 6.8,-18.3 2.9,-11 4.7,-22.8 4,-28.5 -4.3,-37.3 -74.4,-71.5 -103.8,-51.8 -4.3,2.9 -6.8,6.3 -10,10.7 -13.9,19 -13,41.2 -12.3,57.7 0.3,6.4 1.1,15.9 3.7,27.3 3.8,16.5 1,28.2 0.8,32.5 -0.2,4.5 -0.7,12.2 -2.3,21 -1.9,9.9 -5.7,25 -15.1,42.5 z" @@ -534,7 +597,9 @@ d="m 492.9,208.2 c 0,0 -14,4.3 -24.7,28.3 -10.7,24 -10.5,59.4 -4.4,81 2.2,23 0.8,29.8 -1.3,49.9 -1.1,10.1 -8.9,25.2 -16.5,45.9 17.9,5.5 31.8,50.5 49.8,54.3 8.9,-18.2 32.8,-45.5 74.6,-56.2 -9.1,-20.7 -23.8,-29.7 -25.1,-42.7 -1.6,-15.9 22.9,-37 30,-52.9 8.9,-21.9 18.3,-62.5 10.5,-86 -11.7,-22 -21.9,-21.1 -21.9,-21.1 -32.7,-3.4 -35,-14 -30.7,-50.1 l -22.3,1 c 8.3,43.5 -2.9,39.9 -18,48.6" class="st3" id="Body_Normal_3_" /></g><g - id="Torso_Unnatural"><path + inkscape:groupmode="layer" + id="Torso_Unnatural" + style="display:inline"><path style="fill:#010101" inkscape:connector-curvature="0" d="m 446,413.2 c 18.5,5 17.1,34.5 49.8,54.3 7.3,-16.9 20.1,-24.2 32.6,-34.3 12.4,-10 20,-18 41.9,-21.9 -6.3,-11.5 -13.2,-19.1 -18.7,-24 -7.7,-7 -15.4,-11.5 -15.7,-19.3 -0.1,-4 1.7,-7.9 2.8,-10.2 2.7,-5.8 6.5,-9.3 8,-10.8 6.4,-6.1 16.1,-16.1 28.6,-29.4 6,-7.3 12.7,-40 12,-57.3 -18.4,-36.5 -83,-56.1 -106.2,-38.7 -1.9,1.5 -4.9,4.6 -7.4,7.9 -11.5,14.7 -13.2,30.7 -14.4,43.1 -0.5,5 -1.6,16.6 0.7,30.3 0.5,3.1 1.3,6.8 2.7,15 1.2,7.2 2.1,13 2.7,17 2,7.7 2.9,14.4 3.3,19.3 0.7,8 1,12.7 -1,18.3 -0.9,2.5 -1.2,2.2 -6,10.3 -0.7,1.2 -4.7,8 -8.7,15.7 -1.9,3.6 -4.3,8.6 -7,14.7 z" @@ -545,7 +610,9 @@ d="m 492.9,208.2 c 0,0 -14,4.3 -24.7,28.3 -10.7,24 -10.5,59.4 -4.4,81 2.2,23 7.6,30.9 5.5,51 -1.1,10.1 -15.7,24.1 -23.4,44.6 17.9,5.5 31.8,50.5 49.8,54.3 8.9,-18.2 32.8,-45.5 74.6,-56.2 -9.1,-20.7 -34,-29.7 -35.4,-42.7 -1.6,-15.9 25.4,-34.2 40.3,-52.9 8.9,-21.9 18.3,-62.5 10.5,-86 -11.7,-22 -21.9,-21.1 -21.9,-21.1 -32.7,-3.3 -35,-14 -30.7,-50 l -22.3,1 c 8.4,43.6 -2.8,40 -17.9,48.7" class="st3" id="Body_Normal_2_" /></g><g + inkscape:groupmode="layer" id="Belly_Piercing_1_"><g + inkscape:groupmode="layer" id="Navel_Hvy_Piercing"><path style="fill:#787878" inkscape:connector-curvature="0" @@ -557,6 +624,7 @@ d="m 482.4,394.9 c -0.5,0 -1,2.4 -0.8,4.4 0.2,1.3 0.6,3 1.2,3 0.4,0 0.7,-1.8 0.8,-3 0,-2.1 -0.7,-4.4 -1.2,-4.4 z" class="st19" id="XMLID_514_" /></g><g + inkscape:groupmode="layer" id="Navel_Piercing"><circle style="fill:#787878" r="1.2" @@ -570,7 +638,10 @@ cx="482.29999" class="st19" id="XMLID_516_" /></g></g></g><g - id="Torso_Outfit_Aft"><g + inkscape:groupmode="layer" + id="Torso_Outfit_Aft" + style="display:inline"><g + inkscape:groupmode="layer" id="Torso_Normal_1_"><path style="fill:#010101" inkscape:connector-curvature="0" @@ -582,6 +653,7 @@ d="m 493,208.3 c 0,0 -14,4.3 -24.7,28.3 -10.7,24 -10.5,59.4 -4.4,81 -5.3,23.9 -3.3,30.9 -5.4,51 -1.1,10.1 -4.8,24.1 -12.4,44.6 16.5,5.3 30.7,47.1 47.7,53.7 0.7,0.3 -25.7,-15.9 -8.8,-37.6 19.9,9 11.3,37.4 11.5,36.9 9.4,-18.2 33.9,-44.3 73.9,-55 -6.8,-16.4 -7.2,-34.6 -7.5,-40.7 -0.8,-16 3.7,-37.3 12.4,-54.8 8.9,-21.9 18.3,-62.5 10.5,-86 -11.7,-22 -21.9,-21.1 -21.9,-21.1 -32.7,-3.3 -35,-14 -30.7,-50 l -22.3,1 c 8.4,43.6 -2.8,40 -17.9,48.7" class="st4" id="Body_Normal_4_" /></g><g + inkscape:groupmode="layer" id="Torso_Hourglass_1_"><path style="fill:#010101" inkscape:connector-curvature="0" @@ -593,6 +665,7 @@ d="m 493,208.3 c 0,0 -14,4.3 -24.7,28.3 -10.7,24 -10.5,59.4 -4.4,81 2.2,23 0.7,29.7 -1.4,49.8 -1.1,10.1 -8.8,25.3 -16.5,45.9 16.5,5.3 30.7,47.1 47.7,53.7 0.7,0.3 -25.7,-15.9 -8.8,-37.6 19.9,9 11.3,37.4 11.5,36.9 9.4,-18.2 33.9,-44.3 73.9,-55 -9.7,-23.8 -24.7,-35.3 -25,-41.4 -0.8,-16 17.6,-31.3 29.9,-54.1 8.9,-21.9 18.3,-62.5 10.5,-86 -11.7,-22 -21.9,-21.1 -21.9,-21.1 -32.7,-3.3 -35,-14 -30.7,-50 l -22.3,1 c 8.5,43.5 -2.7,39.9 -17.8,48.6" class="st4" id="Body_Normal_6_" /></g><g + inkscape:groupmode="layer" id="Torso_Unnatural_2_"><path style="fill:#010101" inkscape:connector-curvature="0" @@ -604,12 +677,53 @@ d="m 493,208.3 c 0,0 -14,4.3 -24.7,28.3 -10.7,24 -10.5,59.4 -4.4,81 2.2,23 7.6,30.9 5.5,51 -1.1,10.1 -15.7,24.1 -23.4,44.6 16.5,5.3 30.7,47.1 47.7,53.7 0.7,0.3 -25.7,-15.9 -8.8,-37.6 19.9,9 11.3,37.4 11.5,36.9 9.4,-18.2 33.9,-44.3 73.9,-55 -9.1,-20.7 -34,-29.7 -35.4,-42.7 -1.6,-15.9 25.4,-34.2 40.3,-52.9 8.9,-21.9 18.3,-62.5 10.5,-86 -11.7,-22 -21.9,-21.1 -21.9,-21.1 -32.7,-3.3 -35,-14 -30.7,-50 l -22.3,1 c 8.5,43.7 -2.7,40.1 -17.8,48.8" class="st4" id="Body_Normal_5_" /></g></g><g - id="Vagina_1_"><path + inkscape:groupmode="layer" + id="Torso_Outfit" + inkscape:label="Torso_Outfit" + style="display:inline"><g + inkscape:groupmode="layer" + id="Torso_Hourglass_straps" + inkscape:label="Torso_Hourglass_straps" + style="display:inline"><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 500.97796,204.16551 c -0.71264,4.69149 3.72511,8.09539 9.22204,11.23449 12.56584,-0.1687 25.13169,-3.25605 37.69753,-9.69857" + id="path9218" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + id="path9222" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="M 495.8,467.5 481.2569,406.4473 486.17212,351.16304 495.411,278.532 510.2,215.4 l 15.22137,48.07436 m 5.95128,26.34968 7.8272,24.69688 -30.43976,38.83902 -27.50319,53.08736 -9.2708,-54.42357 -10.07226,-42.14617 4.83263,-23.98635 M 470.76923,260.17056 510.2,215.4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccc" /><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 463.2324,352.85095 8.7537,-0.82722 14.18602,-0.86069 22.58797,2.1969 37.46362,7.77538" + id="path9224" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 458.74259,381.06877 c 8.25167,2.98798 16.96891,10.16552 22.51431,25.37853 14.56337,-16.56115 48.05529,-16.49869 68.44366,-26.50672" + id="path9226" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + id="path4809" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 586.7861,273.56744 c -16.81934,1.63226 -22.68882,2.21684 -35.75207,1.68052 L 531.37265,289.82404 495.3,278.6 466.74647,285.89121 459.95996,272.95142 470.76923,260.17056 495.3,278.6 l 30.12137,-15.12564 25.61266,11.7736" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" /><path + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 539.19985,314.52092 33.29827,6.51353" + id="path4822" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /></g></g><g + inkscape:groupmode="layer" + id="Vagina_1_" + style="display:inline"><path style="fill:#d76b93" inkscape:connector-curvature="0" d="m 486.1,434.3 c 3,13.5 5.9,25.9 9.3,33 -7.6,-8.5 -10.8,-18.9 -9.3,-33 z" class="st20" id="Vagina" /><g + inkscape:groupmode="layer" id="Pussy_Hvy_Piercing"><path style="fill:#787878" inkscape:connector-curvature="0" @@ -693,6 +807,7 @@ class="st19" transform="matrix(0.9627,-0.2707,0.2707,0.9627,-104.396,151.0398)" id="XMLID_527_" /></g><g + inkscape:groupmode="layer" id="Pussy_Piercing"><path style="fill:#787878" inkscape:connector-curvature="0" @@ -724,6 +839,7 @@ d="m 490.1,458.5 c 0.1,0 0.8,1.2 0.3,2.2 -0.4,0.8 -1.6,1.2 -2.6,0.7 -0.9,-0.5 -1.1,-1.6 -0.7,-2.4 0.4,-1 1.7,-1.2 1.7,-1.2 0.1,0.1 -1.2,0.5 -1.2,1.4 -0.1,0.4 0.2,1.1 0.7,1.3 0.6,0.3 1.3,0.1 1.7,-0.4 0.4,-0.5 0,-1.6 0.1,-1.6 z" class="st19" id="XMLID_533_" /></g><g + inkscape:groupmode="layer" id="Clit_Hvy_piercing"><circle style="fill:#787878" r="1.2" @@ -742,6 +858,7 @@ d="m 484,436.4 c -0.1,-0.1 -3.5,1.9 -3.2,5.1 0.3,2.7 2.9,4.5 5.6,4.4 2.6,-0.2 4.9,-2.4 4.9,-4.9 0,-3.2 -3.6,-5 -3.7,-4.8 -0.1,0.2 2.5,2.1 2.1,4.5 -0.2,1.6 -1.9,3.6 -4.1,3.6 -2,-0.1 -3.4,-1.7 -3.6,-3.2 -0.4,-2.6 2.1,-4.7 2,-4.7 z" class="st19" id="XMLID_536_" /></g><g + inkscape:groupmode="layer" id="Clit_Piercing"><circle style="fill:#787878" r="1.2" @@ -755,6 +872,7 @@ cx="483.60001" class="st19" id="XMLID_538_" /></g><g + inkscape:groupmode="layer" id="Smart_Clit_Piercing"><circle style="fill:#787878" r="1.2" @@ -781,7 +899,10 @@ y="443.10001" x="482.89999" id="XMLID_542_" /></g></g><g - id="Preg_Belly_1_"><g + inkscape:groupmode="layer" + id="Preg_Belly_1_" + style="display:inline"><g + inkscape:groupmode="layer" id="Preg_Belly"><path style="fill:#010101" inkscape:connector-curvature="0" @@ -801,7 +922,9 @@ class="st20" transform="matrix(0.9799,-0.1994,0.1994,0.9799,-69.6424,101.0976)" id="XMLID_545_" /></g><g + inkscape:groupmode="layer" id="Preg_Belly_Piercing"><g + inkscape:groupmode="layer" id="Belly_Piercing"><circle style="fill:#787878" r="1.2" @@ -815,6 +938,7 @@ cx="466.89999" class="st19" id="XMLID_548_" /></g><g + inkscape:groupmode="layer" id="Belly_Hvy_Piercing_2_"><path style="fill:#787878" inkscape:connector-curvature="0" @@ -826,29 +950,37 @@ d="m 467.1,421.1 c -0.5,0 -1,2.4 -0.8,4.4 0.2,1.3 0.6,3 1.2,3 0.4,0 0.7,-1.8 0.8,-3 -0.1,-2 -0.7,-4.4 -1.2,-4.4 z" class="st19" id="XMLID_550_" /></g></g></g><g - id="Chest"><g - id="Boob_0"><g - id="Boob_Large_3_"><path + inkscape:groupmode="layer" + id="Chest" + style="display:inline"><g + inkscape:groupmode="layer" + id="Boob_0" + style="display:inline"><g + inkscape:groupmode="layer" + id="Boob_Large_3_" + style="display:inline"><path style="fill:#f6e0e8" inkscape:connector-curvature="0" - d="m 526.8,215.3 c -14.6,-0.1 -40.4,25.2 -48.5,31.9 -13.9,11.6 -17.9,27.2 -7.6,39.7 6.5,7.9 33.4,6.1 40.3,-8.7 8.5,26.1 38.4,23.5 50.4,7.6 8.7,-11.5 6.5,-31.8 -3.1,-39.1 -12.9,-9.6 -17.4,-31.3 -31.5,-31.4" + d="m 478.3,247.2 c -13.9,11.6 -17.9,27.2 -7.6,39.7 6.5,7.9 33.4,6.1 40.3,-8.7 8.5,26.1 38.4,23.5 50.4,7.6 8.7,-11.5 6.5,-31.8 -3.1,-39.1 -12.9,-9.6 -34,-31.2 -48.1,-31.3 -14.6,-0.1 -23.8,25.1 -31.9,31.8 z" class="st3" - id="XMLID_551_" /></g><g - id="Areola_3_"><path + id="XMLID_551_" + sodipodi:nodetypes="ccccccc" /></g><g + inkscape:groupmode="layer" + id="Areola_3_" + style="display:inline"><path style="fill:#d76b93" inkscape:connector-curvature="0" d="m 467.8,271.4 c 1.3,-0.4 2.9,1.2 3.5,3.5 0.5,2.3 -0.1,4.5 -1.3,4.9 -1.3,0.4 -2.9,-1.2 -3.5,-3.5 -0.8,-2.4 -0.1,-4.5 1.3,-4.9 z" class="st20" - id="XMLID_552_" /><ellipse - style="fill:#d76b93" - ry="4.9000001" - rx="6.0999999" - cy="278.79999" - cx="530.70001" - class="st20" + id="XMLID_552_" /><path transform="matrix(0.06481902,0.9979,-0.9979,0.06481902,774.4482,-268.8443)" - id="XMLID_553_" /></g><g - id="Areola_piercing_3_"><circle + style="fill:#d76b93" + d="m 536.80001,278.79999 a 6.0999999,4.9000001 0 0 1 -6.1,4.9 6.0999999,4.9000001 0 0 1 -6.1,-4.9 6.0999999,4.9000001 0 0 1 6.1,-4.9 6.0999999,4.9000001 0 0 1 6.1,4.9 z" + id="XMLID_553_" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Areola_piercing_3_" + style="display:inline"><circle style="fill:#787878" r="1.1" cy="276.70001" @@ -956,7 +1088,9 @@ class="st19" transform="matrix(-0.9425,0.3341,-0.3341,-0.9425,1009.6696,387.3601)" id="XMLID_569_" /></g><g - id="Boob_hvy_piercing_3_"><path + inkscape:groupmode="layer" + id="Boob_hvy_piercing_3_" + style="display:inline"><path style="fill:#787878" inkscape:connector-curvature="0" d="m 528.1,278.8 c 0.1,0 -0.5,0.7 -0.5,1.7 0,0.9 0.5,2 1.7,2.4 1.4,0.4 2.9,-0.9 3.3,-2 0.4,-1.1 -0.3,-2 -0.2,-2.1 0.2,-0.1 1.1,1.2 0.9,2.4 -0.2,1.4 -1.7,3.1 -3.6,2.8 -1.4,-0.2 -2.8,-1.3 -2.8,-2.8 -0.1,-1.4 1.2,-2.5 1.2,-2.4 z" @@ -1028,7 +1162,10 @@ class="st19" transform="matrix(0.08246086,0.9966,-0.9966,0.08246086,707.4532,-212.5916)" id="XMLID_580_" /></g><g - id="Boob_piercing_3_"><g + inkscape:groupmode="layer" + id="Boob_piercing_3_" + style="display:inline"><g + inkscape:groupmode="layer" id="XMLID_581_"><circle style="fill:#787878" r="1" @@ -1042,6 +1179,7 @@ cx="532.40002" class="st19" id="XMLID_583_" /></g><g + inkscape:groupmode="layer" id="XMLID_584_"><ellipse style="fill:#787878" ry="0.80000001" @@ -1059,8 +1197,12 @@ class="st19" transform="matrix(-0.971,-0.2392,0.2392,-0.971,855.6479,655.2993)" id="XMLID_586_" /></g></g></g><g - id="Boob_1"><g - id="Boob_Large_2_"><path + inkscape:groupmode="layer" + id="Boob_1" + style="display:inline"><g + inkscape:groupmode="layer" + id="Boob_Large_2_" + style="display:inline"><path style="fill:#010101" inkscape:connector-curvature="0" d="M 509.6,219.8 C 495,219.7 466,243.1 458.4,251 c -13.2,14 -7.7,23.4 -3.4,36.3 9.4,5.8 33.8,8.7 40.3,-8.7 5.5,25.7 44.3,23.5 50.4,7.6 7.6,-19 1.2,-31.9 -6.9,-37.9 -12.7,-9.4 -15,-28.4 -29.2,-28.5" @@ -1086,21 +1228,22 @@ d="m 552.2,244.3 c 1.6,3.7 1.4,10.5 -1.5,25.1 0.7,-12.1 3.3,-18.9 1.5,-25.1 z" class="st12" id="XMLID_591_" /></g><g - id="Areola_2_"><path + inkscape:groupmode="layer" + id="Areola_2_" + style="display:inline"><path style="fill:#d76b93" inkscape:connector-curvature="0" d="m 452.2,271.7 c 1.3,-0.4 2.9,1.2 3.5,3.5 0.5,2.3 -0.1,4.5 -1.3,4.9 -1.3,0.4 -2.9,-1.2 -3.5,-3.5 -0.6,-2.3 0,-4.5 1.3,-4.9 z" class="st20" - id="XMLID_592_" /><ellipse - style="fill:#d76b93" - ry="4.9000001" - rx="6.0999999" - cy="279.10001" - cx="515.20001" - class="st20" + id="XMLID_592_" /><path transform="matrix(0.06481902,0.9979,-0.9979,0.06481902,760.2567,-253.1356)" - id="XMLID_593_" /></g><g - id="Areola_piercing_2_"><circle + style="fill:#d76b93" + d="m 521.30001,279.10001 a 6.0999999,4.9000001 0 0 1 -6.1,4.9 6.0999999,4.9000001 0 0 1 -6.1,-4.9 6.0999999,4.9000001 0 0 1 6.1,-4.9 6.0999999,4.9000001 0 0 1 6.1,4.9 z" + id="XMLID_593_" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Areola_piercing_2_" + style="display:inline"><circle style="fill:#787878" r="1.1" cy="276.89999" @@ -1208,7 +1351,9 @@ class="st19" transform="matrix(-0.9425,0.3341,-0.3341,-0.9425,979.7283,392.9969)" id="XMLID_609_" /></g><g - id="Boob_hvy_piercing_2_"><path + inkscape:groupmode="layer" + id="Boob_hvy_piercing_2_" + style="display:inline"><path style="fill:#787878" inkscape:connector-curvature="0" d="m 512.7,279.1 c 0.1,0 -0.5,0.7 -0.5,1.7 0,0.9 0.5,2 1.7,2.4 1.4,0.4 2.9,-0.9 3.3,-2 0.4,-1.1 -0.3,-2 -0.2,-2.1 0.2,-0.1 1.1,1.2 0.9,2.4 -0.2,1.4 -1.7,3.1 -3.6,2.8 -1.4,-0.2 -2.8,-1.3 -2.8,-2.8 -0.2,-1.4 1.1,-2.5 1.2,-2.4 z" @@ -1280,7 +1425,10 @@ class="st19" transform="matrix(0.08246086,0.9966,-0.9966,0.08246086,693.3712,-196.8819)" id="XMLID_620_" /></g><g - id="Boob_piercing_2_"><g + inkscape:groupmode="layer" + id="Boob_piercing_2_" + style="display:inline"><g + inkscape:groupmode="layer" id="XMLID_621_"><circle style="fill:#787878" r="1" @@ -1294,6 +1442,7 @@ cx="516.79999" class="st19" id="XMLID_623_" /></g><g + inkscape:groupmode="layer" id="XMLID_624_"><ellipse style="fill:#787878" ry="0.80000001" @@ -1311,8 +1460,12 @@ class="st19" transform="matrix(-0.971,-0.2392,0.2392,-0.971,825.0893,652.1412)" id="XMLID_626_" /></g></g></g><g - id="Boob_2"><g - id="Boob_Large"><path + inkscape:groupmode="layer" + id="Boob_2" + style="display:inline"><g + inkscape:groupmode="layer" + id="Boob_Large" + style="display:inline"><path style="fill:#010101" inkscape:connector-curvature="0" d="m 508,220.6 c -18,-0.1 -54.2,28.9 -63.4,38.7 -16.4,17.2 -9.6,29 -4.2,45.1 11.7,7.2 41.9,10.8 49.9,-10.8 6.8,31.9 54.9,29.1 62.6,9.5 9.3,-23.6 1.4,-39.5 -8.6,-46.9 -15.7,-11.9 -18.7,-35.5 -36.3,-35.6" @@ -1338,21 +1491,22 @@ d="m 560.9,251 c 2,4.6 1.8,13 -1.9,31.1 0.9,-14.9 4.1,-23.5 1.9,-31.1 z" class="st12" id="XMLID_631_" /></g><g - id="Areola"><path + inkscape:groupmode="layer" + id="Areola" + style="display:inline"><path style="fill:#d76b93" inkscape:connector-curvature="0" d="m 437,285 c 1.7,-0.4 3.6,1.5 4.4,4.4 0.7,2.8 -0.1,5.6 -1.7,6 -1.7,0.4 -3.6,-1.5 -4.4,-4.4 -0.8,-2.9 0,-5.5 1.7,-6 z" class="st20" - id="XMLID_632_" /><ellipse - style="fill:#d76b93" - ry="6" - rx="7.5999999" - cy="294.10001" - cx="515" - class="st20" + id="XMLID_632_" /><path transform="matrix(0.06481902,0.9979,-0.9979,0.06481902,775.0793,-238.9386)" - id="XMLID_633_" /></g><g - id="Areola_piercing"><circle + style="fill:#d76b93" + d="m 522.6,294.10001 a 7.5999999,6 0 0 1 -7.6,6 7.5999999,6 0 0 1 -7.6,-6 7.5999999,6 0 0 1 7.6,-6 7.5999999,6 0 0 1 7.6,6 z" + id="XMLID_633_" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Areola_piercing" + style="display:inline"><circle style="fill:#787878" r="1.3" cy="291.39999" @@ -1460,7 +1614,9 @@ class="st19" transform="matrix(-0.9425,0.3341,-0.3341,-0.9425,956.7655,427.9553)" id="XMLID_649_" /></g><g - id="Boob_hvy_piercing"><path + inkscape:groupmode="layer" + id="Boob_hvy_piercing" + style="display:inline"><path style="fill:#787878" inkscape:connector-curvature="0" d="m 511.9,294.1 c 0.1,0 -0.7,0.9 -0.6,2.1 0,1.1 0.7,2.6 2,2.9 1.8,0.5 3.6,-1.1 4.1,-2.5 0.4,-1.3 -0.4,-2.6 -0.2,-2.7 0.2,-0.1 1.3,1.4 1.2,3 -0.2,1.8 -2.1,3.8 -4.4,3.6 -1.8,-0.2 -3.5,-1.7 -3.6,-3.5 -0.1,-1.7 1.4,-3 1.5,-2.9 z" @@ -1532,7 +1688,10 @@ class="st19" transform="matrix(0.08246086,0.9966,-0.9966,0.08246086,694.4183,-168.4039)" id="XMLID_660_" /></g><g - id="Boob_piercing"><g + inkscape:groupmode="layer" + id="Boob_piercing" + style="display:inline"><g + inkscape:groupmode="layer" id="XMLID_661_"><circle style="fill:#787878" r="1.2" @@ -1546,6 +1705,7 @@ cx="517.09998" class="st19" id="XMLID_663_" /></g><g + inkscape:groupmode="layer" id="XMLID_664_"><ellipse style="fill:#787878" ry="1" @@ -1563,8 +1723,12 @@ class="st19" transform="matrix(-0.971,-0.2392,0.2392,-0.971,791.3661,676.6553)" id="XMLID_666_" /></g></g></g><g - id="Boob_3"><g - id="Boob_Large_4_"><path + inkscape:groupmode="layer" + id="Boob_3" + style="display:inline"><g + inkscape:groupmode="layer" + id="Boob_Large_4_" + style="display:inline"><path style="fill:#010101" inkscape:connector-curvature="0" d="m 510,218.5 c -21.8,-0.1 -65.4,34.8 -76.6,46.7 -19.7,20.8 -11.6,34.9 -5,54.4 14.1,8.7 50.6,13 60.2,-13.1 8.3,38.5 66.2,35 75.4,11.5 11.3,-28.5 1.7,-47.7 -10.4,-56.6 -18.8,-14.3 -22.4,-42.8 -43.6,-42.9" @@ -1590,21 +1754,22 @@ d="m 573.8,255.1 c 2.4,5.6 2.1,15.6 -2.2,37.5 1,-18 4.9,-28.3 2.2,-37.5 z" class="st12" id="XMLID_671_" /></g><g - id="Areola_4_"><path + inkscape:groupmode="layer" + id="Areola_4_" + style="display:inline"><path style="fill:#d76b93" inkscape:connector-curvature="0" d="m 424.2,296.1 c 2,-0.5 4.4,1.9 5.2,5.2 0.9,3.5 -0.1,6.8 -2,7.3 -2,0.5 -4.4,-1.9 -5.2,-5.2 -1,-3.5 0,-6.7 2,-7.3 z" class="st20" - id="XMLID_672_" /><ellipse - style="fill:#d76b93" - ry="7.3000002" - rx="9.1999998" - cy="307.10001" - cx="518.40002" - class="st20" + id="XMLID_672_" /><path transform="matrix(0.06481902,0.9979,-0.9979,0.06481902,791.2404,-230.0869)" - id="XMLID_673_" /></g><g - id="Areola_piercing_4_"><circle + style="fill:#d76b93" + d="m 527.60002,307.10001 a 9.1999998,7.3000002 0 0 1 -9.2,7.3 9.1999998,7.3000002 0 0 1 -9.2,-7.3 9.1999998,7.3000002 0 0 1 9.2,-7.3 9.1999998,7.3000002 0 0 1 9.2,7.3 z" + id="XMLID_673_" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Areola_piercing_4_" + style="display:inline"><circle style="fill:#787878" r="1.6" cy="304" @@ -1712,7 +1877,9 @@ class="st19" transform="matrix(-0.9425,0.3341,-0.3341,-0.9425,938.5138,458.1071)" id="XMLID_689_" /></g><g - id="Boob_hvy_piercing_4_"><path + inkscape:groupmode="layer" + id="Boob_hvy_piercing_4_" + style="display:inline"><path style="fill:#787878" inkscape:connector-curvature="0" d="m 514.6,307.2 c 0.1,0 -0.9,1.1 -0.7,2.6 0,1.2 0.9,3.1 2.5,3.6 2.1,0.6 4.4,-1.2 4.9,-3 0.5,-1.6 -0.4,-3.1 -0.2,-3.2 0.2,-0.1 1.6,1.7 1.4,3.6 -0.2,2.1 -2.6,4.6 -5.3,4.3 -2.1,-0.2 -4.2,-2 -4.3,-4.2 -0.1,-2.2 1.6,-3.8 1.7,-3.7 z" @@ -1784,8 +1951,12 @@ class="st19" transform="matrix(0.08246086,0.9966,-0.9966,0.08246086,695.8627,-144.3055)" id="XMLID_700_" /></g><g - id="Boob_piercing_4_"><g - id="XMLID_701_"><circle + inkscape:groupmode="layer" + id="Boob_piercing_4_" + style="display:inline"><g + inkscape:groupmode="layer" + id="XMLID_701_" + style="display:none"><circle style="fill:#787878" r="1.5" cy="307.10001" @@ -1798,7 +1969,9 @@ cx="520.90002" class="st19" id="XMLID_703_" /></g><g - id="XMLID_704_"><ellipse + inkscape:groupmode="layer" + id="XMLID_704_" + style="display:none"><ellipse style="fill:#787878" ry="1.2" rx="1" @@ -1815,8 +1988,12 @@ class="st19" transform="matrix(-0.971,-0.2392,0.2392,-0.971,763.2371,697.7639)" id="XMLID_706_" /></g></g></g><g - id="Boob_4"><g - id="Boob_Large_5_"><path + inkscape:groupmode="layer" + id="Boob_4" + style="display:inline"><g + inkscape:groupmode="layer" + id="Boob_Large_5_" + style="display:inline"><path style="fill:#010101" inkscape:connector-curvature="0" d="m 506.5,222.3 c -28.4,-0.2 -85.3,45.5 -100,61 -25.7,27.2 -15,45.6 -6.5,70.9 18.5,11.4 66,16.9 78.6,-17.1 10.8,50.2 86.5,45.8 98.5,14.9 14.7,-37.2 2.2,-62.3 -13.6,-73.8 -24.6,-18.5 -29.2,-55.7 -57,-55.9" @@ -1842,21 +2019,22 @@ d="m 566.6,240.2 c 5.3,5.8 9.6,18.2 14,47 -6.7,-22.5 -6.6,-36.8 -14,-47 z" class="st12" id="XMLID_711_" /></g><g - id="Areola_5_"><path + inkscape:groupmode="layer" + id="Areola_5_" + style="display:inline"><path style="fill:#d76b93" inkscape:connector-curvature="0" d="m 394.6,323.8 c 2.7,-0.7 5.8,2.4 6.8,6.8 1.2,4.4 -0.2,8.8 -2.7,9.5 -2.7,0.7 -5.8,-2.4 -6.8,-6.8 -1.2,-4.6 0.1,-8.9 2.7,-9.5 z" class="st20" - id="XMLID_712_" /><ellipse - style="fill:#d76b93" - ry="9.5" - rx="11.9" - cy="338" - cx="517.40002" - class="st20" + id="XMLID_712_" /><path transform="matrix(0.06481902,0.9979,-0.9979,0.06481902,821.1389,-200.3058)" - id="XMLID_713_" /></g><g - id="Areola_piercing_5_"><circle + style="fill:#d76b93" + d="m 529.30002,338 a 11.9,9.5 0 0 1 -11.9,9.5 11.9,9.5 0 0 1 -11.9,-9.5 11.9,9.5 0 0 1 11.9,-9.5 11.9,9.5 0 0 1 11.9,9.5 z" + id="XMLID_713_" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Areola_piercing_5_" + style="display:inline"><circle style="fill:#787878" r="2.0999999" cy="333.89999" @@ -1964,7 +2142,9 @@ class="st19" transform="matrix(-0.9425,0.3341,-0.3341,-0.9425,894.9265,529.0276)" id="XMLID_729_" /></g><g - id="Boob_hvy_piercing_5_"><path + inkscape:groupmode="layer" + id="Boob_hvy_piercing_5_" + style="display:inline"><path style="fill:#787878" inkscape:connector-curvature="0" d="m 512.6,338.1 c 0.2,0 -1.2,1.4 -1,3.4 0,1.7 1.2,4.1 3.2,4.6 2.8,0.8 5.8,-1.7 6.4,-3.9 0.7,-2.1 -0.5,-4.1 -0.3,-4.2 0.3,-0.1 2.1,2.2 1.8,4.8 -0.3,2.8 -3.4,6 -7,5.6 -2.8,-0.3 -5.4,-2.7 -5.6,-5.4 0,-3 2.3,-5.1 2.5,-4.9 z" @@ -2034,7 +2214,10 @@ class="st19" transform="matrix(0.08246086,0.9966,-0.9966,0.08246086,699.5681,-87.4572)" id="XMLID_740_" /></g><g - id="Boob_piercing_5_"><g + inkscape:groupmode="layer" + id="Boob_piercing_5_" + style="display:inline"><g + inkscape:groupmode="layer" id="XMLID_741_"><circle style="fill:#787878" r="2" @@ -2048,6 +2231,7 @@ cx="520.79999" class="st19" id="XMLID_743_" /></g><g + inkscape:groupmode="layer" id="XMLID_744_"><ellipse style="fill:#787878" ry="1.5" @@ -2065,8 +2249,12 @@ class="st19" transform="matrix(-0.971,-0.2392,0.2392,-0.971,697.4272,749.1066)" id="XMLID_746_" /></g></g></g><g - id="Boob_5"><g - id="Boob_Large_1_"><path + inkscape:groupmode="layer" + id="Boob_5" + style="display:inline"><g + inkscape:groupmode="layer" + id="Boob_Large_1_" + style="display:inline"><path style="fill:#010101" inkscape:connector-curvature="0" d="m 504.6,225.3 c -38.2,-0.2 -114.7,61.2 -134.4,82 -34.6,36.5 -20.2,61.2 -8.7,95.3 24.8,15.2 88.7,22.8 105.7,-22.8 14.5,67.5 116.2,61.5 132.4,20.1 19.7,-50 -12.6,-93.3 -18.2,-99.3 -28.5,-30.4 -39.6,-75.1 -76.8,-75.3" @@ -2092,21 +2280,21 @@ d="m 541.4,219.6 c 9.6,4.5 21.1,17.9 41.1,51.6 -19.8,-24.7 -26.8,-42.7 -41.1,-51.6 z" class="st12" id="XMLID_751_" /></g><g + inkscape:groupmode="layer" id="Areola_1_"><path style="fill:#d76b93" inkscape:connector-curvature="0" d="m 354.1,361.7 c 3.6,-1 7.7,3.2 9.2,9.2 1.5,6 -0.2,11.8 -3.6,12.8 -3.6,1 -7.7,-3.2 -9.2,-9.2 -1.6,-6.2 0.1,-11.9 3.6,-12.8 z" class="st20" - id="XMLID_752_" /><ellipse - style="fill:#d76b93" - ry="12.8" - rx="16" - cy="380.89999" - cx="519.40002" - class="st20" + id="XMLID_752_" /><path transform="matrix(0.06481902,0.9979,-0.9979,0.06481902,865.7677,-162.0763)" - id="XMLID_753_" /></g><g - id="Areola_piercing_1_"><circle + style="fill:#d76b93" + d="m 535.40002,380.89999 a 16,12.8 0 0 1 -16,12.8 16,12.8 0 0 1 -16,-12.8 16,12.8 0 0 1 16,-12.8 16,12.8 0 0 1 16,12.8 z" + id="XMLID_753_" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Areola_piercing_1_" + style="display:inline"><circle style="fill:#787878" r="2.8" cy="375.29999" @@ -2214,7 +2402,9 @@ class="st19" transform="matrix(-0.9425,0.3341,-0.3341,-0.9425,835.9724,627.3287)" id="XMLID_769_" /></g><g - id="Boob_hvy_piercing_1_"><path + inkscape:groupmode="layer" + id="Boob_hvy_piercing_1_" + style="display:inline"><path style="fill:#787878" inkscape:connector-curvature="0" d="m 512.7,380.9 c 0.2,0 -1.5,1.9 -1.3,4.5 0,2.2 1.5,5.4 4.4,6.2 3.7,1.2 7.7,-2.2 8.6,-5.2 1,-2.8 -0.7,-5.4 -0.4,-5.6 0.3,-0.2 2.8,3 2.5,6.4 -0.4,3.7 -4.5,8.1 -9.4,7.6 -3.7,-0.4 -7.4,-3.6 -7.6,-7.4 -0.1,-3.8 3.1,-6.7 3.2,-6.5 z" @@ -2286,7 +2476,10 @@ class="st19" transform="matrix(0.08246086,0.9966,-0.9966,0.08246086,705.519,-9.3184)" id="XMLID_780_" /></g><g - id="Boob_piercing_1_"><g + inkscape:groupmode="layer" + id="Boob_piercing_1_" + style="display:inline"><g + inkscape:groupmode="layer" id="XMLID_781_"><circle style="fill:#787878" r="2.7" @@ -2300,6 +2493,7 @@ cx="523.90002" class="st19" id="XMLID_783_" /></g><g + inkscape:groupmode="layer" id="XMLID_784_"><ellipse style="fill:#787878" ry="2" @@ -2317,8 +2511,12 @@ class="st19" transform="matrix(-0.971,-0.2392,0.2392,-0.971,607.6005,819.9565)" id="XMLID_786_" /></g></g></g><g - id="Boob_6"><g - id="Boob_Large_6_"><path + inkscape:groupmode="layer" + id="Boob_6" + style="display:inline"><g + inkscape:groupmode="layer" + id="Boob_Large_6_" + style="display:inline"><path style="fill:#010101" inkscape:connector-curvature="0" d="m 501.2,228.8 c -50.3,-0.2 -151.1,80.6 -177,108 -45.5,48.1 -26.6,80.6 -11.5,125.5 32.7,20 116.8,30.1 139.2,-30.1 19.1,89 153.1,81 174.4,26.5 26,-65.9 -16.6,-122.9 -24,-130.9 -37.5,-39.9 -52.1,-98.7 -101.1,-99" @@ -2344,21 +2542,22 @@ d="m 549.6,221.4 c 12.6,6 27.9,23.5 54.1,68 -26,-32.7 -35.2,-56.3 -54.1,-68 z" class="st12" id="XMLID_791_" /></g><g - id="Areola_6_"><path + inkscape:groupmode="layer" + id="Areola_6_" + style="display:inline"><path style="fill:#d76b93" inkscape:connector-curvature="0" d="m 303,408.5 c 4.7,-1.3 10.2,4.2 12.2,12.2 2,8 -0.2,15.6 -4.7,16.9 -4.7,1.3 -10.2,-4.2 -12.2,-12.2 -2.2,-8.2 0,-15.7 4.7,-16.9 z" class="st20" - id="XMLID_792_" /><ellipse - style="fill:#d76b93" - ry="16.9" - rx="21.1" - cy="433.70001" - cx="520.59998" - class="st20" + id="XMLID_792_" /><path transform="matrix(0.06481902,0.9979,-0.9979,0.06481902,919.7263,-113.9278)" - id="XMLID_793_" /></g><g - id="Areola_piercing_6_"><circle + style="fill:#d76b93" + d="m 541.69998,433.70001 a 21.1,16.9 0 0 1 -21.1,16.9 21.1,16.9 0 0 1 -21.1,-16.9 21.1,16.9 0 0 1 21.1,-16.9 21.1,16.9 0 0 1 21.1,16.9 z" + id="XMLID_793_" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Areola_piercing_6_" + style="display:inline"><circle style="fill:#787878" r="3.7" cy="426.39999" @@ -2466,7 +2665,9 @@ class="st19" transform="matrix(-0.9425,0.3341,-0.3341,-0.9425,760.9403,748.9292)" id="XMLID_809_" /></g><g - id="Boob_hvy_piercing_6_"><path + inkscape:groupmode="layer" + id="Boob_hvy_piercing_6_" + style="display:inline"><path style="fill:#787878" inkscape:connector-curvature="0" d="m 511.9,433.8 c 0.2,0 -2,2.5 -1.8,6 0,2.9 2,7.1 5.7,8.2 4.9,1.5 10.2,-2.9 11.4,-6.9 1.3,-3.7 -0.9,-7.1 -0.5,-7.4 0.5,-0.2 3.7,4 3.3,8.4 -0.5,4.9 -6,10.7 -12.4,9.9 -4.9,-0.5 -9.7,-4.7 -9.9,-9.7 -0.2,-5 4,-8.7 4.2,-8.5 z" @@ -2538,7 +2739,10 @@ class="st19" transform="matrix(0.08246086,0.9966,-0.9966,0.08246086,711.6222,88.2673)" id="XMLID_820_" /></g><g - id="Boob_piercing_6_"><g + inkscape:groupmode="layer" + id="Boob_piercing_6_" + style="display:inline"><g + inkscape:groupmode="layer" id="XMLID_821_"><circle style="fill:#787878" r="3.5" @@ -2552,6 +2756,7 @@ cx="526.59998" class="st19" id="XMLID_823_" /></g><g + inkscape:groupmode="layer" id="XMLID_824_"><ellipse style="fill:#787878" ry="2.7" @@ -2569,8 +2774,12 @@ class="st19" transform="matrix(-0.971,-0.2392,0.2392,-0.971,494.4378,907.0223)" id="XMLID_826_" /></g></g></g><g - id="Boob_7"><g - id="Boob_Large_8_"><path + inkscape:groupmode="layer" + id="Boob_7" + style="display:inline"><g + inkscape:groupmode="layer" + id="Boob_Large_8_" + style="display:inline"><path style="fill:#010101" inkscape:connector-curvature="0" d="m 501,232 c -61.3,-0.3 -184,98.2 -215.5,131.6 -55.4,58.6 -32.4,98.2 -14,152.8 C 311.3,540.8 413.7,553 441,479.8 464.2,588.1 627.4,578.4 653.4,512 685,431.8 633.2,362.3 624.2,352.6 578.6,304 560.7,232.3 501,232" @@ -2596,21 +2805,21 @@ d="m 560,222.9 c 15.4,7.3 33.9,28.6 65.9,82.8 C 594.2,266 583,237.2 560,222.9 Z" class="st12" id="XMLID_827_" /></g><g + inkscape:groupmode="layer" id="Areola_7_"><path style="fill:#d76b93" inkscape:connector-curvature="0" d="m 259.7,450.8 c 5.7,-1.6 12.4,5.1 14.8,14.8 2.4,9.7 -0.3,19 -5.7,20.5 -5.7,1.6 -12.4,-5.1 -14.8,-14.8 -2.7,-9.9 0,-19.1 5.7,-20.5 z" class="st20" - id="XMLID_832_" /><ellipse - style="fill:#d76b93" - ry="20.5" - rx="25.700001" - cy="481.5" - cx="524.70001" - class="st20" + id="XMLID_832_" /><path transform="matrix(0.06481902,0.9979,-0.9979,0.06481902,971.2539,-73.2956)" - id="XMLID_833_" /></g><g - id="Areola_piercing_7_"><circle + style="fill:#d76b93" + d="m 550.40001,481.5 a 25.700001,20.5 0 0 1 -25.7,20.5 25.700001,20.5 0 0 1 -25.7,-20.5 25.700001,20.5 0 0 1 25.7,-20.5 25.700001,20.5 0 0 1 25.7,20.5 z" + id="XMLID_833_" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Areola_piercing_7_" + style="display:inline"><circle style="fill:#787878" r="4.5999999" cy="472.60001" @@ -2718,7 +2927,9 @@ class="st19" transform="matrix(-0.9425,0.3341,-0.3341,-0.9425,698.752,857.9261)" id="XMLID_849_" /></g><g - id="Boob_hvy_piercing_7_"><path + inkscape:groupmode="layer" + id="Boob_hvy_piercing_7_" + style="display:inline"><path style="fill:#787878" inkscape:connector-curvature="0" d="m 514.1,481.6 c 0.3,0 -2.4,3 -2.1,7.3 0,3.6 2.4,8.7 7,10 6,1.9 12.4,-3.6 13.8,-8.4 1.6,-4.6 -1.1,-8.7 -0.6,-9 0.6,-0.3 4.6,4.8 4,10.3 -0.6,6 -7.3,13 -15.1,12.1 -6,-0.6 -11.8,-5.7 -12.1,-11.8 -0.3,-6.2 4.8,-10.8 5.1,-10.5 z" @@ -2790,7 +3001,10 @@ class="st19" transform="matrix(0.08246086,0.9966,-0.9966,0.08246086,719.8191,173.6128)" id="XMLID_860_" /></g><g - id="Boob_piercing_7_"><g + inkscape:groupmode="layer" + id="Boob_piercing_7_" + style="display:inline"><g + inkscape:groupmode="layer" id="XMLID_861_"><circle style="fill:#787878" r="4.3000002" @@ -2804,6 +3018,7 @@ cx="532" class="st19" id="XMLID_863_" /></g><g + inkscape:groupmode="layer" id="XMLID_864_"><ellipse style="fill:#787878" ry="3.3" @@ -2821,19 +3036,24 @@ class="st19" transform="matrix(-0.971,-0.2392,0.2392,-0.971,397.8483,986.4601)" id="XMLID_866_" /></g></g></g></g><g - id="Boob_Latex"><g + inkscape:groupmode="layer" + id="Boob_Latex" + style="display:inline"><g + inkscape:groupmode="layer" id="Boob_0_1_"><path style="fill:#515351" inkscape:connector-curvature="0" d="m 526.8,215.3 c -14.6,-0.1 -40.4,25.2 -48.5,31.9 -13.9,11.6 -17.9,27.2 -7.6,39.7 6.5,7.9 33.4,6.1 40.3,-8.7 8.5,26.1 38.4,23.5 50.4,7.6 8.7,-11.5 6.5,-31.8 -3.1,-39.1 -12.9,-9.6 -17.4,-31.3 -31.5,-31.4" class="st4" id="XMLID_946_" /></g><g + inkscape:groupmode="layer" id="Boob_1_2_"><path style="fill:#515351" inkscape:connector-curvature="0" d="m 511.2,215.6 c -14.6,-0.1 -40.4,25.2 -48.5,31.9 -13.9,11.6 -17.9,27.2 -7.6,39.7 6.5,7.9 33.4,6.1 40.3,-8.7 8.5,26.1 38.4,23.5 50.4,7.6 8.7,-11.5 6.5,-31.8 -3.1,-39.1 -12.7,-9.6 -17.2,-31.4 -31.5,-31.4" class="st4" id="XMLID_944_" /></g><g + inkscape:groupmode="layer" id="Boob_2_2_"><path style="fill:#515351" inkscape:connector-curvature="0" @@ -2845,45 +3065,111 @@ d="M 512.6,212.2 C 490.8,212.1 452,250 439.9,260 c -20.8,17.5 -26.9,40.7 -11.5,59.4 9.7,11.8 49.9,9.2 60.2,-13.1 12.8,39.1 57.5,35 75.4,11.5 13.1,-17.1 9.7,-47.6 -4.6,-58.6 -18.8,-14.4 -25.6,-46.9 -46.8,-47" class="st4" id="Boob_3_1_" /><g + inkscape:groupmode="layer" id="Boob_4_2_"><path style="fill:#515351" inkscape:connector-curvature="0" d="m 509.9,214 c -28.4,-0.2 -79.1,49.2 -94.8,62.4 -27.1,22.8 -35.1,53.1 -14.9,77.7 12.6,15.4 65.2,11.9 78.6,-17.1 16.6,51.1 75,45.8 98.5,14.9 17.1,-22.4 12.6,-62.1 -6,-76.4 -24.9,-18.8 -33.8,-61.3 -61.4,-61.5" class="st4" id="XMLID_920_" /></g><g + inkscape:groupmode="layer" id="Boob_5_2_"><path style="fill:#515351" inkscape:connector-curvature="0" d="m 509.1,214.2 c -38.2,-0.2 -106.3,66.2 -127.5,83.9 -36.5,30.7 -47.2,71.5 -20.1,104.4 16.9,20.7 87.6,16 105.7,-22.9 22.4,68.7 100.8,61.5 132.4,20.1 22.9,-30.1 -1.2,-65 -8.1,-102.7 -7.5,-41.2 -45.2,-82.6 -82.4,-82.8" class="st4" id="XMLID_906_" /></g><g + inkscape:groupmode="layer" id="Boob_6_2_"><g + inkscape:groupmode="layer" id="XMLID_919_"><path style="fill:#515351" inkscape:connector-curvature="0" d="m 507.1,214.2 c -50.3,-0.2 -140,87.2 -168,110.5 -48.1,40.4 -62.2,94.2 -26.5,137.5 22.4,27.3 115.5,21.1 139.4,-30.2 29.5,90.5 132.7,81 174.4,26.5 30.2,-39.7 -1.6,-85.7 -10.7,-135.3 -9.9,-54.2 -59.5,-108.8 -108.6,-109" class="st4" id="XMLID_921_" /></g><g + inkscape:groupmode="layer" id="XMLID_908_"><path style="fill:#515351" inkscape:connector-curvature="0" d="m 507.1,214.2 c -50.3,-0.2 -140,87.2 -168,110.5 -48.1,40.4 -62.2,94.2 -26.5,137.5 22.4,27.3 115.5,21.1 139.4,-30.2 29.5,90.5 132.7,81 174.4,26.5 30.2,-39.7 -1.6,-85.7 -10.7,-135.3 -9.9,-54.2 -59.5,-108.8 -108.6,-109" class="st4" id="XMLID_909_" /></g></g><g + inkscape:groupmode="layer" id="Boob_7_1_"><g + inkscape:groupmode="layer" id="XMLID_924_"><path style="fill:#515351" inkscape:connector-curvature="0" d="M 508.3,214.2 C 447,213.9 337.8,320.4 303.8,348.8 245.2,398 228.1,463.5 271.6,516.3 c 27.1,33.2 140.5,25.7 169.6,-36.8 35.9,110.2 161.6,98.6 212.4,32.2 36.8,-48.3 -2,-104.3 -13,-164.8 C 628.4,280.9 568,214.5 508.3,214.2" class="st4" id="XMLID_925_" /></g><g + inkscape:groupmode="layer" id="XMLID_922_"><path style="fill:#515351" inkscape:connector-curvature="0" d="M 508.3,214.2 C 447,213.9 337.8,320.4 303.8,348.8 245.2,398 228.1,463.5 271.6,516.3 c 27.1,33.2 140.5,25.7 169.6,-36.8 35.9,110.2 161.6,98.6 212.4,32.2 36.8,-48.3 -2,-104.3 -13,-164.8 C 628.4,280.9 568,214.5 508.3,214.2" class="st4" id="XMLID_923_" /></g></g></g><g - id="Clavicle"><path + inkscape:groupmode="layer" + id="Chest_Outfit" + inkscape:label="Chest_Outfit" + style="display:inline"><g + inkscape:groupmode="layer" + id="Boob_2_straps" + inkscape:label="Boob_2_straps" + style="display:inline"><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 510.2,215.4 c -17.19712,24.81244 -69.92394,37.12918 -72.63365,69.14594" + id="path7375" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 515.7378,286.27032 C 519.6138,259.22032 510.165,241.202 510.2,215.4" + id="path7377" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 514.05917,301.66813 c -0.634,6.678 6.32316,14.44794 9.38983,16.10687" + id="path7381" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 507.58865,293.98112 C 499.87767,294.06848 497.51574,293.71892 490.3,293.6" + id="path7385" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 441.52165,290.46212 c 13.09,1.606 35.51235,4.74088 48.87835,3.03788" + id="path7387" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 510.2,215.4 c -11.78493,21.53194 -18.62702,48.95893 -19.731,78.301" + id="path4840" /><path + style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none" + inkscape:connector-curvature="0" + d="m 437.15035,284.73606 c 2.0422,-0.3446 3.74092,2.62993 4.09824,4.66994 0.38247,2.18359 -0.24149,5.81825 -2.42659,6.192 -2.08027,0.35582 -3.79527,-2.70955 -4.13812,-4.792 -0.35479,-2.15496 0.31294,-5.70656 2.46647,-6.06994 z" + class="st20" + id="path7391" + sodipodi:nodetypes="ccccc" /><path + style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none" + d="m 515.2283,301.48099 c -3.28587,0.2164 -6.73211,-3.73639 -6.94851,-7.02226 -0.21427,-3.25353 2.6553,-7.58112 5.90883,-7.79539 3.28587,-0.2164 6.73212,3.73638 6.94852,7.02225 0.21427,3.25354 -2.6553,7.58113 -5.90884,7.7954 z" + id="path7393" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /><path + id="path9222-3" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 510.2,215.4 c 4.41044,24.46827 53.41961,39.81307 49.486,63.586 -2.19888,19.06478 -9.13538,38.01296 -36.45069,38.95516 l -61.32147,-8.0636 C 449.54348,309.1312 439.223,302.392 438.613,295.601" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 521.39035,294.70259 C 534.50935,294.60359 551.681,284.278 559.686,278.986" + id="path4826" /></g></g><g + inkscape:groupmode="layer" + id="Clavicle" + style="display:inline"><path style="fill:#010101" inkscape:connector-curvature="0" d="m 521.3,220.4 c 3,-2.7 20.4,-6.8 35.2,-9 -11.6,3.4 -30,5.4 -35.2,9 z" @@ -2894,7 +3180,10 @@ d="m 511.3,220.1 c -2.2,-2.8 -7.6,-5.5 -20.3,-9.3 9.8,4.4 16.3,5.3 20.3,9.3 z" class="st12" id="XMLID_546_" /></g><g - id="Penis"><g + inkscape:groupmode="layer" + id="Penis" + style="display:inline"><g + inkscape:groupmode="layer" id="Ball_4"><path style="fill:#010101" inkscape:connector-curvature="0" @@ -2906,6 +3195,7 @@ d="m 441.1,472.7 c -0.3,5.7 2,12.8 7.1,16.5 5.6,4.1 9.8,0.5 21.8,3.5 9.4,2.4 9.1,5.3 16.5,6.5 1.7,0.3 15.7,2.3 24.2,-6.5 6.2,-6.3 6,-15.1 5.9,-28.3 -0.2,-9.7 -2.1,-16.3 -3.5,-19.9 -2.4,-6.6 -3.9,-10.4 -7.7,-13 -8.3,-5.4 -20.9,0.6 -27.1,3.5 -7,3.3 -10.9,7 -18.9,14.1 -11.8,10.9 -17.8,16.3 -18.3,23.6 z" class="st3" id="XMLID_869_" /></g><g + inkscape:groupmode="layer" id="Ball_3_1_"><path style="fill:#010101" inkscape:connector-curvature="0" @@ -2917,6 +3207,7 @@ d="m 449.9,462.5 c -0.2,4.4 1.5,9.9 5.4,12.6 4.3,3.1 7.5,0.3 16.7,2.7 7.2,1.9 7,4.1 12.6,5 1.3,0.2 12.1,1.7 18.5,-5 4.8,-4.9 4.6,-11.6 4.5,-21.7 -0.1,-7.4 -1.6,-12.5 -2.7,-15.3 -1.9,-5.1 -3,-8 -5.9,-10 -6.4,-4.2 -16,0.5 -20.7,2.7 -5.3,2.5 -8.3,5.3 -14.5,10.8 -8.9,8.5 -13.5,12.7 -13.9,18.2 z" class="st3" id="XMLID_871_" /></g><g + inkscape:groupmode="layer" id="Ball_2_2_"><path style="fill:#010101" inkscape:connector-curvature="0" @@ -2928,6 +3219,7 @@ d="m 456.7,454.8 c -0.2,3.4 1.2,7.6 4.2,9.7 3.3,2.4 5.8,0.3 12.8,2 5.5,1.4 5.3,3.1 9.7,3.8 1,0.2 9.2,1.3 14.2,-3.8 3.6,-3.7 3.6,-8.9 3.5,-16.6 -0.1,-5.7 -1.2,-9.6 -2,-11.7 -1.4,-3.9 -2.3,-6.1 -4.5,-7.6 -4.9,-3.2 -12.3,0.4 -15.9,2 -4.1,2 -6.4,4.1 -11.1,8.3 -7.1,6.4 -10.7,9.6 -10.9,13.9 z" class="st3" id="XMLID_873_" /></g><g + inkscape:groupmode="layer" id="Ball_1"><path style="fill:#010101" inkscape:connector-curvature="0" @@ -2939,6 +3231,7 @@ d="m 463.7,449.5 c -0.2,2.1 0.7,4.7 2.6,6.1 2.1,1.5 3.6,0.2 8.1,1.3 3.5,0.9 3.4,2 6.1,2.4 0.6,0.1 5.8,0.8 8.9,-2.4 2.3,-2.4 2.2,-5.6 2.1,-10.5 -0.1,-3.6 -0.8,-6 -1.3,-7.4 -0.9,-2.5 -1.4,-3.9 -2.8,-4.8 -3.1,-2 -7.7,0.2 -10,1.3 -2.6,1.2 -4,2.6 -6.9,5.2 -4.4,4 -6.6,6.1 -6.8,8.8 z" class="st3" id="XMLID_875_" /></g><g + inkscape:groupmode="layer" id="Ball_0"><path style="fill:#010101" inkscape:connector-curvature="0" @@ -2950,6 +3243,7 @@ d="m 472.9,444.7 c -0.1,1.2 0.4,2.7 1.5,3.5 1.2,0.9 2,0.1 4.5,0.7 2,0.5 1.9,1.2 3.5,1.3 0.4,0.1 3.3,0.4 5.1,-1.3 1.3,-1.3 1.2,-3.2 1.2,-5.9 0,-2 -0.4,-3.4 -0.7,-4.2 -0.5,-1.4 -0.8,-2.2 -1.6,-2.7 -1.7,-1.2 -4.4,0.1 -5.6,0.7 -1.4,0.7 -2.3,1.4 -3.9,2.9 -2.7,2.3 -3.9,3.5 -4,5 z" class="st3" id="XMLID_877_" /></g><g + inkscape:groupmode="layer" id="Penis_6"><path style="fill:#010101" inkscape:connector-curvature="0" @@ -2961,6 +3255,7 @@ d="m 377.4,353.4 c 1.6,1 1.6,3.7 1.6,4.1 0.1,5.1 13,31.1 38.3,53.1 19,16.5 55.9,40.1 68.5,29.6 2.2,-2 3,-4.5 3.5,-6.2 5.6,-18.5 -21.9,-42.4 -30.2,-49.6 -26.6,-23.1 -42.1,-36.5 -48,-40.4 -0.8,-0.5 -3.5,-2.2 -4.1,-5.1 -0.4,-2.2 0.8,-3.4 1,-5.1 0.7,-5.1 -8,-11 -14.3,-13.8 -4.9,-2.1 -15.7,-6.8 -23,-1.6 -11.4,8.3 -4.1,33.7 1.6,34.8 1.4,0.5 3.4,-1 5.1,0.2 z" class="st3" id="XMLID_879_" /></g><g + inkscape:groupmode="layer" id="Penis_5_1_"><path style="fill:#010101" inkscape:connector-curvature="0" @@ -2972,6 +3267,7 @@ d="m 396.4,366.1 c 1.3,0.9 1.3,3 1.3,3.4 0.1,4.2 10.7,25.7 31.6,43.9 15.7,13.6 46.1,33.1 56.5,24.5 1.8,-1.6 2.5,-3.7 2.9,-5.1 4.7,-15.3 -18.1,-35 -24.9,-40.9 -22,-19.1 -34.8,-30.1 -39.6,-33.4 -0.6,-0.4 -2.9,-1.8 -3.4,-4.2 -0.3,-1.8 0.6,-2.8 0.9,-4.2 0.5,-4.2 -6.6,-9.1 -11.8,-11.4 -4,-1.7 -13,-5.6 -19,-1.3 -9.4,6.8 -3.4,27.8 1.3,28.7 1.2,0.3 2.8,-0.9 4.2,0 z" class="st3" id="XMLID_881_" /></g><g + inkscape:groupmode="layer" id="Penis_4_1_"><path style="fill:#010101" inkscape:connector-curvature="0" @@ -2983,6 +3279,7 @@ d="m 413.1,379.4 c 1.1,0.7 1.1,2.5 1.1,2.8 0.1,3.5 8.8,21.1 25.9,36 12.9,11.2 37.9,27.2 46.4,20.1 1.5,-1.3 2,-3 2.4,-4.2 3.8,-12.5 -14.8,-28.7 -20.4,-33.6 -18,-15.6 -28.5,-24.7 -32.5,-27.4 -0.5,-0.4 -2.4,-1.5 -2.8,-3.5 -0.3,-1.5 0.5,-2.3 0.7,-3.5 0.4,-3.5 -5.4,-7.5 -9.7,-9.3 -3.3,-1.4 -10.7,-4.6 -15.6,-1.1 -7.7,5.6 -2.8,22.8 1.1,23.5 0.9,0.4 2.3,-0.6 3.4,0.2 z" class="st3" id="XMLID_883_" /></g><g + inkscape:groupmode="layer" id="Penis_3"><path style="fill:#010101" inkscape:connector-curvature="0" @@ -2994,6 +3291,7 @@ d="m 430.2,392.5 c 0.8,0.6 0.8,2 0.8,2.1 0.1,2.7 6.8,16.4 20.3,28.1 10.1,8.8 29.6,21.2 36.2,15.6 1.2,-1 1.6,-2.3 1.9,-3.2 3,-9.8 -11.6,-22.4 -15.9,-26.2 -14,-12.2 -22.2,-19.3 -25.4,-21.3 -0.4,-0.3 -1.9,-1.2 -2.1,-2.7 -0.2,-1.2 0.4,-1.8 0.5,-2.7 0.4,-2.8 -4.3,-5.9 -7.6,-7.3 -2.6,-1.1 -8.3,-3.6 -12.2,-0.8 -6,4.4 -2.1,17.9 0.8,18.4 0.8,0.1 1.9,-0.7 2.7,0 z" class="st3" id="XMLID_885_" /></g><g + inkscape:groupmode="layer" id="Penis_2"><path style="fill:#010101" inkscape:connector-curvature="0" @@ -3005,6 +3303,7 @@ d="m 446.5,406.1 c 0.6,0.4 0.5,1.3 0.5,1.5 0,1.9 4.9,11.6 14.3,19.9 7.1,6.2 21,15 25.6,11.1 0.9,-0.7 1.2,-1.7 1.3,-2.3 2.1,-6.9 -8.2,-15.9 -11.3,-18.6 -10,-8.6 -15.7,-13.7 -17.9,-15.1 -0.3,-0.2 -1.3,-0.8 -1.5,-2 -0.2,-0.8 0.3,-1.2 0.4,-2 0.3,-2 -3,-4.2 -5.3,-5.2 -1.8,-0.8 -5.9,-2.6 -8.6,-0.5 -4.3,3.1 -1.5,12.6 0.5,13 0.5,0.3 1.3,-0.2 2,0.2 z" class="st3" id="XMLID_887_" /></g><g + inkscape:groupmode="layer" id="Penis_1"><path style="fill:#010101" inkscape:connector-curvature="0" @@ -3016,6 +3315,7 @@ d="m 462.5,418.6 c 0.4,0.3 0.4,0.9 0.4,1 0,1.2 3,7.3 9,12.4 4.4,3.9 13.1,9.3 16,6.9 0.5,-0.4 0.7,-1.1 0.8,-1.4 1.3,-4.3 -5.1,-9.9 -7,-11.6 -6.2,-5.4 -9.9,-8.5 -11.2,-9.4 -0.2,-0.1 -0.8,-0.5 -1,-1.2 -0.1,-0.5 0.2,-0.8 0.3,-1.2 0.2,-1.2 -1.9,-2.6 -3.4,-3.2 -1.2,-0.4 -3.6,-1.6 -5.3,-0.4 -2.7,2 -1,7.9 0.4,8.1 0.2,0.1 0.7,-0.3 1,0 z" class="st3" id="XMLID_889_" /></g><g + inkscape:groupmode="layer" id="Penis_0"><path style="fill:#010101" inkscape:connector-curvature="0" @@ -3027,7 +3327,9 @@ d="m 473,426.5 c 0.2,0.2 0.2,0.4 0.2,0.5 0,0.6 1.6,3.9 4.8,6.6 2.4,2 6.9,5 8.5,3.6 0.3,-0.3 0.4,-0.5 0.4,-0.8 0.7,-2.3 -2.8,-5.2 -3.7,-6.1 -3.3,-2.8 -5.2,-4.5 -6,-5 -0.1,-0.1 -0.4,-0.3 -0.5,-0.6 -0.1,-0.3 0.1,-0.4 0.1,-0.6 0.1,-0.6 -1,-1.3 -1.8,-1.7 -0.6,-0.3 -2,-0.8 -2.8,-0.2 -1.4,1.1 -0.5,4.2 0.2,4.4 0.2,0 0.4,-0.2 0.6,-0.1 z" class="st3" id="XMLID_891_" /></g></g><g - id="Head"><path + inkscape:groupmode="layer" + id="Head" + style="display:inline"><path style="fill:#010101" inkscape:connector-curvature="0" d="m 543.2,161.2 c 6,-14.4 8.4,-24.7 10.6,-40.1 4.5,-31.3 -16.1,-52.4 -42.5,-43.9 -38.8,10 -27.5,43.7 -26.2,53.7 -6.7,16.4 6,48.7 20.8,53.5 14.6,-1.9 28.9,-5.9 37.3,-23.2 z" @@ -3037,13 +3339,18 @@ inkscape:connector-curvature="0" d="m 543.4,161.2 c 6,-14.4 8.4,-24.7 10.6,-40.1 4.5,-31.3 -16.1,-52.4 -42.5,-43.9 -34.2,11 -29.4,33.1 -26.2,53.7 -6.1,16.8 6.9,48.7 20.7,53.1 10.1,-1.7 28.3,-4.2 37.4,-22.8 z" class="st3" - id="Head_1_" /></g><path - style="fill:#515351" - inkscape:connector-curvature="0" - d="m 543.4,161.2 c 6,-14.4 8.4,-24.7 10.6,-40.1 4.5,-31.3 -16.1,-52.4 -42.5,-43.9 -34.2,11 -29.4,33.1 -26.2,53.7 -6.1,16.8 6.9,48.7 20.7,53.1 10.1,-1.7 28.3,-4.2 37.4,-22.8 z" - class="st4" - id="Head_Latex" /><g - id="Gag"><path + id="Head_1_" /></g><g + id="Head_Latex" + inkscape:groupmode="layer" + inkscape:label="Head_Latex" + style="display:inline"><path + class="st4" + d="m 543.4,161.2 c 6,-14.4 8.4,-24.7 10.6,-40.1 4.5,-31.3 -16.1,-52.4 -42.5,-43.9 -34.2,11 -29.4,33.1 -26.2,53.7 -6.1,16.8 6.9,48.7 20.7,53.1 10.1,-1.7 28.3,-4.2 37.4,-22.8 z" + inkscape:connector-curvature="0" + style="fill:#515351" /></g><g + inkscape:groupmode="layer" + id="Gag" + style="display:inline"><path style="opacity:0.23999999;fill:#bf2126;enable-background:new" inkscape:connector-curvature="0" d="m 498,167.3 c 2.6,3.9 7.6,0.9 14,5.1 7.8,5 8.1,14 13.2,14 1.7,0 3.5,-1 4.3,-2.4 4.5,-7.7 -18.1,-34.7 -27.5,-31.1 -4.4,1.7 -6.7,10.2 -4,14.4 z" @@ -3059,13 +3366,18 @@ cy="161.10001" cx="502.79999" class="st24" - id="XMLID_893_" /></g><path - style="fill:#010101" - inkscape:connector-curvature="0" - d="m 485.9,131 c -0.2,1 -0.3,3 0.9,4.5 1.2,1.4 3.1,1.6 7.1,1.9 4.4,0.3 6.7,0.4 8.1,-0.8 1.8,-1.5 2,-4.1 2,-5.5 0.9,0 1.7,0 2.6,-0.1 1,0 1.9,0 2.8,0 -0.3,1.5 -0.6,4.5 1.2,6.6 0.8,0.9 2.2,2 11.3,1.7 10.9,-0.3 12.4,-1.8 12.9,-2.7 1.1,-1.8 0.7,-4 0.3,-5.5 5.7,0 11.4,-0.1 17.1,-0.1 v 2.1 L 536.6,133 c 0.1,1.2 0.1,2.9 -0.9,4.4 -0.6,1 -2.3,2.8 -13.6,2.9 -9.9,0.2 -11.5,-1.2 -12.3,-2.2 -1.4,-1.7 -1.5,-3.9 -1.3,-5.4 -0.9,0 -2.7,0 -3.6,0 -0.1,1.1 -0.4,3 -1.8,4.4 -1.7,1.6 -4.2,1.5 -9.1,1.2 -4.3,-0.3 -6.5,-0.4 -7.7,-2.1 -0.9,-1.2 -0.9,-2.7 -0.8,-3.6 0.1,-0.4 0.2,-0.9 0.4,-1.6 z" - class="st12" - id="Glasses" /><g - id="Hair_Fore_1_"><path + id="XMLID_893_" /></g><g + id="Glasses" + inkscape:groupmode="layer" + inkscape:label="Glasses" + style="display:inline"><path + class="st12" + d="m 485.9,131 c -0.2,1 -0.3,3 0.9,4.5 1.2,1.4 3.1,1.6 7.1,1.9 4.4,0.3 6.7,0.4 8.1,-0.8 1.8,-1.5 2,-4.1 2,-5.5 0.9,0 1.7,0 2.6,-0.1 1,0 1.9,0 2.8,0 -0.3,1.5 -0.6,4.5 1.2,6.6 0.8,0.9 2.2,2 11.3,1.7 10.9,-0.3 12.4,-1.8 12.9,-2.7 1.1,-1.8 0.7,-4 0.3,-5.5 5.7,0 11.4,-0.1 17.1,-0.1 l 0,2.1 -15.6,-0.1 c 0.1,1.2 0.1,2.9 -0.9,4.4 -0.6,1 -2.3,2.8 -13.6,2.9 -9.9,0.2 -11.5,-1.2 -12.3,-2.2 -1.4,-1.7 -1.5,-3.9 -1.3,-5.4 -0.9,0 -2.7,0 -3.6,0 -0.1,1.1 -0.4,3 -1.8,4.4 -1.7,1.6 -4.2,1.5 -9.1,1.2 -4.3,-0.3 -6.5,-0.4 -7.7,-2.1 -0.9,-1.2 -0.9,-2.7 -0.8,-3.6 0.1,-0.4 0.2,-0.9 0.4,-1.6 z" + inkscape:connector-curvature="0" + style="fill:#010101" /></g><g + inkscape:groupmode="layer" + id="Hair_Fore_1_" + style="display:inline"><path style="fill:#f4f1a3" inkscape:connector-curvature="0" d="m 484.6,101.6 c 5.1,7.6 15,14 52.5,7.3 18.7,5.2 2.6,37.9 1.1,61 -1.3,19.3 -7.8,36.4 -18.9,51.5 17.1,-12.2 36.2,-10.4 50.8,-41.2 41.1,-23.4 -1.2,-125.9 -49.9,-115.4 -33,7.1 -33.1,19.4 -35.6,36.8 z"