diff --git a/artTools/README.md b/artTools/README.md new file mode 100644 index 0000000000000000000000000000000000000000..1ae73fb3f9cd4038b1ff95d258ee09cf18f1b2be --- /dev/null +++ b/artTools/README.md @@ -0,0 +1,101 @@ +# How to vector art + +Please read the whole document before starting to work. +Some aspects are not obvious right away. + +Note: This does not actually describe how to be an artist. + +## TL;DR + + killall inkscape + artTools/inkscape_svg_fixup.py artTools/vector_source.svg + artTools/vector_layer_split.py artTools/vector_source.svg tw src/art/vector/layers/ + compile + +## 1. Be an artist + +Make changes to the vector_source.svg. +Inkscape was thoroughly tested. +Adobe Illustrator might work decently, too. + +## 2. Respect the structure + +While editing, keep the Layers in mind. + +* In Inkscape, Layers are special "Inkscape groups". +* In Illustrator, Layers are groups with user-definded IDs. +* All Layers should have an ID that is globally unique + (not just within their subtree). + +* Please use anonymous groups only for the ease of editing. Remove all "helper" groups before finally saving the file. +* Anonymous groups can be used for continous scaling (of e.g. boobs). + +* Every asset that should go into a separate file needs to be in a labelled group + (even if that is a group with only one shape). +* There are some globally available styles defined as CSS classes (e.g. skin, hair). + Use them if your asset should be changed upon display. + Do not set the style directly in the object. + +## 3. Fix the document (Inkscape only) + +Inkscape shows weird behaviour in some regards. +If you use Inkscape, close the document and run + + python3 inkscape_svg_fixup.py vector_source.svg + +before continuing. Open the file in Inkscape and save it again. +You need to make a minor change, as Inkscape will not save a unchanged file +(move the notes back and forth or something). The fixup does not produce +the same linebreaks as Inkscape or Illustrator and git will go mad because +the whole seems to have changed. + +What it does: +* Adobe Illustrator uses group IDs as layer labels. + Inkscape however uses layer labels and a separate, auto-generated group ID. + inkscape_svg_fixup.py overwrites the group ID with the Inkscape layer label + so they are synchronised with Inkscape layer labels. +* Inkscape copies the global style definition into the object *every time* + the object is edited. If an object references a CSS class AND at the same time + has a local style, the local style is removed + so global dynamic styling is possible later on. + +Note: Behaviour of Adobe Illustrator is untested. + +## 4. Split the layers + +Execute + + python3 vector_layer_split.py vector_source.svg tw ../src/art/vector/layers/ + +. This application reads all groups in `vector_source.svg`. +Each group is stored in a separate file in the target directory `/src/art/vector/layers/`. +The group ID sets the file name. Therefore, the group ID **must not** contain spaces or any other weird characters. + +Also consider: +* A group with ID ending in _ is ignored. Use Layers ending in _ to keep overview. +* A group with ID starting with "g" (Inkscape) or "XMLID" (Illustrator) is also ignored. +* Existing files are overwritten **without enquiry**. +* The target directory is not emptied. If a file is no longer needed, you should remove it manually. +* This procedure removes global definitions. This means, SVG filters are currently not supported. + +Available output formats are `svg` and `tw`. +`svg` output exists for debug reasons. +`tw` embeds the SVG data into Twine files, but removes the global style definitions so they can be set during display. + +## 5. Edit the code + +`/src/art/` contains Twine code which shows the assets in the story. +There are many helpful comments in `/src/art/artWidgets.tw`. +The code also generates the previously removed global style definitions on the fly and per display. + +## 6. Compile the story + +Use the provided compile script (Windows batch or shell) for compiling. + +## 7. Advanced usage + +You can define multiple CSS classes to one element, e.g. "skin torso". When procedurally generating CSS, you can then set a global "skin" style, and a different one for "torso". + +You can put variable text into the image using single quotes, e.g. "'+_tattooText+'". The single quotes *break* the quoting in Twine so the content of the Twine variable `_tattooText` is shown upon display. You can even align text on paths. + +An anonymous group can be used for dynamic transformation. However, finding the correct parameters for the affine transformation matrix can be cumbersome. Use any method you see fit. See `src/art/vector/Boob.tw` for one example of the result. diff --git a/artTools/inkscape_svg_fixup.py b/artTools/inkscape_svg_fixup.py new file mode 100644 index 0000000000000000000000000000000000000000..03d9ff3290a3744edcba48e20c8b7595c059710b --- /dev/null +++ b/artTools/inkscape_svg_fixup.py @@ -0,0 +1,73 @@ +#!/usr/bin/env python3 + +''' +Application for "fixing" SVGs edited with Inkscape + +These problems are addressed: + +* Inkscape notoriously copies class styles into the object definitions. +https://bugs.launchpad.net/inkscape/+bug/167937 + +* Inkscape uses labels on layers. Layers are basically named groups. + Inkscape does not sync the group id with the layer label. + +Usage Example: +python3 inkscape_svg_fixup.py vector_source.svg + +Note: +The output of lxml differs greatly from standard SVG indentation. +Please open and save the file in Inkscape before committing. +''' + +import lxml.etree as etree +import sys + +input_file = sys.argv[1] +ns = { + 'svg' : 'http://www.w3.org/2000/svg', + 'inkscape' : 'http://www.inkscape.org/namespaces/inkscape' +} + +tree = etree.parse(input_file) + +# find document global style definition +# mangle it and interpret as python dictionary +style_element = tree.find('./svg:style',namespaces=ns) +style_definitions = style_element.text +pythonic_style_definitions = '{'+style_definitions.\ +replace('\t.','"').replace('{','":"').replace('}','",').\ +replace('/*','#')+'}' +styles = eval(pythonic_style_definitions) + +# go through all SVG elements +for elem in tree.iter(): + if (elem.tag == etree.QName(ns['svg'], 'g')): + # compare inkscape label with group element ID + l = elem.get(etree.QName(ns['inkscape'], 'label')) + if l: + i = elem.get('id') + if (i != l): + print("Overwriting ID %s with Label %s..."%(i, l)) + elem.set('id', l) + + # remove all offending style attributes + s = elem.get('style') + c = elem.get('class') + if (c and s): + s = s.lower() + c = c.split(' ')[0] # regard main style only + cs = '' + if c in styles: + cs = styles[c].strip('; ').lower() + if (c not in styles): + print("Object id %s references unknown style class %s."%(i,c)) + else: + if (cs != s.strip('; ')): + print("Style %s removed from object id %s differed from class %s style %s."%(s,i,c,cs)) + del elem.attrib["style"] + +# store SVG into file (input file is overwritten) +svg = etree.tostring(tree, pretty_print=True) +with open(input_file, 'wb') as f: + f.write('<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n'.encode("utf-8")) + f.write(svg) diff --git a/artTools/vector_clothing_replicator.py b/artTools/vector_clothing_replicator.py new file mode 100644 index 0000000000000000000000000000000000000000..77882ec001027cfce41b831e3e9ba3e8365bc034 --- /dev/null +++ b/artTools/vector_clothing_replicator.py @@ -0,0 +1,159 @@ +#!/usr/bin/env python3 + +''' +Application for procedural content adaption +*THIS IS VERY EXPERIMENTAL* +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 + +Usage: +python3 vector_clothing_replicator.py infile clothing bodypart destinationfile + +Usage Example: +python3 vector_clothing_replicator.py vector_source.svg Straps Boob vector_destination.svg +python3 vector_clothing_replicator.py vector_source.svg Straps Torso vector_destination.svg +''' + +from svg.path import parse_path +import copy +import lxml.etree as etree +import sys + +REFERENCE_PATH_SAMPLES = 200 +EMBED_REPLICATIONS = True # wether to embed all replications into the input file or output separate files + +input_file = sys.argv[1] +clothing = sys.argv[2] +bodypart = sys.argv[3] +output_file_embed = sys.argv[4] + +# TODO: make these configurable +output_file_pattern = '%s_%s_%s.svg' #bodypart, target_id, clothing + +if ('Torso' == bodypart): + xpath_shape = './svg:g[@id="Torso_"]/svg:g[@id="Torso_%s"]/svg:path[@class="skin torso"]/@d' # TODO: formulate more general, independent of style + xpath_outfit_container = '//svg:g[@id="Torso_Outfit_%s_"]'%(clothing) + xpath_outfit = '//svg:g[@id="Torso_Outfit_%s_%s"]'%(clothing,'%s') + target_ids = "Unnatural,Hourglass,Normal".split(",") + reference_id = "Hourglass" +else: + raise RuntimeError("Please specify a bodypart for clothing to replicate.") + +tree = etree.parse(input_file) +ns = {'svg' : 'http://www.w3.org/2000/svg'} + +canvas = copy.deepcopy(tree) +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 = tree.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 = tree.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: + print("This is the source variant. Skipping...") + else: + 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(tree, 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/artTools/vector_layer_split.py b/artTools/vector_layer_split.py new file mode 100644 index 0000000000000000000000000000000000000000..8b17eb5bf62b3505b7860e29df54aabbf2f39860 --- /dev/null +++ b/artTools/vector_layer_split.py @@ -0,0 +1,117 @@ +#!/usr/bin/env python3 + +''' +Application for splitting groups from one SVG file into separate files + +Usage: +python3 vector_layer_split.py infile format outdir + +Usage Example: +python3 vector_layer_split.py vector_source.svg tw ../src/art/vector/layers/ +''' + +# TODO: this should automatically invoke fixup first (as a module, after loading input) + +import lxml.etree as etree +import sys +import os +import copy +import re + +input_file = sys.argv[1] +output_format = sys.argv[2] +output_directory = sys.argv[3] +if not os.path.exists(output_directory): + os.makedirs(output_directory) + +ns = { + 'svg' : 'http://www.w3.org/2000/svg', + 'inkscape' : 'http://www.inkscape.org/namespaces/inkscape', + 'sodipodi':"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd", +} + +tree = etree.parse(input_file) + +# prepare output template +template = copy.deepcopy(tree) +root = template.getroot() + +# remove all svg root attributes except document size +for a in root.attrib: + if (a != "viewBox"): + del root.attrib[a] + +# add placeholder for CSS class (needed for workaround for non HTML 5.1 compliant browser) +if output_format == 'tw': + root.attrib["class"] = "'+_art_display_class+'" + +# remove all content, including metadata +# for twine output, style definitions are removed, too +defs = None +for e in root: + if (e.tag == etree.QName(ns['svg'], 'defs')): + defs = e + if (e.tag == etree.QName(ns['svg'], 'g') or + e.tag == etree.QName(ns['svg'], 'metadata') or + e.tag == etree.QName(ns['svg'], 'defs') or + e.tag == etree.QName(ns['sodipodi'], 'namedview') or + (output_format == 'tw' and e.tag == etree.QName(ns['svg'], 'style')) + ): + root.remove(e) +# template preparation finished + +# prepare regex for later use +regex_xmlns = re.compile(' xmlns[^ ]+',) + +# find all groups +layers = tree.xpath('//svg:g',namespaces=ns) +for layer in layers: + i = layer.get('id') + if ( # disregard non-content groups + i.endswith("_") or # manually suppressed with underscore + i.startswith("XMLID") or # Illustrator generated group + i.startswith("g") # Inkscape generated group + ): + continue + # create new canvas + output = copy.deepcopy(template) + # copy all shapes into template + canvas = output.getroot() + for e in layer: + canvas.append(e) + # represent template as SVG (binary string) + svg = etree.tostring(output, pretty_print=False) + # poor man's conditional defs insertion + # TODO: extract only referenced defs (filters, gradients, ...) + # TODO: detect necessity by traversing the elements. do not stupidly search in the string representation + if ("filter:" in svg.decode('utf-8')): + # it seems there is a filter referenced in the generated SVG, re-insert defs from main document + canvas.insert(0,defs) + # re-generate output + svg = etree.tostring(output, pretty_print=False) + + if (output_format == 'tw'): + # remove unnecessary attributes + # TODO: never generate unnecessary attributes in the first place + svg = svg.decode('utf-8') + svg = regex_xmlns.sub('',svg) + svg = svg.replace(' inkscape:connector-curvature="0"','') # this just saves space + svg = svg.replace('\n','').replace('\r','') # print cannot be multi-line + svg = svg.replace('svg:','') # svg namespace was removed + svg = svg.replace('<g ','<g transform="\'+_art_transform+\'"') # internal groups are used for scaling + svg = svg.encode('utf-8') + + # save SVG string to file + i = layer.get('id') + output_path = os.path.join(output_directory,i+'.'+output_format) + with open(output_path, 'wb') as f: + if (output_format == 'svg'): + # Header for normal SVG (XML) + f.write('<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n'.encode("utf-8")) + f.write(svg) + elif (output_format == 'tw'): + # Header for SVG in Twine file (SugarCube print statement) + f.write((':: Art_Vector_%s [nobr]\n\n'%(i)).encode("utf-8")) + f.write("<<print '<html>".encode("utf-8")) + f.write(svg) + f.write("</html>' >>".encode("utf-8")) diff --git a/artTools/vector_source.svg b/artTools/vector_source.svg new file mode 100644 index 0000000000000000000000000000000000000000..420d5e460ffa51736277d6604c5112c8d2b8acc5 --- /dev/null +++ b/artTools/vector_source.svg @@ -0,0 +1,3580 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + x="0px" + y="0px" + viewBox="0 0 560 1000" + xml:space="preserve" + id="svg4356" + sodipodi:docname="vector_source.svg" + inkscape:version="0.91 r13725" + width="560" + height="1000"><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 /></cc:Work></rdf:RDF></metadata><defs + id="defs4360"><filter + style="color-interpolation-filters:sRGB" + inkscape:label="Filter_Shine_Blur" + id="Filter_Shine_Blur" + width="4" + x="-2" + height="4" + y="-2"><feGaussianBlur + stdDeviation="1.5 1.5" + result="blur" + id="feGaussianBlur4091-3" /></filter></defs><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1280" + inkscape:window-height="952" + id="namedview4358" + showgrid="false" + inkscape:zoom="0.6010408" + inkscape:cx="-172.48322" + inkscape:cy="502.36739" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:current-layer="Original_Canvas_" + inkscape:object-nodes="true" + inkscape:object-paths="true" + inkscape:snap-smooth-nodes="false" + inkscape:snap-object-midpoints="true" + inkscape:snap-global="false" + inkscape:snap-nodes="true" + inkscape:snap-intersection-paths="false" + inkscape:snap-bbox="true" + inkscape:snap-others="false" /><style + type="text/css" + id="style"> + /* please maintain these definitions manually */ + .white{fill:#FFFFFF;} + .skin{fill:#F6E0E8;} + .head{} + .torso{} + .boob{} + .penis{} + .scrotum{} + .areola{fill:#D76B93;} + .labia{fill:#D76B93;} + .hair{fill:#3F403F;} + .shoe{fill:#3E65B0;} + .shoe_shadow{fill:#15406D;} + .smart_piercing{fill:#4DB748;} + .steel_piercing{fill:#787878;} + .steel_chastity{fill:#BABABA;} + .gag{fill:#BF2126;} + .shadow{fill:#010101;} + .glasses{fill:#010101;} +</style><g + inkscape:groupmode="layer" + id="Original_Canvas_" + inkscape:label="Original_Canvas_"><rect + style="display:inline;opacity:0.40400002;fill:#ff0000" + id="rect4823" + width="1000" + height="1000" + x="-220" + y="0" /></g><g + inkscape:groupmode="layer" + id="Arm_" + style="display:inline" + inkscape:label="Arm_"><g + inkscape:groupmode="layer" + id="Arm_Right_High" + style="display:inline" + inkscape:label="Arm_Right_High"><path + inkscape:connector-curvature="0" + d="m 281.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="skin" + id="R_2_" /></g><g + inkscape:groupmode="layer" + id="Arm_Right_Low" + style="display:inline" + inkscape:label="Arm_Right_Low"><path + inkscape:connector-curvature="0" + d="m 266.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="skin" + id="R" /></g><g + inkscape:groupmode="layer" + id="Arm_Right_Mid" + style="display:inline" + inkscape:label="Arm_Right_Mid"><path + inkscape:connector-curvature="0" + d="m 267.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" + class="skin" + id="R_1_" /></g><g + inkscape:groupmode="layer" + id="Arm_Left_High" + inkscape:label="Arm_Left_High" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 359.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 C 323,69.600003 357.6,87.000003 374.9,99.600003 389.7,100.8 486.3,157.4 482.3,170.9 c -6.1,20.6 -84.8,65.8 -114.7,81.4 -49.9,-6.5 -28.8,-47.8 -7.9,-44.3" + class="skin" + id="L_2_" /></g><g + inkscape:groupmode="layer" + id="Arm_Left_Low" + inkscape:label="Arm_Left_Low" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 353.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" + class="skin" + id="L" /></g><g + inkscape:groupmode="layer" + id="Arm_Left_Mid" + inkscape:label="Arm_Left_Mid" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 358.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="skin" + id="L_1_" /></g><g + id="Arm_Left_Rebel" + inkscape:groupmode="layer" + style="display:inline" + inkscape:label="Arm_Left_Rebel"><path + inkscape:connector-curvature="0" + d="m 361.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="skin" + id="path4819" /></g><g + id="Arm_Left_Thumb_Down" + inkscape:groupmode="layer" + inkscape:label="Arm_Left_Thumb_Down" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 354.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="skin" + id="path4821" /></g></g><g + inkscape:groupmode="layer" + id="Arm_Outfit_" + inkscape:label="Arm_Outfit_"><g + inkscape:groupmode="layer" + id="Arm_Outfit_Shine_" + inkscape:label="Arm_Outfit_Shine_"><g + inkscape:groupmode="layer" + id="Arm_Outfit_Shine_Left_Mid" + inkscape:label="Arm_Outfit_Shine_Left_Mid" + style="display:inline"><path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;filter:url(#Filter_Shine_Blur)" + d="m 382.25391,230.08594 c 4.97311,17.05319 13.32815,36.98205 21.21288,85.26855 -5.92532,-48.71766 -14.3838,-68.97024 -21.21288,-85.26855 z" + id="path4909" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path4027-2-5-4-3" + d="m 361.54149,215.43549 c 3.52608,0.41561 11.22437,3.5104 15.01588,6.64845 -4.87493,-0.49283 -12.27273,-2.77034 -15.01588,-6.64845 z" + style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" /></g><g + inkscape:groupmode="layer" + id="Arm_Outfit_Shine_Left_Low" + inkscape:label="Arm_Outfit_Shine_Left_Low" + style="display:inline"><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path4027-2-5-4-6" + d="m 379.20126,418.93983 c 7.4576,0.75752 14.50753,4.17733 19.21496,10.05528 -7.42067,-3.7385 -13.39796,-7.77943 -19.21496,-10.05528 z" + style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" + transform="matrix(0.99928736,-0.03774624,0.03774624,0.99928736,-37.879743,-190.59389)" /><path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;filter:url(#Filter_Shine_Blur)" + d="m 404.71387,303.29199 c -4.31551,-23.61668 -8.5779,-42.59562 -17.05273,-62.39258 6.54404,20.34381 10.78573,39.21396 17.05273,62.39258 z" + id="path4906" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /></g><g + inkscape:groupmode="layer" + id="Arm_Outfit_Shine_Left_High" + inkscape:label="Arm_Outfit_Shine_Left_High" + style="display:inline"><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path4027-2-5-4" + d="m 380.71117,425.16475 c 3.53112,-0.37044 11.7217,0.95461 16.11076,3.18148 -4.86389,0.59191 -12.58152,-0.002 -16.11076,-3.18148 z" + style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" + transform="matrix(0.99928736,-0.03774624,0.03774624,0.99928736,-42.455139,-199.84867)" /><path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;filter:url(#Filter_Shine_Blur)" + d="m 378.92676,103.22266 c 33.64855,15.07351 69.22703,39.76495 95.24999,58.64843 -24.87208,-20.52259 -60.52917,-45.29589 -95.24999,-58.64843 z" + id="path4904" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /></g></g></g><g + inkscape:groupmode="layer" + id="Hair_Back" + style="display:inline" + inkscape:label="Hair_Back"><path + inkscape:connector-curvature="0" + d="m 344.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="hair" + id="path36" /></g><g + inkscape:groupmode="layer" + id="Butt_" + style="display:inline" + inkscape:label="Butt_"><g + inkscape:groupmode="layer" + id="Butt_3" + inkscape:label="Butt_3" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 328.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="skin" + id="path45" /></g><g + inkscape:groupmode="layer" + id="Butt_2" + inkscape:label="Butt_2" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 328,389.8 c 1.9,-0.5 7,2.9 17.2,9.8 4.7,3.1 10.2,8.6 23.4,18.3 9.7,7.1 17,12.5 22.9,20.7 0,0 15.2,21.5 7.3,52.6 -0.7,2.9 -1.7,5.7 -1.7,5.7 -1.4,3.9 -3.3,6.9 -6.5,13.8 -4.8,10.1 -5.2,12.2 -7.1,15.9 -4.9,9.6 -9.5,12.1 -17.3,21.5 -4.6,5.4 -7.7,10.1 -9.9,14 -6.1,10.4 -6.6,12.3 -7.8,12.4 -11.1,0.8 -40.7,-179.4 -20.5,-184.7 z" + class="skin" + id="path48" /></g><g + inkscape:groupmode="layer" + id="Butt_1" + inkscape:label="Butt_1" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 327.3,389.8 c 1.7,-0.5 6.3,2.7 15.5,9 4.2,2.9 9.2,7.9 21.1,16.9 8.7,6.6 15.4,11.6 20.6,19.1 0,0 13.7,19.8 6.6,48.5 -0.6,2.7 -1.5,5.2 -1.5,5.2 -1.2,3.6 -2.9,6.4 -5.9,12.7 -4.4,9.3 -4.7,11.3 -6.4,14.7 -4.4,8.9 -8.5,11.2 -15.6,19.8 -4.1,5 -6.9,9.3 -9,12.9 -5.5,9.6 -6,11.3 -7,11.4 -9.9,0.8 -36.6,-165.3 -18.4,-170.2 z" + class="skin" + id="path51" /></g><g + inkscape:groupmode="layer" + id="Butt_0" + inkscape:label="Butt_0" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 335.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" + class="skin" + id="path54" /></g></g><g + inkscape:groupmode="layer" + id="Butt_Outfit_" + inkscape:label="Butt_Outfit_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Butt_Outfit_Shine_" + inkscape:label="Butt_Outfit_Shine_"><g + inkscape:groupmode="layer" + id="Butt_Outfit_Shine_3" + inkscape:label="Butt_Outfit_Shine_3" + style="display:inline"><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path4027-2" + d="m 369.14719,420.64127 c 12.0312,9.35178 25.93389,15.06548 30.16975,39.606 -5.80029,-17.86523 -25.94098,-33.85209 -30.16975,-39.606 z" + style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" + transform="matrix(0.99729094,-0.07355799,0.07355799,0.99729094,-31.357293,29.456529)" /></g><g + inkscape:groupmode="layer" + id="Butt_Outfit_Shine_2" + inkscape:label="Butt_Outfit_Shine_2" + style="display:inline"><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path4027-2-5" + d="m 369.14719,420.64127 c 12.0312,9.35178 25.93389,15.06548 30.16975,39.606 -5.80029,-17.86523 -25.94098,-33.85209 -30.16975,-39.606 z" + style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" + transform="matrix(0.99928736,-0.03774624,0.03774624,0.99928736,-22.351298,14.817195)" /></g><g + inkscape:groupmode="layer" + id="Butt_Outfit_Shine_1" + inkscape:label="Butt_Outfit_Shine_1" + style="display:inline"><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path4027-2-5-3" + d="m 369.14719,420.64127 c 12.0312,9.35178 25.93389,15.06548 30.16975,39.606 -5.80029,-17.86523 -25.94098,-33.85209 -30.16975,-39.606 z" + style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" + transform="matrix(0.99928736,-0.03774624,0.03774624,0.99928736,-30.670201,9.8258533)" /></g><g + inkscape:groupmode="layer" + id="Butt_Outfit_Shine_0" + inkscape:label="Butt_Outfit_Shine_0"><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path4027-2-5-2" + d="m 374.32263,419.48846 c 9.3676,8.5745 20.75845,16.21829 24.99431,40.75881 -5.80029,-17.86523 -20.76554,-35.0049 -24.99431,-40.75881 z" + style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" + transform="matrix(0.96251573,0.27122589,-0.27122589,0.96251573,109.72954,-84.004665)" /></g></g></g><g + inkscape:groupmode="layer" + id="Leg_" + style="display:inline" + inkscape:label="Leg_"><g + inkscape:groupmode="layer" + id="Leg_Narrow" + style="display:inline" + inkscape:label="Leg_Narrow"><path + inkscape:connector-curvature="0" + d="m 225.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="skin" + id="XMLID_464_" /><path + inkscape:connector-curvature="0" + d="m 288,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="shadow" + id="XMLID_465_" /></g><g + inkscape:groupmode="layer" + id="Leg_Normal" + style="display:inline" + inkscape:label="Leg_Normal"><path + inkscape:connector-curvature="0" + d="m 226,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="skin" + id="XMLID_466_" /><path + inkscape:connector-curvature="0" + d="m 293.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="shadow" + id="XMLID_467_" /></g><g + inkscape:groupmode="layer" + id="Leg_Wide" + style="display:inline" + inkscape:label="Leg_Wide"><path + inkscape:connector-curvature="0" + d="m 225.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="skin" + id="XMLID_468_" /><path + inkscape:connector-curvature="0" + d="M 289.6,630.9 C 279.8,590.6 268.8,530 272.8,483.8 c -0.8,44.7 7.6,106.4 16.8,147.1 z" + class="shadow" + id="XMLID_469_" /></g><g + id="Stump" + inkscape:groupmode="layer" + inkscape:label="Stump" + style="display:inline"><path + class="skin" + d="m 226.3,412.5 c 31.3,-22.1 86.4,-32 124.3,-2.1 25.6,20.2 45.7,60.3 31.5,80.6 -10.7,15.2 -39.7,17.8 -60,10 -25.7,-9.9 -26.6,-32.4 -47.3,-34.5 -20,-2 -27.3,18.1 -48.4,14.8 -13.3,-2.1 -26.9,-12.7 -29.3,-25.3 -3.9,-20.2 22.1,-38.5 29.2,-43.5 z" + inkscape:connector-curvature="0" + id="path62" /></g><path + inkscape:connector-curvature="0" + d="m 226.3,412.5 c 27.9,-30 93.7,-36.4 123.8,-1.4 18.2,21.2 25.4,60.2 7,78.9 -8.2,8.3 -22.1,13.3 -35,11 -24.2,-4.4 -25.9,-31.9 -47.3,-34.5 -18.1,-2.2 -26.3,16.5 -43.8,11.5 -10.1,-2.9 -17.2,-12 -20,-20 -7.3,-21.2 12.7,-42.8 15.3,-45.5 z" + class="skin" + id="Stump_Normal" /><path + inkscape:connector-curvature="0" + d="m 226.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="skin" + id="Stump_Narrow" /></g><g + inkscape:groupmode="layer" + id="Leg_Outfit_" + inkscape:label="Leg_Outfit_"><g + inkscape:groupmode="layer" + id="Leg_Outfit_Shine_" + inkscape:label="Leg_Outfit_Shine_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Leg_Outfit_Shine_Narrow" + inkscape:label="Leg_Outfit_Shine_Narrow" + style="display:inline"><path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#Filter_Shine_Blur);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 334.11719,835.5879 c 3.86707,-47.42283 14.39423,-97.7115 9.32701,-151.12953 0.7,46.38507 -8.88985,125.3467 -9.32701,151.12953 z" + id="path4068" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#Filter_Shine_Blur);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 279.93066,691.78516 c 10.75918,48.71017 -13.21217,94.37122 -14.97363,147.66015 4.70837,-52.30259 28.97652,-98.35635 14.97363,-147.66015 z" + id="path4070" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /></g><g + inkscape:groupmode="layer" + id="Leg_Outfit_Shine_Normal" + inkscape:label="Leg_Outfit_Shine_Normal" + style="display:inline"><path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#Filter_Shine_Blur);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 334.33984,833.50879 c 1.60482,-35.51678 12.5865,-90.61327 7.23145,-144.12695 3.32987,53.29414 -7.62026,108.20277 -7.23145,144.12695 z" + id="path4068-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#Filter_Shine_Blur);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 280.26661,691.78418 c 11.3053,48.83256 -10.20522,96.99759 -14.55763,139.75782 6.27685,-42.03405 28.01437,-90.5764 14.55763,-139.75782 z" + id="path4070-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /></g><g + inkscape:groupmode="layer" + id="Leg_Outfit_Shine_Wide" + inkscape:label="Leg_Outfit_Shine_Wide" + style="display:inline"><path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#Filter_Shine_Blur);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 341.9873,684.80664 c 2.83237,53.34079 -4.36665,86.53996 -5.15039,122.49707 3.75983,-35.48385 11.00295,-69.03003 5.15039,-122.49707 z" + id="path4068-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#Filter_Shine_Blur);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 270.78027,808.66504 c 8.80124,-35.13449 27.27028,-68.16292 13.31055,-117.2959 10.80233,48.881 -7.32306,80.94637 -13.31055,117.2959 z" + id="path4070-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /></g><g + inkscape:groupmode="layer" + id="Leg_Outfit_Shine_Stump" + inkscape:label="Leg_Outfit_Shine_Stump" + style="display:inline"><path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#Filter_Shine_Blur);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 355.2168,421.00391 c 11.91522,14.08675 23.36538,28.61015 28.01522,54.3422 -1.75988,-26.81941 -13.78924,-42.18616 -28.01522,-54.3422 z" + id="path4098" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /></g></g></g><g + inkscape:groupmode="layer" + id="Shoes_" + style="display:inline" + inkscape:label="Shoes_"><g + inkscape:groupmode="layer" + id="Shoes_Boot" + inkscape:label="Shoes_Boot"><path + inkscape:connector-curvature="0" + d="m 315.9,889.4 c -1.9,7 1.7,8.6 3.5,23.1 1.2,9.2 2.2,17.5 1.3,22.5 -0.1,0.4 0,2.8 0.3,6 0.4,5.2 0.7,7.8 2,10 2.3,3.6 6.4,4.8 9.6,5.5 4.8,1.1 9.9,2.2 13.2,-0.9 2.9,-2.7 3,-7.2 3.1,-12.3 0.1,-8.9 -2.1,-12.2 -4.2,-23.3 -1.1,-6 -1.3,-10.4 -1.9,-18.7 -0.5,-8.4 -0.5,-15.3 -0.4,-19.2 0,-1.6 0.1,-2.8 0.1,-3.1 0.8,-25.5 -5.1,-66.8 1,-107.3 0,0 4.6,-31 4.6,-66.5 0,-2.1 -0.7,-7.6 -1.6,-10.3 -8.5,0 -18.3,6.9 -36.7,6.9 -1.2,3.7 -2.3,10.8 -2.3,13.7 0.8,53.8 3.1,67.5 3.1,67.5 4.1,23.8 5.9,48 10.3,71.7 0,0 2.3,12.7 -0.6,24.1 -0.5,2 -1,3.1 -1,3.1 -1.1,2.7 -2.5,3.8 -3.4,7.5 z" + class="shoe" + id="XMLID_476_" /><path + inkscape:connector-curvature="0" + d="m 249.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="shoe" + id="XMLID_477_" /></g><g + inkscape:groupmode="layer" + id="Shoes_Boot_Wide" + inkscape:label="Shoes_Boot_Wide"><path + inkscape:connector-curvature="0" + d="m 306.2,889.4 c -2.5,7 2.2,8.6 4.5,23.1 1.5,9.2 2.8,17.5 1.8,22.5 -0.1,0.4 0,2.8 0.4,6 0.6,5.2 0.9,7.8 2.6,10 2.9,3.6 8.3,4.8 12.4,5.5 6.2,1.1 12.7,2.2 17.1,-0.9 3.7,-2.7 3.9,-7.2 4,-12.3 0.2,-8.9 -2.8,-12.2 -5.4,-23.3 -1.4,-6 -1.8,-10.4 -2.4,-18.7 -0.7,-8.4 -0.6,-15.3 -0.5,-19.2 0,-1.6 0.1,-2.8 0.1,-3.1 1.1,-25.5 -1.1,-66.3 3.8,-107.1 1.4,-11.6 3.4,-31.1 3.4,-66.6 0,-2.1 -0.9,-7.6 -2,-10.3 -11,0 -23.6,6.9 -47.5,6.9 -1.5,3.7 -3,10.8 -2.9,13.7 1,53.8 4,67.5 4,67.5 5.2,23.8 7.6,48 13.2,71.7 0,0 3,12.7 -0.8,24.1 -0.6,2 -1.2,3.1 -1.2,3.1 -1.6,2.6 -3.4,3.7 -4.6,7.4 z" + class="shoe" + id="XMLID_480_" /><path + inkscape:connector-curvature="0" + d="m 240.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="shoe" + id="XMLID_481_" /></g><g + inkscape:groupmode="layer" + id="Shoes_Pump" + inkscape:label="Shoes_Pump"><path + inkscape:connector-curvature="0" + d="m 253.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="shoe" + id="XMLID_482_" /><path + inkscape:connector-curvature="0" + d="m 253.7,861.4 c 7.9,-4 9.2,-0.3 13.3,0 -4.6,22.1 -4.7,36.3 -19.2,40.2 -4.5,1.2 -11.3,2.3 -12.2,-0.6 3.6,-9.7 14,-34.8 18.1,-39.6 z" + class="skin" + id="XMLID_483_" /><path + inkscape:connector-curvature="0" + d="m 317.5,860.8 15.6,0.1 c 4.7,13.7 8.6,42.3 9.2,52.3 4.6,4.1 4.9,8.5 -2.1,32 -2.4,3 -11.1,6 -20.4,0 -7.1,-18.7 -7.6,-24.5 -4.1,-31.5 -0.2,-7.4 -0.1,-10 -1.5,-19.5 -3.4,-15.5 1.9,-24.7 3.3,-33.4 z" + class="shoe" + id="XMLID_484_" /><path + inkscape:connector-curvature="0" + d="m 317.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="skin" + id="XMLID_485_" /></g><g + inkscape:groupmode="layer" + id="Shoes_Exterme_Heel" + inkscape:label="Shoes_Exterme_Heel"><path + inkscape:connector-curvature="0" + d="m 248.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="shoe" + id="XMLID_488_" /><path + inkscape:connector-curvature="0" + d="m 320.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="shoe" + id="XMLID_489_" /></g><g + inkscape:groupmode="layer" + id="Shoes_Exterme_Heel_Wide" + inkscape:label="Shoes_Exterme_Heel_Wide"><path + inkscape:connector-curvature="0" + d="m 248.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="shoe" + id="XMLID_490_" /><path + inkscape:connector-curvature="0" + d="M 315.5,865.2 C 316,858.5 301.3,756.1 301.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="shoe" + id="XMLID_491_" /></g><g + inkscape:groupmode="layer" + id="Shoes_Heel" + inkscape:label="Shoes_Heel"><path + inkscape:connector-curvature="0" + d="m 324.8,866 c -5.3,-0.9 -12.7,7.6 -13,14.8 -0.2,3.8 1.7,5.5 4,10.2 6.9,14.2 6,31.8 5.8,38.1 -0.3,4.5 -0.8,9.3 2,14.1 2.1,3.6 5.2,5.5 6.9,6.7 6.6,4.2 13,3.8 19,3.5 5,-0.3 6.7,-1.2 7.8,-2.3 2.2,-2.2 2.3,-5.3 2.3,-6.7 0.1,-4.4 -1.9,-7.7 -3.2,-9.8 -5.3,-8.7 -8.1,-13.1 -10.1,-15.3 -14.8,-16.6 -11.2,-51.6 -21.5,-53.3 z" + class="shoe" + id="XMLID_497_" /><path + inkscape:connector-curvature="0" + d="m 344.2,933.9 c 1,-0.5 3.7,-1.9 4.8,-4.8 0.8,-2.3 0,-4 -1.3,-8.6 0,0 -1.6,-5.7 -2.7,-11.8 -0.8,-4.7 -0.4,-6.1 -0.8,-11.3 -1.3,-17.9 -7.3,-18.2 -6.9,-33.1 0,-0.7 -0.9,-11 -0.7,-16.4 -3,-0.8 -16.3,-0.3 -16.4,0.3 -1.6,6.9 1.5,17.4 1,18.4 -2.5,4.8 -1.3,10 -0.5,13.4 3.4,14.3 5.1,19.2 6.2,24.3 3.9,17.5 -0.7,25.9 5.2,29.4 3.2,2.2 8.4,2.1 12.1,0.2 z" + class="skin" + id="XMLID_498_" /><path + inkscape:connector-curvature="0" + d="m 265.9,927.8 c -0.1,0.4 -1.2,0.9 -1.2,-0.3 -0.2,-2.4 -0.1,-3.6 -0.1,-4.4 0,-1.8 1.2,-11.3 1.1,-17.5 -0.2,-13.1 -0.7,-15.2 0.5,-18 1.7,-4 5.1,-7.6 6.3,-7.1 0.5,0.3 2.4,0.2 0.3,8.1 -2.4,8.8 -2.8,10.8 -3.7,16.8 -1.6,10.1 -1.8,15.2 -2.1,18.1 -0.4,1.3 -0.5,2.2 -1.1,4.3 z" + class="shoe_shadow" + id="XMLID_499_" /><path + inkscape:connector-curvature="0" + d="m 252.7,884.3 c -8.4,16.1 -6.2,25.8 -14.7,30.5 -1.9,1.1 -4.4,3 -6.3,3.9 -6.1,2.8 -9.3,4 -9.9,6.8 -0.4,1.8 0.5,3.5 0.8,4 1.2,2 4.3,4.3 8.5,5.4 6.1,1.6 7.7,2.5 14.8,0.6 2.9,-0.8 6.2,-1.7 9.1,-4.4 6.6,-6.1 2,-13.6 6,-25.3 4.7,-14 15.2,-15.4 14.7,-25.3 -0.4,-5.7 -4.2,-11.8 -8.4,-12.3 -5.8,-0.7 -11.4,10 -14.6,16.1 z" + class="shoe" + id="XMLID_500_" /><path + inkscape:connector-curvature="0" + d="m 237.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="skin" + id="XMLID_501_" /></g><g + inkscape:groupmode="layer" + id="Shoes_Flat" + inkscape:label="Shoes_Flat"><path + inkscape:connector-curvature="0" + d="m 266.5,836 c 3.5,2.8 -2.3,9.7 0.8,19.5 2.4,7.6 5.2,6.8 6.1,10.7 2.8,10.5 -8,25 -20.6,31.3 -10.4,5.2 -23.4,5.6 -24.7,2.3 -0.7,-1.7 2.1,-3.4 6.1,-8.5 1.7,-2.2 9.3,-12.9 10.8,-23.4 1.9,-13.2 7.6,-22.4 8.2,-30.7 0.7,-7.5 7.7,-5.8 13.3,-1.2 z" + class="skin" + id="XMLID_506_" /><path + inkscape:connector-curvature="0" + d="m 271.2,895.3 c 6.5,-2.7 9.7,-4 11,-6.6 2.2,-4.4 0.1,-9.5 -1.5,-13.4 -1.6,-3.9 -4.7,-9 -6.6,-8.5 -1,0.3 -0.9,2 -2,4.4 -1.4,3.6 -3.8,5.6 -6.4,7.9 -14.5,12.9 -17.5,20.3 -25.1,20 -4.2,-0.1 -5.3,-2.4 -11.3,-2.1 -0.8,0 -4.9,0.3 -9.7,2.5 -2,1 -9.2,4.4 -8.8,7.3 0.6,4.1 15.6,4.8 17.4,4.9 6.4,0.3 12.4,0.6 18.5,-2.8 5.1,-2.8 4.1,-4.9 10,-8.3 4.8,-2.6 6.1,-1.9 14.5,-5.3 z" + class="shoe" + id="XMLID_507_" /><path + inkscape:connector-curvature="0" + d="m 320.7,872.8 c -3.4,4.4 -1.1,6.9 -4.1,23.2 -1.2,6.3 -1.8,12.7 -3.3,18.9 -0.5,2.1 -1.3,5.2 -0.5,8.8 0.3,1 1.3,5.1 4.4,7.3 3.2,2.2 2.6,3.5 10.8,3.2 8.3,-0.3 9,-1.3 11,-3 5,-4 3.5,-16.6 2.8,-21.3 -0.7,-5.5 -1.6,-6 -2.1,-12.4 -0.6,-7.3 0.5,-8.3 -0.2,-13.3 -0.4,-3.6 -1.7,-13.1 -7.6,-15.9 -4.5,-2.3 -7.7,0 -11.2,4.5 z" + class="shoe" + id="XMLID_508_" /><path + inkscape:connector-curvature="0" + d="m 321.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="skin" + id="XMLID_509_" /></g></g><g + inkscape:groupmode="layer" + id="Feet" + style="display:inline" + inkscape:label="Feet"><path + inkscape:connector-curvature="0" + d="m 268.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" + class="skin" + id="XMLID_463_" /><path + inkscape:connector-curvature="0" + d="m 311.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="skin" + id="XMLID_510_" /></g><g + inkscape:groupmode="layer" + id="Torso_" + style="display:inline" + inkscape:label="Torso_"><g + inkscape:groupmode="layer" + id="Torso_Normal" + style="display:inline" + inkscape:label="Torso_Normal"><path + inkscape:connector-curvature="0" + d="m 226,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" + class="shadow" + id="Body_Shadow" /><path + inkscape:connector-curvature="0" + d="m 273,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="skin torso" + id="Body_Normal_1_" /></g><g + inkscape:groupmode="layer" + id="Torso_Hourglass" + style="display:inline" + inkscape:label="Torso_Hourglass"><path + inkscape:connector-curvature="0" + d="m 226,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" + class="shadow" + id="Body_Shadow_2_" /><path + inkscape:connector-curvature="0" + d="m 272.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="skin torso" + id="Body_Normal_3_" /><path + d="m 292.51112,215.39999 a 2.3111103,2.3111103 0 0 1 -2.31111,2.31111 2.3111103,2.3111103 0 0 1 -2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,2.31111 z" + id="path6413" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + style="fill:#895b39" + d="m 280.94904,279.65447 a 2.3111103,2.3111103 0 0 1 -2.31111,2.31111 2.3111103,2.3111103 0 0 1 -2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,2.31111 z" + id="path6413-2" /><path + inkscape:connector-curvature="0" + style="fill:#895b39" + d="m 268.00797,403.19272 a 2.3111103,2.3111103 0 0 1 -2.31111,2.31111 2.3111103,2.3111103 0 0 1 -2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,2.31111 z" + id="path6413-3" /></g><g + inkscape:groupmode="layer" + id="Torso_Unnatural" + style="display:inline" + inkscape:label="Torso_Unnatural"><path + inkscape:connector-curvature="0" + d="m 226,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" + class="shadow" + id="Body_Shadow_1_" /><path + inkscape:connector-curvature="0" + d="m 272.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="skin torso" + id="Body_Normal_2_" /></g></g><g + inkscape:groupmode="layer" + id="Navel_Addons_" + inkscape:label="Navel_Addons_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Navel_Piercing_Heavy" + inkscape:label="Navel_Piercing_Heavy"><path + inkscape:connector-curvature="0" + d="m 262.3,369.8 c -0.2,0 -1.3,2 -1.2,11.6 0.1,12.7 1.2,13.3 1.4,13.3 0.4,0 1.5,-7.4 1.2,-15.9 -0.5,-4.5 -1.1,-9 -1.4,-9 z" + class="steel_piercing" + id="XMLID_513_" /><path + inkscape:connector-curvature="0" + d="m 262.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="steel_piercing" + id="XMLID_514_" /></g><g + inkscape:groupmode="layer" + id="Navel_Piercing" + inkscape:label="Navel_Piercing"><circle + r="1.2" + cy="364.39999" + cx="262.29999" + class="steel_piercing" + id="XMLID_515_" /><circle + r="1.2" + cy="368.60001" + cx="262.29999" + class="steel_piercing" + id="XMLID_516_" /></g></g><g + inkscape:groupmode="layer" + id="Pussy_" + style="display:inline" + inkscape:label="Pussy_"><g + inkscape:groupmode="layer" + id="Pussy_Piercing_Heavy" + style="display:inline" + inkscape:label="Pussy_Piercing_Heavy"><path + inkscape:connector-curvature="0" + d="m 271.3,459.9 c 0.2,0 2,2.8 0.8,5.2 -1,2 -3.6,3.1 -6,2 -2.1,-1.1 -2.8,-3.7 -2,-5.6 0.9,-2.4 3.7,-3.1 3.9,-2.9 0.1,0.2 -2.6,1.4 -2.7,3.6 -0.1,1.2 0.5,2.6 1.9,3.1 1.4,0.6 3.1,0 3.9,-1 1.3,-1.7 0.1,-4.3 0.2,-4.4 z" + class="steel_piercing" + id="XMLID_512_" /><ellipse + ry="2.0000744" + rx="1.8000669" + cy="-498.19226" + cx="-198.94585" + class="steel_piercing" + transform="matrix(-0.99036315,0.13849485,-0.13849485,-0.99036315,0,0)" + id="XMLID_517_" /><ellipse + ry="1.8000669" + rx="1.7000633" + cy="-499.48944" + cx="-201.77112" + class="steel_piercing" + transform="matrix(-0.99036315,0.13849485,-0.13849485,-0.99036315,0,0)" + id="XMLID_518_" /><path + inkscape:connector-curvature="0" + d="m 268,449.7 c 0.2,0 1.7,3 0.1,5.2 -1.2,1.8 -4.1,2.6 -6.1,1.2 -2,-1.4 -2.2,-4.1 -1.2,-5.8 1.2,-2.2 4.2,-2.6 4.3,-2.4 0.1,0.2 -2.8,1.1 -3.1,3.1 -0.2,1.2 0.2,2.6 1.4,3.4 1.3,0.9 3.1,0.4 4,-0.4 1.3,-1.5 0.5,-4.3 0.6,-4.3 z" + class="steel_piercing" + id="XMLID_519_" /><ellipse + ry="2" + rx="1.8" + cy="453.10001" + cx="260.60001" + class="steel_piercing" + id="XMLID_520_" /><ellipse + ry="1.8" + rx="1.7" + cy="455.39999" + cx="262.60001" + class="steel_piercing" + id="XMLID_521_" /><path + inkscape:connector-curvature="0" + d="m 271.3,459.3 c -0.2,0 -1.4,3.2 0.4,5.2 1.4,1.7 4.3,2.2 6.2,0.6 1.9,-1.5 1.9,-4.3 0.8,-5.9 -1.3,-2.1 -4.4,-2.2 -4.4,-2 0,0.2 2.8,0.8 3.4,2.8 0.3,1.1 0,2.6 -1.1,3.5 -1.2,1 -3,0.7 -4,-0.2 -1.7,-1.2 -1.1,-4 -1.3,-4 z" + class="steel_piercing" + id="XMLID_522_" /><ellipse + ry="2.0000093" + rx="1.8000083" + cy="485.7283" + cx="238.20935" + class="steel_piercing" + transform="matrix(0.99649537,-0.0836479,0.0836479,0.99649537,0,0)" + id="XMLID_523_" /><ellipse + ry="1.8000085" + rx="1.7000082" + cy="486.90195" + cx="235.39908" + class="steel_piercing" + transform="matrix(0.99649527,-0.08364908,0.08364908,0.99649527,0,0)" + id="XMLID_524_" /><path + inkscape:connector-curvature="0" + d="m 268.5,449.9 c -0.2,0 -0.8,3.4 1.3,5.1 1.7,1.3 4.6,1.4 6.2,-0.5 1.5,-1.9 1,-4.5 -0.4,-6 -1.8,-1.8 -4.7,-1.3 -4.7,-1.2 -0.1,0.3 2.9,0.3 3.9,2.1 0.5,1.1 0.5,2.6 -0.4,3.6 -1.1,1.2 -2.8,1.2 -4,0.6 -1.7,-0.9 -1.7,-3.8 -1.9,-3.7 z" + class="steel_piercing" + id="XMLID_525_" /><ellipse + ry="2.0000699" + rx="1.8000628" + cy="511.93347" + cx="139.35681" + class="steel_piercing" + transform="matrix(0.96266641,-0.27069056,0.27069056,0.96266641,0,0)" + id="XMLID_526_" /><ellipse + ry="1.8000628" + rx="1.7000594" + cy="511.60583" + cx="142.2471" + class="steel_piercing" + transform="matrix(0.96266641,-0.27069056,0.27069056,0.96266641,0,0)" + id="XMLID_527_" /></g><g + inkscape:groupmode="layer" + id="Pussy_Piercing" + style="display:inline" + inkscape:label="Pussy_Piercing"><path + inkscape:connector-curvature="0" + d="m 269.6,443.9 c 0.1,-0.1 1.3,0.5 1.4,1.7 0.1,0.9 -0.6,2 -1.7,2 -1,0.1 -1.8,-0.7 -2,-1.5 -0.2,-1.1 0.6,-2 0.7,-2 0.1,0 -0.6,1.1 -0.2,1.9 0.3,0.4 0.8,0.8 1.3,0.7 0.7,-0.1 1.2,-0.7 1.2,-1.2 0.1,-0.9 -0.8,-1.6 -0.7,-1.6 z" + class="steel_piercing" + id="XMLID_528_" /><path + inkscape:connector-curvature="0" + d="m 266.6,445 c 0.1,0 0.7,1.2 0,2.2 -0.5,0.7 -1.7,1.1 -2.6,0.4 -0.8,-0.6 -0.9,-1.7 -0.5,-2.5 0.5,-0.9 1.8,-1.1 1.8,-1 0,0.1 -1.2,0.4 -1.3,1.3 -0.1,0.4 0.1,1.1 0.6,1.4 0.5,0.4 1.3,0.2 1.7,-0.2 0.6,-0.5 0.2,-1.6 0.3,-1.6 z" + class="steel_piercing" + id="XMLID_529_" /><path + inkscape:connector-curvature="0" + d="m 267.5,451.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.5,-0.5 0,-1.6 0.1,-1.6 z" + class="steel_piercing" + id="XMLID_530_" /><path + inkscape:connector-curvature="0" + d="m 270.7,450.6 c 0.1,-0.1 1.4,0.4 1.7,1.4 0.2,0.9 -0.4,2 -1.4,2.2 -1,0.3 -1.9,-0.4 -2.1,-1.2 -0.4,-1 0.4,-2 0.4,-2 0.1,0 -0.4,1.2 0.1,1.9 0.3,0.4 0.9,0.7 1.4,0.5 0.6,-0.2 1,-0.9 1,-1.4 0,-0.9 -1.2,-1.4 -1.1,-1.4 z" + class="steel_piercing" + id="XMLID_531_" /><path + inkscape:connector-curvature="0" + d="m 272.8,457.1 c 0.1,-0.1 1.4,0.4 1.7,1.5 0.2,0.9 -0.4,2 -1.4,2.2 -1,0.2 -1.9,-0.5 -2.1,-1.2 -0.4,-1 0.4,-2 0.4,-2 0.1,0 -0.4,1.2 0.1,1.9 0.3,0.4 0.9,0.7 1.4,0.5 0.6,-0.2 1,-0.9 1,-1.3 -0.1,-1 -1.1,-1.5 -1.1,-1.6 z" + class="steel_piercing" + id="XMLID_532_" /><path + inkscape:connector-curvature="0" + d="m 270.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="steel_piercing" + id="XMLID_533_" /></g><g + inkscape:groupmode="layer" + id="Clit_Piercing_Heavy" + style="display:inline" + inkscape:label="Clit_Piercing_Heavy"><circle + r="1.2" + cy="435.60001" + cx="268.29999" + class="steel_piercing" + id="XMLID_534_" /><circle + r="1.2" + cy="436.10001" + cx="263.60001" + class="steel_piercing" + id="XMLID_535_" /><path + inkscape:connector-curvature="0" + d="m 264,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="steel_piercing" + id="XMLID_536_" /></g><g + inkscape:groupmode="layer" + id="Clit_Piercing" + style="display:inline" + inkscape:label="Clit_Piercing"><circle + r="1.2" + cy="435.60001" + cx="268.29999" + class="steel_piercing" + id="XMLID_537_" /><circle + r="1.2" + cy="436.10001" + cx="263.60001" + class="steel_piercing" + id="XMLID_538_" /></g><g + inkscape:groupmode="layer" + id="Clit_Piercing_Smart" + style="display:inline" + inkscape:label="Clit_Piercing_Smart"><circle + r="1.2" + cy="435.60001" + cx="268.29999" + class="steel_piercing" + id="XMLID_539_" /><circle + r="1.2" + cy="436.10001" + cx="263.60001" + class="steel_piercing" + id="XMLID_540_" /><path + inkscape:connector-curvature="0" + d="m 263.8,436.2 c -0.1,-0.1 -2.3,3.3 -1.1,5.5 1.4,2.7 6.4,2.1 7.4,-0.8 0.8,-2.4 -1.6,-5.4 -1.8,-5.3 -0.1,0.1 1.4,2.5 0.5,4.4 -1,2.1 -3.6,2.3 -4.9,0.3 -1.2,-1.8 0,-4 -0.1,-4.1 z" + class="steel_piercing" + id="XMLID_541_" /><rect + height="7.3005033" + width="7.3005033" + class="smart_piercing" + transform="matrix(0.74874839,0.66285431,-0.66285431,0.74874839,0,0)" + y="154.21469" + x="492.11429" + id="XMLID_542_" /></g><g + inkscape:groupmode="layer" + id="Pussy" + inkscape:label="Pussy"><path + inkscape:connector-curvature="0" + d="m 266.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="labia" + id="Vagina" /></g></g><g + inkscape:groupmode="layer" + id="Pubic_Hair_" + inkscape:label="Pubic_Hair_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Pussy_Tattoo" + inkscape:label="Pussy_Tattoo"><path + style="fill:none;stroke:none" + d="m 247.43521,421.40369 c 11.48595,-7.47207 25.83395,-7.39381 43.33727,-0.45163" + id="path4363" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /><text + xml:space="preserve" + id="text4365" + sodipodi:linespacing="125%" + style="font-size:12px;line-height:125%;text-align:center;text-anchor:middle" + x="25.568281" + y="0"><textPath + xlink:href="#path4363" + id="textPath4369" + style="font-size:12px;text-align:center;text-anchor:middle">'+_art_pussy_tattoo_text+'</textPath></text> +</g><g + inkscape:groupmode="layer" + id="Pubic_Hair_Bush" + inkscape:label="Pubic_Hair_Bush" + style="display:inline"><path + inkscape:connector-curvature="0" + id="path482" + d="m 258.19,426.59 a 2.62,2.62 0 0 1 0.6,0.31 3.14,3.14 0 0 1 1.21,1.7 2.51,2.51 0 0 1 0,0.31 m -15.23,0.65 m 17.33,-4.66 m -11.99,1.85 M 246.83,421 m -0.56,-7 a 4.76,4.76 0 0 1 0.83,-0.12 l 0.5,0 a 2.88,2.88 0 0 1 1.69,0.52 1.45,1.45 0 0 1 0.19,0.19 1.49,1.49 0 0 1 0.3,1.08 2.36,2.36 0 0 1 0,0.4 m -3.17,20.22 a 3.79,3.79 0 0 1 0.15,-0.76 4.71,4.71 0 0 1 0.17,-0.47 4.64,4.64 0 0 1 1.13,-1.7 l 0.27,-0.21 a 3.36,3.36 0 0 1 1.62,-0.54 2.63,2.63 0 0 1 0.77,0.09 2,2 0 0 1 0.36,0.14 1.7,1.7 0 0 1 0.3,0.19 1.94,1.94 0 0 1 0.63,1 2.23,2.23 0 0 1 0.1,0.24 5.4,5.4 0 0 1 0,2.71 m 1.81,-20.65 M 253.18,437 m 3.15,-18.14 m 1.3,-6.72 a 3,3 0 0 1 0.69,0.11 2.73,2.73 0 0 1 0.39,0.14 2,2 0 0 1 1.11,1 1.55,1.55 0 0 1 0.07,0.25 m -6.09,24.26 m 1.52,-4.01 m 2.34,2.75 m 1.69,-6.55 m 6.37,-11.67 a 2.38,2.38 0 0 1 0.29,0.62 3.25,3.25 0 0 1 0.11,0.44 M 258.11,439 a 3.37,3.37 0 0 1 0.74,0 3.83,3.83 0 0 1 0.46,0.1 3.4,3.4 0 0 1 1.6,0.92 2.58,2.58 0 0 1 0.19,0.25 2.39,2.39 0 0 1 0.41,1.23 3,3 0 0 1 0,0.42 2.82,2.82 0 0 1 0,0.42 m 5.9,-15.89 m -4.03,0.29 a 5,5 0 0 1 0.78,-0.37 5.37,5.37 0 0 1 0.51,-0.16 4.06,4.06 0 0 1 2,-0.12 l 0.29,0.1 a 1.66,1.66 0 0 1 0.86,0.8 2,2 0 0 1 0.18,0.34 2.07,2.07 0 0 1 0.11,0.38 2.37,2.37 0 0 1 0.06,0.41 2.74,2.74 0 0 1 0,0.45 m -2.4,6.61 a 2.92,2.92 0 0 1 0.59,0.38 3.43,3.43 0 0 1 0.33,0.31 3.47,3.47 0 0 1 0.9,1.59 2.76,2.76 0 0 1 0,0.32 m 4.7,-18.11 m 5.36,-0.67 m -2.78,1.8 a 2.78,2.78 0 0 1 0.65,0.14 2.82,2.82 0 0 1 0.37,0.15 2.28,2.28 0 0 1 1.11,1.05 1.8,1.8 0 0 1 0.09,0.25 m 0.91,-4.21 a 2.74,2.74 0 0 1 0.65,0.19 2.68,2.68 0 0 1 0.37,0.19 2.28,2.28 0 0 1 1,1.21 2,2 0 0 1 0.06,0.28 m 0.3,4.04 m -3.14,9.81 a 2.88,2.88 0 0 1 0.52,0.47 3.45,3.45 0 0 1 0.28,0.36 3.65,3.65 0 0 1 0.67,1.75 2.92,2.92 0 0 1 0,0.33 m 7.2,-15.55 m -3.98,-2.18 a 6.61,6.61 0 0 1 0.78,-0.58 c 0.16,-0.1 0.34,-0.21 0.53,-0.31 a 6,6 0 0 1 2.2,-0.76 l 0.35,0 a 1.76,1.76 0 0 1 1.14,0.42 1.65,1.65 0 0 1 0.27,0.24 1.52,1.52 0 0 1 0.21,0.29 1.67,1.67 0 0 1 0.15,0.35 1.94,1.94 0 0 1 0.08,0.4 2.07,2.07 0 0 1 0,0.4 m -3.34,-0.64 a 3.73,3.73 0 0 1 0.22,-0.75 c 0.06,-0.15 0.13,-0.31 0.22,-0.48 a 6,6 0 0 1 1.36,-1.79 l 0.31,-0.25 a 3.93,3.93 0 0 1 1.38,-0.66 l 0.44,-0.11 a 2.91,2.91 0 0 1 0.42,0 2.52,2.52 0 0 1 0.41,0 2,2 0 0 1 0.39,0.08 1.46,1.46 0 0 1 0.31,0.13 1.31,1.31 0 0 1 0.61,0.8 1.48,1.48 0 0 1 0.09,0.21 m -7.8,30.61 m 2.9,-23.18 a 5.87,5.87 0 0 1 0.72,-0.56 c 0.15,-0.1 0.32,-0.2 0.49,-0.3 a 5.34,5.34 0 0 1 2.08,-0.7 l 0.33,0 a 1.75,1.75 0 0 1 1.11,0.44 1.69,1.69 0 0 1 0.27,0.24 1.6,1.6 0 0 1 0.21,0.29 1.8,1.8 0 0 1 0.16,0.34 2.06,2.06 0 0 1 0.09,0.4 2.11,2.11 0 0 1 0,0.39 m -2.46,5.28 A 2.61,2.61 0 0 1 288,429 m 7.14,-7.23 m 0.86,5.13 m -1.26,-2.07 m 2.18,-5.54 a 5.48,5.48 0 0 1 0.77,-0.36 l 0.5,-0.17 a 4.14,4.14 0 0 1 1.91,-0.18 l 0.27,0.08 a 1.34,1.34 0 0 1 0.77,0.7 1.6,1.6 0 0 1 0.15,0.3 1.63,1.63 0 0 1 0.08,0.34 2,2 0 0 1 0,0.37 2.43,2.43 0 0 1 0,0.41 M 293,435.45 a 3.65,3.65 0 0 1 0,-0.78 4.47,4.47 0 0 1 0.08,-0.5 4.66,4.66 0 0 1 0.86,-1.91 l 0.24,-0.27 a 3,3 0 0 1 1.2,-0.75 3.1,3.1 0 0 1 0.41,-0.14 2.56,2.56 0 0 1 0.41,-0.07 2.46,2.46 0 0 1 0.42,0 2.23,2.23 0 0 1 0.41,0.06 1.81,1.81 0 0 1 0.35,0.12 1.86,1.86 0 0 1 0.84,0.79 l 0.15,0.21 a 5,5 0 0 1 0.49,2.66 m 1.21,-14.49 a 5.45,5.45 0 0 1 0.85,-0.3 l 0.54,-0.11 a 3.87,3.87 0 0 1 2,0.1 l 0.27,0.14 a 1.52,1.52 0 0 1 0.69,0.93 2,2 0 0 1 0.11,0.37 2.14,2.14 0 0 1 0,0.4 2.58,2.58 0 0 1 0,0.44 m -3.94,6.58 a 2.77,2.77 0 0 1 0.63,0.16 2.9,2.9 0 0 1 0.37,0.17 2.63,2.63 0 0 1 1.15,1.11 2.07,2.07 0 0 1 0.1,0.26 2.18,2.18 0 0 1 0,1.19 m 0.36,-10.9 a 5.28,5.28 0 0 1 0.46,-0.79 c 0.1,-0.15 0.23,-0.31 0.37,-0.48 a 7,7 0 0 1 1.86,-1.62 l 0.36,-0.18 a 3.17,3.17 0 0 1 1.46,-0.31 2.68,2.68 0 0 1 0.43,0 2,2 0 0 1 0.39,0.09 1.79,1.79 0 0 1 0.36,0.15 1.62,1.62 0 0 1 0.31,0.22 1.39,1.39 0 0 1 0.23,0.26 1.82,1.82 0 0 1 0.26,1.15 2.43,2.43 0 0 1 0,0.28 m -21.14,23.18 a 4.14,4.14 0 0 1 0.43,-0.71 4.82,4.82 0 0 1 0.34,-0.41 4.39,4.39 0 0 1 1.71,-1.21 l 0.33,-0.09 a 2.27,2.27 0 0 1 1.33,0.11 2.49,2.49 0 0 1 0.39,0.15 2.29,2.29 0 0 1 0.35,0.22 2.4,2.4 0 0 1 0.33,0.28 2.55,2.55 0 0 1 0.29,0.34 2.32,2.32 0 0 1 0.21,0.36 2.81,2.81 0 0 1 0.25,1.34 c 0,0.1 0,0.21 0,0.31 m 4.55,-4.03 m -1.86,3.87 M 292,422.43 m 0,5.81 m -9.41,-3.53 a 5.71,5.71 0 0 1 0.61,-0.69 c 0.13,-0.13 0.28,-0.26 0.44,-0.4 a 6.09,6.09 0 0 1 2,-1.16 l 0.36,-0.08 a 2.22,2.22 0 0 1 1.31,0.12 2,2 0 0 1 0.36,0.15 2,2 0 0 1 0.57,0.49 1.79,1.79 0 0 1 0.2,0.34 1.75,1.75 0 0 1 0.12,0.35 M 295,433 m 4.79,-10.54 a 2.56,2.56 0 0 1 0.37,0.61 3.28,3.28 0 0 1 0.16,0.44 3.93,3.93 0 0 1 0.08,2 m -14.15,-5.44 a 6.13,6.13 0 0 1 0.69,-0.62 c 0.14,-0.11 0.3,-0.23 0.48,-0.34 a 6.1,6.1 0 0 1 2.07,-0.93 l 0.34,0 a 1.9,1.9 0 0 1 1.19,0.26 1.68,1.68 0 0 1 0.3,0.19 1.43,1.43 0 0 1 0.24,0.24 1.54,1.54 0 0 1 0.2,0.3 1.67,1.67 0 0 1 0.13,0.35 1.73,1.73 0 0 1 0.05,0.36 m 1.22,2.79 a 2.25,2.25 0 0 1 0.42,0.49 2.82,2.82 0 0 1 0.2,0.36 3.18,3.18 0 0 1 0.31,1.73 m 1.97,5.42 m -5.47,5.08 m 6.27,0.11 m -6.24,-4.24 a 3.7,3.7 0 0 1 0,0.76 4.81,4.81 0 0 1 0,0.5 m 1.76,7.49 m 2.62,6.72 a 3.61,3.61 0 0 1 0.18,-0.73 4.09,4.09 0 0 1 0.19,-0.44 3.82,3.82 0 0 1 1.18,-1.47 l 0.27,-0.16 A 2.13,2.13 0 0 1 298,444 a 2.36,2.36 0 0 1 0.39,0 2.1,2.1 0 0 1 0.37,0.1 2.26,2.26 0 0 1 0.36,0.15 2.33,2.33 0 0 1 0.34,0.22 2.1,2.1 0 0 1 0.28,0.26 2.49,2.49 0 0 1 0.56,1.09 2.66,2.66 0 0 1 0.09,0.26 M 283.1,441.74 A 3.5,3.5 0 0 1 283,441 a 4.19,4.19 0 0 1 0,-0.49 4.15,4.15 0 0 1 0.46,-1.93 3.1,3.1 0 0 1 0.18,-0.29 2.67,2.67 0 0 1 1,-0.87 2.88,2.88 0 0 1 0.38,-0.18 2.51,2.51 0 0 1 0.39,-0.12 2.43,2.43 0 0 1 0.41,-0.07 2.35,2.35 0 0 1 0.42,0 2,2 0 0 1 0.37,0.07 2,2 0 0 1 1,0.65 l 0.19,0.18 a 4.9,4.9 0 0 1 1,2.47 m -0.21,8.01 m -2.17,-0.06 a 3.81,3.81 0 0 1 0,-0.79 4.33,4.33 0 0 1 0.09,-0.49 4,4 0 0 1 0.86,-1.79 l 0.24,-0.23 a 2.29,2.29 0 0 1 1.18,-0.54 2.55,2.55 0 0 1 0.4,-0.06 2.3,2.3 0 0 1 0.4,0 2.38,2.38 0 0 1 0.81,0.21 2.17,2.17 0 0 1 0.34,0.19 2.51,2.51 0 0 1 0.82,1 l 0.15,0.25 a 5.81,5.81 0 0 1 0.5,2.82 m -5.44,-5.72 a 3.7,3.7 0 0 1 0.67,0.45 4.4,4.4 0 0 1 0.38,0.35 4.45,4.45 0 0 1 1.12,1.8 3.24,3.24 0 0 1 0.08,0.36 M 276.81,445 m 16.1,7.11 a 4.44,4.44 0 0 1 0.64,0.57 c 0.11,0.12 0.24,0.26 0.36,0.42 a 5.22,5.22 0 0 1 1,2 3.38,3.38 0 0 1 0.06,0.36 m -25.02,-9.24 M 285.12,457 m 2.24,-2.07 a 4.56,4.56 0 0 1 0.51,0.62 c 0.09,0.13 0.18,0.28 0.27,0.44 a 4.81,4.81 0 0 1 0.65,1.92 2.8,2.8 0 0 1 0,0.33 M 276,456.33 m -6.77,-9.84 a 4.63,4.63 0 0 1 0.07,0.86 5.34,5.34 0 0 1 0,0.55 m 13.08,14.25 a 2.49,2.49 0 0 1 0.38,-0.52 3.18,3.18 0 0 1 1.82,-1 l 0.3,0 a 2.48,2.48 0 0 1 1.21,0.38 3.19,3.19 0 0 1 0.36,0.22 3.08,3.08 0 0 1 0.33,0.27 3.38,3.38 0 0 1 0.31,0.31 3.47,3.47 0 0 1 0.27,0.36 3,3 0 0 1 0.2,0.36 2.7,2.7 0 0 1 0.28,1.21 2.53,2.53 0 0 1 0,0.27 m -10.69,-7.67 a 4.9,4.9 0 0 1 0.29,0.82 5.43,5.43 0 0 1 0.11,0.53 m 6.37,9.2 a 2.52,2.52 0 0 1 0.41,-0.56 2.89,2.89 0 0 1 0.33,-0.29 3.07,3.07 0 0 1 1.7,-0.68 l 0.34,0 a 3,3 0 0 1 1.37,0.47 4,4 0 0 1 0.41,0.25 3.9,3.9 0 0 1 0.38,0.31 4.06,4.06 0 0 1 0.36,0.36 4.12,4.12 0 0 1 0.32,0.41 3.45,3.45 0 0 1 0.24,0.4 3,3 0 0 1 0.35,1.33 2.91,2.91 0 0 1 0,0.29 m -17.51,-5.07 M 271,462.53 a 2.84,2.84 0 0 1 0.49,-0.56 3.33,3.33 0 0 1 0.38,-0.29 3.41,3.41 0 0 1 1.85,-0.63 l 0.35,0 a 3,3 0 0 1 1.39,0.55 3.85,3.85 0 0 1 0.41,0.28 3.71,3.71 0 0 1 0.37,0.33 4.05,4.05 0 0 1 0.34,0.38 4,4 0 0 1 0.29,0.43 3.38,3.38 0 0 1 0.21,0.42 3,3 0 0 1 0.23,1.39 2.88,2.88 0 0 1 0,0.31 m 1.29,2.86 m -15,-5.52 a 3,3 0 0 1 0.36,-0.67 3.42,3.42 0 0 1 0.3,-0.37 3.24,3.24 0 0 1 1.64,-1 l 0.34,0 a 2.72,2.72 0 0 1 1.42,0.29 3.55,3.55 0 0 1 0.85,0.48 3.86,3.86 0 0 1 0.39,0.33 4,4 0 0 1 0.36,0.39 3.45,3.45 0 0 1 0.28,0.4 3.39,3.39 0 0 1 0.47,1.4 c 0,0.11 0,0.21 0.06,0.32 m 11.25,8.77 a 2.71,2.71 0 0 1 0.67,-0.26 3.62,3.62 0 0 1 0.48,-0.09 4.57,4.57 0 0 1 2.12,0.21 l 0.37,0.15 a 4.36,4.36 0 0 1 1.34,1 5,5 0 0 1 0.36,0.38 4.39,4.39 0 0 1 0.31,0.41 4.24,4.24 0 0 1 0.27,0.44 3.76,3.76 0 0 1 0.21,0.46 2.73,2.73 0 0 1 0.12,0.42 m -1.11,4.16 m -13.56,-4.94 m -4.34,-1.23 a 3.27,3.27 0 0 1 0,-0.76 3.22,3.22 0 0 1 0.06,-0.46 2.52,2.52 0 0 1 0.81,-1.53 l 0.25,-0.16 a 2.08,2.08 0 0 1 1.27,-0.21 3.17,3.17 0 0 1 0.45,0.05 3.2,3.2 0 0 1 0.45,0.12 3.81,3.81 0 0 1 0.47,0.18 4.24,4.24 0 0 1 0.47,0.25 4,4 0 0 1 0.41,0.28 4.37,4.37 0 0 1 1,1.19 l 0.2,0.29 a 6,6 0 0 1 0.86,2.87 m -10.58,-8.12 a 5.91,5.91 0 0 1 0.6,0.66 c 0.11,0.14 0.22,0.29 0.33,0.46 a 5.47,5.47 0 0 1 0.87,1.95 2.71,2.71 0 0 1 0,0.32 m 3.26,4.18 a 2.12,2.12 0 0 1 0.53,-0.34 2.91,2.91 0 0 1 0.39,-0.15 3.62,3.62 0 0 1 1.86,-0.1 l 0.35,0.1 a 4,4 0 0 1 1.33,0.75 5,5 0 0 1 0.38,0.32 4.46,4.46 0 0 1 0.34,0.35 4.41,4.41 0 0 1 0.31,0.39 4,4 0 0 1 0.26,0.41 3.08,3.08 0 0 1 0.18,0.39 2.12,2.12 0 0 1 0.14,1.16 1.85,1.85 0 0 1 0,0.24 m -16.74,-7.94 m 13.06,8.45 a 2.5,2.5 0 0 1 0.66,-0.25 3.71,3.71 0 0 1 0.48,-0.09 4.91,4.91 0 0 1 2.17,0.21 l 0.39,0.15 a 5.08,5.08 0 0 1 1.45,1 c 0.14,0.12 0.28,0.25 0.4,0.38 a 5,5 0 0 1 0.35,0.4 4.89,4.89 0 0 1 0.32,0.43 4.07,4.07 0 0 1 0.25,0.45 2.87,2.87 0 0 1 0.16,0.41 1.78,1.78 0 0 1 0,1.16 m -4.82,-2.23 a 2.61,2.61 0 0 1 0,0.65 m 0.17,4.34 m -14.87,-4.82 m 13.83,5.63 a 1.77,1.77 0 0 1 0.12,-0.59 1.82,1.82 0 0 1 0.17,-0.33 2,2 0 0 1 1.25,-0.9 l 0.31,0 a 3.48,3.48 0 0 1 1.48,0.25 l 0.5,0.18 0.49,0.24 c 0.17,0.09 0.33,0.18 0.49,0.29 0.16,0.11 0.32,0.22 0.48,0.34 0.16,0.12 0.28,0.22 0.41,0.35 a 4.51,4.51 0 0 1 0.94,1.22 l 0.17,0.28 a 3.33,3.33 0 0 1 0.39,2.39 m -1.34,-1.69 m -16.47,-11.82 a 5.44,5.44 0 0 1 0.8,0.27 l 0.51,0.23 a 7.48,7.48 0 0 1 1.9,1.32 l 0.26,0.28 a 3.31,3.31 0 0 1 0.68,1.21 2.68,2.68 0 0 1 0.11,0.38 1.93,1.93 0 0 1 0,0.36 1.61,1.61 0 0 1 0,0.35 m -14.14,-11.5 a 4.12,4.12 0 0 1 0.82,0.09 l 0.53,0.13 a 6.23,6.23 0 0 1 2.09,1 l 0.31,0.27 a 4,4 0 0 1 0.92,1.28 3.87,3.87 0 0 1 0.2,0.43 3,3 0 0 1 0.13,0.43 2.68,2.68 0 0 1 0.07,0.43 2.2,2.2 0 0 1 0,0.42 m 22.42,2.67 a 2.56,2.56 0 0 1 0,-0.64 2.43,2.43 0 0 1 0.07,-0.38 2,2 0 0 1 0.79,-1.22 l 0.23,-0.12 a 2,2 0 0 1 1.16,-0.08 l 0.41,0.08 0.41,0.13 a 3.84,3.84 0 0 1 0.42,0.19 4.29,4.29 0 0 1 0.42,0.25 3.89,3.89 0 0 1 0.36,0.27 4,4 0 0 1 0.9,1.07 l 0.17,0.25 a 4.78,4.78 0 0 1 0.68,2.45 m -14.24,7.9 a 9.48,9.48 0 0 1 0.83,0.6 l 0.49,0.42 a 8,8 0 0 1 1.57,1.8 3.3,3.3 0 0 1 0.15,0.3 1.37,1.37 0 0 1 0.09,1.05 m 1.96,-19.39 a 2.12,2.12 0 0 1 0.4,-0.5 2.55,2.55 0 0 1 0.32,-0.26 2.92,2.92 0 0 1 1.67,-0.55 l 0.33,0 a 3.33,3.33 0 0 1 1.37,0.52 4.45,4.45 0 0 1 0.42,0.26 4.28,4.28 0 0 1 0.38,0.31 4.53,4.53 0 0 1 0.37,0.35 4.33,4.33 0 0 1 0.33,0.4 3.58,3.58 0 0 1 0.25,0.39 2.88,2.88 0 0 1 0.38,1.27 2.62,2.62 0 0 1 0,0.28 m -17.81,15.36 M 279.09,485 m -0.42,-5.15 a 4.06,4.06 0 0 1 0.26,0.66 3.72,3.72 0 0 1 0.1,0.41 m 2.15,-3.74 m -11.05,4.44 m 4.22,-7.31 m 6.97,-0.75 m -13.96,-2.9 a 2.29,2.29 0 0 1 0.28,-0.59 2.83,2.83 0 0 1 1.68,-1.18 l 0.31,0 a 2.74,2.74 0 0 1 1.32,0.29 3.79,3.79 0 0 1 0.81,0.45 4.09,4.09 0 0 1 0.39,0.3 4.22,4.22 0 0 1 0.36,0.35 3.67,3.67 0 0 1 0.28,0.36 3.24,3.24 0 0 1 0.54,1.25 c 0,0.09 0.06,0.19 0.08,0.28 m 6.24,-5.49 a 4.83,4.83 0 0 1 0.23,0.82 5,5 0 0 1 0.07,0.51 m -20.08,1.05 a 5.46,5.46 0 0 1 0.56,0.59 c 0.1,0.12 0.2,0.26 0.31,0.41 a 5,5 0 0 1 0.84,1.75 2.52,2.52 0 0 1 0,0.29 m 8.1,-4.35 m 5.4,-1.97 m -17.29,-4.14 a 3.3,3.3 0 0 1 0.76,-0.11 4.22,4.22 0 0 1 0.5,0 4.65,4.65 0 0 1 2,0.59 l 0.31,0.21 a 3.51,3.51 0 0 1 1,1.15 3.83,3.83 0 0 1 0.23,0.42 3.37,3.37 0 0 1 0.17,0.43 3.3,3.3 0 0 1 0.12,0.45 2.94,2.94 0 0 1 0.05,0.46 2.25,2.25 0 0 1 0,0.4 M 265.06,465 M 250,460.27 a 4.67,4.67 0 0 1 0.77,0.38 c 0.15,0.09 0.3,0.19 0.46,0.31 a 5.78,5.78 0 0 1 1.56,1.63 q 0.1,0.16 0.17,0.33 a 2.85,2.85 0 0 1 0.29,1.38 2.66,2.66 0 0 1 0,0.42 m 4.31,-6.65 a 3.24,3.24 0 0 1 0.22,-0.71 3.63,3.63 0 0 1 0.21,-0.42 3.21,3.21 0 0 1 1.3,-1.29 l 0.29,-0.11 a 2.21,2.21 0 0 1 1.28,0 2.81,2.81 0 0 1 0.41,0.11 2.75,2.75 0 0 1 0.39,0.17 3,3 0 0 1 0.39,0.23 3.16,3.16 0 0 1 0.36,0.3 3,3 0 0 1 0.29,0.32 3.13,3.13 0 0 1 0.58,1.24 c 0,0.1 0.07,0.19 0.09,0.29 m -10.82,0.61 a 4.71,4.71 0 0 1 0.14,0.84 5,5 0 0 1 0,0.53 m 14.13,-9.44 a 3.21,3.21 0 0 1 0.38,-0.6 3.72,3.72 0 0 1 0.3,-0.34 3.36,3.36 0 0 1 1.51,-0.93 l 0.29,-0.05 a 2.1,2.1 0 0 1 1.18,0.21 2.54,2.54 0 0 1 0.35,0.17 2.4,2.4 0 0 1 0.32,0.22 2.56,2.56 0 0 1 0.3,0.28 2.75,2.75 0 0 1 0.26,0.33 2.48,2.48 0 0 1 0.19,0.34 2.67,2.67 0 0 1 0.25,1.22 c 0,0.09 0,0.18 0,0.28 m -9.57,0.38 M 253.7,454 m -4.22,-4.23 a 3.79,3.79 0 0 1 0.43,0.59 4.63,4.63 0 0 1 0.22,0.41 4.27,4.27 0 0 1 0.48,1.8 2.7,2.7 0 0 1 0,0.31 M 270.46,441 a 3.74,3.74 0 0 1 0.47,0.65 5.17,5.17 0 0 1 0.71,2.52 3.37,3.37 0 0 1 0,0.36 m -12.35,-2.83 a 3.12,3.12 0 0 1 0.69,0 l 0.43,0.08 a 3.26,3.26 0 0 1 1.53,0.81 l 0.19,0.23 a 2.25,2.25 0 0 1 0.44,1.12 2.73,2.73 0 0 1 0,0.39 2.53,2.53 0 0 1 0,0.39 m -11.28,2.63 m 14.71,-6 m -2,-0.13 m -21,4.07 m 1,-3.88 m 17.26,-6.25 M 246,433.84 a 3.34,3.34 0 0 1 0.23,0.7 4.27,4.27 0 0 1 0.08,0.48 m 8.12,-6.83 a 2.72,2.72 0 0 1 0.63,0.24 2.93,2.93 0 0 1 0.36,0.22 2.77,2.77 0 0 1 1,1.3 2.24,2.24 0 0 1 0.08,0.29 m 0.23,-1.52 A 3.92,3.92 0 0 1 257,428 a 5,5 0 0 1 0.23,-0.45 5.16,5.16 0 0 1 1.32,-1.58 l 0.29,-0.19 a 2.75,2.75 0 0 1 1.24,-0.42 l 0.39,0 a 2.08,2.08 0 0 1 0.37,0 1.88,1.88 0 0 1 0.36,0.09 1.72,1.72 0 0 1 0.33,0.16 1.43,1.43 0 0 1 0.26,0.2 1.67,1.67 0 0 1 0.47,0.95 1.92,1.92 0 0 1 0.07,0.24 m -7.72,3.67 m -7.07,-5.85 a 2.5,2.5 0 0 1 0.55,0.39 2.83,2.83 0 0 1 0.29,0.31 3,3 0 0 1 0.71,1.6 2.64,2.64 0 0 1 0,0.32 m 6.05,-6.44 a 2.44,2.44 0 0 1 0.52,0.47 2.81,2.81 0 0 1 0.26,0.36 3.19,3.19 0 0 1 0.51,1.82 3,3 0 0 1 0,0.35 m 16.98,6.72 m -19.86,-13.2 m 10.81,1.12 a 6.3,6.3 0 0 1 0.29,-1.44 8.65,8.65 0 0 1 0.35,-0.93 10.67,10.67 0 0 1 2.46,-3.55 c 0.19,-0.18 0.39,-0.35 0.6,-0.51 a 11,11 0 0 1 3.6,-1.73 6.48,6.48 0 0 1 0.86,-0.16 5.72,5.72 0 0 1 0.84,-0.06 4.5,4.5 0 0 1 0.8,0.07 3.07,3.07 0 0 1 0.65,0.18 2.35,2.35 0 0 1 1.32,1.34 2.62,2.62 0 0 1 0.22,0.37 c 0.84,1.8 -0.09,4.79 -0.07,4.79 m -30.15,9.06 m 15.94,18.3 m 3.67,-43.05 a 2.54,2.54 0 0 1 0.33,0.91 3.79,3.79 0 0 1 0.06,0.67 m -3.49,11.65 m -9,40.26 m -1.97,3.82 a 6.72,6.72 0 0 1 0,-1.51 7.31,7.31 0 0 1 0.19,-0.93 c 0.43,-1.1 0.77,-2.45 1.81,-3.21 a 4.54,4.54 0 0 1 0.49,-0.37 4.12,4.12 0 0 1 2.36,-0.7 4.93,4.93 0 0 1 0.8,0 4.64,4.64 0 0 1 0.79,0.14 5.07,5.07 0 0 1 0.8,0.26 5.47,5.47 0 0 1 0.78,0.4 5.1,5.1 0 0 1 0.66,0.48 6,6 0 0 1 1.57,2.15 c 0.11,0.17 0.2,0.35 0.29,0.53 a 12.43,12.43 0 0 1 1,5.55 m 3.73,-46.82 m 8.12,11.62 m 7.35,-9.12 m -13.35,15.63 m 12.74,16.67 m 3.65,7.28 a 8.23,8.23 0 0 1 0.06,1.49 m 1.83,-49.91 a 15.56,15.56 0 0 1 1.67,-1.18 c 0.34,-0.21 0.72,-0.43 1.13,-0.65 a 15.75,15.75 0 0 1 4.66,-1.73 c 0.25,0 0.49,-0.06 0.73,-0.07 a 3.57,3.57 0 0 1 2.31,0.53 2.58,2.58 0 0 1 0.53,0.37 2.11,2.11 0 0 1 0.39,0.48 2.28,2.28 0 0 1 0.28,0.58 2.8,2.8 0 0 1 0.12,0.7 3.26,3.26 0 0 1 0,0.7 m -13.45,19.15 m 13.88,0.78 m 0.22,21.6 m 14.49,-48.88 a 4.26,4.26 0 0 1 1.16,0.48 3.68,3.68 0 0 1 0.58,0.44 c 0.53,0.71 1.37,1.36 1.19,2.56 m -20.58,25.03 a 6.09,6.09 0 0 1 0.52,1.31 8.07,8.07 0 0 1 0.2,0.91 m 3.69,-10.82 M 275,419.34 m 32.83,-7.28 a 4,4 0 0 1 0.9,0.91 4.68,4.68 0 0 1 0.42,0.7 c 0.33,1 0.94,2.08 0.59,3.51 m -12.46,3.75 M 300,431.5 m -23.46,-10.95 m 12,7.86 a 9.22,9.22 0 0 1 1.15,-1.07 c 0.24,-0.19 0.51,-0.39 0.81,-0.59 a 9.29,9.29 0 0 1 3.56,-1.51 5,5 0 0 1 0.6,0 4.27,4.27 0 0 1 2.64,1 3,3 0 0 1 0.45,0.48 3.35,3.35 0 0 1 0.37,0.57 3.9,3.9 0 0 1 0.4,1.35 m -9.58,11.86 m -16.35,-20.13 m -9.38,-7.03 a 4.81,4.81 0 0 1 0,1.2 m 9.96,11.83 m 20.66,32.92 M 251.4,433.32 m 23.34,9.14 a 9.62,9.62 0 0 1 0.12,1.71 c 0,0.34 0,0.71 -0.06,1.1 -0.28,1.37 -0.34,3 -1.22,4.17 M 254.4,442.3 m -4.09,4.42 a 7.33,7.33 0 0 1 0.61,-1.46 8.51,8.51 0 0 1 0.53,-0.86 c 0.83,-1 1.66,-2.21 3,-2.7 a 5.57,5.57 0 0 1 0.62,-0.25 4.47,4.47 0 0 1 2.57,-0.11 4.86,4.86 0 0 1 0.79,0.2 4.45,4.45 0 0 1 0.73,0.33 4.74,4.74 0 0 1 0.7,0.44 5,5 0 0 1 0.64,0.58 4.56,4.56 0 0 1 0.49,0.63 5.54,5.54 0 0 1 0.84,2.48 c 0,0.19 0.09,0.39 0.11,0.59 m -3.56,2.76 m 10.26,5.98 a 10.61,10.61 0 0 1 0.62,1.65 c 0.1,0.33 0.19,0.69 0.26,1.08 0.14,1.38 0.55,2.94 0.07,4.23 m -18.94,-11.98 a 7.09,7.09 0 0 1 1.53,0.18 8.54,8.54 0 0 1 1,0.27 8.7,8.7 0 0 1 3.49,2.1 6.89,6.89 0 0 1 0.46,0.54 6.07,6.07 0 0 1 1.16,2.58 6.75,6.75 0 0 1 0.18,0.87 5.82,5.82 0 0 1 0.05,0.86 m -19.13,1.99 m 24.12,4.09 a 11.11,11.11 0 0 1 1.52,1 c 0.28,0.22 0.59,0.47 0.9,0.76 a 13.7,13.7 0 0 1 3,3.66 c 0.12,0.23 0.22,0.46 0.31,0.69 a 5.3,5.3 0 0 1 0.41,2.71 m 7.97,13.65 M 251.37,468 M 267,454.93 a 7.77,7.77 0 0 1 1.28,0.75 c 0.24,0.17 0.5,0.37 0.76,0.59 a 9.82,9.82 0 0 1 2.47,3 c 0.09,0.2 0.18,0.4 0.25,0.6 a 5,5 0 0 1 0.29,2.45 m 1.42,0.79 a 5.47,5.47 0 0 1 1.27,-0.51 7,7 0 0 1 0.88,-0.18 7.69,7.69 0 0 1 3.79,0.33 6.65,6.65 0 0 1 2.84,2.09 8.06,8.06 0 0 1 0.58,0.71 9,9 0 0 1 0.89,1.58 6.62,6.62 0 0 1 0.3,0.86 5.12,5.12 0 0 1 0.15,0.78 m -9,9.69 m -12.96,-6.68 a 14.47,14.47 0 0 1 1.37,1.37 c 0.25,0.28 0.52,0.6 0.78,0.94 0.84,1.27 2,2.64 2.3,4 a 6.22,6.22 0 0 1 0.16,0.67 M 278.38,459 a 10,10 0 0 1 1.52,0.95 c 0.28,0.21 0.59,0.46 0.9,0.73 a 12.8,12.8 0 0 1 3,3.65 c 0.12,0.23 0.22,0.47 0.31,0.71 a 5.71,5.71 0 0 1 0.39,2.83 m 4.05,-5.41 M 274,455.74 a 6,6 0 0 1 0.59,-1.29 6.83,6.83 0 0 1 0.51,-0.74 c 0.79,-0.81 1.57,-1.88 2.8,-2.19 a 4.63,4.63 0 0 1 0.58,-0.16 4.28,4.28 0 0 1 2.44,0.21 5.22,5.22 0 0 1 0.75,0.28 5.08,5.08 0 0 1 0.7,0.4 5.5,5.5 0 0 1 0.68,0.51 5.88,5.88 0 0 1 0.62,0.63 5.41,5.41 0 0 1 0.48,0.65 5.9,5.9 0 0 1 0.84,2.43 q 0.07,0.28 0.12,0.56 m 8.22,-15.73 a 6.59,6.59 0 0 1 1.41,0.45 8.52,8.52 0 0 1 3.62,3.06 6,6 0 0 1 0.3,0.6 5.47,5.47 0 0 1 0.44,2.65 m -26.87,-2.19 a 8.4,8.4 0 0 1 1.18,1.21 10.66,10.66 0 0 1 0.65,0.88 c 0.66,1.24 1.62,2.54 1.73,4.09 a 7.05,7.05 0 0 1 0.07,0.74 m -7.66,-3.27 m 18.54,-17.08 a 8.62,8.62 0 0 1 1.51,-0.62 9.37,9.37 0 0 1 1,-0.25 c 1.25,-0.12 2.68,-0.46 3.82,0.09 a 4.24,4.24 0 0 1 0.55,0.25 3.72,3.72 0 0 1 1.64,1.75 4.75,4.75 0 0 1 0.57,1.49 5.4,5.4 0 0 1 0.13,0.84 6,6 0 0 1 0,0.9 M 261,446.66 m 22.14,-7.46 m -15.27,-3.88 a 7.31,7.31 0 0 1 0,-1.68 9,9 0 0 1 0.16,-1.08 9.72,9.72 0 0 1 1.88,-4.17 q 0.25,-0.31 0.54,-0.59 a 7,7 0 0 1 2.67,-1.69 7.28,7.28 0 0 1 0.92,-0.32 6,6 0 0 1 0.91,-0.18 5.63,5.63 0 0 1 0.92,-0.06 5,5 0 0 1 0.9,0.1 3.83,3.83 0 0 1 0.76,0.23 3.69,3.69 0 0 1 1.79,1.62 4.12,4.12 0 0 1 0.33,0.44 c 1.37,2.15 1.07,5.66 1.08,5.66 m 4.07,-8.13 a 6.63,6.63 0 0 1 0.29,-1.43 8.77,8.77 0 0 1 0.34,-0.91 10,10 0 0 1 2.33,-3.39 c 0.18,-0.16 0.36,-0.32 0.55,-0.46 a 6.8,6.8 0 0 1 2.51,-1.23 6.53,6.53 0 0 1 0.81,-0.2 5.06,5.06 0 0 1 0.78,-0.08 4.57,4.57 0 0 1 0.77,0 3.79,3.79 0 0 1 0.72,0.15 2.81,2.81 0 0 1 0.59,0.26 2.67,2.67 0 0 1 1.19,1.52 3.15,3.15 0 0 1 0.19,0.4 c 0.75,1.95 -0.11,4.91 -0.1,4.91 m -0.5,-12.76 a 4.52,4.52 0 0 1 1.16,0.68 4.71,4.71 0 0 1 0.6,0.57 c 0.56,0.89 1.43,1.75 1.33,3.13 a 5.14,5.14 0 0 1 0,0.66 m -33.86,6.86 a 7.09,7.09 0 0 1 0.45,-1.4 9.34,9.34 0 0 1 0.43,-0.88 10.49,10.49 0 0 1 2.61,-3.19 c 0.19,-0.15 0.38,-0.28 0.58,-0.41 a 6.43,6.43 0 0 1 2.51,-1 5.93,5.93 0 0 1 0.79,-0.13 4.54,4.54 0 0 1 0.74,0 4,4 0 0 1 0.72,0.09 3.31,3.31 0 0 1 0.66,0.22 2.51,2.51 0 0 1 0.52,0.31 2.67,2.67 0 0 1 0.95,1.65 3.25,3.25 0 0 1 0.14,0.43 c 0.5,2 -0.62,4.94 -0.62,4.94 a 4.87,4.87 0 0 0 0,-1.47 M 240,422.34 a 5,5 0 0 1 1.2,0.44 5.22,5.22 0 0 1 0.67,0.41 c 0.72,0.68 1.69,1.29 1.93,2.45 a 4.22,4.22 0 0 1 0.13,0.55 m 16.68,-6.3 m -0.51,-5.74 m 15.07,8.3 a 10.71,10.71 0 0 1 1.43,-0.92 c 0.29,-0.16 0.61,-0.32 1,-0.47 1.24,-0.43 2.65,-1.08 3.88,-0.92 a 4.54,4.54 0 0 1 0.59,0.07 3,3 0 0 1 1.86,1.05 3.1,3.1 0 0 1 0.73,1.12 3.61,3.61 0 0 1 0.21,0.69 4.28,4.28 0 0 1 0.08,0.78 4.37,4.37 0 0 1 0,0.75 m -38.31,4.26 m 44.85,-7.8 a 7.15,7.15 0 0 1 0.41,-1.51 9.68,9.68 0 0 1 0.42,-1 11.41,11.41 0 0 1 2.74,-3.58 c 0.2,-0.17 0.41,-0.33 0.63,-0.49 a 8,8 0 0 1 2.79,-1.29 7.52,7.52 0 0 1 0.89,-0.21 5.74,5.74 0 0 1 0.85,-0.09 5,5 0 0 1 0.83,0 4,4 0 0 1 0.77,0.16 2.84,2.84 0 0 1 0.61,0.27 2.57,2.57 0 0 1 1.17,1.6 3,3 0 0 1 0.18,0.42 c 0.67,2.05 -0.45,5.19 -0.44,5.19 m -50.6,1.47 m 9.54,-5 m -6.87,8.94 a 7.55,7.55 0 0 1 0.43,-1.54 9.93,9.93 0 0 1 0.43,-1 11.06,11.06 0 0 1 2.73,-3.53 q 0.3,-0.24 0.62,-0.46 a 7,7 0 0 1 2.72,-1.14 6.44,6.44 0 0 1 0.86,-0.16 5,5 0 0 1 0.82,0 4.44,4.44 0 0 1 0.8,0.09 3.76,3.76 0 0 1 0.74,0.23 2.82,2.82 0 0 1 0.59,0.33 3,3 0 0 1 1.11,1.79 3.62,3.62 0 0 1 0.17,0.46 c 0.63,2.22 -0.48,5.41 -0.47,5.41 m -8.53,2.36 a 7.31,7.31 0 0 1 0.26,-1.6 9.33,9.33 0 0 1 0.34,-1 10.57,10.57 0 0 1 2.46,-3.81 q 0.29,-0.27 0.6,-0.52 a 7.24,7.24 0 0 1 2.75,-1.38 7.11,7.11 0 0 1 0.9,-0.23 5.57,5.57 0 0 1 0.87,-0.09 5,5 0 0 1 0.86,0 4.24,4.24 0 0 1 0.81,0.18 3.2,3.2 0 0 1 0.66,0.29 3.16,3.16 0 0 1 1.38,1.72 3.72,3.72 0 0 1 0.23,0.45 c 0.92,2.2 0.09,5.52 0.1,5.53 m 1.43,2.31 a 5.91,5.91 0 0 1 0.85,1.18 7.63,7.63 0 0 1 0.41,0.85 8.55,8.55 0 0 1 0.72,3.92 m 4.25,27.33 m -4.04,-46.75 a 11.06,11.06 0 0 1 1.63,-0.6 c 0.32,-0.09 0.67,-0.18 1,-0.25 1.27,-0.13 2.78,-0.47 3.82,0 a 3.42,3.42 0 0 1 0.51,0.23 2.66,2.66 0 0 1 1.31,1.65 3.55,3.55 0 0 1 0.21,0.68 3.9,3.9 0 0 1 0.07,0.74 4.77,4.77 0 0 1 0,0.81 m -7.55,-1.77 a 11,11 0 0 1 1.19,-1.27 c 0.25,-0.23 0.54,-0.48 0.86,-0.73 a 12.84,12.84 0 0 1 3.89,-2.19 c 0.23,-0.07 0.45,-0.13 0.67,-0.17 a 4.29,4.29 0 0 1 2.42,0.11 3.4,3.4 0 0 1 0.64,0.24 2.67,2.67 0 0 1 0.54,0.35 2.6,2.6 0 0 1 0.46,0.46 2.83,2.83 0 0 1 0.54,1.18 m 3.3,35.64 a 8.69,8.69 0 0 1 0,1.57 m 1.71,-13.72 a 8,8 0 0 1 0.12,1.46 c 0,0.29 0,0.61 0,0.95 m -8.8,0.77 a 7.73,7.73 0 0 1 0.8,-1.4 9.13,9.13 0 0 1 0.64,-0.81 c 1,-0.89 1.94,-2.05 3.29,-2.43 a 5.65,5.65 0 0 1 0.64,-0.19 4.41,4.41 0 0 1 2.57,0.13 4.74,4.74 0 0 1 0.76,0.27 4.33,4.33 0 0 1 0.69,0.4 4.58,4.58 0 0 1 0.65,0.51 4.84,4.84 0 0 1 0.56,0.64 4.55,4.55 0 0 1 0.42,0.68 5.56,5.56 0 0 1 0.55,2.57 q 0,0.3 0,0.6 m -0.99,-15.01 m -0.05,3.26 A 7.56,7.56 0 0 1 292,433 m 18,-16.68 m -22.8,-4.92 a 3.31,3.31 0 0 1 0.74,0.79 3.92,3.92 0 0 1 0.34,0.61 5,5 0 0 1 0.4,3 m -23.44,-10.98 a 3,3 0 0 1 0.52,1 4.16,4.16 0 0 1 0.17,0.71 m 1.6,6.19 a 9.61,9.61 0 0 1 0.9,-1.57 c 0.21,-0.3 0.45,-0.63 0.73,-1 a 15.6,15.6 0 0 1 3.89,-3.43 q 0.38,-0.23 0.78,-0.43 a 8.88,8.88 0 0 1 3.14,-1 7.35,7.35 0 0 1 0.93,-0.09 5.12,5.12 0 0 1 0.85,0 4.15,4.15 0 0 1 0.79,0.16 3.11,3.11 0 0 1 0.68,0.3 2.18,2.18 0 0 1 0.5,0.39 2.52,2.52 0 0 1 0.6,1.95 3.45,3.45 0 0 1 0,0.49 c 0,2.36 -2,5.61 -2,5.61 a 6.15,6.15 0 0 0 0.37,-1.69 4.84,4.84 0 0 0 0,-0.74 m 13.5,5.88 a 4.65,4.65 0 0 1 0.3,1.2 6.67,6.67 0 0 1 0.05,0.83 M 269.89,419 m -9.89,0.33 a 11.34,11.34 0 0 1 1.22,-1.37 c 0.26,-0.25 0.56,-0.52 0.89,-0.79 a 13.53,13.53 0 0 1 4.07,-2.4 c 0.24,-0.08 0.48,-0.15 0.72,-0.2 a 4.7,4.7 0 0 1 2.59,0 3.75,3.75 0 0 1 0.7,0.23 2.89,2.89 0 0 1 0.59,0.35 2.8,2.8 0 0 1 0.51,0.47 2.85,2.85 0 0 1 0.39,0.59 2.79,2.79 0 0 1 0.23,0.63 m -10.17,10.98 m 29.1,17.34 m -31.96,-13.21 m -19.95,-5.56 a 10.44,10.44 0 0 1 1.14,-1.43 c 0.25,-0.26 0.53,-0.54 0.85,-0.82 a 12.15,12.15 0 0 1 4,-2.47 7.31,7.31 0 0 1 0.71,-0.2 4.62,4.62 0 0 1 2.65,0.11 4.08,4.08 0 0 1 0.73,0.27 4.08,4.08 0 0 1 1.19,0.9 3.51,3.51 0 0 1 0.44,0.64 3.41,3.41 0 0 1 0.28,0.68 5.07,5.07 0 0 1 0,2.59 c 0,0.2 0,0.4 -0.08,0.61 A 15.62,15.62 0 0 1 248,433 a 7.68,7.68 0 0 0 0.65,-1.77 7.86,7.86 0 0 0 0.16,-0.86 m 0.89,11.78 m 17.48,7.56 a 6.49,6.49 0 0 1 0.52,-1.34 7.49,7.49 0 0 1 0.46,-0.78 7.06,7.06 0 0 1 2.63,-2.47 4.8,4.8 0 0 1 0.56,-0.23 4.08,4.08 0 0 1 2.36,-0.09 4.61,4.61 0 0 1 0.73,0.18 4.3,4.3 0 0 1 0.69,0.3 4.59,4.59 0 0 1 0.66,0.41 4.81,4.81 0 0 1 0.6,0.54 4.44,4.44 0 0 1 0.48,0.58 5.27,5.27 0 0 1 0.85,2.28 c 0.05,0.18 0.09,0.36 0.12,0.54 m -9.12,-3.82 a 9.12,9.12 0 0 1 0.27,1.6 c 0,0.32 0,0.67 0,1 -0.14,1.3 -0.05,2.81 -0.77,4 m -23.73,-11.05 a 8.28,8.28 0 0 1 1.55,-0.72 9.35,9.35 0 0 1 1,-0.3 c 1.34,-0.17 2.85,-0.58 4.18,0 a 5.26,5.26 0 0 1 0.64,0.26 4.79,4.79 0 0 1 2.05,1.87 6,6 0 0 1 0.48,0.77 5.85,5.85 0 0 1 0.36,0.84 6.41,6.41 0 0 1 0.26,0.92 6.72,6.72 0 0 1 0.13,1 5.93,5.93 0 0 1 0,0.91 m 10.59,7.23 m 9.96,13.26 m 8.54,9.6 m -20.04,-7.16 a 5.75,5.75 0 0 1 0.27,-1.49 6.11,6.11 0 0 1 0.35,-0.87 c 0.64,-1 1.21,-2.24 2.5,-2.69 a 4.5,4.5 0 0 1 0.61,-0.23 4.89,4.89 0 0 1 2.78,0 6.74,6.74 0 0 1 0.91,0.25 6.84,6.84 0 0 1 0.89,0.38 7.83,7.83 0 0 1 0.89,0.51 8.49,8.49 0 0 1 0.86,0.65 7.8,7.8 0 0 1 0.72,0.69 8.2,8.2 0 0 1 1.62,2.64 c 0.11,0.2 0.2,0.41 0.29,0.61 a 11,11 0 0 1 0.66,5.73 M 269,459.5 a 5.22,5.22 0 0 1 0.85,-1 6.78,6.78 0 0 1 3.85,-1.77 4.8,4.8 0 0 1 0.61,0 4.85,4.85 0 0 1 2.37,0.87 6.2,6.2 0 0 1 0.69,0.47 5.94,5.94 0 0 1 0.63,0.56 6.53,6.53 0 0 1 0.58,0.65 6.71,6.71 0 0 1 0.5,0.74 5.81,5.81 0 0 1 0.37,0.73 5.47,5.47 0 0 1 0.42,2.43 5.35,5.35 0 0 1 0,0.54 m 26.68,-27.58 a 6,6 0 0 1 1.08,0.9 7.23,7.23 0 0 1 0.59,0.69 7.78,7.78 0 0 1 1.56,3.41 6.14,6.14 0 0 1 0.06,0.66 m -15.55,2.55 m -35.78,5.58 a 6.67,6.67 0 0 1 1.47,-0.15 7.89,7.89 0 0 1 0.95,0.06 7.79,7.79 0 0 1 3.64,1.28 5.94,5.94 0 0 1 0.52,0.42 5.66,5.66 0 0 1 1.52,2.26 6.64,6.64 0 0 1 0.31,0.82 6,6 0 0 1 0.19,0.84 6.08,6.08 0 0 1 0.1,0.87 5.7,5.7 0 0 1 0,0.88 m -15.01,0.25 m 12.25,-3.3 m 38.74,-31.24 a 6.89,6.89 0 0 1 0,1.43 c 0,0.29 -0.07,0.61 -0.13,1 m -26.97,15.13 m 12.83,-22.22 a 4.21,4.21 0 0 1 1,0.73 4.76,4.76 0 0 1 0.51,0.58 5.24,5.24 0 0 1 1.12,3 5.17,5.17 0 0 1 0,0.61 M 279,417.94 a 5.15,5.15 0 0 1 1.26,0.58 5.36,5.36 0 0 1 0.69,0.51 c 0.7,0.82 1.69,1.59 1.8,2.93 a 4.9,4.9 0 0 1 0.07,0.64 m -10.2,-3.3 a 4,4 0 0 1 0.69,0.94 5.11,5.11 0 0 1 0.31,0.7 6.26,6.26 0 0 1 0.35,3.29 M 300.44,405 a 2.84,2.84 0 0 1 0.68,0.78 3.39,3.39 0 0 1 0.29,0.6 4.68,4.68 0 0 1 0.1,3 m -49.44,17.21 c -1.31,-6.13 4.08,-11.39 10.91,-11.95 l 35.34,-2.93 c 6.88,-0.56 7.69,3.69 2.89,9.77 C 290,435.68 283,451 280.2,465.4 c -1,6.14 -5.61,6.18 -10.22,0.1 -9.26,-12.75 -15.23,-26.16 -17.91,-38.91 z" + class="hair" /></g><g + inkscape:groupmode="layer" + id="Pubic_Hair_Neat" + inkscape:label="Pubic_Hair_Neat" + style="display:inline"><path + d="M 487.94,432.27" + class="hair" + id="path225" + inkscape:connector-curvature="0" /><path + d="m 264.63236,432.7941 3.08824,-0.44117 c 0.32893,-6.46544 2.86908,-11.82526 5.07352,-17.35295 -5.56875,0.43615 -11.6036,0.4062 -16.47058,1.54412 2.07073,5.53315 5.0715,10.91128 8.30882,16.25 z" + id="path5158" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" + class="hair" /></g><g + inkscape:groupmode="layer" + id="Pubic_Hair_Strip" + inkscape:label="Pubic_Hair_Strip" + style="display:inline"><path + d="m 263.75,419.9043 c -8.2e-4,-10e-6 -0.58714,0.1188 -0.58789,0.11914 -7.6e-4,3.3e-4 -0.41533,0.28448 -0.41602,0.28515 -6.8e-4,6.8e-4 -0.16844,0.19228 -0.21679,0.27149 -0.0484,0.0792 -0.0782,0.14597 -0.10157,0.20312 -0.0467,0.11431 -0.0651,0.19149 -0.0781,0.25391 -0.026,0.12484 -0.0284,0.19225 -0.0312,0.25 -0.0112,0.23101 0.006,0.32495 0.0215,0.48047 0.0306,0.31104 0.0857,0.72068 0.16211,1.23047 0.15277,1.01958 0.38676,2.41502 0.63867,3.85937 0.25192,1.44435 0.5224,2.93411 0.74805,4.125 0.22565,1.19089 0.34624,1.90055 0.50586,2.4336 a 1.40014,1.40014 0 1 0 2.68164,-0.80274 c 0.0212,0.0709 -0.21519,-0.97908 -0.4375,-2.15234 -0.22231,-1.17326 -0.49061,-2.65278 -0.74023,-4.08399 -0.24963,-1.4312 -0.48059,-2.81807 -0.62696,-3.79492 -0.0673,-0.44897 -0.1114,-0.78286 -0.13476,-1 a 1.40014,1.40014 0 0 0 -0.17774,-0.96289 c -0.0508,-0.0871 -0.0847,-0.21273 -0.39257,-0.43945 -0.077,-0.0567 -0.30966,-0.17347 -0.31055,-0.17383 -8.9e-4,-3.6e-4 -0.50504,-0.10155 -0.50586,-0.10156 z" + id="path4354" + inkscape:connector-curvature="0" + class="hair" /></g></g><g + inkscape:groupmode="layer" + id="Hip_Addon_" + inkscape:label="Hip_Addon_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Chastity_Base" + inkscape:label="Chastity_Base"><path + inkscape:connector-curvature="0" + d="m 236.4,400.6 c 6.8,4 16.8,8.7 29.3,10.4 10.8,1.4 18.7,-0.1 30.7,-2.5 24,-4.8 46,-14.3 46,-14.3 0,0 2.9,-0.9 4.1,4.2 1.2,5.1 -3.4,4.8 -3.4,4.8 -8.7,3.4 -16.6,6 -23.8,8.1 -4.5,1.3 -10.6,3.1 -18.9,4.8 -8.7,1.8 -16.1,3.3 -26,3.2 -3.2,0 -7.7,0 -13.2,-0.9 -6.1,-1 -15.8,-3.3 -26.9,-10.1 -2.5,-0.2 -4.1,-3 -4,-5.4 0.1,-1.2 0.7,-3.4 2.5,-3.8 1.3,-0.2 2.6,0.4 3.6,1.5 z" + id="path5" /><path + inkscape:connector-curvature="0" + class="steel_chastity" + d="m 235,399.2 c 2.9,1.9 6.9,4.2 11.9,6.2 0,0 7.7,3.2 16.8,4.7 11.3,1.9 40.9,-2.4 77.3,-17.3 0,0 2.9,-0.9 4.1,4.2 1.2,5.1 -3.4,4.8 -3.4,4.8 -8.7,3.4 -16.6,6 -23.8,8.1 -5.5,1.6 -11.5,3.3 -18.9,4.8 -11,2.1 -23.2,4.5 -37.7,2.3 -6.6,-1 -16.8,-3.4 -28.3,-10 -2.5,-0.2 -4.1,-3 -4,-5.4 0.1,-1.2 0.7,-3.4 2.5,-3.8 1.2,-0.2 2.5,0.3 3.5,1.4 z" + id="path7-0" /><rect + x="266.56778" + y="396.92795" + transform="matrix(0.99985995,0.01673551,-0.01673551,0.99985995,0,0)" + width="10.100405" + height="20.000801" + id="rect9" /><rect + x="266.5625" + y="396.93604" + transform="matrix(0.99985995,0.01673551,-0.01673551,0.99985995,0,0)" + class="steel_chastity" + width="9.1003647" + height="19.400776" + id="rect11-4" /><circle + r="2.9001162" + transform="matrix(0.01673551,-0.99985995,0.99985995,0.01673551,0,0)" + cx="-403.1557" + cy="271.13889" + id="ellipse13" /><rect + x="270.47305" + y="402.33627" + transform="matrix(0.99985995,0.01673551,-0.01673551,0.99985995,0,0)" + width="1.400056" + height="9.8003931" + id="rect15" /></g><g + inkscape:groupmode="layer" + id="Chastity_Vagina" + inkscape:label="Chastity_Vagina"><path + inkscape:connector-curvature="0" + d="m 233.7,401.7 c 8.8,3.6 21.3,7.4 36.6,8.6 23,1.7 41.4,-3.5 52,-7.4 -7.9,5.3 -20.7,15.5 -31.1,32.6 -7.9,13 -11.5,25.2 -13.2,33.6 -1.4,8.4 -3,10 -4.1,10.1 -2.1,0.2 -3.9,-5.4 -7,-14.5 -2.9,-8.3 -6.1,-16.5 -8.7,-24.9 -2.8,-9.5 -9.1,-22.6 -24.5,-38.1 z" + id="path5-7" /><path + inkscape:connector-curvature="0" + class="steel_chastity" + d="m 232.2,399.9 c 8.9,3.6 21.7,7.5 37.3,8.7 23.4,1.7 42.1,-3.5 53,-7.5 -8,5.4 -21.1,15.7 -31.7,32.8 -8,13.1 -11.7,25.4 -13.5,33.8 -1.2,5.8 -2.3,10 -4.2,10.2 -3.6,0.3 -5.9,-15.7 -17.4,-40.4 -1.4,-3 -3.2,-6.8 -5.8,-11.6 -6.3,-11.5 -12.9,-20.2 -17.7,-26 z" + id="path7-68" /></g><g + inkscape:groupmode="layer" + id="Chastity_Anus" + inkscape:label="Chastity_Anus"><path + inkscape:connector-curvature="0" + d="m 246,405.8 c 6.6,2.1 15.9,4.3 27.1,4.5 15,0.3 26.9,-3.1 34.4,-5.9 -2.3,2 -5.9,5.1 -10.3,8.7 -6.6,5.4 -9.3,7.2 -13.9,11.2 -4.4,3.8 -8.4,7.6 -12.1,11.3 -0.1,0.2 -1.9,3 -5.3,2.9 -2.9,0 -4.6,-2.2 -4.8,-2.4 -1.5,-3.4 -3.1,-6.9 -4.8,-10.4 -3.3,-7 -6.8,-13.7 -10.3,-19.9 z" + id="path5-9" /><path + inkscape:connector-curvature="0" + class="steel_chastity" + d="m 244.1,404 c 7.2,2.2 16.9,4.3 28.3,4.6 15.1,0.5 27.6,-2.1 36,-4.6 -8,5.3 -16.6,11.6 -25.3,19 -4.6,3.9 -8.8,7.7 -12.7,11.5 -0.1,0.2 -2,3 -5.5,3 -3,0 -4.8,-2.2 -5,-2.5 -1.6,-3.5 -3.2,-7.1 -5,-10.7 -3.5,-7.2 -7.2,-14 -10.8,-20.3 z" + id="path7-06" /></g></g><g + inkscape:groupmode="layer" + id="Torso_Outfit_" + inkscape:label="Torso_Outfit_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Torso_Outfit_Latex_" + style="display:inline" + inkscape:label="Torso_Outfit_Latex_"><g + inkscape:groupmode="layer" + id="Torso_Outfit_Latex_Normal" + inkscape:label="Torso_Outfit_Latex_Normal" + style="display:inline"><path + style="fill:#010101" + d="M 283.36133 215.8418 C 274.92347 215.82131 267.27266 217.59805 261.30078 221.59961 C 257.00078 224.49961 254.50078 227.90078 251.30078 232.30078 C 237.40078 251.30078 238.3 273.5 239 290 C 239.3 296.4 240.09922 305.90078 242.69922 317.30078 C 241.39922 324.60078 239.9 334.59961 239 346.59961 C 237.7 364.89961 238.90078 372.30078 236.30078 385.30078 C 234.9168 391.52868 232.62415 399.63194 228.21484 408.82422 L 348.96484 408.82422 C 343.87735 399.04234 341.93748 390.44468 341.19922 385 C 339.79922 374.7 341 366.49922 342 359.69922 C 343.3 350.59922 345.40078 343.99922 347.80078 336.69922 C 353.80078 317.89922 357.39961 315.00039 361.09961 301.90039 C 362.79961 295.80039 366.29961 283.50039 365.09961 273.40039 C 361.67305 243.67695 316.46368 215.92218 283.36133 215.8418 z " + id="Body_Shadow-9" /><path + inkscape:connector-curvature="0" + d="m 225.8,413.2 c 17.2,4.6 17.2,30.6 43.5,50.1 1.2,0.9 -21.9,-11.3 -4.5,-34.1 20,8.2 11.2,37.3 11.4,36.9 7.4,-15.9 19.8,-23 32,-32.9 12.4,-10 20,-18 41.9,-21.9 z" + class="shadow" + id="Body_Shadow_3_" /><path + inkscape:connector-curvature="0" + d="m 273,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" + style="fill:#515351" + id="Body_Normal_4_" /></g><g + inkscape:groupmode="layer" + id="Torso_Outfit_Latex_Hourglass" + inkscape:label="Torso_Outfit_Latex_Hourglass" + style="display:inline"><path + style="fill:#010101" + d="m 283.26172,215.74219 c -8.43786,-0.0205 -16.09063,1.75625 -22.0625,5.75781 -4.3,2.9 -6.8,6.29922 -10,10.69922 -13.9,19 -12.99883,41.20117 -12.29883,57.70117 0.3,6.4 1.09922,15.89883 3.69922,27.29883 3.8,16.5 1.00078,28.2 0.80078,32.5 -0.2,4.5 -0.70078,12.2 -2.30078,21 -1.73947,9.06355 -5.08596,22.49315 -12.84961,38.125 l 120.84961,0 c -6.38699,-13.18859 -11.21229,-19.95541 -14.59961,-23.625 -0.9,-1 -3.9,-4.1 -6,-9 0,0 -1.90078,-4.4 -2.30078,-9 -0.4,-4.8 1.1,-10.49883 13.5,-27.29883 9,-12.2 10.8,-12.60078 14.5,-19.80078 3.7,-7.1 5.40078,-13.09883 6.80078,-18.29883 2.9,-11 4.7,-22.8 4,-28.5 -3.42656,-29.72344 -48.63593,-57.4782 -81.73828,-57.55859 z" + id="Body_Shadow_2_-7" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 225.8,413.2 c 17.2,4.6 17.2,30.6 43.5,50.1 1.2,0.9 -21.9,-11.3 -4.5,-34.1 20,8.2 11.2,37.3 11.4,36.9 7.4,-15.9 19.8,-23 32,-32.9 12.4,-10 20,-18 41.9,-21.9 z" + class="shadow" + id="Body_Shadow_5_" /><path + inkscape:connector-curvature="0" + d="m 273,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" + style="fill:#515351" + id="Body_Normal_6_" /></g><g + inkscape:groupmode="layer" + id="Torso_Outfit_Latex_Unnatural" + inkscape:label="Torso_Outfit_Latex_Unnatural" + style="display:inline"><path + d="m 284.89453,215.17383 c -9.60625,0.0391 -17.99492,2.07578 -23.79492,6.42578 -1.9,1.5 -4.90039,4.60039 -7.40039,7.90039 -11.5,14.7 -13.19844,30.69961 -14.39844,43.09961 -0.5,5 -1.60078,16.60078 0.69922,30.30078 0.5,3.1 1.29922,6.8 2.69922,15 1.2,7.2 2.10117,13 2.70117,17 2,7.7 2.89883,14.39883 3.29883,19.29883 0.7,8 1,12.70078 -1,18.30078 -0.9,2.5 -1.2,2.20078 -6,10.30078 -0.7,1.2 -4.69922,7.99922 -8.69922,15.69922 -1.42356,2.69728 -3.12849,6.18129 -5.0293,10.32422 l 120.92383,0 c -5.907,-10.12422 -12.20081,-16.98505 -17.29492,-21.52344 -7.7,-7 -15.39922,-11.50078 -15.69922,-19.30078 -0.1,-4 1.69883,-7.89922 2.79883,-10.19922 2.7,-5.8 6.5,-9.30078 8,-10.80078 6.4,-6.1 16.10156,-16.10039 28.60156,-29.40039 6,-7.3 12.7,-39.99883 12,-57.29883 -13.8,-27.375 -53.5875,-45.24414 -82.40625,-45.12695 z" + id="Body_Shadow_1_-8" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 225.8,413.2 c 17.2,4.6 17.2,30.6 43.5,50.1 1.2,0.9 -21.9,-11.3 -4.5,-34.1 20,8.2 11.2,37.3 11.4,36.9 7.4,-15.9 19.8,-23 32,-32.9 12.4,-10 20,-18 41.9,-21.9 z" + class="shadow" + id="Body_Shadow_4_" /><path + inkscape:connector-curvature="0" + d="m 273,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" + style="fill:#515351" + id="Body_Normal_5_" /></g></g><g + inkscape:groupmode="layer" + id="Torso_Outfit_Shibari_Hourglass_" + inkscape:label="Torso_Outfit_Shibari_Hourglass_" + style="display:inline"><path + id="path3996" + style="fill:none;fill-rule:evenodd;stroke:#895b39;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="M 283.266,203.04489 290.2,215.4 c -16.5704,11.1111 -23.34524,26.25506 -24.3008,32.86023 -0.95556,6.60517 12.73873,31.39424 12.73873,31.39424 0,0 -13.27747,16.12568 -13.72133,21.19008 -0.44386,5.0644 9.1856,20.70076 9.1856,20.70076 0,0 -14.29082,11.54445 -14.66412,15.51966 -0.3733,3.97521 9.7691,20.25521 9.7691,20.25521 0,0 -15.21446,15.58066 -15.65359,19.38598 -0.43914,3.80532 12.14327,26.48656 12.14327,26.48656 0,0 -13.06557,27.07822 -12.50002,31.94288 0.56555,4.86466 22.60316,32.4144 22.60316,32.4144 0,0 5.84719,-28.56956 5.2992,-33.36642 -0.54799,-4.79686 -15.40234,-30.99086 -15.40234,-30.99086 0,0 16.90559,-21.2959 17.18086,-24.40684 0.27527,-3.11094 -13.67054,-21.4657 -13.67054,-21.4657 0,0 14.85046,-14.768 14.91838,-18.0491 0.0679,-3.28109 -10.02336,-17.72577 -10.02336,-17.72577 0,0 17.20036,-13.35198 17.92631,-18.04552 0.72595,-4.69354 -13.39058,-23.84532 -13.39058,-23.84532 0,0 26.28197,-19.67666 26.83827,-26.35739 C 306.0325,246.61635 290.2,215.4 290.2,215.4 l 30.33959,-13.11855" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cczczczczczczczczczczcc" /><path + style="fill:none;fill-rule:evenodd;stroke:#895b39;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 244.94279,245.16394 c 8.89748,0.8284 13.73361,1.5902 20.95641,3.09629 -9.07057,1.20286 -14.82535,3.16696 -22.94961,4.22443" + id="path3998" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + style="fill:none;fill-rule:evenodd;stroke:#895b39;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 368.59905,256.10135 c -20.00873,-1.45087 -41.58739,-2.11677 -63.12285,-2.80427 22.73019,3.82363 42.8336,10.27404 61.65304,18.00842" + id="path4000" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + style="fill:none;fill-rule:evenodd;stroke:#895b39;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 239.38849,297.00403 c 11.10559,2.11719 17.98137,2.74272 25.52811,3.84052 -7.76353,1.9703 -17.27822,3.21884 -23.71963,4.38384" + id="path4002" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + style="fill:none;fill-rule:evenodd;stroke:#895b39;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 357.65703,309.58619 -65.62852,-6.0864 c 18.6846,6.99932 38.97105,14.50129 60.35603,17.72008" + id="path4004" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + style="fill:none;fill-rule:evenodd;stroke:#895b39;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 347.15474,400.98404 c -24.85562,4.67564 -39.024,24.17205 -66.05554,33.19954 22.82814,-12.51843 35.17103,-35.41083 63.91967,-42.00876" + id="path4006" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + style="fill:none;fill-rule:evenodd;stroke:#895b39;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 226,413.2 c 10.40403,3.57274 17.56019,12.60748 27.19684,21.9356 -7.59549,-11.61614 -13.1664,-22.41963 -24.63012,-28.62026" + id="path4008" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + style="fill:none;fill-rule:evenodd;stroke:#895b39;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 244.82551,332.32531 14.61257,4.73966 -14.54313,2.32005" + id="path4010" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + style="fill:none;fill-rule:evenodd;stroke:#895b39;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 340.89757,337.12199 c -18.31566,0.80828 -38.45072,1.3577 -56.77201,2.14909 15.42935,3.92331 34.12606,8.02998 46.4939,12.46354" + id="path4012" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + style="fill:none;fill-rule:evenodd;stroke:#895b39;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 325.3,368.7 c -13.81611,1.60858 -29.65942,5.84415 -42.42228,10.08588 15.263,0.085 32.03469,1.59883 48.6408,2.78198" + id="path4014" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + style="fill:none;fill-rule:evenodd;stroke:#895b39;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 241.55779,372.35603 c 3.28983,1.51937 9.48358,2.83076 11.9958,4.35013 -3.03605,0.12601 -9.71927,0.35855 -13.52766,0.742" + id="path4016" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + style="fill:#895b39;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 261.59113,246.55149 c 3.29661,0.005 2.29085,-1.09045 3.92359,-1.36769 l 2.02206,0.40442 c 0.93908,0.26173 0.67928,6.11426 -0.33088,6.02941 l -2.09559,-0.22059 c -1.65597,-0.11943 -1.03128,-1.24079 -3.64155,-1.68302 z" + id="path6337" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /><path + style="display:inline;fill:#895b39;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 260.75745,299.50059 c 3.29661,0.005 2.29085,-1.09045 3.92359,-1.36769 l 2.02206,0.40442 c 0.93908,0.26173 0.67928,6.11426 -0.33088,6.02941 l -2.09559,-0.22059 c -1.65597,-0.11943 -1.03128,-1.24079 -3.64155,-1.68302 z" + id="path6337-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /><path + style="display:inline;fill:#895b39;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 255.58516,335.43341 c 3.29661,0.005 2.29085,-1.09045 3.92359,-1.36769 l 2.02206,0.40442 c 0.93908,0.26173 0.67928,6.11426 -0.33088,6.02941 l -2.09559,-0.22059 c -1.65597,-0.11943 -1.03128,-1.24079 -3.64155,-1.68302 z" + id="path6337-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /><path + style="display:inline;fill:#895b39;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 250.25842,374.42923 c 2.72469,0.7849 1.40697,0.0534 3.19569,0.14011 l 2.02206,0.40442 c 0.93908,0.26173 0.57529,3.87856 -0.43487,3.79371 l -2.09559,-0.22059 c -1.65597,-0.11943 -0.82331,-0.98083 -3.12162,-0.90312 z" + id="path6337-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /><path + style="display:inline;fill:#895b39;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 250.83035,429.84059 c 0.95691,0.78489 1.30298,1.45721 2.20781,1.33595 l 1.65811,0.76837 c 0.93908,0.26173 0.78327,3.82656 -0.22689,3.74171 l -2.0436,-0.0646 c -1.60398,-0.79534 -0.51135,-1.44876 -2.54969,-2.5669 z" + id="path6337-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /><path + style="display:inline;fill:#895b39;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 284.13184,431.5505 c -1.8408,0.7329 -1.53772,-0.46806 -2.8585,-0.17338 l -1.86608,0.87236 c -0.93908,0.26173 -0.403,3.47829 0.60716,3.39344 l 2.09559,-0.22059 c 1.08405,-0.43139 0.84268,-1.00759 2.15312,-1.6058 z" + id="path6337-35" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /><path + style="display:inline;fill:#895b39;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 286.438,376.67971 c -3.29661,0.005 -2.29085,-1.09045 -3.92359,-1.36769 l -2.02206,0.40442 c -0.93908,0.26173 -0.67928,6.11426 0.33088,6.02941 l 2.09559,-0.22059 c 1.65597,-0.11943 1.03128,-1.24079 3.64155,-1.68302 z" + id="path6337-35-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /><path + style="display:inline;fill:#895b39;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 288.13011,338.37481 c -3.24695,-0.57004 -2.22153,-1.00534 -3.7809,-1.5631 l -2.0616,0.0456 c -0.97033,0.0939 -1.42328,4.70624 -0.41381,4.79887 l 2.10195,0.14828 c 1.65142,0.17121 1.28387,-0.72996 3.93126,-0.71016 z" + id="path6337-35-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /><path + style="display:inline;fill:#895b39;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 294.70783,302.9585 c -1.41097,-0.25127 -0.97401,-0.70779 -1.7893,-0.95129 l -2.06044,0.0828 c -0.96848,0.11148 -1.7322,2.63093 -0.98119,3.4072 l 2.26026,0.16222 c 0.71837,0.0373 0.74491,-0.54408 2.30037,-0.31219 z" + id="path6337-35-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /><path + style="display:inline;fill:#895b39;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 309.50769,252.45613 c -3.24602,-0.57532 -1.6955,-0.96194 -3.25395,-1.52224 l -2.06168,-0.10485 c -0.97048,0.0923 -1.67133,4.686 -0.66201,4.78027 l 1.95466,0.48258 c 1.65113,0.17391 1.12327,-1.18696 3.77062,-1.16285 z" + id="path6337-35-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /><path + inkscape:connector-curvature="0" + style="display:inline;fill:#895b39;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 276.41331,321.54531 a 2.3111103,2.3111103 0 0 1 -2.31111,2.31111 2.3111103,2.3111103 0 0 1 -2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,2.31111 z" + id="path6413-0" /><path + inkscape:connector-curvature="0" + style="display:inline;fill:#895b39;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 271.51829,357.32018 a 2.3111103,2.3111103 0 0 1 -2.31111,2.31111 2.3111103,2.3111103 0 0 1 -2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,2.31111 z" + id="path6413-9" + inkscape:transform-center-x="-1.4558081" + inkscape:transform-center-y="-10.814575" /></g><g + inkscape:groupmode="layer" + id="Torso_Outfit_Straps_" + inkscape:label="Torso_Outfit_Straps_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Torso_Outfit_Straps_Hourglass" + inkscape:label="Torso_Outfit_Straps_Hourglass" + style="display:inline"><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 280.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:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="M 261.50648,413.73918 261.2569,406.4473 266.17212,351.16304 275.411,278.532 290.2,215.4 l 15.22137,52.07436 m 5.95128,26.34968 7.8272,20.69688 -30.43976,38.83902 -27.50319,53.08736 -9.2708,-54.42357 -10.07226,-42.14617 4.83263,-23.98635 M 250.76923,260.17056 290.2,215.4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccc" /><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 243.2324,352.85095 8.7537,-0.82722 14.18602,-0.86069 22.58797,2.1969 c 12.52776,1.51143 25.0301,4.09769 38.05631,8.19115" + id="path9224" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 238.74259,381.06877 c 8.25167,2.98798 16.96891,10.16552 22.51431,25.37853 14.56337,-16.56115 49.92898,-16.47641 68.84676,-27.07268" + id="path9226" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + id="path4809" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 366.7861,273.56744 c -8.50044,-0.65544 -24.3526,0.34509 -35.75207,1.68052 L 311.37265,293.82404 275.3,278.6 246.74647,285.89121 239.95996,272.95142 250.76923,260.17056 275.3,278.6 l 30.12137,-11.12564 25.61266,7.7736" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" /><path + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 319.19985,314.52092 33.29827,6.51353" + id="path4822" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path4827" + d="m 226.3,412.5 c 14.28287,9.22716 28.49493,36.36353 49.5,55 20.41266,-26.05944 51.82188,-67.17748 66.5726,-71.33884" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" /><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path4829" + d="m 241.14976,427.16651 c 4.90244,-4.03154 6.549,-12.31755 20.35672,-13.42733 12.25382,0.45913 30.79397,16.21724 36.65767,25.45717" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" /></g><g + inkscape:groupmode="layer" + id="Torso_Outfit_Straps_Unnatural" + inkscape:label="Torso_Outfit_Straps_Unnatural" + style="display:inline"><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 281.12,204.097 c -0.712,4.691 3.757,8.069 9.254,11.208 13.29,-0.179 26.876,-2.214 40.166,-9.027" + id="path210" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + id="path212" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 262.552,415.168 -0.289,-7.466 8.614,-53.931 4.458,-73.575 15.039,-64.891 13.97,56.974 m 5.112,25.579 0.163,20.676 -31.39,35.674 -15.966,53.494 -4.928,-52.923 -15.007,-42.925 4.483,-24.097 m 3.742,-26.283 39.821,-46.169" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccc" /><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 248.581,355.606 8.754,-0.827 13.542,-1.008 7.352,0.437 c 12.528,1.512 25.03,4.098 38.056,8.191" + id="path214" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 242.369,383.198 c 7.677,2.78 14.735,10.351 19.894,24.504 12.962,-14.74 42.193,-19.736 59.03,-29.167" + id="path216" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + id="path218" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 365.828,278.326 c -8.556,-0.66 -24.51,0.404 -35.984,1.749 l -20.388,17.783 -34.232,-17.594 -28.413,7.493 -6.968,-13.224 10.71,-13.059 24.671,18.79 29.12,-7.985 25.5,7.796" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" /><path + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 309.619,318.534 36.572,7.088" + id="path220" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path222" + d="m 227.126,412.68 c 14.047,9.075 28.893,34.971 49.552,53.3 19.76,-25.225 46.39,-68.365 60.668,-72.393" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" /><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path224" + d="m 242.196,428.595 c 4.902,-4.031 6.549,-12.317 20.356,-13.427 12.065,0.452 32.608,12.295 38.381,21.392" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" /></g><g + inkscape:groupmode="layer" + id="Torso_Outfit_Straps_Normal" + inkscape:label="Torso_Outfit_Straps_Normal" + style="display:inline"><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 280.937,204.232 c -0.712,4.691 3.692,8.12 9.188,11.259 11.945,-0.161 23.524,-4.417 35.469,-10.541" + id="path227" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + id="path229" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 259.347,410.614 -0.226,-6.999 2.718,-55.148 13.758,-71.456 14.528,-61.52 15.954,47.428 m 6.638,26.77 13.775,17.823 -21.488,44.959 -45.883,51.144 -11.338,-54.437 -6.122,-41.151 5.146,-23.85 m 4.271,-25.192 39.047,-43.494" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccc" /><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 239.029,350.005 8.754,-0.827 14.056,-0.711 43.165,4.004 c 12.528,1.512 25.03,4.098 38.057,8.192" + id="path231" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /><path + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 236.708,378.107 c 8.258,2.991 16.863,10.281 22.413,25.508 17.289,-19.662 62.243,-10.638 84.702,-23.218" + id="path233" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + id="path235" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 367.33,269.078 c -8.447,-0.651 -24.203,0.241 -35.531,1.568 l -19.082,19.043 -37.231,-12.61 -28.679,7.098 -6.626,-12.669 10.897,-12.523 24.408,18.094 30.593,-14.16 25.72,7.727" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" /><path + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" + d="m 326.492,307.512 28.471,8.743" + id="path237" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path239" + d="m 226.369,409.755 c 14.106,9.112 25.666,38.04 46.41,56.445 20.789,-26.539 60.175,-60.727 75.198,-64.965" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" /><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path241" + d="m 238.991,424.042 c 4.902,-4.032 6.549,-12.318 20.356,-13.428 13.004,0.488 28.906,21.96 35.129,31.765" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" /></g></g><g + inkscape:groupmode="layer" + id="Torso_Outfit_Shine_" + inkscape:label="Torso_Outfit_Shine_"><g + inkscape:groupmode="layer" + id="Torso_Outfit_Shine_Shoulder" + inkscape:label="Torso_Outfit_Shine_Shoulder"><path + style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#Filter_Shine_Blur)" + d="m 343.38233,211.76475 c 7.68861,5.15453 13.5278,12.59965 19.26471,19.70588 0,0 -5.44118,-16.61764 -19.26471,-19.70588 z" + id="path4902" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /></g><g + inkscape:groupmode="layer" + id="Torso_Outfit_Shine_Unnatural" + inkscape:label="Torso_Outfit_Shine_Unnatural"><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path4027-70" + d="m 310.91899,377.12214 c 5.98755,6.51146 19.77763,19.95632 28.49224,29.53211 -12.96362,-6.10053 -25.92724,-20.24266 -28.49224,-29.53211 z" + style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" /></g><g + inkscape:groupmode="layer" + id="Torso_Outfit_Shine_Hourglass" + inkscape:label="Torso_Outfit_Shine_Hourglass"><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path4027-70-6" + d="m 319.74252,375.06332 c 4.22284,7.09969 13.30704,21.13279 19.66871,31.59093 -12.96362,-6.10053 -18.5743,-22.88972 -19.66871,-31.59093 z" + style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" /></g><g + inkscape:groupmode="layer" + id="Torso_Outfit_Shine_Normal" + inkscape:label="Torso_Outfit_Shine_Normal"><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path4027-70-1" + d="m 332.13219,367.13946 c 1.41216,9.42307 -1.43557,29.939 7.27904,39.51479 -12.96362,-6.10053 -10.95321,-29.8094 -7.27904,-39.51479 z" + style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" /></g></g></g><g + inkscape:groupmode="layer" + id="Belly_" + style="display:inline" + inkscape:label="Belly_"><g + inkscape:groupmode="layer" + id="Belly" + inkscape:label="Belly"><path + inkscape:connector-curvature="0" + d="m 274.8,433.8 c 20.7,-1.5 47.7,-4.5 61.9,-42.4 13.1,-44.3 -27.8,-99.6 -59.9,-101.5 -40.1,6.2 -61.8,42.8 -63.9,96.9 2.2,31 33.1,49 61.9,47 z" + class="shadow" + id="XMLID_543_" /><path + inkscape:connector-curvature="0" + d="m 274.8,433.8 c 20.8,0.1 49.4,-13 61.9,-42.4 12.5,-29.4 -18.5,-83.4 -46,-101.7 -6.5,-4.3 -38.7,-8.2 -40.4,0 -2.6,11.6 -44.9,33.3 -41.4,96.8 1.8,34.8 45.1,47.2 65.9,47.3 z" + class="skin" + id="XMLID_544_" /><path + class="areola" + d="m 249.83484,395.7339 a 3.0999447,2.7999501 78.497917 0 1 -2.12558,3.59601 3.0999447,2.7999501 78.497917 0 1 -3.36186,-2.47937 3.0999447,2.7999501 78.497917 0 1 2.12558,-3.59601 3.0999447,2.7999501 78.497917 0 1 3.36186,2.47937 z" + id="XMLID_545_" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Belly_Piercing" + inkscape:label="Belly_Piercing"><circle + id="XMLID_547_" + class="steel_piercing" + cx="246.89999" + cy="390.89999" + r="1.2" /><circle + id="XMLID_548_" + class="steel_piercing" + cx="246.89999" + cy="395" + r="1.2" /></g><g + inkscape:groupmode="layer" + id="Belly_Piercing_Heavy" + inkscape:label="Belly_Piercing_Heavy"><path + inkscape:connector-curvature="0" + d="m 247,396.1 c -0.2,0 -1.6,2.1 -1.5,11.7 0.1,12.7 1.5,13.2 1.7,13.2 0.4,0 1.5,-7.4 1.2,-15.9 -0.4,-4.6 -1.1,-9.1 -1.4,-9 z" + class="steel_piercing" + id="XMLID_549_" /><path + inkscape:connector-curvature="0" + d="m 247.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="steel_piercing" + id="XMLID_550_" /></g><g + inkscape:groupmode="layer" + id="Belly_Outfit_Shine" + inkscape:label="Belly_Outfit_Shine"><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path4027-9" + d="m 290.74565,341.76682 c 5.2665,4.35178 5.56841,11.52129 5.82323,18.71753 -2.56499,-6.10053 -4.50607,-12.3397 -5.82323,-18.71753 z" + style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1.12775385;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" + transform="matrix(2.806394,-0.28790498,0.2559876,2.4952748,-620.76047,-450.58168)" /></g></g><g + inkscape:groupmode="layer" + id="Penis_" + style="display:inline" + inkscape:label="Penis_"><g + inkscape:groupmode="layer" + id="Balls_4" + style="display:inline" + inkscape:label="Balls_4"><path + inkscape:connector-curvature="0" + d="m 221.1,480.5 c 3.3,8.9 7.4,10.4 10.4,11.3 6.6,2 10.1,-0.6 21,2.7 5,1.5 8.3,5.6 16.6,5.6 1.5,0 13.3,2.3 22.7,-7 5.9,-5.7 5.6,-14.1 5.4,-26.3 -0.2,-9.1 -2,-15.1 -3.3,-18.6 -2.3,-6.2 -3.6,-9.8 -7.1,-12.1 -7.7,-5 -19.3,0.5 -25.2,3.3 -6.3,3 -11.6,-1.4 -19,5.4 -10.8,10.2 -25.4,25 -21.5,35.7 z" + class="shadow" + id="XMLID_868_" /><path + inkscape:connector-curvature="0" + d="m 221.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="skin scrotum" + id="XMLID_869_" /></g><g + inkscape:groupmode="layer" + id="Balls_3" + style="display:inline" + inkscape:label="Balls_3"><path + inkscape:connector-curvature="0" + d="m 229.9,468.6 c 2.5,6.8 5.7,8 8,8.7 5.1,1.5 7.8,-0.5 16.1,2.1 3.8,1.2 6.4,4.3 12.7,4.3 1.2,0 10.2,1.7 17.4,-5.3 4.5,-4.4 4.3,-10.8 4.2,-20.2 -0.1,-7 -1.5,-11.6 -2.5,-14.3 -1.7,-4.8 -2.8,-7.5 -5.4,-9.3 -5.9,-3.8 -14.8,0.3 -19.4,2.5 -4.9,2.3 -8.9,-1 -14.6,4.2 -8.3,7.7 -19.5,19 -16.5,27.3 z" + class="shadow" + id="XMLID_870_" /><path + inkscape:connector-curvature="0" + d="m 229.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="skin scrotum" + id="XMLID_871_" /></g><g + inkscape:groupmode="layer" + id="Balls_2" + style="display:inline" + inkscape:label="Balls_2"><path + inkscape:connector-curvature="0" + d="m 236.7,459.4 c 2,5.2 4.4,6.1 6.1,6.7 3.9,1.2 6,-0.4 12.4,1.6 2.9,0.9 4.9,3.3 9.8,3.3 0.9,0 7.8,1.3 13.3,-4.1 3.5,-3.4 3.3,-8.3 3.2,-15.5 -0.1,-5.3 -1.2,-8.9 -2,-10.9 -1.3,-3.6 -2.1,-5.8 -4.2,-7.1 -4.5,-2.9 -11.4,0.3 -14.8,2 -3.7,1.8 -6.8,-0.8 -11.2,3.2 -6.3,5.8 -14.9,14.5 -12.6,20.8 z" + class="shadow" + id="XMLID_872_" /><path + inkscape:connector-curvature="0" + d="m 236.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="skin scrotum" + id="XMLID_873_" /></g><g + inkscape:groupmode="layer" + id="Balls_1" + style="display:inline" + inkscape:label="Balls_1"><path + inkscape:connector-curvature="0" + d="m 243.7,452.6 c 1.2,3.4 2.8,3.9 3.9,4.3 2.5,0.7 3.8,-0.3 7.9,1.1 1.9,0.5 3.1,2.1 6.3,2.1 0.6,0 5,0.8 8.5,-2.7 2.2,-2.2 2.1,-5.3 2,-9.9 -0.1,-3.4 -0.8,-5.7 -1.2,-7 -0.9,-2.3 -1.3,-3.6 -2.7,-4.5 -2.9,-1.9 -7.3,0.2 -9.5,1.2 -2.4,1.2 -4.7,-0.7 -7.5,1.8 -4,3.8 -9.1,9.6 -7.7,13.6 z" + class="shadow" + id="XMLID_874_" /><path + inkscape:connector-curvature="0" + d="m 243.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="skin scrotum" + id="XMLID_875_" /></g><g + inkscape:groupmode="layer" + id="Balls_0" + inkscape:label="Balls_0" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 252.8,446.8 c 0.7,2 1.6,2.3 2.3,2.5 1.4,0.4 2.2,-0.1 4.6,0.6 1.1,0.4 1.8,1.2 3.6,1.2 0.4,0 2.9,0.4 5,-1.5 1.3,-1.2 1.2,-3 1.2,-5.7 0,-2 -0.4,-3.3 -0.7,-4.1 -0.5,-1.3 -0.8,-2.1 -1.5,-2.6 -1.7,-1.1 -4.2,0.1 -5.5,0.7 -1.4,0.7 -3.1,-0.2 -4.7,1.3 -2.6,2.1 -5.2,5.2 -4.3,7.6 z" + class="shadow" + id="XMLID_876_" /><path + inkscape:connector-curvature="0" + d="m 252.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="skin scrotum" + id="XMLID_877_" /></g><g + inkscape:groupmode="layer" + id="Penis_6" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 157.7,353.4 c 1.4,0.9 1.4,3.5 1.4,3.9 0,7.5 14.3,33.3 27.4,46 39.3,38.2 78.2,48 74.4,30.6 -0.5,-2.6 3.3,-4.1 3.8,-5.6 5.1,-16.4 -19.5,-41.2 -46.7,-63.9 -22.8,-19 -23.3,-18.1 -28.6,-21.5 -0.8,-0.5 -2,-1.3 -2.4,-3.8 -0.4,-2 1.3,-4.2 1.4,-5.8 0.9,-5.9 -7.2,-10.4 -14.7,-14.2 -5.8,-2.9 -17.3,-6.4 -23.6,-1.4 -13.5,10.8 -2.9,39.9 3,36.6 1.3,-0.6 3.1,-1.9 4.6,-0.9 z" + class="shadow" + id="XMLID_878_" /><path + inkscape:connector-curvature="0" + d="m 157.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="skin penis" + id="XMLID_879_" /></g><g + inkscape:groupmode="layer" + id="Penis_5" + style="display:inline" + inkscape:label="Penis_5"><path + inkscape:connector-curvature="0" + d="m 176.6,366.1 c 1.2,0.8 1.2,2.9 1.2,3.2 0,6.2 11.8,27.5 22.6,38 32.5,31.5 64.6,39.6 61.4,25.2 -0.4,-2.2 2.7,-3.4 3.1,-4.7 4.2,-13.5 -16.1,-34 -38.6,-52.7 -18.8,-15.7 -19.3,-14.9 -23.6,-17.8 -0.6,-0.4 -1.6,-1.1 -1.9,-3.1 -0.3,-1.6 1.1,-3.5 1.2,-4.8 0.8,-4.9 -6,-8.6 -12.1,-11.7 -4.8,-2.4 -14.3,-5.3 -19.5,-1.2 -11.2,8.9 -2.4,32.9 2.5,30.2 1,-0.3 2.6,-1.4 3.7,-0.6 z" + class="shadow" + id="XMLID_880_" /><path + inkscape:connector-curvature="0" + d="m 176.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="skin penis" + id="XMLID_881_" /></g><g + inkscape:groupmode="layer" + id="Penis_4" + style="display:inline" + inkscape:label="Penis_4"><path + inkscape:connector-curvature="0" + d="m 193.3,379.4 c 1,0.6 1,2.4 1,2.7 0,5.1 9.7,22.6 18.6,31.2 26.7,25.9 53,32.5 50.4,20.7 -0.4,-1.8 2.2,-2.8 2.6,-3.8 3.5,-11.1 -13.2,-27.9 -31.6,-43.3 -15.5,-12.9 -15.8,-12.3 -19.4,-14.6 -0.5,-0.4 -1.3,-0.9 -1.6,-2.6 -0.3,-1.3 0.9,-2.8 1,-3.9 0.6,-4 -4.9,-7 -10,-9.6 -3.9,-2 -11.7,-4.4 -16,-1 -9.2,7.3 -2,27 2,24.8 0.8,-0.4 2,-1.3 3,-0.6 z" + class="shadow" + id="XMLID_882_" /><path + inkscape:connector-curvature="0" + d="m 193.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="skin penis" + id="XMLID_883_" /></g><g + inkscape:groupmode="layer" + id="Penis_3" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 210.3,392.5 c 0.7,0.5 0.8,1.9 0.8,2.1 0,4 7.6,17.9 14.7,24.6 21.1,20.4 41.9,25.7 39.8,16.4 -0.3,-1.4 1.8,-2.1 2,-3 2.7,-8.8 -10.5,-22 -25,-34.2 -12.3,-10.2 -12.5,-9.7 -15.4,-11.6 -0.4,-0.3 -1,-0.7 -1.2,-2 -0.2,-1.1 0.7,-2.2 0.8,-3.1 0.4,-3.2 -3.9,-5.5 -7.9,-7.6 -3.1,-1.6 -9.2,-3.5 -12.6,-0.8 -7.2,5.8 -1.6,21.3 1.6,19.6 0.6,-0.3 1.6,-1 2.4,-0.4 z" + class="shadow" + id="XMLID_884_" /><path + inkscape:connector-curvature="0" + d="m 210.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="skin penis" + id="XMLID_885_" /></g><g + inkscape:groupmode="layer" + id="Penis_2" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 226.2,405.6 c 0.5,0.4 0.5,1.3 0.5,1.5 0,2.8 5.5,12.7 10.5,17.6 15,14.6 29.9,18.3 28.4,11.7 -0.2,-1 1.2,-1.5 1.4,-2.1 2,-6.3 -7.5,-15.7 -17.9,-24.4 -8.7,-7.3 -9,-6.9 -10.9,-8.3 -0.3,-0.2 -0.7,-0.5 -0.9,-1.5 -0.2,-0.7 0.4,-1.6 0.5,-2.2 0.4,-2.3 -2.8,-4 -5.6,-5.4 -2.2,-1.2 -6.7,-2.5 -9.1,-0.5 -5.2,4.1 -1.2,15.3 1.2,14 0.6,-0.2 1.3,-0.7 1.9,-0.4 z" + class="shadow" + id="XMLID_886_" /><path + inkscape:connector-curvature="0" + d="m 226.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="skin penis" + id="XMLID_887_" /></g><g + inkscape:groupmode="layer" + id="Penis_1" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 242.5,418.4 c 0.4,0.3 0.4,0.8 0.4,1 0,1.8 2.4,7.6 6.3,11.2 9.7,8.8 18.8,11.3 17.9,7.1 -0.2,-0.6 0.8,-1 0.9,-1.3 0.8,-3 -4.1,-10 -10.7,-15.3 -5.5,-4.4 -6,-4.3 -7.3,-5.1 -0.2,-0.1 -0.4,-0.3 -0.5,-0.9 -0.1,-0.4 0.3,-1 0.4,-1.3 0.2,-1.4 -1.8,-2.5 -3.6,-3.4 -1.4,-0.7 -4.2,-1.5 -5.6,-0.4 -3.2,2.6 -1.1,9.7 0.7,8.7 0.3,-0.2 0.7,-0.6 1.1,-0.3 z" + class="shadow" + id="XMLID_888_" /><path + inkscape:connector-curvature="0" + d="m 242.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="skin penis" + id="XMLID_889_" /></g><g + inkscape:groupmode="layer" + id="Penis_0" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 252.9,426.4 c 0.2,0.1 0.2,0.4 0.2,0.5 0,1 1.5,4.4 3.3,6 4.8,4.2 10.2,6.1 9.7,3.9 -0.1,-0.4 0.4,-0.5 0.4,-0.7 0.6,-2.1 -2.1,-5.3 -5.6,-8.3 -2.9,-2.5 -3.4,-2.2 -4,-2.7 -0.1,-0.1 -0.3,-0.2 -0.3,-0.5 -0.1,-0.3 0.2,-0.5 0.2,-0.7 0.1,-0.8 -0.9,-1.3 -1.9,-1.8 -0.7,-0.4 -2.2,-0.8 -3,-0.2 -1.7,1.3 -0.7,5.3 0.4,4.7 0.2,-0.1 0.4,-0.3 0.6,-0.2 z" + class="shadow" + id="XMLID_890_" /><path + inkscape:connector-curvature="0" + d="m 253,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="skin penis" + id="XMLID_891_" /></g><g + inkscape:groupmode="layer" + id="Flaccid_6" + inkscape:label="Flaccid_6" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 214.2,504.1 c 0.2,0.4 1.2,0.8 2.3,1.2 8.3,0.8 8.3,13 6.5,20.7 -0.2,0.7 -0.3,1.4 -0.5,2 -2.5,9.1 -6.6,13 -6.6,13 -0.8,0.8 -3.6,3.6 -7.2,5 -0.9,0.3 -1.8,0.6 -2.8,0.7 -11.9,-0.4 -17.2,-11.6 -18.7,-21.6 -0.3,-1 -0.5,-2.1 -0.7,-3.2 -0.8,-4.4 -0.7,-9.1 1.7,-11.7 0.5,-0.6 1.1,-1 1.7,-1.4 0.5,-0.4 1,-0.9 1.2,-1.7" + id="path7-6" /><path + inkscape:connector-curvature="0" + d="m 188.7,491.3 c 0,-1.5 0,-3.6 0.2,-6.2 0.1,-1.3 0.3,-6.2 1.4,-13.5 0.6,-4.2 1.2,-7.5 1.4,-8.3 C 196,441.2 212,430 212,430 c 1.8,-1.4 5.9,-3.9 7.7,-5.3 3.6,-2.3 14.6,-7.4 29.9,-2.7 2.2,0.7 17.4,7.1 19.9,11.2 3.1,5.2 -1.9,-3.3 -3.1,-2.2 -0.5,0.4 -1.3,1.1 -2.4,2.4 -1.3,1.7 -1.8,3.2 -2.1,3.9 -1.2,2.7 -4.3,3.6 -8.9,5.4 -5.8,2.3 -9.4,3.8 -13,6.5 -2.6,2 -4.4,4.2 -8,8.6 -3.1,3.9 -4.9,6 -6.6,9.6 -0.5,1.1 -1.4,3.5 -3.2,8.3 -1.1,3 -1.5,4.2 -1.9,5.7 -0.8,2.6 -1.2,4.8 -1.5,6.4 -1,3.9 -3.4,11.2 -9.9,17.2 -3.2,2.9 -7.3,6.8 -11.4,5.7 -7.1,-1.9 -8.7,-18.2 -8.8,-19.4 z" + id="path9-0" /><path + inkscape:connector-curvature="0" + class="skin penis" + d="m 240.7,421.3 c 8,-0.5 25.7,5 28.8,11.9 2.6,5.6 1.2,-1.9 -2.8,3.3 -2.4,1 -6.2,2.7 -10.9,4.6 -10.6,4.3 -12.7,4.7 -16.5,7.5 -4.1,3.1 -7.1,6.7 -8.7,8.7 -1.3,1.6 -3,3.9 -4.8,6.8 -0.5,0.9 -1,1.7 -1.4,2.4 -0.4,0.8 -0.8,1.5 -1.1,2.1 -3.2,9.8 -7.5,19.5 -5.8,28.8 0,0.9 0,1.8 0,2.7 0,0.9 -0.1,1.8 -0.2,2.7 -2.5,4.9 4,3.8 5,8.2 1.1,5.4 0,9.8 -0.4,15.1 -0.2,0.8 -0.4,1.6 -0.7,2.4 -2.4,7.5 -5.9,10.8 -5.9,10.8 -0.7,0.7 -2.3,2.3 -4.4,3.6 -0.7,0.4 -1.5,0.8 -2.3,1.1 -12.3,3.9 -17.8,-10.2 -20.5,-19.3 -0.2,-1 -0.5,-2 -0.7,-3 -0.7,-4.1 -0.6,-8.3 1.6,-10.7 0.5,-0.6 1.1,-0.9 1.6,-1.3 0.5,-0.4 0.9,-0.8 1.1,-1.6 -4.2,-13.4 -0.9,-25.3 0.7,-37.9 0.1,-0.9 0.3,-1.8 0.4,-2.7 1,-6.1 0.9,-7.7 3.4,-13.5 1,-2.2 3.9,-10.8 11.9,-18.9 13.9,-14 24,-13.3 32.6,-13.8 z" + id="path11-6" /></g><g + inkscape:groupmode="layer" + id="Flaccid_5" + inkscape:label="Flaccid_5" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 225.9,491.2 c 0.1,0.4 1,0.7 1.8,0.9 6.7,0.6 6.7,10.6 5.3,16.7 -0.1,0.6 -0.3,1.1 -0.4,1.7 -2.1,7.4 -5.3,10.5 -5.3,10.5 -0.6,0.6 -2.9,3 -5.9,4.1 -0.7,0.3 -1.5,0.5 -2.3,0.6 -9.6,-0.4 -13.9,-9.4 -15.2,-17.5 -0.2,-0.8 -0.4,-1.7 -0.6,-2.6 -0.6,-3.6 -0.5,-7.4 1.3,-9.4 0.4,-0.5 0.9,-0.8 1.3,-1.1 0.4,-0.4 0.8,-0.7 1,-1.4" + id="path7" /><path + inkscape:connector-curvature="0" + d="m 205.2,480.8 c 0,-1.2 0,-2.9 0.1,-5.1 0.1,-1.1 0.3,-5 1.1,-10.9 0.5,-3.4 1,-6.1 1.1,-6.7 3.6,-17.9 16.5,-26.9 16.5,-27 1.4,-1.2 4.8,-3.2 6.2,-4.3 2.9,-1.8 11.9,-6 24.2,-2.2 1.8,0.5 14.1,5.8 16.1,9.1 2.5,4.2 -1.6,-2.7 -2.5,-1.8 -0.4,0.4 -1.1,0.9 -1.9,2 -1.1,1.4 -1.5,2.6 -1.7,3.1 -1,2.2 -3.5,2.9 -7.2,4.4 -4.7,1.9 -7.7,3.1 -10.6,5.3 -2.1,1.6 -3.6,3.4 -6.5,6.9 -2.6,3.1 -4,4.9 -5.3,7.8 -0.4,0.9 -1.1,2.8 -2.6,6.7 -0.9,2.4 -1.2,3.4 -1.6,4.6 -0.6,2.1 -1,3.9 -1.2,5.2 -0.8,3.1 -2.8,9.1 -8,14 -2.6,2.4 -6,5.5 -9.3,4.6 -5.4,-1.5 -6.8,-14.7 -6.9,-15.7 z" + id="path9" /><path + inkscape:connector-curvature="0" + class="skin penis" + d="m 247.4,424.1 c 6.5,-0.4 20.8,4.1 23.4,9.6 2.1,4.6 1,-1.5 -2.3,2.6 -1.9,0.8 -5,2.2 -8.9,3.7 -8.6,3.5 -10.3,3.8 -13.4,6.1 -3.3,2.5 -5.7,5.5 -7,7 -1.1,1.3 -2.5,3.2 -3.9,5.5 -0.4,0.7 -0.8,1.4 -1.1,2 -0.3,0.6 -0.6,1.2 -0.9,1.7 -2.6,7.9 -6.1,15.8 -4.7,23.3 0,0.7 0,1.5 0,2.2 0,0.7 -0.1,1.4 -0.2,2.2 -2.1,4 3.2,3.1 4.1,6.6 0.9,4.4 0,7.9 -0.3,12.3 -0.2,0.7 -0.4,1.3 -0.6,1.9 -2,6.1 -4.8,8.7 -4.8,8.7 -0.6,0.5 -1.9,1.8 -3.6,2.9 -0.6,0.3 -1.2,0.7 -1.8,0.9 -10,3.1 -14.4,-8.3 -16.6,-15.6 -0.2,-0.8 -0.4,-1.6 -0.5,-2.4 -0.6,-3.3 -0.5,-6.8 1.3,-8.7 0.4,-0.4 0.9,-0.7 1.3,-1.1 0.4,-0.3 0.7,-0.7 0.9,-1.3 -3.4,-10.8 -0.7,-20.5 0.5,-30.7 0.1,-0.8 0.2,-1.5 0.3,-2.2 0.8,-4.9 0.7,-6.3 2.8,-10.9 0.8,-1.8 3.1,-8.8 9.7,-15.3 11.1,-11.2 19.3,-10.6 26.3,-11 z" + id="path11" /></g><g + inkscape:groupmode="layer" + id="Flaccid_4" + inkscape:label="Flaccid_4" + style="display:inline"><path + id="path6-1" + d="m 235.5,477.5 c 0.1,0.3 0.7,0.5 1.4,0.7 5.2,0.5 5.2,8.1 4.1,12.9 -0.1,0.4 -0.2,0.9 -0.3,1.3 -1.6,5.7 -4.1,8.1 -4.1,8.1 -0.5,0.5 -2.3,2.3 -4.5,3.1 -0.6,0.2 -1.1,0.4 -1.8,0.4 -7.4,-0.3 -10.7,-7.2 -11.7,-13.5 -0.2,-0.7 -0.3,-1.3 -0.4,-2 -0.5,-2.8 -0.4,-5.7 1,-7.3 0.3,-0.4 0.7,-0.6 1,-0.9 0.3,-0.3 0.6,-0.6 0.8,-1.1" + inkscape:connector-curvature="0" /><path + id="path8-2" + d="m 219.6,469.5 c 0,-0.9 0,-2.3 0.1,-3.9 0,-0.8 0.2,-3.9 0.9,-8.4 0.4,-2.6 0.8,-4.7 0.9,-5.2 2.8,-13.8 12.7,-20.7 12.7,-20.8 1.1,-0.9 3.7,-2.4 4.8,-3.3 2.2,-1.4 9.1,-4.6 18.7,-1.7 1.4,0.4 10.9,4.4 12.4,7 1.9,3.2 -1.2,-2.1 -1.9,-1.4 -0.3,0.3 -0.8,0.7 -1.5,1.5 -0.8,1.1 -1.1,2 -1.3,2.4 -0.8,1.7 -2.7,2.2 -5.5,3.4 -3.6,1.4 -5.9,2.4 -8.1,4 -1.6,1.2 -2.8,2.6 -5,5.3 -2,2.4 -3.1,3.8 -4.1,6 -0.3,0.7 -0.9,2.2 -2,5.2 -0.7,1.8 -0.9,2.6 -1.2,3.5 -0.5,1.6 -0.8,3 -0.9,4 -0.6,2.4 -2.1,7 -6.2,10.7 -2,1.8 -4.6,4.3 -7.1,3.6 -4.6,-1 -5.6,-11.2 -5.7,-11.9 z" + inkscape:connector-curvature="0" /><path + id="path10-70" + d="m 252,425.9 c 5,-0.3 16,3.1 18,7.4 1.6,3.5 0.7,-1.2 -1.7,2 -1.5,0.7 -3.9,1.7 -6.8,2.9 -6.6,2.7 -7.9,2.9 -10.3,4.7 -2.6,1.9 -4.4,4.2 -5.4,5.4 -0.8,1 -1.9,2.4 -3,4.2 -0.3,0.5 -0.6,1 -0.9,1.5 -0.3,0.5 -0.5,0.9 -0.7,1.3 -2,6.1 -4.7,12.2 -3.6,18 0,0.6 0,1.1 0,1.7 0,0.6 -0.1,1.1 -0.1,1.7 -1.6,3.1 2.5,2.4 3.1,5.1 0.7,3.4 0,6.1 -0.3,9.4 -0.1,0.5 -0.3,1 -0.4,1.5 -1.5,4.7 -3.7,6.7 -3.7,6.7 -0.4,0.4 -1.4,1.4 -2.8,2.2 -0.4,0.3 -0.9,0.5 -1.4,0.7 -7.7,2.4 -11.1,-6.4 -12.8,-12 -0.2,-0.6 -0.3,-1.2 -0.4,-1.9 -0.4,-2.5 -0.4,-5.2 1,-6.7 0.3,-0.3 0.7,-0.6 1,-0.8 0.3,-0.2 0.6,-0.5 0.7,-1 -2.6,-8.3 -0.6,-15.8 0.4,-23.6 0.1,-0.6 0.2,-1.1 0.3,-1.7 0.6,-3.8 0.5,-4.8 2.1,-8.4 0.6,-1.3 2.4,-6.8 7.4,-11.8 8.6,-8.7 15,-8.2 20.3,-8.5 z" + class="skin penis" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Flaccid_3" + inkscape:label="Flaccid_3" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 243.1,468.2 c 0.1,0.2 0.6,0.4 1.1,0.6 4,0.4 4,6.4 3.2,10.1 -0.1,0.3 -0.2,0.7 -0.2,1 -1.2,4.5 -3.2,6.3 -3.2,6.3 -0.4,0.4 -1.8,1.8 -3.5,2.5 -0.4,0.2 -0.9,0.3 -1.4,0.3 -5.8,-0.2 -8.4,-5.7 -9.2,-10.6 -0.1,-0.5 -0.2,-1 -0.3,-1.6 -0.4,-2.2 -0.3,-4.4 0.8,-5.7 0.3,-0.3 0.6,-0.5 0.8,-0.7 0.3,-0.2 0.5,-0.4 0.6,-0.8" + id="path8-62" /><path + inkscape:connector-curvature="0" + d="m 230.6,461.9 c 0,-0.7 0,-1.8 0.1,-3 0,-0.6 0.2,-3 0.7,-6.6 0.3,-2.1 0.6,-3.7 0.7,-4.1 2.2,-10.8 10,-16.3 10,-16.3 0.9,-0.7 2.9,-1.9 3.8,-2.6 1.8,-1.1 7.2,-3.6 14.6,-1.3 1.1,0.3 8.5,3.5 9.7,5.5 1.5,2.5 -1,-1.6 -1.5,-1.1 -0.2,0.2 -0.7,0.5 -1.2,1.2 -0.6,0.8 -0.9,1.6 -1,1.9 -0.6,1.3 -2.1,1.7 -4.3,2.6 -2.8,1.1 -4.6,1.9 -6.4,3.2 -1.3,1 -2.2,2 -3.9,4.2 -1.5,1.9 -2.4,2.9 -3.2,4.7 -0.3,0.5 -0.7,1.7 -1.5,4.1 -0.5,1.4 -0.7,2.1 -0.9,2.8 -0.4,1.3 -0.6,2.4 -0.7,3.1 -0.5,1.9 -1.7,5.5 -4.9,8.4 -1.6,1.4 -3.6,3.3 -5.6,2.8 -3.6,-0.9 -4.4,-8.9 -4.5,-9.5 z" + id="path10-9" /><path + inkscape:connector-curvature="0" + class="skin penis" + d="m 256.1,427.7 c 3.9,-0.2 12.6,2.5 14.1,5.8 1.3,2.8 0.6,-0.9 -1.4,1.6 -1.2,0.5 -3,1.3 -5.4,2.3 -5.2,2.1 -6.2,2.3 -8.1,3.7 -2,1.5 -3.5,3.3 -4.2,4.2 -0.6,0.8 -1.5,1.9 -2.3,3.3 -0.3,0.4 -0.5,0.8 -0.7,1.2 -0.2,0.4 -0.4,0.7 -0.5,1 -1.5,4.8 -3.7,9.6 -2.9,14.1 0,0.4 0,0.9 0,1.3 0,0.4 0,0.9 -0.1,1.3 -1.2,2.4 1.9,1.9 2.5,4 0.5,2.7 0,4.8 -0.2,7.4 -0.1,0.4 -0.2,0.8 -0.3,1.2 -1.2,3.7 -2.9,5.3 -2.9,5.3 -0.3,0.3 -1.1,1.1 -2.2,1.7 -0.3,0.2 -0.7,0.4 -1.1,0.6 -6,1.9 -8.7,-5 -10,-9.4 -0.1,-0.5 -0.2,-1 -0.3,-1.5 -0.3,-2 -0.3,-4.1 0.8,-5.2 0.3,-0.3 0.5,-0.4 0.8,-0.6 0.2,-0.2 0.4,-0.4 0.6,-0.8 -2,-6.5 -0.4,-12.4 0.3,-18.5 0.1,-0.5 0.1,-0.9 0.2,-1.3 0.5,-3 0.4,-3.8 1.7,-6.6 0.5,-1.1 1.9,-5.3 5.8,-9.3 6.6,-6.9 11.6,-6.6 15.8,-6.8 z" + id="path12" /></g><g + inkscape:groupmode="layer" + id="Flaccid_2" + inkscape:label="Flaccid_2" + style="display:inline"><path + id="path6-5" + d="m 250.7,456.5 c 0.1,0.1 0.4,0.3 0.8,0.4 2.8,0.3 2.8,4.4 2.2,7 -0.1,0.2 -0.1,0.5 -0.2,0.7 -0.9,3.1 -2.2,4.4 -2.2,4.4 -0.3,0.3 -1.2,1.2 -2.4,1.7 -0.3,0.1 -0.6,0.2 -1,0.2 -4,-0.1 -5.8,-3.9 -6.3,-7.3 -0.1,-0.4 -0.2,-0.7 -0.2,-1.1 -0.3,-1.5 -0.2,-3.1 0.6,-3.9 0.2,-0.2 0.4,-0.3 0.6,-0.5 0.2,-0.1 0.3,-0.3 0.4,-0.6" + inkscape:connector-curvature="0" /><path + id="path8-3" + d="m 242,452.1 c 0,-0.5 0,-1.2 0.1,-2.1 0,-0.4 0.1,-2.1 0.5,-4.5 0.2,-1.4 0.4,-2.5 0.5,-2.8 1.5,-7.5 6.9,-11.2 6.9,-11.2 0.6,-0.5 2,-1.3 2.6,-1.8 1.2,-0.8 4.9,-2.5 10.1,-0.9 0.7,0.2 5.9,2.4 6.7,3.8 1,1.8 -0.7,-1.1 -1,-0.8 -0.2,0.1 -0.5,0.4 -0.8,0.8 -0.4,0.6 -0.6,1.1 -0.7,1.3 -0.4,0.9 -1.5,1.2 -3,1.8 -2,0.8 -3.2,1.3 -4.4,2.2 -0.9,0.7 -1.5,1.4 -2.7,2.9 -1.1,1.3 -1.7,2 -2.2,3.2 -0.2,0.4 -0.5,1.2 -1.1,2.8 -0.4,1 -0.5,1.4 -0.7,1.9 -0.3,0.9 -0.4,1.6 -0.5,2.2 -0.3,1.3 -1.2,3.8 -3.4,5.8 -1.1,1 -2.5,2.3 -3.9,1.9 -2.4,-0.6 -2.9,-6.1 -3,-6.5 z" + inkscape:connector-curvature="0" /><path + id="path10-5" + d="m 259.6,428.5 c 2.7,-0.2 8.7,1.7 9.7,4 0.9,1.9 0.4,-0.6 -0.9,1.1 -0.8,0.4 -2.1,0.9 -3.7,1.6 -3.6,1.4 -4.3,1.6 -5.6,2.5 -1.4,1 -2.4,2.3 -2.9,2.9 -0.4,0.5 -1,1.3 -1.6,2.3 -0.2,0.3 -0.3,0.6 -0.5,0.8 -0.2,0.2 -0.3,0.5 -0.4,0.7 -1.1,3.3 -2.5,6.6 -2,9.7 0,0.3 0,0.6 0,0.9 0,0.3 0,0.6 -0.1,0.9 -0.9,1.7 1.3,1.3 1.7,2.8 0.4,1.8 0,3.3 -0.1,5.1 -0.1,0.3 -0.1,0.6 -0.2,0.8 -0.8,2.6 -2,3.6 -2,3.6 -0.2,0.2 -0.8,0.8 -1.5,1.2 -0.2,0.1 -0.5,0.3 -0.8,0.4 -4.2,1.3 -6,-3.5 -6.9,-6.5 -0.1,-0.3 -0.2,-0.7 -0.2,-1 -0.2,-1.4 -0.2,-2.8 0.5,-3.6 0.2,-0.2 0.4,-0.3 0.5,-0.4 0.2,-0.1 0.3,-0.3 0.4,-0.5 -1.4,-4.5 -0.3,-8.6 0.2,-12.8 0,-0.3 0.1,-0.6 0.1,-0.9 0.3,-2.1 0.3,-2.6 1.2,-4.6 0.3,-0.7 1.3,-3.7 4,-6.4 4.8,-4.7 8.2,-4.4 11.1,-4.6 z" + class="skin penis" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Flaccid_1" + inkscape:label="Flaccid_1" + style="display:inline"><path + id="path6-3" + d="m 257.5,449.9 c 0,0.1 0.3,0.2 0.5,0.3 1.9,0.2 1.9,3.1 1.5,4.9 0,0.2 -0.1,0.3 -0.1,0.5 -0.6,2.2 -1.6,3.1 -1.6,3.1 -0.2,0.2 -0.9,0.9 -1.7,1.2 -0.2,0.1 -0.4,0.1 -0.7,0.2 -2.8,-0.1 -4,-2.7 -4.4,-5.1 -0.1,-0.2 -0.1,-0.5 -0.2,-0.8 -0.2,-1 -0.2,-2.1 0.4,-2.7 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.4" + inkscape:connector-curvature="0" /><path + id="path8-6" + d="m 251.5,446.8 c 0,-0.3 0,-0.9 0,-1.5 0,-0.3 0.1,-1.5 0.3,-3.2 0.1,-1 0.3,-1.8 0.3,-2 1,-5.2 4.8,-7.8 4.8,-7.8 0.4,-0.3 1.4,-0.9 1.8,-1.3 0.8,-0.5 3.4,-1.7 7,-0.6 0.5,0.2 4.1,1.7 4.7,2.6 0.7,1.2 -0.5,-0.8 -0.7,-0.5 -0.1,0.1 -0.3,0.3 -0.6,0.6 -0.3,0.4 -0.4,0.8 -0.5,0.9 -0.3,0.6 -1,0.8 -2.1,1.3 -1.4,0.5 -2.2,0.9 -3.1,1.5 -0.6,0.5 -1,1 -1.9,2 -0.7,0.9 -1.2,1.4 -1.6,2.3 -0.1,0.3 -0.3,0.8 -0.7,2 -0.3,0.7 -0.4,1 -0.5,1.3 -0.2,0.6 -0.3,1.1 -0.4,1.5 -0.2,0.9 -0.8,2.6 -2.3,4.1 -0.7,0.7 -1.7,1.6 -2.7,1.4 -1.4,-0.5 -1.8,-4.3 -1.8,-4.6 z" + inkscape:connector-curvature="0" /><path + id="path10-7" + d="m 263.7,430.4 c 1.9,-0.1 6.1,1.2 6.8,2.8 0.6,1.3 0.3,-0.4 -0.7,0.8 -0.6,0.2 -1.5,0.6 -2.6,1.1 -2.5,1 -3,1.1 -3.9,1.8 -1,0.7 -1.7,1.6 -2,2 -0.3,0.4 -0.7,0.9 -1.1,1.6 -0.1,0.2 -0.2,0.4 -0.3,0.6 -0.1,0.2 -0.2,0.3 -0.3,0.5 -0.7,2.3 -1.8,4.6 -1.4,6.8 0,0.2 0,0.4 0,0.6 0,0.2 0,0.4 0,0.6 -0.6,1.2 0.9,0.9 1.2,1.9 0.3,1.3 0,2.3 -0.1,3.6 -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.6,1.8 -1.4,2.5 -1.4,2.5 -0.2,0.2 -0.5,0.5 -1,0.8 -0.2,0.1 -0.3,0.2 -0.5,0.3 -2.9,0.9 -4.2,-2.4 -4.8,-4.5 -0.1,-0.2 -0.1,-0.5 -0.2,-0.7 -0.2,-1 -0.2,-2 0.4,-2.5 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.4 -1,-3.1 -0.2,-6 0.2,-8.9 0,-0.2 0.1,-0.4 0.1,-0.6 0.2,-1.4 0.2,-1.8 0.8,-3.2 0.2,-0.5 0.9,-2.6 2.8,-4.5 3.1,-3.4 5.5,-3.2 7.5,-3.3 z" + class="skin penis" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Flaccid_0" + inkscape:label="Flaccid_0" + style="display:inline"><path + id="path6" + d="m 261.5,440.9 c 0,0.1 0.2,0.1 0.3,0.1 1.1,0.1 1.1,1.7 0.8,2.7 0,0.1 0,0.2 -0.1,0.3 -0.3,1.2 -0.8,1.7 -0.8,1.7 -0.1,0.1 -0.5,0.5 -0.9,0.6 -0.1,0 -0.2,0.1 -0.4,0.1 -1.5,-0.1 -2.2,-1.5 -2.4,-2.8 0,-0.1 -0.1,-0.3 -0.1,-0.4 -0.1,-0.6 -0.1,-1.2 0.2,-1.5 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.1 0.2,-0.2" + inkscape:connector-curvature="0" /><path + id="path8" + d="m 258.2,439.2 c 0,-0.2 0,-0.5 0,-0.8 0,-0.2 0,-0.8 0.2,-1.7 0.1,-0.5 0.2,-1 0.2,-1.1 0.6,-2.8 2.6,-4.3 2.6,-4.3 0.2,-0.2 0.8,-0.5 1,-0.7 0.5,-0.3 1.9,-1 3.9,-0.3 0.3,0.1 2.2,0.9 2.6,1.4 0.4,0.7 -0.3,-0.4 -0.4,-0.3 -0.1,0.1 -0.2,0.1 -0.3,0.3 -0.2,0.2 -0.2,0.4 -0.3,0.5 -0.2,0.4 -0.6,0.5 -1.1,0.7 -0.7,0.3 -1.2,0.5 -1.7,0.8 -0.3,0.3 -0.6,0.5 -1,1.1 -0.4,0.5 -0.6,0.8 -0.8,1.2 -0.1,0.1 -0.2,0.5 -0.4,1.1 -0.1,0.4 -0.2,0.5 -0.2,0.7 -0.1,0.3 -0.2,0.6 -0.2,0.8 -0.1,0.5 -0.4,1.4 -1.3,2.2 -0.4,0.4 -0.9,0.9 -1.5,0.7 -1,0 -1.3,-2.1 -1.3,-2.3 z" + inkscape:connector-curvature="0" /><path + id="path10" + d="m 264.9,430.2 c 1,-0.1 3.3,0.7 3.7,1.5 0.3,0.7 0.2,-0.2 -0.4,0.4 -0.3,0.1 -0.8,0.3 -1.4,0.6 -1.4,0.6 -1.6,0.6 -2.1,1 -0.5,0.4 -0.9,0.9 -1.1,1.1 -0.2,0.2 -0.4,0.5 -0.6,0.9 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.3 -0.4,1.3 -1,2.5 -0.8,3.7 0,0.1 0,0.2 0,0.3 0,0.1 0,0.2 0,0.3 -0.3,0.6 0.5,0.5 0.7,1 0.1,0.7 0,1.3 -0.1,1.9 0,0.1 -0.1,0.2 -0.1,0.3 -0.3,1 -0.8,1.4 -0.8,1.4 -0.1,0.1 -0.3,0.3 -0.6,0.5 -0.1,0.1 -0.2,0.1 -0.3,0.1 -1.6,0.5 -2.3,-1.3 -2.6,-2.5 0,-0.1 -0.1,-0.3 -0.1,-0.4 -0.1,-0.5 -0.1,-1.1 0.2,-1.4 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.1 0.1,-0.2 -0.5,-1.7 -0.1,-3.3 0.1,-4.9 0,-0.1 0,-0.2 0.1,-0.3 0.1,-0.8 0.1,-1 0.4,-1.7 0.1,-0.3 0.5,-1.4 1.5,-2.4 1.9,-1.6 3.2,-1.5 4.3,-1.6 z" + class="skin penis" + inkscape:connector-curvature="0" /></g></g><g + inkscape:groupmode="layer" + id="Penis_Addon_" + inkscape:label="Penis_Addon_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Chastity_Cage_6" + inkscape:label="Chastity_Cage_6"><ellipse + id="ellipse9-5" + ry="2.5001018" + rx="14.00057" + cy="541.25623" + cx="200.73834" + transform="matrix(0.99995924,-0.00902868,0.00902868,0.99995924,0,0)" /><ellipse + id="ellipse11-6" + ry="2.3000937" + rx="13.800563" + cy="541.85083" + cx="200.13306" + class="steel_chastity" + transform="matrix(0.99995924,-0.00902868,0.00902868,0.99995924,0,0)" /><ellipse + transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" + cx="94.463371" + cy="489.36151" + rx="2.100081" + ry="18.100698" + id="ellipse17-0" /><ellipse + transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" + class="steel_chastity" + cx="94.077507" + cy="488.60187" + rx="1.9000733" + ry="18.100698" + id="ellipse19-46" /><ellipse + transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" + cx="4.8175468" + cy="497.16367" + rx="2.5001056" + ry="20.900883" + id="ellipse23-6" /><ellipse + transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" + class="steel_chastity" + cx="4.3863487" + cy="496.46616" + rx="2.300097" + ry="20.700874" + id="ellipse25-75" /><ellipse + transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" + cx="-248.74188" + cy="439.8797" + rx="2.4998667" + ry="21.798836" + id="ellipse29-8" /><ellipse + transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" + class="steel_chastity" + cx="-249.24988" + cy="439.13306" + rx="2.2998772" + ry="21.598848" + id="ellipse31-72" /><ellipse + transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" + cx="-447.64758" + cy="279.26624" + rx="2.500005" + ry="20.900042" + id="ellipse35-29" /><ellipse + transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" + class="steel_chastity" + cx="-448.22141" + cy="278.48203" + rx="2.3000047" + ry="20.700043" + id="ellipse37-9" /><ellipse + transform="matrix(0.99997051,-0.00767995,0.00767995,0.99997051,0,0)" + cx="200.59077" + cy="524.47131" + rx="2.5000737" + ry="19.100563" + id="ellipse41-0" /><ellipse + transform="matrix(0.99997051,-0.00767995,0.00767995,0.99997051,0,0)" + class="steel_chastity" + cx="199.99678" + cy="523.66681" + rx="2.3000679" + ry="18.900557" + id="ellipse43-2" /><path + id="path49-21" + d="m 226,522.3 c -1,10.5 -6.2,18.5 -7.4,18.1 -1.2,-0.2 1.9,-8.4 2.7,-18.7 1,-10.3 -0.8,-18.5 0.8,-18.3 1.2,-0.1 4.9,8.3 3.9,18.9 z" + inkscape:connector-curvature="0" /><path + id="path51-5" + d="m 225.4,521.5 c -0.8,10.5 -5.8,18.3 -6.8,18.1 -1.2,-0.2 1.9,-8.2 2.5,-18.5 0.8,-10.3 -1,-18.3 0.4,-18.1 1,-0.2 4.7,8.1 3.9,18.5 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path57-1" + d="m 188.6,522.6 c 0.8,9.9 3.7,17.5 2.5,18.7 -1,1.2 -6.6,-6 -7.6,-18.3 -1,-12.1 3.5,-21.8 4.7,-20.9 1.2,1.1 -0.6,10.6 0.4,20.5 z" + inkscape:connector-curvature="0" /><path + id="path59-49" + d="m 189.2,522.6 c 0.8,9.7 3.5,17 2.5,18.1 -1,1.2 -6.2,-6 -7.2,-17.5 -1,-11.7 3.3,-21 4.3,-20.1 1.1,0.6 -0.6,9.8 0.4,19.5 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" + cx="149.55643" + cy="477.42865" + rx="1.7999737" + ry="16.799755" + id="ellipse63-7" /><ellipse + transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" + class="steel_chastity" + cx="149.25766" + cy="476.95862" + rx="1.5999768" + ry="16.599758" + id="ellipse65-5" /><ellipse + transform="matrix(0.99995924,-0.00902864,0.00902864,0.99995924,0,0)" + cx="199.50198" + cy="523.1438" + rx="18.700764" + ry="2.5001018" + id="ellipse69-7" /><ellipse + transform="matrix(0.99995924,-0.00902864,0.00902864,0.99995924,0,0)" + class="steel_chastity" + cx="198.69852" + cy="523.53674" + rx="18.500753" + ry="2.3000937" + id="ellipse71-0" /><ellipse + transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" + cx="-128.13728" + cy="483.21625" + rx="2.4999266" + ry="21.599365" + id="ellipse75-8" /><ellipse + transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" + class="steel_chastity" + cx="-128.69843" + cy="482.55853" + rx="2.2999322" + ry="21.39937" + id="ellipse77-04" /><ellipse + transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" + cx="-361.15363" + cy="368.00677" + rx="2.5000165" + ry="21.800142" + id="ellipse81-9" /><ellipse + transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" + class="steel_chastity" + cx="-361.66119" + cy="367.19781" + rx="2.3000152" + ry="21.600143" + id="ellipse83-61" /><path + id="path85-04" + d="m 259.1,430.3 c 0.2,0.4 -11.5,3.1 -25.3,12.3 -4.9,3.3 -10.3,6.8 -15.6,13.4 -6.8,8.6 -9.4,16.8 -10.1,18.9 -1.8,5.7 -2.3,11.5 -2.7,15.6 -0.4,4.5 -0.8,11.3 -1,11.3 0,0 0,0 0,-0.2 l 0,0 0.6,0.2 c 0,0.2 -0.8,0.4 -1.2,0.2 -0.8,-0.4 -0.8,-1.6 -1,-1.9 -0.6,-5.8 -0.4,-8 -0.4,-8 -0.6,-3.3 0,-6.2 1.2,-12.3 0.6,-2.9 1.6,-8.2 4.3,-14.4 1.6,-3.7 4.1,-8.6 8.4,-13.8 3.9,-3.5 10.1,-8.4 18.1,-12.7 13,-6.7 24.5,-9 24.7,-8.6 z" + inkscape:connector-curvature="0" /><path + id="path87-2" + d="m 259.3,430.3 c 0.2,0.4 -7.8,2.1 -18.3,7.4 -1.4,0.6 -2.7,1.4 -4.5,2.3 -4.7,2.5 -15.2,8.6 -22.4,20.5 -0.4,0.4 -1.4,2.1 -2.5,4.5 -9.9,20.1 -5.8,40.1 -7.6,40.3 -0.6,0 -1.2,-1.8 -1.4,-2.9 -0.8,-3.1 -3.3,-12.9 2.9,-31.2 1.2,-3.3 2.9,-7.8 5.7,-12.9 3.1,-4.5 6,-8 8.4,-10.1 0.2,-0.2 0.2,-0.2 0.4,-0.4 11.7,-11.5 31.2,-16.2 31.2,-16.2 4.2,-1.1 8.1,-1.7 8.1,-1.3 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="matrix(0.03821651,-0.99926948,0.99926948,0.03821651,0,0)" + cx="-495.11285" + cy="224.15152" + rx="2.5000763" + ry="19.700602" + id="ellipse91-2" /><ellipse + transform="matrix(0.03821651,-0.99926948,0.99926948,0.03821651,0,0)" + class="steel_chastity" + cx="-495.60553" + cy="223.4939" + rx="2.3000703" + ry="19.500595" + id="ellipse93-05" /><ellipse + transform="matrix(0.99945514,-0.03300646,0.03300646,0.99945514,0,0)" + cx="246.78876" + cy="438.30417" + rx="1.8000808" + ry="15.6007" + id="ellipse97-2" /><ellipse + transform="matrix(0.99945514,-0.03300646,0.03300646,0.99945514,0,0)" + class="steel_chastity" + cx="246.40829" + cy="437.69156" + rx="1.6000718" + ry="15.400691" + id="ellipse99-9" /></g><g + inkscape:groupmode="layer" + id="Chastity_Cage_5" + inkscape:label="Chastity_Cage_5"><ellipse + id="ellipse9-4" + ry="2.1000855" + rx="11.400464" + cy="521.97729" + cx="214.31369" + transform="matrix(0.99995924,-0.00902868,0.00902868,0.99995924,0,0)" /><ellipse + id="ellipse11-05" + ry="1.9000775" + rx="11.200457" + cy="522.47308" + cx="213.80939" + class="steel_chastity" + transform="matrix(0.99995924,-0.00902868,0.00902868,0.99995924,0,0)" /><ellipse + transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" + cx="100.80535" + cy="491.53613" + rx="1.7000656" + ry="14.700566" + id="ellipse17-69" /><ellipse + transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" + class="steel_chastity" + cx="100.4789" + cy="490.90662" + rx="1.6000618" + ry="14.700566" + id="ellipse19-22" /><ellipse + transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" + cx="12.995846" + cy="500.44162" + rx="2.1000886" + ry="16.900713" + id="ellipse23-7" /><ellipse + transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" + class="steel_chastity" + cx="12.613705" + cy="499.90048" + rx="1.9000802" + ry="16.700706" + id="ellipse25-54" /><ellipse + transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" + cx="-238.1528" + cy="447.37494" + rx="2.0998878" + ry="17.699057" + id="ellipse29-12" /><ellipse + transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" + class="steel_chastity" + cx="-238.63501" + cy="446.76959" + rx="1.8998986" + ry="17.499067" + id="ellipse31-8" /><ellipse + transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" + cx="-436.15411" + cy="291.23352" + rx="2.1000042" + ry="16.900034" + id="ellipse35-6" /><ellipse + transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" + class="steel_chastity" + cx="-436.67075" + cy="290.69232" + rx="1.9000039" + ry="16.700035" + id="ellipse37-80" /><ellipse + transform="matrix(0.99997051,-0.00767995,0.00767995,0.99997051,0,0)" + cx="214.31587" + cy="508.27579" + rx="2.1000619" + ry="15.500457" + id="ellipse41-51" /><ellipse + transform="matrix(0.99997051,-0.00767995,0.00767995,0.99997051,0,0)" + class="steel_chastity" + cx="213.82069" + cy="507.57208" + rx="1.900056" + ry="15.300451" + id="ellipse43-10" /><path + id="path49-0" + d="m 235.5,506.1 c -0.8,8.5 -5.1,15 -6,14.7 -0.9,-0.2 1.6,-6.8 2.2,-15.2 0.8,-8.4 -0.6,-15 0.6,-14.9 1,0.1 4,6.9 3.2,15.4 z" + inkscape:connector-curvature="0" /><path + id="path51-6" + d="m 235.1,505.5 c -0.6,8.5 -4.7,14.9 -5.5,14.7 -0.9,-0.2 1.6,-6.6 2.1,-15 0.6,-8.4 -0.8,-14.9 0.3,-14.7 0.7,-0.2 3.7,6.6 3.1,15 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path57-2" + d="m 205.2,506.4 c 0.6,8.1 3,14.2 2.1,15.2 -0.8,0.9 -5.4,-4.9 -6.2,-14.9 -0.8,-9.8 2.8,-17.7 3.8,-16.9 0.9,0.8 -0.5,8.5 0.3,16.6 z" + inkscape:connector-curvature="0" /><path + id="path59-58" + d="m 205.7,506.4 c 0.6,7.9 2.8,13.7 2.1,14.7 -0.7,1 -5.1,-4.9 -5.8,-14.2 -0.8,-9.5 2.7,-17.1 3.5,-16.3 0.8,0.5 -0.6,7.9 0.2,15.8 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" + cx="153.95517" + cy="479.34796" + rx="1.3999796" + ry="13.599803" + id="ellipse63-847" /><ellipse + transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" + class="steel_chastity" + cx="153.7373" + cy="478.89117" + rx="1.299981" + ry="13.399805" + id="ellipse65-2" /><ellipse + transform="matrix(0.99995924,-0.00902864,0.00902864,0.99995924,0,0)" + cx="213.34641" + cy="507.2673" + rx="15.20062" + ry="2.1000855" + id="ellipse69-6" /><ellipse + transform="matrix(0.99995924,-0.00902864,0.00902864,0.99995924,0,0)" + class="steel_chastity" + cx="212.64355" + cy="507.56158" + rx="15.000611" + ry="1.9000775" + id="ellipse71-2" /><ellipse + transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" + cx="-118.76535" + cy="488.49884" + rx="2.0999382" + ry="17.499485" + id="ellipse75-9" /><ellipse + transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" + class="steel_chastity" + cx="-119.19056" + cy="487.94672" + rx="1.8999441" + ry="17.399488" + id="ellipse77-0" /><ellipse + transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" + cx="-350.16968" + cy="377.66235" + rx="2.1000137" + ry="17.700117" + id="ellipse81-3" /><ellipse + transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" + class="steel_chastity" + cx="-350.55151" + cy="376.94446" + rx="1.9000125" + ry="17.500114" + id="ellipse83-11" /><path + id="path85-0" + d="m 262.4,431.5 c 0.2,0.3 -9.3,2.5 -20.5,10 -3.9,2.7 -8.4,5.5 -12.6,10.9 -5.5,7 -7.6,13.6 -8.2,15.3 -1.4,4.6 -1.9,9.3 -2.2,12.6 -0.3,3.6 -0.6,9.2 -0.8,9.2 0,0 0,0 0,-0.2 l 0,0 0.5,0.2 c 0,0.2 -0.6,0.3 -0.9,0.2 -0.6,-0.3 -0.6,-1.3 -0.8,-1.6 -0.5,-4.7 -0.3,-6.5 -0.3,-6.5 -0.5,-2.7 0,-5.1 0.9,-10 0.5,-2.4 1.3,-6.6 3.5,-11.7 1.3,-3 3.3,-7 6.8,-11.2 3.2,-2.8 8.2,-6.8 14.7,-10.3 10.4,-5.3 19.7,-7.2 19.9,-6.9 z" + inkscape:connector-curvature="0" /><path + id="path87-3" + d="m 262.6,431.5 c 0.2,0.3 -6.3,1.7 -14.9,6 -1.1,0.5 -2.2,1.1 -3.6,1.9 -3.8,2.1 -12.3,7 -18.2,16.6 -0.3,0.3 -1.1,1.7 -2.1,3.6 -8.1,16.3 -4.7,32.5 -6.2,32.7 -0.5,0 -0.9,-1.4 -1.1,-2.4 -0.6,-2.5 -2.7,-10.4 2.4,-25.3 0.9,-2.7 2.4,-6.3 4.6,-10.4 2.5,-3.6 4.9,-6.5 6.8,-8.2 0.2,-0.2 0.2,-0.2 0.3,-0.3 9.5,-9.3 25.3,-13.1 25.3,-13.1 3.5,-0.9 6.7,-1.4 6.7,-1.1 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="matrix(0.03821651,-0.99926948,0.99926948,0.03821651,0,0)" + cx="-481.94455" + cy="237.15518" + rx="2.100064" + ry="16.000488" + id="ellipse91-0" /><ellipse + transform="matrix(0.03821651,-0.99926948,0.99926948,0.03821651,0,0)" + class="steel_chastity" + cx="-482.45746" + cy="236.61667" + rx="1.900058" + ry="15.800483" + id="ellipse93-39" /><ellipse + transform="matrix(0.99945514,-0.03300646,0.03300646,0.99945514,0,0)" + cx="249.64401" + cy="439.6994" + rx="1.4000628" + ry="12.600566" + id="ellipse97-9" /><ellipse + transform="matrix(0.99945514,-0.03300646,0.03300646,0.99945514,0,0)" + class="steel_chastity" + cx="249.35986" + cy="439.28918" + rx="1.3000582" + ry="12.500561" + id="ellipse99-6" /></g><g + inkscape:groupmode="layer" + id="Chastity_Cage_4" + inkscape:label="Chastity_Cage_4"><ellipse + id="ellipse9-1" + ry="1.6000652" + rx="8.8003588" + cy="502.5741" + cx="225.18994" + transform="matrix(0.99995924,-0.00902868,0.00902868,0.99995924,0,0)" /><ellipse + id="ellipse11-0" + ry="1.5000612" + rx="8.7003546" + cy="502.97079" + cx="224.78665" + class="steel_chastity" + transform="matrix(0.99995924,-0.00902868,0.00902868,0.99995924,0,0)" /><ellipse + transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" + cx="104.92211" + cy="492.44202" + rx="1.3000501" + ry="11.300436" + id="ellipse17-4" /><ellipse + transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" + class="steel_chastity" + cx="104.65597" + cy="492.04211" + rx="1.2000463" + ry="11.300436" + id="ellipse19-4" /><ellipse + transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" + cx="19.07037" + cy="502.1871" + rx="1.6000676" + ry="13.000548" + id="ellipse23-47" /><ellipse + transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" + class="steel_chastity" + cx="18.83839" + cy="501.80112" + rx="1.5000633" + ry="12.900544" + id="ellipse25-6" /><ellipse + transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" + cx="-228.82686" + cy="452.56561" + rx="1.5999147" + ry="13.599275" + id="ellipse29-1" /><ellipse + transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" + class="steel_chastity" + cx="-229.18172" + cy="451.99884" + rx="1.49992" + ry="13.49928" + id="ellipse31-7" /><ellipse + transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" + cx="-424.89481" + cy="300.58334" + rx="1.6000032" + ry="13.000027" + id="ellipse35-9" /><ellipse + transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" + class="steel_chastity" + cx="-425.25333" + cy="300.08054" + rx="1.5000031" + ry="12.900026" + id="ellipse37-6" /><ellipse + transform="matrix(0.99997051,-0.00767995,0.00767995,0.99997051,0,0)" + cx="225.34215" + cy="491.85947" + rx="1.6000472" + ry="11.900351" + id="ellipse41-78" /><ellipse + transform="matrix(0.99997051,-0.00767995,0.00767995,0.99997051,0,0)" + class="steel_chastity" + cx="224.94597" + cy="491.35669" + rx="1.5000442" + ry="11.800348" + id="ellipse43-5" /><path + id="path49-5" + d="m 242.5,489.8 c -0.6,6.6 -3.9,11.6 -4.6,11.3 -0.7,-0.1 1.2,-5.2 1.7,-11.7 0.6,-6.5 -0.5,-11.6 0.5,-11.5 0.7,0 3,5.3 2.4,11.9 z" + inkscape:connector-curvature="0" /><path + id="path51-97" + d="m 242.1,489.3 c -0.5,6.6 -3.7,11.5 -4.3,11.3 -0.7,-0.1 1.2,-5.1 1.6,-11.6 0.5,-6.5 -0.6,-11.5 0.2,-11.3 0.7,-0.1 3,5.1 2.5,11.6 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path57-88" + d="m 219.1,490 c 0.5,6.2 2.3,11 1.6,11.7 -0.6,0.7 -4.1,-3.8 -4.8,-11.5 -0.6,-7.6 2.2,-13.6 2.9,-13 0.8,0.6 -0.3,6.6 0.3,12.8 z" + inkscape:connector-curvature="0" /><path + id="path59-3" + d="m 219.4,490 c 0.5,6.1 2.2,10.6 1.6,11.3 -0.6,0.7 -3.9,-3.8 -4.5,-11 -0.6,-7.3 2.1,-13.2 2.7,-12.5 0.7,0.4 -0.4,6.1 0.2,12.2 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" + cx="155.92749" + cy="480.11963" + rx="1.099984" + ry="10.499847" + id="ellipse63-89" /><ellipse + transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" + class="steel_chastity" + cx="155.79077" + cy="479.77576" + rx="0.99998546" + ry="10.399848" + id="ellipse65-6" /><ellipse + transform="matrix(0.99995924,-0.00902864,0.00902864,0.99995924,0,0)" + cx="224.49228" + cy="491.26639" + rx="11.700477" + ry="1.6000652" + id="ellipse69-3" /><ellipse + transform="matrix(0.99995924,-0.00902864,0.00902864,0.99995924,0,0)" + class="steel_chastity" + cx="223.99008" + cy="491.46194" + rx="11.600473" + ry="1.5000612" + id="ellipse71-38" /><ellipse + transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" + cx="-111.05588" + cy="491.65454" + rx="1.5999529" + ry="13.499603" + id="ellipse75-04" /><ellipse + transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" + class="steel_chastity" + cx="-111.34396" + cy="491.20587" + rx="1.4999559" + ry="13.399606" + id="ellipse77-8" /><ellipse + transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" + cx="-339.767" + cy="384.64166" + rx="1.6000105" + ry="13.60009" + id="ellipse81-8" /><ellipse + transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" + class="steel_chastity" + cx="-340.12155" + cy="384.11096" + rx="1.5000099" + ry="13.500089" + id="ellipse83-9" /><path + id="path85-7" + d="m 263.2,432.2 c 0.1,0.2 -7.2,1.9 -15.8,7.7 -3,2.1 -6.5,4.3 -9.7,8.4 -4.3,5.4 -5.8,10.5 -6.3,11.8 -1.1,3.5 -1.5,7.2 -1.7,9.7 -0.2,2.8 -0.5,7.1 -0.6,7.1 0,0 0,0 0,-0.1 l 0,0 0.4,0.1 c 0,0.1 -0.5,0.2 -0.7,0.1 -0.5,-0.2 -0.5,-1 -0.6,-1.2 -0.4,-3.7 -0.2,-5 -0.2,-5 -0.4,-2.1 0,-3.9 0.7,-7.7 0.4,-1.8 1,-5.1 2.7,-9 1,-2.3 2.6,-5.4 5.2,-8.7 2.4,-2.2 6.3,-5.2 11.3,-7.9 8,-4 15.2,-5.5 15.3,-5.3 z" + inkscape:connector-curvature="0" /><path + id="path87-7" + d="m 263.3,432.2 c 0.1,0.2 -4.9,1.3 -11.5,4.6 -0.9,0.4 -1.7,0.9 -2.8,1.5 -2.9,1.6 -9.5,5.4 -14,12.8 -0.2,0.2 -0.9,1.3 -1.6,2.8 -6.2,12.5 -3.7,25.1 -4.8,25.2 -0.4,0 -0.7,-1.1 -0.9,-1.8 -0.5,-1.9 -2.1,-8 1.8,-19.5 0.7,-2.1 1.8,-4.9 3.5,-8 1.9,-2.8 3.8,-5 5.2,-6.3 0.1,-0.1 0.1,-0.1 0.2,-0.2 7.3,-7.2 19.5,-10.1 19.5,-10.1 3,-0.8 5.4,-1.2 5.4,-1 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="matrix(0.03821651,-0.99926948,0.99926948,0.03821651,0,0)" + cx="-468.74423" + cy="247.48743" + rx="1.6000489" + ry="12.300376" + id="ellipse91-4" /><ellipse + transform="matrix(0.03821651,-0.99926948,0.99926948,0.03821651,0,0)" + class="steel_chastity" + cx="-469.07715" + cy="247.06378" + rx="1.5000458" + ry="12.200373" + id="ellipse93-3" /><ellipse + transform="matrix(0.99945514,-0.03300646,0.03300646,0.99945514,0,0)" + cx="250.0174" + cy="440.51257" + rx="1.1000494" + ry="9.7004356" + id="ellipse97-3" /><ellipse + transform="matrix(0.99945514,-0.03300646,0.03300646,0.99945514,0,0)" + class="steel_chastity" + cx="249.82956" + cy="440.20477" + rx="1.0000449" + ry="9.6004314" + id="ellipse99-0" /></g><g + inkscape:groupmode="layer" + id="Chastity_Cage_3" + inkscape:label="Chastity_Cage_3"><ellipse + id="ellipse9-7" + ry="1.300053" + rx="7.2002935" + cy="488.65698" + cx="234.51596" + transform="matrix(0.99995924,-0.00902905,0.00902905,0.99995924,0,0)" /><ellipse + id="ellipse11-27" + ry="1.2000489" + rx="7.1002893" + cy="488.95456" + cx="234.21359" + class="steel_chastity" + transform="matrix(0.99995924,-0.00902905,0.00902905,0.99995924,0,0)" /><ellipse + transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" + cx="110.62966" + cy="491.78107" + rx="1.1000425" + ry="9.3003588" + id="ellipse17-6" /><ellipse + transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" + class="steel_chastity" + cx="110.42556" + cy="491.39282" + rx="1.0000386" + ry="9.3003588" + id="ellipse19-1" /><ellipse + transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" + cx="26.19035" + cy="502.51645" + rx="1.3000548" + ry="10.700452" + id="ellipse23-1" /><ellipse + transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" + class="steel_chastity" + cx="25.94125" + cy="502.15286" + rx="1.2000507" + ry="10.600448" + id="ellipse25-5" /><ellipse + transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" + cx="-219.80795" + cy="456.57428" + rx="1.2999306" + ry="11.199403" + id="ellipse29-4" /><ellipse + transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" + class="steel_chastity" + cx="-220.08142" + cy="456.1864" + rx="1.199936" + ry="11.099408" + id="ellipse31-90" /><ellipse + transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" + cx="-415.43591" + cy="308.4957" + rx="1.3000026" + ry="10.700022" + id="ellipse35-1" /><ellipse + transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" + class="steel_chastity" + cx="-415.76486" + cy="308.09805" + rx="1.2000026" + ry="10.600022" + id="ellipse37-7" /><ellipse + transform="matrix(0.99997051,-0.00768017,0.00768017,0.99997051,0,0)" + cx="234.73555" + cy="479.83078" + rx="1.3000383" + ry="9.8002892" + id="ellipse41-1" /><ellipse + transform="matrix(0.99997051,-0.00768017,0.00768017,0.99997051,0,0)" + class="steel_chastity" + cx="234.43837" + cy="479.42868" + rx="1.2000355" + ry="9.7002859" + id="ellipse43-1" /><path + id="path49-7" + d="m 249.4,477.7 c -0.5,5.4 -3.2,9.5 -3.8,9.3 -0.6,-0.1 1,-4.3 1.4,-9.6 0.5,-5.3 -0.4,-9.5 0.4,-9.4 0.6,0 2.5,4.3 2,9.7 z" + inkscape:connector-curvature="0" /><path + id="path51-7" + d="m 249.1,477.3 c -0.4,5.4 -3,9.4 -3.5,9.3 -0.6,-0.1 1,-4.2 1.3,-9.5 0.4,-5.3 -0.5,-9.4 0.2,-9.3 0.5,-0.1 2.4,4.2 2,9.5 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path57-6" + d="m 230.2,477.9 c 0.4,5.1 1.9,9 1.3,9.6 -0.5,0.6 -3.4,-3.1 -3.9,-9.4 -0.5,-6.2 1.8,-11.2 2.4,-10.7 0.6,0.5 -0.3,5.4 0.2,10.5 z" + inkscape:connector-curvature="0" /><path + id="path59-5" + d="m 230.5,477.9 c 0.4,5 1.8,8.7 1.3,9.3 -0.5,0.6 -3.2,-3.1 -3.7,-9 -0.5,-6 1.7,-10.8 2.2,-10.3 0.6,0.3 -0.3,5 0.2,10 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" + cx="160.35144" + cy="479.0896" + rx="0.89998686" + ry="8.5998755" + id="ellipse63-3" /><ellipse + transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" + class="steel_chastity" + cx="160.21722" + cy="478.84027" + rx="0.79998839" + ry="8.499876" + id="ellipse65-9" /><ellipse + transform="matrix(0.99995924,-0.00902901,0.00902901,0.99995924,0,0)" + cx="233.9003" + cy="479.35046" + rx="9.6003914" + ry="1.300053" + id="ellipse69-8" /><ellipse + transform="matrix(0.99995924,-0.00902901,0.00902901,0.99995924,0,0)" + class="steel_chastity" + cx="233.49789" + cy="479.54724" + rx="9.5003872" + ry="1.2000489" + id="ellipse71-1" /><path + id="path73-2" + d="M 255.7,454.4" + inkscape:connector-curvature="0" /><ellipse + transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" + cx="-102.82417" + cy="493.77295" + rx="1.2999617" + ry="11.099674" + id="ellipse77-3" /><ellipse + transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" + class="steel_chastity" + cx="-103.11944" + cy="493.39758" + rx="1.1999648" + ry="10.999677" + id="ellipse79-9" /><ellipse + transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" + cx="-330.53204" + cy="390.57532" + rx="1.3000085" + ry="11.200073" + id="ellipse83-8" /><ellipse + transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" + class="steel_chastity" + cx="-330.81357" + cy="390.16785" + rx="1.2000079" + ry="11.100074" + id="ellipse85-8" /><path + id="path87-5" + d="m 266.4,430.5 c 0.1,0.2 -5.9,1.6 -13,6.3 -2.5,1.7 -5.3,3.5 -8,6.9 -3.5,4.4 -4.8,8.6 -5.2,9.7 -0.9,2.9 -1.2,5.9 -1.4,8 -0.2,2.3 -0.4,5.8 -0.5,5.8 0,0 0,0 0,-0.1 l 0,0 c 0,0 0.3,0.1 0.3,0.1 0,0.1 -0.4,0.2 -0.6,0.1 -0.4,-0.2 -0.4,-0.8 -0.5,-1 -0.3,-3 -0.2,-4.1 -0.2,-4.1 -0.3,-1.7 0,-3.2 0.6,-6.3 0.3,-1.5 0.8,-4.2 2.2,-7.4 0.8,-1.9 2.1,-4.4 4.3,-7.1 2,-1.8 5.2,-4.3 9.3,-6.5 6.7,-3.4 12.6,-4.6 12.7,-4.4 z" + inkscape:connector-curvature="0" /><path + id="path89-0" + d="m 266.5,430.5 c 0.1,0.2 -4,1.1 -9.4,3.8 -0.7,0.3 -1.4,0.7 -2.3,1.2 -2.4,1.3 -7.8,4.4 -11.5,10.5 -0.2,0.2 -0.7,1.1 -1.3,2.3 -5.1,10.3 -3,20.6 -3.9,20.7 -0.3,0 -0.6,-0.9 -0.7,-1.5 -0.4,-1.6 -1.7,-6.6 1.5,-16 0.6,-1.7 1.5,-4 2.9,-6.6 1.6,-2.3 3.1,-4.1 4.3,-5.2 0.1,-0.1 0.1,-0.1 0.2,-0.2 6,-5.9 16,-8.3 16,-8.3 2.2,-0.6 4.2,-0.9 4.2,-0.7 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path91-9" + d="M 236.7,434.8" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path93-6" + d="M 227.5,436.9" + inkscape:connector-curvature="0" /><path + id="path95-3" + d="M 235.6,434.9" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path97-8" + d="M 229.2,431.5" + inkscape:connector-curvature="0" /><ellipse + transform="matrix(0.03821768,-0.99926944,0.99926944,0.03821768,0,0)" + cx="-458.50751" + cy="256.35947" + rx="1.3000398" + ry="10.100309" + id="ellipse101-6" /><ellipse + transform="matrix(0.03821768,-0.99926944,0.99926944,0.03821768,0,0)" + class="steel_chastity" + cx="-458.78857" + cy="256.03387" + rx="1.2000368" + ry="10.000306" + id="ellipse103-1" /><ellipse + transform="matrix(0.99945509,-0.03300794,0.03300794,0.99945509,0,0)" + cx="253.07095" + cy="438.91257" + rx="0.90004039" + ry="8.0003595" + id="ellipse107-5" /><ellipse + transform="matrix(0.99945509,-0.03300794,0.03300794,0.99945509,0,0)" + class="steel_chastity" + cx="252.88055" + cy="438.60617" + rx="0.80003595" + ry="7.9003549" + id="ellipse109-9" /></g><g + inkscape:groupmode="layer" + id="Chastity_Cage_2" + inkscape:label="Chastity_Cage_2"><ellipse + id="ellipse9-3" + ry="0.80003262" + rx="4.6001873" + cy="470.03201" + cx="242.98465" + transform="matrix(0.99995924,-0.00902905,0.00902905,0.99995924,0,0)" /><ellipse + id="ellipse11-2" + ry="0.80003262" + rx="4.6001873" + cy="470.23044" + cx="242.78305" + class="steel_chastity" + transform="matrix(0.99995924,-0.00902905,0.00902905,0.99995924,0,0)" /><ellipse + transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" + cx="112.55401" + cy="492.2785" + rx="0.70002699" + ry="6.100235" + id="ellipse17-1" /><ellipse + transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" + class="steel_chastity" + cx="112.31628" + cy="492.02136" + rx="0.70002699" + ry="6.0002313" + id="ellipse19-5" /><ellipse + transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" + cx="30.064816" + cy="503.48874" + rx="0.80003381" + ry="6.9002914" + id="ellipse23-4" /><ellipse + transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" + class="steel_chastity" + cx="29.862652" + cy="503.28256" + rx="0.80003381" + ry="6.8002872" + id="ellipse25-7" /><ellipse + transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" + cx="-212.21753" + cy="460.03302" + rx="0.79995733" + ry="7.199616" + id="ellipse29-56" /><ellipse + transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" + class="steel_chastity" + cx="-212.47066" + cy="459.78162" + rx="0.79995733" + ry="7.199616" + id="ellipse31-93" /><ellipse + transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" + cx="-405.08789" + cy="315.38254" + rx="0.80000162" + ry="7.0000143" + id="ellipse35-4" /><ellipse + transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" + class="steel_chastity" + cx="-405.27695" + cy="315.1951" + rx="0.80000162" + ry="6.9000144" + id="ellipse37-5" /><ellipse + transform="matrix(0.99997051,-0.00768017,0.00768017,0.99997051,0,0)" + cx="243.35591" + cy="464.19601" + rx="0.80002362" + ry="6.4001889" + id="ellipse41-5" /><ellipse + transform="matrix(0.99997051,-0.00768017,0.00768017,0.99997051,0,0)" + class="steel_chastity" + cx="243.15773" + cy="463.99463" + rx="0.80002362" + ry="6.3001862" + id="ellipse43-4" /><path + id="path49-4" + d="m 254,462.1 c -0.3,3.5 -2.1,6.1 -2.5,6.1 -0.4,-0.1 0.6,-2.8 0.9,-6.2 0.3,-3.5 -0.2,-6.2 0.2,-6.1 0.5,0 1.7,2.7 1.4,6.2 z" + inkscape:connector-curvature="0" /><path + id="path51-3" + d="m 253.8,461.9 c -0.3,3.5 -1.9,6.1 -2.3,6 -0.4,-0.1 0.6,-2.7 0.8,-6.2 0.3,-3.4 -0.3,-6.1 0.1,-6.1 0.4,0.1 1.7,2.8 1.4,6.3 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path57-8" + d="m 241.5,462.3 c 0.3,3.3 1.2,5.8 0.8,6.2 -0.4,0.4 -2.2,-2 -2.5,-6.1 -0.3,-4 1.1,-7.2 1.6,-6.9 0.4,0.3 -0.2,3.4 0.1,6.8 z" + inkscape:connector-curvature="0" /><path + id="path59-6" + d="m 241.8,462.2 c 0.3,3.2 1.2,5.7 0.8,6 -0.3,0.4 -2.1,-2 -2.4,-5.9 -0.3,-3.9 1.1,-7 1.5,-6.7 0.3,0.4 -0.3,3.4 0.1,6.6 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" + cx="160.21332" + cy="479.76617" + rx="0.59999132" + ry="5.4999199" + id="ellipse63-84" /><ellipse + transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" + class="steel_chastity" + cx="160.05597" + cy="479.53412" + rx="0.49999273" + ry="5.4999199" + id="ellipse65-3" /><ellipse + transform="matrix(0.99995924,-0.00902901,0.00902901,0.99995924,0,0)" + cx="242.53937" + cy="464.02777" + rx="6.2002525" + ry="0.80003262" + id="ellipse69-4" /><ellipse + transform="matrix(0.99995924,-0.00902901,0.00902901,0.99995924,0,0)" + class="steel_chastity" + cx="242.33777" + cy="464.22568" + rx="6.2002525" + ry="0.80003262" + id="ellipse71-9" /><ellipse + transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" + cx="-97.086578" + cy="495.68488" + rx="0.79997647" + ry="7.1997881" + id="ellipse75-0" /><ellipse + transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" + class="steel_chastity" + cx="-97.253754" + cy="495.40631" + rx="0.79997647" + ry="7.099791" + id="ellipse77-68" /><ellipse + transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" + cx="-321.58868" + cy="395.51544" + rx="0.80000526" + ry="7.200047" + id="ellipse81-2" /><ellipse + transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" + class="steel_chastity" + cx="-321.74698" + cy="395.18634" + rx="0.80000526" + ry="7.200047" + id="ellipse83-6" /><path + id="path85-6" + d="m 265,431.6 c 0.1,0.2 -3.8,1.1 -8.4,4.1 -1.6,1.1 -3.4,2.3 -5.2,4.5 -2.3,2.8 -3.1,5.6 -3.4,6.3 -0.6,1.9 -0.8,3.8 -0.9,5.2 -0.2,1.5 -0.3,3.7 -0.3,3.7 0,0 0,0 0,0 l 0,0 c 0,0 0.2,0 0.2,0.1 0,0 -0.2,0.1 -0.4,0 -0.2,-0.1 -0.3,-0.5 -0.3,-0.7 -0.2,-2 -0.1,-2.6 -0.1,-2.6 -0.2,-1.1 0,-2.1 0.4,-4.1 0.2,-1 0.5,-2.7 1.4,-4.8 0.5,-1.2 1.4,-2.9 2.8,-4.6 1.3,-1.2 3.3,-2.8 6.1,-4.2 4.2,-2.4 8.1,-3.1 8.1,-2.9 z" + inkscape:connector-curvature="0" /><path + id="path87-4" + d="m 265.1,431.5 c 0,0.1 -2.6,0.7 -6.1,2.5 -0.4,0.2 -0.9,0.4 -1.5,0.8 -1.5,0.9 -5,2.9 -7.5,6.8 -0.1,0.2 -0.4,0.7 -0.8,1.5 -3.3,6.7 -2,13.4 -2.6,13.4 -0.2,0 -0.4,-0.6 -0.5,-1 -0.3,-1 -1.1,-4.3 0.9,-10.4 0.4,-1.1 1,-2.6 1.9,-4.3 1,-1.5 2,-2.6 2.8,-3.4 0,0 0.1,-0.1 0.1,-0.1 3.9,-3.8 10.4,-5.4 10.4,-5.4 1.6,-0.3 2.9,-0.5 2.9,-0.4 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="matrix(0.03821768,-0.99926944,0.99926944,0.03821768,0,0)" + cx="-446.11111" + cy="264.34604" + rx="0.80002451" + ry="6.5001988" + id="ellipse91-5" /><ellipse + transform="matrix(0.03821768,-0.99926944,0.99926944,0.03821768,0,0)" + class="steel_chastity" + cx="-446.23386" + cy="264.04041" + rx="0.80002451" + ry="6.5001988" + id="ellipse93-0" /><ellipse + transform="matrix(0.99945509,-0.03300794,0.03300794,0.99945509,0,0)" + cx="251.33618" + cy="439.95505" + rx="0.60002697" + ry="5.2002335" + id="ellipse97-8" /><ellipse + transform="matrix(0.99945509,-0.03300794,0.03300794,0.99945509,0,0)" + class="steel_chastity" + cx="251.2424" + cy="439.75095" + rx="0.50002247" + ry="5.1002293" + id="ellipse99-7" /></g><g + inkscape:groupmode="layer" + id="Chastity_Cage_1" + inkscape:label="Chastity_Cage_1"><ellipse + id="ellipse9-6" + ry="0.60002446" + rx="3.3001344" + cy="459.80698" + cx="251.37799" + transform="matrix(0.99995924,-0.00902905,0.00902905,0.99995924,0,0)" /><ellipse + id="ellipse11-1" + ry="0.50002038" + rx="3.2001305" + cy="459.90585" + cx="251.27689" + class="steel_chastity" + transform="matrix(0.99995924,-0.00902905,0.00902905,0.99995924,0,0)" /><ellipse + transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" + cx="117.17141" + cy="493.57233" + rx="0.50001931" + ry="4.3001661" + id="ellipse17-9" /><ellipse + transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" + class="steel_chastity" + cx="117.01528" + cy="493.43213" + rx="0.50001931" + ry="4.2001619" + id="ellipse19-2" /><ellipse + transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" + cx="35.603542" + cy="505.63315" + rx="0.60002536" + ry="4.900207" + id="ellipse23-2" /><ellipse + transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" + class="steel_chastity" + cx="35.472363" + cy="505.45859" + rx="0.5000211" + ry="4.8002028" + id="ellipse25-3" /><ellipse + transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" + cx="-205.85602" + cy="464.87109" + rx="0.59996802" + ry="5.0997276" + id="ellipse29-5" /><ellipse + transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" + class="steel_chastity" + cx="-205.95262" + cy="464.69409" + rx="0.49997333" + ry="5.0997276" + id="ellipse31-9" /><ellipse + transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" + cx="-398.70349" + cy="322.89914" + rx="0.60000128" + ry="4.9000101" + id="ellipse35-2" /><ellipse + transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" + class="steel_chastity" + cx="-398.8255" + cy="322.72653" + rx="0.50000101" + ry="4.9000101" + id="ellipse37-8" /><ellipse + transform="matrix(0.99997051,-0.00768017,0.00768017,0.99997051,0,0)" + cx="251.82265" + cy="455.56049" + rx="0.60001773" + ry="4.5001326" + id="ellipse41-7" /><ellipse + transform="matrix(0.99997051,-0.00768017,0.00768017,0.99997051,0,0)" + class="steel_chastity" + cx="251.62398" + cy="455.35959" + rx="0.50001472" + ry="4.4001298" + id="ellipse43-3" /><path + id="path49-2" + d="m 260.3,453.5 c -0.2,2.5 -1.5,4.3 -1.7,4.3 -0.3,0 0.4,-1.9 0.6,-4.4 0.2,-2.4 -0.2,-4.3 0.2,-4.3 0.2,0 1.1,1.9 0.9,4.4 z" + inkscape:connector-curvature="0" /><path + id="path51-9" + d="m 260.1,453.3 c -0.2,2.5 -1.4,4.3 -1.6,4.2 -0.3,0 0.4,-1.9 0.6,-4.3 0.2,-2.4 -0.2,-4.3 0.1,-4.3 0.3,0 1.1,2 0.9,4.4 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path57-9" + d="m 251.5,453.6 c 0.2,2.3 0.9,4.1 0.6,4.4 -0.2,0.3 -1.6,-1.4 -1.8,-4.3 -0.2,-2.8 0.8,-5.1 1.1,-4.9 0.3,0.2 -0.1,2.4 0.1,4.8 z" + inkscape:connector-curvature="0" /><path + id="path59-4" + d="m 251.7,453.6 c 0.2,2.3 0.8,4 0.6,4.2 -0.2,0.3 -1.5,-1.4 -1.7,-4.1 -0.2,-2.7 0.8,-4.9 1,-4.7 0.3,0.1 -0.2,2.3 0.1,4.6 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" + cx="163.77451" + cy="480.79053" + rx="0.39999419" + ry="3.8999434" + id="ellipse63-8" /><ellipse + transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" + class="steel_chastity" + cx="163.70459" + cy="480.56799" + rx="0.39999419" + ry="3.8999434" + id="ellipse65-4" /><ellipse + transform="matrix(0.99995924,-0.00902901,0.00902901,0.99995924,0,0)" + cx="251.11652" + cy="455.50406" + rx="4.4001794" + ry="0.60002446" + id="ellipse69-0" /><ellipse + transform="matrix(0.99995924,-0.00902901,0.00902901,0.99995924,0,0)" + class="steel_chastity" + cx="250.91531" + cy="455.70251" + rx="4.3001757" + ry="0.50002038" + id="ellipse71-3" /><ellipse + transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" + cx="-91.045746" + cy="499.08899" + rx="0.59998238" + ry="4.9998531" + id="ellipse75" /><ellipse + transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" + class="steel_chastity" + cx="-91.25238" + cy="498.96332" + rx="0.49998531" + ry="4.9998531" + id="ellipse77-6" /><ellipse + transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" + cx="-315.15625" + cy="401.64398" + rx="0.60000396" + ry="5.1000333" + id="ellipse81" /><ellipse + transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" + class="steel_chastity" + cx="-315.25656" + cy="401.41248" + rx="0.50000328" + ry="5.1000333" + id="ellipse83-1" /><path + id="path85" + d="m 268.1,432 c 0,0.1 -2.7,0.7 -5.9,2.9 -1.2,0.8 -2.4,1.6 -3.6,3.1 -1.6,2 -2.2,3.9 -2.4,4.4 -0.4,1.3 -0.5,2.7 -0.6,3.6 -0.1,1.1 -0.2,2.6 -0.2,2.6 0,0 0,0 0,0 l 0,0 c 0,0 0.1,0 0.1,0.1 0,0 -0.2,0.1 -0.3,0 -0.2,-0.1 -0.2,-0.3 -0.2,-0.5 -0.2,-1.4 -0.1,-1.9 -0.1,-1.9 -0.1,-0.8 0,-1.5 0.3,-2.9 0.1,-0.7 0.4,-1.9 1,-3.4 0.4,-0.9 1,-2 1.9,-3.2 0.9,-0.8 2.4,-2 4.3,-3 2.9,-1.4 5.6,-1.9 5.7,-1.8 z" + inkscape:connector-curvature="0" /><path + id="path87-0" + d="m 268.1,431.9 c 0,0.1 -1.8,0.5 -4.3,1.7 -0.3,0.2 -0.6,0.3 -1.1,0.5 -1.1,0.6 -3.5,2 -5.3,4.8 -0.1,0.1 -0.3,0.5 -0.6,1.1 -2.3,4.7 -1.4,9.4 -1.8,9.4 -0.1,0 -0.3,-0.4 -0.3,-0.7 -0.2,-0.7 -0.8,-3 0.7,-7.3 0.3,-0.8 0.7,-1.8 1.3,-3 0.7,-1.1 1.4,-1.9 1.9,-2.4 0,0 0.1,-0.1 0.1,-0.1 2.7,-2.7 7.3,-3.8 7.3,-3.8 1.2,-0.1 2.1,-0.2 2.1,-0.2 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="matrix(0.03821768,-0.99926944,0.99926944,0.03821768,0,0)" + cx="-438.95258" + cy="272.41016" + rx="0.60001838" + ry="4.6001406" + id="ellipse91" /><ellipse + transform="matrix(0.03821768,-0.99926944,0.99926944,0.03821768,0,0)" + class="steel_chastity" + cx="-439.09824" + cy="272.22467" + rx="0.50001532" + ry="4.6001406" + id="ellipse93" /><ellipse + transform="matrix(0.99945509,-0.03300794,0.03300794,0.99945509,0,0)" + cx="254.11981" + cy="440.54788" + rx="0.40001798" + ry="3.6001616" + id="ellipse97" /><ellipse + transform="matrix(0.99945509,-0.03300794,0.03300794,0.99945509,0,0)" + class="steel_chastity" + cx="254.0242" + cy="440.34491" + rx="0.40001798" + ry="3.6001616" + id="ellipse99" /></g><g + inkscape:groupmode="layer" + id="Chastity_Cage_0" + inkscape:label="Chastity_Cage_0"><ellipse + id="ellipse9" + ry="0.30001223" + rx="1.8000734" + cy="447.65076" + cx="256.28809" + transform="matrix(0.99995924,-0.00902905,0.00902905,0.99995924,0,0)" /><ellipse + id="ellipse11" + ry="0.30001223" + rx="1.8000734" + cy="447.75015" + cx="256.28748" + class="steel_chastity" + transform="matrix(0.99995924,-0.00902905,0.00902905,0.99995924,0,0)" /><ellipse + transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" + cx="118.46316" + cy="492.85052" + rx="0.30001158" + ry="2.3000886" + id="ellipse17" /><ellipse + transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" + class="steel_chastity" + cx="118.38692" + cy="492.8288" + rx="0.30001158" + ry="2.3000886" + id="ellipse19" /><ellipse + transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" + cx="38.287045" + cy="505.22092" + rx="0.30001268" + ry="2.6001096" + id="ellipse23" /><ellipse + transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" + class="steel_chastity" + cx="38.224377" + cy="505.18045" + rx="0.30001268" + ry="2.6001096" + id="ellipse25" /><ellipse + transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" + cx="-200.51021" + cy="466.13983" + rx="0.29998401" + ry="2.7998507" + id="ellipse29" /><ellipse + transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" + class="steel_chastity" + cx="-200.55437" + cy="466.04401" + rx="0.29998401" + ry="2.699856" + id="ellipse31" /><ellipse + transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" + cx="-391.45963" + cy="326.78561" + rx="0.30000064" + ry="2.7000055" + id="ellipse35" /><ellipse + transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" + class="steel_chastity" + cx="-391.51733" + cy="326.73807" + rx="0.30000064" + ry="2.6000051" + id="ellipse37" /><ellipse + transform="matrix(0.99997051,-0.00768017,0.00768017,0.99997051,0,0)" + cx="256.80255" + cy="445.19861" + rx="0.30000886" + ry="2.4000709" + id="ellipse41" /><ellipse + transform="matrix(0.99997051,-0.00768017,0.00768017,0.99997051,0,0)" + class="steel_chastity" + cx="256.70325" + cy="445.09808" + rx="0.30000886" + ry="2.4000709" + id="ellipse43" /><path + id="path49" + d="m 262.9,443.1 c -0.1,1.3 -0.8,2.3 -0.9,2.3 -0.2,0 0.2,-1.1 0.3,-2.4 0.1,-1.3 -0.1,-2.3 0.1,-2.3 0.2,0 0.7,1.1 0.5,2.4 z" + inkscape:connector-curvature="0" /><path + id="path932" + d="m 262.9,443 c -0.1,1.3 -0.7,2.3 -0.9,2.3 -0.1,0 0.2,-1 0.3,-2.4 0.1,-1.3 -0.1,-2.3 0,-2.3 0.2,0.1 0.7,1.1 0.6,2.4 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path57" + d="m 258.2,443.2 c 0.1,1.3 0.5,2.2 0.3,2.4 -0.1,0.1 -0.8,-0.8 -1,-2.3 -0.1,-1.5 0.4,-2.8 0.6,-2.6 0.2,0 0,1.2 0.1,2.5 z" + inkscape:connector-curvature="0" /><path + id="path59" + d="m 258.3,443.2 c 0.1,1.2 0.5,2.2 0.3,2.3 -0.1,0.1 -0.8,-0.8 -0.9,-2.2 -0.1,-1.5 0.4,-2.7 0.6,-2.5 0.1,0 -0.2,1.2 0,2.4 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" + cx="163.83322" + cy="480.08179" + rx="0.1999971" + ry="2.0999694" + id="ellipse63" /><ellipse + transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" + class="steel_chastity" + cx="163.74954" + cy="479.9696" + rx="0.1999971" + ry="2.0999694" + id="ellipse65" /><ellipse + transform="matrix(0.99995924,-0.00902901,0.00902901,0.99995924,0,0)" + cx="256.20892" + cy="445.34915" + rx="2.4000978" + ry="0.30001223" + id="ellipse69" /><ellipse + transform="matrix(0.99995924,-0.00902901,0.00902901,0.99995924,0,0)" + class="steel_chastity" + cx="256.10831" + cy="445.44836" + rx="2.3000937" + ry="0.30001223" + id="ellipse71" /><path + id="path73" + d="M 264.5,437.4" + inkscape:connector-curvature="0" /><ellipse + transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" + cx="-87.03363" + cy="499.39716" + rx="0.29999119" + ry="2.6999207" + id="ellipse77" /><ellipse + transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" + class="steel_chastity" + cx="-87.083023" + cy="499.32916" + rx="0.29999119" + ry="2.6999207" + id="ellipse79" /><ellipse + transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" + cx="-308.87497" + cy="404.14166" + rx="0.30000198" + ry="2.8000183" + id="ellipse83" /><ellipse + transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" + class="steel_chastity" + cx="-308.92102" + cy="404.01642" + rx="0.30000198" + ry="2.7000179" + id="ellipse85" /><path + id="path87" + d="m 267.1,431.5 c 0,0.1 -1.5,0.4 -3.2,1.6 -0.6,0.4 -1.3,0.9 -2,1.7 -0.9,1.1 -1.2,2.1 -1.3,2.4 -0.2,0.7 -0.3,1.4 -0.3,2 -0.1,0.6 -0.1,1.4 -0.1,1.4 0,0 0,0 0,0 l 0,0 c 0,0 0.1,0 0.1,0 0,0 -0.1,0 -0.2,0 -0.1,0 -0.1,-0.2 -0.1,-0.3 -0.1,-0.8 0,-1 0,-1 -0.1,-0.4 0,-0.8 0.2,-1.5 0.1,-0.4 0.2,-1 0.5,-1.8 0.2,-0.5 0.5,-1.1 1.1,-1.8 0.5,-0.5 1.3,-1.1 2.3,-1.6 1.6,-0.9 3,-1.2 3,-1.1 z" + inkscape:connector-curvature="0" /><path + id="path89" + d="m 267.2,431.5 c 0,0.1 -1,0.3 -2.3,0.9 -0.2,0.1 -0.3,0.2 -0.6,0.3 -0.6,0.3 -1.9,1.1 -2.9,2.6 0,0.1 -0.2,0.3 -0.3,0.6 -1.3,2.5 -0.7,5.1 -1,5.1 -0.1,0 -0.1,-0.2 -0.2,-0.4 -0.1,-0.4 -0.4,-1.6 0.4,-4 0.1,-0.4 0.4,-1 0.7,-1.6 0.4,-0.6 0.8,-1 1.1,-1.3 0,0 0,0 0.1,-0.1 1.5,-1.4 4,-2.1 4,-2.1 0.5,0 0.9,-0.1 1,0 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path91" + d="M 259.8,432.5" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path93" + d="M 257.5,433.1" + inkscape:connector-curvature="0" /><path + id="path95" + d="M 259.5,432.6" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path97" + d="M 258,431.7" + inkscape:connector-curvature="0" /><ellipse + transform="matrix(0.03821768,-0.99926944,0.99926944,0.03821768,0,0)" + cx="-430.44489" + cy="276.90726" + rx="0.30000919" + ry="2.5000765" + id="ellipse101" /><ellipse + transform="matrix(0.03821768,-0.99926944,0.99926944,0.03821768,0,0)" + class="steel_chastity" + cx="-430.51544" + cy="276.85278" + rx="0.30000919" + ry="2.5000765" + id="ellipse103" /><ellipse + transform="matrix(0.99945509,-0.03300794,0.03300794,0.99945509,0,0)" + cx="253.03467" + cy="440.01093" + rx="0.20000899" + ry="2.0000899" + id="ellipse107" /><ellipse + transform="matrix(0.99945509,-0.03300794,0.03300794,0.99945509,0,0)" + class="steel_chastity" + cx="252.93701" + cy="440.00931" + rx="0.20000899" + ry="2.0000899" + id="ellipse109" /></g></g><g + inkscape:groupmode="layer" + id="Boob_" + style="display:inline" + inkscape:label="Boob_"><g + inkscape:groupmode="layer" + id="Boob_Scaled_" + style="display:inline" + inkscape:label="Boob_Scaled_"><g + inkscape:groupmode="layer" + id="Boob" + style="display:inline" + inkscape:label="Boob"><g + id="g4372_" + class="scaler_"><path + inkscape:connector-curvature="0" + d="M 289.6,219.8 C 275,219.7 246,243.1 238.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" + class="shadow" + id="XMLID_587_" /><path + inkscape:connector-curvature="0" + d="m 291.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="skin boob" + id="XMLID_588_" /><path + inkscape:connector-curvature="0" + d="m 277.1,261.4 c 0.5,-4 4.2,-9.7 14.1,-20.8 -6.7,10 -12.5,14.7 -14.1,20.8 z" + class="shadow" + id="XMLID_589_" /><path + inkscape:connector-curvature="0" + d="m 275.2,264 c 1.2,-3.4 0.7,-9.4 -2.6,-22.2 1.3,10.7 3.9,16.7 2.6,22.2 z" + class="shadow" + id="XMLID_590_" /><path + inkscape:connector-curvature="0" + d="m 320.85219,245.47089 c 1.72217,0.66886 12.69,8.8672 10.34828,24.69208 0.7,-12.1 -5.68063,-20.18326 -10.34828,-24.69208 z" + class="shadow" + id="XMLID_591_" + sodipodi:nodetypes="ccc" /></g></g><g + inkscape:groupmode="layer" + id="Boob_Areola" + style="display:inline" + inkscape:label="Boob_Areola"><g + id="g4371"><path + id="XMLID_592_" + class="areola" + d="m 232.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" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + id="XMLID_593_" + d="m 295.53296,285.16067 a 6.1000179,4.9000146 86.283549 0 1 -5.28511,-5.76958 6.1000179,4.9000146 86.283549 0 1 4.49431,-6.4048 6.1000179,4.9000146 86.283549 0 1 5.28511,5.76958 6.1000179,4.9000146 86.283549 0 1 -4.49431,6.4048 z" + class="areola" /></g></g><g + inkscape:groupmode="layer" + id="Boob_Areola_Piercing" + style="display:inline" + inkscape:label="Boob_Areola_Piercing"><g + id="g4840"><circle + id="XMLID_594_" + class="steel_piercing" + cx="300.90002" + cy="276.89999" + r="1.1" /><circle + id="XMLID_595_" + class="steel_piercing" + cx="301.20001" + cy="280" + r="1.1" /><circle + id="XMLID_596_" + class="steel_piercing" + cx="296" + cy="271.70001" + r="1.1" /><circle + id="XMLID_597_" + class="steel_piercing" + cx="292.90002" + cy="272.10001" + r="1.1" /><circle + id="XMLID_598_" + class="steel_piercing" + cx="297.09998" + cy="286.5" + r="1.1" /><circle + id="XMLID_599_" + class="steel_piercing" + cx="294" + cy="286.5" + r="1.1" /><circle + id="XMLID_600_" + class="steel_piercing" + cx="289.39999" + cy="281" + r="1.1" /><circle + id="XMLID_601_" + class="steel_piercing" + cx="289.39999" + cy="278.39999" + r="1.1" /><ellipse + id="XMLID_602_" + class="steel_piercing" + cx="231.70001" + cy="271.29999" + rx="0.5" + ry="0.69999999" /><ellipse + id="XMLID_603_" + class="steel_piercing" + cx="232.89999" + cy="270.79999" + rx="0.5" + ry="0.69999999" /><ellipse + id="XMLID_604_" + class="steel_piercing" + cx="230.79999" + cy="277.60001" + rx="0.5" + ry="0.69999999" /><ellipse + id="XMLID_605_" + transform="matrix(-0.99887366,-0.04744902,0.04744902,-0.99887366,0,0)" + class="steel_piercing" + cx="-243.19984" + cy="-264.50143" + rx="0.50001317" + ry="0.70001847" /><ellipse + id="XMLID_606_" + class="steel_piercing" + cx="236.5" + cy="274.29999" + rx="0.5" + ry="0.69999999" /><ellipse + id="XMLID_607_" + class="steel_piercing" + cx="237.20001" + cy="276.20001" + rx="0.5" + ry="0.69999999" /><ellipse + id="XMLID_608_" + transform="matrix(-0.94129085,0.33759672,-0.33759672,-0.94129085,0,0)" + class="steel_piercing" + cx="-126.09213" + cy="-344.06375" + rx="0.50000489" + ry="0.70000678" /><ellipse + id="XMLID_609_" + transform="matrix(-0.94253343,0.33411185,-0.33411185,-0.94253343,0,0)" + class="steel_piercing" + cx="-128.68057" + cy="-343.45691" + rx="0.49998227" + ry="0.69997513" /></g></g><g + inkscape:groupmode="layer" + id="Boob_Piercing_Heavy" + style="display:inline" + inkscape:label="Boob_Piercing_Heavy"><g + id="g4858"><path + id="XMLID_610_" + class="steel_piercing" + d="m 292.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" + inkscape:connector-curvature="0" /><path + id="XMLID_611_" + class="steel_piercing" + d="m 232.1,276.1 c 0,0 -0.4,0.7 -0.4,1.7 -0.1,0.9 0.3,2 0.9,2.4 0.9,0.5 2,-0.7 2.3,-1.9 0.3,-1.1 -0.1,-2 0,-2.1 0.1,-0.1 0.6,1.2 0.5,2.4 -0.2,1.4 -1.3,3 -2.6,2.8 -0.9,-0.2 -1.8,-1.4 -1.7,-2.9 0.1,-1.4 1,-2.4 1,-2.4 z" + inkscape:connector-curvature="0" /><path + id="XMLID_612_" + class="steel_piercing" + d="m 233.1,281.5 c 0.1,-0.1 11.3,16.2 28.4,17.6 18.3,1.4 32.9,-14.9 33.1,-14.8 0.2,0.2 -13.4,17.1 -32.5,15.7 -18.4,-1.3 -29.1,-18.4 -29,-18.5 z" + inkscape:connector-curvature="0" /><circle + id="XMLID_613_" + class="steel_piercing" + cx="292.40002" + cy="279" + r="1" /><circle + id="XMLID_614_" + class="steel_piercing" + cx="296.79999" + cy="279" + r="1" /><circle + id="XMLID_615_" + class="steel_piercing" + cx="294.59998" + cy="276.20001" + r="1" /><circle + id="XMLID_616_" + class="steel_piercing" + cx="295" + cy="281.20001" + r="1" /><ellipse + id="XMLID_617_" + transform="matrix(-0.98098244,0.19409652,-0.19409652,-0.98098244,0,0)" + class="steel_piercing" + cx="-176.88219" + cy="-316.29102" + rx="0.60001075" + ry="0.80001432" /><ellipse + id="XMLID_618_" + transform="matrix(-0.97097202,-0.23919311,0.23919311,-0.97097202,0,0)" + class="steel_piercing" + cx="-291.39941" + cy="-212.46971" + rx="0.60001731" + ry="0.80002308" /><ellipse + id="XMLID_619_" + transform="matrix(-0.20549138,-0.97865893,0.97865893,-0.20549138,0,0)" + class="steel_piercing" + cx="-316.24258" + cy="171.43146" + rx="0.60002518" + ry="0.50002098" /><ellipse + id="XMLID_620_" + transform="matrix(0.08246039,0.99659434,-0.99659434,0.08246039,0,0)" + class="steel_piercing" + cx="296.42557" + cy="-209.89244" + rx="0.60000342" + ry="0.50000286" /></g></g><g + inkscape:groupmode="layer" + id="Boob_Piercing" + style="display:inline" + inkscape:label="Boob_Piercing"><g + id="g4871"><circle + r="1" + cy="279" + cx="292.40002" + class="steel_piercing" + id="XMLID_622_" /><circle + r="1" + cy="279" + cx="296.79999" + class="steel_piercing" + id="XMLID_623_" /><ellipse + ry="0.80001432" + rx="0.60001075" + cy="-316.29102" + cx="-176.88219" + class="steel_piercing" + transform="matrix(-0.98098244,0.19409652,-0.19409652,-0.98098244,0,0)" + id="XMLID_625_" /><ellipse + ry="0.80002308" + rx="0.60001731" + cy="-212.46971" + cx="-291.39941" + class="steel_piercing" + transform="matrix(-0.97097202,-0.23919311,0.23919311,-0.97097202,0,0)" + id="XMLID_626_" /></g></g></g></g><g + inkscape:groupmode="layer" + id="Boob_Outfit_" + inkscape:label="Boob_Outfit_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Boob_Outfit_Shibari_" + inkscape:label="Boob_Outfit_Shibari_" + style="display:inline"><path + inkscape:connector-curvature="0" + style="display:inline;fill:#895b39;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 292.51112,215.39999 a 2.3111103,2.3111103 0 0 1 -2.31111,2.31111 2.3111103,2.3111103 0 0 1 -2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,2.31111 z" + id="path6413-6" /><path + style="fill:none;fill-rule:evenodd;stroke:#895b39;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 327.17578,252.13063 246.49277,243.657" + id="path6462" + inkscape:connector-curvature="0" /><path + style="fill:none;fill-rule:evenodd;stroke:#895b39;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 329.10508,256.11339 245.121,245.42447" + id="path6464" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /><path + style="fill:none;fill-rule:evenodd;stroke:#895b39;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 330.32526,260.08395 243.25757,247.06802" + id="path6466" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /><path + style="fill:none;fill-rule:evenodd;stroke:#895b39;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 277.44669,246.9079 c 3.10014,-10.6465 7.43545,-21.13861 12.75331,-31.5079 -2.64493,10.44861 -5.34616,20.81277 -7.45584,32.06426" + id="path6468" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /><path + style="fill:#895b39;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 277.40114,245.17557 0.7042,0.0761 c 0.5374,0.1426 1.17994,0.15002 1.05933,1.13863 l 2.21417,0.23843 c 0.16041,-0.40558 0.49849,-0.9618 1.3319,-0.97633 l 0.67375,0.0488 c 0.45001,0.067 0.75345,0.24438 0.89704,0.91804 -0.9581,2.4924 -4.12865,7.25338 -5.04333,7.12306 l -3.53554,-0.46794 c -0.58641,-0.11375 -0.6736,-4.94169 0.21482,-7.36149 0.37893,-0.68499 0.81239,-0.78323 1.48366,-0.73736 z" + id="path6470" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccc" /></g><g + inkscape:groupmode="layer" + id="Boob_Outfit_Straps" + inkscape:label="Boob_Outfit_Straps" + style="display:inline"><g + id="g4831"><path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path7375" + d="m 291.19993,215.6 c -13.848,19.98 -56.345,29.858 -58.527,55.64" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path7377" + d="m 295.84393,272.368 c 3.105,-21.674 -4.672,-36.094 -4.644,-56.768" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path7381" + d="m 294.35293,285.57 c -0.49,5.165 4.761,11.248 7.132,12.531" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path7385" + d="m 289.28893,278.981 c -6.269,0.071 -8.181,-0.453 -14.047,-0.55" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path7387" + d="m 235.76793,276.097 c 10.595,1.3 28.756,3.613 39.574,2.234" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + id="path4840" + d="m 291.19993,215.6 c -9.469,17.301 -14.902,39.356 -15.789,62.932" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + d="m 291.19993,215.6 c 3.581,19.869 43.236,32.441 40.042,51.745 -1.775,15.389 -7.922,30.162 -29.971,30.922 l -49.35,-6.527 c -9.814,-0.592 -17.945,-6.029 -18.429,-11.416" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path9222-3" /><path + id="path4826" + d="m 300.10193,279.565 c 10.602,-0.08 24.671,-7.943 31.14,-12.22" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + id="path7391" + style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" + d="m 232.34993,271.436 c 1.654,-0.279 2.939,2.207 3.228,3.859 0.309,1.761 -0.115,4.724 -1.877,5.026 -1.692,0.289 -3.121,-2.175 -3.4,-3.868 -0.293,-1.783 0.268,-4.716 2.049,-5.017 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="aaaaa" + inkscape:connector-curvature="0" + id="path7393" + d="m 295.33393,285.383 c -2.6936,0.1642 -5.2018,-3.3684 -5.366,-6.062 -0.16152,-2.64961 1.86539,-6.39848 4.515,-6.56 2.6936,-0.1642 5.2018,3.3684 5.366,6.062 0.16152,2.64961 -1.86539,6.39848 -4.515,6.56 z" + style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" /></g></g><g + inkscape:groupmode="layer" + id="Boob_Outfit_Shine" + inkscape:label="Boob_Outfit_Shine" + style="display:inline"><g + id="g4947"><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path4027" + d="m 317.36614,253.79442 c 5.2665,4.35178 5.56841,11.52129 5.82323,18.71753 -2.56499,-6.10053 -4.50607,-12.3397 -5.82323,-18.71753 z" + style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" /><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path4027-7" + d="m 263.42077,249.35087 c 4.56552,5.08232 3.80454,12.21772 2.99303,19.3726 -1.63523,-6.41262 -2.63291,-12.87015 -2.99303,-19.3726 z" + style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" /></g></g></g><g + inkscape:groupmode="layer" + id="Clavicle" + style="display:inline" + inkscape:label="Clavicle"><path + inkscape:connector-curvature="0" + d="m 301.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" + class="shadow" + id="XMLID_511_" /><path + inkscape:connector-curvature="0" + d="m 291.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="shadow" + id="XMLID_546_" /></g><g + inkscape:groupmode="layer" + id="Head" + style="display:inline" + inkscape:label="Head"><path + inkscape:connector-curvature="0" + d="m 323.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" + class="shadow" + id="Head_Shadow" /><path + inkscape:connector-curvature="0" + d="m 323.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="skin head" + id="path931" /></g><g + inkscape:groupmode="layer" + id="Collar_" + inkscape:label="Collar_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Collar_Tight_Steel" + inkscape:label="Collar_Tight_Steel" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 313.9,191.1 c -0.2,0.2 -0.4,0.3 -0.7,0.4 -6,2.3 -10.6,2.9 -14,2.8 -5.9,-0.2 -7.5,-2.3 -7.7,-2.5 -0.7,-0.8 -0.4,-2.1 0.8,-2.6 1.3,-0.5 2.5,-0.5 3.2,0.3 0.2,0.2 3.4,3.4 15.5,-1.1 1.2,-0.5 2.7,-0.1 3.3,0.7 0.5,0.6 0.3,1.4 -0.4,2" + id="path11-0" /><path + inkscape:connector-curvature="0" + class="steel_chastity" + d="m 299.7,194.3 c -6,0 -7.8,-2 -8,-2.1 -0.8,-0.8 -0.7,-2 0.5,-2.5 1.2,-0.6 2.4,-0.6 3.2,0.2 0.2,0.2 3.8,3.2 15.4,-1.6 1.2,-0.5 2.7,-0.2 3.4,0.6 0.7,0.8 0.3,1.9 -0.9,2.3 -5.7,2.3 -10.2,3.1 -13.6,3.1 z" + id="path13" /><circle + r="3.5999207" + transform="matrix(0.500011,-0.86601905,0.86601905,0.500011,0,0)" + style="fill:none;stroke:#fefff2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:19" + cx="-20.265337" + cy="357.12662" + id="ellipse15" /></g><g + inkscape:groupmode="layer" + id="Collar_Stylish_Leather" + inkscape:label="Collar_Stylish_Leather" + style="display:inline"><path + id="path9-3" + d="m 293.7,188.8 c 1.8,1 8.4,3.6 18,-1.9 0.3,-0.2 0.6,0 0.7,0.3 l 0.7,3.5 c 0,0.2 -0.1,0.4 -0.2,0.5 -5.6,3.3 -9.7,4.3 -13,4.3 -5.2,0 -7.1,-1.8 -7.6,-2.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 l 0.9,-3.4 c 0,-0.4 0.3,-0.6 0.6,-0.4 z" + inkscape:connector-curvature="0" /><path + transform="translate(-220,-3.853296e-6)" + style="fill:#ffffff" + d="m 518.5,195.3 3.4,0 0,-0.6 1,0 0,1.5 -5.4,0 0,-7 5.4,0 0,1.3 -1,0.1 0,-0.5 -3.4,0 z" + id="polygon11" + inkscape:connector-curvature="0" /><rect + x="-183.11382" + y="302.88812" + transform="matrix(0.03349876,-0.99943876,0.99943876,0.03349876,0,0)" + class="white" + width="0.9999612" + height="2.499903" + id="rect13" /></g><g + inkscape:groupmode="layer" + id="Collar_Shock_Punishment" + inkscape:label="Collar_Shock_Punishment" + style="display:inline"><path + id="path9-4" + d="m 299.9,194.4 c -5.4,0 -7.7,-3.1 -7.8,-3.3 -0.5,-0.7 -0.3,-1.6 0.4,-2.1 0.7,-0.5 1.6,-0.3 2.1,0.4 0.2,0.3 4.4,5.6 16.9,-2 0.7,-0.4 1.6,-0.2 2.1,0.5 0.4,0.7 0.2,1.6 -0.5,2.1 -5.7,3.4 -10,4.4 -13.2,4.4 z" + inkscape:connector-curvature="0" /><rect + x="308.4668" + y="166.71555" + transform="matrix(0.99759571,0.06930217,-0.06930217,0.99759571,0,0)" + width="6.3000274" + height="10.500045" + id="rect11" /><rect + x="308.4549" + y="166.72701" + transform="matrix(0.99759571,0.06930217,-0.06930217,0.99759571,0,0)" + class="steel_chastity" + width="6.0000257" + height="10.100043" + id="rect13-0" /><circle + cx="298.70001" + cy="192.8" + r="1.3" + id="circle15" + style="fill:#ce5b5b" /><circle + style="fill:#d13737" + cx="298.70001" + cy="192.7" + r="1.2" + id="circle17" /></g><g + inkscape:groupmode="layer" + id="Collar_Satin_Choker" + inkscape:label="Collar_Satin_Choker" + style="display:inline"><path + id="path9-9" + d="m 293.7,188.8 c 1.8,1 8.4,3.6 18,-1.9 0.3,-0.2 0.6,0 0.7,0.3 l 0.7,3.5 c 0,0.2 -0.1,0.4 -0.2,0.5 -5.6,3.3 -9.7,4.3 -13,4.3 -5.2,0 -7.1,-1.8 -7.6,-2.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 l 0.9,-3.4 c 0,-0.4 0.3,-0.6 0.6,-0.4 z" + inkscape:connector-curvature="0" /><path + id="path13-6" + d="m 292.8,190.1 c 0,0.1 5.6,6.5 19.9,-1.6 l 0.1,0.8 c -5.5,3.1 -9.9,4 -13,4 -5,0 -7.5,-2.3 -7.3,-2.3" + class="steel_chastity" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Collar_Pretty_Jewelry" + inkscape:label="Collar_Pretty_Jewelry" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 290.4,199.2 c 0,0 -0.1,0 -0.1,0 -0.3,-0.2 -0.7,-1.3 -0.7,-1.7 -0.1,-0.3 -0.4,-1.5 -0.2,-1.8 l 0,-0.1 0.1,-0.1 c 0.1,0 0.1,0 0.2,0 0.3,0.2 0.7,1.3 0.7,1.7 l 0,0 c 0.1,0.3 0.4,1.5 0.2,1.8 l 0,0.1 -0.2,0.1 c 0,0 0,0 0,0 z m -0.7,-2.8 c 0,0.3 0.1,0.6 0.2,1 0.1,0.4 0.2,0.8 0.3,1 0,-0.3 -0.1,-0.6 -0.2,-1 l 0,0 c -0.1,-0.5 -0.2,-0.8 -0.3,-1 z" + id="path7-4" /><path + inkscape:connector-curvature="0" + d="m 291.2,202.6 c -0.6,0 -1.2,-0.7 -1.5,-1.8 -0.4,-1.2 -0.2,-2.4 0.5,-2.7 0.7,-0.3 1.5,0.5 1.8,1.7 l 0,0 c 0.4,1.2 0.2,2.4 -0.5,2.7 -0.1,0 -0.2,0.1 -0.3,0.1 z m -0.8,-4.2 c -0.1,0 -0.1,0 -0.2,0 -0.5,0.2 -0.6,1.2 -0.3,2.2 0.3,1 1,1.7 1.4,1.5 0.5,-0.2 0.6,-1.2 0.3,-2.2 l 0,0 c -0.2,-0.9 -0.8,-1.5 -1.2,-1.5 z" + id="path9-49" /><path + inkscape:connector-curvature="0" + d="m 292.6,206.1 c -0.2,0 -0.4,-0.2 -0.9,-2.1 -0.6,-2.2 -0.4,-2.2 -0.3,-2.3 0.2,-0.1 0.3,0.2 0.5,0.7 0.1,0.4 0.3,0.9 0.4,1.4 0.7,2.2 0.5,2.2 0.3,2.3 0,0 0,0 0,0 z" + id="path11-9" /><path + inkscape:connector-curvature="0" + d="m 293.8,209.5 c -0.6,0 -1.4,-0.7 -1.8,-1.8 -0.2,-0.6 -0.3,-1.2 -0.3,-1.6 0.1,-0.5 0.3,-0.9 0.6,-1 0.4,-0.1 0.8,0 1.2,0.3 0.4,0.3 0.7,0.8 0.9,1.4 0.5,1.2 0.3,2.4 -0.4,2.7 0,0 -0.1,0 -0.2,0 z m -1.1,-4.1 c -0.1,0 -0.1,0 -0.1,0 -0.2,0.1 -0.3,0.3 -0.4,0.7 0,0.4 0,0.9 0.2,1.5 0.4,1.1 1.2,1.7 1.6,1.5 0.4,-0.2 0.6,-1.1 0.2,-2.2 -0.2,-0.5 -0.5,-1 -0.8,-1.2 -0.3,-0.2 -0.5,-0.3 -0.7,-0.3 z" + id="path13-3" /><path + inkscape:connector-curvature="0" + d="m 303,210.8 c -0.3,0 -0.5,-0.1 -0.7,-0.2 -0.6,-0.5 -0.4,-1.7 0.5,-2.7 0.9,-1 2,-1.4 2.6,-0.9 0.6,0.5 0.4,1.7 -0.5,2.7 -0.6,0.7 -1.3,1.1 -1.9,1.1 z m 1.7,-3.6 c -0.5,0 -1.1,0.4 -1.6,1 -0.7,0.8 -0.9,1.8 -0.5,2.1 0.4,0.4 1.3,0 2,-0.8 0.7,-0.8 0.9,-1.8 0.5,-2.1 -0.1,-0.2 -0.2,-0.2 -0.4,-0.2 z" + id="path15" /><path + inkscape:connector-curvature="0" + d="m 307.1,205 c -0.2,0 -0.3,0 -0.4,-0.1 -0.6,-0.4 -0.5,-1.5 0.2,-2.6 0.7,-1.1 1.7,-1.7 2.3,-1.3 0.3,0.2 0.4,0.6 0.4,1.1 -0.1,0.5 -0.3,1 -0.6,1.5 -0.3,0.5 -0.7,0.9 -1.1,1.2 -0.3,0.1 -0.6,0.2 -0.8,0.2 z m 1.6,-3.7 c -0.4,0 -1,0.4 -1.5,1.2 -0.6,1 -0.7,1.9 -0.3,2.1 0.2,0.1 0.4,0.1 0.7,-0.1 0.4,-0.2 0.7,-0.6 1,-1 0.3,-0.5 0.5,-0.9 0.5,-1.3 0,-0.4 0,-0.6 -0.2,-0.7 0,-0.2 -0.1,-0.2 -0.2,-0.2 z" + id="path17" /><path + inkscape:connector-curvature="0" + d="m 304.7,207.8 0,0 c -0.2,-0.1 -0.5,-0.3 0.9,-2.2 0.3,-0.5 0.7,-0.9 1,-1.2 0.4,-0.4 0.6,-0.5 0.8,-0.4 l 0.1,0 0,0.1 c 0.1,0.4 -0.8,1.6 -1.1,1.9 -0.3,0.6 -1.3,1.8 -1.7,1.8 l 0,0 z m 2,-2.8 c -0.2,0.2 -0.5,0.5 -0.7,0.9 -0.3,0.4 -0.5,0.7 -0.7,1 0.2,-0.2 0.5,-0.5 0.7,-0.9 0.3,-0.4 0.5,-0.7 0.7,-1 z" + id="path19" /><path + inkscape:connector-curvature="0" + d="m 311.6,198.9 c -0.2,0 -0.3,0 -0.5,-0.1 -0.3,-0.2 -0.5,-0.6 -0.5,-1.1 0,-0.5 0.1,-1 0.4,-1.4 0.6,-1 1.6,-1.6 2.2,-1.2 0.3,0.2 0.5,0.6 0.5,1.1 0,0.5 -0.1,1 -0.4,1.4 l 0,0 c -0.3,0.5 -0.6,0.9 -1,1.1 -0.2,0.1 -0.5,0.2 -0.7,0.2 z m 1.2,-3.6 c -0.4,0 -1,0.4 -1.4,1.1 -0.2,0.4 -0.4,0.9 -0.4,1.2 0,0.3 0.1,0.6 0.3,0.7 0.2,0.1 0.5,0.1 0.8,-0.1 0.3,-0.2 0.7,-0.5 0.9,-0.9 0.2,-0.4 0.4,-0.9 0.4,-1.2 0,-0.3 -0.1,-0.6 -0.3,-0.7 -0.1,0 -0.2,-0.1 -0.3,-0.1 z" + id="path21" /><path + inkscape:connector-curvature="0" + d="m 309.1,201.5 -0.1,-0.1 0,-0.1 c 0,-0.2 0.4,-0.8 1.2,-1.9 0.6,-0.7 1.3,-1.6 1.5,-1.7 l 0.1,0 0.1,0.1 0,0.1 c 0,0.2 -0.4,0.8 -1.2,1.9 l 0,0 c -0.5,0.8 -1.2,1.6 -1.6,1.7 l 0,0 z" + id="path23" /><path + inkscape:connector-curvature="0" + d="m 300.9,212.9 -0.1,-0.1 0,-0.1 c 0,-0.1 -0.1,-0.3 0.9,-1.7 l 0,0 c 1.1,-1.7 1.2,-1.6 1.4,-1.5 0.2,0.1 0.3,0.2 -0.8,1.9 -1.1,1.4 -1.3,1.5 -1.4,1.5 l 0,0 z" + id="path27" /><path + inkscape:connector-curvature="0" + d="m 294.8,212.7 0,0 c -0.2,-0.1 -0.5,-0.8 -0.8,-2 -0.5,-2.1 -0.4,-2.2 -0.2,-2.2 l 0,0 c 0.2,0 0.3,-0.1 0.9,2 0.3,1.2 0.4,1.9 0.3,2.1 l 0,0.1 -0.2,0 z" + id="path29" /><path + id="path33" + d="m 302.2,215.3 c -0.5,2.1 -2.9,4.3 -5.7,5.9 -1.7,-2 -3.1,-5.4 -2.8,-7.8 0.3,-2 2.7,-3.6 4.3,1.1 3,-4.5 4.7,-1.1 4.2,0.8 z" + inkscape:connector-curvature="0" /><path + id="path35" + d="m 301.6,215 c -0.5,2 -2.8,4.1 -5.4,5.6 -1.6,-1.9 -2.9,-5.1 -2.6,-7.3 0.2,-1.9 2.5,-3.4 4,1 2.8,-4.3 4.4,-1.1 4,0.7 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><rect + x="331.59637" + y="157.53075" + transform="matrix(0.98277696,0.18479567,-0.18479567,0.98277696,0,0)" + width="0.40000939" + height="1.8000422" + id="rect39" /><circle + r="0.79999298" + transform="matrix(0.10930096,-0.9940087,0.9940087,0.10930096,0,0)" + cx="-182.06116" + cy="318.84866" + id="ellipse41-6" /><path + inkscape:connector-curvature="0" + d="m 312.9,195.6 c 0,0 -0.1,-0.1 -0.1,-0.1 -0.1,-0.3 0.5,-1.4 0.6,-1.7 0.2,-0.3 0.8,-1.4 1.1,-1.5 l 0.1,0 0.1,0 c 0.1,0 0.1,0.1 0.1,0.2 0.1,0.3 -0.5,1.4 -0.6,1.7 l 0,0 c -0.2,0.3 -0.8,1.4 -1.1,1.5 l -0.1,0 -0.1,-0.1 c 0,0.1 0,0 0,0 z m 1.5,-2.5 c -0.2,0.2 -0.3,0.5 -0.6,0.9 -0.2,0.4 -0.4,0.7 -0.5,0.9 0.2,-0.2 0.3,-0.5 0.6,-0.9 l 0,0 c 0.2,-0.3 0.4,-0.7 0.5,-0.9 z" + id="path43" /></g><g + inkscape:groupmode="layer" + id="Collar_Retirement_Nice" + inkscape:label="Collar_Retirement_Nice" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 290.3,199.4 c 0,0 -0.1,0 -0.1,0 -0.3,-0.2 -0.7,-1.3 -0.7,-1.7 -0.1,-0.3 -0.4,-1.5 -0.2,-1.8 l 0,-0.1 0.1,-0.1 c 0.1,0 0.1,0 0.2,0 0.3,0.2 0.7,1.3 0.7,1.7 l 0,0 c 0.1,0.3 0.4,1.5 0.2,1.8 l 0,0.1 -0.2,0.1 c 0,0 0,0 0,0 z m -0.7,-2.8 c 0,0.3 0.1,0.6 0.2,1 0.1,0.4 0.2,0.8 0.3,1 0,-0.3 -0.1,-0.6 -0.2,-1 l 0,0 c -0.1,-0.5 -0.2,-0.8 -0.3,-1 z" + id="path7-5" /><path + inkscape:connector-curvature="0" + d="m 291.1,202.8 c -0.6,0 -1.2,-0.7 -1.5,-1.8 -0.4,-1.2 -0.2,-2.4 0.5,-2.7 0.7,-0.3 1.5,0.5 1.8,1.7 l 0,0 c 0.4,1.2 0.2,2.4 -0.5,2.7 -0.1,0 -0.2,0.1 -0.3,0.1 z m -0.8,-4.2 c -0.1,0 -0.1,0 -0.2,0 -0.5,0.2 -0.6,1.2 -0.3,2.2 0.3,1 1,1.7 1.4,1.5 0.5,-0.2 0.6,-1.2 0.3,-2.2 l 0,0 c -0.2,-0.9 -0.8,-1.5 -1.2,-1.5 z" + id="path9-02" /><path + inkscape:connector-curvature="0" + d="m 292.5,206.3 c -0.2,0 -0.4,-0.2 -0.9,-2.1 -0.6,-2.2 -0.4,-2.2 -0.3,-2.3 0.2,-0.1 0.3,0.2 0.5,0.7 0.1,0.4 0.3,0.9 0.4,1.4 0.7,2.2 0.5,2.2 0.3,2.3 0,0 0,0 0,0 z" + id="path11-94" /><path + inkscape:connector-curvature="0" + d="m 293.7,209.7 c -0.6,0 -1.4,-0.7 -1.8,-1.8 -0.2,-0.6 -0.3,-1.2 -0.3,-1.6 0.1,-0.5 0.3,-0.9 0.6,-1 0.4,-0.1 0.8,0 1.2,0.3 0.4,0.3 0.7,0.8 0.9,1.4 0.5,1.2 0.3,2.4 -0.4,2.7 0,0 -0.1,0 -0.2,0 z m -1.1,-4.1 c -0.1,0 -0.1,0 -0.1,0 -0.2,0.1 -0.3,0.3 -0.4,0.7 0,0.4 0,0.9 0.2,1.5 0.4,1.1 1.2,1.7 1.6,1.5 0.4,-0.2 0.6,-1.1 0.2,-2.2 -0.2,-0.5 -0.5,-1 -0.8,-1.2 -0.3,-0.2 -0.5,-0.3 -0.7,-0.3 z" + id="path13-35" /><path + inkscape:connector-curvature="0" + d="m 302.9,211 c -0.3,0 -0.5,-0.1 -0.7,-0.2 -0.6,-0.5 -0.4,-1.7 0.5,-2.7 0.9,-1 2,-1.4 2.6,-0.9 0.6,0.5 0.4,1.7 -0.5,2.7 -0.6,0.7 -1.3,1.1 -1.9,1.1 z m 1.7,-3.6 c -0.5,0 -1.1,0.4 -1.6,1 -0.7,0.8 -0.9,1.8 -0.5,2.1 0.4,0.4 1.3,0 2,-0.8 0.7,-0.8 0.9,-1.8 0.5,-2.1 -0.1,-0.2 -0.2,-0.2 -0.4,-0.2 z" + id="path15-1" /><path + inkscape:connector-curvature="0" + d="m 307,205.2 c -0.2,0 -0.3,0 -0.4,-0.1 -0.6,-0.4 -0.5,-1.5 0.2,-2.6 0.7,-1.1 1.7,-1.7 2.3,-1.3 0.3,0.2 0.4,0.6 0.4,1.1 -0.1,0.5 -0.3,1 -0.6,1.5 -0.3,0.5 -0.7,0.9 -1.1,1.2 -0.3,0.1 -0.6,0.2 -0.8,0.2 z m 1.6,-3.7 c -0.4,0 -1,0.4 -1.5,1.2 -0.6,1 -0.7,1.9 -0.3,2.1 0.2,0.1 0.4,0.1 0.7,-0.1 0.4,-0.2 0.7,-0.6 1,-1 0.3,-0.5 0.5,-0.9 0.5,-1.3 0,-0.4 0,-0.6 -0.2,-0.7 0,-0.2 -0.1,-0.2 -0.2,-0.2 z" + id="path17-7" /><path + inkscape:connector-curvature="0" + d="m 304.6,208 0,0 c -0.2,-0.1 -0.5,-0.3 0.9,-2.2 0.3,-0.5 0.7,-0.9 1,-1.2 0.4,-0.4 0.6,-0.5 0.8,-0.4 l 0.1,0 0,0.1 c 0.1,0.4 -0.8,1.6 -1.1,1.9 -0.3,0.6 -1.3,1.7 -1.7,1.8 l 0,0 z m 2,-2.8 c -0.2,0.2 -0.5,0.5 -0.7,0.9 -0.3,0.4 -0.5,0.7 -0.7,1 0.2,-0.2 0.5,-0.5 0.7,-0.9 0.3,-0.4 0.5,-0.7 0.7,-1 z" + id="path19-4" /><path + inkscape:connector-curvature="0" + d="m 311.5,199.1 c -0.2,0 -0.3,0 -0.5,-0.1 -0.3,-0.2 -0.5,-0.6 -0.5,-1.1 0,-0.5 0.1,-1 0.4,-1.4 0.6,-1 1.6,-1.6 2.2,-1.2 0.3,0.2 0.5,0.6 0.5,1.1 0,0.5 -0.1,1 -0.4,1.4 l 0,0 c -0.3,0.5 -0.6,0.9 -1,1.1 -0.2,0.1 -0.5,0.2 -0.7,0.2 z m 1.2,-3.6 c -0.4,0 -1,0.4 -1.4,1.1 -0.2,0.4 -0.4,0.9 -0.4,1.2 0,0.3 0.1,0.6 0.3,0.7 0.2,0.1 0.5,0.1 0.8,-0.1 0.3,-0.2 0.7,-0.5 0.9,-0.9 0.2,-0.4 0.4,-0.9 0.4,-1.2 0,-0.3 -0.1,-0.6 -0.3,-0.7 -0.1,0 -0.2,-0.1 -0.3,-0.1 z" + id="path21-3" /><path + inkscape:connector-curvature="0" + d="m 309,201.7 -0.1,-0.1 0,-0.1 c 0,-0.2 0.4,-0.8 1.2,-1.9 0.6,-0.7 1.3,-1.6 1.5,-1.7 l 0.1,0 0.1,0.1 0,0.1 c 0,0.2 -0.4,0.8 -1.2,1.9 l 0,0 c -0.5,0.8 -1.3,1.6 -1.6,1.7 l 0,0 z" + id="path23-1" /><path + inkscape:connector-curvature="0" + d="m 300.8,213.1 -0.1,-0.1 0,-0.1 c 0,-0.1 -0.1,-0.3 0.9,-1.7 l 0,0 c 1.1,-1.7 1.2,-1.6 1.4,-1.5 0.2,0.1 0.3,0.2 -0.8,1.9 -1.1,1.4 -1.3,1.5 -1.4,1.5 l 0,0 z" + id="path25-4" /><path + inkscape:connector-curvature="0" + d="m 294.7,212.8 0,0 c -0.2,-0.1 -0.5,-0.8 -0.8,-2 -0.5,-2.1 -0.4,-2.2 -0.2,-2.2 l 0,0 c 0.2,0 0.3,-0.1 0.9,2 0.3,1.2 0.4,1.9 0.3,2.1 l 0,0.1 -0.2,0 z" + id="path27-6" /><path + inkscape:connector-curvature="0" + d="m 314.8,192.7 c 0.1,0.3 -0.5,1.4 -0.6,1.7 l 0,0 c -0.2,0.3 -0.8,1.4 -1.1,1.5 l -0.1,0 -0.1,0 c 0,0 0,0 -0.1,0 0,0 -0.1,-0.1 -0.1,-0.1 -0.1,-0.3 0.5,-1.4 0.6,-1.7 0.2,-0.3 0.8,-1.4 1.1,-1.5" + id="path29-9" /><path + inkscape:connector-curvature="0" + d="m 314.3,193.3 c -0.2,0.2 -0.3,0.5 -0.6,0.9 -0.2,0.4 -0.4,0.7 -0.5,0.9 0.2,-0.2 0.3,-0.5 0.6,-0.9 l 0,0 c 0.2,-0.3 0.4,-0.7 0.5,-0.9 z" + id="path31" /><path + transform="translate(-220,0)" + d="m 513.9,212.1 7.3,0.5 -0.2,3.5 -7.3,-0.4 z" + id="polygon35" + inkscape:connector-curvature="0" /><path + id="path37-4" + d="m 294.4,212.7 6.3,0.4 -0.1,2.5 -6.3,-0.4 0.1,-2.5 m -0.5,-0.6 -0.2,3.6 7.3,0.4 0.2,-3.6 -7.3,-0.4 0,0 z" + inkscape:connector-curvature="0" /><rect + id="rect41" + height="3.399874" + width="7.0997367" + transform="matrix(0.99833702,0.05764723,-0.05764723,0.99833702,0,0)" + y="194.69586" + x="305.61774" /><path + id="path43-2" + d="m 294.4,212.6 6.1,0.4 -0.1,2.4 -6.1,-0.4 0.1,-2.4 m -0.5,-0.6 -0.2,3.4 7.1,0.4 0.2,-3.4 -7.1,-0.4 0,0 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><text + transform="matrix(0.99833702,0.05764723,-0.05764723,0.99833702,0,0)" + name="Collar_Text" + x="306.34277" + y="197.37833" + style="font-size:1.96150005px;font-family:sans-serif;fill:#ff0000" + id="text1009">8888</text> +</g><g + inkscape:groupmode="layer" + id="Collar_Neck_Corset" + inkscape:label="Collar_Neck_Corset" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 342.9,208.1 c -29.1,-3.8 -34.5,-14.5 -29.8,-48.6 0.1,-0.4 -0.3,-0.8 -0.7,-0.8 l -20.6,0.9 c -0.4,0 -0.7,0.4 -0.7,0.9 8.1,42.8 -6.4,40.7 -21,48.6 -0.5,0.3 -0.5,1 0,1.2 l 9.5,6 c 1.1,0.6 1.9,1.6 2.3,2.8 l 4.8,12.7 c 0.2,0.4 0.7,0.6 1,0.4 L 311,219.3 c 1.4,-0.8 2.9,-1.4 4.4,-1.8 l 27.7,-8 c 0.7,-0.2 0.6,-1.3 -0.2,-1.4 z" + id="path1012" /><path + inkscape:connector-curvature="0" + class="steel_chastity" + d="m 299.2,199.9 c -0.7,0 -1.4,-0.2 -2,-0.5 -1.3,-0.7 -2,-2.1 -2,-3.5 0,-0.7 0.2,-1.4 0.5,-2 0.4,-0.7 1,-1.3 1.7,-1.6 0.2,-0.1 0.5,0 0.7,0.2 0.1,0.2 0,0.5 -0.2,0.7 -0.5,0.3 -1,0.7 -1.3,1.2 -0.3,0.5 -0.4,1 -0.4,1.5 0,1.1 0.6,2.1 1.5,2.7 0.5,0.3 1,0.4 1.5,0.4 1.1,0 2.1,-0.6 2.7,-1.5 0.3,-0.5 0.4,-1 0.4,-1.5 0,-1.1 -0.6,-2.1 -1.5,-2.7 -0.2,-0.1 -0.3,-0.4 -0.2,-0.7 0.1,-0.2 0.4,-0.3 0.7,-0.2 1.3,0.7 2,2.1 2,3.5 0,0.7 -0.2,1.4 -0.5,2 -0.8,1.2 -2.2,2 -3.6,2 z" + id="path8-4" /></g><g + inkscape:groupmode="layer" + id="Collar_Gold_Heavy" + inkscape:label="Collar_Gold_Heavy" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 314.5,190.8 c -0.2,0.4 -0.5,0.7 -0.7,1 -6.2,5.7 -10.9,7.3 -14.3,7 -6.1,-0.5 -7.7,-5.8 -7.9,-6.3 -0.7,-2.1 -0.5,-5.2 0.8,-6.4 1.3,-1.4 2.5,-1.4 3.3,0.7 0.2,0.5 3.5,8.6 15.9,-2.8 1.3,-1.2 2.8,-0.4 3.4,1.8 0.4,1.7 0.2,3.7 -0.5,5" + id="path7-2" + style="fill:#f2f24c" /><path + inkscape:connector-curvature="0" + d="m 299.8,198.4 c -6,0 -7.8,-4.9 -8,-5.3 -0.8,-1.9 -0.7,-4.8 0.5,-6.1 1.2,-1.4 2.4,-1.5 3.2,0.4 0.2,0.5 3.8,7.8 15.4,-3.8 1.2,-1.2 2.7,-0.5 3.4,1.4 0.7,2 0.3,4.5 -0.9,5.7 -5.8,5.8 -10.3,7.7 -13.6,7.7 z" + id="path9-88" + style="fill:#f7d548" /><path + inkscape:connector-curvature="0" + d="m 299.6,201 c -0.7,0 -1.4,-0.2 -2,-0.5 -1.3,-0.7 -2,-2.1 -2,-3.5 0,-0.7 0.2,-1.4 0.5,-2 0.4,-0.7 1,-1.3 1.7,-1.6 0.2,-0.1 0.5,0 0.7,0.2 0.1,0.2 0,0.5 -0.2,0.7 -0.5,0.3 -1,0.7 -1.3,1.2 -0.3,0.5 -0.4,1 -0.4,1.5 0,1.1 0.6,2.1 1.5,2.7 0.5,0.3 1,0.4 1.5,0.4 1.1,0 2.1,-0.6 2.7,-1.5 0.3,-0.5 0.4,-1 0.4,-1.5 0,-1.1 -0.6,-2.1 -1.5,-2.7 -0.2,-0.1 -0.3,-0.4 -0.2,-0.7 0.1,-0.2 0.4,-0.3 0.7,-0.2 1.3,0.7 2,2.1 2,3.5 0,0.7 -0.2,1.4 -0.5,2 -0.8,1.2 -2.1,2 -3.6,2 z" + id="path11-8" + style="fill:#fefff2" /></g><g + inkscape:groupmode="layer" + id="Collar_Retirement_Cruel" + inkscape:label="Collar_Retirement_Cruel" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 313.9,194.52901 c -0.2,0.2 -0.4,0.3 -0.7,0.4 -6,2.3 -10.6,2.9 -14,2.8 -5.9,-0.2 -7.5,-2.3 -7.7,-2.5 -0.7,-0.8 -0.4,-2.1 0.8,-2.6 1.3,-0.5 2.5,-0.5 3.2,0.3 0.2,0.2 3.4,3.4 15.5,-1.1 1.2,-0.5 2.7,-0.1 3.3,0.7 0.5,0.6 0.3,1.4 -0.4,2" + id="path11-3" /><path + inkscape:connector-curvature="0" + class="steel_chastity" + d="m 299.8,197.72901 c -6,0 -7.8,-2 -8,-2.1 -0.8,-0.8 -0.7,-2 0.5,-2.5 1.2,-0.6 2.4,-0.6 3.2,0.2 0.2,0.2 3.8,3.2 15.4,-1.6 1.2,-0.5 2.7,-0.2 3.4,0.6 0.7,0.8 0.3,1.9 -0.9,2.3 -5.8,2.3 -10.3,3.1 -13.6,3.1 z" + id="path13-33" /><path + transform="translate(-220,3.42901)" + d="m 516.4,190.9 7.2,0 -0.5,2.9 -6.2,0 z" + id="polygon17" + inkscape:connector-curvature="0" /><path + id="path19-8" + d="m 303.1,194.82901 0,2.4 -6.1,0 0,-2.4 6.1,0 m 0.5,-0.5 -7.3,-0.1 0.2,3 7.1,0 0,-2.9 0,0 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><text + id="text21" + name="Collar_Text" + x="297.13312" + y="196.96181" + style="font-size:1.96150005px;font-family:sans-serif;fill:#ff0000">8888</text> +</g><g + inkscape:groupmode="layer" + id="Collar_Cowbell" + inkscape:label="Collar_Cowbell"><path + id="path9-8" + d="m 293.8,189 c 1.8,1 8.4,3.6 18,-1.9 0.3,-0.2 0.6,0 0.7,0.3 l 0.7,3.5 c 0,0.2 -0.1,0.4 -0.2,0.5 -5.6,3.3 -9.7,4.3 -13,4.3 -5.2,0 -7.1,-1.8 -7.6,-2.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 l 0.9,-3.4 c 0,-0.4 0.3,-0.5 0.6,-0.4 z" + inkscape:connector-curvature="0" /><path + transform="translate(-220,-3.8532959e-6)" + d="m 514.5,198 10.1,1 5.8,22.7 -22.5,-0.8 -3.7,-5.1 z" + id="polygon12" + inkscape:connector-curvature="0" /><path + id="path14" + d="m 302.8,204.6 -6.8,-0.6 1.1,-11.5 6.8,0.7 -1.1,11.4 z m -5.6,-1.8 4.5,0.4 0.9,-9 -4.5,-0.4 -0.9,9 z" + inkscape:connector-curvature="0" /><path + id="path16" + d="m 302.3,203.5 -7,-0.7 1,-10.7 7,0.7 -1,10.7 z m -5.7,-1.7 4.6,0.4 0.8,-8.3 -4.6,-0.4 -0.8,8.3 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + transform="translate(-220,-3.8532959e-6)" + style="fill:#bababa" + d="m 514.4,198 9.6,0.9 4.1,17.9 -23.9,-1 z" + id="polygon18" + inkscape:connector-curvature="0" /><path + d="m 298.60547,191.26758 -0.29883,3.40039 2.98828,0.26367 0.29883,-3.40039 -2.98828,-0.26367 z" + id="line20" + inkscape:connector-curvature="0" /></g></g><g + inkscape:groupmode="layer" + id="Head_Outfit_" + inkscape:label="Head_Outfit_"><g + inkscape:groupmode="layer" + id="Head_Outfit_Shine" + inkscape:label="Head_Outfit_Shine"><path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path4027-75" + d="m 308.69363,93.705843 c 6.12129,1.942001 8.41769,9.412737 8.67251,17.211417 -2.56499,-6.10053 -5.64578,-11.737253 -8.67251,-17.211417 z" + style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:2.11298418;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" + transform="matrix(1.4598262,0,0,1.3808576,-143.26648,-38.263379)" /></g></g><g + inkscape:groupmode="layer" + id="Head_Addon_" + inkscape:label="Head_Addon_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Gag" + style="display:inline" + inkscape:label="Gag"><path + inkscape:connector-curvature="0" + d="m 278,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" + style="opacity:0.23999999;fill:#bf2126" + id="XMLID_867_" /><path + transform="translate(-220,0)" + style="fill:#070505" + d="m 489,163.9 -2.6,-6.8 58.7,0 -3.8,7.9 z" + id="XMLID_892_" + inkscape:connector-curvature="0" /><ellipse + ry="8.6999998" + rx="7.5999999" + cy="161.10001" + cx="282.79999" + class="gag" + id="XMLID_893_" /></g><g + id="Glasses" + inkscape:groupmode="layer" + inkscape:label="Glasses" + style="display:inline"><path + class="glasses" + d="m 265.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" + id="path654" /></g></g><g + inkscape:groupmode="layer" + id="Hair_Fore" + style="display:inline" + inkscape:label="Hair_Fore"><path + d="m 264.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" + class="hair" + inkscape:connector-curvature="0" + id="path1018" /></g><g + inkscape:groupmode="layer" + id="Notes_" + inkscape:label="Notes_" + style="display:inline"><text + xml:space="preserve" + style="font-style:normal;font-weight:normal;font-size:17.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="-190.58824" + y="1037.6471" + id="text4352" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan4354" + x="-190.58824" + y="1037.6471">prndev's notes:</tspan><tspan + sodipodi:role="line" + x="-190.58824" + y="1059.5221" + id="tspan4356">I work with Inkscape. I do not know how Illustrator behaves.</tspan><tspan + sodipodi:role="line" + x="-190.58824" + y="1081.3971" + id="tspan4358">All Inkscape Layers are SVG groups.</tspan><tspan + sodipodi:role="line" + x="-190.58824" + y="1103.2721" + id="tspan4360">Inkscape Layer names should be unique.</tspan><tspan + sodipodi:role="line" + x="-190.58824" + y="1125.1471" + id="tspan4362">Inkscape Layer names should be the same as the corresponding SVG group ID (use provided fixup tool to be sure).</tspan><tspan + sodipodi:role="line" + x="-190.58824" + y="1147.0221" + id="tspan4364">All changable style (most notably fill) should be defined in a class.</tspan><tspan + sodipodi:role="line" + x="-190.58824" + y="1168.8971" + id="tspan4366">All conflicting attribute style should be removed (use provided fixup tool to be sure).</tspan><tspan + sodipodi:role="line" + x="-190.58824" + y="1190.7721" + id="tspan4368">All groups with IDs NOT ending in underscore "_", starting with "g" or "XMLID" are exported into separate files.</tspan><tspan + sodipodi:role="line" + x="-190.58824" + y="1212.6471" + id="tspan4060">A single quote ' breaks embedding. Use them to include Twine variables (see README for details).</tspan><tspan + sodipodi:role="line" + x="-190.58824" + y="1234.5221" + id="tspan4370">Original art credit goes to Nov-X.</tspan></text> +</g></svg> \ No newline at end of file diff --git a/src/utility/artWidgets.tw b/devNotes/artWidgets-legacy similarity index 100% rename from src/utility/artWidgets.tw rename to devNotes/artWidgets-legacy diff --git a/src/art/artWidgets.tw b/src/art/artWidgets.tw new file mode 100644 index 0000000000000000000000000000000000000000..23b95e40f4391d0b221c9a591c801e5ad9eeb182 --- /dev/null +++ b/src/art/artWidgets.tw @@ -0,0 +1,570 @@ +:: art widgets [nobr widget] + +/% +Call as <<AssistantArt>> +Displays assistant images. Currently passage-based. +$args[0]: Image size/center. + 3: Large, right. Example: description. + 2: Medium, right. Example: random events. +%/ +<<widget "AssistantArt">> + +<<if $imageChoice == 0>> /* RENDERED IMAGES BY SHOKUSHU */ + +<<switch $assistantAppearance>> +<<case "monstergirl">> + <<set _fileName = "'resources/renders/assistant monstergirl.png' ">> +<<case "shemale">> + <<set _fileName = "'resources/renders/assistant shemale.png' ">> +<<case "amazon">> + <<set _fileName = "'resources/renders/assistant amazon.png' ">> +<<case "businesswoman">> + <<set _fileName = "'resources/renders/assistant businesswoman.png' ">> +<<case "goddess">> + <<set _fileName = "'resources/renders/assistant goddess.png' ">> +<<case "schoolgirl">> + <<set _fileName = "'resources/renders/assistant schoolgirl.png' ">> +<<default>> + <<set _fileName = "'resources/renders/assistant default.png' ">> +<</switch>> +<<if $args[1] == 3>> + <<print "<img src=" + _fileName + "style='float:right; border:3px hidden'/>">> +<<else>> + <<print "<img src=" + _fileName + "style='float:right; border:3px hidden' width='300' height='300'/>">> +<</if>> + +<</if>> /* CLOSES IMAGE CHOICE */ + +<</widget>> + +/% +Call as <<SlaveArt>> +Displays slave images. Currently passage-based. +$args[0]: Slave. +$args[1]: Image size/center. + 3: Large, right. Example: long slave description. + 2: Medium, right. Example: random events. + 1: Small, left. Example: lists. + 0: Tiny, left. Example: facilities +$args[2]: icon UI Display for vector art, 1 for on. +%/ +<<widget "SlaveArt">> + +<<if $args[0].customImage>> + +<<set _fileName = "'resources/" + $args[0].customImage + ".png' ">> + +<<if $args[1] == 3>> + <<print "<img src=" + _fileName + "style='float:right; border:3px hidden'/>">> +<<elseif $args[1] == 2>> + <<print "<img src=" + _fileName + "style='float:right; border:3px hidden' width='300' height='300'/>">> +<<elseif $args[1] == 1>> + <<print "<img src=" + _fileName + "style='float:left; border:3px hidden' width='150' height='150'/>">> +<<else>> + <<print "<img src=" + _fileName + "style='float:left; border:3px hidden' width='120' height='120'/>">> +<</if>> + +<<elseif $imageChoice == 1>> /* VECTOR ART BY NOX*/ + +<<if ndef $seeVectorArtHighlights>> + <<set $seeVectorArtHighlights = 1>> +<</if>> +<<set _artSlave to $args[0] >> +<<silently>> +/* prepare HTML colour codes for slave display */ +/* note: latex clothing is partly emulated by black rubber colour for skin and shoes */ +<<include Art_Vector_Set_Colour_Skin_>> +<<include Art_Vector_Set_Colour_Hair_>> +<<include Art_Vector_Set_Colour_Shoe_>> +<</silently>> +<<include Art_Vector_Generate_Stylesheet_>> +/* +each passage adds one layer of vector art +vector art added later is drawn over previously added art +(what is listed on the bottom in the code appears on the top of the image) +*/ +<<include Art_Vector_Arm_>> +<<include Art_Vector_Hair_Back_>> +<<include Art_Vector_Butt_>> +<<include Art_Vector_Leg_>> +<<include Art_Vector_Feet_>> /* includes shoes */ +<<include Art_Vector_Torso_>> +<<include Art_Vector_Pussy_>> +<<include Art_Vector_Pubic_Hair_>> +<<include Art_Vector_Pussy_Piercings_>> +<<include Art_Vector_Chastity_Belt_>> +<<include Art_Vector_Torso_Outfit_>> /* note: clothing covers chastity belts */ +<<include Art_Vector_Belly_>> /* includes navel piercing and belly-related clothing options */ +<<include Art_Vector_Balls_>> +<<include Art_Vector_Penis_>> /* for dicks behind boobs */ +<<include Art_Vector_Boob_>> /* includes areolae and piercings */ +<<include Art_Vector_Penis_>> /* for dicks in front of boobs */ +<<include Art_Vector_Boob_Addons_>> /* piercings always appear in front of boobs AND dick */ +<<include Art_Vector_Clavicle>> +<<include Art_Vector_Collar_>> +<<include Art_Vector_Head_>> /* includes glasses */ +<<include Art_Vector_Hair_Fore_>> + + +<<elseif $imageChoice == 2>> /* VECTOR ART BY NOX - Pregmod Legacy Version */ +<<SVGFilters>> + +/* 000-250-006 */ +/* <div class="imageRef"> */ +/* 000-250-006 */ + +<<set _folderLoc = "'resources/vector">> + +<<if $args[2] == 1>> + <<print "<img class='paperdoll' src=" + _folderLoc + "/test ui.svg'" + "/>">> +<</if>> + +/% Set skin colour %/ +<<set _skinFilter = "filter: url(#skin-" + _.kebabCase($args[0].skin) + ");">> +/% Set hair colour %/ +<<set _hairFilter = "filter: url(#hair-" + _.kebabCase($args[0].hColor) + ");">> +<<set _pubesFilter = "filter: url(#hair-" + _.kebabCase($args[0].pubicHColor) + ");">> +<<set _axillaryFilter = "filter: url(#hair-" + _.kebabCase($args[0].underArmHColor) + ");">> +<<if $args[0].customHairVector>> + <<set _hairStyle = $args[0].customHairVector>> +<<else>> + <<set _hairStyle = ["neat", "ponytail", "messy"].includes($args[0].hStyle) ? $args[0].hStyle : "neat">> +<</if>> + +<<set _imgSkinLoc = _folderLoc + "/body/white">> + +/% Shoulder width and arm or no arm %/ +<<if $args[0].amp != 1>> +<<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>> +<<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 "<img class='paperdoll' src=" + _imgSkinLoc + "/arm left " + _leftArmType + ".svg'" + " style='"+ _skinFilter + "'>">> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/arm right " + _rightArmType + ".svg'" + " style='"+ _skinFilter + "'>">> +<<else>> + <<if $args[0].fuckdoll != 0>> + <<set _leftArmType = "mid">> + <<set _rightArmType = "mid">> + <</if>> + <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/arm left " + _leftArmType + " latex.svg'" + "/>">> + <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/arm right " + _rightArmType + " latex.svg'" + "/>">> +<</if>> +<</if>> + +/% Hair Aft %/ +<<if $args[0].hStyle != "shaved" && $args[0].fuckdoll == 0>> + <<= "<img class='paperdoll' src=" + _folderLoc + "/hair/" + _hairStyle + " back.svg'" + " style='" + _hairFilter + "'/>">> +<</if>> + +/% Butt %/ +<<if $args[0].amp != 1>> +<<if $args[0].butt > 6>> + <<set _buttSize = 3>> +<<elseif $args[0].butt > 4>> + <<set _buttSize = 2>> +<<elseif $args[0].butt > 2>> + <<set _buttSize = 1>> +<<else>> + <<set _buttSize = 0>> +<</if>> +<<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> + <<set _buttSize = _buttSize + " latex">> + <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/butt " + _buttSize + ".svg'" + " style='"+ _skinFilter + "'>">> +<<else>> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/butt " + _buttSize + ".svg'" + " style='"+ _skinFilter + "'>">> +<</if>> +<</if>> + +/% Leg + 1 size up when chubby or fat%/ +<<if $args[0].hips < 0>> + <<if $args[0].weight <= 95>>/%Chubby%/ + <<set _legSize = "normal">> + <<else>> + <<set _legSize = "narrow">> + <</if>> +<<elseif $args[0].hips == 0>> + <<if $args[0].weight <= 95>>/%Chubby%/ + <<set _legSize = "wide">> + <<else>> + <<set _legSize = "normal">> + <</if>> +<<elseif $args[0].hips > 0>> + <<set _legSize = "wide">> +<</if>> +<<if $args[0].amp == 1>> + <<set _legSize = "stump " + _legSize>> +<</if>> +<<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 "<img class='paperdoll' src=" + _folderLoc + "/outfit/leg " + _legSize + ".svg'" + "/>">> +<<else>> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/leg " + _legSize + ".svg'" + " style='"+ _skinFilter + "'>">> +<</if>> + +/% Feet %/ +<<if $args[0].amp != 1>> +<<if $args[0].shoes == "heels">> + <<set _shoesType = "heel">> +<<elseif $args[0].shoes == "extreme heels">> + <<if $args[0].weight <= 95>>/%Chubby%/ + <<set _shoesType = "extreme heel wide">> + <<else>> + <<set _shoesType = "extreme heel">> + <</if>> +<<elseif $args[0].shoes == "boots">> + <<if $args[0].weight <= 95>>/%Chubby%/ + <<set _shoesType = "boot wide">> + <<else>> + <<set _shoesType = "boot">> + <</if>> +<<elseif $args[0].shoes == "flats">> + <<set _shoesType = "flat">> +<<else>> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/feet.svg'" + " style='"+ _skinFilter + "'>">> +<</if>> +<<if $args[0].shoes == "extreme heels" or $args[0].shoes == "boots">> + <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> + <<set _shoesType = _shoesType + " latex">> + <</if>> + <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/" + _shoesType + ".svg'" + "/>">> +<</if>> +<<if $args[0].shoes == "heels" or $args[0].shoes == "flats">> + <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> + <<set _shoesType = _shoesType + " latex">> + <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/" + _shoesType + ".svg'" + "/>">> + <<else>> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/" + _shoesType + ".svg'" + " style='"+ _skinFilter + "'>">> + <</if>> +<</if>> +<</if>> + +/% Torso %/ +<<if $args[0].waist < -40>>/*Unnatural*/ + <<if $args[0].weight <= 30>>/%Chubby%/ + <<set _torsoSize = "hourglass">> + <<else>> + <<set _torsoSize = "unnatural">> + <</if>> +<<elseif $args[0].waist <= 10>>/%Hour glass%/ + <<if $args[0].weight <= 30>>/%Chubby%/ + <<set _torsoSize = "normal">> + <<else>> + <<set _torsoSize = "hourglass">> + <</if>> +<<else>>/*Normal*/ + <<set _torsoSize = "normal">> +<</if>> +<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/torso " + _torsoSize + ".svg'" + " style='"+ _skinFilter + "'>">> +<<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 "<img class='paperdoll' src=" + _folderLoc + "/outfit/torso " + _torsoSize + _torsoOutfit + ".svg'" + "/>">> +<</if>> + +/*Navel Piercing*/ +<<if $args[0].navelPiercing >= 1>> + <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/navel piercing.svg'" + "/>">> +<</if>> +<<if $args[0].navelPiercing == 2>> + <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/navel piercing heavy.svg'" + "/>">> +<</if>> + +/% Vagina %/ +<<if $args[0].vagina >= 0>> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/vagina.svg'" + " style='"+ _skinFilter + "'>">> + <<if $args[0].clitPiercing == 1>> + <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/clit piercing.svg'" + "/>">> + <<elseif $args[0].clitPiercing == 2>> + <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/clit piercing heavy.svg'" + "/>">> + <<elseif $args[0].clitPiercing == 3>> + <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/clit piercing smart.svg'" + "/>">> + <</if>> + <<if $args[0].vaginaPiercing == 1>> + <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/pussy piercing.svg'" + "/>">> + <<elseif $args[0].vaginaPiercing == 2>> + <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/pussy piercing heavy.svg'" + "/>">> + <</if>> +<</if>> + +/% Collar %/ +<<switch $args[0].collar>> +<<case "bowtie">> +<<case "ancient Egyptian">> +<<case "nice retirement counter" "cruel retirement counter" "leather with cowbell" "pretty jewelry" "heavy gold" "satin choker" "stylish leather" "neck corset" "shock punishment" "tight steel" "uncomfortable leather" "dildo gag">> + <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/" + $args[0].collar + ".svg'" + "/>">> +<</switch>> + +/% Head base image %/ +<<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> + <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/head latex.svg'" + "/>">> +<<else>> + <<print "<img class='paperdoll' src=" +_imgSkinLoc + "/head.svg'" + " style='"+ _skinFilter + "'>">> +<</if>> + +/% Glasses %/ +<<if $args[0].eyewear == "corrective glasses" or $args[0].eyewear == "glasses" or $args[0].eyewear == "blurring glasses">> + <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/glasses.svg'" + "/>">> +<</if>> + +/% Chastity belt or Pubic hair %/ +<<if $args[0].dickAccessory == "chastity" || $args[0].dickAccessory == "anal chastity" || $args[0].dickAccessory == "combined chastity" || $args[0].vaginalAccessory == "chastity belt" || $args[0].vaginalAccessory == "anal chastity" || $args[0].vaginalAccessory == "combined chastity">> + <<if $args[0].dickAccessory == "chastity" || $args[0].dickAccessory == "combined chastity">> + <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity male aft.svg'" + "/>">> + <</if>> + <<if $args[0].vaginalAccessory == "chastity belt" || $args[0].vaginalAccessory == "combined chastity">> + <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity female.svg'" + "/>">> + <</if>> + <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity base.svg'" + "/>">> +<<else>> + <<if $args[0].pubicHStyle != "waxed">> + <<set _pubicHStyle = ($args[0].pubicHStyle == "in a strip" ? "strip" : $args[0].pubicHStyle)>> + <<= "<img class='paperdoll' src=" + _folderLoc + "/hair/pubes " + _pubicHStyle + ".svg' style='" + _pubesFilter + "'/>">> + <</if>> +<</if>> + +/%if pregnant%/ +<<if $args[0].preg > 0>> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/preg belly.svg'" + " style='"+ _skinFilter + "'>">> + <<if $args[0].navelPiercing >= 1>>/*Navel Piercing*/ + <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/preg navel piercing.svg'" + "/>">> + <</if>> + <<if $args[0].navelPiercing == 2>> + <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/preg navel piercing heavy.svg'" + "/>">> + <</if>> +<</if>> + +/% Boob %/ +<<if $args[0].boobs < 250>> + <<set _boobSize = 0>> +<<elseif $args[0].boobs < 500>> + <<set _boobSize = 1>> +<<elseif $args[0].boobs < 800>> + <<set _boobSize = 2>> +<<elseif $args[0].boobs < 1600>> + <<set _boobSize = 3>> +<<elseif $args[0].boobs < 3200>> + <<set _boobSize = 4>> +<<elseif $args[0].boobs < 6400>> + <<set _boobSize = 5>> +<<elseif $args[0].boobs < 12000>> + <<set _boobSize = 6>> +<<else>> + <<set _boobSize = 7>> +<</if>> + +/% Scrotum %/ +<<if $args[0].scrotum > 0>> + <<if $args[0].scrotum >= 6>> + <<set _ballSize = 4>> + <<elseif $args[0].scrotum >= 4>> + <<set _ballSize = 3>> + <<elseif $args[0].scrotum >= 3>> + <<set _ballSize = 2>> + <<elseif $args[0].scrotum >= 2>> + <<set _ballSize = 1>> + <<else>> + <<set _ballSize = 0>> + <</if>> +<</if>> + +/% Penis %/ +<<if $args[0].dick > 0>> + <<if $args[0].dick >= 8>> + <<set _penisSize = 6>> + <<elseif $args[0].dick >= 7>> + <<set _penisSize = 5>> + <<elseif $args[0].dick >= 6>> + <<set _penisSize = 4>> + <<elseif $args[0].dick >= 5>> + <<set _penisSize = 3>> + <<elseif $args[0].dick >= 4>> + <<set _penisSize = 2>> + <<elseif $args[0].dick >= 2>> + <<set _penisSize = 1>> + <<else>> + <<set _penisSize = 0>> + <</if>> +<</if>> + +/% Boob %/ +<<set _needBoobs = 1>> +<<if $args[0].dick > 0>> +<<if canAchieveErection($args[0])>> +<<if _boobSize < 6>> + <<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 "<img class='paperdoll' src=" + _folderLoc + "/outfit/boob " +_boobSize + _boobOutfit + ".svg'" + "/>">> + <<if $args[0].lactation > 0>> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + " style='"+ _skinFilter + "'>">> + <</if>> + <<else>> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize +".svg'" + " style='"+ _skinFilter + "'>">> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + " style='"+ _skinFilter + "'>">> + <</if>> + /* special case: straps are actually dawn over the boobs */ + <<if $args[0].clothes == "uncomfortable straps">> + <<set _boobOutfit = " straps" >> + <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/boob " +_boobSize + _boobOutfit + ".svg'" + "/>">> + <</if>> + <<set _needBoobs = 0>> +<</if>> +<</if>> +<</if>> +<<if $args[0].vagina > 0>> + <<if $args[0].dick > 0>> + <div class="highPenis"> + <<if $args[0].scrotum > 0>> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/ball " + _ballSize + ".svg'" + " style='"+ _skinFilter + "'>">> + <</if>> + <<if canAchieveErection($args[0])>> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/penis " + _penisSize + ".svg'" + " style='"+ _skinFilter + "'>">> + <<else>> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/flaccid " + _penisSize + ".svg'" + " style='"+ _skinFilter + "'>">> + <<if $args[0].dickAccessory == "chastity" || $args[0].dickAccessory == "combined chastity">> + <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity male fore " + _penisSize + ".svg'" + "/>">> + <</if>> + <</if>> + </div> + <</if>> +<<else>> + <<if $args[0].dick > 0>> + <div class="lowPenis"> + <<if $args[0].scrotum > 0>> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/ball " + _ballSize + ".svg'" + " style='"+ _skinFilter + "'>">> + <</if>> + <<if canAchieveErection($args[0])>> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/penis " + _penisSize + ".svg'" + " style='"+ _skinFilter + "'>">> + <<else>> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/flaccid " + _penisSize + ".svg'" + " style='"+ _skinFilter + "'>">> + <<if $args[0].dickAccessory == "chastity" || $args[0].dickAccessory == "combined chastity">> + <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity male fore " + _penisSize + ".svg'" + "/>">> + <</if>> + <</if>> + </div> + <</if>> +<</if>> +<<if _needBoobs>> + <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> + <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/boob " +_boobSize +" latex.svg'" + "/>">> + <<if $args[0].lactation > 0>><<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + " style='"+ _skinFilter + "'>">><</if>> + <<else>> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize +".svg'" + " style='"+ _skinFilter + "'>">> + <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + " style='"+ _skinFilter + "'>">> + <</if>> + /* special case: straps are actually dawn over the boobs */ + <<if $args[0].clothes == "uncomfortable straps">> + <<set _boobOutfit = " straps" >> + <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/boob " +_boobSize + _boobOutfit + ".svg'" + "/>">> + <</if>> +<</if>> + +/% piercings %/ +<<if $args[0].nipplesPiercing == 1>> + <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/boob " +_boobSize +" piercing.svg'" + "/>">> +<<elseif $args[0].nipplesPiercing == 2>> + <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/boob " +_boobSize +" piercing heavy.svg'" + "/>">> +<</if>> +<<if $args[0].areolaePiercing == 1>> + <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/boob " +_boobSize +" areola piercing.svg'" + "/>">> +<</if>> + +/% clavicle %/ +<<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/clavicle.svg'" + "/>">> + +/% Hair Foreground %/ +<<if $args[0].hStyle != "shaved" && $args[0].fuckdoll == 0>> + <<= "<img class='paperdoll' src=" + _folderLoc + "/hair/" + _hairStyle + " front.svg'" + " style='" + _hairFilter + "'/>">> +<</if>> + + +<<else>> /* RENDERED IMAGES BY SHOKUSHU */ + +<<if $args[0].vagina > -1>> + <<if $args[0].dick > 0>> + <<if $args[0].balls > 0>> + <<set _fileName = "futanari">> + <<else>> + <<set _fileName = "herm">> + <</if>> + <<else>> + <<set _fileName = "female">> + <</if>> +<<else>> + <<if $args[0].balls > 0>> + <<set _fileName = "shemale">> + <<else>> + <<set _fileName = "gelding">> + <</if>> +<</if>> +<<if $args[0].preg > 10>> + <<set _fileName = "preg " + _fileName>> +<</if>> +<<if $args[0].boobs < 400>> + <<set _fileName = _fileName + " small">> +<<elseif $args[0].boobs < 800>> + <<set _fileName = _fileName + " big">> +<<elseif $args[0].boobs < 6000>> + <<set _fileName = _fileName + " huge">> +<<else>> + <<set _fileName = _fileName + " hyper">> +<</if>> +<<if $args[0].muscles > 30>> + <<set _fileName = _fileName + " muscle">> +<<else>> + <<set _fileName = _fileName + " soft">> +<</if>> +<<if $args[0].fuckdoll > 0>> + <<set _fileName = _fileName + " rebellious">> +<<elseif $args[0].devotion <= 20>> + <<if $args[0].trust < -20>> + <<set _fileName = _fileName + " reluctant">> + <<else>> + <<set _fileName = _fileName + " rebellious">> + <</if>> +<<elseif $args[0].fetish == "mindbroken">> + <<set _fileName = _fileName + " reluctant">> +<<elseif $args[0].devotion <= 50 || $args[0].fetishKnown != 1 || ($seeMainFetishes == 0 && $args[1] < 2)>> + <<set _fileName = _fileName + " obedient">> +<<else>> + <<if $args[0].fetish == "none">> + <<set _fileName = _fileName + " obedient">> + <<else>> + <<set _fileName = _fileName + " " + $args[0].fetish>> + <</if>> +<</if>> + +<<set _fileName = "'resources/renders/" + _fileName + ".png' ">> +<<if $args[1] == 3>> + <<print "<img src=" + _fileName + "style='float:right; border:3px hidden'/>">> +<<elseif $args[1] == 2>> + <<print "<img src=" + _fileName + "style='float:right; border:3px hidden' width='300' height='300'/>">> +<<elseif $args[1] == 1>> + <<print "<img src=" + _fileName + "style='float:left; border:3px hidden' width='150' height='150'/>">> +<<else>> + <<print "<img src=" + _fileName + "style='float:left; border:3px hidden' width='120' height='120'/>">> +<</if>> + +<</if>> /* CLOSES IMAGE CHOICE */ + +<</widget>> diff --git a/src/art/vector/Arm.tw b/src/art/vector/Arm.tw new file mode 100644 index 0000000000000000000000000000000000000000..bd6f8ea2bab2e61a6e29919a3d9d9c83068b7620 --- /dev/null +++ b/src/art/vector/Arm.tw @@ -0,0 +1,46 @@ +:: Art_Vector_Arm_ [nobr] + +/* Arms position switch courtesy of Nov-X */ + +<<if $args[0].amp != 1>> + <<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>> + <<else>> + <<set _leftArmType = "Mid">> + <<set _rightArmType = "Mid">> + <</if>> + + <<set _art = "Art_Vector_Arm_Right_"+_rightArmType >> + <<include _art>> + <<set _art = "Art_Vector_Arm_Left_"+_leftArmType >> + <<include _art>> + + /* shiny clothings */ + <<if $seeVectorArtHighlights == 1>> + <<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" || _artSlave.clothes == "a latex catsuit">> + /* only some arm positions have art (feel free to add more) */ + <<switch _leftArmType>> + <<case "High">> + <<include Art_Vector_Arm_Outfit_Shine_Left_High>> + <<case "Mid">> + <<include Art_Vector_Arm_Outfit_Shine_Left_Mid>> + <<case "Low">> + <<include Art_Vector_Arm_Outfit_Shine_Left_Low>> + <<default>> + /* no art for this arm position */ + <</switch>> + <</if>> + <</if>> +<</if>> diff --git a/src/art/vector/Balls.tw b/src/art/vector/Balls.tw new file mode 100644 index 0000000000000000000000000000000000000000..9d09f838afb1855cfa49dc60411d11b626f57a52 --- /dev/null +++ b/src/art/vector/Balls.tw @@ -0,0 +1,17 @@ +:: Art_Vector_Balls_ [nobr] + +<<if _artSlave.scrotum > 0 && _artSlave.balls > 0 >> + <<if _artSlave.scrotum >= 6>> + <<set _ballSize = 4>> + <<elseif _artSlave.scrotum >= 4>> + <<set _ballSize = 3>> + <<elseif _artSlave.scrotum >= 3>> + <<set _ballSize = 2>> + <<elseif _artSlave.scrotum >= 2>> + <<set _ballSize = 1>> + <<else>> + <<set _ballSize = 0>> + <</if>> + <<set _art = "Art_Vector_Balls_"+_ballSize>> + <<include _art>> +<</if>> diff --git a/src/art/vector/Belly.tw b/src/art/vector/Belly.tw new file mode 100644 index 0000000000000000000000000000000000000000..2edf5462175218f70f1256f37166665d6ab167bb --- /dev/null +++ b/src/art/vector/Belly.tw @@ -0,0 +1,35 @@ +:: Art_Vector_Belly_ [nobr] + +<<set _showNavelPiercings = $showBodyMods == 1 && _artSlave.clothes != "restrictive latex" && _artSlave.clothes != "a latex catsuit">> + +<<if _artSlave.preg > 0>> + <<include Art_Vector_Belly>> + + /* shiny clothings */ + <<if $seeVectorArtHighlights == 1>> + <<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" || _artSlave.clothes == "a latex catsuit">> + <<include Art_Vector_Belly_Outfit_Shine>> + <</if>> + <</if>> + + /* belly piercings */ + <<if _showNavelPiercings >> + <<if _artSlave.navelPiercing >= 1>> + <<include Art_Vector_Belly_Piercing>> + <</if>> + <<if _artSlave.navelPiercing == 2>> + <<include Art_Vector_Belly_Piercing_Heavy>> + <</if>> + <</if>> +<<else>> + + /* flat midriff piercings */ + <<if _showNavelPiercings >> + <<if _artSlave.navelPiercing >= 1>> + <<include Art_Vector_Navel_Piercing>> + <</if>> + <<if _artSlave.navelPiercing == 2>> + <<include Art_Vector_Navel_Piercing_Heavy>> + <</if>> + <</if>> +<</if>> diff --git a/src/art/vector/Boob.tw b/src/art/vector/Boob.tw new file mode 100644 index 0000000000000000000000000000000000000000..a3e0bd5626a449ccdff16de406fe987e8b9f1971 --- /dev/null +++ b/src/art/vector/Boob.tw @@ -0,0 +1,39 @@ +:: Art_Vector_Boob_ [nobr] + +/* BEWARE: _art_have_boobs and _art_scale_factor interfere with Art_Vector_Penis_ */ +<<set _art_have_boobs to true>> + +/* BEWARE: _art_boob_transform is also read by Art_Vector_Boob_Addons_ */ + +/* +Prepare SVG transform matrix for continous boob scaling. +This transform affects boobs, areolae and piercings. +From an artistic point of view, the function parameters are courtesy of Nov-X. +From a programmers pont of view, prndev read discrete transform parameters with Inkscape and fit the cubic root function via gnuplot. +*/ +<<set _art_scale_factor = 0.190308*Math.pow(_artSlave.boobs,(1.0/3.0))-0.205304 >> +<<set _art_translation_x = -292.841*_art_scale_factor+292.349 >> +<<set _art_translation_y = -216.438*_art_scale_factor+216.274 >> +<<set _art_boob_transform = "matrix(" + _art_scale_factor +",0,0," + _art_scale_factor + "," + _art_translation_x + "," + _art_translation_y + ")">> +<<set _art_transform = _art_boob_transform>> + +<<if _artSlave.boobs < 250 >> + /* boobs too small - draw areolae directly onto torso */ + <<set _art_scale_factor = 1 >> + <<set _art_translation_x = 16 >> /* a little shift to the right is needed due to perspective */ + <<set _art_translation_y = 0 >> + <<set _art_boob_transform = "matrix(" + _art_scale_factor +",0,0," + _art_scale_factor + "," + _art_translation_x + "," + _art_translation_y + ")">> + <<set _art_transform = _art_boob_transform>> +<<else>> + <<include Art_Vector_Boob>> + /* shiny clothings */ + <<if $seeVectorArtHighlights == 1>> + <<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "a latex catsuit">> + <<include Art_Vector_Boob_Outfit_Shine>> + <</if>> + <</if>> +<</if>> +<<include Art_Vector_Boob_Areola>> + +/* set _art_transform to empty string so stray SVG groups in other passages are not affected */ +<<set _art_transform = "">> diff --git a/src/art/vector/Boob_Addons.tw b/src/art/vector/Boob_Addons.tw new file mode 100644 index 0000000000000000000000000000000000000000..1cc95c7a4d84562af0b2a4cd338915239a44ccf9 --- /dev/null +++ b/src/art/vector/Boob_Addons.tw @@ -0,0 +1,22 @@ +:: Art_Vector_Boob_Addons_ [nobr] + +/* BEWARE: _art_boob_transform is set by with Art_Vector_Penis_ */ + +/* load _art_transform from _art_boob_transform */ +<<set _art_transform = _art_boob_transform>> + +<<set _showNipplePiercings = $showBodyMods == 1 && _artSlave.clothes != "restrictive latex" && _artSlave.clothes != "a latex catsuit" >> + +<<if _showNipplePiercings>> + <<if _artSlave.nipplesPiercing == 1>> + <<include Art_Vector_Boob_Piercing>> + <<elseif _artSlave.nipplesPiercing == 2>> + <<include Art_Vector_Boob_Piercing_Heavy>> + <</if>> + <<if _artSlave.areolaePiercing == 1>> + <<include Art_Vector_Boob_Areola_Piercing>> + <</if>> +<</if>> + +/* set _art_transform to empty string so stray SVG groups in other passages are not affected */ +<<set _art_transform = "">> diff --git a/src/art/vector/Butt.tw b/src/art/vector/Butt.tw new file mode 100644 index 0000000000000000000000000000000000000000..0dc36c8f75af49af4012318639a35b8d4d5c11bd --- /dev/null +++ b/src/art/vector/Butt.tw @@ -0,0 +1,17 @@ +:: Art_Vector_Butt_ [nobr] + +/* BEWARE: _buttSize is also used in Art_Vector_Leg_ */ + +<<if _artSlave.amp != 1>> + <<if _artSlave.butt > 6>> + <<set _buttSize = 3>> + <<elseif _artSlave.butt > 4>> + <<set _buttSize = 2>> + <<elseif _artSlave.butt > 2>> + <<set _buttSize = 1>> + <<else>> + <<set _buttSize = 0>> + <</if>> + <<set _art = "Art_Vector_Butt_"+_buttSize >> + <<include _art >> +<</if>> diff --git a/src/art/vector/Chastity_Belt.tw b/src/art/vector/Chastity_Belt.tw new file mode 100644 index 0000000000000000000000000000000000000000..ab7bca0f9e93dacc5af8b63c6ee6c23382aef2a1 --- /dev/null +++ b/src/art/vector/Chastity_Belt.tw @@ -0,0 +1,18 @@ +:: Art_Vector_Chastity_Belt_ [nobr] + +/* note: penile chastity is handled by penis display */ + +<<set _chastityAnal = _artSlave.dickAccessory == "anal chastity" || _artSlave.dickAccessory == "combined chastity" || _artSlave.vaginalAccessory == "anal chastity" || _artSlave.vaginalAccessory == "combined chastity" >> +<<set _chastityVaginal = _artSlave.vaginalAccessory == "chastity belt" || _artSlave.vaginalAccessory == "combined chastity">> + +<<if _chastityAnal>> + <<include Art_Vector_Chastity_Anus>> +<</if>> + +<<if _chastityVaginal>> + <<include Art_Vector_Chastity_Vagina>> +<</if>> + +<<if _chastityAnal || _chastityVaginal >> + <<include Art_Vector_Chastity_Base>> +<</if>> diff --git a/src/art/vector/Collar.tw b/src/art/vector/Collar.tw new file mode 100644 index 0000000000000000000000000000000000000000..e2f58ea6c7978a20110aa0ad3ddcd3ac4c007f40 --- /dev/null +++ b/src/art/vector/Collar.tw @@ -0,0 +1,28 @@ +:: Art_Vector_Collar_ [nobr] + +/* TODO: find out where "uncomfortable leather" collar art went */ + +<<switch _artSlave.collar>> +<<case "leather with cowbell">> +<<include Art_Vector_Collar_Cowbell >> +<<case "heavy gold">> +<<include Art_Vector_Collar_Gold_Heavy >> +<<case "neck corset">> +<<include Art_Vector_Collar_Neck_Corset >> +<<case "pretty jewelry">> +<<include Art_Vector_Collar_Pretty_Jewelry >> +<<case "cruel retirement counter">> +<<include Art_Vector_Collar_Retirement_Cruel >> +<<case "nice retirement counter">> +<<include Art_Vector_Collar_Retirement_Nice >> +<<case "satin choker">> +<<include Art_Vector_Collar_Satin_Choker >> +<<case "shock punishment">> +<<include Art_Vector_Collar_Shock_Punishment >> +<<case "stylish leather">> +<<include Art_Vector_Collar_Stylish_Leather >> +<<case "tight steel">> +<<include Art_Vector_Collar_Tight_Steel >> +<<default>> +/* collar not supported - don't display anything */ +<</switch>> diff --git a/src/art/vector/Feet.tw b/src/art/vector/Feet.tw new file mode 100644 index 0000000000000000000000000000000000000000..ef0c70015e40d4cb07ac90777911c7ab6706c28d --- /dev/null +++ b/src/art/vector/Feet.tw @@ -0,0 +1,41 @@ +:: Art_Vector_Feet_ [nobr] + +/* BEWARE: Uses _legSize set by Art_Vector_Leg_ */ + +<<if _artSlave.amp != 1>> + <<switch _artSlave.shoes>> + <<case "heels">> + <<include Art_Vector_Shoes_Heel>> + <<case "extreme heels">> + <<include Art_Vector_Shoes_Exterme_Heel>> + <<if _legSize == "Wide">> + <<include Art_Vector_Shoes_Exterme_Heel_Wide>> + <</if>> + <<case "boots">> + <<include Art_Vector_Shoes_Boot>> + <<if _legSize == "Wide">> + <<include Art_Vector_Shoes_Boot_Wide>> + <</if>> + <<case "flats">> + <<include Art_Vector_Shoes_Flat>> + <<case "pumps">> + <<include Art_Vector_Shoes_Pump>> + <<default>> + <<include Art_Vector_Feet>> + <</switch>> +<</if>> + +/* shiny clothings */ +<<if $seeVectorArtHighlights == 1>> + /* this one is leg and partly butt-related, but needs to be here as shoes are drawn over legs and butt */ + <<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" || _artSlave.clothes == "a latex catsuit">> + <<if _artSlave.amp != 1>> + <<set _art = "Art_Vector_Butt_Outfit_Shine_"+_buttSize >> + <<include _art >> + <<set _art = "Art_Vector_Leg_Outfit_Shine_"+_legSize >> + <<else>> + <<set _art = "Art_Vector_Leg_Outfit_Shine_Stump" >> + <</if>> + <<include _art >> + <</if>> +<</if>> diff --git a/src/art/vector/Generate_Stylesheet.tw b/src/art/vector/Generate_Stylesheet.tw new file mode 100644 index 0000000000000000000000000000000000000000..53de7021ca229297a80fba472894ad838e9b2e52 --- /dev/null +++ b/src/art/vector/Generate_Stylesheet.tw @@ -0,0 +1,39 @@ +:: Art_Vector_Generate_Stylesheet_ [nobr] + +/* _art_display_class is a workaround for browsers not supporting scoped styles */ +<<if _art_display_id > 0 >> + <<set _art_display_id += 1>> +<<else>> + <<set _art_display_id = 1>> +<</if>> +<<set _art_display_class = "ad"+_art_display_id >> + +/* this scoped style sets the colours for this display only */ +<style scope> +._art_display_class { + position: absolute; + height: 100%; + margin-left: auto; + margin-right: auto; + left: 0; + right: 0; +} +._art_display_class .white { fill:#FFFFFF; } +._art_display_class .skin { fill:_skinColour; } +._art_display_class .head { fill:_headSkinColour; } +._art_display_class .torso { fill:_torsoSkinColour; } +._art_display_class .boob { fill:_boobSkinColour; } +._art_display_class .penis { fill:_penisSkinColour; } +._art_display_class .scrotum { fill:_scrotumSkinColour; } +._art_display_class .areola { fill:_areolaColour; } +._art_display_class .labia { fill:_labiaColour; } +._art_display_class .hair { fill:_hairColour; } +._art_display_class .shoe { fill:_shoeColour; } +._art_display_class .shoe_shadow { fill:_shoeShadowColour; } +._art_display_class .smart_piercing { fill:#4DB748; } +._art_display_class .steel_piercing { fill:#787878; } +._art_display_class .steel_chastity { fill:#BABABA; } +._art_display_class .gag { fill:#BF2126; } +._art_display_class .shadow { fill:#010101; } +._art_display_class .glasses { fill:#010101; } +</style> diff --git a/src/art/vector/Hair_Back.tw b/src/art/vector/Hair_Back.tw new file mode 100644 index 0000000000000000000000000000000000000000..40e56dcbfcf8365d07dc1232b33f0863700715c3 --- /dev/null +++ b/src/art/vector/Hair_Back.tw @@ -0,0 +1,6 @@ +:: Art_Vector_Hair_Back_ [nobr] + +/* note: latex clothing actually shows some hair, but there is no appropriate art for it */ +<<if $args[0].hStyle != "shaved" && $args[0].fuckdoll == 0 && _artSlave.clothes != "restrictive latex" >> + <<include Art_Vector_Hair_Back>> +<</if>> diff --git a/src/art/vector/Hair_Fore.tw b/src/art/vector/Hair_Fore.tw new file mode 100644 index 0000000000000000000000000000000000000000..8bd9283085be5ad426c37d8e16aa9d5ecd0a0a8c --- /dev/null +++ b/src/art/vector/Hair_Fore.tw @@ -0,0 +1,6 @@ +:: Art_Vector_Hair_Fore_ [nobr] + +/* note: latex clothing actually shows some hair, but there is no appropriate art for it */ +<<if $args[0].hStyle != "shaved" && $args[0].fuckdoll == 0 && _artSlave.clothes != "restrictive latex" >> + <<include Art_Vector_Hair_Fore>> +<</if>> diff --git a/src/art/vector/Head.tw b/src/art/vector/Head.tw new file mode 100644 index 0000000000000000000000000000000000000000..09e8a5536b418f2ecf64f5942824fc5c15dadb4b --- /dev/null +++ b/src/art/vector/Head.tw @@ -0,0 +1,20 @@ +:: Art_Vector_Head_ [nobr] + +<<include Art_Vector_Head>> + +/* shiny clothings */ +<<if $seeVectorArtHighlights == 1>> + <<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" || _artSlave.clothes == "a latex catsuit">> + <<include Art_Vector_Head_Outfit_Shine>> + <</if>> +<</if>> + +/* ADDONS */ + +<<if _artSlave.collar == "dildo gag">> + <<include Art_Vector_Gag>> +<</if>> + +<<if _artSlave.eyewear == "corrective glasses" or _artSlave.eyewear == "glasses" or _artSlave.eyewear == "blurring glasses">> + <<include Art_Vector_Glasses>> +<</if>> diff --git a/src/art/vector/Leg.tw b/src/art/vector/Leg.tw new file mode 100644 index 0000000000000000000000000000000000000000..b94bda9fcb4ca0be8cfad6bbd9343a8bb468f51b --- /dev/null +++ b/src/art/vector/Leg.tw @@ -0,0 +1,29 @@ +:: Art_Vector_Leg_ [nobr] + +/* Leg wideness switch courtesy of Nov-X */ + +/* BEWARE: _legSize is also used in Art_Vector_Feet_ */ +/* BEWARE: _buttSize set by Art_Vector_Butt_ */ + +<<if _artSlave.amp != 1>> + <<set _legSize = "Normal">> + <<if _artSlave.hips < 0>> + <<if _artSlave.weight <= 95>> + <<set _legSize = "Normal">> + <<else>> + <<set _legSize = "Narrow">> + <</if>> + <<elseif _artSlave.hips == 0>> + <<if _artSlave.weight <= 95>> + <<set _legSize = "Wide">> + <<else>> + <<set _legSize = "Normal">> + <</if>> + <<elseif _artSlave.hips > 0>> + <<set _legSize = "Wide">> + <</if>> + <<set _art = "Art_Vector_Leg_"+_legSize >> +<<else>> + <<set _art = "Art_Vector_Stump" >> +<</if>> +<<include _art >> diff --git a/src/art/vector/Penis.tw b/src/art/vector/Penis.tw new file mode 100644 index 0000000000000000000000000000000000000000..d2ed27902a4d1b73641dae9b036b87db6859b0e5 --- /dev/null +++ b/src/art/vector/Penis.tw @@ -0,0 +1,44 @@ +:: Art_Vector_Penis_ [nobr] + +/* BEWARE: _art_have_boobs and _art_scale_factor interfere with Art_Vector_Boob_ */ + +<<if _artSlave.dick >= 8>> + <<set _penisSize = 6>> +<<elseif _artSlave.dick >= 7>> + <<set _penisSize = 5>> +<<elseif _artSlave.dick >= 6>> + <<set _penisSize = 4>> +<<elseif _artSlave.dick >= 5>> + <<set _penisSize = 3>> +<<elseif _artSlave.dick >= 4>> + <<set _penisSize = 2>> +<<elseif _artSlave.dick >= 2>> + <<set _penisSize = 1>> +<<elseif _artSlave.dick >= 1>> + <<set _penisSize = 0>> +<<else>> + <<set _penisSize = -1>> +<</if>> + +<<if _penisSize >= 0>> + <<if canAchieveErection(_artSlave) && (_artSlave.dickAccessory != "chastity") && (_artSlave.dickAccessory != "combined chastity") >> + <<if (def _art_have_boobs) && (_art_scale_factor < 2.6)>> + /* only draw erect penis over boobs if boobs do not hide the penis' base */ + <<set _art = "Art_Vector_Penis_"+_penisSize>> + <<include _art>> + <</if>> + <<else>> + <<if ndef _art_have_boobs >> + /* flaccid penises are always drawn behind the boobs */ + <<set _art = "Art_Vector_Flaccid_"+_penisSize>> + <<include _art>> + <<if (_artSlave.dickAccessory == "chastity") || (_artSlave.dickAccessory == "combined chastity") >> + <<set _art = "Art_Vector_Chastity_Cage_"+_penisSize>> + <<include _art>> + <</if>> + <</if>> + <</if>> +<</if>> + +/* unset the variable for the next display */ +<<unset _art_have_boobs >> diff --git a/src/art/vector/Pubic_Hair.tw b/src/art/vector/Pubic_Hair.tw new file mode 100644 index 0000000000000000000000000000000000000000..bf6c8e8aadbc8130937ed89a9c25b7e8ff6c110e --- /dev/null +++ b/src/art/vector/Pubic_Hair.tw @@ -0,0 +1,25 @@ +:: Art_Vector_Pubic_Hair_ [nobr] + +<<if $showBodyMods == 1>> + <<if _artSlave.vaginaTat == "rude words">> + <<if _artSlave.dick != 0>> + <<set _art_pussy_tattoo_text to "Useless" >> + <<else>> + <<set _art_pussy_tattoo_text to "Fucktoy" >> + <</if>> + <<include Art_Vector_Pussy_Tattoo>> + <</if>> +<</if>> + +<<switch _artSlave.pubicHStyle>> + <<case "strip" "in a strip">> + <<include Art_Vector_Pubic_Hair_Strip >> + <<case "bush">> + <<include Art_Vector_Pubic_Hair_Bush >> + <<case "neat">> + <<include Art_Vector_Pubic_Hair_Neat >> + <<case "waxed">> + /* no hair to display */ + <<default>> + /* pubic hair style not supported - don't display anything*/ +<</switch>> diff --git a/src/art/vector/Pussy.tw b/src/art/vector/Pussy.tw new file mode 100644 index 0000000000000000000000000000000000000000..5291b51c99a2011107fd780e43db3947a09e736a --- /dev/null +++ b/src/art/vector/Pussy.tw @@ -0,0 +1,5 @@ +:: Art_Vector_Pussy_ [nobr] + +<<if _artSlave.vagina >= 0>> + <<include Art_Vector_Pussy>> +<</if>> diff --git a/src/art/vector/Pussy_Piercings.tw b/src/art/vector/Pussy_Piercings.tw new file mode 100644 index 0000000000000000000000000000000000000000..3324ed66b027b409c987e81c9d68c3b7280feb3b --- /dev/null +++ b/src/art/vector/Pussy_Piercings.tw @@ -0,0 +1,17 @@ +:: Art_Vector_Pussy_Piercings_ [nobr] + +<<if $showBodyMods == 1>> + <<if _artSlave.vaginaPiercing == 1>> + <<include Art_Vector_Pussy_Piercing>> + <<elseif _artSlave.vaginaPiercing == 2>> + <<include Art_Vector_Pussy_Piercing_Heavy>> + <</if>> + + <<if _artSlave.clitPiercing == 1>> + <<include Art_Vector_Clit_Piercing>> + <<elseif _artSlave.clitPiercing == 2>> + <<include Art_Vector_Clit_Piercing_Heavy>> + <<elseif _artSlave.clitPiercing == 3>> + <<include Art_Vector_Clit_Piercing_Smart>> + <</if>> +<</if>> diff --git a/src/art/vector/Set_Colour_Hair.tw b/src/art/vector/Set_Colour_Hair.tw new file mode 100644 index 0000000000000000000000000000000000000000..888f76d17f24964b02246805383694b7bc160ce8 --- /dev/null +++ b/src/art/vector/Set_Colour_Hair.tw @@ -0,0 +1,52 @@ +:: Art_Vector_Set_Colour_Hair_ [nobr] + +/* +"Free-Cities Dyes (taken from Cosmetic Rules Assistant Settings)"- +to-"HTML Color"-Map +courtesy of Nov-X */ + +<<switch _artSlave.hColor>> +<<case "auburn">> + <<set _hairColour to "#7e543e">> +<<case "black">> + <<set _hairColour to "#3F4040">> +<<case "blonde">> + <<set _hairColour to "#F4F1A3">> +<<case "blue">> + <<set _hairColour to "#4685C5">> +<<case "brown">> + <<set _hairColour to "#8D4F21">> +<<case "burgundy">> + <<set _hairColour to "#5f3946">> +<<case "chestnut">> + <<set _hairColour to "#663622">> +<<case "chocolate">> + <<set _hairColour to "#6e4937">> +<<case "copper">> + <<set _hairColour to "#a16145">> +<<case "dark brown">> + <<set _hairColour to "#463325">> +<<case "ginger">> + <<set _hairColour to "#da822d">> +<<case "golden">> + <<set _hairColour to "#ffdf31">> +<<case "green">> + <<set _hairColour to "#5FBA46">> +<<case "grey">> + <<set _hairColour to "#9e9fa4">> +<<case "hazel">> + <<set _hairColour to "#8d6f1f">> +<<case "pink">> + <<set _hairColour to "#D18CBC">> +<<case "platinum blonde">> + <<set _hairColour to "#fcf3c1">> +<<case "red">> + <<set _hairColour to "#BB2027">> +<<case "silver">> + <<set _hairColour to "#cdc9c6">> +<<case "strawberry-blonde">> + <<set _hairColour to "#e5a88c">> +<<default>> + /* everything else: assume it already is HTML compliant color name or value */ + <<set _hairColour to _artSlave.hColor>> +<</switch>> diff --git a/src/art/vector/Set_Colour_Shoe.tw b/src/art/vector/Set_Colour_Shoe.tw new file mode 100644 index 0000000000000000000000000000000000000000..37a1dc993d905583ec473b1ec0402a3e4d024124 --- /dev/null +++ b/src/art/vector/Set_Colour_Shoe.tw @@ -0,0 +1,27 @@ +:: Art_Vector_Set_Colour_Shoe_ [nobr] + +/* courtesy of Nov-X */ + +/* note: only heels use this shadow */ +<<set _shoeShadowColour to "#15406D">> + +<<switch _artSlave.shoes>> + <<case "heels" "extreme heels">> + <<set _shoeColour to "#3E65B0">> + <<case "boots">> + <<set _shoeColour to "#8F8F8E">> + <<case "flats">> + <<set _shoeColour to "#65AD45">> + <<case "pumps">> + <<set _shoeColour to "#4F6AB2">> + <<default>> + /* use heel colour by default */ + <<set _shoeColour to "#3E65B0">> +<</switch>> + +/* override colour in case of full body latex outfit */ +<<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" >> + <<set _shoeColour to "#515351">> + <<set _shoeShadowColour to "#313331">> +<</if>> + diff --git a/src/art/vector/Set_Colour_Skin.tw b/src/art/vector/Set_Colour_Skin.tw new file mode 100644 index 0000000000000000000000000000000000000000..69a14995d6c56c2c5f21d54d0abb879efd2cf80e --- /dev/null +++ b/src/art/vector/Set_Colour_Skin.tw @@ -0,0 +1,64 @@ +:: Art_Vector_Set_Colour_Skin_ + +<<set _areolaColour to "#d76b93" >> /* this is the default and can be customized later */ +<<set _labiaColour to "#d76b93" >> /* this is the default and can be customized later */ + +<<switch _artSlave.skin>> +<<case "light" "white" "fair" "lightened" >> + <<set _skinColour to "#F6E0E8">> +<<case "extremely pale">> + <<set _skinColour to "#f4eaf0">> +<<case "pale">> + <<set _skinColour to "#f9ebf0">> +<<case "tanned">> + <<set _skinColour to "#F4C7A5">> +<<case "olive">> + <<set _skinColour to "#a07c48">> +<<case "light brown" "dark">> + <<set _skinColour to "#C97631">> + /* darker areolae and labia for more contrast to skin */ + <<set _areolaColour to "#ba3549" >> + <<set _labiaColour to "#ba3549" >> +<<case "brown" >> + <<set _skinColour to "#763818">> +<<case "black">> + <<set _skinColour to "#3f3b3a">> +<<default>> + <<set _skinColour to _artSlave.skin>> +<</switch>> + +/* set skin colour of specific body parts to match the main colour */ +<<set _headSkinColour to _skinColour>> +<<set _torsoSkinColour to _skinColour>> +<<set _boobSkinColour to _skinColour>> +<<set _penisSkinColour to _skinColour>> +<<set _scrotumSkinColour to _skinColour>> + +/* BEGIN SKIN COLOUR OVERRIDES FOR LATEX CLOTHING EMULATION */ + +<<if _artSlave.fuckdoll != 0>> + /* slave is a fuckdoll - display all skin as if it was black rubber */ + <<set _skinColour to "#515351">> + <<set _areolaColour to "#313331">> + <<set _headSkinColour to _skinColour>> + <<set _torsoSkinColour to _skinColour>> + <<set _penisSkinColour to _skinColour>> + <<set _scrotumSkinColour to _skinColour>> +<</if>> + +/* slave wears latex - display most skin as if it was black rubber */ +<<if _artSlave.clothes == "restrictive latex">> + <<set _skinColour to "#515351">> + /* restrictive latex coveres head */ + <<set _headSkinColour to _skinColour>> +<</if>> +<<if _artSlave.clothes == "a latex catsuit">> + <<set _skinColour to "#515351">> + /* catsuit covers areolae and privates, too */ + <<set _areolaColour to "#313331">> + <<set _boobSkinColour to _skinColour>> + <<set _penisSkinColour to _skinColour>> + <<set _scrotumSkinColour to _skinColour>> +<</if>> + +/* END SKIN COLOUR OVERRIDES FOR LATEX CLOTHING EMULATION */ diff --git a/src/art/vector/Torso.tw b/src/art/vector/Torso.tw new file mode 100644 index 0000000000000000000000000000000000000000..a2d884a3ac3a5b449ccc9ce9964593b0d787bf8a --- /dev/null +++ b/src/art/vector/Torso.tw @@ -0,0 +1,24 @@ +:: Art_Vector_Torso_ [nobr] + +/* Torso size switch courtesy of Nov-X */ + +/* BEWARE: _torsoSize might be used in torso outfit */ + +<<if _artSlave.waist < -40>> + <<if _artSlave.weight <= 30>> + <<set _torsoSize = "Hourglass">> + <<else>> + <<set _torsoSize = "Unnatural">> + <</if>> +<<elseif _artSlave.waist <= 10>> + <<if _artSlave.weight <= 30>> + <<set _torsoSize = "Normal">> + <<else>> + <<set _torsoSize = "Hourglass">> + <</if>> +<<else>> + <<set _torsoSize = "Normal">> +<</if>> + +<<set _art = "Art_Vector_Torso_"+_torsoSize >> +<<include _art >> diff --git a/src/art/vector/Torso_Outfit.tw b/src/art/vector/Torso_Outfit.tw new file mode 100644 index 0000000000000000000000000000000000000000..ca19efb2713cff060fd7615ba678393365ac5e73 --- /dev/null +++ b/src/art/vector/Torso_Outfit.tw @@ -0,0 +1,36 @@ +:: Art_Vector_Torso_Outfit_ [nobr] + +/* BEWARE: _torsoSize is set by Art_Vector_Torso_ */ + +/* TODO: latex catsuit should cover vagina and its piercings, too */ + +<<set _art = false >> + +<<switch _artSlave.clothes>> + <<case "restrictive latex" "a latex catsuit">> + <<set _art = "Art_Vector_Torso_Outfit_Latex_" >> + <<case "uncomfortable straps">> + <<set _art = "Art_Vector_Torso_Outfit_Straps_" >> + <<default>> + /* do nothing */ +<</switch>> + +<<if _art >> + <<set _art = _art+_torsoSize >> + <<include _art >> +<</if>> + +/* shiny clothings */ +<<if $seeVectorArtHighlights == 1>> + <<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" || _artSlave.clothes == "a latex catsuit">> + <<if _artSlave.amp != 0>> + /* this shiny shoulder only looks sensible on amputees */ + <<include Art_Vector_Torso_Outfit_Shine_Shoulder>> + <</if>> + <<if _artSlave.preg <= 0>> + /* the hip can be hidden by pregnant belly */ + <<set _art = "Art_Vector_Torso_Outfit_Shine_"+_torsoSize >> + <<include _art >> + <</if>> + <</if>> +<</if>> diff --git a/src/art/vector/layers/Arm_Left_High.tw b/src/art/vector/layers/Arm_Left_High.tw new file mode 100644 index 0000000000000000000000000000000000000000..0b09b03a9088193a1bf9e0781d8c07720e36f119 --- /dev/null +++ b/src/art/vector/layers/Arm_Left_High.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Arm_Left_High [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 359.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 C 323,69.600003 357.6,87.000003 374.9,99.600003 389.7,100.8 486.3,157.4 482.3,170.9 c -6.1,20.6 -84.8,65.8 -114.7,81.4 -49.9,-6.5 -28.8,-47.8 -7.9,-44.3" class="skin" id="L_2_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Arm_Left_Low.tw b/src/art/vector/layers/Arm_Left_Low.tw new file mode 100644 index 0000000000000000000000000000000000000000..08d5eaa2ad57e3f020a5d9245776ac1f99de8aa4 --- /dev/null +++ b/src/art/vector/layers/Arm_Left_Low.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Arm_Left_Low [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 353.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" class="skin" id="L"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Arm_Left_Mid.tw b/src/art/vector/layers/Arm_Left_Mid.tw new file mode 100644 index 0000000000000000000000000000000000000000..d6242ed16a1bfbdc085a152c445717aca1ee8881 --- /dev/null +++ b/src/art/vector/layers/Arm_Left_Mid.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Arm_Left_Mid [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 358.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="skin" id="L_1_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Arm_Left_Rebel.tw b/src/art/vector/layers/Arm_Left_Rebel.tw new file mode 100644 index 0000000000000000000000000000000000000000..6fc2d8b79fe351cf2d5d973199ce8b07a71c3172 --- /dev/null +++ b/src/art/vector/layers/Arm_Left_Rebel.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Arm_Left_Rebel [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 361.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="skin" id="path4819"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Arm_Left_Thumb_Down.tw b/src/art/vector/layers/Arm_Left_Thumb_Down.tw new file mode 100644 index 0000000000000000000000000000000000000000..52577ccde6e7a43dc5efa6f51909c3d997ea1c32 --- /dev/null +++ b/src/art/vector/layers/Arm_Left_Thumb_Down.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Arm_Left_Thumb_Down [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 354.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="skin" id="path4821"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Arm_Outfit_Shine_Left_High.tw b/src/art/vector/layers/Arm_Outfit_Shine_Left_High.tw new file mode 100644 index 0000000000000000000000000000000000000000..cedbf4379505b400d8456326fe0d3f3272ff70ac --- /dev/null +++ b/src/art/vector/layers/Arm_Outfit_Shine_Left_High.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Arm_Outfit_Shine_Left_High [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-2-5-4" d="m 380.71117,425.16475 c 3.53112,-0.37044 11.7217,0.95461 16.11076,3.18148 -4.86389,0.59191 -12.58152,-0.002 -16.11076,-3.18148 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" transform="matrix(0.99928736,-0.03774624,0.03774624,0.99928736,-42.455139,-199.84867)"/><path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;filter:url(#Filter_Shine_Blur)" d="m 378.92676,103.22266 c 33.64855,15.07351 69.22703,39.76495 95.24999,58.64843 -24.87208,-20.52259 -60.52917,-45.29589 -95.24999,-58.64843 z" id="path4904" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Arm_Outfit_Shine_Left_Low.tw b/src/art/vector/layers/Arm_Outfit_Shine_Left_Low.tw new file mode 100644 index 0000000000000000000000000000000000000000..954e2a7d1b2251957cf7afecf1ae66ba693bccd7 --- /dev/null +++ b/src/art/vector/layers/Arm_Outfit_Shine_Left_Low.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Arm_Outfit_Shine_Left_Low [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-2-5-4-6" d="m 379.20126,418.93983 c 7.4576,0.75752 14.50753,4.17733 19.21496,10.05528 -7.42067,-3.7385 -13.39796,-7.77943 -19.21496,-10.05528 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" transform="matrix(0.99928736,-0.03774624,0.03774624,0.99928736,-37.879743,-190.59389)"/><path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;filter:url(#Filter_Shine_Blur)" d="m 404.71387,303.29199 c -4.31551,-23.61668 -8.5779,-42.59562 -17.05273,-62.39258 6.54404,20.34381 10.78573,39.21396 17.05273,62.39258 z" id="path4906" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Arm_Outfit_Shine_Left_Mid.tw b/src/art/vector/layers/Arm_Outfit_Shine_Left_Mid.tw new file mode 100644 index 0000000000000000000000000000000000000000..637cec4b3f6c1c7900fa701ec2b274a1bfdae48c --- /dev/null +++ b/src/art/vector/layers/Arm_Outfit_Shine_Left_Mid.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Arm_Outfit_Shine_Left_Mid [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;filter:url(#Filter_Shine_Blur)" d="m 382.25391,230.08594 c 4.97311,17.05319 13.32815,36.98205 21.21288,85.26855 -5.92532,-48.71766 -14.3838,-68.97024 -21.21288,-85.26855 z" id="path4909" sodipodi:nodetypes="ccc"/><path sodipodi:nodetypes="ccc" id="path4027-2-5-4-3" d="m 361.54149,215.43549 c 3.52608,0.41561 11.22437,3.5104 15.01588,6.64845 -4.87493,-0.49283 -12.27273,-2.77034 -15.01588,-6.64845 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Arm_Right_High.tw b/src/art/vector/layers/Arm_Right_High.tw new file mode 100644 index 0000000000000000000000000000000000000000..5b1e2b59d37c2b8eac66df6f447e74c77379d8bd --- /dev/null +++ b/src/art/vector/layers/Arm_Right_High.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Arm_Right_High [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 281.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="skin" id="R_2_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Arm_Right_Low.tw b/src/art/vector/layers/Arm_Right_Low.tw new file mode 100644 index 0000000000000000000000000000000000000000..5c83919f1544e66a931074979ab2eeb354b51055 --- /dev/null +++ b/src/art/vector/layers/Arm_Right_Low.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Arm_Right_Low [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 266.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="skin" id="R"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Arm_Right_Mid.tw b/src/art/vector/layers/Arm_Right_Mid.tw new file mode 100644 index 0000000000000000000000000000000000000000..dab00cb4b4c9bcad53c4c7e225c1ec656fd0940f --- /dev/null +++ b/src/art/vector/layers/Arm_Right_Mid.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Arm_Right_Mid [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 267.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" class="skin" id="R_1_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Balls_0.tw b/src/art/vector/layers/Balls_0.tw new file mode 100644 index 0000000000000000000000000000000000000000..b42241ef4a5f7e7659653184b41ca96da5e021e9 --- /dev/null +++ b/src/art/vector/layers/Balls_0.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Balls_0 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 252.8,446.8 c 0.7,2 1.6,2.3 2.3,2.5 1.4,0.4 2.2,-0.1 4.6,0.6 1.1,0.4 1.8,1.2 3.6,1.2 0.4,0 2.9,0.4 5,-1.5 1.3,-1.2 1.2,-3 1.2,-5.7 0,-2 -0.4,-3.3 -0.7,-4.1 -0.5,-1.3 -0.8,-2.1 -1.5,-2.6 -1.7,-1.1 -4.2,0.1 -5.5,0.7 -1.4,0.7 -3.1,-0.2 -4.7,1.3 -2.6,2.1 -5.2,5.2 -4.3,7.6 z" class="shadow" id="XMLID_876_"/><path d="m 252.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="skin scrotum" id="XMLID_877_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Balls_1.tw b/src/art/vector/layers/Balls_1.tw new file mode 100644 index 0000000000000000000000000000000000000000..ca6f021f5c87250aa7de23e19d94e4ea59ab14aa --- /dev/null +++ b/src/art/vector/layers/Balls_1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Balls_1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 243.7,452.6 c 1.2,3.4 2.8,3.9 3.9,4.3 2.5,0.7 3.8,-0.3 7.9,1.1 1.9,0.5 3.1,2.1 6.3,2.1 0.6,0 5,0.8 8.5,-2.7 2.2,-2.2 2.1,-5.3 2,-9.9 -0.1,-3.4 -0.8,-5.7 -1.2,-7 -0.9,-2.3 -1.3,-3.6 -2.7,-4.5 -2.9,-1.9 -7.3,0.2 -9.5,1.2 -2.4,1.2 -4.7,-0.7 -7.5,1.8 -4,3.8 -9.1,9.6 -7.7,13.6 z" class="shadow" id="XMLID_874_"/><path d="m 243.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="skin scrotum" id="XMLID_875_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Balls_2.tw b/src/art/vector/layers/Balls_2.tw new file mode 100644 index 0000000000000000000000000000000000000000..095f4d9646375f667d244b63f97c6c0a98e465d5 --- /dev/null +++ b/src/art/vector/layers/Balls_2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Balls_2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 236.7,459.4 c 2,5.2 4.4,6.1 6.1,6.7 3.9,1.2 6,-0.4 12.4,1.6 2.9,0.9 4.9,3.3 9.8,3.3 0.9,0 7.8,1.3 13.3,-4.1 3.5,-3.4 3.3,-8.3 3.2,-15.5 -0.1,-5.3 -1.2,-8.9 -2,-10.9 -1.3,-3.6 -2.1,-5.8 -4.2,-7.1 -4.5,-2.9 -11.4,0.3 -14.8,2 -3.7,1.8 -6.8,-0.8 -11.2,3.2 -6.3,5.8 -14.9,14.5 -12.6,20.8 z" class="shadow" id="XMLID_872_"/><path d="m 236.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="skin scrotum" id="XMLID_873_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Balls_3.tw b/src/art/vector/layers/Balls_3.tw new file mode 100644 index 0000000000000000000000000000000000000000..74b3e7b13f15f63e686c06e9c7c6e5e1cdfe9e11 --- /dev/null +++ b/src/art/vector/layers/Balls_3.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Balls_3 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 229.9,468.6 c 2.5,6.8 5.7,8 8,8.7 5.1,1.5 7.8,-0.5 16.1,2.1 3.8,1.2 6.4,4.3 12.7,4.3 1.2,0 10.2,1.7 17.4,-5.3 4.5,-4.4 4.3,-10.8 4.2,-20.2 -0.1,-7 -1.5,-11.6 -2.5,-14.3 -1.7,-4.8 -2.8,-7.5 -5.4,-9.3 -5.9,-3.8 -14.8,0.3 -19.4,2.5 -4.9,2.3 -8.9,-1 -14.6,4.2 -8.3,7.7 -19.5,19 -16.5,27.3 z" class="shadow" id="XMLID_870_"/><path d="m 229.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="skin scrotum" id="XMLID_871_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Balls_4.tw b/src/art/vector/layers/Balls_4.tw new file mode 100644 index 0000000000000000000000000000000000000000..efb6ce02267bddd41062e988c2c901c6477adafc --- /dev/null +++ b/src/art/vector/layers/Balls_4.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Balls_4 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 221.1,480.5 c 3.3,8.9 7.4,10.4 10.4,11.3 6.6,2 10.1,-0.6 21,2.7 5,1.5 8.3,5.6 16.6,5.6 1.5,0 13.3,2.3 22.7,-7 5.9,-5.7 5.6,-14.1 5.4,-26.3 -0.2,-9.1 -2,-15.1 -3.3,-18.6 -2.3,-6.2 -3.6,-9.8 -7.1,-12.1 -7.7,-5 -19.3,0.5 -25.2,3.3 -6.3,3 -11.6,-1.4 -19,5.4 -10.8,10.2 -25.4,25 -21.5,35.7 z" class="shadow" id="XMLID_868_"/><path d="m 221.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="skin scrotum" id="XMLID_869_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Belly.tw b/src/art/vector/layers/Belly.tw new file mode 100644 index 0000000000000000000000000000000000000000..d15835c827aa6c346bcf8c67e7e5bfdb98b42375 --- /dev/null +++ b/src/art/vector/layers/Belly.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Belly [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 274.8,433.8 c 20.7,-1.5 47.7,-4.5 61.9,-42.4 13.1,-44.3 -27.8,-99.6 -59.9,-101.5 -40.1,6.2 -61.8,42.8 -63.9,96.9 2.2,31 33.1,49 61.9,47 z" class="shadow" id="XMLID_543_"/><path d="m 274.8,433.8 c 20.8,0.1 49.4,-13 61.9,-42.4 12.5,-29.4 -18.5,-83.4 -46,-101.7 -6.5,-4.3 -38.7,-8.2 -40.4,0 -2.6,11.6 -44.9,33.3 -41.4,96.8 1.8,34.8 45.1,47.2 65.9,47.3 z" class="skin" id="XMLID_544_"/><path class="areola" d="m 249.83484,395.7339 a 3.0999447,2.7999501 78.497917 0 1 -2.12558,3.59601 3.0999447,2.7999501 78.497917 0 1 -3.36186,-2.47937 3.0999447,2.7999501 78.497917 0 1 2.12558,-3.59601 3.0999447,2.7999501 78.497917 0 1 3.36186,2.47937 z" id="XMLID_545_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Belly_Outfit_Shine.tw b/src/art/vector/layers/Belly_Outfit_Shine.tw new file mode 100644 index 0000000000000000000000000000000000000000..66d9681088fa7c7b3628527270b8b5861a00d938 --- /dev/null +++ b/src/art/vector/layers/Belly_Outfit_Shine.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Belly_Outfit_Shine [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-9" d="m 290.74565,341.76682 c 5.2665,4.35178 5.56841,11.52129 5.82323,18.71753 -2.56499,-6.10053 -4.50607,-12.3397 -5.82323,-18.71753 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1.12775385;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" transform="matrix(2.806394,-0.28790498,0.2559876,2.4952748,-620.76047,-450.58168)"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Belly_Piercing.tw b/src/art/vector/layers/Belly_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..d23c3930b4f00997c599ae0a7e13390da060ac80 --- /dev/null +++ b/src/art/vector/layers/Belly_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Belly_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle id="XMLID_547_" class="steel_piercing" cx="246.89999" cy="390.89999" r="1.2"/><circle id="XMLID_548_" class="steel_piercing" cx="246.89999" cy="395" r="1.2"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Belly_Piercing_Heavy.tw b/src/art/vector/layers/Belly_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..a875932084d1ef106a0a20141dc59b0c01afa899 --- /dev/null +++ b/src/art/vector/layers/Belly_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Belly_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 247,396.1 c -0.2,0 -1.6,2.1 -1.5,11.7 0.1,12.7 1.5,13.2 1.7,13.2 0.4,0 1.5,-7.4 1.2,-15.9 -0.4,-4.6 -1.1,-9.1 -1.4,-9 z" class="steel_piercing" id="XMLID_549_"/><path d="m 247.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="steel_piercing" id="XMLID_550_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Boob.tw b/src/art/vector/layers/Boob.tw new file mode 100644 index 0000000000000000000000000000000000000000..17fef93f5bb78640a9b964580328b92246bd2659 --- /dev/null +++ b/src/art/vector/layers/Boob.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Boob [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g4372_" class="scaler_"><path d="M 289.6,219.8 C 275,219.7 246,243.1 238.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" class="shadow" id="XMLID_587_"/><path d="m 291.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="skin boob" id="XMLID_588_"/><path d="m 277.1,261.4 c 0.5,-4 4.2,-9.7 14.1,-20.8 -6.7,10 -12.5,14.7 -14.1,20.8 z" class="shadow" id="XMLID_589_"/><path d="m 275.2,264 c 1.2,-3.4 0.7,-9.4 -2.6,-22.2 1.3,10.7 3.9,16.7 2.6,22.2 z" class="shadow" id="XMLID_590_"/><path d="m 320.85219,245.47089 c 1.72217,0.66886 12.69,8.8672 10.34828,24.69208 0.7,-12.1 -5.68063,-20.18326 -10.34828,-24.69208 z" class="shadow" id="XMLID_591_" sodipodi:nodetypes="ccc"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Boob_Areola.tw b/src/art/vector/layers/Boob_Areola.tw new file mode 100644 index 0000000000000000000000000000000000000000..93624cab41fb656e03e6ff66e85fca384c8a4cf7 --- /dev/null +++ b/src/art/vector/layers/Boob_Areola.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Boob_Areola [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g4371"><path id="XMLID_592_" class="areola" d="m 232.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"/><path id="XMLID_593_" d="m 295.53296,285.16067 a 6.1000179,4.9000146 86.283549 0 1 -5.28511,-5.76958 6.1000179,4.9000146 86.283549 0 1 4.49431,-6.4048 6.1000179,4.9000146 86.283549 0 1 5.28511,5.76958 6.1000179,4.9000146 86.283549 0 1 -4.49431,6.4048 z" class="areola"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Boob_Areola_Piercing.tw b/src/art/vector/layers/Boob_Areola_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..0e1c2f7c3cf4c4cc789e818bdb1bd3ea9094eb3b --- /dev/null +++ b/src/art/vector/layers/Boob_Areola_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Boob_Areola_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g4840"><circle id="XMLID_594_" class="steel_piercing" cx="300.90002" cy="276.89999" r="1.1"/><circle id="XMLID_595_" class="steel_piercing" cx="301.20001" cy="280" r="1.1"/><circle id="XMLID_596_" class="steel_piercing" cx="296" cy="271.70001" r="1.1"/><circle id="XMLID_597_" class="steel_piercing" cx="292.90002" cy="272.10001" r="1.1"/><circle id="XMLID_598_" class="steel_piercing" cx="297.09998" cy="286.5" r="1.1"/><circle id="XMLID_599_" class="steel_piercing" cx="294" cy="286.5" r="1.1"/><circle id="XMLID_600_" class="steel_piercing" cx="289.39999" cy="281" r="1.1"/><circle id="XMLID_601_" class="steel_piercing" cx="289.39999" cy="278.39999" r="1.1"/><ellipse id="XMLID_602_" class="steel_piercing" cx="231.70001" cy="271.29999" rx="0.5" ry="0.69999999"/><ellipse id="XMLID_603_" class="steel_piercing" cx="232.89999" cy="270.79999" rx="0.5" ry="0.69999999"/><ellipse id="XMLID_604_" class="steel_piercing" cx="230.79999" cy="277.60001" rx="0.5" ry="0.69999999"/><ellipse id="XMLID_605_" transform="matrix(-0.99887366,-0.04744902,0.04744902,-0.99887366,0,0)" class="steel_piercing" cx="-243.19984" cy="-264.50143" rx="0.50001317" ry="0.70001847"/><ellipse id="XMLID_606_" class="steel_piercing" cx="236.5" cy="274.29999" rx="0.5" ry="0.69999999"/><ellipse id="XMLID_607_" class="steel_piercing" cx="237.20001" cy="276.20001" rx="0.5" ry="0.69999999"/><ellipse id="XMLID_608_" transform="matrix(-0.94129085,0.33759672,-0.33759672,-0.94129085,0,0)" class="steel_piercing" cx="-126.09213" cy="-344.06375" rx="0.50000489" ry="0.70000678"/><ellipse id="XMLID_609_" transform="matrix(-0.94253343,0.33411185,-0.33411185,-0.94253343,0,0)" class="steel_piercing" cx="-128.68057" cy="-343.45691" rx="0.49998227" ry="0.69997513"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Boob_Outfit_Shine.tw b/src/art/vector/layers/Boob_Outfit_Shine.tw new file mode 100644 index 0000000000000000000000000000000000000000..e676171336c477b4428895f69e7f9bcd7a28c151 --- /dev/null +++ b/src/art/vector/layers/Boob_Outfit_Shine.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Boob_Outfit_Shine [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><g transform="'+_art_transform+'"id="g4947"><path sodipodi:nodetypes="ccc" id="path4027" d="m 317.36614,253.79442 c 5.2665,4.35178 5.56841,11.52129 5.82323,18.71753 -2.56499,-6.10053 -4.50607,-12.3397 -5.82323,-18.71753 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)"/><path sodipodi:nodetypes="ccc" id="path4027-7" d="m 263.42077,249.35087 c 4.56552,5.08232 3.80454,12.21772 2.99303,19.3726 -1.63523,-6.41262 -2.63291,-12.87015 -2.99303,-19.3726 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Boob_Outfit_Straps.tw b/src/art/vector/layers/Boob_Outfit_Straps.tw new file mode 100644 index 0000000000000000000000000000000000000000..e5e1df8cb0756fffc63295853a19953352137e2e --- /dev/null +++ b/src/art/vector/layers/Boob_Outfit_Straps.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Boob_Outfit_Straps [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g4831"><path sodipodi:nodetypes="cc" id="path7375" d="m 291.19993,215.6 c -13.848,19.98 -56.345,29.858 -58.527,55.64" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path sodipodi:nodetypes="cc" id="path7377" d="m 295.84393,272.368 c 3.105,-21.674 -4.672,-36.094 -4.644,-56.768" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path sodipodi:nodetypes="cc" id="path7381" d="m 294.35293,285.57 c -0.49,5.165 4.761,11.248 7.132,12.531" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path sodipodi:nodetypes="cc" id="path7385" d="m 289.28893,278.981 c -6.269,0.071 -8.181,-0.453 -14.047,-0.55" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path sodipodi:nodetypes="cc" id="path7387" d="m 235.76793,276.097 c 10.595,1.3 28.756,3.613 39.574,2.234" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path id="path4840" d="m 291.19993,215.6 c -9.469,17.301 -14.902,39.356 -15.789,62.932" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path sodipodi:nodetypes="ccccc" d="m 291.19993,215.6 c 3.581,19.869 43.236,32.441 40.042,51.745 -1.775,15.389 -7.922,30.162 -29.971,30.922 l -49.35,-6.527 c -9.814,-0.592 -17.945,-6.029 -18.429,-11.416" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9222-3"/><path id="path4826" d="m 300.10193,279.565 c 10.602,-0.08 24.671,-7.943 31.14,-12.22" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path sodipodi:nodetypes="ccccc" id="path7391" style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" d="m 232.34993,271.436 c 1.654,-0.279 2.939,2.207 3.228,3.859 0.309,1.761 -0.115,4.724 -1.877,5.026 -1.692,0.289 -3.121,-2.175 -3.4,-3.868 -0.293,-1.783 0.268,-4.716 2.049,-5.017 z"/><path sodipodi:nodetypes="aaaaa" id="path7393" d="m 295.33393,285.383 c -2.6936,0.1642 -5.2018,-3.3684 -5.366,-6.062 -0.16152,-2.64961 1.86539,-6.39848 4.515,-6.56 2.6936,-0.1642 5.2018,3.3684 5.366,6.062 0.16152,2.64961 -1.86539,6.39848 -4.515,6.56 z" style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Boob_Piercing.tw b/src/art/vector/layers/Boob_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..e5ddf7d002263b6e783868e46dd0e669944d29c6 --- /dev/null +++ b/src/art/vector/layers/Boob_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Boob_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g4871"><circle r="1" cy="279" cx="292.40002" class="steel_piercing" id="XMLID_622_"/><circle r="1" cy="279" cx="296.79999" class="steel_piercing" id="XMLID_623_"/><ellipse ry="0.80001432" rx="0.60001075" cy="-316.29102" cx="-176.88219" class="steel_piercing" transform="matrix(-0.98098244,0.19409652,-0.19409652,-0.98098244,0,0)" id="XMLID_625_"/><ellipse ry="0.80002308" rx="0.60001731" cy="-212.46971" cx="-291.39941" class="steel_piercing" transform="matrix(-0.97097202,-0.23919311,0.23919311,-0.97097202,0,0)" id="XMLID_626_"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Boob_Piercing_Heavy.tw b/src/art/vector/layers/Boob_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..42877f92b24f84ffd5147f9ef6b98f0fdf3b45a4 --- /dev/null +++ b/src/art/vector/layers/Boob_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Boob_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g4858"><path id="XMLID_610_" class="steel_piercing" d="m 292.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"/><path id="XMLID_611_" class="steel_piercing" d="m 232.1,276.1 c 0,0 -0.4,0.7 -0.4,1.7 -0.1,0.9 0.3,2 0.9,2.4 0.9,0.5 2,-0.7 2.3,-1.9 0.3,-1.1 -0.1,-2 0,-2.1 0.1,-0.1 0.6,1.2 0.5,2.4 -0.2,1.4 -1.3,3 -2.6,2.8 -0.9,-0.2 -1.8,-1.4 -1.7,-2.9 0.1,-1.4 1,-2.4 1,-2.4 z"/><path id="XMLID_612_" class="steel_piercing" d="m 233.1,281.5 c 0.1,-0.1 11.3,16.2 28.4,17.6 18.3,1.4 32.9,-14.9 33.1,-14.8 0.2,0.2 -13.4,17.1 -32.5,15.7 -18.4,-1.3 -29.1,-18.4 -29,-18.5 z"/><circle id="XMLID_613_" class="steel_piercing" cx="292.40002" cy="279" r="1"/><circle id="XMLID_614_" class="steel_piercing" cx="296.79999" cy="279" r="1"/><circle id="XMLID_615_" class="steel_piercing" cx="294.59998" cy="276.20001" r="1"/><circle id="XMLID_616_" class="steel_piercing" cx="295" cy="281.20001" r="1"/><ellipse id="XMLID_617_" transform="matrix(-0.98098244,0.19409652,-0.19409652,-0.98098244,0,0)" class="steel_piercing" cx="-176.88219" cy="-316.29102" rx="0.60001075" ry="0.80001432"/><ellipse id="XMLID_618_" transform="matrix(-0.97097202,-0.23919311,0.23919311,-0.97097202,0,0)" class="steel_piercing" cx="-291.39941" cy="-212.46971" rx="0.60001731" ry="0.80002308"/><ellipse id="XMLID_619_" transform="matrix(-0.20549138,-0.97865893,0.97865893,-0.20549138,0,0)" class="steel_piercing" cx="-316.24258" cy="171.43146" rx="0.60002518" ry="0.50002098"/><ellipse id="XMLID_620_" transform="matrix(0.08246039,0.99659434,-0.99659434,0.08246039,0,0)" class="steel_piercing" cx="296.42557" cy="-209.89244" rx="0.60000342" ry="0.50000286"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Butt_0.tw b/src/art/vector/layers/Butt_0.tw new file mode 100644 index 0000000000000000000000000000000000000000..f4cd9f80f70782391a036417bb4c702a6cc6d546 --- /dev/null +++ b/src/art/vector/layers/Butt_0.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Butt_0 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 335.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" class="skin" id="path54"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Butt_1.tw b/src/art/vector/layers/Butt_1.tw new file mode 100644 index 0000000000000000000000000000000000000000..d80da26476cebe271b31dc955c4aedf4528bbe8b --- /dev/null +++ b/src/art/vector/layers/Butt_1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Butt_1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 327.3,389.8 c 1.7,-0.5 6.3,2.7 15.5,9 4.2,2.9 9.2,7.9 21.1,16.9 8.7,6.6 15.4,11.6 20.6,19.1 0,0 13.7,19.8 6.6,48.5 -0.6,2.7 -1.5,5.2 -1.5,5.2 -1.2,3.6 -2.9,6.4 -5.9,12.7 -4.4,9.3 -4.7,11.3 -6.4,14.7 -4.4,8.9 -8.5,11.2 -15.6,19.8 -4.1,5 -6.9,9.3 -9,12.9 -5.5,9.6 -6,11.3 -7,11.4 -9.9,0.8 -36.6,-165.3 -18.4,-170.2 z" class="skin" id="path51"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Butt_2.tw b/src/art/vector/layers/Butt_2.tw new file mode 100644 index 0000000000000000000000000000000000000000..a066baa856058e31bf1ac3dcadea93c6fa2fcd3a --- /dev/null +++ b/src/art/vector/layers/Butt_2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Butt_2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 328,389.8 c 1.9,-0.5 7,2.9 17.2,9.8 4.7,3.1 10.2,8.6 23.4,18.3 9.7,7.1 17,12.5 22.9,20.7 0,0 15.2,21.5 7.3,52.6 -0.7,2.9 -1.7,5.7 -1.7,5.7 -1.4,3.9 -3.3,6.9 -6.5,13.8 -4.8,10.1 -5.2,12.2 -7.1,15.9 -4.9,9.6 -9.5,12.1 -17.3,21.5 -4.6,5.4 -7.7,10.1 -9.9,14 -6.1,10.4 -6.6,12.3 -7.8,12.4 -11.1,0.8 -40.7,-179.4 -20.5,-184.7 z" class="skin" id="path48"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Butt_3.tw b/src/art/vector/layers/Butt_3.tw new file mode 100644 index 0000000000000000000000000000000000000000..e0a03a9d610965c1a837719522917681369a936a --- /dev/null +++ b/src/art/vector/layers/Butt_3.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Butt_3 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 328.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="skin" id="path45"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Butt_Outfit_Shine_0.tw b/src/art/vector/layers/Butt_Outfit_Shine_0.tw new file mode 100644 index 0000000000000000000000000000000000000000..044bcdc79bdac4c5bdb8ac55a37f92f7fd8860f0 --- /dev/null +++ b/src/art/vector/layers/Butt_Outfit_Shine_0.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Butt_Outfit_Shine_0 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-2-5-2" d="m 374.32263,419.48846 c 9.3676,8.5745 20.75845,16.21829 24.99431,40.75881 -5.80029,-17.86523 -20.76554,-35.0049 -24.99431,-40.75881 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" transform="matrix(0.96251573,0.27122589,-0.27122589,0.96251573,109.72954,-84.004665)"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Butt_Outfit_Shine_1.tw b/src/art/vector/layers/Butt_Outfit_Shine_1.tw new file mode 100644 index 0000000000000000000000000000000000000000..ccc6639bdbfb55544c6a791c949c0cfc13130327 --- /dev/null +++ b/src/art/vector/layers/Butt_Outfit_Shine_1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Butt_Outfit_Shine_1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-2-5-3" d="m 369.14719,420.64127 c 12.0312,9.35178 25.93389,15.06548 30.16975,39.606 -5.80029,-17.86523 -25.94098,-33.85209 -30.16975,-39.606 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" transform="matrix(0.99928736,-0.03774624,0.03774624,0.99928736,-30.670201,9.8258533)"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Butt_Outfit_Shine_2.tw b/src/art/vector/layers/Butt_Outfit_Shine_2.tw new file mode 100644 index 0000000000000000000000000000000000000000..315fd942861741c2456acae4379330cf3b9af60a --- /dev/null +++ b/src/art/vector/layers/Butt_Outfit_Shine_2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Butt_Outfit_Shine_2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-2-5" d="m 369.14719,420.64127 c 12.0312,9.35178 25.93389,15.06548 30.16975,39.606 -5.80029,-17.86523 -25.94098,-33.85209 -30.16975,-39.606 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" transform="matrix(0.99928736,-0.03774624,0.03774624,0.99928736,-22.351298,14.817195)"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Butt_Outfit_Shine_3.tw b/src/art/vector/layers/Butt_Outfit_Shine_3.tw new file mode 100644 index 0000000000000000000000000000000000000000..b4115379bc92e6b0986409bd971c46d2d339f66d --- /dev/null +++ b/src/art/vector/layers/Butt_Outfit_Shine_3.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Butt_Outfit_Shine_3 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-2" d="m 369.14719,420.64127 c 12.0312,9.35178 25.93389,15.06548 30.16975,39.606 -5.80029,-17.86523 -25.94098,-33.85209 -30.16975,-39.606 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" transform="matrix(0.99729094,-0.07355799,0.07355799,0.99729094,-31.357293,29.456529)"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Chastity_Anus.tw b/src/art/vector/layers/Chastity_Anus.tw new file mode 100644 index 0000000000000000000000000000000000000000..3cae5d27d6f7dd3995ae0d802f78449e857a1aae --- /dev/null +++ b/src/art/vector/layers/Chastity_Anus.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Chastity_Anus [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 246,405.8 c 6.6,2.1 15.9,4.3 27.1,4.5 15,0.3 26.9,-3.1 34.4,-5.9 -2.3,2 -5.9,5.1 -10.3,8.7 -6.6,5.4 -9.3,7.2 -13.9,11.2 -4.4,3.8 -8.4,7.6 -12.1,11.3 -0.1,0.2 -1.9,3 -5.3,2.9 -2.9,0 -4.6,-2.2 -4.8,-2.4 -1.5,-3.4 -3.1,-6.9 -4.8,-10.4 -3.3,-7 -6.8,-13.7 -10.3,-19.9 z" id="path5-9"/><path class="steel_chastity" d="m 244.1,404 c 7.2,2.2 16.9,4.3 28.3,4.6 15.1,0.5 27.6,-2.1 36,-4.6 -8,5.3 -16.6,11.6 -25.3,19 -4.6,3.9 -8.8,7.7 -12.7,11.5 -0.1,0.2 -2,3 -5.5,3 -3,0 -4.8,-2.2 -5,-2.5 -1.6,-3.5 -3.2,-7.1 -5,-10.7 -3.5,-7.2 -7.2,-14 -10.8,-20.3 z" id="path7-06"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Chastity_Base.tw b/src/art/vector/layers/Chastity_Base.tw new file mode 100644 index 0000000000000000000000000000000000000000..ef10ccee34c575a972ac4c2e3e4325be930155ff --- /dev/null +++ b/src/art/vector/layers/Chastity_Base.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Chastity_Base [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 236.4,400.6 c 6.8,4 16.8,8.7 29.3,10.4 10.8,1.4 18.7,-0.1 30.7,-2.5 24,-4.8 46,-14.3 46,-14.3 0,0 2.9,-0.9 4.1,4.2 1.2,5.1 -3.4,4.8 -3.4,4.8 -8.7,3.4 -16.6,6 -23.8,8.1 -4.5,1.3 -10.6,3.1 -18.9,4.8 -8.7,1.8 -16.1,3.3 -26,3.2 -3.2,0 -7.7,0 -13.2,-0.9 -6.1,-1 -15.8,-3.3 -26.9,-10.1 -2.5,-0.2 -4.1,-3 -4,-5.4 0.1,-1.2 0.7,-3.4 2.5,-3.8 1.3,-0.2 2.6,0.4 3.6,1.5 z" id="path5"/><path class="steel_chastity" d="m 235,399.2 c 2.9,1.9 6.9,4.2 11.9,6.2 0,0 7.7,3.2 16.8,4.7 11.3,1.9 40.9,-2.4 77.3,-17.3 0,0 2.9,-0.9 4.1,4.2 1.2,5.1 -3.4,4.8 -3.4,4.8 -8.7,3.4 -16.6,6 -23.8,8.1 -5.5,1.6 -11.5,3.3 -18.9,4.8 -11,2.1 -23.2,4.5 -37.7,2.3 -6.6,-1 -16.8,-3.4 -28.3,-10 -2.5,-0.2 -4.1,-3 -4,-5.4 0.1,-1.2 0.7,-3.4 2.5,-3.8 1.2,-0.2 2.5,0.3 3.5,1.4 z" id="path7-0"/><rect x="266.56778" y="396.92795" transform="matrix(0.99985995,0.01673551,-0.01673551,0.99985995,0,0)" width="10.100405" height="20.000801" id="rect9"/><rect x="266.5625" y="396.93604" transform="matrix(0.99985995,0.01673551,-0.01673551,0.99985995,0,0)" class="steel_chastity" width="9.1003647" height="19.400776" id="rect11-4"/><circle r="2.9001162" transform="matrix(0.01673551,-0.99985995,0.99985995,0.01673551,0,0)" cx="-403.1557" cy="271.13889" id="ellipse13"/><rect x="270.47305" y="402.33627" transform="matrix(0.99985995,0.01673551,-0.01673551,0.99985995,0,0)" width="1.400056" height="9.8003931" id="rect15"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Chastity_Cage_0.tw b/src/art/vector/layers/Chastity_Cage_0.tw new file mode 100644 index 0000000000000000000000000000000000000000..2169b856a18a9af47d8186526855119c4092b827 --- /dev/null +++ b/src/art/vector/layers/Chastity_Cage_0.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Chastity_Cage_0 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><ellipse id="ellipse9" ry="0.30001223" rx="1.8000734" cy="447.65076" cx="256.28809" transform="matrix(0.99995924,-0.00902905,0.00902905,0.99995924,0,0)"/><ellipse id="ellipse11" ry="0.30001223" rx="1.8000734" cy="447.75015" cx="256.28748" class="steel_chastity" transform="matrix(0.99995924,-0.00902905,0.00902905,0.99995924,0,0)"/><ellipse transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" cx="118.46316" cy="492.85052" rx="0.30001158" ry="2.3000886" id="ellipse17"/><ellipse transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" class="steel_chastity" cx="118.38692" cy="492.8288" rx="0.30001158" ry="2.3000886" id="ellipse19"/><ellipse transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" cx="38.287045" cy="505.22092" rx="0.30001268" ry="2.6001096" id="ellipse23"/><ellipse transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" class="steel_chastity" cx="38.224377" cy="505.18045" rx="0.30001268" ry="2.6001096" id="ellipse25"/><ellipse transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" cx="-200.51021" cy="466.13983" rx="0.29998401" ry="2.7998507" id="ellipse29"/><ellipse transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" class="steel_chastity" cx="-200.55437" cy="466.04401" rx="0.29998401" ry="2.699856" id="ellipse31"/><ellipse transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" cx="-391.45963" cy="326.78561" rx="0.30000064" ry="2.7000055" id="ellipse35"/><ellipse transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" class="steel_chastity" cx="-391.51733" cy="326.73807" rx="0.30000064" ry="2.6000051" id="ellipse37"/><ellipse transform="matrix(0.99997051,-0.00768017,0.00768017,0.99997051,0,0)" cx="256.80255" cy="445.19861" rx="0.30000886" ry="2.4000709" id="ellipse41"/><ellipse transform="matrix(0.99997051,-0.00768017,0.00768017,0.99997051,0,0)" class="steel_chastity" cx="256.70325" cy="445.09808" rx="0.30000886" ry="2.4000709" id="ellipse43"/><path id="path49" d="m 262.9,443.1 c -0.1,1.3 -0.8,2.3 -0.9,2.3 -0.2,0 0.2,-1.1 0.3,-2.4 0.1,-1.3 -0.1,-2.3 0.1,-2.3 0.2,0 0.7,1.1 0.5,2.4 z"/><path id="path932" d="m 262.9,443 c -0.1,1.3 -0.7,2.3 -0.9,2.3 -0.1,0 0.2,-1 0.3,-2.4 0.1,-1.3 -0.1,-2.3 0,-2.3 0.2,0.1 0.7,1.1 0.6,2.4 z" class="steel_chastity"/><path id="path57" d="m 258.2,443.2 c 0.1,1.3 0.5,2.2 0.3,2.4 -0.1,0.1 -0.8,-0.8 -1,-2.3 -0.1,-1.5 0.4,-2.8 0.6,-2.6 0.2,0 0,1.2 0.1,2.5 z"/><path id="path59" d="m 258.3,443.2 c 0.1,1.2 0.5,2.2 0.3,2.3 -0.1,0.1 -0.8,-0.8 -0.9,-2.2 -0.1,-1.5 0.4,-2.7 0.6,-2.5 0.1,0 -0.2,1.2 0,2.4 z" class="steel_chastity"/><ellipse transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" cx="163.83322" cy="480.08179" rx="0.1999971" ry="2.0999694" id="ellipse63"/><ellipse transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" class="steel_chastity" cx="163.74954" cy="479.9696" rx="0.1999971" ry="2.0999694" id="ellipse65"/><ellipse transform="matrix(0.99995924,-0.00902901,0.00902901,0.99995924,0,0)" cx="256.20892" cy="445.34915" rx="2.4000978" ry="0.30001223" id="ellipse69"/><ellipse transform="matrix(0.99995924,-0.00902901,0.00902901,0.99995924,0,0)" class="steel_chastity" cx="256.10831" cy="445.44836" rx="2.3000937" ry="0.30001223" id="ellipse71"/><path id="path73" d="M 264.5,437.4"/><ellipse transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" cx="-87.03363" cy="499.39716" rx="0.29999119" ry="2.6999207" id="ellipse77"/><ellipse transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" class="steel_chastity" cx="-87.083023" cy="499.32916" rx="0.29999119" ry="2.6999207" id="ellipse79"/><ellipse transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" cx="-308.87497" cy="404.14166" rx="0.30000198" ry="2.8000183" id="ellipse83"/><ellipse transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" class="steel_chastity" cx="-308.92102" cy="404.01642" rx="0.30000198" ry="2.7000179" id="ellipse85"/><path id="path87" d="m 267.1,431.5 c 0,0.1 -1.5,0.4 -3.2,1.6 -0.6,0.4 -1.3,0.9 -2,1.7 -0.9,1.1 -1.2,2.1 -1.3,2.4 -0.2,0.7 -0.3,1.4 -0.3,2 -0.1,0.6 -0.1,1.4 -0.1,1.4 0,0 0,0 0,0 l 0,0 c 0,0 0.1,0 0.1,0 0,0 -0.1,0 -0.2,0 -0.1,0 -0.1,-0.2 -0.1,-0.3 -0.1,-0.8 0,-1 0,-1 -0.1,-0.4 0,-0.8 0.2,-1.5 0.1,-0.4 0.2,-1 0.5,-1.8 0.2,-0.5 0.5,-1.1 1.1,-1.8 0.5,-0.5 1.3,-1.1 2.3,-1.6 1.6,-0.9 3,-1.2 3,-1.1 z"/><path id="path89" d="m 267.2,431.5 c 0,0.1 -1,0.3 -2.3,0.9 -0.2,0.1 -0.3,0.2 -0.6,0.3 -0.6,0.3 -1.9,1.1 -2.9,2.6 0,0.1 -0.2,0.3 -0.3,0.6 -1.3,2.5 -0.7,5.1 -1,5.1 -0.1,0 -0.1,-0.2 -0.2,-0.4 -0.1,-0.4 -0.4,-1.6 0.4,-4 0.1,-0.4 0.4,-1 0.7,-1.6 0.4,-0.6 0.8,-1 1.1,-1.3 0,0 0,0 0.1,-0.1 1.5,-1.4 4,-2.1 4,-2.1 0.5,0 0.9,-0.1 1,0 z" class="steel_chastity"/><path id="path91" d="M 259.8,432.5" class="steel_chastity"/><path id="path93" d="M 257.5,433.1"/><path id="path95" d="M 259.5,432.6" class="steel_chastity"/><path id="path97" d="M 258,431.7"/><ellipse transform="matrix(0.03821768,-0.99926944,0.99926944,0.03821768,0,0)" cx="-430.44489" cy="276.90726" rx="0.30000919" ry="2.5000765" id="ellipse101"/><ellipse transform="matrix(0.03821768,-0.99926944,0.99926944,0.03821768,0,0)" class="steel_chastity" cx="-430.51544" cy="276.85278" rx="0.30000919" ry="2.5000765" id="ellipse103"/><ellipse transform="matrix(0.99945509,-0.03300794,0.03300794,0.99945509,0,0)" cx="253.03467" cy="440.01093" rx="0.20000899" ry="2.0000899" id="ellipse107"/><ellipse transform="matrix(0.99945509,-0.03300794,0.03300794,0.99945509,0,0)" class="steel_chastity" cx="252.93701" cy="440.00931" rx="0.20000899" ry="2.0000899" id="ellipse109"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Chastity_Cage_1.tw b/src/art/vector/layers/Chastity_Cage_1.tw new file mode 100644 index 0000000000000000000000000000000000000000..32e5a06317dae604eb00c7b0799ff71f2890176a --- /dev/null +++ b/src/art/vector/layers/Chastity_Cage_1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Chastity_Cage_1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><ellipse id="ellipse9-6" ry="0.60002446" rx="3.3001344" cy="459.80698" cx="251.37799" transform="matrix(0.99995924,-0.00902905,0.00902905,0.99995924,0,0)"/><ellipse id="ellipse11-1" ry="0.50002038" rx="3.2001305" cy="459.90585" cx="251.27689" class="steel_chastity" transform="matrix(0.99995924,-0.00902905,0.00902905,0.99995924,0,0)"/><ellipse transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" cx="117.17141" cy="493.57233" rx="0.50001931" ry="4.3001661" id="ellipse17-9"/><ellipse transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" class="steel_chastity" cx="117.01528" cy="493.43213" rx="0.50001931" ry="4.2001619" id="ellipse19-2"/><ellipse transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" cx="35.603542" cy="505.63315" rx="0.60002536" ry="4.900207" id="ellipse23-2"/><ellipse transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" class="steel_chastity" cx="35.472363" cy="505.45859" rx="0.5000211" ry="4.8002028" id="ellipse25-3"/><ellipse transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" cx="-205.85602" cy="464.87109" rx="0.59996802" ry="5.0997276" id="ellipse29-5"/><ellipse transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" class="steel_chastity" cx="-205.95262" cy="464.69409" rx="0.49997333" ry="5.0997276" id="ellipse31-9"/><ellipse transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" cx="-398.70349" cy="322.89914" rx="0.60000128" ry="4.9000101" id="ellipse35-2"/><ellipse transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" class="steel_chastity" cx="-398.8255" cy="322.72653" rx="0.50000101" ry="4.9000101" id="ellipse37-8"/><ellipse transform="matrix(0.99997051,-0.00768017,0.00768017,0.99997051,0,0)" cx="251.82265" cy="455.56049" rx="0.60001773" ry="4.5001326" id="ellipse41-7"/><ellipse transform="matrix(0.99997051,-0.00768017,0.00768017,0.99997051,0,0)" class="steel_chastity" cx="251.62398" cy="455.35959" rx="0.50001472" ry="4.4001298" id="ellipse43-3"/><path id="path49-2" d="m 260.3,453.5 c -0.2,2.5 -1.5,4.3 -1.7,4.3 -0.3,0 0.4,-1.9 0.6,-4.4 0.2,-2.4 -0.2,-4.3 0.2,-4.3 0.2,0 1.1,1.9 0.9,4.4 z"/><path id="path51-9" d="m 260.1,453.3 c -0.2,2.5 -1.4,4.3 -1.6,4.2 -0.3,0 0.4,-1.9 0.6,-4.3 0.2,-2.4 -0.2,-4.3 0.1,-4.3 0.3,0 1.1,2 0.9,4.4 z" class="steel_chastity"/><path id="path57-9" d="m 251.5,453.6 c 0.2,2.3 0.9,4.1 0.6,4.4 -0.2,0.3 -1.6,-1.4 -1.8,-4.3 -0.2,-2.8 0.8,-5.1 1.1,-4.9 0.3,0.2 -0.1,2.4 0.1,4.8 z"/><path id="path59-4" d="m 251.7,453.6 c 0.2,2.3 0.8,4 0.6,4.2 -0.2,0.3 -1.5,-1.4 -1.7,-4.1 -0.2,-2.7 0.8,-4.9 1,-4.7 0.3,0.1 -0.2,2.3 0.1,4.6 z" class="steel_chastity"/><ellipse transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" cx="163.77451" cy="480.79053" rx="0.39999419" ry="3.8999434" id="ellipse63-8"/><ellipse transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" class="steel_chastity" cx="163.70459" cy="480.56799" rx="0.39999419" ry="3.8999434" id="ellipse65-4"/><ellipse transform="matrix(0.99995924,-0.00902901,0.00902901,0.99995924,0,0)" cx="251.11652" cy="455.50406" rx="4.4001794" ry="0.60002446" id="ellipse69-0"/><ellipse transform="matrix(0.99995924,-0.00902901,0.00902901,0.99995924,0,0)" class="steel_chastity" cx="250.91531" cy="455.70251" rx="4.3001757" ry="0.50002038" id="ellipse71-3"/><ellipse transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" cx="-91.045746" cy="499.08899" rx="0.59998238" ry="4.9998531" id="ellipse75"/><ellipse transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" class="steel_chastity" cx="-91.25238" cy="498.96332" rx="0.49998531" ry="4.9998531" id="ellipse77-6"/><ellipse transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" cx="-315.15625" cy="401.64398" rx="0.60000396" ry="5.1000333" id="ellipse81"/><ellipse transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" class="steel_chastity" cx="-315.25656" cy="401.41248" rx="0.50000328" ry="5.1000333" id="ellipse83-1"/><path id="path85" d="m 268.1,432 c 0,0.1 -2.7,0.7 -5.9,2.9 -1.2,0.8 -2.4,1.6 -3.6,3.1 -1.6,2 -2.2,3.9 -2.4,4.4 -0.4,1.3 -0.5,2.7 -0.6,3.6 -0.1,1.1 -0.2,2.6 -0.2,2.6 0,0 0,0 0,0 l 0,0 c 0,0 0.1,0 0.1,0.1 0,0 -0.2,0.1 -0.3,0 -0.2,-0.1 -0.2,-0.3 -0.2,-0.5 -0.2,-1.4 -0.1,-1.9 -0.1,-1.9 -0.1,-0.8 0,-1.5 0.3,-2.9 0.1,-0.7 0.4,-1.9 1,-3.4 0.4,-0.9 1,-2 1.9,-3.2 0.9,-0.8 2.4,-2 4.3,-3 2.9,-1.4 5.6,-1.9 5.7,-1.8 z"/><path id="path87-0" d="m 268.1,431.9 c 0,0.1 -1.8,0.5 -4.3,1.7 -0.3,0.2 -0.6,0.3 -1.1,0.5 -1.1,0.6 -3.5,2 -5.3,4.8 -0.1,0.1 -0.3,0.5 -0.6,1.1 -2.3,4.7 -1.4,9.4 -1.8,9.4 -0.1,0 -0.3,-0.4 -0.3,-0.7 -0.2,-0.7 -0.8,-3 0.7,-7.3 0.3,-0.8 0.7,-1.8 1.3,-3 0.7,-1.1 1.4,-1.9 1.9,-2.4 0,0 0.1,-0.1 0.1,-0.1 2.7,-2.7 7.3,-3.8 7.3,-3.8 1.2,-0.1 2.1,-0.2 2.1,-0.2 z" class="steel_chastity"/><ellipse transform="matrix(0.03821768,-0.99926944,0.99926944,0.03821768,0,0)" cx="-438.95258" cy="272.41016" rx="0.60001838" ry="4.6001406" id="ellipse91"/><ellipse transform="matrix(0.03821768,-0.99926944,0.99926944,0.03821768,0,0)" class="steel_chastity" cx="-439.09824" cy="272.22467" rx="0.50001532" ry="4.6001406" id="ellipse93"/><ellipse transform="matrix(0.99945509,-0.03300794,0.03300794,0.99945509,0,0)" cx="254.11981" cy="440.54788" rx="0.40001798" ry="3.6001616" id="ellipse97"/><ellipse transform="matrix(0.99945509,-0.03300794,0.03300794,0.99945509,0,0)" class="steel_chastity" cx="254.0242" cy="440.34491" rx="0.40001798" ry="3.6001616" id="ellipse99"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Chastity_Cage_2.tw b/src/art/vector/layers/Chastity_Cage_2.tw new file mode 100644 index 0000000000000000000000000000000000000000..d9e593d36939f289e6e36362e3b22d433621f5b0 --- /dev/null +++ b/src/art/vector/layers/Chastity_Cage_2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Chastity_Cage_2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><ellipse id="ellipse9-3" ry="0.80003262" rx="4.6001873" cy="470.03201" cx="242.98465" transform="matrix(0.99995924,-0.00902905,0.00902905,0.99995924,0,0)"/><ellipse id="ellipse11-2" ry="0.80003262" rx="4.6001873" cy="470.23044" cx="242.78305" class="steel_chastity" transform="matrix(0.99995924,-0.00902905,0.00902905,0.99995924,0,0)"/><ellipse transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" cx="112.55401" cy="492.2785" rx="0.70002699" ry="6.100235" id="ellipse17-1"/><ellipse transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" class="steel_chastity" cx="112.31628" cy="492.02136" rx="0.70002699" ry="6.0002313" id="ellipse19-5"/><ellipse transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" cx="30.064816" cy="503.48874" rx="0.80003381" ry="6.9002914" id="ellipse23-4"/><ellipse transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" class="steel_chastity" cx="29.862652" cy="503.28256" rx="0.80003381" ry="6.8002872" id="ellipse25-7"/><ellipse transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" cx="-212.21753" cy="460.03302" rx="0.79995733" ry="7.199616" id="ellipse29-56"/><ellipse transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" class="steel_chastity" cx="-212.47066" cy="459.78162" rx="0.79995733" ry="7.199616" id="ellipse31-93"/><ellipse transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" cx="-405.08789" cy="315.38254" rx="0.80000162" ry="7.0000143" id="ellipse35-4"/><ellipse transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" class="steel_chastity" cx="-405.27695" cy="315.1951" rx="0.80000162" ry="6.9000144" id="ellipse37-5"/><ellipse transform="matrix(0.99997051,-0.00768017,0.00768017,0.99997051,0,0)" cx="243.35591" cy="464.19601" rx="0.80002362" ry="6.4001889" id="ellipse41-5"/><ellipse transform="matrix(0.99997051,-0.00768017,0.00768017,0.99997051,0,0)" class="steel_chastity" cx="243.15773" cy="463.99463" rx="0.80002362" ry="6.3001862" id="ellipse43-4"/><path id="path49-4" d="m 254,462.1 c -0.3,3.5 -2.1,6.1 -2.5,6.1 -0.4,-0.1 0.6,-2.8 0.9,-6.2 0.3,-3.5 -0.2,-6.2 0.2,-6.1 0.5,0 1.7,2.7 1.4,6.2 z"/><path id="path51-3" d="m 253.8,461.9 c -0.3,3.5 -1.9,6.1 -2.3,6 -0.4,-0.1 0.6,-2.7 0.8,-6.2 0.3,-3.4 -0.3,-6.1 0.1,-6.1 0.4,0.1 1.7,2.8 1.4,6.3 z" class="steel_chastity"/><path id="path57-8" d="m 241.5,462.3 c 0.3,3.3 1.2,5.8 0.8,6.2 -0.4,0.4 -2.2,-2 -2.5,-6.1 -0.3,-4 1.1,-7.2 1.6,-6.9 0.4,0.3 -0.2,3.4 0.1,6.8 z"/><path id="path59-6" d="m 241.8,462.2 c 0.3,3.2 1.2,5.7 0.8,6 -0.3,0.4 -2.1,-2 -2.4,-5.9 -0.3,-3.9 1.1,-7 1.5,-6.7 0.3,0.4 -0.3,3.4 0.1,6.6 z" class="steel_chastity"/><ellipse transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" cx="160.21332" cy="479.76617" rx="0.59999132" ry="5.4999199" id="ellipse63-84"/><ellipse transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" class="steel_chastity" cx="160.05597" cy="479.53412" rx="0.49999273" ry="5.4999199" id="ellipse65-3"/><ellipse transform="matrix(0.99995924,-0.00902901,0.00902901,0.99995924,0,0)" cx="242.53937" cy="464.02777" rx="6.2002525" ry="0.80003262" id="ellipse69-4"/><ellipse transform="matrix(0.99995924,-0.00902901,0.00902901,0.99995924,0,0)" class="steel_chastity" cx="242.33777" cy="464.22568" rx="6.2002525" ry="0.80003262" id="ellipse71-9"/><ellipse transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" cx="-97.086578" cy="495.68488" rx="0.79997647" ry="7.1997881" id="ellipse75-0"/><ellipse transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" class="steel_chastity" cx="-97.253754" cy="495.40631" rx="0.79997647" ry="7.099791" id="ellipse77-68"/><ellipse transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" cx="-321.58868" cy="395.51544" rx="0.80000526" ry="7.200047" id="ellipse81-2"/><ellipse transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" class="steel_chastity" cx="-321.74698" cy="395.18634" rx="0.80000526" ry="7.200047" id="ellipse83-6"/><path id="path85-6" d="m 265,431.6 c 0.1,0.2 -3.8,1.1 -8.4,4.1 -1.6,1.1 -3.4,2.3 -5.2,4.5 -2.3,2.8 -3.1,5.6 -3.4,6.3 -0.6,1.9 -0.8,3.8 -0.9,5.2 -0.2,1.5 -0.3,3.7 -0.3,3.7 0,0 0,0 0,0 l 0,0 c 0,0 0.2,0 0.2,0.1 0,0 -0.2,0.1 -0.4,0 -0.2,-0.1 -0.3,-0.5 -0.3,-0.7 -0.2,-2 -0.1,-2.6 -0.1,-2.6 -0.2,-1.1 0,-2.1 0.4,-4.1 0.2,-1 0.5,-2.7 1.4,-4.8 0.5,-1.2 1.4,-2.9 2.8,-4.6 1.3,-1.2 3.3,-2.8 6.1,-4.2 4.2,-2.4 8.1,-3.1 8.1,-2.9 z"/><path id="path87-4" d="m 265.1,431.5 c 0,0.1 -2.6,0.7 -6.1,2.5 -0.4,0.2 -0.9,0.4 -1.5,0.8 -1.5,0.9 -5,2.9 -7.5,6.8 -0.1,0.2 -0.4,0.7 -0.8,1.5 -3.3,6.7 -2,13.4 -2.6,13.4 -0.2,0 -0.4,-0.6 -0.5,-1 -0.3,-1 -1.1,-4.3 0.9,-10.4 0.4,-1.1 1,-2.6 1.9,-4.3 1,-1.5 2,-2.6 2.8,-3.4 0,0 0.1,-0.1 0.1,-0.1 3.9,-3.8 10.4,-5.4 10.4,-5.4 1.6,-0.3 2.9,-0.5 2.9,-0.4 z" class="steel_chastity"/><ellipse transform="matrix(0.03821768,-0.99926944,0.99926944,0.03821768,0,0)" cx="-446.11111" cy="264.34604" rx="0.80002451" ry="6.5001988" id="ellipse91-5"/><ellipse transform="matrix(0.03821768,-0.99926944,0.99926944,0.03821768,0,0)" class="steel_chastity" cx="-446.23386" cy="264.04041" rx="0.80002451" ry="6.5001988" id="ellipse93-0"/><ellipse transform="matrix(0.99945509,-0.03300794,0.03300794,0.99945509,0,0)" cx="251.33618" cy="439.95505" rx="0.60002697" ry="5.2002335" id="ellipse97-8"/><ellipse transform="matrix(0.99945509,-0.03300794,0.03300794,0.99945509,0,0)" class="steel_chastity" cx="251.2424" cy="439.75095" rx="0.50002247" ry="5.1002293" id="ellipse99-7"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Chastity_Cage_3.tw b/src/art/vector/layers/Chastity_Cage_3.tw new file mode 100644 index 0000000000000000000000000000000000000000..5929a3f4e6b58594c05b9bb53033fdcf101acb2c --- /dev/null +++ b/src/art/vector/layers/Chastity_Cage_3.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Chastity_Cage_3 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><ellipse id="ellipse9-7" ry="1.300053" rx="7.2002935" cy="488.65698" cx="234.51596" transform="matrix(0.99995924,-0.00902905,0.00902905,0.99995924,0,0)"/><ellipse id="ellipse11-27" ry="1.2000489" rx="7.1002893" cy="488.95456" cx="234.21359" class="steel_chastity" transform="matrix(0.99995924,-0.00902905,0.00902905,0.99995924,0,0)"/><ellipse transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" cx="110.62966" cy="491.78107" rx="1.1000425" ry="9.3003588" id="ellipse17-6"/><ellipse transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" class="steel_chastity" cx="110.42556" cy="491.39282" rx="1.0000386" ry="9.3003588" id="ellipse19-1"/><ellipse transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" cx="26.19035" cy="502.51645" rx="1.3000548" ry="10.700452" id="ellipse23-1"/><ellipse transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" class="steel_chastity" cx="25.94125" cy="502.15286" rx="1.2000507" ry="10.600448" id="ellipse25-5"/><ellipse transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" cx="-219.80795" cy="456.57428" rx="1.2999306" ry="11.199403" id="ellipse29-4"/><ellipse transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" class="steel_chastity" cx="-220.08142" cy="456.1864" rx="1.199936" ry="11.099408" id="ellipse31-90"/><ellipse transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" cx="-415.43591" cy="308.4957" rx="1.3000026" ry="10.700022" id="ellipse35-1"/><ellipse transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" class="steel_chastity" cx="-415.76486" cy="308.09805" rx="1.2000026" ry="10.600022" id="ellipse37-7"/><ellipse transform="matrix(0.99997051,-0.00768017,0.00768017,0.99997051,0,0)" cx="234.73555" cy="479.83078" rx="1.3000383" ry="9.8002892" id="ellipse41-1"/><ellipse transform="matrix(0.99997051,-0.00768017,0.00768017,0.99997051,0,0)" class="steel_chastity" cx="234.43837" cy="479.42868" rx="1.2000355" ry="9.7002859" id="ellipse43-1"/><path id="path49-7" d="m 249.4,477.7 c -0.5,5.4 -3.2,9.5 -3.8,9.3 -0.6,-0.1 1,-4.3 1.4,-9.6 0.5,-5.3 -0.4,-9.5 0.4,-9.4 0.6,0 2.5,4.3 2,9.7 z"/><path id="path51-7" d="m 249.1,477.3 c -0.4,5.4 -3,9.4 -3.5,9.3 -0.6,-0.1 1,-4.2 1.3,-9.5 0.4,-5.3 -0.5,-9.4 0.2,-9.3 0.5,-0.1 2.4,4.2 2,9.5 z" class="steel_chastity"/><path id="path57-6" d="m 230.2,477.9 c 0.4,5.1 1.9,9 1.3,9.6 -0.5,0.6 -3.4,-3.1 -3.9,-9.4 -0.5,-6.2 1.8,-11.2 2.4,-10.7 0.6,0.5 -0.3,5.4 0.2,10.5 z"/><path id="path59-5" d="m 230.5,477.9 c 0.4,5 1.8,8.7 1.3,9.3 -0.5,0.6 -3.2,-3.1 -3.7,-9 -0.5,-6 1.7,-10.8 2.2,-10.3 0.6,0.3 -0.3,5 0.2,10 z" class="steel_chastity"/><ellipse transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" cx="160.35144" cy="479.0896" rx="0.89998686" ry="8.5998755" id="ellipse63-3"/><ellipse transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" class="steel_chastity" cx="160.21722" cy="478.84027" rx="0.79998839" ry="8.499876" id="ellipse65-9"/><ellipse transform="matrix(0.99995924,-0.00902901,0.00902901,0.99995924,0,0)" cx="233.9003" cy="479.35046" rx="9.6003914" ry="1.300053" id="ellipse69-8"/><ellipse transform="matrix(0.99995924,-0.00902901,0.00902901,0.99995924,0,0)" class="steel_chastity" cx="233.49789" cy="479.54724" rx="9.5003872" ry="1.2000489" id="ellipse71-1"/><path id="path73-2" d="M 255.7,454.4"/><ellipse transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" cx="-102.82417" cy="493.77295" rx="1.2999617" ry="11.099674" id="ellipse77-3"/><ellipse transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" class="steel_chastity" cx="-103.11944" cy="493.39758" rx="1.1999648" ry="10.999677" id="ellipse79-9"/><ellipse transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" cx="-330.53204" cy="390.57532" rx="1.3000085" ry="11.200073" id="ellipse83-8"/><ellipse transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" class="steel_chastity" cx="-330.81357" cy="390.16785" rx="1.2000079" ry="11.100074" id="ellipse85-8"/><path id="path87-5" d="m 266.4,430.5 c 0.1,0.2 -5.9,1.6 -13,6.3 -2.5,1.7 -5.3,3.5 -8,6.9 -3.5,4.4 -4.8,8.6 -5.2,9.7 -0.9,2.9 -1.2,5.9 -1.4,8 -0.2,2.3 -0.4,5.8 -0.5,5.8 0,0 0,0 0,-0.1 l 0,0 c 0,0 0.3,0.1 0.3,0.1 0,0.1 -0.4,0.2 -0.6,0.1 -0.4,-0.2 -0.4,-0.8 -0.5,-1 -0.3,-3 -0.2,-4.1 -0.2,-4.1 -0.3,-1.7 0,-3.2 0.6,-6.3 0.3,-1.5 0.8,-4.2 2.2,-7.4 0.8,-1.9 2.1,-4.4 4.3,-7.1 2,-1.8 5.2,-4.3 9.3,-6.5 6.7,-3.4 12.6,-4.6 12.7,-4.4 z"/><path id="path89-0" d="m 266.5,430.5 c 0.1,0.2 -4,1.1 -9.4,3.8 -0.7,0.3 -1.4,0.7 -2.3,1.2 -2.4,1.3 -7.8,4.4 -11.5,10.5 -0.2,0.2 -0.7,1.1 -1.3,2.3 -5.1,10.3 -3,20.6 -3.9,20.7 -0.3,0 -0.6,-0.9 -0.7,-1.5 -0.4,-1.6 -1.7,-6.6 1.5,-16 0.6,-1.7 1.5,-4 2.9,-6.6 1.6,-2.3 3.1,-4.1 4.3,-5.2 0.1,-0.1 0.1,-0.1 0.2,-0.2 6,-5.9 16,-8.3 16,-8.3 2.2,-0.6 4.2,-0.9 4.2,-0.7 z" class="steel_chastity"/><path id="path91-9" d="M 236.7,434.8" class="steel_chastity"/><path id="path93-6" d="M 227.5,436.9"/><path id="path95-3" d="M 235.6,434.9" class="steel_chastity"/><path id="path97-8" d="M 229.2,431.5"/><ellipse transform="matrix(0.03821768,-0.99926944,0.99926944,0.03821768,0,0)" cx="-458.50751" cy="256.35947" rx="1.3000398" ry="10.100309" id="ellipse101-6"/><ellipse transform="matrix(0.03821768,-0.99926944,0.99926944,0.03821768,0,0)" class="steel_chastity" cx="-458.78857" cy="256.03387" rx="1.2000368" ry="10.000306" id="ellipse103-1"/><ellipse transform="matrix(0.99945509,-0.03300794,0.03300794,0.99945509,0,0)" cx="253.07095" cy="438.91257" rx="0.90004039" ry="8.0003595" id="ellipse107-5"/><ellipse transform="matrix(0.99945509,-0.03300794,0.03300794,0.99945509,0,0)" class="steel_chastity" cx="252.88055" cy="438.60617" rx="0.80003595" ry="7.9003549" id="ellipse109-9"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Chastity_Cage_4.tw b/src/art/vector/layers/Chastity_Cage_4.tw new file mode 100644 index 0000000000000000000000000000000000000000..c345559b4168e7417502fd2889074bb4c7a97dff --- /dev/null +++ b/src/art/vector/layers/Chastity_Cage_4.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Chastity_Cage_4 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><ellipse id="ellipse9-1" ry="1.6000652" rx="8.8003588" cy="502.5741" cx="225.18994" transform="matrix(0.99995924,-0.00902868,0.00902868,0.99995924,0,0)"/><ellipse id="ellipse11-0" ry="1.5000612" rx="8.7003546" cy="502.97079" cx="224.78665" class="steel_chastity" transform="matrix(0.99995924,-0.00902868,0.00902868,0.99995924,0,0)"/><ellipse transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" cx="104.92211" cy="492.44202" rx="1.3000501" ry="11.300436" id="ellipse17-4"/><ellipse transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" class="steel_chastity" cx="104.65597" cy="492.04211" rx="1.2000463" ry="11.300436" id="ellipse19-4"/><ellipse transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" cx="19.07037" cy="502.1871" rx="1.6000676" ry="13.000548" id="ellipse23-47"/><ellipse transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" class="steel_chastity" cx="18.83839" cy="501.80112" rx="1.5000633" ry="12.900544" id="ellipse25-6"/><ellipse transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" cx="-228.82686" cy="452.56561" rx="1.5999147" ry="13.599275" id="ellipse29-1"/><ellipse transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" class="steel_chastity" cx="-229.18172" cy="451.99884" rx="1.49992" ry="13.49928" id="ellipse31-7"/><ellipse transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" cx="-424.89481" cy="300.58334" rx="1.6000032" ry="13.000027" id="ellipse35-9"/><ellipse transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" class="steel_chastity" cx="-425.25333" cy="300.08054" rx="1.5000031" ry="12.900026" id="ellipse37-6"/><ellipse transform="matrix(0.99997051,-0.00767995,0.00767995,0.99997051,0,0)" cx="225.34215" cy="491.85947" rx="1.6000472" ry="11.900351" id="ellipse41-78"/><ellipse transform="matrix(0.99997051,-0.00767995,0.00767995,0.99997051,0,0)" class="steel_chastity" cx="224.94597" cy="491.35669" rx="1.5000442" ry="11.800348" id="ellipse43-5"/><path id="path49-5" d="m 242.5,489.8 c -0.6,6.6 -3.9,11.6 -4.6,11.3 -0.7,-0.1 1.2,-5.2 1.7,-11.7 0.6,-6.5 -0.5,-11.6 0.5,-11.5 0.7,0 3,5.3 2.4,11.9 z"/><path id="path51-97" d="m 242.1,489.3 c -0.5,6.6 -3.7,11.5 -4.3,11.3 -0.7,-0.1 1.2,-5.1 1.6,-11.6 0.5,-6.5 -0.6,-11.5 0.2,-11.3 0.7,-0.1 3,5.1 2.5,11.6 z" class="steel_chastity"/><path id="path57-88" d="m 219.1,490 c 0.5,6.2 2.3,11 1.6,11.7 -0.6,0.7 -4.1,-3.8 -4.8,-11.5 -0.6,-7.6 2.2,-13.6 2.9,-13 0.8,0.6 -0.3,6.6 0.3,12.8 z"/><path id="path59-3" d="m 219.4,490 c 0.5,6.1 2.2,10.6 1.6,11.3 -0.6,0.7 -3.9,-3.8 -4.5,-11 -0.6,-7.3 2.1,-13.2 2.7,-12.5 0.7,0.4 -0.4,6.1 0.2,12.2 z" class="steel_chastity"/><ellipse transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" cx="155.92749" cy="480.11963" rx="1.099984" ry="10.499847" id="ellipse63-89"/><ellipse transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" class="steel_chastity" cx="155.79077" cy="479.77576" rx="0.99998546" ry="10.399848" id="ellipse65-6"/><ellipse transform="matrix(0.99995924,-0.00902864,0.00902864,0.99995924,0,0)" cx="224.49228" cy="491.26639" rx="11.700477" ry="1.6000652" id="ellipse69-3"/><ellipse transform="matrix(0.99995924,-0.00902864,0.00902864,0.99995924,0,0)" class="steel_chastity" cx="223.99008" cy="491.46194" rx="11.600473" ry="1.5000612" id="ellipse71-38"/><ellipse transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" cx="-111.05588" cy="491.65454" rx="1.5999529" ry="13.499603" id="ellipse75-04"/><ellipse transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" class="steel_chastity" cx="-111.34396" cy="491.20587" rx="1.4999559" ry="13.399606" id="ellipse77-8"/><ellipse transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" cx="-339.767" cy="384.64166" rx="1.6000105" ry="13.60009" id="ellipse81-8"/><ellipse transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" class="steel_chastity" cx="-340.12155" cy="384.11096" rx="1.5000099" ry="13.500089" id="ellipse83-9"/><path id="path85-7" d="m 263.2,432.2 c 0.1,0.2 -7.2,1.9 -15.8,7.7 -3,2.1 -6.5,4.3 -9.7,8.4 -4.3,5.4 -5.8,10.5 -6.3,11.8 -1.1,3.5 -1.5,7.2 -1.7,9.7 -0.2,2.8 -0.5,7.1 -0.6,7.1 0,0 0,0 0,-0.1 l 0,0 0.4,0.1 c 0,0.1 -0.5,0.2 -0.7,0.1 -0.5,-0.2 -0.5,-1 -0.6,-1.2 -0.4,-3.7 -0.2,-5 -0.2,-5 -0.4,-2.1 0,-3.9 0.7,-7.7 0.4,-1.8 1,-5.1 2.7,-9 1,-2.3 2.6,-5.4 5.2,-8.7 2.4,-2.2 6.3,-5.2 11.3,-7.9 8,-4 15.2,-5.5 15.3,-5.3 z"/><path id="path87-7" d="m 263.3,432.2 c 0.1,0.2 -4.9,1.3 -11.5,4.6 -0.9,0.4 -1.7,0.9 -2.8,1.5 -2.9,1.6 -9.5,5.4 -14,12.8 -0.2,0.2 -0.9,1.3 -1.6,2.8 -6.2,12.5 -3.7,25.1 -4.8,25.2 -0.4,0 -0.7,-1.1 -0.9,-1.8 -0.5,-1.9 -2.1,-8 1.8,-19.5 0.7,-2.1 1.8,-4.9 3.5,-8 1.9,-2.8 3.8,-5 5.2,-6.3 0.1,-0.1 0.1,-0.1 0.2,-0.2 7.3,-7.2 19.5,-10.1 19.5,-10.1 3,-0.8 5.4,-1.2 5.4,-1 z" class="steel_chastity"/><ellipse transform="matrix(0.03821651,-0.99926948,0.99926948,0.03821651,0,0)" cx="-468.74423" cy="247.48743" rx="1.6000489" ry="12.300376" id="ellipse91-4"/><ellipse transform="matrix(0.03821651,-0.99926948,0.99926948,0.03821651,0,0)" class="steel_chastity" cx="-469.07715" cy="247.06378" rx="1.5000458" ry="12.200373" id="ellipse93-3"/><ellipse transform="matrix(0.99945514,-0.03300646,0.03300646,0.99945514,0,0)" cx="250.0174" cy="440.51257" rx="1.1000494" ry="9.7004356" id="ellipse97-3"/><ellipse transform="matrix(0.99945514,-0.03300646,0.03300646,0.99945514,0,0)" class="steel_chastity" cx="249.82956" cy="440.20477" rx="1.0000449" ry="9.6004314" id="ellipse99-0"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Chastity_Cage_5.tw b/src/art/vector/layers/Chastity_Cage_5.tw new file mode 100644 index 0000000000000000000000000000000000000000..98009c38600a2958f365fd128a83731eafc5ffe1 --- /dev/null +++ b/src/art/vector/layers/Chastity_Cage_5.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Chastity_Cage_5 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><ellipse id="ellipse9-4" ry="2.1000855" rx="11.400464" cy="521.97729" cx="214.31369" transform="matrix(0.99995924,-0.00902868,0.00902868,0.99995924,0,0)"/><ellipse id="ellipse11-05" ry="1.9000775" rx="11.200457" cy="522.47308" cx="213.80939" class="steel_chastity" transform="matrix(0.99995924,-0.00902868,0.00902868,0.99995924,0,0)"/><ellipse transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" cx="100.80535" cy="491.53613" rx="1.7000656" ry="14.700566" id="ellipse17-69"/><ellipse transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" class="steel_chastity" cx="100.4789" cy="490.90662" rx="1.6000618" ry="14.700566" id="ellipse19-22"/><ellipse transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" cx="12.995846" cy="500.44162" rx="2.1000886" ry="16.900713" id="ellipse23-7"/><ellipse transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" class="steel_chastity" cx="12.613705" cy="499.90048" rx="1.9000802" ry="16.700706" id="ellipse25-54"/><ellipse transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" cx="-238.1528" cy="447.37494" rx="2.0998878" ry="17.699057" id="ellipse29-12"/><ellipse transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" class="steel_chastity" cx="-238.63501" cy="446.76959" rx="1.8998986" ry="17.499067" id="ellipse31-8"/><ellipse transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" cx="-436.15411" cy="291.23352" rx="2.1000042" ry="16.900034" id="ellipse35-6"/><ellipse transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" class="steel_chastity" cx="-436.67075" cy="290.69232" rx="1.9000039" ry="16.700035" id="ellipse37-80"/><ellipse transform="matrix(0.99997051,-0.00767995,0.00767995,0.99997051,0,0)" cx="214.31587" cy="508.27579" rx="2.1000619" ry="15.500457" id="ellipse41-51"/><ellipse transform="matrix(0.99997051,-0.00767995,0.00767995,0.99997051,0,0)" class="steel_chastity" cx="213.82069" cy="507.57208" rx="1.900056" ry="15.300451" id="ellipse43-10"/><path id="path49-0" d="m 235.5,506.1 c -0.8,8.5 -5.1,15 -6,14.7 -0.9,-0.2 1.6,-6.8 2.2,-15.2 0.8,-8.4 -0.6,-15 0.6,-14.9 1,0.1 4,6.9 3.2,15.4 z"/><path id="path51-6" d="m 235.1,505.5 c -0.6,8.5 -4.7,14.9 -5.5,14.7 -0.9,-0.2 1.6,-6.6 2.1,-15 0.6,-8.4 -0.8,-14.9 0.3,-14.7 0.7,-0.2 3.7,6.6 3.1,15 z" class="steel_chastity"/><path id="path57-2" d="m 205.2,506.4 c 0.6,8.1 3,14.2 2.1,15.2 -0.8,0.9 -5.4,-4.9 -6.2,-14.9 -0.8,-9.8 2.8,-17.7 3.8,-16.9 0.9,0.8 -0.5,8.5 0.3,16.6 z"/><path id="path59-58" d="m 205.7,506.4 c 0.6,7.9 2.8,13.7 2.1,14.7 -0.7,1 -5.1,-4.9 -5.8,-14.2 -0.8,-9.5 2.7,-17.1 3.5,-16.3 0.8,0.5 -0.6,7.9 0.2,15.8 z" class="steel_chastity"/><ellipse transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" cx="153.95517" cy="479.34796" rx="1.3999796" ry="13.599803" id="ellipse63-847"/><ellipse transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" class="steel_chastity" cx="153.7373" cy="478.89117" rx="1.299981" ry="13.399805" id="ellipse65-2"/><ellipse transform="matrix(0.99995924,-0.00902864,0.00902864,0.99995924,0,0)" cx="213.34641" cy="507.2673" rx="15.20062" ry="2.1000855" id="ellipse69-6"/><ellipse transform="matrix(0.99995924,-0.00902864,0.00902864,0.99995924,0,0)" class="steel_chastity" cx="212.64355" cy="507.56158" rx="15.000611" ry="1.9000775" id="ellipse71-2"/><ellipse transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" cx="-118.76535" cy="488.49884" rx="2.0999382" ry="17.499485" id="ellipse75-9"/><ellipse transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" class="steel_chastity" cx="-119.19056" cy="487.94672" rx="1.8999441" ry="17.399488" id="ellipse77-0"/><ellipse transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" cx="-350.16968" cy="377.66235" rx="2.1000137" ry="17.700117" id="ellipse81-3"/><ellipse transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" class="steel_chastity" cx="-350.55151" cy="376.94446" rx="1.9000125" ry="17.500114" id="ellipse83-11"/><path id="path85-0" d="m 262.4,431.5 c 0.2,0.3 -9.3,2.5 -20.5,10 -3.9,2.7 -8.4,5.5 -12.6,10.9 -5.5,7 -7.6,13.6 -8.2,15.3 -1.4,4.6 -1.9,9.3 -2.2,12.6 -0.3,3.6 -0.6,9.2 -0.8,9.2 0,0 0,0 0,-0.2 l 0,0 0.5,0.2 c 0,0.2 -0.6,0.3 -0.9,0.2 -0.6,-0.3 -0.6,-1.3 -0.8,-1.6 -0.5,-4.7 -0.3,-6.5 -0.3,-6.5 -0.5,-2.7 0,-5.1 0.9,-10 0.5,-2.4 1.3,-6.6 3.5,-11.7 1.3,-3 3.3,-7 6.8,-11.2 3.2,-2.8 8.2,-6.8 14.7,-10.3 10.4,-5.3 19.7,-7.2 19.9,-6.9 z"/><path id="path87-3" d="m 262.6,431.5 c 0.2,0.3 -6.3,1.7 -14.9,6 -1.1,0.5 -2.2,1.1 -3.6,1.9 -3.8,2.1 -12.3,7 -18.2,16.6 -0.3,0.3 -1.1,1.7 -2.1,3.6 -8.1,16.3 -4.7,32.5 -6.2,32.7 -0.5,0 -0.9,-1.4 -1.1,-2.4 -0.6,-2.5 -2.7,-10.4 2.4,-25.3 0.9,-2.7 2.4,-6.3 4.6,-10.4 2.5,-3.6 4.9,-6.5 6.8,-8.2 0.2,-0.2 0.2,-0.2 0.3,-0.3 9.5,-9.3 25.3,-13.1 25.3,-13.1 3.5,-0.9 6.7,-1.4 6.7,-1.1 z" class="steel_chastity"/><ellipse transform="matrix(0.03821651,-0.99926948,0.99926948,0.03821651,0,0)" cx="-481.94455" cy="237.15518" rx="2.100064" ry="16.000488" id="ellipse91-0"/><ellipse transform="matrix(0.03821651,-0.99926948,0.99926948,0.03821651,0,0)" class="steel_chastity" cx="-482.45746" cy="236.61667" rx="1.900058" ry="15.800483" id="ellipse93-39"/><ellipse transform="matrix(0.99945514,-0.03300646,0.03300646,0.99945514,0,0)" cx="249.64401" cy="439.6994" rx="1.4000628" ry="12.600566" id="ellipse97-9"/><ellipse transform="matrix(0.99945514,-0.03300646,0.03300646,0.99945514,0,0)" class="steel_chastity" cx="249.35986" cy="439.28918" rx="1.3000582" ry="12.500561" id="ellipse99-6"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Chastity_Cage_6.tw b/src/art/vector/layers/Chastity_Cage_6.tw new file mode 100644 index 0000000000000000000000000000000000000000..87eb58a47c41b05107011b1a696cb25a7b84ffd8 --- /dev/null +++ b/src/art/vector/layers/Chastity_Cage_6.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Chastity_Cage_6 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><ellipse id="ellipse9-5" ry="2.5001018" rx="14.00057" cy="541.25623" cx="200.73834" transform="matrix(0.99995924,-0.00902868,0.00902868,0.99995924,0,0)"/><ellipse id="ellipse11-6" ry="2.3000937" rx="13.800563" cy="541.85083" cx="200.13306" class="steel_chastity" transform="matrix(0.99995924,-0.00902868,0.00902868,0.99995924,0,0)"/><ellipse transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" cx="94.463371" cy="489.36151" rx="2.100081" ry="18.100698" id="ellipse17-0"/><ellipse transform="matrix(0.95116332,-0.3086881,0.3086881,0.95116332,0,0)" class="steel_chastity" cx="94.077507" cy="488.60187" rx="1.9000733" ry="18.100698" id="ellipse19-46"/><ellipse transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" cx="4.8175468" cy="497.16367" rx="2.5001056" ry="20.900883" id="ellipse23-6"/><ellipse transform="matrix(0.89106239,-0.45388084,0.45388084,0.89106239,0,0)" class="steel_chastity" cx="4.3863487" cy="496.46616" rx="2.300097" ry="20.700874" id="ellipse25-75"/><ellipse transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" cx="-248.74188" cy="439.8797" rx="2.4998667" ry="21.798836" id="ellipse29-8"/><ellipse transform="matrix(0.58443117,-0.81144328,0.81144328,0.58443117,0,0)" class="steel_chastity" cx="-249.24988" cy="439.13306" rx="2.2998772" ry="21.598848" id="ellipse31-72"/><ellipse transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" cx="-447.64758" cy="279.26624" rx="2.500005" ry="20.900042" id="ellipse35-29"/><ellipse transform="matrix(0.15949967,-0.98719798,0.98719798,0.15949967,0,0)" class="steel_chastity" cx="-448.22141" cy="278.48203" rx="2.3000047" ry="20.700043" id="ellipse37-9"/><ellipse transform="matrix(0.99997051,-0.00767995,0.00767995,0.99997051,0,0)" cx="200.59077" cy="524.47131" rx="2.5000737" ry="19.100563" id="ellipse41-0"/><ellipse transform="matrix(0.99997051,-0.00767995,0.00767995,0.99997051,0,0)" class="steel_chastity" cx="199.99678" cy="523.66681" rx="2.3000679" ry="18.900557" id="ellipse43-2"/><path id="path49-21" d="m 226,522.3 c -1,10.5 -6.2,18.5 -7.4,18.1 -1.2,-0.2 1.9,-8.4 2.7,-18.7 1,-10.3 -0.8,-18.5 0.8,-18.3 1.2,-0.1 4.9,8.3 3.9,18.9 z"/><path id="path51-5" d="m 225.4,521.5 c -0.8,10.5 -5.8,18.3 -6.8,18.1 -1.2,-0.2 1.9,-8.2 2.5,-18.5 0.8,-10.3 -1,-18.3 0.4,-18.1 1,-0.2 4.7,8.1 3.9,18.5 z" class="steel_chastity"/><path id="path57-1" d="m 188.6,522.6 c 0.8,9.9 3.7,17.5 2.5,18.7 -1,1.2 -6.6,-6 -7.6,-18.3 -1,-12.1 3.5,-21.8 4.7,-20.9 1.2,1.1 -0.6,10.6 0.4,20.5 z"/><path id="path59-49" d="m 189.2,522.6 c 0.8,9.7 3.5,17 2.5,18.1 -1,1.2 -6.2,-6 -7.2,-17.5 -1,-11.7 3.3,-21 4.3,-20.1 1.1,0.6 -0.6,9.8 0.4,19.5 z" class="steel_chastity"/><ellipse transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" cx="149.55643" cy="477.42865" rx="1.7999737" ry="16.799755" id="ellipse63-7"/><ellipse transform="matrix(0.97511419,-0.22170323,0.22170323,0.97511419,0,0)" class="steel_chastity" cx="149.25766" cy="476.95862" rx="1.5999768" ry="16.599758" id="ellipse65-5"/><ellipse transform="matrix(0.99995924,-0.00902864,0.00902864,0.99995924,0,0)" cx="199.50198" cy="523.1438" rx="18.700764" ry="2.5001018" id="ellipse69-7"/><ellipse transform="matrix(0.99995924,-0.00902864,0.00902864,0.99995924,0,0)" class="steel_chastity" cx="198.69852" cy="523.53674" rx="18.500753" ry="2.3000937" id="ellipse71-0"/><ellipse transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" cx="-128.13728" cy="483.21625" rx="2.4999266" ry="21.599365" id="ellipse75-8"/><ellipse transform="matrix(0.75422217,-0.6566193,0.6566193,0.75422217,0,0)" class="steel_chastity" cx="-128.69843" cy="482.55853" rx="2.2999322" ry="21.39937" id="ellipse77-04"/><ellipse transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" cx="-361.15363" cy="368.00677" rx="2.5000165" ry="21.800142" id="ellipse81-9"/><ellipse transform="matrix(0.37109756,-0.92859388,0.92859388,0.37109756,0,0)" class="steel_chastity" cx="-361.66119" cy="367.19781" rx="2.3000152" ry="21.600143" id="ellipse83-61"/><path id="path85-04" d="m 259.1,430.3 c 0.2,0.4 -11.5,3.1 -25.3,12.3 -4.9,3.3 -10.3,6.8 -15.6,13.4 -6.8,8.6 -9.4,16.8 -10.1,18.9 -1.8,5.7 -2.3,11.5 -2.7,15.6 -0.4,4.5 -0.8,11.3 -1,11.3 0,0 0,0 0,-0.2 l 0,0 0.6,0.2 c 0,0.2 -0.8,0.4 -1.2,0.2 -0.8,-0.4 -0.8,-1.6 -1,-1.9 -0.6,-5.8 -0.4,-8 -0.4,-8 -0.6,-3.3 0,-6.2 1.2,-12.3 0.6,-2.9 1.6,-8.2 4.3,-14.4 1.6,-3.7 4.1,-8.6 8.4,-13.8 3.9,-3.5 10.1,-8.4 18.1,-12.7 13,-6.7 24.5,-9 24.7,-8.6 z"/><path id="path87-2" d="m 259.3,430.3 c 0.2,0.4 -7.8,2.1 -18.3,7.4 -1.4,0.6 -2.7,1.4 -4.5,2.3 -4.7,2.5 -15.2,8.6 -22.4,20.5 -0.4,0.4 -1.4,2.1 -2.5,4.5 -9.9,20.1 -5.8,40.1 -7.6,40.3 -0.6,0 -1.2,-1.8 -1.4,-2.9 -0.8,-3.1 -3.3,-12.9 2.9,-31.2 1.2,-3.3 2.9,-7.8 5.7,-12.9 3.1,-4.5 6,-8 8.4,-10.1 0.2,-0.2 0.2,-0.2 0.4,-0.4 11.7,-11.5 31.2,-16.2 31.2,-16.2 4.2,-1.1 8.1,-1.7 8.1,-1.3 z" class="steel_chastity"/><ellipse transform="matrix(0.03821651,-0.99926948,0.99926948,0.03821651,0,0)" cx="-495.11285" cy="224.15152" rx="2.5000763" ry="19.700602" id="ellipse91-2"/><ellipse transform="matrix(0.03821651,-0.99926948,0.99926948,0.03821651,0,0)" class="steel_chastity" cx="-495.60553" cy="223.4939" rx="2.3000703" ry="19.500595" id="ellipse93-05"/><ellipse transform="matrix(0.99945514,-0.03300646,0.03300646,0.99945514,0,0)" cx="246.78876" cy="438.30417" rx="1.8000808" ry="15.6007" id="ellipse97-2"/><ellipse transform="matrix(0.99945514,-0.03300646,0.03300646,0.99945514,0,0)" class="steel_chastity" cx="246.40829" cy="437.69156" rx="1.6000718" ry="15.400691" id="ellipse99-9"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Chastity_Vagina.tw b/src/art/vector/layers/Chastity_Vagina.tw new file mode 100644 index 0000000000000000000000000000000000000000..61c514470e02ac73adf6346f7683144f8b7d1169 --- /dev/null +++ b/src/art/vector/layers/Chastity_Vagina.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Chastity_Vagina [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 233.7,401.7 c 8.8,3.6 21.3,7.4 36.6,8.6 23,1.7 41.4,-3.5 52,-7.4 -7.9,5.3 -20.7,15.5 -31.1,32.6 -7.9,13 -11.5,25.2 -13.2,33.6 -1.4,8.4 -3,10 -4.1,10.1 -2.1,0.2 -3.9,-5.4 -7,-14.5 -2.9,-8.3 -6.1,-16.5 -8.7,-24.9 -2.8,-9.5 -9.1,-22.6 -24.5,-38.1 z" id="path5-7"/><path class="steel_chastity" d="m 232.2,399.9 c 8.9,3.6 21.7,7.5 37.3,8.7 23.4,1.7 42.1,-3.5 53,-7.5 -8,5.4 -21.1,15.7 -31.7,32.8 -8,13.1 -11.7,25.4 -13.5,33.8 -1.2,5.8 -2.3,10 -4.2,10.2 -3.6,0.3 -5.9,-15.7 -17.4,-40.4 -1.4,-3 -3.2,-6.8 -5.8,-11.6 -6.3,-11.5 -12.9,-20.2 -17.7,-26 z" id="path7-68"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Clavicle.tw b/src/art/vector/layers/Clavicle.tw new file mode 100644 index 0000000000000000000000000000000000000000..9a60d929fe93a851267538259090a4990478cbd0 --- /dev/null +++ b/src/art/vector/layers/Clavicle.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Clavicle [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 301.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" class="shadow" id="XMLID_511_"/><path d="m 291.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="shadow" id="XMLID_546_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Clit_Piercing.tw b/src/art/vector/layers/Clit_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..4e263b79927bc420683c20e4861ddad8914da8eb --- /dev/null +++ b/src/art/vector/layers/Clit_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Clit_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle r="1.2" cy="435.60001" cx="268.29999" class="steel_piercing" id="XMLID_537_"/><circle r="1.2" cy="436.10001" cx="263.60001" class="steel_piercing" id="XMLID_538_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Clit_Piercing_Heavy.tw b/src/art/vector/layers/Clit_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..82fe4a757af5d0453c4a7549f5b3e4ce0dea0f18 --- /dev/null +++ b/src/art/vector/layers/Clit_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Clit_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle r="1.2" cy="435.60001" cx="268.29999" class="steel_piercing" id="XMLID_534_"/><circle r="1.2" cy="436.10001" cx="263.60001" class="steel_piercing" id="XMLID_535_"/><path d="m 264,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="steel_piercing" id="XMLID_536_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Clit_Piercing_Smart.tw b/src/art/vector/layers/Clit_Piercing_Smart.tw new file mode 100644 index 0000000000000000000000000000000000000000..da428528ce79dcf116e2f79fd4ce3fea40a35bb2 --- /dev/null +++ b/src/art/vector/layers/Clit_Piercing_Smart.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Clit_Piercing_Smart [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle r="1.2" cy="435.60001" cx="268.29999" class="steel_piercing" id="XMLID_539_"/><circle r="1.2" cy="436.10001" cx="263.60001" class="steel_piercing" id="XMLID_540_"/><path d="m 263.8,436.2 c -0.1,-0.1 -2.3,3.3 -1.1,5.5 1.4,2.7 6.4,2.1 7.4,-0.8 0.8,-2.4 -1.6,-5.4 -1.8,-5.3 -0.1,0.1 1.4,2.5 0.5,4.4 -1,2.1 -3.6,2.3 -4.9,0.3 -1.2,-1.8 0,-4 -0.1,-4.1 z" class="steel_piercing" id="XMLID_541_"/><rect height="7.3005033" width="7.3005033" class="smart_piercing" transform="matrix(0.74874839,0.66285431,-0.66285431,0.74874839,0,0)" y="154.21469" x="492.11429" id="XMLID_542_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Collar_Cowbell.tw b/src/art/vector/layers/Collar_Cowbell.tw new file mode 100644 index 0000000000000000000000000000000000000000..ac99f6e1aa6a9d938b1c4f90b301a5dc252f2783 --- /dev/null +++ b/src/art/vector/layers/Collar_Cowbell.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Collar_Cowbell [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path9-8" d="m 293.8,189 c 1.8,1 8.4,3.6 18,-1.9 0.3,-0.2 0.6,0 0.7,0.3 l 0.7,3.5 c 0,0.2 -0.1,0.4 -0.2,0.5 -5.6,3.3 -9.7,4.3 -13,4.3 -5.2,0 -7.1,-1.8 -7.6,-2.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 l 0.9,-3.4 c 0,-0.4 0.3,-0.5 0.6,-0.4 z"/><path transform="translate(-220,-3.8532959e-6)" d="m 514.5,198 10.1,1 5.8,22.7 -22.5,-0.8 -3.7,-5.1 z" id="polygon12"/><path id="path14" d="m 302.8,204.6 -6.8,-0.6 1.1,-11.5 6.8,0.7 -1.1,11.4 z m -5.6,-1.8 4.5,0.4 0.9,-9 -4.5,-0.4 -0.9,9 z"/><path id="path16" d="m 302.3,203.5 -7,-0.7 1,-10.7 7,0.7 -1,10.7 z m -5.7,-1.7 4.6,0.4 0.8,-8.3 -4.6,-0.4 -0.8,8.3 z" class="steel_chastity"/><path transform="translate(-220,-3.8532959e-6)" style="fill:#bababa" d="m 514.4,198 9.6,0.9 4.1,17.9 -23.9,-1 z" id="polygon18"/><path d="m 298.60547,191.26758 -0.29883,3.40039 2.98828,0.26367 0.29883,-3.40039 -2.98828,-0.26367 z" id="line20"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Collar_Gold_Heavy.tw b/src/art/vector/layers/Collar_Gold_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..e852553a3fa0fd568eb9e86da1f1e9affc817f58 --- /dev/null +++ b/src/art/vector/layers/Collar_Gold_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Collar_Gold_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 314.5,190.8 c -0.2,0.4 -0.5,0.7 -0.7,1 -6.2,5.7 -10.9,7.3 -14.3,7 -6.1,-0.5 -7.7,-5.8 -7.9,-6.3 -0.7,-2.1 -0.5,-5.2 0.8,-6.4 1.3,-1.4 2.5,-1.4 3.3,0.7 0.2,0.5 3.5,8.6 15.9,-2.8 1.3,-1.2 2.8,-0.4 3.4,1.8 0.4,1.7 0.2,3.7 -0.5,5" id="path7-2" style="fill:#f2f24c"/><path d="m 299.8,198.4 c -6,0 -7.8,-4.9 -8,-5.3 -0.8,-1.9 -0.7,-4.8 0.5,-6.1 1.2,-1.4 2.4,-1.5 3.2,0.4 0.2,0.5 3.8,7.8 15.4,-3.8 1.2,-1.2 2.7,-0.5 3.4,1.4 0.7,2 0.3,4.5 -0.9,5.7 -5.8,5.8 -10.3,7.7 -13.6,7.7 z" id="path9-88" style="fill:#f7d548"/><path d="m 299.6,201 c -0.7,0 -1.4,-0.2 -2,-0.5 -1.3,-0.7 -2,-2.1 -2,-3.5 0,-0.7 0.2,-1.4 0.5,-2 0.4,-0.7 1,-1.3 1.7,-1.6 0.2,-0.1 0.5,0 0.7,0.2 0.1,0.2 0,0.5 -0.2,0.7 -0.5,0.3 -1,0.7 -1.3,1.2 -0.3,0.5 -0.4,1 -0.4,1.5 0,1.1 0.6,2.1 1.5,2.7 0.5,0.3 1,0.4 1.5,0.4 1.1,0 2.1,-0.6 2.7,-1.5 0.3,-0.5 0.4,-1 0.4,-1.5 0,-1.1 -0.6,-2.1 -1.5,-2.7 -0.2,-0.1 -0.3,-0.4 -0.2,-0.7 0.1,-0.2 0.4,-0.3 0.7,-0.2 1.3,0.7 2,2.1 2,3.5 0,0.7 -0.2,1.4 -0.5,2 -0.8,1.2 -2.1,2 -3.6,2 z" id="path11-8" style="fill:#fefff2"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Collar_Neck_Corset.tw b/src/art/vector/layers/Collar_Neck_Corset.tw new file mode 100644 index 0000000000000000000000000000000000000000..6a45e26bab3d542ebef42934442ce2e2afd1bf3e --- /dev/null +++ b/src/art/vector/layers/Collar_Neck_Corset.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Collar_Neck_Corset [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 342.9,208.1 c -29.1,-3.8 -34.5,-14.5 -29.8,-48.6 0.1,-0.4 -0.3,-0.8 -0.7,-0.8 l -20.6,0.9 c -0.4,0 -0.7,0.4 -0.7,0.9 8.1,42.8 -6.4,40.7 -21,48.6 -0.5,0.3 -0.5,1 0,1.2 l 9.5,6 c 1.1,0.6 1.9,1.6 2.3,2.8 l 4.8,12.7 c 0.2,0.4 0.7,0.6 1,0.4 L 311,219.3 c 1.4,-0.8 2.9,-1.4 4.4,-1.8 l 27.7,-8 c 0.7,-0.2 0.6,-1.3 -0.2,-1.4 z" id="path1012"/><path class="steel_chastity" d="m 299.2,199.9 c -0.7,0 -1.4,-0.2 -2,-0.5 -1.3,-0.7 -2,-2.1 -2,-3.5 0,-0.7 0.2,-1.4 0.5,-2 0.4,-0.7 1,-1.3 1.7,-1.6 0.2,-0.1 0.5,0 0.7,0.2 0.1,0.2 0,0.5 -0.2,0.7 -0.5,0.3 -1,0.7 -1.3,1.2 -0.3,0.5 -0.4,1 -0.4,1.5 0,1.1 0.6,2.1 1.5,2.7 0.5,0.3 1,0.4 1.5,0.4 1.1,0 2.1,-0.6 2.7,-1.5 0.3,-0.5 0.4,-1 0.4,-1.5 0,-1.1 -0.6,-2.1 -1.5,-2.7 -0.2,-0.1 -0.3,-0.4 -0.2,-0.7 0.1,-0.2 0.4,-0.3 0.7,-0.2 1.3,0.7 2,2.1 2,3.5 0,0.7 -0.2,1.4 -0.5,2 -0.8,1.2 -2.2,2 -3.6,2 z" id="path8-4"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Collar_Pretty_Jewelry.tw b/src/art/vector/layers/Collar_Pretty_Jewelry.tw new file mode 100644 index 0000000000000000000000000000000000000000..e162446ae37f052e75deba8ea97b83d2ffa19baa --- /dev/null +++ b/src/art/vector/layers/Collar_Pretty_Jewelry.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Collar_Pretty_Jewelry [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 290.4,199.2 c 0,0 -0.1,0 -0.1,0 -0.3,-0.2 -0.7,-1.3 -0.7,-1.7 -0.1,-0.3 -0.4,-1.5 -0.2,-1.8 l 0,-0.1 0.1,-0.1 c 0.1,0 0.1,0 0.2,0 0.3,0.2 0.7,1.3 0.7,1.7 l 0,0 c 0.1,0.3 0.4,1.5 0.2,1.8 l 0,0.1 -0.2,0.1 c 0,0 0,0 0,0 z m -0.7,-2.8 c 0,0.3 0.1,0.6 0.2,1 0.1,0.4 0.2,0.8 0.3,1 0,-0.3 -0.1,-0.6 -0.2,-1 l 0,0 c -0.1,-0.5 -0.2,-0.8 -0.3,-1 z" id="path7-4"/><path d="m 291.2,202.6 c -0.6,0 -1.2,-0.7 -1.5,-1.8 -0.4,-1.2 -0.2,-2.4 0.5,-2.7 0.7,-0.3 1.5,0.5 1.8,1.7 l 0,0 c 0.4,1.2 0.2,2.4 -0.5,2.7 -0.1,0 -0.2,0.1 -0.3,0.1 z m -0.8,-4.2 c -0.1,0 -0.1,0 -0.2,0 -0.5,0.2 -0.6,1.2 -0.3,2.2 0.3,1 1,1.7 1.4,1.5 0.5,-0.2 0.6,-1.2 0.3,-2.2 l 0,0 c -0.2,-0.9 -0.8,-1.5 -1.2,-1.5 z" id="path9-49"/><path d="m 292.6,206.1 c -0.2,0 -0.4,-0.2 -0.9,-2.1 -0.6,-2.2 -0.4,-2.2 -0.3,-2.3 0.2,-0.1 0.3,0.2 0.5,0.7 0.1,0.4 0.3,0.9 0.4,1.4 0.7,2.2 0.5,2.2 0.3,2.3 0,0 0,0 0,0 z" id="path11-9"/><path d="m 293.8,209.5 c -0.6,0 -1.4,-0.7 -1.8,-1.8 -0.2,-0.6 -0.3,-1.2 -0.3,-1.6 0.1,-0.5 0.3,-0.9 0.6,-1 0.4,-0.1 0.8,0 1.2,0.3 0.4,0.3 0.7,0.8 0.9,1.4 0.5,1.2 0.3,2.4 -0.4,2.7 0,0 -0.1,0 -0.2,0 z m -1.1,-4.1 c -0.1,0 -0.1,0 -0.1,0 -0.2,0.1 -0.3,0.3 -0.4,0.7 0,0.4 0,0.9 0.2,1.5 0.4,1.1 1.2,1.7 1.6,1.5 0.4,-0.2 0.6,-1.1 0.2,-2.2 -0.2,-0.5 -0.5,-1 -0.8,-1.2 -0.3,-0.2 -0.5,-0.3 -0.7,-0.3 z" id="path13-3"/><path d="m 303,210.8 c -0.3,0 -0.5,-0.1 -0.7,-0.2 -0.6,-0.5 -0.4,-1.7 0.5,-2.7 0.9,-1 2,-1.4 2.6,-0.9 0.6,0.5 0.4,1.7 -0.5,2.7 -0.6,0.7 -1.3,1.1 -1.9,1.1 z m 1.7,-3.6 c -0.5,0 -1.1,0.4 -1.6,1 -0.7,0.8 -0.9,1.8 -0.5,2.1 0.4,0.4 1.3,0 2,-0.8 0.7,-0.8 0.9,-1.8 0.5,-2.1 -0.1,-0.2 -0.2,-0.2 -0.4,-0.2 z" id="path15"/><path d="m 307.1,205 c -0.2,0 -0.3,0 -0.4,-0.1 -0.6,-0.4 -0.5,-1.5 0.2,-2.6 0.7,-1.1 1.7,-1.7 2.3,-1.3 0.3,0.2 0.4,0.6 0.4,1.1 -0.1,0.5 -0.3,1 -0.6,1.5 -0.3,0.5 -0.7,0.9 -1.1,1.2 -0.3,0.1 -0.6,0.2 -0.8,0.2 z m 1.6,-3.7 c -0.4,0 -1,0.4 -1.5,1.2 -0.6,1 -0.7,1.9 -0.3,2.1 0.2,0.1 0.4,0.1 0.7,-0.1 0.4,-0.2 0.7,-0.6 1,-1 0.3,-0.5 0.5,-0.9 0.5,-1.3 0,-0.4 0,-0.6 -0.2,-0.7 0,-0.2 -0.1,-0.2 -0.2,-0.2 z" id="path17"/><path d="m 304.7,207.8 0,0 c -0.2,-0.1 -0.5,-0.3 0.9,-2.2 0.3,-0.5 0.7,-0.9 1,-1.2 0.4,-0.4 0.6,-0.5 0.8,-0.4 l 0.1,0 0,0.1 c 0.1,0.4 -0.8,1.6 -1.1,1.9 -0.3,0.6 -1.3,1.8 -1.7,1.8 l 0,0 z m 2,-2.8 c -0.2,0.2 -0.5,0.5 -0.7,0.9 -0.3,0.4 -0.5,0.7 -0.7,1 0.2,-0.2 0.5,-0.5 0.7,-0.9 0.3,-0.4 0.5,-0.7 0.7,-1 z" id="path19"/><path d="m 311.6,198.9 c -0.2,0 -0.3,0 -0.5,-0.1 -0.3,-0.2 -0.5,-0.6 -0.5,-1.1 0,-0.5 0.1,-1 0.4,-1.4 0.6,-1 1.6,-1.6 2.2,-1.2 0.3,0.2 0.5,0.6 0.5,1.1 0,0.5 -0.1,1 -0.4,1.4 l 0,0 c -0.3,0.5 -0.6,0.9 -1,1.1 -0.2,0.1 -0.5,0.2 -0.7,0.2 z m 1.2,-3.6 c -0.4,0 -1,0.4 -1.4,1.1 -0.2,0.4 -0.4,0.9 -0.4,1.2 0,0.3 0.1,0.6 0.3,0.7 0.2,0.1 0.5,0.1 0.8,-0.1 0.3,-0.2 0.7,-0.5 0.9,-0.9 0.2,-0.4 0.4,-0.9 0.4,-1.2 0,-0.3 -0.1,-0.6 -0.3,-0.7 -0.1,0 -0.2,-0.1 -0.3,-0.1 z" id="path21"/><path d="m 309.1,201.5 -0.1,-0.1 0,-0.1 c 0,-0.2 0.4,-0.8 1.2,-1.9 0.6,-0.7 1.3,-1.6 1.5,-1.7 l 0.1,0 0.1,0.1 0,0.1 c 0,0.2 -0.4,0.8 -1.2,1.9 l 0,0 c -0.5,0.8 -1.2,1.6 -1.6,1.7 l 0,0 z" id="path23"/><path d="m 300.9,212.9 -0.1,-0.1 0,-0.1 c 0,-0.1 -0.1,-0.3 0.9,-1.7 l 0,0 c 1.1,-1.7 1.2,-1.6 1.4,-1.5 0.2,0.1 0.3,0.2 -0.8,1.9 -1.1,1.4 -1.3,1.5 -1.4,1.5 l 0,0 z" id="path27"/><path d="m 294.8,212.7 0,0 c -0.2,-0.1 -0.5,-0.8 -0.8,-2 -0.5,-2.1 -0.4,-2.2 -0.2,-2.2 l 0,0 c 0.2,0 0.3,-0.1 0.9,2 0.3,1.2 0.4,1.9 0.3,2.1 l 0,0.1 -0.2,0 z" id="path29"/><path id="path33" d="m 302.2,215.3 c -0.5,2.1 -2.9,4.3 -5.7,5.9 -1.7,-2 -3.1,-5.4 -2.8,-7.8 0.3,-2 2.7,-3.6 4.3,1.1 3,-4.5 4.7,-1.1 4.2,0.8 z"/><path id="path35" d="m 301.6,215 c -0.5,2 -2.8,4.1 -5.4,5.6 -1.6,-1.9 -2.9,-5.1 -2.6,-7.3 0.2,-1.9 2.5,-3.4 4,1 2.8,-4.3 4.4,-1.1 4,0.7 z" class="steel_chastity"/><rect x="331.59637" y="157.53075" transform="matrix(0.98277696,0.18479567,-0.18479567,0.98277696,0,0)" width="0.40000939" height="1.8000422" id="rect39"/><circle r="0.79999298" transform="matrix(0.10930096,-0.9940087,0.9940087,0.10930096,0,0)" cx="-182.06116" cy="318.84866" id="ellipse41-6"/><path d="m 312.9,195.6 c 0,0 -0.1,-0.1 -0.1,-0.1 -0.1,-0.3 0.5,-1.4 0.6,-1.7 0.2,-0.3 0.8,-1.4 1.1,-1.5 l 0.1,0 0.1,0 c 0.1,0 0.1,0.1 0.1,0.2 0.1,0.3 -0.5,1.4 -0.6,1.7 l 0,0 c -0.2,0.3 -0.8,1.4 -1.1,1.5 l -0.1,0 -0.1,-0.1 c 0,0.1 0,0 0,0 z m 1.5,-2.5 c -0.2,0.2 -0.3,0.5 -0.6,0.9 -0.2,0.4 -0.4,0.7 -0.5,0.9 0.2,-0.2 0.3,-0.5 0.6,-0.9 l 0,0 c 0.2,-0.3 0.4,-0.7 0.5,-0.9 z" id="path43"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Collar_Retirement_Cruel.tw b/src/art/vector/layers/Collar_Retirement_Cruel.tw new file mode 100644 index 0000000000000000000000000000000000000000..4dc79697adcb814a25e38da6894bd857e5ffb186 --- /dev/null +++ b/src/art/vector/layers/Collar_Retirement_Cruel.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Collar_Retirement_Cruel [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 313.9,194.52901 c -0.2,0.2 -0.4,0.3 -0.7,0.4 -6,2.3 -10.6,2.9 -14,2.8 -5.9,-0.2 -7.5,-2.3 -7.7,-2.5 -0.7,-0.8 -0.4,-2.1 0.8,-2.6 1.3,-0.5 2.5,-0.5 3.2,0.3 0.2,0.2 3.4,3.4 15.5,-1.1 1.2,-0.5 2.7,-0.1 3.3,0.7 0.5,0.6 0.3,1.4 -0.4,2" id="path11-3"/><path class="steel_chastity" d="m 299.8,197.72901 c -6,0 -7.8,-2 -8,-2.1 -0.8,-0.8 -0.7,-2 0.5,-2.5 1.2,-0.6 2.4,-0.6 3.2,0.2 0.2,0.2 3.8,3.2 15.4,-1.6 1.2,-0.5 2.7,-0.2 3.4,0.6 0.7,0.8 0.3,1.9 -0.9,2.3 -5.8,2.3 -10.3,3.1 -13.6,3.1 z" id="path13-33"/><path transform="translate(-220,3.42901)" d="m 516.4,190.9 7.2,0 -0.5,2.9 -6.2,0 z" id="polygon17"/><path id="path19-8" d="m 303.1,194.82901 0,2.4 -6.1,0 0,-2.4 6.1,0 m 0.5,-0.5 -7.3,-0.1 0.2,3 7.1,0 0,-2.9 0,0 z" class="steel_chastity"/><text id="text21" name="Collar_Text" x="297.13312" y="196.96181" style="font-size:1.96150005px;font-family:sans-serif;fill:#ff0000">8888</text></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Collar_Retirement_Nice.tw b/src/art/vector/layers/Collar_Retirement_Nice.tw new file mode 100644 index 0000000000000000000000000000000000000000..55d28ca5a725eb04f9cf2add6987ca9d17c43e71 --- /dev/null +++ b/src/art/vector/layers/Collar_Retirement_Nice.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Collar_Retirement_Nice [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 290.3,199.4 c 0,0 -0.1,0 -0.1,0 -0.3,-0.2 -0.7,-1.3 -0.7,-1.7 -0.1,-0.3 -0.4,-1.5 -0.2,-1.8 l 0,-0.1 0.1,-0.1 c 0.1,0 0.1,0 0.2,0 0.3,0.2 0.7,1.3 0.7,1.7 l 0,0 c 0.1,0.3 0.4,1.5 0.2,1.8 l 0,0.1 -0.2,0.1 c 0,0 0,0 0,0 z m -0.7,-2.8 c 0,0.3 0.1,0.6 0.2,1 0.1,0.4 0.2,0.8 0.3,1 0,-0.3 -0.1,-0.6 -0.2,-1 l 0,0 c -0.1,-0.5 -0.2,-0.8 -0.3,-1 z" id="path7-5"/><path d="m 291.1,202.8 c -0.6,0 -1.2,-0.7 -1.5,-1.8 -0.4,-1.2 -0.2,-2.4 0.5,-2.7 0.7,-0.3 1.5,0.5 1.8,1.7 l 0,0 c 0.4,1.2 0.2,2.4 -0.5,2.7 -0.1,0 -0.2,0.1 -0.3,0.1 z m -0.8,-4.2 c -0.1,0 -0.1,0 -0.2,0 -0.5,0.2 -0.6,1.2 -0.3,2.2 0.3,1 1,1.7 1.4,1.5 0.5,-0.2 0.6,-1.2 0.3,-2.2 l 0,0 c -0.2,-0.9 -0.8,-1.5 -1.2,-1.5 z" id="path9-02"/><path d="m 292.5,206.3 c -0.2,0 -0.4,-0.2 -0.9,-2.1 -0.6,-2.2 -0.4,-2.2 -0.3,-2.3 0.2,-0.1 0.3,0.2 0.5,0.7 0.1,0.4 0.3,0.9 0.4,1.4 0.7,2.2 0.5,2.2 0.3,2.3 0,0 0,0 0,0 z" id="path11-94"/><path d="m 293.7,209.7 c -0.6,0 -1.4,-0.7 -1.8,-1.8 -0.2,-0.6 -0.3,-1.2 -0.3,-1.6 0.1,-0.5 0.3,-0.9 0.6,-1 0.4,-0.1 0.8,0 1.2,0.3 0.4,0.3 0.7,0.8 0.9,1.4 0.5,1.2 0.3,2.4 -0.4,2.7 0,0 -0.1,0 -0.2,0 z m -1.1,-4.1 c -0.1,0 -0.1,0 -0.1,0 -0.2,0.1 -0.3,0.3 -0.4,0.7 0,0.4 0,0.9 0.2,1.5 0.4,1.1 1.2,1.7 1.6,1.5 0.4,-0.2 0.6,-1.1 0.2,-2.2 -0.2,-0.5 -0.5,-1 -0.8,-1.2 -0.3,-0.2 -0.5,-0.3 -0.7,-0.3 z" id="path13-35"/><path d="m 302.9,211 c -0.3,0 -0.5,-0.1 -0.7,-0.2 -0.6,-0.5 -0.4,-1.7 0.5,-2.7 0.9,-1 2,-1.4 2.6,-0.9 0.6,0.5 0.4,1.7 -0.5,2.7 -0.6,0.7 -1.3,1.1 -1.9,1.1 z m 1.7,-3.6 c -0.5,0 -1.1,0.4 -1.6,1 -0.7,0.8 -0.9,1.8 -0.5,2.1 0.4,0.4 1.3,0 2,-0.8 0.7,-0.8 0.9,-1.8 0.5,-2.1 -0.1,-0.2 -0.2,-0.2 -0.4,-0.2 z" id="path15-1"/><path d="m 307,205.2 c -0.2,0 -0.3,0 -0.4,-0.1 -0.6,-0.4 -0.5,-1.5 0.2,-2.6 0.7,-1.1 1.7,-1.7 2.3,-1.3 0.3,0.2 0.4,0.6 0.4,1.1 -0.1,0.5 -0.3,1 -0.6,1.5 -0.3,0.5 -0.7,0.9 -1.1,1.2 -0.3,0.1 -0.6,0.2 -0.8,0.2 z m 1.6,-3.7 c -0.4,0 -1,0.4 -1.5,1.2 -0.6,1 -0.7,1.9 -0.3,2.1 0.2,0.1 0.4,0.1 0.7,-0.1 0.4,-0.2 0.7,-0.6 1,-1 0.3,-0.5 0.5,-0.9 0.5,-1.3 0,-0.4 0,-0.6 -0.2,-0.7 0,-0.2 -0.1,-0.2 -0.2,-0.2 z" id="path17-7"/><path d="m 304.6,208 0,0 c -0.2,-0.1 -0.5,-0.3 0.9,-2.2 0.3,-0.5 0.7,-0.9 1,-1.2 0.4,-0.4 0.6,-0.5 0.8,-0.4 l 0.1,0 0,0.1 c 0.1,0.4 -0.8,1.6 -1.1,1.9 -0.3,0.6 -1.3,1.7 -1.7,1.8 l 0,0 z m 2,-2.8 c -0.2,0.2 -0.5,0.5 -0.7,0.9 -0.3,0.4 -0.5,0.7 -0.7,1 0.2,-0.2 0.5,-0.5 0.7,-0.9 0.3,-0.4 0.5,-0.7 0.7,-1 z" id="path19-4"/><path d="m 311.5,199.1 c -0.2,0 -0.3,0 -0.5,-0.1 -0.3,-0.2 -0.5,-0.6 -0.5,-1.1 0,-0.5 0.1,-1 0.4,-1.4 0.6,-1 1.6,-1.6 2.2,-1.2 0.3,0.2 0.5,0.6 0.5,1.1 0,0.5 -0.1,1 -0.4,1.4 l 0,0 c -0.3,0.5 -0.6,0.9 -1,1.1 -0.2,0.1 -0.5,0.2 -0.7,0.2 z m 1.2,-3.6 c -0.4,0 -1,0.4 -1.4,1.1 -0.2,0.4 -0.4,0.9 -0.4,1.2 0,0.3 0.1,0.6 0.3,0.7 0.2,0.1 0.5,0.1 0.8,-0.1 0.3,-0.2 0.7,-0.5 0.9,-0.9 0.2,-0.4 0.4,-0.9 0.4,-1.2 0,-0.3 -0.1,-0.6 -0.3,-0.7 -0.1,0 -0.2,-0.1 -0.3,-0.1 z" id="path21-3"/><path d="m 309,201.7 -0.1,-0.1 0,-0.1 c 0,-0.2 0.4,-0.8 1.2,-1.9 0.6,-0.7 1.3,-1.6 1.5,-1.7 l 0.1,0 0.1,0.1 0,0.1 c 0,0.2 -0.4,0.8 -1.2,1.9 l 0,0 c -0.5,0.8 -1.3,1.6 -1.6,1.7 l 0,0 z" id="path23-1"/><path d="m 300.8,213.1 -0.1,-0.1 0,-0.1 c 0,-0.1 -0.1,-0.3 0.9,-1.7 l 0,0 c 1.1,-1.7 1.2,-1.6 1.4,-1.5 0.2,0.1 0.3,0.2 -0.8,1.9 -1.1,1.4 -1.3,1.5 -1.4,1.5 l 0,0 z" id="path25-4"/><path d="m 294.7,212.8 0,0 c -0.2,-0.1 -0.5,-0.8 -0.8,-2 -0.5,-2.1 -0.4,-2.2 -0.2,-2.2 l 0,0 c 0.2,0 0.3,-0.1 0.9,2 0.3,1.2 0.4,1.9 0.3,2.1 l 0,0.1 -0.2,0 z" id="path27-6"/><path d="m 314.8,192.7 c 0.1,0.3 -0.5,1.4 -0.6,1.7 l 0,0 c -0.2,0.3 -0.8,1.4 -1.1,1.5 l -0.1,0 -0.1,0 c 0,0 0,0 -0.1,0 0,0 -0.1,-0.1 -0.1,-0.1 -0.1,-0.3 0.5,-1.4 0.6,-1.7 0.2,-0.3 0.8,-1.4 1.1,-1.5" id="path29-9"/><path d="m 314.3,193.3 c -0.2,0.2 -0.3,0.5 -0.6,0.9 -0.2,0.4 -0.4,0.7 -0.5,0.9 0.2,-0.2 0.3,-0.5 0.6,-0.9 l 0,0 c 0.2,-0.3 0.4,-0.7 0.5,-0.9 z" id="path31"/><path transform="translate(-220,0)" d="m 513.9,212.1 7.3,0.5 -0.2,3.5 -7.3,-0.4 z" id="polygon35"/><path id="path37-4" d="m 294.4,212.7 6.3,0.4 -0.1,2.5 -6.3,-0.4 0.1,-2.5 m -0.5,-0.6 -0.2,3.6 7.3,0.4 0.2,-3.6 -7.3,-0.4 0,0 z"/><rect id="rect41" height="3.399874" width="7.0997367" transform="matrix(0.99833702,0.05764723,-0.05764723,0.99833702,0,0)" y="194.69586" x="305.61774"/><path id="path43-2" d="m 294.4,212.6 6.1,0.4 -0.1,2.4 -6.1,-0.4 0.1,-2.4 m -0.5,-0.6 -0.2,3.4 7.1,0.4 0.2,-3.4 -7.1,-0.4 0,0 z" class="steel_chastity"/><text transform="matrix(0.99833702,0.05764723,-0.05764723,0.99833702,0,0)" name="Collar_Text" x="306.34277" y="197.37833" style="font-size:1.96150005px;font-family:sans-serif;fill:#ff0000" id="text1009">8888</text></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Collar_Satin_Choker.tw b/src/art/vector/layers/Collar_Satin_Choker.tw new file mode 100644 index 0000000000000000000000000000000000000000..b7043ecdda300cbc137dca62bb057e44d0d5548a --- /dev/null +++ b/src/art/vector/layers/Collar_Satin_Choker.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Collar_Satin_Choker [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path9-9" d="m 293.7,188.8 c 1.8,1 8.4,3.6 18,-1.9 0.3,-0.2 0.6,0 0.7,0.3 l 0.7,3.5 c 0,0.2 -0.1,0.4 -0.2,0.5 -5.6,3.3 -9.7,4.3 -13,4.3 -5.2,0 -7.1,-1.8 -7.6,-2.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 l 0.9,-3.4 c 0,-0.4 0.3,-0.6 0.6,-0.4 z"/><path id="path13-6" d="m 292.8,190.1 c 0,0.1 5.6,6.5 19.9,-1.6 l 0.1,0.8 c -5.5,3.1 -9.9,4 -13,4 -5,0 -7.5,-2.3 -7.3,-2.3" class="steel_chastity"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Collar_Shock_Punishment.tw b/src/art/vector/layers/Collar_Shock_Punishment.tw new file mode 100644 index 0000000000000000000000000000000000000000..b55f2d6038fd274951ccea31c0732ffae2166fb5 --- /dev/null +++ b/src/art/vector/layers/Collar_Shock_Punishment.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Collar_Shock_Punishment [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path9-4" d="m 299.9,194.4 c -5.4,0 -7.7,-3.1 -7.8,-3.3 -0.5,-0.7 -0.3,-1.6 0.4,-2.1 0.7,-0.5 1.6,-0.3 2.1,0.4 0.2,0.3 4.4,5.6 16.9,-2 0.7,-0.4 1.6,-0.2 2.1,0.5 0.4,0.7 0.2,1.6 -0.5,2.1 -5.7,3.4 -10,4.4 -13.2,4.4 z"/><rect x="308.4668" y="166.71555" transform="matrix(0.99759571,0.06930217,-0.06930217,0.99759571,0,0)" width="6.3000274" height="10.500045" id="rect11"/><rect x="308.4549" y="166.72701" transform="matrix(0.99759571,0.06930217,-0.06930217,0.99759571,0,0)" class="steel_chastity" width="6.0000257" height="10.100043" id="rect13-0"/><circle cx="298.70001" cy="192.8" r="1.3" id="circle15" style="fill:#ce5b5b"/><circle style="fill:#d13737" cx="298.70001" cy="192.7" r="1.2" id="circle17"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Collar_Stylish_Leather.tw b/src/art/vector/layers/Collar_Stylish_Leather.tw new file mode 100644 index 0000000000000000000000000000000000000000..dd4821a14829f406020ff314be6ed51b11930d65 --- /dev/null +++ b/src/art/vector/layers/Collar_Stylish_Leather.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Collar_Stylish_Leather [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path9-3" d="m 293.7,188.8 c 1.8,1 8.4,3.6 18,-1.9 0.3,-0.2 0.6,0 0.7,0.3 l 0.7,3.5 c 0,0.2 -0.1,0.4 -0.2,0.5 -5.6,3.3 -9.7,4.3 -13,4.3 -5.2,0 -7.1,-1.8 -7.6,-2.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 l 0.9,-3.4 c 0,-0.4 0.3,-0.6 0.6,-0.4 z"/><path transform="translate(-220,-3.853296e-6)" style="fill:#ffffff" d="m 518.5,195.3 3.4,0 0,-0.6 1,0 0,1.5 -5.4,0 0,-7 5.4,0 0,1.3 -1,0.1 0,-0.5 -3.4,0 z" id="polygon11"/><rect x="-183.11382" y="302.88812" transform="matrix(0.03349876,-0.99943876,0.99943876,0.03349876,0,0)" class="white" width="0.9999612" height="2.499903" id="rect13"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Collar_Tight_Steel.tw b/src/art/vector/layers/Collar_Tight_Steel.tw new file mode 100644 index 0000000000000000000000000000000000000000..790bc78a94c2ca5aa2e8d61521fe9e0563d73aed --- /dev/null +++ b/src/art/vector/layers/Collar_Tight_Steel.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Collar_Tight_Steel [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 313.9,191.1 c -0.2,0.2 -0.4,0.3 -0.7,0.4 -6,2.3 -10.6,2.9 -14,2.8 -5.9,-0.2 -7.5,-2.3 -7.7,-2.5 -0.7,-0.8 -0.4,-2.1 0.8,-2.6 1.3,-0.5 2.5,-0.5 3.2,0.3 0.2,0.2 3.4,3.4 15.5,-1.1 1.2,-0.5 2.7,-0.1 3.3,0.7 0.5,0.6 0.3,1.4 -0.4,2" id="path11-0"/><path class="steel_chastity" d="m 299.7,194.3 c -6,0 -7.8,-2 -8,-2.1 -0.8,-0.8 -0.7,-2 0.5,-2.5 1.2,-0.6 2.4,-0.6 3.2,0.2 0.2,0.2 3.8,3.2 15.4,-1.6 1.2,-0.5 2.7,-0.2 3.4,0.6 0.7,0.8 0.3,1.9 -0.9,2.3 -5.7,2.3 -10.2,3.1 -13.6,3.1 z" id="path13"/><circle r="3.5999207" transform="matrix(0.500011,-0.86601905,0.86601905,0.500011,0,0)" style="fill:none;stroke:#fefff2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:19" cx="-20.265337" cy="357.12662" id="ellipse15"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Feet.tw b/src/art/vector/layers/Feet.tw new file mode 100644 index 0000000000000000000000000000000000000000..5d1db1859d9731cf1426268e3b96ab51abc21f2f --- /dev/null +++ b/src/art/vector/layers/Feet.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Feet [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 268.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" class="skin" id="XMLID_463_"/><path d="m 311.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="skin" id="XMLID_510_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Flaccid_0.tw b/src/art/vector/layers/Flaccid_0.tw new file mode 100644 index 0000000000000000000000000000000000000000..57cd516a5be06094f9b22771fabddf4cd49c3c62 --- /dev/null +++ b/src/art/vector/layers/Flaccid_0.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Flaccid_0 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path6" d="m 261.5,440.9 c 0,0.1 0.2,0.1 0.3,0.1 1.1,0.1 1.1,1.7 0.8,2.7 0,0.1 0,0.2 -0.1,0.3 -0.3,1.2 -0.8,1.7 -0.8,1.7 -0.1,0.1 -0.5,0.5 -0.9,0.6 -0.1,0 -0.2,0.1 -0.4,0.1 -1.5,-0.1 -2.2,-1.5 -2.4,-2.8 0,-0.1 -0.1,-0.3 -0.1,-0.4 -0.1,-0.6 -0.1,-1.2 0.2,-1.5 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.1 0.2,-0.2"/><path id="path8" d="m 258.2,439.2 c 0,-0.2 0,-0.5 0,-0.8 0,-0.2 0,-0.8 0.2,-1.7 0.1,-0.5 0.2,-1 0.2,-1.1 0.6,-2.8 2.6,-4.3 2.6,-4.3 0.2,-0.2 0.8,-0.5 1,-0.7 0.5,-0.3 1.9,-1 3.9,-0.3 0.3,0.1 2.2,0.9 2.6,1.4 0.4,0.7 -0.3,-0.4 -0.4,-0.3 -0.1,0.1 -0.2,0.1 -0.3,0.3 -0.2,0.2 -0.2,0.4 -0.3,0.5 -0.2,0.4 -0.6,0.5 -1.1,0.7 -0.7,0.3 -1.2,0.5 -1.7,0.8 -0.3,0.3 -0.6,0.5 -1,1.1 -0.4,0.5 -0.6,0.8 -0.8,1.2 -0.1,0.1 -0.2,0.5 -0.4,1.1 -0.1,0.4 -0.2,0.5 -0.2,0.7 -0.1,0.3 -0.2,0.6 -0.2,0.8 -0.1,0.5 -0.4,1.4 -1.3,2.2 -0.4,0.4 -0.9,0.9 -1.5,0.7 -1,0 -1.3,-2.1 -1.3,-2.3 z"/><path id="path10" d="m 264.9,430.2 c 1,-0.1 3.3,0.7 3.7,1.5 0.3,0.7 0.2,-0.2 -0.4,0.4 -0.3,0.1 -0.8,0.3 -1.4,0.6 -1.4,0.6 -1.6,0.6 -2.1,1 -0.5,0.4 -0.9,0.9 -1.1,1.1 -0.2,0.2 -0.4,0.5 -0.6,0.9 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.3 -0.4,1.3 -1,2.5 -0.8,3.7 0,0.1 0,0.2 0,0.3 0,0.1 0,0.2 0,0.3 -0.3,0.6 0.5,0.5 0.7,1 0.1,0.7 0,1.3 -0.1,1.9 0,0.1 -0.1,0.2 -0.1,0.3 -0.3,1 -0.8,1.4 -0.8,1.4 -0.1,0.1 -0.3,0.3 -0.6,0.5 -0.1,0.1 -0.2,0.1 -0.3,0.1 -1.6,0.5 -2.3,-1.3 -2.6,-2.5 0,-0.1 -0.1,-0.3 -0.1,-0.4 -0.1,-0.5 -0.1,-1.1 0.2,-1.4 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.1 0.1,-0.2 -0.5,-1.7 -0.1,-3.3 0.1,-4.9 0,-0.1 0,-0.2 0.1,-0.3 0.1,-0.8 0.1,-1 0.4,-1.7 0.1,-0.3 0.5,-1.4 1.5,-2.4 1.9,-1.6 3.2,-1.5 4.3,-1.6 z" class="skin penis"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Flaccid_1.tw b/src/art/vector/layers/Flaccid_1.tw new file mode 100644 index 0000000000000000000000000000000000000000..b454ab513d149aedb70ea59093fc75fe7924fd93 --- /dev/null +++ b/src/art/vector/layers/Flaccid_1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Flaccid_1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path6-3" d="m 257.5,449.9 c 0,0.1 0.3,0.2 0.5,0.3 1.9,0.2 1.9,3.1 1.5,4.9 0,0.2 -0.1,0.3 -0.1,0.5 -0.6,2.2 -1.6,3.1 -1.6,3.1 -0.2,0.2 -0.9,0.9 -1.7,1.2 -0.2,0.1 -0.4,0.1 -0.7,0.2 -2.8,-0.1 -4,-2.7 -4.4,-5.1 -0.1,-0.2 -0.1,-0.5 -0.2,-0.8 -0.2,-1 -0.2,-2.1 0.4,-2.7 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.4"/><path id="path8-6" d="m 251.5,446.8 c 0,-0.3 0,-0.9 0,-1.5 0,-0.3 0.1,-1.5 0.3,-3.2 0.1,-1 0.3,-1.8 0.3,-2 1,-5.2 4.8,-7.8 4.8,-7.8 0.4,-0.3 1.4,-0.9 1.8,-1.3 0.8,-0.5 3.4,-1.7 7,-0.6 0.5,0.2 4.1,1.7 4.7,2.6 0.7,1.2 -0.5,-0.8 -0.7,-0.5 -0.1,0.1 -0.3,0.3 -0.6,0.6 -0.3,0.4 -0.4,0.8 -0.5,0.9 -0.3,0.6 -1,0.8 -2.1,1.3 -1.4,0.5 -2.2,0.9 -3.1,1.5 -0.6,0.5 -1,1 -1.9,2 -0.7,0.9 -1.2,1.4 -1.6,2.3 -0.1,0.3 -0.3,0.8 -0.7,2 -0.3,0.7 -0.4,1 -0.5,1.3 -0.2,0.6 -0.3,1.1 -0.4,1.5 -0.2,0.9 -0.8,2.6 -2.3,4.1 -0.7,0.7 -1.7,1.6 -2.7,1.4 -1.4,-0.5 -1.8,-4.3 -1.8,-4.6 z"/><path id="path10-7" d="m 263.7,430.4 c 1.9,-0.1 6.1,1.2 6.8,2.8 0.6,1.3 0.3,-0.4 -0.7,0.8 -0.6,0.2 -1.5,0.6 -2.6,1.1 -2.5,1 -3,1.1 -3.9,1.8 -1,0.7 -1.7,1.6 -2,2 -0.3,0.4 -0.7,0.9 -1.1,1.6 -0.1,0.2 -0.2,0.4 -0.3,0.6 -0.1,0.2 -0.2,0.3 -0.3,0.5 -0.7,2.3 -1.8,4.6 -1.4,6.8 0,0.2 0,0.4 0,0.6 0,0.2 0,0.4 0,0.6 -0.6,1.2 0.9,0.9 1.2,1.9 0.3,1.3 0,2.3 -0.1,3.6 -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.6,1.8 -1.4,2.5 -1.4,2.5 -0.2,0.2 -0.5,0.5 -1,0.8 -0.2,0.1 -0.3,0.2 -0.5,0.3 -2.9,0.9 -4.2,-2.4 -4.8,-4.5 -0.1,-0.2 -0.1,-0.5 -0.2,-0.7 -0.2,-1 -0.2,-2 0.4,-2.5 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.4 -1,-3.1 -0.2,-6 0.2,-8.9 0,-0.2 0.1,-0.4 0.1,-0.6 0.2,-1.4 0.2,-1.8 0.8,-3.2 0.2,-0.5 0.9,-2.6 2.8,-4.5 3.1,-3.4 5.5,-3.2 7.5,-3.3 z" class="skin penis"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Flaccid_2.tw b/src/art/vector/layers/Flaccid_2.tw new file mode 100644 index 0000000000000000000000000000000000000000..a7727d281124c3656a7e9d41fd3d43d078095df3 --- /dev/null +++ b/src/art/vector/layers/Flaccid_2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Flaccid_2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path6-5" d="m 250.7,456.5 c 0.1,0.1 0.4,0.3 0.8,0.4 2.8,0.3 2.8,4.4 2.2,7 -0.1,0.2 -0.1,0.5 -0.2,0.7 -0.9,3.1 -2.2,4.4 -2.2,4.4 -0.3,0.3 -1.2,1.2 -2.4,1.7 -0.3,0.1 -0.6,0.2 -1,0.2 -4,-0.1 -5.8,-3.9 -6.3,-7.3 -0.1,-0.4 -0.2,-0.7 -0.2,-1.1 -0.3,-1.5 -0.2,-3.1 0.6,-3.9 0.2,-0.2 0.4,-0.3 0.6,-0.5 0.2,-0.1 0.3,-0.3 0.4,-0.6"/><path id="path8-3" d="m 242,452.1 c 0,-0.5 0,-1.2 0.1,-2.1 0,-0.4 0.1,-2.1 0.5,-4.5 0.2,-1.4 0.4,-2.5 0.5,-2.8 1.5,-7.5 6.9,-11.2 6.9,-11.2 0.6,-0.5 2,-1.3 2.6,-1.8 1.2,-0.8 4.9,-2.5 10.1,-0.9 0.7,0.2 5.9,2.4 6.7,3.8 1,1.8 -0.7,-1.1 -1,-0.8 -0.2,0.1 -0.5,0.4 -0.8,0.8 -0.4,0.6 -0.6,1.1 -0.7,1.3 -0.4,0.9 -1.5,1.2 -3,1.8 -2,0.8 -3.2,1.3 -4.4,2.2 -0.9,0.7 -1.5,1.4 -2.7,2.9 -1.1,1.3 -1.7,2 -2.2,3.2 -0.2,0.4 -0.5,1.2 -1.1,2.8 -0.4,1 -0.5,1.4 -0.7,1.9 -0.3,0.9 -0.4,1.6 -0.5,2.2 -0.3,1.3 -1.2,3.8 -3.4,5.8 -1.1,1 -2.5,2.3 -3.9,1.9 -2.4,-0.6 -2.9,-6.1 -3,-6.5 z"/><path id="path10-5" d="m 259.6,428.5 c 2.7,-0.2 8.7,1.7 9.7,4 0.9,1.9 0.4,-0.6 -0.9,1.1 -0.8,0.4 -2.1,0.9 -3.7,1.6 -3.6,1.4 -4.3,1.6 -5.6,2.5 -1.4,1 -2.4,2.3 -2.9,2.9 -0.4,0.5 -1,1.3 -1.6,2.3 -0.2,0.3 -0.3,0.6 -0.5,0.8 -0.2,0.2 -0.3,0.5 -0.4,0.7 -1.1,3.3 -2.5,6.6 -2,9.7 0,0.3 0,0.6 0,0.9 0,0.3 0,0.6 -0.1,0.9 -0.9,1.7 1.3,1.3 1.7,2.8 0.4,1.8 0,3.3 -0.1,5.1 -0.1,0.3 -0.1,0.6 -0.2,0.8 -0.8,2.6 -2,3.6 -2,3.6 -0.2,0.2 -0.8,0.8 -1.5,1.2 -0.2,0.1 -0.5,0.3 -0.8,0.4 -4.2,1.3 -6,-3.5 -6.9,-6.5 -0.1,-0.3 -0.2,-0.7 -0.2,-1 -0.2,-1.4 -0.2,-2.8 0.5,-3.6 0.2,-0.2 0.4,-0.3 0.5,-0.4 0.2,-0.1 0.3,-0.3 0.4,-0.5 -1.4,-4.5 -0.3,-8.6 0.2,-12.8 0,-0.3 0.1,-0.6 0.1,-0.9 0.3,-2.1 0.3,-2.6 1.2,-4.6 0.3,-0.7 1.3,-3.7 4,-6.4 4.8,-4.7 8.2,-4.4 11.1,-4.6 z" class="skin penis"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Flaccid_3.tw b/src/art/vector/layers/Flaccid_3.tw new file mode 100644 index 0000000000000000000000000000000000000000..21200339e39f535190def1ab96dea44a05c5490c --- /dev/null +++ b/src/art/vector/layers/Flaccid_3.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Flaccid_3 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 243.1,468.2 c 0.1,0.2 0.6,0.4 1.1,0.6 4,0.4 4,6.4 3.2,10.1 -0.1,0.3 -0.2,0.7 -0.2,1 -1.2,4.5 -3.2,6.3 -3.2,6.3 -0.4,0.4 -1.8,1.8 -3.5,2.5 -0.4,0.2 -0.9,0.3 -1.4,0.3 -5.8,-0.2 -8.4,-5.7 -9.2,-10.6 -0.1,-0.5 -0.2,-1 -0.3,-1.6 -0.4,-2.2 -0.3,-4.4 0.8,-5.7 0.3,-0.3 0.6,-0.5 0.8,-0.7 0.3,-0.2 0.5,-0.4 0.6,-0.8" id="path8-62"/><path d="m 230.6,461.9 c 0,-0.7 0,-1.8 0.1,-3 0,-0.6 0.2,-3 0.7,-6.6 0.3,-2.1 0.6,-3.7 0.7,-4.1 2.2,-10.8 10,-16.3 10,-16.3 0.9,-0.7 2.9,-1.9 3.8,-2.6 1.8,-1.1 7.2,-3.6 14.6,-1.3 1.1,0.3 8.5,3.5 9.7,5.5 1.5,2.5 -1,-1.6 -1.5,-1.1 -0.2,0.2 -0.7,0.5 -1.2,1.2 -0.6,0.8 -0.9,1.6 -1,1.9 -0.6,1.3 -2.1,1.7 -4.3,2.6 -2.8,1.1 -4.6,1.9 -6.4,3.2 -1.3,1 -2.2,2 -3.9,4.2 -1.5,1.9 -2.4,2.9 -3.2,4.7 -0.3,0.5 -0.7,1.7 -1.5,4.1 -0.5,1.4 -0.7,2.1 -0.9,2.8 -0.4,1.3 -0.6,2.4 -0.7,3.1 -0.5,1.9 -1.7,5.5 -4.9,8.4 -1.6,1.4 -3.6,3.3 -5.6,2.8 -3.6,-0.9 -4.4,-8.9 -4.5,-9.5 z" id="path10-9"/><path class="skin penis" d="m 256.1,427.7 c 3.9,-0.2 12.6,2.5 14.1,5.8 1.3,2.8 0.6,-0.9 -1.4,1.6 -1.2,0.5 -3,1.3 -5.4,2.3 -5.2,2.1 -6.2,2.3 -8.1,3.7 -2,1.5 -3.5,3.3 -4.2,4.2 -0.6,0.8 -1.5,1.9 -2.3,3.3 -0.3,0.4 -0.5,0.8 -0.7,1.2 -0.2,0.4 -0.4,0.7 -0.5,1 -1.5,4.8 -3.7,9.6 -2.9,14.1 0,0.4 0,0.9 0,1.3 0,0.4 0,0.9 -0.1,1.3 -1.2,2.4 1.9,1.9 2.5,4 0.5,2.7 0,4.8 -0.2,7.4 -0.1,0.4 -0.2,0.8 -0.3,1.2 -1.2,3.7 -2.9,5.3 -2.9,5.3 -0.3,0.3 -1.1,1.1 -2.2,1.7 -0.3,0.2 -0.7,0.4 -1.1,0.6 -6,1.9 -8.7,-5 -10,-9.4 -0.1,-0.5 -0.2,-1 -0.3,-1.5 -0.3,-2 -0.3,-4.1 0.8,-5.2 0.3,-0.3 0.5,-0.4 0.8,-0.6 0.2,-0.2 0.4,-0.4 0.6,-0.8 -2,-6.5 -0.4,-12.4 0.3,-18.5 0.1,-0.5 0.1,-0.9 0.2,-1.3 0.5,-3 0.4,-3.8 1.7,-6.6 0.5,-1.1 1.9,-5.3 5.8,-9.3 6.6,-6.9 11.6,-6.6 15.8,-6.8 z" id="path12"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Flaccid_4.tw b/src/art/vector/layers/Flaccid_4.tw new file mode 100644 index 0000000000000000000000000000000000000000..fd7a0d2edfb3909c100474bdec99b50aefdb5ac4 --- /dev/null +++ b/src/art/vector/layers/Flaccid_4.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Flaccid_4 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path6-1" d="m 235.5,477.5 c 0.1,0.3 0.7,0.5 1.4,0.7 5.2,0.5 5.2,8.1 4.1,12.9 -0.1,0.4 -0.2,0.9 -0.3,1.3 -1.6,5.7 -4.1,8.1 -4.1,8.1 -0.5,0.5 -2.3,2.3 -4.5,3.1 -0.6,0.2 -1.1,0.4 -1.8,0.4 -7.4,-0.3 -10.7,-7.2 -11.7,-13.5 -0.2,-0.7 -0.3,-1.3 -0.4,-2 -0.5,-2.8 -0.4,-5.7 1,-7.3 0.3,-0.4 0.7,-0.6 1,-0.9 0.3,-0.3 0.6,-0.6 0.8,-1.1"/><path id="path8-2" d="m 219.6,469.5 c 0,-0.9 0,-2.3 0.1,-3.9 0,-0.8 0.2,-3.9 0.9,-8.4 0.4,-2.6 0.8,-4.7 0.9,-5.2 2.8,-13.8 12.7,-20.7 12.7,-20.8 1.1,-0.9 3.7,-2.4 4.8,-3.3 2.2,-1.4 9.1,-4.6 18.7,-1.7 1.4,0.4 10.9,4.4 12.4,7 1.9,3.2 -1.2,-2.1 -1.9,-1.4 -0.3,0.3 -0.8,0.7 -1.5,1.5 -0.8,1.1 -1.1,2 -1.3,2.4 -0.8,1.7 -2.7,2.2 -5.5,3.4 -3.6,1.4 -5.9,2.4 -8.1,4 -1.6,1.2 -2.8,2.6 -5,5.3 -2,2.4 -3.1,3.8 -4.1,6 -0.3,0.7 -0.9,2.2 -2,5.2 -0.7,1.8 -0.9,2.6 -1.2,3.5 -0.5,1.6 -0.8,3 -0.9,4 -0.6,2.4 -2.1,7 -6.2,10.7 -2,1.8 -4.6,4.3 -7.1,3.6 -4.6,-1 -5.6,-11.2 -5.7,-11.9 z"/><path id="path10-70" d="m 252,425.9 c 5,-0.3 16,3.1 18,7.4 1.6,3.5 0.7,-1.2 -1.7,2 -1.5,0.7 -3.9,1.7 -6.8,2.9 -6.6,2.7 -7.9,2.9 -10.3,4.7 -2.6,1.9 -4.4,4.2 -5.4,5.4 -0.8,1 -1.9,2.4 -3,4.2 -0.3,0.5 -0.6,1 -0.9,1.5 -0.3,0.5 -0.5,0.9 -0.7,1.3 -2,6.1 -4.7,12.2 -3.6,18 0,0.6 0,1.1 0,1.7 0,0.6 -0.1,1.1 -0.1,1.7 -1.6,3.1 2.5,2.4 3.1,5.1 0.7,3.4 0,6.1 -0.3,9.4 -0.1,0.5 -0.3,1 -0.4,1.5 -1.5,4.7 -3.7,6.7 -3.7,6.7 -0.4,0.4 -1.4,1.4 -2.8,2.2 -0.4,0.3 -0.9,0.5 -1.4,0.7 -7.7,2.4 -11.1,-6.4 -12.8,-12 -0.2,-0.6 -0.3,-1.2 -0.4,-1.9 -0.4,-2.5 -0.4,-5.2 1,-6.7 0.3,-0.3 0.7,-0.6 1,-0.8 0.3,-0.2 0.6,-0.5 0.7,-1 -2.6,-8.3 -0.6,-15.8 0.4,-23.6 0.1,-0.6 0.2,-1.1 0.3,-1.7 0.6,-3.8 0.5,-4.8 2.1,-8.4 0.6,-1.3 2.4,-6.8 7.4,-11.8 8.6,-8.7 15,-8.2 20.3,-8.5 z" class="skin penis"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Flaccid_5.tw b/src/art/vector/layers/Flaccid_5.tw new file mode 100644 index 0000000000000000000000000000000000000000..145de170b03ce9652797b2429af30bc62632d6e1 --- /dev/null +++ b/src/art/vector/layers/Flaccid_5.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Flaccid_5 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 225.9,491.2 c 0.1,0.4 1,0.7 1.8,0.9 6.7,0.6 6.7,10.6 5.3,16.7 -0.1,0.6 -0.3,1.1 -0.4,1.7 -2.1,7.4 -5.3,10.5 -5.3,10.5 -0.6,0.6 -2.9,3 -5.9,4.1 -0.7,0.3 -1.5,0.5 -2.3,0.6 -9.6,-0.4 -13.9,-9.4 -15.2,-17.5 -0.2,-0.8 -0.4,-1.7 -0.6,-2.6 -0.6,-3.6 -0.5,-7.4 1.3,-9.4 0.4,-0.5 0.9,-0.8 1.3,-1.1 0.4,-0.4 0.8,-0.7 1,-1.4" id="path7"/><path d="m 205.2,480.8 c 0,-1.2 0,-2.9 0.1,-5.1 0.1,-1.1 0.3,-5 1.1,-10.9 0.5,-3.4 1,-6.1 1.1,-6.7 3.6,-17.9 16.5,-26.9 16.5,-27 1.4,-1.2 4.8,-3.2 6.2,-4.3 2.9,-1.8 11.9,-6 24.2,-2.2 1.8,0.5 14.1,5.8 16.1,9.1 2.5,4.2 -1.6,-2.7 -2.5,-1.8 -0.4,0.4 -1.1,0.9 -1.9,2 -1.1,1.4 -1.5,2.6 -1.7,3.1 -1,2.2 -3.5,2.9 -7.2,4.4 -4.7,1.9 -7.7,3.1 -10.6,5.3 -2.1,1.6 -3.6,3.4 -6.5,6.9 -2.6,3.1 -4,4.9 -5.3,7.8 -0.4,0.9 -1.1,2.8 -2.6,6.7 -0.9,2.4 -1.2,3.4 -1.6,4.6 -0.6,2.1 -1,3.9 -1.2,5.2 -0.8,3.1 -2.8,9.1 -8,14 -2.6,2.4 -6,5.5 -9.3,4.6 -5.4,-1.5 -6.8,-14.7 -6.9,-15.7 z" id="path9"/><path class="skin penis" d="m 247.4,424.1 c 6.5,-0.4 20.8,4.1 23.4,9.6 2.1,4.6 1,-1.5 -2.3,2.6 -1.9,0.8 -5,2.2 -8.9,3.7 -8.6,3.5 -10.3,3.8 -13.4,6.1 -3.3,2.5 -5.7,5.5 -7,7 -1.1,1.3 -2.5,3.2 -3.9,5.5 -0.4,0.7 -0.8,1.4 -1.1,2 -0.3,0.6 -0.6,1.2 -0.9,1.7 -2.6,7.9 -6.1,15.8 -4.7,23.3 0,0.7 0,1.5 0,2.2 0,0.7 -0.1,1.4 -0.2,2.2 -2.1,4 3.2,3.1 4.1,6.6 0.9,4.4 0,7.9 -0.3,12.3 -0.2,0.7 -0.4,1.3 -0.6,1.9 -2,6.1 -4.8,8.7 -4.8,8.7 -0.6,0.5 -1.9,1.8 -3.6,2.9 -0.6,0.3 -1.2,0.7 -1.8,0.9 -10,3.1 -14.4,-8.3 -16.6,-15.6 -0.2,-0.8 -0.4,-1.6 -0.5,-2.4 -0.6,-3.3 -0.5,-6.8 1.3,-8.7 0.4,-0.4 0.9,-0.7 1.3,-1.1 0.4,-0.3 0.7,-0.7 0.9,-1.3 -3.4,-10.8 -0.7,-20.5 0.5,-30.7 0.1,-0.8 0.2,-1.5 0.3,-2.2 0.8,-4.9 0.7,-6.3 2.8,-10.9 0.8,-1.8 3.1,-8.8 9.7,-15.3 11.1,-11.2 19.3,-10.6 26.3,-11 z" id="path11"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Flaccid_6.tw b/src/art/vector/layers/Flaccid_6.tw new file mode 100644 index 0000000000000000000000000000000000000000..59d22932c0530cdf1a8df7bb24fe9c0a7ab08501 --- /dev/null +++ b/src/art/vector/layers/Flaccid_6.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Flaccid_6 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 214.2,504.1 c 0.2,0.4 1.2,0.8 2.3,1.2 8.3,0.8 8.3,13 6.5,20.7 -0.2,0.7 -0.3,1.4 -0.5,2 -2.5,9.1 -6.6,13 -6.6,13 -0.8,0.8 -3.6,3.6 -7.2,5 -0.9,0.3 -1.8,0.6 -2.8,0.7 -11.9,-0.4 -17.2,-11.6 -18.7,-21.6 -0.3,-1 -0.5,-2.1 -0.7,-3.2 -0.8,-4.4 -0.7,-9.1 1.7,-11.7 0.5,-0.6 1.1,-1 1.7,-1.4 0.5,-0.4 1,-0.9 1.2,-1.7" id="path7-6"/><path d="m 188.7,491.3 c 0,-1.5 0,-3.6 0.2,-6.2 0.1,-1.3 0.3,-6.2 1.4,-13.5 0.6,-4.2 1.2,-7.5 1.4,-8.3 C 196,441.2 212,430 212,430 c 1.8,-1.4 5.9,-3.9 7.7,-5.3 3.6,-2.3 14.6,-7.4 29.9,-2.7 2.2,0.7 17.4,7.1 19.9,11.2 3.1,5.2 -1.9,-3.3 -3.1,-2.2 -0.5,0.4 -1.3,1.1 -2.4,2.4 -1.3,1.7 -1.8,3.2 -2.1,3.9 -1.2,2.7 -4.3,3.6 -8.9,5.4 -5.8,2.3 -9.4,3.8 -13,6.5 -2.6,2 -4.4,4.2 -8,8.6 -3.1,3.9 -4.9,6 -6.6,9.6 -0.5,1.1 -1.4,3.5 -3.2,8.3 -1.1,3 -1.5,4.2 -1.9,5.7 -0.8,2.6 -1.2,4.8 -1.5,6.4 -1,3.9 -3.4,11.2 -9.9,17.2 -3.2,2.9 -7.3,6.8 -11.4,5.7 -7.1,-1.9 -8.7,-18.2 -8.8,-19.4 z" id="path9-0"/><path class="skin penis" d="m 240.7,421.3 c 8,-0.5 25.7,5 28.8,11.9 2.6,5.6 1.2,-1.9 -2.8,3.3 -2.4,1 -6.2,2.7 -10.9,4.6 -10.6,4.3 -12.7,4.7 -16.5,7.5 -4.1,3.1 -7.1,6.7 -8.7,8.7 -1.3,1.6 -3,3.9 -4.8,6.8 -0.5,0.9 -1,1.7 -1.4,2.4 -0.4,0.8 -0.8,1.5 -1.1,2.1 -3.2,9.8 -7.5,19.5 -5.8,28.8 0,0.9 0,1.8 0,2.7 0,0.9 -0.1,1.8 -0.2,2.7 -2.5,4.9 4,3.8 5,8.2 1.1,5.4 0,9.8 -0.4,15.1 -0.2,0.8 -0.4,1.6 -0.7,2.4 -2.4,7.5 -5.9,10.8 -5.9,10.8 -0.7,0.7 -2.3,2.3 -4.4,3.6 -0.7,0.4 -1.5,0.8 -2.3,1.1 -12.3,3.9 -17.8,-10.2 -20.5,-19.3 -0.2,-1 -0.5,-2 -0.7,-3 -0.7,-4.1 -0.6,-8.3 1.6,-10.7 0.5,-0.6 1.1,-0.9 1.6,-1.3 0.5,-0.4 0.9,-0.8 1.1,-1.6 -4.2,-13.4 -0.9,-25.3 0.7,-37.9 0.1,-0.9 0.3,-1.8 0.4,-2.7 1,-6.1 0.9,-7.7 3.4,-13.5 1,-2.2 3.9,-10.8 11.9,-18.9 13.9,-14 24,-13.3 32.6,-13.8 z" id="path11-6"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Gag.tw b/src/art/vector/layers/Gag.tw new file mode 100644 index 0000000000000000000000000000000000000000..8b3cb7c4265a6b3b9550ddcdb67652212d26444a --- /dev/null +++ b/src/art/vector/layers/Gag.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Gag [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 278,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" style="opacity:0.23999999;fill:#bf2126" id="XMLID_867_"/><path transform="translate(-220,0)" style="fill:#070505" d="m 489,163.9 -2.6,-6.8 58.7,0 -3.8,7.9 z" id="XMLID_892_"/><ellipse ry="8.6999998" rx="7.5999999" cy="161.10001" cx="282.79999" class="gag" id="XMLID_893_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Glasses.tw b/src/art/vector/layers/Glasses.tw new file mode 100644 index 0000000000000000000000000000000000000000..0c7f01081cc87f6e002143e009db26439a688c97 --- /dev/null +++ b/src/art/vector/layers/Glasses.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Glasses [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path class="glasses" d="m 265.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" id="path654"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Hair_Back.tw b/src/art/vector/layers/Hair_Back.tw new file mode 100644 index 0000000000000000000000000000000000000000..06e1ede931df1ad4e0b6b2843a63d6e4e008db55 --- /dev/null +++ b/src/art/vector/layers/Hair_Back.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Hair_Back [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 344.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="hair" id="path36"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Hair_Fore.tw b/src/art/vector/layers/Hair_Fore.tw new file mode 100644 index 0000000000000000000000000000000000000000..0c3269507dd028a16bf7fd89318b9105d2089108 --- /dev/null +++ b/src/art/vector/layers/Hair_Fore.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Hair_Fore [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 264.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" class="hair" id="path1018"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Head.tw b/src/art/vector/layers/Head.tw new file mode 100644 index 0000000000000000000000000000000000000000..684ba295b34e7b3558d61b85d77b22f95c997c10 --- /dev/null +++ b/src/art/vector/layers/Head.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Head [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 323.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" class="shadow" id="Head_Shadow"/><path d="m 323.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="skin head" id="path931"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Head_Outfit_Shine.tw b/src/art/vector/layers/Head_Outfit_Shine.tw new file mode 100644 index 0000000000000000000000000000000000000000..39171b99fe65e63918c5c794bb5e82c66304cc1a --- /dev/null +++ b/src/art/vector/layers/Head_Outfit_Shine.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Head_Outfit_Shine [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-75" d="m 308.69363,93.705843 c 6.12129,1.942001 8.41769,9.412737 8.67251,17.211417 -2.56499,-6.10053 -5.64578,-11.737253 -8.67251,-17.211417 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:2.11298418;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" transform="matrix(1.4598262,0,0,1.3808576,-143.26648,-38.263379)"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Leg_Narrow.tw b/src/art/vector/layers/Leg_Narrow.tw new file mode 100644 index 0000000000000000000000000000000000000000..8881d720b9bb2a2352019b2044db8409749a9104 --- /dev/null +++ b/src/art/vector/layers/Leg_Narrow.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Leg_Narrow [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 225.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="skin" id="XMLID_464_"/><path d="m 288,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="shadow" id="XMLID_465_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Leg_Normal.tw b/src/art/vector/layers/Leg_Normal.tw new file mode 100644 index 0000000000000000000000000000000000000000..4aab300d908de356dd0f33c1b9e257887fcd3776 --- /dev/null +++ b/src/art/vector/layers/Leg_Normal.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Leg_Normal [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 226,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="skin" id="XMLID_466_"/><path d="m 293.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="shadow" id="XMLID_467_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Leg_Outfit_Shine_Narrow.tw b/src/art/vector/layers/Leg_Outfit_Shine_Narrow.tw new file mode 100644 index 0000000000000000000000000000000000000000..fe4d337fbee9877a55d6813a10845406f53fddcd --- /dev/null +++ b/src/art/vector/layers/Leg_Outfit_Shine_Narrow.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Leg_Outfit_Shine_Narrow [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#Filter_Shine_Blur);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 334.11719,835.5879 c 3.86707,-47.42283 14.39423,-97.7115 9.32701,-151.12953 0.7,46.38507 -8.88985,125.3467 -9.32701,151.12953 z" id="path4068" sodipodi:nodetypes="ccc"/><path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#Filter_Shine_Blur);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 279.93066,691.78516 c 10.75918,48.71017 -13.21217,94.37122 -14.97363,147.66015 4.70837,-52.30259 28.97652,-98.35635 14.97363,-147.66015 z" id="path4070" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Leg_Outfit_Shine_Normal.tw b/src/art/vector/layers/Leg_Outfit_Shine_Normal.tw new file mode 100644 index 0000000000000000000000000000000000000000..2b67ec43984e951d8b58d8bb63538d3c2353af3b --- /dev/null +++ b/src/art/vector/layers/Leg_Outfit_Shine_Normal.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Leg_Outfit_Shine_Normal [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#Filter_Shine_Blur);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 334.33984,833.50879 c 1.60482,-35.51678 12.5865,-90.61327 7.23145,-144.12695 3.32987,53.29414 -7.62026,108.20277 -7.23145,144.12695 z" id="path4068-3" sodipodi:nodetypes="ccc"/><path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#Filter_Shine_Blur);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 280.26661,691.78418 c 11.3053,48.83256 -10.20522,96.99759 -14.55763,139.75782 6.27685,-42.03405 28.01437,-90.5764 14.55763,-139.75782 z" id="path4070-6" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Leg_Outfit_Shine_Stump.tw b/src/art/vector/layers/Leg_Outfit_Shine_Stump.tw new file mode 100644 index 0000000000000000000000000000000000000000..7f313eb7acf2b37493f958c8f3c4c6a06fb9c6b5 --- /dev/null +++ b/src/art/vector/layers/Leg_Outfit_Shine_Stump.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Leg_Outfit_Shine_Stump [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#Filter_Shine_Blur);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 355.2168,421.00391 c 11.91522,14.08675 23.36538,28.61015 28.01522,54.3422 -1.75988,-26.81941 -13.78924,-42.18616 -28.01522,-54.3422 z" id="path4098" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Leg_Outfit_Shine_Wide.tw b/src/art/vector/layers/Leg_Outfit_Shine_Wide.tw new file mode 100644 index 0000000000000000000000000000000000000000..554cc55a787ffaea7b7c537b576a8798eff0d730 --- /dev/null +++ b/src/art/vector/layers/Leg_Outfit_Shine_Wide.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Leg_Outfit_Shine_Wide [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#Filter_Shine_Blur);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 341.9873,684.80664 c 2.83237,53.34079 -4.36665,86.53996 -5.15039,122.49707 3.75983,-35.48385 11.00295,-69.03003 5.15039,-122.49707 z" id="path4068-7" sodipodi:nodetypes="ccc"/><path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#Filter_Shine_Blur);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 270.78027,808.66504 c 8.80124,-35.13449 27.27028,-68.16292 13.31055,-117.2959 10.80233,48.881 -7.32306,80.94637 -13.31055,117.2959 z" id="path4070-5" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Leg_Wide.tw b/src/art/vector/layers/Leg_Wide.tw new file mode 100644 index 0000000000000000000000000000000000000000..2712dbb9fe3109ac0c9e371bd9f8cac6249e8813 --- /dev/null +++ b/src/art/vector/layers/Leg_Wide.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Leg_Wide [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 225.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="skin" id="XMLID_468_"/><path d="M 289.6,630.9 C 279.8,590.6 268.8,530 272.8,483.8 c -0.8,44.7 7.6,106.4 16.8,147.1 z" class="shadow" id="XMLID_469_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Navel_Piercing.tw b/src/art/vector/layers/Navel_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..9fb6a8d5bd1bceae3a3c4c4f1ac603dba6e402c0 --- /dev/null +++ b/src/art/vector/layers/Navel_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Navel_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle r="1.2" cy="364.39999" cx="262.29999" class="steel_piercing" id="XMLID_515_"/><circle r="1.2" cy="368.60001" cx="262.29999" class="steel_piercing" id="XMLID_516_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Navel_Piercing_Heavy.tw b/src/art/vector/layers/Navel_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..c0fcb7e944762a7c59b0e9d56cb1daccf3f36ee1 --- /dev/null +++ b/src/art/vector/layers/Navel_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Navel_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 262.3,369.8 c -0.2,0 -1.3,2 -1.2,11.6 0.1,12.7 1.2,13.3 1.4,13.3 0.4,0 1.5,-7.4 1.2,-15.9 -0.5,-4.5 -1.1,-9 -1.4,-9 z" class="steel_piercing" id="XMLID_513_"/><path d="m 262.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="steel_piercing" id="XMLID_514_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Penis_0.tw b/src/art/vector/layers/Penis_0.tw new file mode 100644 index 0000000000000000000000000000000000000000..0aee72a34649679cdf4f9f0a527c840a6f43a7fa --- /dev/null +++ b/src/art/vector/layers/Penis_0.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Penis_0 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 252.9,426.4 c 0.2,0.1 0.2,0.4 0.2,0.5 0,1 1.5,4.4 3.3,6 4.8,4.2 10.2,6.1 9.7,3.9 -0.1,-0.4 0.4,-0.5 0.4,-0.7 0.6,-2.1 -2.1,-5.3 -5.6,-8.3 -2.9,-2.5 -3.4,-2.2 -4,-2.7 -0.1,-0.1 -0.3,-0.2 -0.3,-0.5 -0.1,-0.3 0.2,-0.5 0.2,-0.7 0.1,-0.8 -0.9,-1.3 -1.9,-1.8 -0.7,-0.4 -2.2,-0.8 -3,-0.2 -1.7,1.3 -0.7,5.3 0.4,4.7 0.2,-0.1 0.4,-0.3 0.6,-0.2 z" class="shadow" id="XMLID_890_"/><path d="m 253,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="skin penis" id="XMLID_891_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Penis_1.tw b/src/art/vector/layers/Penis_1.tw new file mode 100644 index 0000000000000000000000000000000000000000..45762b4b2992d54bda0f8d091cfac86ea87306f4 --- /dev/null +++ b/src/art/vector/layers/Penis_1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Penis_1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 242.5,418.4 c 0.4,0.3 0.4,0.8 0.4,1 0,1.8 2.4,7.6 6.3,11.2 9.7,8.8 18.8,11.3 17.9,7.1 -0.2,-0.6 0.8,-1 0.9,-1.3 0.8,-3 -4.1,-10 -10.7,-15.3 -5.5,-4.4 -6,-4.3 -7.3,-5.1 -0.2,-0.1 -0.4,-0.3 -0.5,-0.9 -0.1,-0.4 0.3,-1 0.4,-1.3 0.2,-1.4 -1.8,-2.5 -3.6,-3.4 -1.4,-0.7 -4.2,-1.5 -5.6,-0.4 -3.2,2.6 -1.1,9.7 0.7,8.7 0.3,-0.2 0.7,-0.6 1.1,-0.3 z" class="shadow" id="XMLID_888_"/><path d="m 242.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="skin penis" id="XMLID_889_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Penis_2.tw b/src/art/vector/layers/Penis_2.tw new file mode 100644 index 0000000000000000000000000000000000000000..d5563283018309763b1119d5c868844da6658396 --- /dev/null +++ b/src/art/vector/layers/Penis_2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Penis_2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 226.2,405.6 c 0.5,0.4 0.5,1.3 0.5,1.5 0,2.8 5.5,12.7 10.5,17.6 15,14.6 29.9,18.3 28.4,11.7 -0.2,-1 1.2,-1.5 1.4,-2.1 2,-6.3 -7.5,-15.7 -17.9,-24.4 -8.7,-7.3 -9,-6.9 -10.9,-8.3 -0.3,-0.2 -0.7,-0.5 -0.9,-1.5 -0.2,-0.7 0.4,-1.6 0.5,-2.2 0.4,-2.3 -2.8,-4 -5.6,-5.4 -2.2,-1.2 -6.7,-2.5 -9.1,-0.5 -5.2,4.1 -1.2,15.3 1.2,14 0.6,-0.2 1.3,-0.7 1.9,-0.4 z" class="shadow" id="XMLID_886_"/><path d="m 226.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="skin penis" id="XMLID_887_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Penis_3.tw b/src/art/vector/layers/Penis_3.tw new file mode 100644 index 0000000000000000000000000000000000000000..23c11a6aafba8ce75489ce6c06e1c9ab9b3eac75 --- /dev/null +++ b/src/art/vector/layers/Penis_3.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Penis_3 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 210.3,392.5 c 0.7,0.5 0.8,1.9 0.8,2.1 0,4 7.6,17.9 14.7,24.6 21.1,20.4 41.9,25.7 39.8,16.4 -0.3,-1.4 1.8,-2.1 2,-3 2.7,-8.8 -10.5,-22 -25,-34.2 -12.3,-10.2 -12.5,-9.7 -15.4,-11.6 -0.4,-0.3 -1,-0.7 -1.2,-2 -0.2,-1.1 0.7,-2.2 0.8,-3.1 0.4,-3.2 -3.9,-5.5 -7.9,-7.6 -3.1,-1.6 -9.2,-3.5 -12.6,-0.8 -7.2,5.8 -1.6,21.3 1.6,19.6 0.6,-0.3 1.6,-1 2.4,-0.4 z" class="shadow" id="XMLID_884_"/><path d="m 210.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="skin penis" id="XMLID_885_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Penis_4.tw b/src/art/vector/layers/Penis_4.tw new file mode 100644 index 0000000000000000000000000000000000000000..4faa6b6096d875a9d51da81af4f65810fa955237 --- /dev/null +++ b/src/art/vector/layers/Penis_4.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Penis_4 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 193.3,379.4 c 1,0.6 1,2.4 1,2.7 0,5.1 9.7,22.6 18.6,31.2 26.7,25.9 53,32.5 50.4,20.7 -0.4,-1.8 2.2,-2.8 2.6,-3.8 3.5,-11.1 -13.2,-27.9 -31.6,-43.3 -15.5,-12.9 -15.8,-12.3 -19.4,-14.6 -0.5,-0.4 -1.3,-0.9 -1.6,-2.6 -0.3,-1.3 0.9,-2.8 1,-3.9 0.6,-4 -4.9,-7 -10,-9.6 -3.9,-2 -11.7,-4.4 -16,-1 -9.2,7.3 -2,27 2,24.8 0.8,-0.4 2,-1.3 3,-0.6 z" class="shadow" id="XMLID_882_"/><path d="m 193.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="skin penis" id="XMLID_883_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Penis_5.tw b/src/art/vector/layers/Penis_5.tw new file mode 100644 index 0000000000000000000000000000000000000000..a8dc21248d07402f107666b0396dafca4cc734d7 --- /dev/null +++ b/src/art/vector/layers/Penis_5.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Penis_5 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 176.6,366.1 c 1.2,0.8 1.2,2.9 1.2,3.2 0,6.2 11.8,27.5 22.6,38 32.5,31.5 64.6,39.6 61.4,25.2 -0.4,-2.2 2.7,-3.4 3.1,-4.7 4.2,-13.5 -16.1,-34 -38.6,-52.7 -18.8,-15.7 -19.3,-14.9 -23.6,-17.8 -0.6,-0.4 -1.6,-1.1 -1.9,-3.1 -0.3,-1.6 1.1,-3.5 1.2,-4.8 0.8,-4.9 -6,-8.6 -12.1,-11.7 -4.8,-2.4 -14.3,-5.3 -19.5,-1.2 -11.2,8.9 -2.4,32.9 2.5,30.2 1,-0.3 2.6,-1.4 3.7,-0.6 z" class="shadow" id="XMLID_880_"/><path d="m 176.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="skin penis" id="XMLID_881_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Penis_6.tw b/src/art/vector/layers/Penis_6.tw new file mode 100644 index 0000000000000000000000000000000000000000..7d982d9a74a76749c70482452d26dc5dddacf55d --- /dev/null +++ b/src/art/vector/layers/Penis_6.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Penis_6 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 157.7,353.4 c 1.4,0.9 1.4,3.5 1.4,3.9 0,7.5 14.3,33.3 27.4,46 39.3,38.2 78.2,48 74.4,30.6 -0.5,-2.6 3.3,-4.1 3.8,-5.6 5.1,-16.4 -19.5,-41.2 -46.7,-63.9 -22.8,-19 -23.3,-18.1 -28.6,-21.5 -0.8,-0.5 -2,-1.3 -2.4,-3.8 -0.4,-2 1.3,-4.2 1.4,-5.8 0.9,-5.9 -7.2,-10.4 -14.7,-14.2 -5.8,-2.9 -17.3,-6.4 -23.6,-1.4 -13.5,10.8 -2.9,39.9 3,36.6 1.3,-0.6 3.1,-1.9 4.6,-0.9 z" class="shadow" id="XMLID_878_"/><path d="m 157.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="skin penis" id="XMLID_879_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Pubic_Hair_Bush.tw b/src/art/vector/layers/Pubic_Hair_Bush.tw new file mode 100644 index 0000000000000000000000000000000000000000..256e752605d867d529bb67cb5213166bc58250df --- /dev/null +++ b/src/art/vector/layers/Pubic_Hair_Bush.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Pubic_Hair_Bush [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path482" d="m 258.19,426.59 a 2.62,2.62 0 0 1 0.6,0.31 3.14,3.14 0 0 1 1.21,1.7 2.51,2.51 0 0 1 0,0.31 m -15.23,0.65 m 17.33,-4.66 m -11.99,1.85 M 246.83,421 m -0.56,-7 a 4.76,4.76 0 0 1 0.83,-0.12 l 0.5,0 a 2.88,2.88 0 0 1 1.69,0.52 1.45,1.45 0 0 1 0.19,0.19 1.49,1.49 0 0 1 0.3,1.08 2.36,2.36 0 0 1 0,0.4 m -3.17,20.22 a 3.79,3.79 0 0 1 0.15,-0.76 4.71,4.71 0 0 1 0.17,-0.47 4.64,4.64 0 0 1 1.13,-1.7 l 0.27,-0.21 a 3.36,3.36 0 0 1 1.62,-0.54 2.63,2.63 0 0 1 0.77,0.09 2,2 0 0 1 0.36,0.14 1.7,1.7 0 0 1 0.3,0.19 1.94,1.94 0 0 1 0.63,1 2.23,2.23 0 0 1 0.1,0.24 5.4,5.4 0 0 1 0,2.71 m 1.81,-20.65 M 253.18,437 m 3.15,-18.14 m 1.3,-6.72 a 3,3 0 0 1 0.69,0.11 2.73,2.73 0 0 1 0.39,0.14 2,2 0 0 1 1.11,1 1.55,1.55 0 0 1 0.07,0.25 m -6.09,24.26 m 1.52,-4.01 m 2.34,2.75 m 1.69,-6.55 m 6.37,-11.67 a 2.38,2.38 0 0 1 0.29,0.62 3.25,3.25 0 0 1 0.11,0.44 M 258.11,439 a 3.37,3.37 0 0 1 0.74,0 3.83,3.83 0 0 1 0.46,0.1 3.4,3.4 0 0 1 1.6,0.92 2.58,2.58 0 0 1 0.19,0.25 2.39,2.39 0 0 1 0.41,1.23 3,3 0 0 1 0,0.42 2.82,2.82 0 0 1 0,0.42 m 5.9,-15.89 m -4.03,0.29 a 5,5 0 0 1 0.78,-0.37 5.37,5.37 0 0 1 0.51,-0.16 4.06,4.06 0 0 1 2,-0.12 l 0.29,0.1 a 1.66,1.66 0 0 1 0.86,0.8 2,2 0 0 1 0.18,0.34 2.07,2.07 0 0 1 0.11,0.38 2.37,2.37 0 0 1 0.06,0.41 2.74,2.74 0 0 1 0,0.45 m -2.4,6.61 a 2.92,2.92 0 0 1 0.59,0.38 3.43,3.43 0 0 1 0.33,0.31 3.47,3.47 0 0 1 0.9,1.59 2.76,2.76 0 0 1 0,0.32 m 4.7,-18.11 m 5.36,-0.67 m -2.78,1.8 a 2.78,2.78 0 0 1 0.65,0.14 2.82,2.82 0 0 1 0.37,0.15 2.28,2.28 0 0 1 1.11,1.05 1.8,1.8 0 0 1 0.09,0.25 m 0.91,-4.21 a 2.74,2.74 0 0 1 0.65,0.19 2.68,2.68 0 0 1 0.37,0.19 2.28,2.28 0 0 1 1,1.21 2,2 0 0 1 0.06,0.28 m 0.3,4.04 m -3.14,9.81 a 2.88,2.88 0 0 1 0.52,0.47 3.45,3.45 0 0 1 0.28,0.36 3.65,3.65 0 0 1 0.67,1.75 2.92,2.92 0 0 1 0,0.33 m 7.2,-15.55 m -3.98,-2.18 a 6.61,6.61 0 0 1 0.78,-0.58 c 0.16,-0.1 0.34,-0.21 0.53,-0.31 a 6,6 0 0 1 2.2,-0.76 l 0.35,0 a 1.76,1.76 0 0 1 1.14,0.42 1.65,1.65 0 0 1 0.27,0.24 1.52,1.52 0 0 1 0.21,0.29 1.67,1.67 0 0 1 0.15,0.35 1.94,1.94 0 0 1 0.08,0.4 2.07,2.07 0 0 1 0,0.4 m -3.34,-0.64 a 3.73,3.73 0 0 1 0.22,-0.75 c 0.06,-0.15 0.13,-0.31 0.22,-0.48 a 6,6 0 0 1 1.36,-1.79 l 0.31,-0.25 a 3.93,3.93 0 0 1 1.38,-0.66 l 0.44,-0.11 a 2.91,2.91 0 0 1 0.42,0 2.52,2.52 0 0 1 0.41,0 2,2 0 0 1 0.39,0.08 1.46,1.46 0 0 1 0.31,0.13 1.31,1.31 0 0 1 0.61,0.8 1.48,1.48 0 0 1 0.09,0.21 m -7.8,30.61 m 2.9,-23.18 a 5.87,5.87 0 0 1 0.72,-0.56 c 0.15,-0.1 0.32,-0.2 0.49,-0.3 a 5.34,5.34 0 0 1 2.08,-0.7 l 0.33,0 a 1.75,1.75 0 0 1 1.11,0.44 1.69,1.69 0 0 1 0.27,0.24 1.6,1.6 0 0 1 0.21,0.29 1.8,1.8 0 0 1 0.16,0.34 2.06,2.06 0 0 1 0.09,0.4 2.11,2.11 0 0 1 0,0.39 m -2.46,5.28 A 2.61,2.61 0 0 1 288,429 m 7.14,-7.23 m 0.86,5.13 m -1.26,-2.07 m 2.18,-5.54 a 5.48,5.48 0 0 1 0.77,-0.36 l 0.5,-0.17 a 4.14,4.14 0 0 1 1.91,-0.18 l 0.27,0.08 a 1.34,1.34 0 0 1 0.77,0.7 1.6,1.6 0 0 1 0.15,0.3 1.63,1.63 0 0 1 0.08,0.34 2,2 0 0 1 0,0.37 2.43,2.43 0 0 1 0,0.41 M 293,435.45 a 3.65,3.65 0 0 1 0,-0.78 4.47,4.47 0 0 1 0.08,-0.5 4.66,4.66 0 0 1 0.86,-1.91 l 0.24,-0.27 a 3,3 0 0 1 1.2,-0.75 3.1,3.1 0 0 1 0.41,-0.14 2.56,2.56 0 0 1 0.41,-0.07 2.46,2.46 0 0 1 0.42,0 2.23,2.23 0 0 1 0.41,0.06 1.81,1.81 0 0 1 0.35,0.12 1.86,1.86 0 0 1 0.84,0.79 l 0.15,0.21 a 5,5 0 0 1 0.49,2.66 m 1.21,-14.49 a 5.45,5.45 0 0 1 0.85,-0.3 l 0.54,-0.11 a 3.87,3.87 0 0 1 2,0.1 l 0.27,0.14 a 1.52,1.52 0 0 1 0.69,0.93 2,2 0 0 1 0.11,0.37 2.14,2.14 0 0 1 0,0.4 2.58,2.58 0 0 1 0,0.44 m -3.94,6.58 a 2.77,2.77 0 0 1 0.63,0.16 2.9,2.9 0 0 1 0.37,0.17 2.63,2.63 0 0 1 1.15,1.11 2.07,2.07 0 0 1 0.1,0.26 2.18,2.18 0 0 1 0,1.19 m 0.36,-10.9 a 5.28,5.28 0 0 1 0.46,-0.79 c 0.1,-0.15 0.23,-0.31 0.37,-0.48 a 7,7 0 0 1 1.86,-1.62 l 0.36,-0.18 a 3.17,3.17 0 0 1 1.46,-0.31 2.68,2.68 0 0 1 0.43,0 2,2 0 0 1 0.39,0.09 1.79,1.79 0 0 1 0.36,0.15 1.62,1.62 0 0 1 0.31,0.22 1.39,1.39 0 0 1 0.23,0.26 1.82,1.82 0 0 1 0.26,1.15 2.43,2.43 0 0 1 0,0.28 m -21.14,23.18 a 4.14,4.14 0 0 1 0.43,-0.71 4.82,4.82 0 0 1 0.34,-0.41 4.39,4.39 0 0 1 1.71,-1.21 l 0.33,-0.09 a 2.27,2.27 0 0 1 1.33,0.11 2.49,2.49 0 0 1 0.39,0.15 2.29,2.29 0 0 1 0.35,0.22 2.4,2.4 0 0 1 0.33,0.28 2.55,2.55 0 0 1 0.29,0.34 2.32,2.32 0 0 1 0.21,0.36 2.81,2.81 0 0 1 0.25,1.34 c 0,0.1 0,0.21 0,0.31 m 4.55,-4.03 m -1.86,3.87 M 292,422.43 m 0,5.81 m -9.41,-3.53 a 5.71,5.71 0 0 1 0.61,-0.69 c 0.13,-0.13 0.28,-0.26 0.44,-0.4 a 6.09,6.09 0 0 1 2,-1.16 l 0.36,-0.08 a 2.22,2.22 0 0 1 1.31,0.12 2,2 0 0 1 0.36,0.15 2,2 0 0 1 0.57,0.49 1.79,1.79 0 0 1 0.2,0.34 1.75,1.75 0 0 1 0.12,0.35 M 295,433 m 4.79,-10.54 a 2.56,2.56 0 0 1 0.37,0.61 3.28,3.28 0 0 1 0.16,0.44 3.93,3.93 0 0 1 0.08,2 m -14.15,-5.44 a 6.13,6.13 0 0 1 0.69,-0.62 c 0.14,-0.11 0.3,-0.23 0.48,-0.34 a 6.1,6.1 0 0 1 2.07,-0.93 l 0.34,0 a 1.9,1.9 0 0 1 1.19,0.26 1.68,1.68 0 0 1 0.3,0.19 1.43,1.43 0 0 1 0.24,0.24 1.54,1.54 0 0 1 0.2,0.3 1.67,1.67 0 0 1 0.13,0.35 1.73,1.73 0 0 1 0.05,0.36 m 1.22,2.79 a 2.25,2.25 0 0 1 0.42,0.49 2.82,2.82 0 0 1 0.2,0.36 3.18,3.18 0 0 1 0.31,1.73 m 1.97,5.42 m -5.47,5.08 m 6.27,0.11 m -6.24,-4.24 a 3.7,3.7 0 0 1 0,0.76 4.81,4.81 0 0 1 0,0.5 m 1.76,7.49 m 2.62,6.72 a 3.61,3.61 0 0 1 0.18,-0.73 4.09,4.09 0 0 1 0.19,-0.44 3.82,3.82 0 0 1 1.18,-1.47 l 0.27,-0.16 A 2.13,2.13 0 0 1 298,444 a 2.36,2.36 0 0 1 0.39,0 2.1,2.1 0 0 1 0.37,0.1 2.26,2.26 0 0 1 0.36,0.15 2.33,2.33 0 0 1 0.34,0.22 2.1,2.1 0 0 1 0.28,0.26 2.49,2.49 0 0 1 0.56,1.09 2.66,2.66 0 0 1 0.09,0.26 M 283.1,441.74 A 3.5,3.5 0 0 1 283,441 a 4.19,4.19 0 0 1 0,-0.49 4.15,4.15 0 0 1 0.46,-1.93 3.1,3.1 0 0 1 0.18,-0.29 2.67,2.67 0 0 1 1,-0.87 2.88,2.88 0 0 1 0.38,-0.18 2.51,2.51 0 0 1 0.39,-0.12 2.43,2.43 0 0 1 0.41,-0.07 2.35,2.35 0 0 1 0.42,0 2,2 0 0 1 0.37,0.07 2,2 0 0 1 1,0.65 l 0.19,0.18 a 4.9,4.9 0 0 1 1,2.47 m -0.21,8.01 m -2.17,-0.06 a 3.81,3.81 0 0 1 0,-0.79 4.33,4.33 0 0 1 0.09,-0.49 4,4 0 0 1 0.86,-1.79 l 0.24,-0.23 a 2.29,2.29 0 0 1 1.18,-0.54 2.55,2.55 0 0 1 0.4,-0.06 2.3,2.3 0 0 1 0.4,0 2.38,2.38 0 0 1 0.81,0.21 2.17,2.17 0 0 1 0.34,0.19 2.51,2.51 0 0 1 0.82,1 l 0.15,0.25 a 5.81,5.81 0 0 1 0.5,2.82 m -5.44,-5.72 a 3.7,3.7 0 0 1 0.67,0.45 4.4,4.4 0 0 1 0.38,0.35 4.45,4.45 0 0 1 1.12,1.8 3.24,3.24 0 0 1 0.08,0.36 M 276.81,445 m 16.1,7.11 a 4.44,4.44 0 0 1 0.64,0.57 c 0.11,0.12 0.24,0.26 0.36,0.42 a 5.22,5.22 0 0 1 1,2 3.38,3.38 0 0 1 0.06,0.36 m -25.02,-9.24 M 285.12,457 m 2.24,-2.07 a 4.56,4.56 0 0 1 0.51,0.62 c 0.09,0.13 0.18,0.28 0.27,0.44 a 4.81,4.81 0 0 1 0.65,1.92 2.8,2.8 0 0 1 0,0.33 M 276,456.33 m -6.77,-9.84 a 4.63,4.63 0 0 1 0.07,0.86 5.34,5.34 0 0 1 0,0.55 m 13.08,14.25 a 2.49,2.49 0 0 1 0.38,-0.52 3.18,3.18 0 0 1 1.82,-1 l 0.3,0 a 2.48,2.48 0 0 1 1.21,0.38 3.19,3.19 0 0 1 0.36,0.22 3.08,3.08 0 0 1 0.33,0.27 3.38,3.38 0 0 1 0.31,0.31 3.47,3.47 0 0 1 0.27,0.36 3,3 0 0 1 0.2,0.36 2.7,2.7 0 0 1 0.28,1.21 2.53,2.53 0 0 1 0,0.27 m -10.69,-7.67 a 4.9,4.9 0 0 1 0.29,0.82 5.43,5.43 0 0 1 0.11,0.53 m 6.37,9.2 a 2.52,2.52 0 0 1 0.41,-0.56 2.89,2.89 0 0 1 0.33,-0.29 3.07,3.07 0 0 1 1.7,-0.68 l 0.34,0 a 3,3 0 0 1 1.37,0.47 4,4 0 0 1 0.41,0.25 3.9,3.9 0 0 1 0.38,0.31 4.06,4.06 0 0 1 0.36,0.36 4.12,4.12 0 0 1 0.32,0.41 3.45,3.45 0 0 1 0.24,0.4 3,3 0 0 1 0.35,1.33 2.91,2.91 0 0 1 0,0.29 m -17.51,-5.07 M 271,462.53 a 2.84,2.84 0 0 1 0.49,-0.56 3.33,3.33 0 0 1 0.38,-0.29 3.41,3.41 0 0 1 1.85,-0.63 l 0.35,0 a 3,3 0 0 1 1.39,0.55 3.85,3.85 0 0 1 0.41,0.28 3.71,3.71 0 0 1 0.37,0.33 4.05,4.05 0 0 1 0.34,0.38 4,4 0 0 1 0.29,0.43 3.38,3.38 0 0 1 0.21,0.42 3,3 0 0 1 0.23,1.39 2.88,2.88 0 0 1 0,0.31 m 1.29,2.86 m -15,-5.52 a 3,3 0 0 1 0.36,-0.67 3.42,3.42 0 0 1 0.3,-0.37 3.24,3.24 0 0 1 1.64,-1 l 0.34,0 a 2.72,2.72 0 0 1 1.42,0.29 3.55,3.55 0 0 1 0.85,0.48 3.86,3.86 0 0 1 0.39,0.33 4,4 0 0 1 0.36,0.39 3.45,3.45 0 0 1 0.28,0.4 3.39,3.39 0 0 1 0.47,1.4 c 0,0.11 0,0.21 0.06,0.32 m 11.25,8.77 a 2.71,2.71 0 0 1 0.67,-0.26 3.62,3.62 0 0 1 0.48,-0.09 4.57,4.57 0 0 1 2.12,0.21 l 0.37,0.15 a 4.36,4.36 0 0 1 1.34,1 5,5 0 0 1 0.36,0.38 4.39,4.39 0 0 1 0.31,0.41 4.24,4.24 0 0 1 0.27,0.44 3.76,3.76 0 0 1 0.21,0.46 2.73,2.73 0 0 1 0.12,0.42 m -1.11,4.16 m -13.56,-4.94 m -4.34,-1.23 a 3.27,3.27 0 0 1 0,-0.76 3.22,3.22 0 0 1 0.06,-0.46 2.52,2.52 0 0 1 0.81,-1.53 l 0.25,-0.16 a 2.08,2.08 0 0 1 1.27,-0.21 3.17,3.17 0 0 1 0.45,0.05 3.2,3.2 0 0 1 0.45,0.12 3.81,3.81 0 0 1 0.47,0.18 4.24,4.24 0 0 1 0.47,0.25 4,4 0 0 1 0.41,0.28 4.37,4.37 0 0 1 1,1.19 l 0.2,0.29 a 6,6 0 0 1 0.86,2.87 m -10.58,-8.12 a 5.91,5.91 0 0 1 0.6,0.66 c 0.11,0.14 0.22,0.29 0.33,0.46 a 5.47,5.47 0 0 1 0.87,1.95 2.71,2.71 0 0 1 0,0.32 m 3.26,4.18 a 2.12,2.12 0 0 1 0.53,-0.34 2.91,2.91 0 0 1 0.39,-0.15 3.62,3.62 0 0 1 1.86,-0.1 l 0.35,0.1 a 4,4 0 0 1 1.33,0.75 5,5 0 0 1 0.38,0.32 4.46,4.46 0 0 1 0.34,0.35 4.41,4.41 0 0 1 0.31,0.39 4,4 0 0 1 0.26,0.41 3.08,3.08 0 0 1 0.18,0.39 2.12,2.12 0 0 1 0.14,1.16 1.85,1.85 0 0 1 0,0.24 m -16.74,-7.94 m 13.06,8.45 a 2.5,2.5 0 0 1 0.66,-0.25 3.71,3.71 0 0 1 0.48,-0.09 4.91,4.91 0 0 1 2.17,0.21 l 0.39,0.15 a 5.08,5.08 0 0 1 1.45,1 c 0.14,0.12 0.28,0.25 0.4,0.38 a 5,5 0 0 1 0.35,0.4 4.89,4.89 0 0 1 0.32,0.43 4.07,4.07 0 0 1 0.25,0.45 2.87,2.87 0 0 1 0.16,0.41 1.78,1.78 0 0 1 0,1.16 m -4.82,-2.23 a 2.61,2.61 0 0 1 0,0.65 m 0.17,4.34 m -14.87,-4.82 m 13.83,5.63 a 1.77,1.77 0 0 1 0.12,-0.59 1.82,1.82 0 0 1 0.17,-0.33 2,2 0 0 1 1.25,-0.9 l 0.31,0 a 3.48,3.48 0 0 1 1.48,0.25 l 0.5,0.18 0.49,0.24 c 0.17,0.09 0.33,0.18 0.49,0.29 0.16,0.11 0.32,0.22 0.48,0.34 0.16,0.12 0.28,0.22 0.41,0.35 a 4.51,4.51 0 0 1 0.94,1.22 l 0.17,0.28 a 3.33,3.33 0 0 1 0.39,2.39 m -1.34,-1.69 m -16.47,-11.82 a 5.44,5.44 0 0 1 0.8,0.27 l 0.51,0.23 a 7.48,7.48 0 0 1 1.9,1.32 l 0.26,0.28 a 3.31,3.31 0 0 1 0.68,1.21 2.68,2.68 0 0 1 0.11,0.38 1.93,1.93 0 0 1 0,0.36 1.61,1.61 0 0 1 0,0.35 m -14.14,-11.5 a 4.12,4.12 0 0 1 0.82,0.09 l 0.53,0.13 a 6.23,6.23 0 0 1 2.09,1 l 0.31,0.27 a 4,4 0 0 1 0.92,1.28 3.87,3.87 0 0 1 0.2,0.43 3,3 0 0 1 0.13,0.43 2.68,2.68 0 0 1 0.07,0.43 2.2,2.2 0 0 1 0,0.42 m 22.42,2.67 a 2.56,2.56 0 0 1 0,-0.64 2.43,2.43 0 0 1 0.07,-0.38 2,2 0 0 1 0.79,-1.22 l 0.23,-0.12 a 2,2 0 0 1 1.16,-0.08 l 0.41,0.08 0.41,0.13 a 3.84,3.84 0 0 1 0.42,0.19 4.29,4.29 0 0 1 0.42,0.25 3.89,3.89 0 0 1 0.36,0.27 4,4 0 0 1 0.9,1.07 l 0.17,0.25 a 4.78,4.78 0 0 1 0.68,2.45 m -14.24,7.9 a 9.48,9.48 0 0 1 0.83,0.6 l 0.49,0.42 a 8,8 0 0 1 1.57,1.8 3.3,3.3 0 0 1 0.15,0.3 1.37,1.37 0 0 1 0.09,1.05 m 1.96,-19.39 a 2.12,2.12 0 0 1 0.4,-0.5 2.55,2.55 0 0 1 0.32,-0.26 2.92,2.92 0 0 1 1.67,-0.55 l 0.33,0 a 3.33,3.33 0 0 1 1.37,0.52 4.45,4.45 0 0 1 0.42,0.26 4.28,4.28 0 0 1 0.38,0.31 4.53,4.53 0 0 1 0.37,0.35 4.33,4.33 0 0 1 0.33,0.4 3.58,3.58 0 0 1 0.25,0.39 2.88,2.88 0 0 1 0.38,1.27 2.62,2.62 0 0 1 0,0.28 m -17.81,15.36 M 279.09,485 m -0.42,-5.15 a 4.06,4.06 0 0 1 0.26,0.66 3.72,3.72 0 0 1 0.1,0.41 m 2.15,-3.74 m -11.05,4.44 m 4.22,-7.31 m 6.97,-0.75 m -13.96,-2.9 a 2.29,2.29 0 0 1 0.28,-0.59 2.83,2.83 0 0 1 1.68,-1.18 l 0.31,0 a 2.74,2.74 0 0 1 1.32,0.29 3.79,3.79 0 0 1 0.81,0.45 4.09,4.09 0 0 1 0.39,0.3 4.22,4.22 0 0 1 0.36,0.35 3.67,3.67 0 0 1 0.28,0.36 3.24,3.24 0 0 1 0.54,1.25 c 0,0.09 0.06,0.19 0.08,0.28 m 6.24,-5.49 a 4.83,4.83 0 0 1 0.23,0.82 5,5 0 0 1 0.07,0.51 m -20.08,1.05 a 5.46,5.46 0 0 1 0.56,0.59 c 0.1,0.12 0.2,0.26 0.31,0.41 a 5,5 0 0 1 0.84,1.75 2.52,2.52 0 0 1 0,0.29 m 8.1,-4.35 m 5.4,-1.97 m -17.29,-4.14 a 3.3,3.3 0 0 1 0.76,-0.11 4.22,4.22 0 0 1 0.5,0 4.65,4.65 0 0 1 2,0.59 l 0.31,0.21 a 3.51,3.51 0 0 1 1,1.15 3.83,3.83 0 0 1 0.23,0.42 3.37,3.37 0 0 1 0.17,0.43 3.3,3.3 0 0 1 0.12,0.45 2.94,2.94 0 0 1 0.05,0.46 2.25,2.25 0 0 1 0,0.4 M 265.06,465 M 250,460.27 a 4.67,4.67 0 0 1 0.77,0.38 c 0.15,0.09 0.3,0.19 0.46,0.31 a 5.78,5.78 0 0 1 1.56,1.63 q 0.1,0.16 0.17,0.33 a 2.85,2.85 0 0 1 0.29,1.38 2.66,2.66 0 0 1 0,0.42 m 4.31,-6.65 a 3.24,3.24 0 0 1 0.22,-0.71 3.63,3.63 0 0 1 0.21,-0.42 3.21,3.21 0 0 1 1.3,-1.29 l 0.29,-0.11 a 2.21,2.21 0 0 1 1.28,0 2.81,2.81 0 0 1 0.41,0.11 2.75,2.75 0 0 1 0.39,0.17 3,3 0 0 1 0.39,0.23 3.16,3.16 0 0 1 0.36,0.3 3,3 0 0 1 0.29,0.32 3.13,3.13 0 0 1 0.58,1.24 c 0,0.1 0.07,0.19 0.09,0.29 m -10.82,0.61 a 4.71,4.71 0 0 1 0.14,0.84 5,5 0 0 1 0,0.53 m 14.13,-9.44 a 3.21,3.21 0 0 1 0.38,-0.6 3.72,3.72 0 0 1 0.3,-0.34 3.36,3.36 0 0 1 1.51,-0.93 l 0.29,-0.05 a 2.1,2.1 0 0 1 1.18,0.21 2.54,2.54 0 0 1 0.35,0.17 2.4,2.4 0 0 1 0.32,0.22 2.56,2.56 0 0 1 0.3,0.28 2.75,2.75 0 0 1 0.26,0.33 2.48,2.48 0 0 1 0.19,0.34 2.67,2.67 0 0 1 0.25,1.22 c 0,0.09 0,0.18 0,0.28 m -9.57,0.38 M 253.7,454 m -4.22,-4.23 a 3.79,3.79 0 0 1 0.43,0.59 4.63,4.63 0 0 1 0.22,0.41 4.27,4.27 0 0 1 0.48,1.8 2.7,2.7 0 0 1 0,0.31 M 270.46,441 a 3.74,3.74 0 0 1 0.47,0.65 5.17,5.17 0 0 1 0.71,2.52 3.37,3.37 0 0 1 0,0.36 m -12.35,-2.83 a 3.12,3.12 0 0 1 0.69,0 l 0.43,0.08 a 3.26,3.26 0 0 1 1.53,0.81 l 0.19,0.23 a 2.25,2.25 0 0 1 0.44,1.12 2.73,2.73 0 0 1 0,0.39 2.53,2.53 0 0 1 0,0.39 m -11.28,2.63 m 14.71,-6 m -2,-0.13 m -21,4.07 m 1,-3.88 m 17.26,-6.25 M 246,433.84 a 3.34,3.34 0 0 1 0.23,0.7 4.27,4.27 0 0 1 0.08,0.48 m 8.12,-6.83 a 2.72,2.72 0 0 1 0.63,0.24 2.93,2.93 0 0 1 0.36,0.22 2.77,2.77 0 0 1 1,1.3 2.24,2.24 0 0 1 0.08,0.29 m 0.23,-1.52 A 3.92,3.92 0 0 1 257,428 a 5,5 0 0 1 0.23,-0.45 5.16,5.16 0 0 1 1.32,-1.58 l 0.29,-0.19 a 2.75,2.75 0 0 1 1.24,-0.42 l 0.39,0 a 2.08,2.08 0 0 1 0.37,0 1.88,1.88 0 0 1 0.36,0.09 1.72,1.72 0 0 1 0.33,0.16 1.43,1.43 0 0 1 0.26,0.2 1.67,1.67 0 0 1 0.47,0.95 1.92,1.92 0 0 1 0.07,0.24 m -7.72,3.67 m -7.07,-5.85 a 2.5,2.5 0 0 1 0.55,0.39 2.83,2.83 0 0 1 0.29,0.31 3,3 0 0 1 0.71,1.6 2.64,2.64 0 0 1 0,0.32 m 6.05,-6.44 a 2.44,2.44 0 0 1 0.52,0.47 2.81,2.81 0 0 1 0.26,0.36 3.19,3.19 0 0 1 0.51,1.82 3,3 0 0 1 0,0.35 m 16.98,6.72 m -19.86,-13.2 m 10.81,1.12 a 6.3,6.3 0 0 1 0.29,-1.44 8.65,8.65 0 0 1 0.35,-0.93 10.67,10.67 0 0 1 2.46,-3.55 c 0.19,-0.18 0.39,-0.35 0.6,-0.51 a 11,11 0 0 1 3.6,-1.73 6.48,6.48 0 0 1 0.86,-0.16 5.72,5.72 0 0 1 0.84,-0.06 4.5,4.5 0 0 1 0.8,0.07 3.07,3.07 0 0 1 0.65,0.18 2.35,2.35 0 0 1 1.32,1.34 2.62,2.62 0 0 1 0.22,0.37 c 0.84,1.8 -0.09,4.79 -0.07,4.79 m -30.15,9.06 m 15.94,18.3 m 3.67,-43.05 a 2.54,2.54 0 0 1 0.33,0.91 3.79,3.79 0 0 1 0.06,0.67 m -3.49,11.65 m -9,40.26 m -1.97,3.82 a 6.72,6.72 0 0 1 0,-1.51 7.31,7.31 0 0 1 0.19,-0.93 c 0.43,-1.1 0.77,-2.45 1.81,-3.21 a 4.54,4.54 0 0 1 0.49,-0.37 4.12,4.12 0 0 1 2.36,-0.7 4.93,4.93 0 0 1 0.8,0 4.64,4.64 0 0 1 0.79,0.14 5.07,5.07 0 0 1 0.8,0.26 5.47,5.47 0 0 1 0.78,0.4 5.1,5.1 0 0 1 0.66,0.48 6,6 0 0 1 1.57,2.15 c 0.11,0.17 0.2,0.35 0.29,0.53 a 12.43,12.43 0 0 1 1,5.55 m 3.73,-46.82 m 8.12,11.62 m 7.35,-9.12 m -13.35,15.63 m 12.74,16.67 m 3.65,7.28 a 8.23,8.23 0 0 1 0.06,1.49 m 1.83,-49.91 a 15.56,15.56 0 0 1 1.67,-1.18 c 0.34,-0.21 0.72,-0.43 1.13,-0.65 a 15.75,15.75 0 0 1 4.66,-1.73 c 0.25,0 0.49,-0.06 0.73,-0.07 a 3.57,3.57 0 0 1 2.31,0.53 2.58,2.58 0 0 1 0.53,0.37 2.11,2.11 0 0 1 0.39,0.48 2.28,2.28 0 0 1 0.28,0.58 2.8,2.8 0 0 1 0.12,0.7 3.26,3.26 0 0 1 0,0.7 m -13.45,19.15 m 13.88,0.78 m 0.22,21.6 m 14.49,-48.88 a 4.26,4.26 0 0 1 1.16,0.48 3.68,3.68 0 0 1 0.58,0.44 c 0.53,0.71 1.37,1.36 1.19,2.56 m -20.58,25.03 a 6.09,6.09 0 0 1 0.52,1.31 8.07,8.07 0 0 1 0.2,0.91 m 3.69,-10.82 M 275,419.34 m 32.83,-7.28 a 4,4 0 0 1 0.9,0.91 4.68,4.68 0 0 1 0.42,0.7 c 0.33,1 0.94,2.08 0.59,3.51 m -12.46,3.75 M 300,431.5 m -23.46,-10.95 m 12,7.86 a 9.22,9.22 0 0 1 1.15,-1.07 c 0.24,-0.19 0.51,-0.39 0.81,-0.59 a 9.29,9.29 0 0 1 3.56,-1.51 5,5 0 0 1 0.6,0 4.27,4.27 0 0 1 2.64,1 3,3 0 0 1 0.45,0.48 3.35,3.35 0 0 1 0.37,0.57 3.9,3.9 0 0 1 0.4,1.35 m -9.58,11.86 m -16.35,-20.13 m -9.38,-7.03 a 4.81,4.81 0 0 1 0,1.2 m 9.96,11.83 m 20.66,32.92 M 251.4,433.32 m 23.34,9.14 a 9.62,9.62 0 0 1 0.12,1.71 c 0,0.34 0,0.71 -0.06,1.1 -0.28,1.37 -0.34,3 -1.22,4.17 M 254.4,442.3 m -4.09,4.42 a 7.33,7.33 0 0 1 0.61,-1.46 8.51,8.51 0 0 1 0.53,-0.86 c 0.83,-1 1.66,-2.21 3,-2.7 a 5.57,5.57 0 0 1 0.62,-0.25 4.47,4.47 0 0 1 2.57,-0.11 4.86,4.86 0 0 1 0.79,0.2 4.45,4.45 0 0 1 0.73,0.33 4.74,4.74 0 0 1 0.7,0.44 5,5 0 0 1 0.64,0.58 4.56,4.56 0 0 1 0.49,0.63 5.54,5.54 0 0 1 0.84,2.48 c 0,0.19 0.09,0.39 0.11,0.59 m -3.56,2.76 m 10.26,5.98 a 10.61,10.61 0 0 1 0.62,1.65 c 0.1,0.33 0.19,0.69 0.26,1.08 0.14,1.38 0.55,2.94 0.07,4.23 m -18.94,-11.98 a 7.09,7.09 0 0 1 1.53,0.18 8.54,8.54 0 0 1 1,0.27 8.7,8.7 0 0 1 3.49,2.1 6.89,6.89 0 0 1 0.46,0.54 6.07,6.07 0 0 1 1.16,2.58 6.75,6.75 0 0 1 0.18,0.87 5.82,5.82 0 0 1 0.05,0.86 m -19.13,1.99 m 24.12,4.09 a 11.11,11.11 0 0 1 1.52,1 c 0.28,0.22 0.59,0.47 0.9,0.76 a 13.7,13.7 0 0 1 3,3.66 c 0.12,0.23 0.22,0.46 0.31,0.69 a 5.3,5.3 0 0 1 0.41,2.71 m 7.97,13.65 M 251.37,468 M 267,454.93 a 7.77,7.77 0 0 1 1.28,0.75 c 0.24,0.17 0.5,0.37 0.76,0.59 a 9.82,9.82 0 0 1 2.47,3 c 0.09,0.2 0.18,0.4 0.25,0.6 a 5,5 0 0 1 0.29,2.45 m 1.42,0.79 a 5.47,5.47 0 0 1 1.27,-0.51 7,7 0 0 1 0.88,-0.18 7.69,7.69 0 0 1 3.79,0.33 6.65,6.65 0 0 1 2.84,2.09 8.06,8.06 0 0 1 0.58,0.71 9,9 0 0 1 0.89,1.58 6.62,6.62 0 0 1 0.3,0.86 5.12,5.12 0 0 1 0.15,0.78 m -9,9.69 m -12.96,-6.68 a 14.47,14.47 0 0 1 1.37,1.37 c 0.25,0.28 0.52,0.6 0.78,0.94 0.84,1.27 2,2.64 2.3,4 a 6.22,6.22 0 0 1 0.16,0.67 M 278.38,459 a 10,10 0 0 1 1.52,0.95 c 0.28,0.21 0.59,0.46 0.9,0.73 a 12.8,12.8 0 0 1 3,3.65 c 0.12,0.23 0.22,0.47 0.31,0.71 a 5.71,5.71 0 0 1 0.39,2.83 m 4.05,-5.41 M 274,455.74 a 6,6 0 0 1 0.59,-1.29 6.83,6.83 0 0 1 0.51,-0.74 c 0.79,-0.81 1.57,-1.88 2.8,-2.19 a 4.63,4.63 0 0 1 0.58,-0.16 4.28,4.28 0 0 1 2.44,0.21 5.22,5.22 0 0 1 0.75,0.28 5.08,5.08 0 0 1 0.7,0.4 5.5,5.5 0 0 1 0.68,0.51 5.88,5.88 0 0 1 0.62,0.63 5.41,5.41 0 0 1 0.48,0.65 5.9,5.9 0 0 1 0.84,2.43 q 0.07,0.28 0.12,0.56 m 8.22,-15.73 a 6.59,6.59 0 0 1 1.41,0.45 8.52,8.52 0 0 1 3.62,3.06 6,6 0 0 1 0.3,0.6 5.47,5.47 0 0 1 0.44,2.65 m -26.87,-2.19 a 8.4,8.4 0 0 1 1.18,1.21 10.66,10.66 0 0 1 0.65,0.88 c 0.66,1.24 1.62,2.54 1.73,4.09 a 7.05,7.05 0 0 1 0.07,0.74 m -7.66,-3.27 m 18.54,-17.08 a 8.62,8.62 0 0 1 1.51,-0.62 9.37,9.37 0 0 1 1,-0.25 c 1.25,-0.12 2.68,-0.46 3.82,0.09 a 4.24,4.24 0 0 1 0.55,0.25 3.72,3.72 0 0 1 1.64,1.75 4.75,4.75 0 0 1 0.57,1.49 5.4,5.4 0 0 1 0.13,0.84 6,6 0 0 1 0,0.9 M 261,446.66 m 22.14,-7.46 m -15.27,-3.88 a 7.31,7.31 0 0 1 0,-1.68 9,9 0 0 1 0.16,-1.08 9.72,9.72 0 0 1 1.88,-4.17 q 0.25,-0.31 0.54,-0.59 a 7,7 0 0 1 2.67,-1.69 7.28,7.28 0 0 1 0.92,-0.32 6,6 0 0 1 0.91,-0.18 5.63,5.63 0 0 1 0.92,-0.06 5,5 0 0 1 0.9,0.1 3.83,3.83 0 0 1 0.76,0.23 3.69,3.69 0 0 1 1.79,1.62 4.12,4.12 0 0 1 0.33,0.44 c 1.37,2.15 1.07,5.66 1.08,5.66 m 4.07,-8.13 a 6.63,6.63 0 0 1 0.29,-1.43 8.77,8.77 0 0 1 0.34,-0.91 10,10 0 0 1 2.33,-3.39 c 0.18,-0.16 0.36,-0.32 0.55,-0.46 a 6.8,6.8 0 0 1 2.51,-1.23 6.53,6.53 0 0 1 0.81,-0.2 5.06,5.06 0 0 1 0.78,-0.08 4.57,4.57 0 0 1 0.77,0 3.79,3.79 0 0 1 0.72,0.15 2.81,2.81 0 0 1 0.59,0.26 2.67,2.67 0 0 1 1.19,1.52 3.15,3.15 0 0 1 0.19,0.4 c 0.75,1.95 -0.11,4.91 -0.1,4.91 m -0.5,-12.76 a 4.52,4.52 0 0 1 1.16,0.68 4.71,4.71 0 0 1 0.6,0.57 c 0.56,0.89 1.43,1.75 1.33,3.13 a 5.14,5.14 0 0 1 0,0.66 m -33.86,6.86 a 7.09,7.09 0 0 1 0.45,-1.4 9.34,9.34 0 0 1 0.43,-0.88 10.49,10.49 0 0 1 2.61,-3.19 c 0.19,-0.15 0.38,-0.28 0.58,-0.41 a 6.43,6.43 0 0 1 2.51,-1 5.93,5.93 0 0 1 0.79,-0.13 4.54,4.54 0 0 1 0.74,0 4,4 0 0 1 0.72,0.09 3.31,3.31 0 0 1 0.66,0.22 2.51,2.51 0 0 1 0.52,0.31 2.67,2.67 0 0 1 0.95,1.65 3.25,3.25 0 0 1 0.14,0.43 c 0.5,2 -0.62,4.94 -0.62,4.94 a 4.87,4.87 0 0 0 0,-1.47 M 240,422.34 a 5,5 0 0 1 1.2,0.44 5.22,5.22 0 0 1 0.67,0.41 c 0.72,0.68 1.69,1.29 1.93,2.45 a 4.22,4.22 0 0 1 0.13,0.55 m 16.68,-6.3 m -0.51,-5.74 m 15.07,8.3 a 10.71,10.71 0 0 1 1.43,-0.92 c 0.29,-0.16 0.61,-0.32 1,-0.47 1.24,-0.43 2.65,-1.08 3.88,-0.92 a 4.54,4.54 0 0 1 0.59,0.07 3,3 0 0 1 1.86,1.05 3.1,3.1 0 0 1 0.73,1.12 3.61,3.61 0 0 1 0.21,0.69 4.28,4.28 0 0 1 0.08,0.78 4.37,4.37 0 0 1 0,0.75 m -38.31,4.26 m 44.85,-7.8 a 7.15,7.15 0 0 1 0.41,-1.51 9.68,9.68 0 0 1 0.42,-1 11.41,11.41 0 0 1 2.74,-3.58 c 0.2,-0.17 0.41,-0.33 0.63,-0.49 a 8,8 0 0 1 2.79,-1.29 7.52,7.52 0 0 1 0.89,-0.21 5.74,5.74 0 0 1 0.85,-0.09 5,5 0 0 1 0.83,0 4,4 0 0 1 0.77,0.16 2.84,2.84 0 0 1 0.61,0.27 2.57,2.57 0 0 1 1.17,1.6 3,3 0 0 1 0.18,0.42 c 0.67,2.05 -0.45,5.19 -0.44,5.19 m -50.6,1.47 m 9.54,-5 m -6.87,8.94 a 7.55,7.55 0 0 1 0.43,-1.54 9.93,9.93 0 0 1 0.43,-1 11.06,11.06 0 0 1 2.73,-3.53 q 0.3,-0.24 0.62,-0.46 a 7,7 0 0 1 2.72,-1.14 6.44,6.44 0 0 1 0.86,-0.16 5,5 0 0 1 0.82,0 4.44,4.44 0 0 1 0.8,0.09 3.76,3.76 0 0 1 0.74,0.23 2.82,2.82 0 0 1 0.59,0.33 3,3 0 0 1 1.11,1.79 3.62,3.62 0 0 1 0.17,0.46 c 0.63,2.22 -0.48,5.41 -0.47,5.41 m -8.53,2.36 a 7.31,7.31 0 0 1 0.26,-1.6 9.33,9.33 0 0 1 0.34,-1 10.57,10.57 0 0 1 2.46,-3.81 q 0.29,-0.27 0.6,-0.52 a 7.24,7.24 0 0 1 2.75,-1.38 7.11,7.11 0 0 1 0.9,-0.23 5.57,5.57 0 0 1 0.87,-0.09 5,5 0 0 1 0.86,0 4.24,4.24 0 0 1 0.81,0.18 3.2,3.2 0 0 1 0.66,0.29 3.16,3.16 0 0 1 1.38,1.72 3.72,3.72 0 0 1 0.23,0.45 c 0.92,2.2 0.09,5.52 0.1,5.53 m 1.43,2.31 a 5.91,5.91 0 0 1 0.85,1.18 7.63,7.63 0 0 1 0.41,0.85 8.55,8.55 0 0 1 0.72,3.92 m 4.25,27.33 m -4.04,-46.75 a 11.06,11.06 0 0 1 1.63,-0.6 c 0.32,-0.09 0.67,-0.18 1,-0.25 1.27,-0.13 2.78,-0.47 3.82,0 a 3.42,3.42 0 0 1 0.51,0.23 2.66,2.66 0 0 1 1.31,1.65 3.55,3.55 0 0 1 0.21,0.68 3.9,3.9 0 0 1 0.07,0.74 4.77,4.77 0 0 1 0,0.81 m -7.55,-1.77 a 11,11 0 0 1 1.19,-1.27 c 0.25,-0.23 0.54,-0.48 0.86,-0.73 a 12.84,12.84 0 0 1 3.89,-2.19 c 0.23,-0.07 0.45,-0.13 0.67,-0.17 a 4.29,4.29 0 0 1 2.42,0.11 3.4,3.4 0 0 1 0.64,0.24 2.67,2.67 0 0 1 0.54,0.35 2.6,2.6 0 0 1 0.46,0.46 2.83,2.83 0 0 1 0.54,1.18 m 3.3,35.64 a 8.69,8.69 0 0 1 0,1.57 m 1.71,-13.72 a 8,8 0 0 1 0.12,1.46 c 0,0.29 0,0.61 0,0.95 m -8.8,0.77 a 7.73,7.73 0 0 1 0.8,-1.4 9.13,9.13 0 0 1 0.64,-0.81 c 1,-0.89 1.94,-2.05 3.29,-2.43 a 5.65,5.65 0 0 1 0.64,-0.19 4.41,4.41 0 0 1 2.57,0.13 4.74,4.74 0 0 1 0.76,0.27 4.33,4.33 0 0 1 0.69,0.4 4.58,4.58 0 0 1 0.65,0.51 4.84,4.84 0 0 1 0.56,0.64 4.55,4.55 0 0 1 0.42,0.68 5.56,5.56 0 0 1 0.55,2.57 q 0,0.3 0,0.6 m -0.99,-15.01 m -0.05,3.26 A 7.56,7.56 0 0 1 292,433 m 18,-16.68 m -22.8,-4.92 a 3.31,3.31 0 0 1 0.74,0.79 3.92,3.92 0 0 1 0.34,0.61 5,5 0 0 1 0.4,3 m -23.44,-10.98 a 3,3 0 0 1 0.52,1 4.16,4.16 0 0 1 0.17,0.71 m 1.6,6.19 a 9.61,9.61 0 0 1 0.9,-1.57 c 0.21,-0.3 0.45,-0.63 0.73,-1 a 15.6,15.6 0 0 1 3.89,-3.43 q 0.38,-0.23 0.78,-0.43 a 8.88,8.88 0 0 1 3.14,-1 7.35,7.35 0 0 1 0.93,-0.09 5.12,5.12 0 0 1 0.85,0 4.15,4.15 0 0 1 0.79,0.16 3.11,3.11 0 0 1 0.68,0.3 2.18,2.18 0 0 1 0.5,0.39 2.52,2.52 0 0 1 0.6,1.95 3.45,3.45 0 0 1 0,0.49 c 0,2.36 -2,5.61 -2,5.61 a 6.15,6.15 0 0 0 0.37,-1.69 4.84,4.84 0 0 0 0,-0.74 m 13.5,5.88 a 4.65,4.65 0 0 1 0.3,1.2 6.67,6.67 0 0 1 0.05,0.83 M 269.89,419 m -9.89,0.33 a 11.34,11.34 0 0 1 1.22,-1.37 c 0.26,-0.25 0.56,-0.52 0.89,-0.79 a 13.53,13.53 0 0 1 4.07,-2.4 c 0.24,-0.08 0.48,-0.15 0.72,-0.2 a 4.7,4.7 0 0 1 2.59,0 3.75,3.75 0 0 1 0.7,0.23 2.89,2.89 0 0 1 0.59,0.35 2.8,2.8 0 0 1 0.51,0.47 2.85,2.85 0 0 1 0.39,0.59 2.79,2.79 0 0 1 0.23,0.63 m -10.17,10.98 m 29.1,17.34 m -31.96,-13.21 m -19.95,-5.56 a 10.44,10.44 0 0 1 1.14,-1.43 c 0.25,-0.26 0.53,-0.54 0.85,-0.82 a 12.15,12.15 0 0 1 4,-2.47 7.31,7.31 0 0 1 0.71,-0.2 4.62,4.62 0 0 1 2.65,0.11 4.08,4.08 0 0 1 0.73,0.27 4.08,4.08 0 0 1 1.19,0.9 3.51,3.51 0 0 1 0.44,0.64 3.41,3.41 0 0 1 0.28,0.68 5.07,5.07 0 0 1 0,2.59 c 0,0.2 0,0.4 -0.08,0.61 A 15.62,15.62 0 0 1 248,433 a 7.68,7.68 0 0 0 0.65,-1.77 7.86,7.86 0 0 0 0.16,-0.86 m 0.89,11.78 m 17.48,7.56 a 6.49,6.49 0 0 1 0.52,-1.34 7.49,7.49 0 0 1 0.46,-0.78 7.06,7.06 0 0 1 2.63,-2.47 4.8,4.8 0 0 1 0.56,-0.23 4.08,4.08 0 0 1 2.36,-0.09 4.61,4.61 0 0 1 0.73,0.18 4.3,4.3 0 0 1 0.69,0.3 4.59,4.59 0 0 1 0.66,0.41 4.81,4.81 0 0 1 0.6,0.54 4.44,4.44 0 0 1 0.48,0.58 5.27,5.27 0 0 1 0.85,2.28 c 0.05,0.18 0.09,0.36 0.12,0.54 m -9.12,-3.82 a 9.12,9.12 0 0 1 0.27,1.6 c 0,0.32 0,0.67 0,1 -0.14,1.3 -0.05,2.81 -0.77,4 m -23.73,-11.05 a 8.28,8.28 0 0 1 1.55,-0.72 9.35,9.35 0 0 1 1,-0.3 c 1.34,-0.17 2.85,-0.58 4.18,0 a 5.26,5.26 0 0 1 0.64,0.26 4.79,4.79 0 0 1 2.05,1.87 6,6 0 0 1 0.48,0.77 5.85,5.85 0 0 1 0.36,0.84 6.41,6.41 0 0 1 0.26,0.92 6.72,6.72 0 0 1 0.13,1 5.93,5.93 0 0 1 0,0.91 m 10.59,7.23 m 9.96,13.26 m 8.54,9.6 m -20.04,-7.16 a 5.75,5.75 0 0 1 0.27,-1.49 6.11,6.11 0 0 1 0.35,-0.87 c 0.64,-1 1.21,-2.24 2.5,-2.69 a 4.5,4.5 0 0 1 0.61,-0.23 4.89,4.89 0 0 1 2.78,0 6.74,6.74 0 0 1 0.91,0.25 6.84,6.84 0 0 1 0.89,0.38 7.83,7.83 0 0 1 0.89,0.51 8.49,8.49 0 0 1 0.86,0.65 7.8,7.8 0 0 1 0.72,0.69 8.2,8.2 0 0 1 1.62,2.64 c 0.11,0.2 0.2,0.41 0.29,0.61 a 11,11 0 0 1 0.66,5.73 M 269,459.5 a 5.22,5.22 0 0 1 0.85,-1 6.78,6.78 0 0 1 3.85,-1.77 4.8,4.8 0 0 1 0.61,0 4.85,4.85 0 0 1 2.37,0.87 6.2,6.2 0 0 1 0.69,0.47 5.94,5.94 0 0 1 0.63,0.56 6.53,6.53 0 0 1 0.58,0.65 6.71,6.71 0 0 1 0.5,0.74 5.81,5.81 0 0 1 0.37,0.73 5.47,5.47 0 0 1 0.42,2.43 5.35,5.35 0 0 1 0,0.54 m 26.68,-27.58 a 6,6 0 0 1 1.08,0.9 7.23,7.23 0 0 1 0.59,0.69 7.78,7.78 0 0 1 1.56,3.41 6.14,6.14 0 0 1 0.06,0.66 m -15.55,2.55 m -35.78,5.58 a 6.67,6.67 0 0 1 1.47,-0.15 7.89,7.89 0 0 1 0.95,0.06 7.79,7.79 0 0 1 3.64,1.28 5.94,5.94 0 0 1 0.52,0.42 5.66,5.66 0 0 1 1.52,2.26 6.64,6.64 0 0 1 0.31,0.82 6,6 0 0 1 0.19,0.84 6.08,6.08 0 0 1 0.1,0.87 5.7,5.7 0 0 1 0,0.88 m -15.01,0.25 m 12.25,-3.3 m 38.74,-31.24 a 6.89,6.89 0 0 1 0,1.43 c 0,0.29 -0.07,0.61 -0.13,1 m -26.97,15.13 m 12.83,-22.22 a 4.21,4.21 0 0 1 1,0.73 4.76,4.76 0 0 1 0.51,0.58 5.24,5.24 0 0 1 1.12,3 5.17,5.17 0 0 1 0,0.61 M 279,417.94 a 5.15,5.15 0 0 1 1.26,0.58 5.36,5.36 0 0 1 0.69,0.51 c 0.7,0.82 1.69,1.59 1.8,2.93 a 4.9,4.9 0 0 1 0.07,0.64 m -10.2,-3.3 a 4,4 0 0 1 0.69,0.94 5.11,5.11 0 0 1 0.31,0.7 6.26,6.26 0 0 1 0.35,3.29 M 300.44,405 a 2.84,2.84 0 0 1 0.68,0.78 3.39,3.39 0 0 1 0.29,0.6 4.68,4.68 0 0 1 0.1,3 m -49.44,17.21 c -1.31,-6.13 4.08,-11.39 10.91,-11.95 l 35.34,-2.93 c 6.88,-0.56 7.69,3.69 2.89,9.77 C 290,435.68 283,451 280.2,465.4 c -1,6.14 -5.61,6.18 -10.22,0.1 -9.26,-12.75 -15.23,-26.16 -17.91,-38.91 z" class="hair"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Pubic_Hair_Neat.tw b/src/art/vector/layers/Pubic_Hair_Neat.tw new file mode 100644 index 0000000000000000000000000000000000000000..1149432fafdb5d9979ee555baed49c0af22ada3b --- /dev/null +++ b/src/art/vector/layers/Pubic_Hair_Neat.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Pubic_Hair_Neat [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="M 487.94,432.27" class="hair" id="path225"/><path d="m 264.63236,432.7941 3.08824,-0.44117 c 0.32893,-6.46544 2.86908,-11.82526 5.07352,-17.35295 -5.56875,0.43615 -11.6036,0.4062 -16.47058,1.54412 2.07073,5.53315 5.0715,10.91128 8.30882,16.25 z" id="path5158" sodipodi:nodetypes="ccccc" class="hair"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Pubic_Hair_Strip.tw b/src/art/vector/layers/Pubic_Hair_Strip.tw new file mode 100644 index 0000000000000000000000000000000000000000..75de4a908f9208c6acb82d427e3f32ee496fce00 --- /dev/null +++ b/src/art/vector/layers/Pubic_Hair_Strip.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Pubic_Hair_Strip [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 263.75,419.9043 c -8.2e-4,-10e-6 -0.58714,0.1188 -0.58789,0.11914 -7.6e-4,3.3e-4 -0.41533,0.28448 -0.41602,0.28515 -6.8e-4,6.8e-4 -0.16844,0.19228 -0.21679,0.27149 -0.0484,0.0792 -0.0782,0.14597 -0.10157,0.20312 -0.0467,0.11431 -0.0651,0.19149 -0.0781,0.25391 -0.026,0.12484 -0.0284,0.19225 -0.0312,0.25 -0.0112,0.23101 0.006,0.32495 0.0215,0.48047 0.0306,0.31104 0.0857,0.72068 0.16211,1.23047 0.15277,1.01958 0.38676,2.41502 0.63867,3.85937 0.25192,1.44435 0.5224,2.93411 0.74805,4.125 0.22565,1.19089 0.34624,1.90055 0.50586,2.4336 a 1.40014,1.40014 0 1 0 2.68164,-0.80274 c 0.0212,0.0709 -0.21519,-0.97908 -0.4375,-2.15234 -0.22231,-1.17326 -0.49061,-2.65278 -0.74023,-4.08399 -0.24963,-1.4312 -0.48059,-2.81807 -0.62696,-3.79492 -0.0673,-0.44897 -0.1114,-0.78286 -0.13476,-1 a 1.40014,1.40014 0 0 0 -0.17774,-0.96289 c -0.0508,-0.0871 -0.0847,-0.21273 -0.39257,-0.43945 -0.077,-0.0567 -0.30966,-0.17347 -0.31055,-0.17383 -8.9e-4,-3.6e-4 -0.50504,-0.10155 -0.50586,-0.10156 z" id="path4354" class="hair"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Pussy.tw b/src/art/vector/layers/Pussy.tw new file mode 100644 index 0000000000000000000000000000000000000000..ac57795055cf3c057074f2a080e762e1393c29df --- /dev/null +++ b/src/art/vector/layers/Pussy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Pussy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 266.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="labia" id="Vagina"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Pussy_Piercing.tw b/src/art/vector/layers/Pussy_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..85b86107244a3e5bd40bfd2abece0e95e3748b2e --- /dev/null +++ b/src/art/vector/layers/Pussy_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Pussy_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 269.6,443.9 c 0.1,-0.1 1.3,0.5 1.4,1.7 0.1,0.9 -0.6,2 -1.7,2 -1,0.1 -1.8,-0.7 -2,-1.5 -0.2,-1.1 0.6,-2 0.7,-2 0.1,0 -0.6,1.1 -0.2,1.9 0.3,0.4 0.8,0.8 1.3,0.7 0.7,-0.1 1.2,-0.7 1.2,-1.2 0.1,-0.9 -0.8,-1.6 -0.7,-1.6 z" class="steel_piercing" id="XMLID_528_"/><path d="m 266.6,445 c 0.1,0 0.7,1.2 0,2.2 -0.5,0.7 -1.7,1.1 -2.6,0.4 -0.8,-0.6 -0.9,-1.7 -0.5,-2.5 0.5,-0.9 1.8,-1.1 1.8,-1 0,0.1 -1.2,0.4 -1.3,1.3 -0.1,0.4 0.1,1.1 0.6,1.4 0.5,0.4 1.3,0.2 1.7,-0.2 0.6,-0.5 0.2,-1.6 0.3,-1.6 z" class="steel_piercing" id="XMLID_529_"/><path d="m 267.5,451.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.5,-0.5 0,-1.6 0.1,-1.6 z" class="steel_piercing" id="XMLID_530_"/><path d="m 270.7,450.6 c 0.1,-0.1 1.4,0.4 1.7,1.4 0.2,0.9 -0.4,2 -1.4,2.2 -1,0.3 -1.9,-0.4 -2.1,-1.2 -0.4,-1 0.4,-2 0.4,-2 0.1,0 -0.4,1.2 0.1,1.9 0.3,0.4 0.9,0.7 1.4,0.5 0.6,-0.2 1,-0.9 1,-1.4 0,-0.9 -1.2,-1.4 -1.1,-1.4 z" class="steel_piercing" id="XMLID_531_"/><path d="m 272.8,457.1 c 0.1,-0.1 1.4,0.4 1.7,1.5 0.2,0.9 -0.4,2 -1.4,2.2 -1,0.2 -1.9,-0.5 -2.1,-1.2 -0.4,-1 0.4,-2 0.4,-2 0.1,0 -0.4,1.2 0.1,1.9 0.3,0.4 0.9,0.7 1.4,0.5 0.6,-0.2 1,-0.9 1,-1.3 -0.1,-1 -1.1,-1.5 -1.1,-1.6 z" class="steel_piercing" id="XMLID_532_"/><path d="m 270.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="steel_piercing" id="XMLID_533_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Pussy_Piercing_Heavy.tw b/src/art/vector/layers/Pussy_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..6280e0c911aafad5da121cffb83ed15f5c6b08ca --- /dev/null +++ b/src/art/vector/layers/Pussy_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Pussy_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 271.3,459.9 c 0.2,0 2,2.8 0.8,5.2 -1,2 -3.6,3.1 -6,2 -2.1,-1.1 -2.8,-3.7 -2,-5.6 0.9,-2.4 3.7,-3.1 3.9,-2.9 0.1,0.2 -2.6,1.4 -2.7,3.6 -0.1,1.2 0.5,2.6 1.9,3.1 1.4,0.6 3.1,0 3.9,-1 1.3,-1.7 0.1,-4.3 0.2,-4.4 z" class="steel_piercing" id="XMLID_512_"/><ellipse ry="2.0000744" rx="1.8000669" cy="-498.19226" cx="-198.94585" class="steel_piercing" transform="matrix(-0.99036315,0.13849485,-0.13849485,-0.99036315,0,0)" id="XMLID_517_"/><ellipse ry="1.8000669" rx="1.7000633" cy="-499.48944" cx="-201.77112" class="steel_piercing" transform="matrix(-0.99036315,0.13849485,-0.13849485,-0.99036315,0,0)" id="XMLID_518_"/><path d="m 268,449.7 c 0.2,0 1.7,3 0.1,5.2 -1.2,1.8 -4.1,2.6 -6.1,1.2 -2,-1.4 -2.2,-4.1 -1.2,-5.8 1.2,-2.2 4.2,-2.6 4.3,-2.4 0.1,0.2 -2.8,1.1 -3.1,3.1 -0.2,1.2 0.2,2.6 1.4,3.4 1.3,0.9 3.1,0.4 4,-0.4 1.3,-1.5 0.5,-4.3 0.6,-4.3 z" class="steel_piercing" id="XMLID_519_"/><ellipse ry="2" rx="1.8" cy="453.10001" cx="260.60001" class="steel_piercing" id="XMLID_520_"/><ellipse ry="1.8" rx="1.7" cy="455.39999" cx="262.60001" class="steel_piercing" id="XMLID_521_"/><path d="m 271.3,459.3 c -0.2,0 -1.4,3.2 0.4,5.2 1.4,1.7 4.3,2.2 6.2,0.6 1.9,-1.5 1.9,-4.3 0.8,-5.9 -1.3,-2.1 -4.4,-2.2 -4.4,-2 0,0.2 2.8,0.8 3.4,2.8 0.3,1.1 0,2.6 -1.1,3.5 -1.2,1 -3,0.7 -4,-0.2 -1.7,-1.2 -1.1,-4 -1.3,-4 z" class="steel_piercing" id="XMLID_522_"/><ellipse ry="2.0000093" rx="1.8000083" cy="485.7283" cx="238.20935" class="steel_piercing" transform="matrix(0.99649537,-0.0836479,0.0836479,0.99649537,0,0)" id="XMLID_523_"/><ellipse ry="1.8000085" rx="1.7000082" cy="486.90195" cx="235.39908" class="steel_piercing" transform="matrix(0.99649527,-0.08364908,0.08364908,0.99649527,0,0)" id="XMLID_524_"/><path d="m 268.5,449.9 c -0.2,0 -0.8,3.4 1.3,5.1 1.7,1.3 4.6,1.4 6.2,-0.5 1.5,-1.9 1,-4.5 -0.4,-6 -1.8,-1.8 -4.7,-1.3 -4.7,-1.2 -0.1,0.3 2.9,0.3 3.9,2.1 0.5,1.1 0.5,2.6 -0.4,3.6 -1.1,1.2 -2.8,1.2 -4,0.6 -1.7,-0.9 -1.7,-3.8 -1.9,-3.7 z" class="steel_piercing" id="XMLID_525_"/><ellipse ry="2.0000699" rx="1.8000628" cy="511.93347" cx="139.35681" class="steel_piercing" transform="matrix(0.96266641,-0.27069056,0.27069056,0.96266641,0,0)" id="XMLID_526_"/><ellipse ry="1.8000628" rx="1.7000594" cy="511.60583" cx="142.2471" class="steel_piercing" transform="matrix(0.96266641,-0.27069056,0.27069056,0.96266641,0,0)" id="XMLID_527_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Pussy_Tattoo.tw b/src/art/vector/layers/Pussy_Tattoo.tw new file mode 100644 index 0000000000000000000000000000000000000000..ec0543d89427ff5ef9e8c4c6ab3ad18033d5938e --- /dev/null +++ b/src/art/vector/layers/Pussy_Tattoo.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Pussy_Tattoo [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path style="fill:none;stroke:none" d="m 247.43521,421.40369 c 11.48595,-7.47207 25.83395,-7.39381 43.33727,-0.45163" id="path4363" sodipodi:nodetypes="cc"/><text xml:space="preserve" id="text4365" sodipodi:linespacing="125%" style="font-size:12px;line-height:125%;text-align:center;text-anchor:middle" x="25.568281" y="0"><textPath xlink:href="#path4363" id="textPath4369" style="font-size:12px;text-align:center;text-anchor:middle">'+_art_pussy_tattoo_text+'</textPath></text></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Shoes_Boot.tw b/src/art/vector/layers/Shoes_Boot.tw new file mode 100644 index 0000000000000000000000000000000000000000..f6247fe07a003272f701b4c4474c59042c52cb98 --- /dev/null +++ b/src/art/vector/layers/Shoes_Boot.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Shoes_Boot [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 315.9,889.4 c -1.9,7 1.7,8.6 3.5,23.1 1.2,9.2 2.2,17.5 1.3,22.5 -0.1,0.4 0,2.8 0.3,6 0.4,5.2 0.7,7.8 2,10 2.3,3.6 6.4,4.8 9.6,5.5 4.8,1.1 9.9,2.2 13.2,-0.9 2.9,-2.7 3,-7.2 3.1,-12.3 0.1,-8.9 -2.1,-12.2 -4.2,-23.3 -1.1,-6 -1.3,-10.4 -1.9,-18.7 -0.5,-8.4 -0.5,-15.3 -0.4,-19.2 0,-1.6 0.1,-2.8 0.1,-3.1 0.8,-25.5 -5.1,-66.8 1,-107.3 0,0 4.6,-31 4.6,-66.5 0,-2.1 -0.7,-7.6 -1.6,-10.3 -8.5,0 -18.3,6.9 -36.7,6.9 -1.2,3.7 -2.3,10.8 -2.3,13.7 0.8,53.8 3.1,67.5 3.1,67.5 4.1,23.8 5.9,48 10.3,71.7 0,0 2.3,12.7 -0.6,24.1 -0.5,2 -1,3.1 -1,3.1 -1.1,2.7 -2.5,3.8 -3.4,7.5 z" class="shoe" id="XMLID_476_"/><path d="m 249.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="shoe" id="XMLID_477_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Shoes_Boot_Wide.tw b/src/art/vector/layers/Shoes_Boot_Wide.tw new file mode 100644 index 0000000000000000000000000000000000000000..66f9215a1c7454da42f1dcdd37d242cc8a89677e --- /dev/null +++ b/src/art/vector/layers/Shoes_Boot_Wide.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Shoes_Boot_Wide [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 306.2,889.4 c -2.5,7 2.2,8.6 4.5,23.1 1.5,9.2 2.8,17.5 1.8,22.5 -0.1,0.4 0,2.8 0.4,6 0.6,5.2 0.9,7.8 2.6,10 2.9,3.6 8.3,4.8 12.4,5.5 6.2,1.1 12.7,2.2 17.1,-0.9 3.7,-2.7 3.9,-7.2 4,-12.3 0.2,-8.9 -2.8,-12.2 -5.4,-23.3 -1.4,-6 -1.8,-10.4 -2.4,-18.7 -0.7,-8.4 -0.6,-15.3 -0.5,-19.2 0,-1.6 0.1,-2.8 0.1,-3.1 1.1,-25.5 -1.1,-66.3 3.8,-107.1 1.4,-11.6 3.4,-31.1 3.4,-66.6 0,-2.1 -0.9,-7.6 -2,-10.3 -11,0 -23.6,6.9 -47.5,6.9 -1.5,3.7 -3,10.8 -2.9,13.7 1,53.8 4,67.5 4,67.5 5.2,23.8 7.6,48 13.2,71.7 0,0 3,12.7 -0.8,24.1 -0.6,2 -1.2,3.1 -1.2,3.1 -1.6,2.6 -3.4,3.7 -4.6,7.4 z" class="shoe" id="XMLID_480_"/><path d="m 240.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="shoe" id="XMLID_481_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Shoes_Exterme_Heel.tw b/src/art/vector/layers/Shoes_Exterme_Heel.tw new file mode 100644 index 0000000000000000000000000000000000000000..da62bf2587cf3c147893f14893c7c7cb7febe409 --- /dev/null +++ b/src/art/vector/layers/Shoes_Exterme_Heel.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Shoes_Exterme_Heel [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 248.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="shoe" id="XMLID_488_"/><path d="m 320.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="shoe" id="XMLID_489_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Shoes_Exterme_Heel_Wide.tw b/src/art/vector/layers/Shoes_Exterme_Heel_Wide.tw new file mode 100644 index 0000000000000000000000000000000000000000..55563741941c43f8b890996e35bbbd56d70567db --- /dev/null +++ b/src/art/vector/layers/Shoes_Exterme_Heel_Wide.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Shoes_Exterme_Heel_Wide [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 248.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="shoe" id="XMLID_490_"/><path d="M 315.5,865.2 C 316,858.5 301.3,756.1 301.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="shoe" id="XMLID_491_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Shoes_Flat.tw b/src/art/vector/layers/Shoes_Flat.tw new file mode 100644 index 0000000000000000000000000000000000000000..e62d9478c072d9785880d59741bfa2ad6ec0295d --- /dev/null +++ b/src/art/vector/layers/Shoes_Flat.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Shoes_Flat [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 266.5,836 c 3.5,2.8 -2.3,9.7 0.8,19.5 2.4,7.6 5.2,6.8 6.1,10.7 2.8,10.5 -8,25 -20.6,31.3 -10.4,5.2 -23.4,5.6 -24.7,2.3 -0.7,-1.7 2.1,-3.4 6.1,-8.5 1.7,-2.2 9.3,-12.9 10.8,-23.4 1.9,-13.2 7.6,-22.4 8.2,-30.7 0.7,-7.5 7.7,-5.8 13.3,-1.2 z" class="skin" id="XMLID_506_"/><path d="m 271.2,895.3 c 6.5,-2.7 9.7,-4 11,-6.6 2.2,-4.4 0.1,-9.5 -1.5,-13.4 -1.6,-3.9 -4.7,-9 -6.6,-8.5 -1,0.3 -0.9,2 -2,4.4 -1.4,3.6 -3.8,5.6 -6.4,7.9 -14.5,12.9 -17.5,20.3 -25.1,20 -4.2,-0.1 -5.3,-2.4 -11.3,-2.1 -0.8,0 -4.9,0.3 -9.7,2.5 -2,1 -9.2,4.4 -8.8,7.3 0.6,4.1 15.6,4.8 17.4,4.9 6.4,0.3 12.4,0.6 18.5,-2.8 5.1,-2.8 4.1,-4.9 10,-8.3 4.8,-2.6 6.1,-1.9 14.5,-5.3 z" class="shoe" id="XMLID_507_"/><path d="m 320.7,872.8 c -3.4,4.4 -1.1,6.9 -4.1,23.2 -1.2,6.3 -1.8,12.7 -3.3,18.9 -0.5,2.1 -1.3,5.2 -0.5,8.8 0.3,1 1.3,5.1 4.4,7.3 3.2,2.2 2.6,3.5 10.8,3.2 8.3,-0.3 9,-1.3 11,-3 5,-4 3.5,-16.6 2.8,-21.3 -0.7,-5.5 -1.6,-6 -2.1,-12.4 -0.6,-7.3 0.5,-8.3 -0.2,-13.3 -0.4,-3.6 -1.7,-13.1 -7.6,-15.9 -4.5,-2.3 -7.7,0 -11.2,4.5 z" class="shoe" id="XMLID_508_"/><path d="m 321.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="skin" id="XMLID_509_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Shoes_Heel.tw b/src/art/vector/layers/Shoes_Heel.tw new file mode 100644 index 0000000000000000000000000000000000000000..0d46fa5f08660511eec158b7bcd303742cc19229 --- /dev/null +++ b/src/art/vector/layers/Shoes_Heel.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Shoes_Heel [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 324.8,866 c -5.3,-0.9 -12.7,7.6 -13,14.8 -0.2,3.8 1.7,5.5 4,10.2 6.9,14.2 6,31.8 5.8,38.1 -0.3,4.5 -0.8,9.3 2,14.1 2.1,3.6 5.2,5.5 6.9,6.7 6.6,4.2 13,3.8 19,3.5 5,-0.3 6.7,-1.2 7.8,-2.3 2.2,-2.2 2.3,-5.3 2.3,-6.7 0.1,-4.4 -1.9,-7.7 -3.2,-9.8 -5.3,-8.7 -8.1,-13.1 -10.1,-15.3 -14.8,-16.6 -11.2,-51.6 -21.5,-53.3 z" class="shoe" id="XMLID_497_"/><path d="m 344.2,933.9 c 1,-0.5 3.7,-1.9 4.8,-4.8 0.8,-2.3 0,-4 -1.3,-8.6 0,0 -1.6,-5.7 -2.7,-11.8 -0.8,-4.7 -0.4,-6.1 -0.8,-11.3 -1.3,-17.9 -7.3,-18.2 -6.9,-33.1 0,-0.7 -0.9,-11 -0.7,-16.4 -3,-0.8 -16.3,-0.3 -16.4,0.3 -1.6,6.9 1.5,17.4 1,18.4 -2.5,4.8 -1.3,10 -0.5,13.4 3.4,14.3 5.1,19.2 6.2,24.3 3.9,17.5 -0.7,25.9 5.2,29.4 3.2,2.2 8.4,2.1 12.1,0.2 z" class="skin" id="XMLID_498_"/><path d="m 265.9,927.8 c -0.1,0.4 -1.2,0.9 -1.2,-0.3 -0.2,-2.4 -0.1,-3.6 -0.1,-4.4 0,-1.8 1.2,-11.3 1.1,-17.5 -0.2,-13.1 -0.7,-15.2 0.5,-18 1.7,-4 5.1,-7.6 6.3,-7.1 0.5,0.3 2.4,0.2 0.3,8.1 -2.4,8.8 -2.8,10.8 -3.7,16.8 -1.6,10.1 -1.8,15.2 -2.1,18.1 -0.4,1.3 -0.5,2.2 -1.1,4.3 z" class="shoe_shadow" id="XMLID_499_"/><path d="m 252.7,884.3 c -8.4,16.1 -6.2,25.8 -14.7,30.5 -1.9,1.1 -4.4,3 -6.3,3.9 -6.1,2.8 -9.3,4 -9.9,6.8 -0.4,1.8 0.5,3.5 0.8,4 1.2,2 4.3,4.3 8.5,5.4 6.1,1.6 7.7,2.5 14.8,0.6 2.9,-0.8 6.2,-1.7 9.1,-4.4 6.6,-6.1 2,-13.6 6,-25.3 4.7,-14 15.2,-15.4 14.7,-25.3 -0.4,-5.7 -4.2,-11.8 -8.4,-12.3 -5.8,-0.7 -11.4,10 -14.6,16.1 z" class="shoe" id="XMLID_500_"/><path d="m 237.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="skin" id="XMLID_501_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Shoes_Pump.tw b/src/art/vector/layers/Shoes_Pump.tw new file mode 100644 index 0000000000000000000000000000000000000000..9d048d2118f3a4fc9a821db690821a43eeaf1033 --- /dev/null +++ b/src/art/vector/layers/Shoes_Pump.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Shoes_Pump [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 253.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="shoe" id="XMLID_482_"/><path d="m 253.7,861.4 c 7.9,-4 9.2,-0.3 13.3,0 -4.6,22.1 -4.7,36.3 -19.2,40.2 -4.5,1.2 -11.3,2.3 -12.2,-0.6 3.6,-9.7 14,-34.8 18.1,-39.6 z" class="skin" id="XMLID_483_"/><path d="m 317.5,860.8 15.6,0.1 c 4.7,13.7 8.6,42.3 9.2,52.3 4.6,4.1 4.9,8.5 -2.1,32 -2.4,3 -11.1,6 -20.4,0 -7.1,-18.7 -7.6,-24.5 -4.1,-31.5 -0.2,-7.4 -0.1,-10 -1.5,-19.5 -3.4,-15.5 1.9,-24.7 3.3,-33.4 z" class="shoe" id="XMLID_484_"/><path d="m 317.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="skin" id="XMLID_485_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Stump.tw b/src/art/vector/layers/Stump.tw new file mode 100644 index 0000000000000000000000000000000000000000..16def37aac9d2c8889125db174d2ece95edbafc5 --- /dev/null +++ b/src/art/vector/layers/Stump.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Stump [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path class="skin" d="m 226.3,412.5 c 31.3,-22.1 86.4,-32 124.3,-2.1 25.6,20.2 45.7,60.3 31.5,80.6 -10.7,15.2 -39.7,17.8 -60,10 -25.7,-9.9 -26.6,-32.4 -47.3,-34.5 -20,-2 -27.3,18.1 -48.4,14.8 -13.3,-2.1 -26.9,-12.7 -29.3,-25.3 -3.9,-20.2 22.1,-38.5 29.2,-43.5 z" id="path62"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Torso_Hourglass.tw b/src/art/vector/layers/Torso_Hourglass.tw new file mode 100644 index 0000000000000000000000000000000000000000..6990712fefcbc2477bfb9d8a1559a26bf1541569 --- /dev/null +++ b/src/art/vector/layers/Torso_Hourglass.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Torso_Hourglass [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 226,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" class="shadow" id="Body_Shadow_2_"/><path d="m 272.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="skin torso" id="Body_Normal_3_"/><path d="m 292.51112,215.39999 a 2.3111103,2.3111103 0 0 1 -2.31111,2.31111 2.3111103,2.3111103 0 0 1 -2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,2.31111 z" id="path6413"/><path style="fill:#895b39" d="m 280.94904,279.65447 a 2.3111103,2.3111103 0 0 1 -2.31111,2.31111 2.3111103,2.3111103 0 0 1 -2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,2.31111 z" id="path6413-2"/><path style="fill:#895b39" d="m 268.00797,403.19272 a 2.3111103,2.3111103 0 0 1 -2.31111,2.31111 2.3111103,2.3111103 0 0 1 -2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,-2.31111 2.3111103,2.3111103 0 0 1 2.31111,2.31111 z" id="path6413-3"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Torso_Normal.tw b/src/art/vector/layers/Torso_Normal.tw new file mode 100644 index 0000000000000000000000000000000000000000..36780567ab3e9923ed05bfe3299323777ecbcd12 --- /dev/null +++ b/src/art/vector/layers/Torso_Normal.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Torso_Normal [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 226,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" class="shadow" id="Body_Shadow"/><path d="m 273,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="skin torso" id="Body_Normal_1_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Torso_Outfit_Latex_Hourglass.tw b/src/art/vector/layers/Torso_Outfit_Latex_Hourglass.tw new file mode 100644 index 0000000000000000000000000000000000000000..50377051ecd14a908ae2a8af12ae31224c7f9656 --- /dev/null +++ b/src/art/vector/layers/Torso_Outfit_Latex_Hourglass.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Torso_Outfit_Latex_Hourglass [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path style="fill:#010101" d="m 283.26172,215.74219 c -8.43786,-0.0205 -16.09063,1.75625 -22.0625,5.75781 -4.3,2.9 -6.8,6.29922 -10,10.69922 -13.9,19 -12.99883,41.20117 -12.29883,57.70117 0.3,6.4 1.09922,15.89883 3.69922,27.29883 3.8,16.5 1.00078,28.2 0.80078,32.5 -0.2,4.5 -0.70078,12.2 -2.30078,21 -1.73947,9.06355 -5.08596,22.49315 -12.84961,38.125 l 120.84961,0 c -6.38699,-13.18859 -11.21229,-19.95541 -14.59961,-23.625 -0.9,-1 -3.9,-4.1 -6,-9 0,0 -1.90078,-4.4 -2.30078,-9 -0.4,-4.8 1.1,-10.49883 13.5,-27.29883 9,-12.2 10.8,-12.60078 14.5,-19.80078 3.7,-7.1 5.40078,-13.09883 6.80078,-18.29883 2.9,-11 4.7,-22.8 4,-28.5 -3.42656,-29.72344 -48.63593,-57.4782 -81.73828,-57.55859 z" id="Body_Shadow_2_-7"/><path d="m 225.8,413.2 c 17.2,4.6 17.2,30.6 43.5,50.1 1.2,0.9 -21.9,-11.3 -4.5,-34.1 20,8.2 11.2,37.3 11.4,36.9 7.4,-15.9 19.8,-23 32,-32.9 12.4,-10 20,-18 41.9,-21.9 z" class="shadow" id="Body_Shadow_5_"/><path d="m 273,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" style="fill:#515351" id="Body_Normal_6_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Torso_Outfit_Latex_Normal.tw b/src/art/vector/layers/Torso_Outfit_Latex_Normal.tw new file mode 100644 index 0000000000000000000000000000000000000000..9253c39fd62470b2e336bbf3af4fc18a82f54fa1 --- /dev/null +++ b/src/art/vector/layers/Torso_Outfit_Latex_Normal.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Torso_Outfit_Latex_Normal [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path style="fill:#010101" d="M 283.36133 215.8418 C 274.92347 215.82131 267.27266 217.59805 261.30078 221.59961 C 257.00078 224.49961 254.50078 227.90078 251.30078 232.30078 C 237.40078 251.30078 238.3 273.5 239 290 C 239.3 296.4 240.09922 305.90078 242.69922 317.30078 C 241.39922 324.60078 239.9 334.59961 239 346.59961 C 237.7 364.89961 238.90078 372.30078 236.30078 385.30078 C 234.9168 391.52868 232.62415 399.63194 228.21484 408.82422 L 348.96484 408.82422 C 343.87735 399.04234 341.93748 390.44468 341.19922 385 C 339.79922 374.7 341 366.49922 342 359.69922 C 343.3 350.59922 345.40078 343.99922 347.80078 336.69922 C 353.80078 317.89922 357.39961 315.00039 361.09961 301.90039 C 362.79961 295.80039 366.29961 283.50039 365.09961 273.40039 C 361.67305 243.67695 316.46368 215.92218 283.36133 215.8418 z " id="Body_Shadow-9"/><path d="m 225.8,413.2 c 17.2,4.6 17.2,30.6 43.5,50.1 1.2,0.9 -21.9,-11.3 -4.5,-34.1 20,8.2 11.2,37.3 11.4,36.9 7.4,-15.9 19.8,-23 32,-32.9 12.4,-10 20,-18 41.9,-21.9 z" class="shadow" id="Body_Shadow_3_"/><path d="m 273,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" style="fill:#515351" id="Body_Normal_4_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Torso_Outfit_Latex_Unnatural.tw b/src/art/vector/layers/Torso_Outfit_Latex_Unnatural.tw new file mode 100644 index 0000000000000000000000000000000000000000..3b9d514ffba9dbe80e3dd510f6cf47a01896c1a9 --- /dev/null +++ b/src/art/vector/layers/Torso_Outfit_Latex_Unnatural.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Torso_Outfit_Latex_Unnatural [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 284.89453,215.17383 c -9.60625,0.0391 -17.99492,2.07578 -23.79492,6.42578 -1.9,1.5 -4.90039,4.60039 -7.40039,7.90039 -11.5,14.7 -13.19844,30.69961 -14.39844,43.09961 -0.5,5 -1.60078,16.60078 0.69922,30.30078 0.5,3.1 1.29922,6.8 2.69922,15 1.2,7.2 2.10117,13 2.70117,17 2,7.7 2.89883,14.39883 3.29883,19.29883 0.7,8 1,12.70078 -1,18.30078 -0.9,2.5 -1.2,2.20078 -6,10.30078 -0.7,1.2 -4.69922,7.99922 -8.69922,15.69922 -1.42356,2.69728 -3.12849,6.18129 -5.0293,10.32422 l 120.92383,0 c -5.907,-10.12422 -12.20081,-16.98505 -17.29492,-21.52344 -7.7,-7 -15.39922,-11.50078 -15.69922,-19.30078 -0.1,-4 1.69883,-7.89922 2.79883,-10.19922 2.7,-5.8 6.5,-9.30078 8,-10.80078 6.4,-6.1 16.10156,-16.10039 28.60156,-29.40039 6,-7.3 12.7,-39.99883 12,-57.29883 -13.8,-27.375 -53.5875,-45.24414 -82.40625,-45.12695 z" id="Body_Shadow_1_-8"/><path d="m 225.8,413.2 c 17.2,4.6 17.2,30.6 43.5,50.1 1.2,0.9 -21.9,-11.3 -4.5,-34.1 20,8.2 11.2,37.3 11.4,36.9 7.4,-15.9 19.8,-23 32,-32.9 12.4,-10 20,-18 41.9,-21.9 z" class="shadow" id="Body_Shadow_4_"/><path d="m 273,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" style="fill:#515351" id="Body_Normal_5_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Torso_Outfit_Shine.tw b/src/art/vector/layers/Torso_Outfit_Shine.tw new file mode 100644 index 0000000000000000000000000000000000000000..33eb3047105179198745f2476471b836b79af625 --- /dev/null +++ b/src/art/vector/layers/Torso_Outfit_Shine.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Torso_Outfit_Shine [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#Filter_Shine_Blur)" d="m 343.38233,211.76475 c 7.68861,5.15453 13.5278,12.59965 19.26471,19.70588 0,0 -5.44118,-16.61764 -19.26471,-19.70588 z" id="path4902" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Torso_Outfit_Shine_Hourglass.tw b/src/art/vector/layers/Torso_Outfit_Shine_Hourglass.tw new file mode 100644 index 0000000000000000000000000000000000000000..80bea2607cb240377659d4a6bbfa531eaebf03f7 --- /dev/null +++ b/src/art/vector/layers/Torso_Outfit_Shine_Hourglass.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Torso_Outfit_Shine_Hourglass [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-70-6" d="m 319.74252,375.06332 c 4.22284,7.09969 13.30704,21.13279 19.66871,31.59093 -12.96362,-6.10053 -18.5743,-22.88972 -19.66871,-31.59093 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Torso_Outfit_Shine_Normal.tw b/src/art/vector/layers/Torso_Outfit_Shine_Normal.tw new file mode 100644 index 0000000000000000000000000000000000000000..623489f32d0eed1a9e6e8b7149c778daa75c8b57 --- /dev/null +++ b/src/art/vector/layers/Torso_Outfit_Shine_Normal.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Torso_Outfit_Shine_Normal [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-70-1" d="m 332.13219,367.13946 c 1.41216,9.42307 -1.43557,29.939 7.27904,39.51479 -12.96362,-6.10053 -10.95321,-29.8094 -7.27904,-39.51479 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Torso_Outfit_Shine_Shoulder.tw b/src/art/vector/layers/Torso_Outfit_Shine_Shoulder.tw new file mode 100644 index 0000000000000000000000000000000000000000..57a33fa731d5ab188a35b4b3cd1ea93dd2c27091 --- /dev/null +++ b/src/art/vector/layers/Torso_Outfit_Shine_Shoulder.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Torso_Outfit_Shine_Shoulder [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#Filter_Shine_Blur)" d="m 343.38233,211.76475 c 7.68861,5.15453 13.5278,12.59965 19.26471,19.70588 0,0 -5.44118,-16.61764 -19.26471,-19.70588 z" id="path4902" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Torso_Outfit_Shine_Unnatural.tw b/src/art/vector/layers/Torso_Outfit_Shine_Unnatural.tw new file mode 100644 index 0000000000000000000000000000000000000000..76f1f18ead81f3bd13a88b2721f5e7561fd00e5a --- /dev/null +++ b/src/art/vector/layers/Torso_Outfit_Shine_Unnatural.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Torso_Outfit_Shine_Unnatural [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-70" d="m 310.91899,377.12214 c 5.98755,6.51146 19.77763,19.95632 28.49224,29.53211 -12.96362,-6.10053 -25.92724,-20.24266 -28.49224,-29.53211 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Torso_Outfit_Straps_Hourglass.tw b/src/art/vector/layers/Torso_Outfit_Straps_Hourglass.tw new file mode 100644 index 0000000000000000000000000000000000000000..b5be482ca8b2c2fd3055ef89600550e51121edf8 --- /dev/null +++ b/src/art/vector/layers/Torso_Outfit_Straps_Hourglass.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Torso_Outfit_Straps_Hourglass [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 280.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" sodipodi:nodetypes="ccc"/><path id="path9222" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="M 261.50648,413.73918 261.2569,406.4473 266.17212,351.16304 275.411,278.532 290.2,215.4 l 15.22137,52.07436 m 5.95128,26.34968 7.8272,20.69688 -30.43976,38.83902 -27.50319,53.08736 -9.2708,-54.42357 -10.07226,-42.14617 4.83263,-23.98635 M 250.76923,260.17056 290.2,215.4" sodipodi:nodetypes="ccccccccccccccc"/><path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 243.2324,352.85095 8.7537,-0.82722 14.18602,-0.86069 22.58797,2.1969 c 12.52776,1.51143 25.0301,4.09769 38.05631,8.19115" id="path9224" sodipodi:nodetypes="ccccc"/><path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 238.74259,381.06877 c 8.25167,2.98798 16.96891,10.16552 22.51431,25.37853 14.56337,-16.56115 49.92898,-16.47641 68.84676,-27.07268" id="path9226" sodipodi:nodetypes="ccc"/><path id="path4809" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 366.7861,273.56744 c -8.50044,-0.65544 -24.3526,0.34509 -35.75207,1.68052 L 311.37265,293.82404 275.3,278.6 246.74647,285.89121 239.95996,272.95142 250.76923,260.17056 275.3,278.6 l 30.12137,-11.12564 25.61266,7.7736" sodipodi:nodetypes="cccccccccc"/><path style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 319.19985,314.52092 33.29827,6.51353" id="path4822" sodipodi:nodetypes="cc"/><path sodipodi:nodetypes="ccc" id="path4827" d="m 226.3,412.5 c 14.28287,9.22716 28.49493,36.36353 49.5,55 20.41266,-26.05944 51.82188,-67.17748 66.5726,-71.33884" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1"/><path sodipodi:nodetypes="ccc" id="path4829" d="m 241.14976,427.16651 c 4.90244,-4.03154 6.549,-12.31755 20.35672,-13.42733 12.25382,0.45913 30.79397,16.21724 36.65767,25.45717" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Torso_Outfit_Straps_Normal.tw b/src/art/vector/layers/Torso_Outfit_Straps_Normal.tw new file mode 100644 index 0000000000000000000000000000000000000000..7c05772ba800d9c07aca17c8a3921b22f18cccf4 --- /dev/null +++ b/src/art/vector/layers/Torso_Outfit_Straps_Normal.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Torso_Outfit_Straps_Normal [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 280.937,204.232 c -0.712,4.691 3.692,8.12 9.188,11.259 11.945,-0.161 23.524,-4.417 35.469,-10.541" id="path227" sodipodi:nodetypes="ccc"/><path id="path229" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 259.347,410.614 -0.226,-6.999 2.718,-55.148 13.758,-71.456 14.528,-61.52 15.954,47.428 m 6.638,26.77 13.775,17.823 -21.488,44.959 -45.883,51.144 -11.338,-54.437 -6.122,-41.151 5.146,-23.85 m 4.271,-25.192 39.047,-43.494" sodipodi:nodetypes="ccccccccccccccc"/><path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 239.029,350.005 8.754,-0.827 14.056,-0.711 43.165,4.004 c 12.528,1.512 25.03,4.098 38.057,8.192" id="path231" sodipodi:nodetypes="ccccc"/><path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 236.708,378.107 c 8.258,2.991 16.863,10.281 22.413,25.508 17.289,-19.662 62.243,-10.638 84.702,-23.218" id="path233" sodipodi:nodetypes="ccc"/><path id="path235" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 367.33,269.078 c -8.447,-0.651 -24.203,0.241 -35.531,1.568 l -19.082,19.043 -37.231,-12.61 -28.679,7.098 -6.626,-12.669 10.897,-12.523 24.408,18.094 30.593,-14.16 25.72,7.727" sodipodi:nodetypes="cccccccccc"/><path style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 326.492,307.512 28.471,8.743" id="path237" sodipodi:nodetypes="cc"/><path sodipodi:nodetypes="ccc" id="path239" d="m 226.369,409.755 c 14.106,9.112 25.666,38.04 46.41,56.445 20.789,-26.539 60.175,-60.727 75.198,-64.965" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1"/><path sodipodi:nodetypes="ccc" id="path241" d="m 238.991,424.042 c 4.902,-4.032 6.549,-12.318 20.356,-13.428 13.004,0.488 28.906,21.96 35.129,31.765" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Torso_Outfit_Straps_Unnatural.tw b/src/art/vector/layers/Torso_Outfit_Straps_Unnatural.tw new file mode 100644 index 0000000000000000000000000000000000000000..f4492faca5bff50c875c6e0880051e2fca7ccfae --- /dev/null +++ b/src/art/vector/layers/Torso_Outfit_Straps_Unnatural.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Torso_Outfit_Straps_Unnatural [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 281.12,204.097 c -0.712,4.691 3.757,8.069 9.254,11.208 13.29,-0.179 26.876,-2.214 40.166,-9.027" id="path210" sodipodi:nodetypes="ccc"/><path id="path212" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 262.552,415.168 -0.289,-7.466 8.614,-53.931 4.458,-73.575 15.039,-64.891 13.97,56.974 m 5.112,25.579 0.163,20.676 -31.39,35.674 -15.966,53.494 -4.928,-52.923 -15.007,-42.925 4.483,-24.097 m 3.742,-26.283 39.821,-46.169" sodipodi:nodetypes="ccccccccccccccc"/><path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 248.581,355.606 8.754,-0.827 13.542,-1.008 7.352,0.437 c 12.528,1.512 25.03,4.098 38.056,8.191" id="path214" sodipodi:nodetypes="ccccc"/><path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 242.369,383.198 c 7.677,2.78 14.735,10.351 19.894,24.504 12.962,-14.74 42.193,-19.736 59.03,-29.167" id="path216" sodipodi:nodetypes="ccc"/><path id="path218" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 365.828,278.326 c -8.556,-0.66 -24.51,0.404 -35.984,1.749 l -20.388,17.783 -34.232,-17.594 -28.413,7.493 -6.968,-13.224 10.71,-13.059 24.671,18.79 29.12,-7.985 25.5,7.796" sodipodi:nodetypes="cccccccccc"/><path style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 309.619,318.534 36.572,7.088" id="path220" sodipodi:nodetypes="cc"/><path sodipodi:nodetypes="ccc" id="path222" d="m 227.126,412.68 c 14.047,9.075 28.893,34.971 49.552,53.3 19.76,-25.225 46.39,-68.365 60.668,-72.393" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1"/><path sodipodi:nodetypes="ccc" id="path224" d="m 242.196,428.595 c 4.902,-4.031 6.549,-12.317 20.356,-13.427 12.065,0.452 32.608,12.295 38.381,21.392" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector/layers/Torso_Unnatural.tw b/src/art/vector/layers/Torso_Unnatural.tw new file mode 100644 index 0000000000000000000000000000000000000000..ddbd56d30589452ed6e60943b14538f20987ed66 --- /dev/null +++ b/src/art/vector/layers/Torso_Unnatural.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Torso_Unnatural [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 226,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" class="shadow" id="Body_Shadow_1_"/><path d="m 272.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="skin torso" id="Body_Normal_2_"/></svg></html>' >> \ No newline at end of file diff --git a/src/events/intro/introSummary.tw b/src/events/intro/introSummary.tw index fef629a62dfab328bd6ea4fdd7e10487982bd7ef..de496649fdbc2f722c51cc42cb92073a88a10a83 100644 --- a/src/events/intro/introSummary.tw +++ b/src/events/intro/introSummary.tw @@ -804,8 +804,17 @@ Image display ''enabled.'' [[Disable|Intro Summary][$seeImages = 0]] <br> <<if $imageChoice == 1>> - ''Vector art by NoX'' is selected. [[Switch to rendered imagepack|Intro Summary][$imageChoice = 0]] - <<else>> + ''Vector art by NoX'' is selected. [[Switch to rendered imagepack|Intro Summary][$imageChoice = 0]] | [[Switch to non-embedded vector art|Intro Summary][$imageChoice = 2]] + <br> + Highlights on shiny clothing + <<if $seeVectorArtHighlights == 1>> + @@.cyan;ENABLED@@. [[Disable|Intro Summary][$seeVectorArtHighlights = 0]] + <<else>> + @@.red;DISABLED@@. [[Enable|Intro Summary][$seeVectorArtHighlights = 1]] + <</if>> + <<elseif $imageChoice == 2>> + ''Vector art by NoX - non-embed version'' is selected. [[Switch to rendered imagepack|Intro Summary][$imageChoice = 0]] | [[Switch to embedded vector art|Intro Summary][$imageChoice = 1]] + <<elseif $imageChoice == 0>> ''Rendered imagepack by Shokushu'' is selected. [[Switch to vector art|Intro Summary][$imageChoice = 1]] <br> Slave summary fetish images @@ -830,7 +839,7 @@ Image display ''disabled.'' [[Enable|Intro Summary][$seeReportImages = 1]] <</if>> <<else>> - ''disabled.'' [[Enable|Intro Summary][$seeImages = 1]] //Requires image resources.// + ''disabled.'' [[Enable|Intro Summary][$seeImages = 1]] //Unembedded requires image resources.// <</if>> <br><br> diff --git a/src/gui/css/mainStyleSheet.tw b/src/gui/css/mainStyleSheet.tw index f05ec45ce5d71e649f76ac69385cbf3ad24b6ede..a1cefc331b8e76e7d040af30c0ebf8e8b2af1b43 100644 --- a/src/gui/css/mainStyleSheet.tw +++ b/src/gui/css/mainStyleSheet.tw @@ -40,6 +40,7 @@ img { width: 120px; float: left; } + .smlImg { height: 150px; width: 150px; @@ -104,6 +105,11 @@ img { width: auto; } +.lrgVector svg { + width: 336px; + height: 600px; +} + object { object-fit: scale-down; position: absolute; diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw index 75743208b8705c70fa8f9ac157bf1c5d71920233..d774f1008fd6241ccad22b78b3f1c2d3ca1ccc01 100644 --- a/src/init/storyInit.tw +++ b/src/init/storyInit.tw @@ -249,6 +249,7 @@ You should have received a copy of the GNU General Public License along with thi <<set $seeNationality = 1>> <<set $seeImages = 0>> <<set $imageChoice = 0>> +<<set $seeVectorArtHighlights = 1>> <<set $seeMainFetishes = 0>> <<set $seeSummaryImages = 1>> <<set $seeReportImages = 1>> diff --git a/src/uncategorized/bodyModification.tw b/src/uncategorized/bodyModification.tw index 78bdb7f29e57f39a7e04a5237030e92e6ac9e1b9..2fd0b2bd04013c9273b2db4eea6562d56f2a5bb8 100644 --- a/src/uncategorized/bodyModification.tw +++ b/src/uncategorized/bodyModification.tw @@ -17,7 +17,6 @@ /*DESCRIPTIONS */ <br><br> -<span id="artToggle"> /* 000-250-006 */ <<if $seeImages == 1>> <<if $imageChoice == 1>> @@ -27,7 +26,6 @@ <</if>> <</if>> /* 000-250-006 */ -</span> Piercings: @@ -1480,22 +1478,3 @@ Choose a site for branding: <</if>> //Branding will slightly reduce $possessive beauty but may slowly increase your reputation.// -<<if $seeImages == 1>> - <br>Toggle art just for now? - <<link "On">> - <<replace "#artToggle">> - /* 000-250-006 */ - <<if $seeImages == 1>> - <<if $imageChoice == 1>> - <div class="imageRef lrgVector"><<SlaveArt $activeSlave 2 0>></div> - <<else>> - <div class="imageRef lrgRender"><<SlaveArt $activeSlave 2 0>></div> - <</if>> - <</if>> - /* 000-250-006 */ - <</replace>> - <</link>> - | <<link "Off">> - <<replace "#artToggle">><</replace>> - <</link>> -<</if>> diff --git a/src/uncategorized/options.tw b/src/uncategorized/options.tw index ccab5f743cca0275b628ae6facadfb9de9b7c134..c83399842a74e1a27904fc77b083f72a94ca8751 100644 --- a/src/uncategorized/options.tw +++ b/src/uncategorized/options.tw @@ -37,8 +37,17 @@ Image display @@.cyan;ENABLED@@. [[Disable|Options][$seeImages = 0]] <br> <<if $imageChoice == 1>> - @@.yellow;Vector art by NoX@@ is selected. [[Switch to rendered imagepack|Options][$imageChoice = 0]] - <<else>> + @@.yellow;Vector art by NoX@@ is selected. [[Switch to rendered imagepack|Options][$imageChoice = 0]] | [[Switch to non-embedded vector art|Options][$imageChoice = 2]] + <br> + Highlights on shiny clothing + <<if $seeVectorArtHighlights == 1>> + @@.cyan;ENABLED@@. [[Disable|Options][$seeVectorArtHighlights = 0]] + <<else>> + @@.red;DISABLED@@. [[Enable|Options][$seeVectorArtHighlights = 1]] + <</if>> + <<elseif $imageChoice == 2>> + @@.yellow;Vector art by NoX - non-embed version@@ is selected. [[Switch to rendered imagepack|Options][$imageChoice = 0]] | [[Switch to embedded vector art|Options][$imageChoice = 1]] + <<elseif $imageChoice == 0>> @@.yellow;Rendered imagepack by Shokushu@@ is selected. [[Switch to vector art|Options][$imageChoice = 1]] <br> Slave summary fetish images diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw index e8b38e0ce659b148ff5a7c6bc80f077205edad67..0cf44f471be7dd2b895ddbe834cf9fc5165e977b 100644 --- a/src/uncategorized/remoteSurgery.tw +++ b/src/uncategorized/remoteSurgery.tw @@ -7,7 +7,6 @@ //$activeSlave.slaveName is lying strapped down on the table in your <<if $surgeryUpgrade == 1>>heavily upgraded and customized remote surgery.<<else>>remote surgery.<</if>> The surgical equipment reads <<if $activeSlave.health < -20>>@@.red;SLAVE UNHEALTHY, SURGERY NOT RECOMMENDED.@@<<elseif $activeSlave.health <= 20>>@@.yellow;SLAVE HEALTHY, SURGERY SAFE.@@<<else>>@@.green;SLAVE HEALTHY, SURGERY ENCOURAGED.@@<</if>><<if $PC.medicine >= 100>> The remote surgery mechanisms that allow a surgeon to be brought in by telepresence are inactive, and the autosurgery is ready for your control inputs. Surgery on your slaves is a challenge and a pleasure you wouldn't dream of sharing.<</if>>// <br><br> -<span id="artToggle"> /* 000-250-006 */ <<if $seeImages == 1>> <<if $imageChoice == 1>> @@ -17,7 +16,6 @@ <</if>> <</if>> /* 000-250-006 */ -</span> <<if $activeSlave.indentureRestrictions >= 1>> @@.yellow;This slave is subject to a restrictive indenture which forbids many invasive surgeries.@@ @@ -2263,23 +2261,3 @@ The prosthesis facility has constructed $possessive prosthetic limbs. <</if>> <</if>> <</if>> - -<<if $seeImages == 1>> - <br>Toggle art just for now? - <<link "On">> - <<replace "#artToggle">> - /* 000-250-006 */ - <<if $seeImages == 1>> - <<if $imageChoice == 1>> - <div class="imageRef lrgVector"><<SlaveArt $activeSlave 2 0>></div> - <<else>> - <div class="imageRef lrgRender"><<SlaveArt $activeSlave 2 0>></div> - <</if>> - <</if>> - /* 000-250-006 */ - <</replace>> - <</link>> - | <<link "Off">> - <<replace "#artToggle">><</replace>> - <</link>> -<</if>> \ No newline at end of file diff --git a/src/uncategorized/salon.tw b/src/uncategorized/salon.tw index 847a3f495f627e92a09b51b69a13f942ea7f65b7..806314e4e7a19865e451b7299edb50c146341d8a 100644 --- a/src/uncategorized/salon.tw +++ b/src/uncategorized/salon.tw @@ -13,7 +13,6 @@ <br><br> -<span id="artToggle"> /* 000-250-006 */ <<if $seeImages == 1>> <<if $imageChoice == 1>> @@ -23,7 +22,6 @@ <</if>> <</if>> /* 000-250-006 */ -</span> <<if $activeSlave.origEye == "implant">> $pronounCap has artificial eyes, and $pronoun @@ -608,22 +606,3 @@ Dye or paint: <br><br>$possessiveCap underarms are completely hairless. <</if>> -<<if $seeImages == 1>> - <br>Toggle art just for now? - <<link "On">> - <<replace "#artToggle">> - /* 000-250-006 */ - <<if $seeImages == 1>> - <<if $imageChoice == 1>> - <div class="imageRef lrgVector"><<SlaveArt $activeSlave 2 0>></div> - <<else>> - <div class="imageRef lrgRender"><<SlaveArt $activeSlave 2 0>></div> - <</if>> - <</if>> - /* 000-250-006 */ - <</replace>> - <</link>> - | <<link "Off">> - <<replace "#artToggle">><</replace>> - <</link>> -<</if>> diff --git a/src/uncategorized/wardrobeUse.tw b/src/uncategorized/wardrobeUse.tw index 01116343bc2984dc982a3150ec4addb9153facbb..730d2ceb4888121d560b1740378c2ed0f72aca92 100644 --- a/src/uncategorized/wardrobeUse.tw +++ b/src/uncategorized/wardrobeUse.tw @@ -11,7 +11,6 @@ <br><br> -<span id="artToggle"> /* 000-250-006 */ <<if $seeImages == 1>> <<if $imageChoice == 1>> @@ -21,7 +20,6 @@ <</if>> <</if>> /* 000-250-006 */ -</span> <<if $activeSlave.fuckdoll == 0>> /* begin fuckdoll check */ @@ -684,25 +682,5 @@ all descriptions to show what she is currently wearing? <br><br> There are no changes you can make to her at this time. <</if>> /* CLOSES FUCKDOLL CHECK */ -<<if $seeImages == 1>> - <br>Toggle art just for now? - <<link "On">> - <<replace "#artToggle">> - /* 000-250-006 */ - <<if $seeImages == 1>> - <<if $imageChoice == 1>> - <div class="imageRef lrgVector"><<SlaveArt $activeSlave 2 0>></div> - <<else>> - <div class="imageRef lrgRender"><<SlaveArt $activeSlave 2 0>></div> - <</if>> - <</if>> - /* 000-250-006 */ - <</replace>> - <</link>> - | <<link "Off">> - <<replace "#artToggle">><</replace>> - <</link>> -<</if>> - <br><br> diff --git a/vector source.svg b/vector source.svg deleted file mode 100644 index a036861297298fb677b9e607ac1f6e191545b469..0000000000000000000000000000000000000000 --- a/vector source.svg +++ /dev/null @@ -1,3415 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - x="0px" - y="0px" - viewBox="0 0 1000 1000" - style="enable-background:new 0 0 1000 1000;" - xml:space="preserve" - id="svg4356" - 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 /></cc:Work></rdf:RDF></metadata><defs - id="defs4360" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1280" - inkscape:window-height="952" - id="namedview4358" - showgrid="false" - 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="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;} - .st1{fill:#76C043;} - .st2{fill:#2680BC;} - .st3{fill:#F6E0E8;} - .st4{fill:#515351;} - .st5{fill:#F4F1A3;} - .st6{fill:#8E4F21;} - .st7{fill:#BC2027;} - .st8{fill:#60BB46;} - .st9{fill:#4686C6;} - .st10{fill:#D28DBD;} - .st11{fill:#3F403F;} - .st12{fill:#010101;} - .st13{fill:#8F8F8E;} - .st14{fill:#515251;} - .st15{fill:#4F6AB2;} - .st16{fill:#3E65B0;} - .st17{fill:#15406D;} - .st18{fill:#65AD45;} - .st19{fill:#787878;} - .st20{fill:#D76B93;} - .st21{fill:#4DB748;} - .st22{opacity:0.24;fill:#BF2126;enable-background:new ;} - .st23{fill:#070505;} - .st24{fill:#BF2126;} -</style><g - 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" - class="st3" - id="L_2_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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 - 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" - class="st3" - id="L" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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 - 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" - class="st3" - id="R_1_" /><path - style="fill:#f6e0e8" - 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><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" - 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" - class="st4" - id="L_5_" /><path - style="fill:#515351" - inkscape:connector-curvature="0" - 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" - 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" - class="st4" - id="L_4_" /><path - style="fill:#515351" - inkscape:connector-curvature="0" - 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" - 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" - class="st4" - id="R_3_" /><path - style="fill:#515351" - 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="st4" - id="L_3_" /></g><path - style="fill:#515351" - 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="st4" - id="Arm_Left_Rebel_Latex" /><path - style="fill:#515351" - 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="st4" - id="Arm_Left_Thumb_Down_1_" /></g><g - 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" - class="st5" - id="Hair_Aft" /><path - style="fill:#8e4f21" - 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" - class="st6" - id="Hair_Aft_1_" /><path - style="fill:#bc2027" - 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" - class="st7" - id="Hair_Aft_3_" /><path - style="fill:#60bb46" - 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" - class="st8" - id="Hair_Aft_4_" /><path - style="fill:#4686c6" - 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" - class="st9" - id="Hair_Aft_5_" /><path - style="fill:#d28dbd" - 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" - class="st10" - id="Hair_Aft_6_" /><path - style="fill:#3f403f" - 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" - class="st11" - id="Hair_Aft_7_" /></g><g - 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" - class="st3" - id="Butt_0" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - d="m 547.3,389.8 c 1.7,-0.5 6.3,2.7 15.5,9 4.2,2.9 9.2,7.9 21.1,16.9 8.7,6.6 15.4,11.6 20.6,19.1 0,0 13.7,19.8 6.6,48.5 -0.6,2.7 -1.5,5.2 -1.5,5.2 -1.2,3.6 -2.9,6.4 -5.9,12.7 -4.4,9.3 -4.7,11.3 -6.4,14.7 -4.4,8.9 -8.5,11.2 -15.6,19.8 -4.1,5 -6.9,9.3 -9,12.9 -5.5,9.6 -6,11.3 -7,11.4 -9.9,0.8 -36.6,-165.3 -18.4,-170.2 z" - class="st3" - id="Butt_1" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - d="m 548,389.8 c 1.9,-0.5 7,2.9 17.2,9.8 4.7,3.1 10.2,8.6 23.4,18.3 9.7,7.1 17,12.5 22.9,20.7 0,0 15.2,21.5 7.3,52.6 -0.7,2.9 -1.7,5.7 -1.7,5.7 -1.4,3.9 -3.3,6.9 -6.5,13.8 -4.8,10.1 -5.2,12.2 -7.1,15.9 -4.9,9.6 -9.5,12.1 -17.3,21.5 -4.6,5.4 -7.7,10.1 -9.9,14 -6.1,10.4 -6.6,12.3 -7.8,12.4 -11.1,0.8 -40.7,-179.4 -20.5,-184.7 z" - class="st3" - id="Butt_2" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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 - 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" - class="st4" - id="Butt_0_1_" /><path - style="fill:#515351" - inkscape:connector-curvature="0" - d="m 547.3,389.8 c 1.7,-0.5 6.3,2.7 15.5,9 4.2,2.9 9.2,7.9 21.1,16.9 8.7,6.6 15.4,11.6 20.6,19.1 0,0 13.7,19.8 6.6,48.5 -0.6,2.7 -1.5,5.2 -1.5,5.2 -1.2,3.6 -2.9,6.4 -5.9,12.7 -4.4,9.3 -4.7,11.3 -6.4,14.7 -4.4,8.9 -8.5,11.2 -15.6,19.8 -4.1,5 -6.9,9.3 -9,12.9 -5.5,9.6 -6,11.3 -7,11.4 -9.9,0.8 -36.6,-165.3 -18.4,-170.2 z" - class="st4" - id="Butt_1_2_" /><path - style="fill:#515351" - inkscape:connector-curvature="0" - d="m 548,389.8 c 1.9,-0.5 7,2.9 17.2,9.8 4.7,3.1 10.2,8.6 23.4,18.3 9.7,7.1 17,12.5 22.9,20.7 0,0 15.2,21.5 7.3,52.6 -0.7,2.9 -1.7,5.7 -1.7,5.7 -1.4,3.9 -3.3,6.9 -6.5,13.8 -4.8,10.1 -5.2,12.2 -7.1,15.9 -4.9,9.6 -9.5,12.1 -17.3,21.5 -4.6,5.4 -7.7,10.1 -9.9,14 -6.1,10.4 -6.6,12.3 -7.8,12.4 -11.1,0.8 -40.7,-179.4 -20.5,-184.7 z" - class="st4" - id="Butt_2_1_" /><path - style="fill:#515351" - inkscape:connector-curvature="0" - 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 - 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 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" - inkscape:connector-curvature="0" - 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 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" - inkscape:connector-curvature="0" - 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 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" - inkscape:connector-curvature="0" - 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_469_" /></g><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - d="m 446.3,412.5 c 31.3,-22.1 86.4,-32 124.3,-2.1 25.6,20.2 45.7,60.3 31.5,80.6 -10.7,15.2 -39.7,17.8 -60,10 -25.7,-9.9 -26.6,-32.4 -47.3,-34.5 -20,-2 -27.3,18.1 -48.4,14.8 -13.3,-2.1 -26.9,-12.7 -29.3,-25.3 -3.9,-20.2 22.1,-38.5 29.2,-43.5 z" - class="st3" - id="Stump_Wide" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - d="m 446.3,412.5 c 27.9,-30 93.7,-36.4 123.8,-1.4 18.2,21.2 25.4,60.2 7,78.9 -8.2,8.3 -22.1,13.3 -35,11 -24.2,-4.4 -25.9,-31.9 -47.3,-34.5 -18.1,-2.2 -26.3,16.5 -43.8,11.5 -10.1,-2.9 -17.2,-12 -20,-20 -7.3,-21.2 12.7,-42.8 15.3,-45.5 z" - class="st3" - id="Stump_Normal" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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 - 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 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" - inkscape:connector-curvature="0" - 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 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" - inkscape:connector-curvature="0" - 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 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" - inkscape:connector-curvature="0" - 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 - inkscape:groupmode="layer" - id="Shoes" - style="display:inline"><g - inkscape:groupmode="layer" - id="Boot_1_"><path - style="fill:#8f8f8e" - inkscape:connector-curvature="0" - d="m 535.9,889.4 c -1.9,7 1.7,8.6 3.5,23.1 1.2,9.2 2.2,17.5 1.3,22.5 -0.1,0.4 0,2.8 0.3,6 0.4,5.2 0.7,7.8 2,10 2.3,3.6 6.4,4.8 9.6,5.5 4.8,1.1 9.9,2.2 13.2,-0.9 2.9,-2.7 3,-7.2 3.1,-12.3 0.1,-8.9 -2.1,-12.2 -4.2,-23.3 -1.1,-6 -1.3,-10.4 -1.9,-18.7 -0.5,-8.4 -0.5,-15.3 -0.4,-19.2 0,-1.6 0.1,-2.8 0.1,-3.1 0.8,-25.5 -5.1,-66.8 1,-107.3 0,0 4.6,-31 4.6,-66.5 0,-2.1 -0.7,-7.6 -1.6,-10.3 -8.5,0 -18.3,6.9 -36.7,6.9 -1.2,3.7 -2.3,10.8 -2.3,13.7 0.8,53.8 3.1,67.5 3.1,67.5 4.1,23.8 5.9,48 10.3,71.7 0,0 2.3,12.7 -0.6,24.1 -0.5,2 -1,3.1 -1,3.1 -1.1,2.7 -2.5,3.8 -3.4,7.5 z" - class="st13" - id="XMLID_476_" /><path - style="fill:#8f8f8e" - inkscape:connector-curvature="0" - 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" - d="m 535.9,889.4 c -1.9,7 1.7,8.6 3.5,23.1 1.2,9.2 2.2,17.5 1.3,22.5 -0.1,0.4 0,2.8 0.3,6 0.4,5.2 0.7,7.8 2,10 2.3,3.6 6.4,4.8 9.6,5.5 4.8,1.1 9.9,2.2 13.2,-0.9 2.9,-2.7 3,-7.2 3.1,-12.3 0.1,-8.9 -2.1,-12.2 -4.2,-23.3 -1.1,-6 -1.3,-10.4 -1.9,-18.7 -0.5,-8.4 -0.5,-15.3 -0.4,-19.2 0,-1.6 0.1,-2.8 0.1,-3.1 0.8,-25.5 -5.1,-66.8 1,-107.3 0,0 4.6,-31 4.6,-66.5 0,-2.1 -0.7,-7.6 -1.6,-10.3 -8.5,0 -18.3,6.9 -36.7,6.9 -1.2,3.7 -2.3,10.8 -2.3,13.7 0.8,53.8 3.1,67.5 3.1,67.5 4.1,23.8 5.9,48 10.3,71.7 0,0 2.3,12.7 -0.6,24.1 -0.5,2 -1,3.1 -1,3.1 -1.1,2.7 -2.5,3.8 -3.4,7.5 z" - class="st14" - id="XMLID_478_" /><path - style="fill:#515251" - inkscape:connector-curvature="0" - 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" - d="m 526.2,889.4 c -2.5,7 2.2,8.6 4.5,23.1 1.5,9.2 2.8,17.5 1.8,22.5 -0.1,0.4 0,2.8 0.4,6 0.6,5.2 0.9,7.8 2.6,10 2.9,3.6 8.3,4.8 12.4,5.5 6.2,1.1 12.7,2.2 17.1,-0.9 3.7,-2.7 3.9,-7.2 4,-12.3 0.2,-8.9 -2.8,-12.2 -5.4,-23.3 -1.4,-6 -1.8,-10.4 -2.4,-18.7 -0.7,-8.4 -0.6,-15.3 -0.5,-19.2 0,-1.6 0.1,-2.8 0.1,-3.1 1.1,-25.5 -1.1,-66.3 3.8,-107.1 1.4,-11.6 3.4,-31.1 3.4,-66.6 0,-2.1 -0.9,-7.6 -2,-10.3 -11,0 -23.6,6.9 -47.5,6.9 -1.5,3.7 -3,10.8 -2.9,13.7 1,53.8 4,67.5 4,67.5 5.2,23.8 7.6,48 13.2,71.7 0,0 3,12.7 -0.8,24.1 -0.6,2 -1.2,3.1 -1.2,3.1 -1.6,2.6 -3.4,3.7 -4.6,7.4 z" - class="st13" - id="XMLID_480_" /><path - style="fill:#8f8f8e" - inkscape:connector-curvature="0" - 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 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" - inkscape:connector-curvature="0" - d="m 473.7,861.4 c 7.9,-4 9.2,-0.3 13.3,0 -4.6,22.1 -4.7,36.3 -19.2,40.2 -4.5,1.2 -11.3,2.3 -12.2,-0.6 3.6,-9.7 14,-34.8 18.1,-39.6 z" - class="st3" - id="XMLID_483_" /><path - style="fill:#4f6ab2" - inkscape:connector-curvature="0" - d="m 525.5,860.8 15.6,0.1 c 4.7,13.7 8.6,42.3 9.2,52.3 4.6,4.1 4.9,8.5 -2.1,32 -2.4,3 -11.1,6 -20.4,0 -7.1,-18.7 -7.6,-24.5 -4.1,-31.5 -0.2,-7.4 -0.1,-10 -1.5,-19.5 -3.4,-15.5 1.9,-24.7 3.3,-33.4 z" - class="st15" - id="XMLID_484_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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 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" - inkscape:connector-curvature="0" - 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 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" - inkscape:connector-curvature="0" - 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 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" - inkscape:connector-curvature="0" - 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" - d="m 544.8,866 c -5.3,-0.9 -12.7,7.6 -13,14.8 -0.2,3.8 1.7,5.5 4,10.2 6.9,14.2 6,31.8 5.8,38.1 -0.3,4.5 -0.8,9.3 2,14.1 2.1,3.6 5.2,5.5 6.9,6.7 6.6,4.2 13,3.8 19,3.5 5,-0.3 6.7,-1.2 7.8,-2.3 2.2,-2.2 2.3,-5.3 2.3,-6.7 0.1,-4.4 -1.9,-7.7 -3.2,-9.8 -5.3,-8.7 -8.1,-13.1 -10.1,-15.3 -14.8,-16.6 -11.2,-51.6 -21.5,-53.3 z" - class="st4" - id="XMLID_492_" /><path - style="fill:#515351" - inkscape:connector-curvature="0" - d="m 564.2,933.9 c 1,-0.5 3.7,-1.9 4.8,-4.8 0.8,-2.3 0,-4 -1.3,-8.6 0,0 -1.6,-5.7 -2.7,-11.8 -0.8,-4.7 -0.4,-6.1 -0.8,-11.3 -1.3,-17.9 -7.3,-18.2 -6.9,-33.1 0,-0.7 -0.9,-11 -0.7,-16.4 -3,-0.8 -16.3,-0.3 -16.4,0.3 -1.6,6.9 1.5,17.4 1,18.4 -2.5,4.8 -1.3,10 -0.5,13.4 3.4,14.3 5.1,19.2 6.2,24.3 3.9,17.5 -0.7,25.9 5.2,29.4 3.2,2.2 8.4,2.1 12.1,0.2 z" - class="st4" - id="XMLID_493_" /><path - style="fill:#515351" - inkscape:connector-curvature="0" - d="m 485.9,927.8 c -0.1,0.4 -1.2,0.9 -1.2,-0.3 -0.2,-2.4 -0.1,-3.6 -0.1,-4.4 0,-1.8 1.2,-11.3 1.1,-17.5 -0.2,-13.1 -0.7,-15.2 0.5,-18 1.7,-4 5.1,-7.6 6.3,-7.1 0.5,0.3 2.4,0.2 0.3,8.1 -2.4,8.8 -2.8,10.8 -3.7,16.8 -1.6,10.1 -1.8,15.2 -2.1,18.1 -0.4,1.3 -0.5,2.2 -1.1,4.3 z" - class="st4" - id="XMLID_494_" /><path - style="fill:#515351" - inkscape:connector-curvature="0" - d="m 472.7,884.3 c -8.4,16.1 -6.2,25.8 -14.7,30.5 -1.9,1.1 -4.4,3 -6.3,3.9 -6.1,2.8 -9.3,4 -9.9,6.8 -0.4,1.8 0.5,3.5 0.8,4 1.2,2 4.3,4.3 8.5,5.4 6.1,1.6 7.7,2.5 14.8,0.6 2.9,-0.8 6.2,-1.7 9.1,-4.4 6.6,-6.1 2,-13.6 6,-25.3 4.7,-14 15.2,-15.4 14.7,-25.3 -0.4,-5.7 -4.2,-11.8 -8.4,-12.3 -5.8,-0.7 -11.4,10 -14.6,16.1 z" - class="st4" - id="XMLID_495_" /><path - style="fill:#515351" - inkscape:connector-curvature="0" - 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" - d="m 544.8,866 c -5.3,-0.9 -12.7,7.6 -13,14.8 -0.2,3.8 1.7,5.5 4,10.2 6.9,14.2 6,31.8 5.8,38.1 -0.3,4.5 -0.8,9.3 2,14.1 2.1,3.6 5.2,5.5 6.9,6.7 6.6,4.2 13,3.8 19,3.5 5,-0.3 6.7,-1.2 7.8,-2.3 2.2,-2.2 2.3,-5.3 2.3,-6.7 0.1,-4.4 -1.9,-7.7 -3.2,-9.8 -5.3,-8.7 -8.1,-13.1 -10.1,-15.3 -14.8,-16.6 -11.2,-51.6 -21.5,-53.3 z" - class="st16" - id="XMLID_497_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - d="m 564.2,933.9 c 1,-0.5 3.7,-1.9 4.8,-4.8 0.8,-2.3 0,-4 -1.3,-8.6 0,0 -1.6,-5.7 -2.7,-11.8 -0.8,-4.7 -0.4,-6.1 -0.8,-11.3 -1.3,-17.9 -7.3,-18.2 -6.9,-33.1 0,-0.7 -0.9,-11 -0.7,-16.4 -3,-0.8 -16.3,-0.3 -16.4,0.3 -1.6,6.9 1.5,17.4 1,18.4 -2.5,4.8 -1.3,10 -0.5,13.4 3.4,14.3 5.1,19.2 6.2,24.3 3.9,17.5 -0.7,25.9 5.2,29.4 3.2,2.2 8.4,2.1 12.1,0.2 z" - class="st3" - id="XMLID_498_" /><path - style="fill:#15406d" - inkscape:connector-curvature="0" - d="m 485.9,927.8 c -0.1,0.4 -1.2,0.9 -1.2,-0.3 -0.2,-2.4 -0.1,-3.6 -0.1,-4.4 0,-1.8 1.2,-11.3 1.1,-17.5 -0.2,-13.1 -0.7,-15.2 0.5,-18 1.7,-4 5.1,-7.6 6.3,-7.1 0.5,0.3 2.4,0.2 0.3,8.1 -2.4,8.8 -2.8,10.8 -3.7,16.8 -1.6,10.1 -1.8,15.2 -2.1,18.1 -0.4,1.3 -0.5,2.2 -1.1,4.3 z" - class="st17" - id="XMLID_499_" /><path - style="fill:#3e65b0" - inkscape:connector-curvature="0" - d="m 472.7,884.3 c -8.4,16.1 -6.2,25.8 -14.7,30.5 -1.9,1.1 -4.4,3 -6.3,3.9 -6.1,2.8 -9.3,4 -9.9,6.8 -0.4,1.8 0.5,3.5 0.8,4 1.2,2 4.3,4.3 8.5,5.4 6.1,1.6 7.7,2.5 14.8,0.6 2.9,-0.8 6.2,-1.7 9.1,-4.4 6.6,-6.1 2,-13.6 6,-25.3 4.7,-14 15.2,-15.4 14.7,-25.3 -0.4,-5.7 -4.2,-11.8 -8.4,-12.3 -5.8,-0.7 -11.4,10 -14.6,16.1 z" - class="st16" - id="XMLID_500_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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" - d="m 486.5,836 c 3.5,2.8 -2.3,9.7 0.8,19.5 2.4,7.6 5.2,6.8 6.1,10.7 2.8,10.5 -8,25 -20.6,31.3 -10.4,5.2 -23.4,5.6 -24.7,2.3 -0.7,-1.7 2.1,-3.4 6.1,-8.5 1.7,-2.2 9.3,-12.9 10.8,-23.4 1.9,-13.2 7.6,-22.4 8.2,-30.7 0.7,-7.5 7.7,-5.8 13.3,-1.2 z" - class="st4" - id="XMLID_502_" /><path - style="fill:#515351" - inkscape:connector-curvature="0" - d="m 491.2,895.3 c 6.5,-2.7 9.7,-4 11,-6.6 2.2,-4.4 0.1,-9.5 -1.5,-13.4 -1.6,-3.9 -4.7,-9 -6.6,-8.5 -1,0.3 -0.9,2 -2,4.4 -1.4,3.6 -3.8,5.6 -6.4,7.9 -14.5,12.9 -17.5,20.3 -25.1,20 -4.2,-0.1 -5.3,-2.4 -11.3,-2.1 -0.8,0 -4.9,0.3 -9.7,2.5 -2,1 -9.2,4.4 -8.8,7.3 0.6,4.1 15.6,4.8 17.4,4.9 6.4,0.3 12.4,0.6 18.5,-2.8 5.1,-2.8 4.1,-4.9 10,-8.3 4.8,-2.6 6.1,-1.9 14.5,-5.3 z" - class="st4" - id="XMLID_503_" /><path - style="fill:#515351" - inkscape:connector-curvature="0" - d="m 540.7,872.8 c -3.4,4.4 -1.1,6.9 -4.1,23.2 -1.2,6.3 -1.8,12.7 -3.3,18.9 -0.5,2.1 -1.3,5.2 -0.5,8.8 0.3,1 1.3,5.1 4.4,7.3 3.2,2.2 2.6,3.5 10.8,3.2 8.3,-0.3 9,-1.3 11,-3 5,-4 3.5,-16.6 2.8,-21.3 -0.7,-5.5 -1.6,-6 -2.1,-12.4 -0.6,-7.3 0.5,-8.3 -0.2,-13.3 -0.4,-3.6 -1.7,-13.1 -7.6,-15.9 -4.5,-2.3 -7.7,0 -11.2,4.5 z" - class="st4" - id="XMLID_504_" /><path - style="fill:#515351" - inkscape:connector-curvature="0" - 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" - d="m 486.5,836 c 3.5,2.8 -2.3,9.7 0.8,19.5 2.4,7.6 5.2,6.8 6.1,10.7 2.8,10.5 -8,25 -20.6,31.3 -10.4,5.2 -23.4,5.6 -24.7,2.3 -0.7,-1.7 2.1,-3.4 6.1,-8.5 1.7,-2.2 9.3,-12.9 10.8,-23.4 1.9,-13.2 7.6,-22.4 8.2,-30.7 0.7,-7.5 7.7,-5.8 13.3,-1.2 z" - class="st3" - id="XMLID_506_" /><path - style="fill:#65ad45" - inkscape:connector-curvature="0" - d="m 491.2,895.3 c 6.5,-2.7 9.7,-4 11,-6.6 2.2,-4.4 0.1,-9.5 -1.5,-13.4 -1.6,-3.9 -4.7,-9 -6.6,-8.5 -1,0.3 -0.9,2 -2,4.4 -1.4,3.6 -3.8,5.6 -6.4,7.9 -14.5,12.9 -17.5,20.3 -25.1,20 -4.2,-0.1 -5.3,-2.4 -11.3,-2.1 -0.8,0 -4.9,0.3 -9.7,2.5 -2,1 -9.2,4.4 -8.8,7.3 0.6,4.1 15.6,4.8 17.4,4.9 6.4,0.3 12.4,0.6 18.5,-2.8 5.1,-2.8 4.1,-4.9 10,-8.3 4.8,-2.6 6.1,-1.9 14.5,-5.3 z" - class="st18" - id="XMLID_507_" /><path - style="fill:#65ad45" - inkscape:connector-curvature="0" - d="m 540.7,872.8 c -3.4,4.4 -1.1,6.9 -4.1,23.2 -1.2,6.3 -1.8,12.7 -3.3,18.9 -0.5,2.1 -1.3,5.2 -0.5,8.8 0.3,1 1.3,5.1 4.4,7.3 3.2,2.2 2.6,3.5 10.8,3.2 8.3,-0.3 9,-1.3 11,-3 5,-4 3.5,-16.6 2.8,-21.3 -0.7,-5.5 -1.6,-6 -2.1,-12.4 -0.6,-7.3 0.5,-8.3 -0.2,-13.3 -0.4,-3.6 -1.7,-13.1 -7.6,-15.9 -4.5,-2.3 -7.7,0 -11.2,4.5 z" - class="st18" - id="XMLID_508_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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 - 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" - class="st3" - id="XMLID_463_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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 - 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" - class="st12" - id="Body_Shadow" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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 - 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" - class="st12" - id="Body_Shadow_2_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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 - 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" - class="st12" - id="Body_Shadow_1_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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" - d="m 482.3,369.8 c -0.2,0 -1.3,2 -1.2,11.6 0.1,12.7 1.2,13.3 1.4,13.3 0.4,0 1.5,-7.4 1.2,-15.9 -0.5,-4.5 -1.1,-9 -1.4,-9 z" - class="st19" - id="XMLID_513_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - 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" - cy="364.39999" - cx="482.29999" - class="st19" - id="XMLID_515_" /><circle - style="fill:#787878" - r="1.2" - cy="368.60001" - cx="482.29999" - class="st19" - id="XMLID_516_" /></g></g></g><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" - d="m 445.8,413.2 c 17.2,4.6 17.2,30.6 43.5,50.1 1.2,0.9 -21.9,-11.3 -4.5,-34.1 20,8.2 11.2,37.3 11.4,36.9 7.4,-15.9 19.8,-23 32,-32.9 12.4,-10 20,-18 41.9,-21.9 z" - class="st12" - id="Body_Shadow_3_" /><path - style="fill:#515351" - inkscape:connector-curvature="0" - 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" - d="m 445.8,413.2 c 17.2,4.6 17.2,30.6 43.5,50.1 1.2,0.9 -21.9,-11.3 -4.5,-34.1 20,8.2 11.2,37.3 11.4,36.9 7.4,-15.9 19.8,-23 32,-32.9 12.4,-10 20,-18 41.9,-21.9 z" - class="st12" - id="Body_Shadow_5_" /><path - style="fill:#515351" - inkscape:connector-curvature="0" - 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" - d="m 445.8,413.2 c 17.2,4.6 17.2,30.6 43.5,50.1 1.2,0.9 -21.9,-11.3 -4.5,-34.1 20,8.2 11.2,37.3 11.4,36.9 7.4,-15.9 19.8,-23 32,-32.9 12.4,-10 20,-18 41.9,-21.9 z" - class="st12" - id="Body_Shadow_4_" /><path - style="fill:#515351" - inkscape:connector-curvature="0" - 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 - 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" - d="m 491.3,459.9 c 0.2,0 2,2.8 0.8,5.2 -1,2 -3.6,3.1 -6,2 -2.1,-1.1 -2.8,-3.7 -2,-5.6 0.9,-2.4 3.7,-3.1 3.9,-2.9 0.1,0.2 -2.6,1.4 -2.7,3.6 -0.1,1.2 0.5,2.6 1.9,3.1 1.4,0.6 3.1,0 3.9,-1 1.3,-1.7 0.1,-4.3 0.2,-4.4 z" - class="st19" - id="XMLID_512_" /><ellipse - style="fill:#787878" - ry="2" - rx="1.8" - cy="465.89999" - cx="486.10001" - class="st19" - transform="matrix(-0.9904,0.1385,-0.1385,-0.9904,1031.9863,859.9408)" - id="XMLID_517_" /><ellipse - style="fill:#787878" - ry="1.8" - rx="1.7" - cy="466.79999" - cx="489" - class="st19" - transform="matrix(-0.9904,0.1385,-0.1385,-0.9904,1037.9608,861.3239)" - id="XMLID_518_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 488,449.7 c 0.2,0 1.7,3 0.1,5.2 -1.2,1.8 -4.1,2.6 -6.1,1.2 -2,-1.4 -2.2,-4.1 -1.2,-5.8 1.2,-2.2 4.2,-2.6 4.3,-2.4 0.1,0.2 -2.8,1.1 -3.1,3.1 -0.2,1.2 0.2,2.6 1.4,3.4 1.3,0.9 3.1,0.4 4,-0.4 1.3,-1.5 0.5,-4.3 0.6,-4.3 z" - class="st19" - id="XMLID_519_" /><ellipse - style="fill:#787878" - ry="2" - rx="1.8" - cy="453.10001" - cx="480.60001" - class="st19" - id="XMLID_520_" /><ellipse - style="fill:#787878" - ry="1.8" - rx="1.7" - cy="455.39999" - cx="482.60001" - class="st19" - id="XMLID_521_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 491.3,459.3 c -0.2,0 -1.4,3.2 0.4,5.2 1.4,1.7 4.3,2.2 6.2,0.6 1.9,-1.5 1.9,-4.3 0.8,-5.9 -1.3,-2.1 -4.4,-2.2 -4.4,-2 0,0.2 2.8,0.8 3.4,2.8 0.3,1.1 0,2.6 -1.1,3.5 -1.2,1 -3,0.7 -4,-0.2 -1.7,-1.2 -1.1,-4 -1.3,-4 z" - class="st19" - id="XMLID_522_" /><ellipse - style="fill:#787878" - ry="2" - rx="1.8" - cy="464.10001" - cx="498" - class="st19" - transform="matrix(0.9965,-0.08364829,0.08364829,0.9965,-37.0735,43.2815)" - id="XMLID_523_" /><ellipse - style="fill:#787878" - ry="1.8" - rx="1.7" - cy="465.5" - cx="495.29999" - class="st19" - transform="matrix(0.9965,-0.08364948,0.08364948,0.9965,-37.2023,43.0654)" - id="XMLID_524_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 488.5,449.9 c -0.2,0 -0.8,3.4 1.3,5.1 1.7,1.3 4.6,1.4 6.2,-0.5 1.5,-1.9 1,-4.5 -0.4,-6 -1.8,-1.8 -4.7,-1.3 -4.7,-1.2 -0.1,0.3 2.9,0.3 3.9,2.1 0.5,1.1 0.5,2.6 -0.4,3.6 -1.1,1.2 -2.8,1.2 -4,0.6 -1.7,-0.9 -1.7,-3.8 -1.9,-3.7 z" - class="st19" - id="XMLID_525_" /><ellipse - style="fill:#787878" - ry="2" - rx="1.8" - cy="455.10001" - cx="492.70001" - class="st19" - transform="matrix(0.9627,-0.2707,0.2707,0.9627,-104.7882,150.3477)" - id="XMLID_526_" /><ellipse - style="fill:#787878" - ry="1.8" - rx="1.7" - cy="454" - cx="495.39999" - 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" - d="m 489.6,443.9 c 0.1,-0.1 1.3,0.5 1.4,1.7 0.1,0.9 -0.6,2 -1.7,2 -1,0.1 -1.8,-0.7 -2,-1.5 -0.2,-1.1 0.6,-2 0.7,-2 0.1,0 -0.6,1.1 -0.2,1.9 0.3,0.4 0.8,0.8 1.3,0.7 0.7,-0.1 1.2,-0.7 1.2,-1.2 0.1,-0.9 -0.8,-1.6 -0.7,-1.6 z" - class="st19" - id="XMLID_528_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 486.6,445 c 0.1,0 0.7,1.2 0,2.2 -0.5,0.7 -1.7,1.1 -2.6,0.4 -0.8,-0.6 -0.9,-1.7 -0.5,-2.5 0.5,-0.9 1.8,-1.1 1.8,-1 0,0.1 -1.2,0.4 -1.3,1.3 -0.1,0.4 0.1,1.1 0.6,1.4 0.5,0.4 1.3,0.2 1.7,-0.2 0.6,-0.5 0.2,-1.6 0.3,-1.6 z" - class="st19" - id="XMLID_529_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 487.5,451.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.5,-0.5 0,-1.6 0.1,-1.6 z" - class="st19" - id="XMLID_530_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 490.7,450.6 c 0.1,-0.1 1.4,0.4 1.7,1.4 0.2,0.9 -0.4,2 -1.4,2.2 -1,0.3 -1.9,-0.4 -2.1,-1.2 -0.4,-1 0.4,-2 0.4,-2 0.1,0 -0.4,1.2 0.1,1.9 0.3,0.4 0.9,0.7 1.4,0.5 0.6,-0.2 1,-0.9 1,-1.4 0,-0.9 -1.2,-1.4 -1.1,-1.4 z" - class="st19" - id="XMLID_531_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 492.8,457.1 c 0.1,-0.1 1.4,0.4 1.7,1.5 0.2,0.9 -0.4,2 -1.4,2.2 -1,0.2 -1.9,-0.5 -2.1,-1.2 -0.4,-1 0.4,-2 0.4,-2 0.1,0 -0.4,1.2 0.1,1.9 0.3,0.4 0.9,0.7 1.4,0.5 0.6,-0.2 1,-0.9 1,-1.3 -0.1,-1 -1.1,-1.5 -1.1,-1.6 z" - class="st19" - id="XMLID_532_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - 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" - cy="435.60001" - cx="488.29999" - class="st19" - id="XMLID_534_" /><circle - style="fill:#787878" - r="1.2" - cy="436.10001" - cx="483.60001" - class="st19" - id="XMLID_535_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - 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" - cy="435.60001" - cx="488.29999" - class="st19" - id="XMLID_537_" /><circle - style="fill:#787878" - r="1.2" - cy="436.10001" - cx="483.60001" - class="st19" - id="XMLID_538_" /></g><g - inkscape:groupmode="layer" - id="Smart_Clit_Piercing"><circle - style="fill:#787878" - r="1.2" - cy="435.60001" - cx="488.29999" - class="st19" - id="XMLID_539_" /><circle - style="fill:#787878" - r="1.2" - cy="436.10001" - cx="483.60001" - class="st19" - id="XMLID_540_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 483.8,436.2 c -0.1,-0.1 -2.3,3.3 -1.1,5.5 1.4,2.7 6.4,2.1 7.4,-0.8 0.8,-2.4 -1.6,-5.4 -1.8,-5.3 -0.1,0.1 1.4,2.5 0.5,4.4 -1,2.1 -3.6,2.3 -4.9,0.3 -1.2,-1.8 0,-4 -0.1,-4.1 z" - class="st19" - id="XMLID_541_" /><rect - style="fill:#4db748" - height="7.3000002" - width="7.3000002" - class="st21" - transform="matrix(0.7488,0.6629,-0.6629,0.7488,418.3834,-210.2396)" - y="443.10001" - x="482.89999" - id="XMLID_542_" /></g></g><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" - d="m 494.8,433.8 c 20.7,-1.5 47.7,-4.5 61.9,-42.4 13.1,-44.3 -27.8,-99.6 -59.9,-101.5 -40.1,6.2 -61.8,42.8 -63.9,96.9 2.2,31 33.1,49 61.9,47 z" - class="st12" - id="XMLID_543_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - d="m 494.8,433.8 c 20.8,0.1 49.4,-13 61.9,-42.4 12.5,-29.4 -18.5,-83.4 -46,-101.7 -6.5,-4.3 -38.7,-8.2 -40.4,0 -2.6,11.6 -44.9,33.3 -41.4,96.8 1.8,34.8 45.1,47.2 65.9,47.3 z" - class="st3" - id="XMLID_544_" /><ellipse - style="fill:#d76b93" - ry="3.0999999" - rx="2.8" - cy="396.29999" - cx="467.10001" - 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" - cy="390.89999" - cx="466.89999" - class="st19" - id="XMLID_547_" /><circle - style="fill:#787878" - r="1.2" - cy="395" - 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" - d="m 467,396.1 c -0.2,0 -1.6,2.1 -1.5,11.7 0.1,12.7 1.5,13.2 1.7,13.2 0.4,0 1.5,-7.4 1.2,-15.9 -0.4,-4.6 -1.1,-9.1 -1.4,-9 z" - class="st19" - id="XMLID_549_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - 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 - 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 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_" - 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_" /><path - transform="matrix(0.06481902,0.9979,-0.9979,0.06481902,774.4482,-268.8443)" - 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" - cx="536.5" - class="st19" - id="XMLID_554_" /><circle - style="fill:#787878" - r="1.1" - cy="279.70001" - cx="536.70001" - class="st19" - id="XMLID_555_" /><circle - style="fill:#787878" - r="1.1" - cy="271.39999" - cx="531.5" - class="st19" - id="XMLID_556_" /><circle - style="fill:#787878" - r="1.1" - cy="271.79999" - cx="528.5" - class="st19" - id="XMLID_557_" /><circle - style="fill:#787878" - r="1.1" - cy="286.20001" - cx="532.59998" - class="st19" - id="XMLID_558_" /><circle - style="fill:#787878" - r="1.1" - cy="286.20001" - cx="529.5" - class="st19" - id="XMLID_559_" /><circle - style="fill:#787878" - r="1.1" - cy="280.79999" - cx="524.79999" - class="st19" - id="XMLID_560_" /><circle - style="fill:#787878" - r="1.1" - cy="278.10001" - cx="524.79999" - class="st19" - id="XMLID_561_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.5" - cy="271" - cx="467.20001" - class="st19" - id="XMLID_562_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.5" - cy="270.5" - cx="468.29999" - class="st19" - id="XMLID_563_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.5" - cy="277.29999" - cx="466.29999" - class="st19" - id="XMLID_564_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.5" - cy="275.5" - cx="465.79999" - class="st19" - transform="matrix(-0.9989,-0.04745027,0.04745027,-0.9989,918.0208,572.7028)" - id="XMLID_565_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.5" - cy="274" - cx="472" - class="st19" - id="XMLID_566_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.5" - cy="276" - cx="472.79999" - class="st19" - id="XMLID_567_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.5" - cy="281.10001" - cx="470.29999" - class="st19" - transform="matrix(-0.9413,0.3376,-0.3376,-0.9413,1007.9313,386.819)" - id="XMLID_568_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.5" - cy="280.5" - cx="471.5" - class="st19" - transform="matrix(-0.9425,0.3341,-0.3341,-0.9425,1009.6696,387.3601)" - id="XMLID_569_" /></g><g - 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" - class="st19" - id="XMLID_570_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 467.6,275.9 c 0,0 -0.4,0.7 -0.4,1.7 -0.1,0.9 0.3,2 0.9,2.4 0.9,0.5 2,-0.7 2.3,-1.9 0.3,-1.1 -0.1,-2 0,-2.1 0.1,-0.1 0.6,1.2 0.5,2.4 -0.2,1.4 -1.3,3 -2.6,2.8 -0.9,-0.2 -1.8,-1.4 -1.7,-2.9 0.1,-1.4 1,-2.4 1,-2.4 z" - class="st19" - id="XMLID_571_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 468.7,281.2 c 0.1,-0.1 11.3,16.2 28.4,17.6 18.3,1.4 32.9,-14.9 33.1,-14.8 0.2,0.2 -13.4,17.1 -32.5,15.7 -18.5,-1.3 -29.1,-18.4 -29,-18.5 z" - class="st19" - id="XMLID_572_" /><circle - style="fill:#787878" - r="1" - cy="278.70001" - cx="527.90002" - class="st19" - id="XMLID_573_" /><circle - style="fill:#787878" - r="1" - cy="278.70001" - cx="532.40002" - class="st19" - id="XMLID_574_" /><circle - style="fill:#787878" - r="1" - cy="276" - cx="530.20001" - class="st19" - id="XMLID_575_" /><circle - style="fill:#787878" - r="1" - cy="280.89999" - cx="530.40002" - class="st19" - id="XMLID_576_" /><ellipse - style="fill:#787878" - ry="0.80000001" - rx="0.60000002" - cy="275.70001" - cx="470.39999" - class="st19" - transform="matrix(-0.981,0.1941,-0.1941,-0.981,985.4068,454.8795)" - id="XMLID_577_" /><ellipse - style="fill:#787878" - ry="0.80000001" - rx="0.60000002" - cy="275.70001" - cx="467.60001" - class="st19" - transform="matrix(-0.971,-0.2392,0.2392,-0.971,855.6479,655.2993)" - id="XMLID_578_" /><ellipse - style="fill:#787878" - ry="0.5" - rx="0.60000002" - cy="273.89999" - cx="468.20001" - class="st19" - transform="matrix(-0.2055,-0.9787,0.9787,-0.2055,296.3026,788.395)" - id="XMLID_579_" /><ellipse - style="fill:#787878" - ry="0.5" - rx="0.60000002" - cy="277.89999" - cx="469.20001" - class="st19" - transform="matrix(0.08246086,0.9966,-0.9966,0.08246086,707.4532,-212.5916)" - id="XMLID_580_" /></g><g - inkscape:groupmode="layer" - id="Boob_piercing_3_" - style="display:inline"><g - inkscape:groupmode="layer" - id="XMLID_581_"><circle - style="fill:#787878" - r="1" - cy="278.70001" - cx="527.90002" - class="st19" - id="XMLID_582_" /><circle - style="fill:#787878" - r="1" - cy="278.70001" - cx="532.40002" - class="st19" - id="XMLID_583_" /></g><g - inkscape:groupmode="layer" - id="XMLID_584_"><ellipse - style="fill:#787878" - ry="0.80000001" - rx="0.60000002" - cy="275.70001" - cx="470.39999" - class="st19" - transform="matrix(-0.981,0.1941,-0.1941,-0.981,985.4068,454.8795)" - id="XMLID_585_" /><ellipse - style="fill:#787878" - ry="0.80000001" - rx="0.60000002" - cy="275.70001" - cx="467.60001" - class="st19" - transform="matrix(-0.971,-0.2392,0.2392,-0.971,855.6479,655.2993)" - id="XMLID_586_" /></g></g></g><g - 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" - class="st12" - id="XMLID_587_" /><path - style="fill:#f6e0e8" - 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="st3" - id="XMLID_588_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - d="m 497.1,261.4 c 0.5,-4 4.2,-9.7 14.1,-20.8 -6.7,10 -12.5,14.7 -14.1,20.8 z" - class="st12" - id="XMLID_589_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - d="m 495.2,264 c 1.2,-3.4 0.7,-9.4 -2.6,-22.2 1.3,10.7 3.9,16.7 2.6,22.2 z" - class="st12" - id="XMLID_590_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - 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 - 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_" /><path - transform="matrix(0.06481902,0.9979,-0.9979,0.06481902,760.2567,-253.1356)" - 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" - cx="520.90002" - class="st19" - id="XMLID_594_" /><circle - style="fill:#787878" - r="1.1" - cy="280" - cx="521.20001" - class="st19" - id="XMLID_595_" /><circle - style="fill:#787878" - r="1.1" - cy="271.70001" - cx="516" - class="st19" - id="XMLID_596_" /><circle - style="fill:#787878" - r="1.1" - cy="272.10001" - cx="512.90002" - class="st19" - id="XMLID_597_" /><circle - style="fill:#787878" - r="1.1" - cy="286.5" - cx="517.09998" - class="st19" - id="XMLID_598_" /><circle - style="fill:#787878" - r="1.1" - cy="286.5" - cx="514" - class="st19" - id="XMLID_599_" /><circle - style="fill:#787878" - r="1.1" - cy="281" - cx="509.39999" - class="st19" - id="XMLID_600_" /><circle - style="fill:#787878" - r="1.1" - cy="278.39999" - cx="509.39999" - class="st19" - id="XMLID_601_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.5" - cy="271.29999" - cx="451.70001" - class="st19" - id="XMLID_602_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.5" - cy="270.79999" - cx="452.89999" - class="st19" - id="XMLID_603_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.5" - cy="277.60001" - cx="450.79999" - class="st19" - id="XMLID_604_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.5" - cy="275.70001" - cx="450.29999" - class="st19" - transform="matrix(-0.9989,-0.04745027,0.04745027,-0.9989,887.0982,572.5067)" - id="XMLID_605_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.5" - cy="274.29999" - cx="456.5" - class="st19" - id="XMLID_606_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.5" - cy="276.20001" - cx="457.20001" - class="st19" - id="XMLID_607_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.5" - cy="281.29999" - cx="454.89999" - class="st19" - transform="matrix(-0.9413,0.3376,-0.3376,-0.9413,978.0084,392.5092)" - id="XMLID_608_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.5" - cy="280.79999" - cx="456.10001" - class="st19" - transform="matrix(-0.9425,0.3341,-0.3341,-0.9425,979.7283,392.9969)" - id="XMLID_609_" /></g><g - 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" - class="st19" - id="XMLID_610_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 452.1,276.1 c 0,0 -0.4,0.7 -0.4,1.7 -0.1,0.9 0.3,2 0.9,2.4 0.9,0.5 2,-0.7 2.3,-1.9 0.3,-1.1 -0.1,-2 0,-2.1 0.1,-0.1 0.6,1.2 0.5,2.4 -0.2,1.4 -1.3,3 -2.6,2.8 -0.9,-0.2 -1.8,-1.4 -1.7,-2.9 0.1,-1.4 1,-2.4 1,-2.4 z" - class="st19" - id="XMLID_611_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 453.1,281.5 c 0.1,-0.1 11.3,16.2 28.4,17.6 18.3,1.4 32.9,-14.9 33.1,-14.8 0.2,0.2 -13.4,17.1 -32.5,15.7 -18.4,-1.3 -29.1,-18.4 -29,-18.5 z" - class="st19" - id="XMLID_612_" /><circle - style="fill:#787878" - r="1" - cy="279" - cx="512.40002" - class="st19" - id="XMLID_613_" /><circle - style="fill:#787878" - r="1" - cy="279" - cx="516.79999" - class="st19" - id="XMLID_614_" /><circle - style="fill:#787878" - r="1" - cy="276.20001" - cx="514.59998" - class="st19" - id="XMLID_615_" /><circle - style="fill:#787878" - r="1" - cy="281.20001" - cx="515" - class="st19" - id="XMLID_616_" /><ellipse - style="fill:#787878" - ry="0.80000001" - rx="0.60000002" - cy="276" - cx="455" - class="st19" - transform="matrix(-0.981,0.1941,-0.1941,-0.981,954.8359,458.3842)" - id="XMLID_617_" /><ellipse - style="fill:#787878" - ry="0.80000001" - rx="0.60000002" - cy="276" - cx="452.10001" - class="st19" - transform="matrix(-0.971,-0.2392,0.2392,-0.971,825.0893,652.1412)" - id="XMLID_618_" /><ellipse - style="fill:#787878" - ry="0.5" - rx="0.60000002" - cy="274.29999" - cx="452.70001" - class="st19" - transform="matrix(-0.2055,-0.9787,0.9787,-0.2055,277.3305,773.6921)" - id="XMLID_619_" /><ellipse - style="fill:#787878" - ry="0.5" - rx="0.60000002" - cy="278.10001" - cx="453.60001" - class="st19" - transform="matrix(0.08246086,0.9966,-0.9966,0.08246086,693.3712,-196.8819)" - id="XMLID_620_" /></g><g - inkscape:groupmode="layer" - id="Boob_piercing_2_" - style="display:inline"><g - inkscape:groupmode="layer" - id="XMLID_621_"><circle - style="fill:#787878" - r="1" - cy="279" - cx="512.40002" - class="st19" - id="XMLID_622_" /><circle - style="fill:#787878" - r="1" - cy="279" - cx="516.79999" - class="st19" - id="XMLID_623_" /></g><g - inkscape:groupmode="layer" - id="XMLID_624_"><ellipse - style="fill:#787878" - ry="0.80000001" - rx="0.60000002" - cy="276" - cx="455" - class="st19" - transform="matrix(-0.981,0.1941,-0.1941,-0.981,954.8359,458.3842)" - id="XMLID_625_" /><ellipse - style="fill:#787878" - ry="0.80000001" - rx="0.60000002" - cy="276" - cx="452.10001" - class="st19" - transform="matrix(-0.971,-0.2392,0.2392,-0.971,825.0893,652.1412)" - id="XMLID_626_" /></g></g></g><g - 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" - class="st12" - id="XMLID_627_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - d="m 510.2,215.4 c -18,-0.1 -50.2,31.3 -60.2,39.6 -17.2,14.5 -22.3,33.8 -9.5,49.3 8,9.8 41.4,7.6 49.9,-10.8 10.6,32.4 47.6,29.1 62.6,9.5 10.8,-14.2 8,-39.5 -3.8,-48.5 -15.8,-12 -21.4,-39 -39,-39.1" - class="st3" - id="XMLID_628_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - d="m 492.6,272.2 c 0.7,-5 5.2,-12 17.5,-25.8 -8.4,12.5 -15.5,18.2 -17.5,25.8 z" - class="st12" - id="XMLID_629_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - d="m 490.3,275.4 c 1.5,-4.2 0.9,-11.6 -3.2,-27.5 1.5,13.2 4.8,20.7 3.2,27.5 z" - class="st12" - id="XMLID_630_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - 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 - 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_" /><path - transform="matrix(0.06481902,0.9979,-0.9979,0.06481902,775.0793,-238.9386)" - 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" - cx="522.20001" - class="st19" - id="XMLID_634_" /><circle - style="fill:#787878" - r="1.3" - cy="295.29999" - cx="522.40002" - class="st19" - id="XMLID_635_" /><circle - style="fill:#787878" - r="1.3" - cy="284.89999" - cx="516" - class="st19" - id="XMLID_636_" /><circle - style="fill:#787878" - r="1.3" - cy="285.39999" - cx="512.20001" - class="st19" - id="XMLID_637_" /><circle - style="fill:#787878" - r="1.3" - cy="303.20001" - cx="517.40002" - class="st19" - id="XMLID_638_" /><circle - style="fill:#787878" - r="1.3" - cy="303.20001" - cx="513.5" - class="st19" - id="XMLID_639_" /><circle - style="fill:#787878" - r="1.3" - cy="296.60001" - cx="507.79999" - class="st19" - id="XMLID_640_" /><circle - style="fill:#787878" - r="1.3" - cy="293.20001" - cx="507.79999" - class="st19" - id="XMLID_641_" /><ellipse - style="fill:#787878" - ry="0.89999998" - rx="0.69999999" - cy="284.39999" - cx="436.20001" - class="st19" - id="XMLID_642_" /><ellipse - style="fill:#787878" - ry="0.89999998" - rx="0.69999999" - cy="283.89999" - cx="437.70001" - class="st19" - id="XMLID_643_" /><ellipse - style="fill:#787878" - ry="0.89999998" - rx="0.69999999" - cy="292.20001" - cx="435.10001" - class="st19" - id="XMLID_644_" /><ellipse - style="fill:#787878" - ry="0.89999998" - rx="0.69999999" - cy="289.89999" - cx="434.5" - class="st19" - transform="matrix(-0.9989,-0.04745027,0.04745027,-0.9989,854.8103,600.1753)" - id="XMLID_645_" /><ellipse - style="fill:#787878" - ry="0.89999998" - rx="0.69999999" - cy="288.10001" - cx="442.20001" - class="st19" - id="XMLID_646_" /><ellipse - style="fill:#787878" - ry="0.89999998" - rx="0.69999999" - cy="290.5" - cx="443.10001" - class="st19" - id="XMLID_647_" /><ellipse - style="fill:#787878" - ry="0.89999998" - rx="0.69999999" - cy="296.89999" - cx="440.10001" - class="st19" - transform="matrix(-0.9413,0.3376,-0.3376,-0.9413,954.6022,427.724)" - id="XMLID_648_" /><ellipse - style="fill:#787878" - ry="0.89999998" - rx="0.69999999" - cy="296.29999" - cx="441.60001" - class="st19" - transform="matrix(-0.9425,0.3341,-0.3341,-0.9425,956.7655,427.9553)" - id="XMLID_649_" /></g><g - 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" - class="st19" - id="XMLID_650_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 436.7,290.5 c 0,0 -0.5,0.9 -0.5,2 -0.1,1.1 0.4,2.6 1.2,3 1.2,0.6 2.5,-0.9 2.8,-2.3 0.4,-1.3 -0.1,-2.6 0,-2.7 0.1,-0.1 0.8,1.4 0.6,3 -0.3,1.8 -1.7,3.7 -3.2,3.4 -1.2,-0.3 -2.2,-1.8 -2.1,-3.6 0.1,-1.6 1.2,-2.8 1.2,-2.8 z" - class="st19" - id="XMLID_651_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 438,297.1 c 0.1,-0.1 14,20.1 35.3,21.9 22.7,1.8 40.8,-18.6 41,-18.4 0.2,0.2 -16.6,21.2 -40.3,19.5 -22.8,-1.7 -36.1,-22.9 -36,-23 z" - class="st19" - id="XMLID_652_" /><circle - style="fill:#787878" - r="1.2" - cy="294" - cx="511.60001" - class="st19" - id="XMLID_653_" /><circle - style="fill:#787878" - r="1.2" - cy="294" - cx="517.09998" - class="st19" - id="XMLID_654_" /><circle - style="fill:#787878" - r="1.2" - cy="290.60001" - cx="514.29999" - class="st19" - id="XMLID_655_" /><circle - style="fill:#787878" - r="1.2" - cy="296.79999" - cx="514.70001" - class="st19" - id="XMLID_656_" /><ellipse - style="fill:#787878" - ry="1" - rx="0.80000001" - cy="290.29999" - cx="440.20001" - class="st19" - transform="matrix(-0.981,0.1941,-0.1941,-0.981,928.3824,489.6277)" - id="XMLID_657_" /><ellipse - style="fill:#787878" - ry="1" - rx="0.80000001" - cy="290.29999" - cx="436.70001" - class="st19" - transform="matrix(-0.971,-0.2392,0.2392,-0.971,791.3661,676.6553)" - id="XMLID_658_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.80000001" - cy="288.10001" - cx="437.39999" - class="st19" - transform="matrix(-0.2055,-0.9787,0.9787,-0.2055,245.4174,775.3432)" - id="XMLID_659_" /><ellipse - style="fill:#787878" - ry="0.69999999" - rx="0.80000001" - cy="292.89999" - cx="438.70001" - class="st19" - transform="matrix(0.08246086,0.9966,-0.9966,0.08246086,694.4183,-168.4039)" - id="XMLID_660_" /></g><g - inkscape:groupmode="layer" - id="Boob_piercing" - style="display:inline"><g - inkscape:groupmode="layer" - id="XMLID_661_"><circle - style="fill:#787878" - r="1.2" - cy="294" - cx="511.60001" - class="st19" - id="XMLID_662_" /><circle - style="fill:#787878" - r="1.2" - cy="294" - cx="517.09998" - class="st19" - id="XMLID_663_" /></g><g - inkscape:groupmode="layer" - id="XMLID_664_"><ellipse - style="fill:#787878" - ry="1" - rx="0.80000001" - cy="290.29999" - cx="440.20001" - class="st19" - transform="matrix(-0.981,0.1941,-0.1941,-0.981,928.3824,489.6277)" - id="XMLID_665_" /><ellipse - style="fill:#787878" - ry="1" - rx="0.80000001" - cy="290.29999" - cx="436.70001" - class="st19" - transform="matrix(-0.971,-0.2392,0.2392,-0.971,791.3661,676.6553)" - id="XMLID_666_" /></g></g></g><g - 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" - class="st12" - id="XMLID_667_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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="st3" - id="XMLID_668_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - d="m 491.3,280.8 c 0.9,-6 6.2,-14.5 21.1,-31.1 -10,15 -18.6,21.8 -21.1,31.1 z" - class="st12" - id="XMLID_669_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - d="m 488.6,284.6 c 1.9,-5.1 1.1,-14 -3.8,-33.2 1.7,15.9 5.6,24.9 3.8,33.2 z" - class="st12" - id="XMLID_670_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - 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 - 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_" /><path - transform="matrix(0.06481902,0.9979,-0.9979,0.06481902,791.2404,-230.0869)" - 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" - cx="527.09998" - class="st19" - id="XMLID_674_" /><circle - style="fill:#787878" - r="1.6" - cy="308.5" - cx="527.40002" - class="st19" - id="XMLID_675_" /><circle - style="fill:#787878" - r="1.6" - cy="296.10001" - cx="519.70001" - class="st19" - id="XMLID_676_" /><circle - style="fill:#787878" - r="1.6" - cy="296.70001" - cx="515.09998" - class="st19" - id="XMLID_677_" /><circle - style="fill:#787878" - r="1.6" - cy="318.20001" - cx="521.29999" - class="st19" - id="XMLID_678_" /><circle - style="fill:#787878" - r="1.6" - cy="318.20001" - cx="516.70001" - class="st19" - id="XMLID_679_" /><circle - style="fill:#787878" - r="1.6" - cy="310.20001" - cx="509.70001" - class="st19" - id="XMLID_680_" /><circle - style="fill:#787878" - r="1.6" - cy="306.10001" - cx="509.70001" - class="st19" - id="XMLID_681_" /><ellipse - style="fill:#787878" - ry="1.1" - rx="0.89999998" - cy="295.39999" - cx="423.39999" - class="st19" - id="XMLID_682_" /><ellipse - style="fill:#787878" - ry="1.1" - rx="0.89999998" - cy="294.79999" - cx="425.10001" - class="st19" - id="XMLID_683_" /><ellipse - style="fill:#787878" - ry="1.1" - rx="0.89999998" - cy="304.79999" - cx="422" - class="st19" - id="XMLID_684_" /><ellipse - style="fill:#787878" - ry="1.1" - rx="0.89999998" - cy="302.20001" - cx="421.29999" - class="st19" - transform="matrix(-0.9989,-0.04745027,0.04745027,-0.9989,827.7614,624.0518)" - id="XMLID_685_" /><ellipse - style="fill:#787878" - ry="1.1" - rx="0.89999998" - cy="300" - cx="430.60001" - class="st19" - id="XMLID_686_" /><ellipse - style="fill:#787878" - ry="1.1" - rx="0.89999998" - cy="302.79999" - cx="431.70001" - class="st19" - id="XMLID_687_" /><ellipse - style="fill:#787878" - ry="1.1" - rx="0.89999998" - cy="310.39999" - cx="428.10001" - class="st19" - transform="matrix(-0.9413,0.3376,-0.3376,-0.9413,935.8943,458.1015)" - id="XMLID_688_" /><ellipse - style="fill:#787878" - ry="1.1" - rx="0.89999998" - cy="309.79999" - cx="429.89999" - class="st19" - transform="matrix(-0.9425,0.3341,-0.3341,-0.9425,938.5138,458.1071)" - id="XMLID_689_" /></g><g - 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" - class="st19" - id="XMLID_690_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 424,302.7 c 0,0 -0.6,1.1 -0.6,2.5 -0.1,1.2 0.4,3.1 1.4,3.6 1.4,0.7 3,-1.1 3.5,-2.8 0.4,-1.6 -0.1,-3.1 0,-3.2 0.1,-0.1 1,1.7 0.7,3.6 -0.4,2.1 -2,4.5 -3.8,4.1 -1.4,-0.4 -2.7,-2.1 -2.6,-4.4 0,-1.9 1.4,-3.4 1.4,-3.4 z" - class="st19" - id="XMLID_691_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 425.6,310.8 c 0.1,-0.1 16.8,24.3 42.6,26.4 27.5,2.1 49.2,-22.4 49.4,-22.2 0.2,0.2 -20.1,25.6 -48.7,23.5 -27.5,-2 -43.4,-27.6 -43.3,-27.7 z" - class="st19" - id="XMLID_692_" /><circle - style="fill:#787878" - r="1.5" - cy="307.10001" - cx="514.29999" - class="st19" - id="XMLID_693_" /><circle - style="fill:#787878" - r="1.5" - cy="307.10001" - cx="520.90002" - class="st19" - id="XMLID_694_" /><circle - style="fill:#787878" - r="1.5" - cy="303" - cx="517.59998" - class="st19" - id="XMLID_695_" /><circle - style="fill:#787878" - r="1.5" - cy="310.39999" - cx="518.09998" - class="st19" - id="XMLID_696_" /><ellipse - style="fill:#787878" - ry="1.2" - rx="1" - cy="302.5" - cx="428.20001" - class="st19" - transform="matrix(-0.981,0.1941,-0.1941,-0.981,907.0026,516.2271)" - id="XMLID_697_" /><ellipse - style="fill:#787878" - ry="1.2" - rx="1" - cy="302.60001" - cx="424" - class="st19" - transform="matrix(-0.971,-0.2392,0.2392,-0.971,763.2371,697.7639)" - id="XMLID_698_" /><ellipse - style="fill:#787878" - ry="0.89999998" - rx="1" - cy="299.79999" - cx="424.89999" - class="st19" - transform="matrix(-0.2055,-0.9787,0.9787,-0.2055,218.8256,777.2117)" - id="XMLID_699_" /><ellipse - style="fill:#787878" - ry="0.89999998" - rx="1" - cy="305.79999" - cx="426.29999" - class="st19" - transform="matrix(0.08246086,0.9966,-0.9966,0.08246086,695.8627,-144.3055)" - id="XMLID_700_" /></g><g - 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" - cx="514.29999" - class="st19" - id="XMLID_702_" /><circle - style="fill:#787878" - r="1.5" - cy="307.10001" - cx="520.90002" - class="st19" - id="XMLID_703_" /></g><g - inkscape:groupmode="layer" - id="XMLID_704_" - style="display:none"><ellipse - style="fill:#787878" - ry="1.2" - rx="1" - cy="302.5" - cx="428.20001" - class="st19" - transform="matrix(-0.981,0.1941,-0.1941,-0.981,907.0026,516.2271)" - id="XMLID_705_" /><ellipse - style="fill:#787878" - ry="1.2" - rx="1" - cy="302.60001" - cx="424" - class="st19" - transform="matrix(-0.971,-0.2392,0.2392,-0.971,763.2371,697.7639)" - id="XMLID_706_" /></g></g></g><g - 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" - class="st12" - id="XMLID_707_" /><path - style="fill:#f6e0e8" - 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="st3" - id="XMLID_708_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - d="m 482.2,303.6 c 1.2,-7.8 8.1,-18.9 27.5,-40.6 -13.1,19.6 -24.3,28.5 -27.5,40.6 z" - class="st12" - id="XMLID_709_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - d="m 478.5,308.7 c 2.4,-6.6 1.4,-18.3 -5.1,-43.4 2.5,20.8 7.6,32.5 5.1,43.4 z" - class="st12" - id="XMLID_710_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - 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 - 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_" /><path - transform="matrix(0.06481902,0.9979,-0.9979,0.06481902,821.1389,-200.3058)" - 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" - cx="528.79999" - class="st19" - id="XMLID_714_" /><circle - style="fill:#787878" - r="2.0999999" - cy="339.89999" - cx="529.20001" - class="st19" - id="XMLID_715_" /><circle - style="fill:#787878" - r="2.0999999" - cy="323.70001" - cx="519.09998" - class="st19" - id="XMLID_716_" /><circle - style="fill:#787878" - r="2.0999999" - cy="324.39999" - cx="513.09998" - class="st19" - id="XMLID_717_" /><circle - style="fill:#787878" - r="2.0999999" - cy="352.5" - cx="521.29999" - class="st19" - id="XMLID_718_" /><circle - style="fill:#787878" - r="2.0999999" - cy="352.5" - cx="515.20001" - class="st19" - id="XMLID_719_" /><circle - style="fill:#787878" - r="2.0999999" - cy="342" - cx="506.20001" - class="st19" - id="XMLID_720_" /><circle - style="fill:#787878" - r="2.0999999" - cy="336.70001" - cx="506.20001" - class="st19" - id="XMLID_721_" /><ellipse - style="fill:#787878" - ry="1.4" - rx="1.2" - cy="322.79999" - cx="393.5" - class="st19" - id="XMLID_722_" /><ellipse - style="fill:#787878" - ry="1.4" - rx="1.2" - cy="322" - cx="395.70001" - class="st19" - id="XMLID_723_" /><ellipse - style="fill:#787878" - ry="1.4" - rx="1.2" - cy="335.10001" - cx="391.70001" - class="st19" - id="XMLID_724_" /><ellipse - style="fill:#787878" - ry="1.4" - rx="1.2" - cy="331.60001" - cx="390.79999" - class="st19" - transform="matrix(-0.9989,-0.04745027,0.04745027,-0.9989,765.4359,681.4077)" - id="XMLID_725_" /><ellipse - style="fill:#787878" - ry="1.4" - rx="1.2" - cy="328.70001" - cx="402.89999" - class="st19" - id="XMLID_726_" /><ellipse - style="fill:#787878" - ry="1.4" - rx="1.2" - cy="332.5" - cx="404.29999" - class="st19" - id="XMLID_727_" /><ellipse - style="fill:#787878" - ry="1.4" - rx="1.2" - cy="342.39999" - cx="399.60001" - class="st19" - transform="matrix(-0.9413,0.3376,-0.3376,-0.9413,891.3522,529.8864)" - id="XMLID_728_" /><ellipse - style="fill:#787878" - ry="1.4" - rx="1.2" - cy="341.5" - cx="402" - class="st19" - transform="matrix(-0.9425,0.3341,-0.3341,-0.9425,894.9265,529.0276)" - id="XMLID_729_" /></g><g - 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" - class="st19" - id="XMLID_730_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 394.2,332.3 c 0,0 -0.8,1.4 -0.8,3.2 -0.2,1.7 0.5,4.1 1.8,4.8 1.8,1 3.9,-1.4 4.4,-3.6 0.5,-2.1 -0.2,-4.1 0,-4.2 0.2,-0.2 1.2,2.2 1,4.8 -0.4,2.8 -2.7,5.9 -5.1,5.3 -1.8,-0.4 -3.5,-2.8 -3.4,-5.8 0.4,-2.5 2.1,-4.5 2.1,-4.5 z" - class="st19" - id="XMLID_731_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 396.3,342.8 c 0.2,-0.2 21.9,31.6 55.5,34.4 35.8,2.8 64.2,-29.2 64.5,-29 0.3,0.3 -26.1,33.4 -63.5,30.7 C 417,376.4 396.2,343 396.3,342.8 Z" - class="st19" - id="XMLID_732_" /><circle - style="fill:#787878" - r="2" - cy="337.89999" - cx="512.09998" - class="st19" - id="XMLID_733_" /><circle - style="fill:#787878" - r="2" - cy="337.89999" - cx="520.79999" - class="st19" - id="XMLID_734_" /><circle - style="fill:#787878" - r="2" - cy="332.60001" - cx="516.5" - class="st19" - id="XMLID_735_" /><circle - style="fill:#787878" - r="2" - cy="342.29999" - cx="517" - class="st19" - id="XMLID_736_" /><ellipse - style="fill:#787878" - ry="1.5" - rx="1.2" - cy="332.10001" - cx="399.79999" - class="st19" - transform="matrix(-0.981,0.1941,-0.1941,-0.981,856.431,580.3391)" - id="XMLID_737_" /><ellipse - style="fill:#787878" - ry="1.5" - rx="1.2" - cy="332.20001" - cx="394.20001" - class="st19" - transform="matrix(-0.971,-0.2392,0.2392,-0.971,697.4272,749.1066)" - id="XMLID_738_" /><circle - style="fill:#787878" - r="1.2" - cy="328.60001" - cx="395.39999" - class="st19" - transform="matrix(-0.2055,-0.9787,0.9787,-0.2055,155.0886,783.064)" - id="XMLID_739_" /><circle - style="fill:#787878" - r="1.2" - cy="336.20001" - cx="397.29999" - class="st19" - transform="matrix(0.08246086,0.9966,-0.9966,0.08246086,699.5681,-87.4572)" - id="XMLID_740_" /></g><g - inkscape:groupmode="layer" - id="Boob_piercing_5_" - style="display:inline"><g - inkscape:groupmode="layer" - id="XMLID_741_"><circle - style="fill:#787878" - r="2" - cy="337.89999" - cx="512.09998" - class="st19" - id="XMLID_742_" /><circle - style="fill:#787878" - r="2" - cy="337.89999" - cx="520.79999" - class="st19" - id="XMLID_743_" /></g><g - inkscape:groupmode="layer" - id="XMLID_744_"><ellipse - style="fill:#787878" - ry="1.5" - rx="1.2" - cy="332.10001" - cx="399.79999" - class="st19" - transform="matrix(-0.981,0.1941,-0.1941,-0.981,856.431,580.3391)" - id="XMLID_745_" /><ellipse - style="fill:#787878" - ry="1.5" - rx="1.2" - cy="332.20001" - cx="394.20001" - class="st19" - transform="matrix(-0.971,-0.2392,0.2392,-0.971,697.4272,749.1066)" - id="XMLID_746_" /></g></g></g><g - 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" - class="st12" - id="XMLID_747_" /><path - style="fill:#f6e0e8" - 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="st3" - id="XMLID_748_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - d="m 471.9,334.6 c 1.5,-10.6 10.9,-25.4 37.1,-54.6 -17.8,26.4 -32.8,38.4 -37.1,54.6 z" - class="st12" - id="XMLID_749_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - d="m 467,341.4 c 3.2,-8.8 1.9,-24.6 -6.8,-58.3 3.2,28 10.2,43.8 6.8,58.3 z" - class="st12" - id="XMLID_750_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - 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_" /><path - transform="matrix(0.06481902,0.9979,-0.9979,0.06481902,865.7677,-162.0763)" - 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" - cx="534.5" - class="st19" - id="XMLID_754_" /><circle - style="fill:#787878" - r="2.8" - cy="383.39999" - cx="535.09998" - class="st19" - id="XMLID_755_" /><circle - style="fill:#787878" - r="2.8" - cy="361.5" - cx="521.5" - class="st19" - id="XMLID_756_" /><circle - style="fill:#787878" - r="2.8" - cy="362.5" - cx="513.5" - class="st19" - id="XMLID_757_" /><circle - style="fill:#787878" - r="2.8" - cy="400.29999" - cx="524.40002" - class="st19" - id="XMLID_758_" /><circle - style="fill:#787878" - r="2.8" - cy="400.29999" - cx="516.29999" - class="st19" - id="XMLID_759_" /><circle - style="fill:#787878" - r="2.8" - cy="386.20001" - cx="504" - class="st19" - id="XMLID_760_" /><circle - style="fill:#787878" - r="2.8" - cy="379" - cx="504" - class="st19" - id="XMLID_761_" /><ellipse - style="fill:#787878" - ry="1.9" - rx="1.5" - cy="360.5" - cx="352.70001" - class="st19" - id="XMLID_762_" /><ellipse - style="fill:#787878" - ry="1.9" - rx="1.5" - cy="359.29999" - cx="355.60001" - class="st19" - id="XMLID_763_" /><ellipse - style="fill:#787878" - ry="1.9" - rx="1.5" - cy="377" - cx="350.20001" - class="st19" - id="XMLID_764_" /><ellipse - style="fill:#787878" - ry="1.9" - rx="1.5" - cy="372.29999" - cx="349" - class="st19" - transform="matrix(-0.9989,-0.04745027,0.04745027,-0.9989,679.8478,760.7689)" - id="XMLID_765_" /><ellipse - style="fill:#787878" - ry="1.9" - rx="1.5" - cy="368.39999" - cx="365.20001" - class="st19" - id="XMLID_766_" /><ellipse - style="fill:#787878" - ry="1.9" - rx="1.5" - cy="373.39999" - cx="367.10001" - class="st19" - id="XMLID_767_" /><ellipse - style="fill:#787878" - ry="1.9" - rx="1.5" - cy="386.79999" - cx="360.89999" - class="st19" - transform="matrix(-0.9413,0.3376,-0.3376,-0.9413,831.1002,629.0543)" - id="XMLID_768_" /><ellipse - style="fill:#787878" - ry="1.9" - rx="1.5" - cy="385.60001" - cx="364" - class="st19" - transform="matrix(-0.9425,0.3341,-0.3341,-0.9425,835.9724,627.3287)" - id="XMLID_769_" /></g><g - 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" - class="st19" - id="XMLID_770_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 353.6,373.3 c 0,0 -1.2,1.9 -1.2,4.4 -0.2,2.2 0.7,5.4 2.5,6.4 2.5,1.3 5.2,-1.9 6,-4.9 0.7,-2.8 -0.2,-5.4 0,-5.6 0.2,-0.2 1.7,3 1.3,6.4 -0.5,3.7 -3.6,7.9 -6.8,7.1 -2.5,-0.5 -4.7,-3.7 -4.5,-7.7 0.5,-3.6 2.7,-6.1 2.7,-6.1 z" - class="st19" - id="XMLID_771_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 356.4,387.3 c 0.2,-0.2 29.5,42.5 74.6,46.3 48.2,3.7 86.4,-39.3 86.7,-38.9 0.4,0.4 -35.2,45 -85.4,41.4 -48,-3.7 -76,-48.5 -75.9,-48.8 z" - class="st19" - id="XMLID_772_" /><circle - style="fill:#787878" - r="2.7" - cy="380.70001" - cx="512.09998" - class="st19" - id="XMLID_773_" /><circle - style="fill:#787878" - r="2.7" - cy="380.70001" - cx="523.90002" - class="st19" - id="XMLID_774_" /><circle - style="fill:#787878" - r="2.7" - cy="373.60001" - cx="518" - class="st19" - id="XMLID_775_" /><circle - style="fill:#787878" - r="2.7" - cy="386.60001" - cx="518.70001" - class="st19" - id="XMLID_776_" /><ellipse - style="fill:#787878" - ry="2" - rx="1.7" - cy="373" - cx="361" - class="st19" - transform="matrix(-0.981,0.1941,-0.1941,-0.981,787.6197,668.8575)" - id="XMLID_777_" /><ellipse - style="fill:#787878" - ry="2" - rx="1.7" - cy="373.10001" - cx="353.60001" - class="st19" - transform="matrix(-0.971,-0.2392,0.2392,-0.971,607.6005,819.9565)" - id="XMLID_778_" /><ellipse - style="fill:#787878" - ry="1.5" - rx="1.7" - cy="368.10001" - cx="355.10001" - class="st19" - transform="matrix(-0.2055,-0.9787,0.9787,-0.2055,67.8569,791.334)" - id="XMLID_779_" /><ellipse - style="fill:#787878" - ry="1.5" - rx="1.7" - cy="378.5" - cx="357.79999" - class="st19" - transform="matrix(0.08246086,0.9966,-0.9966,0.08246086,705.519,-9.3184)" - id="XMLID_780_" /></g><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" - cy="380.70001" - cx="512.09998" - class="st19" - id="XMLID_782_" /><circle - style="fill:#787878" - r="2.7" - cy="380.70001" - cx="523.90002" - class="st19" - id="XMLID_783_" /></g><g - inkscape:groupmode="layer" - id="XMLID_784_"><ellipse - style="fill:#787878" - ry="2" - rx="1.7" - cy="373" - cx="361" - class="st19" - transform="matrix(-0.981,0.1941,-0.1941,-0.981,787.6197,668.8575)" - id="XMLID_785_" /><ellipse - style="fill:#787878" - ry="2" - rx="1.7" - cy="373.10001" - cx="353.60001" - class="st19" - transform="matrix(-0.971,-0.2392,0.2392,-0.971,607.6005,819.9565)" - id="XMLID_786_" /></g></g></g><g - 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" - class="st12" - id="XMLID_787_" /><path - style="fill:#f6e0e8" - 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="st3" - id="XMLID_788_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - d="m 458.1,372.8 c 2,-13.9 14.4,-33.5 48.8,-71.9 -23.3,34.7 -43.1,50.6 -48.8,71.9 z" - class="st12" - id="XMLID_789_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - d="m 451.7,381.7 c 4.2,-11.6 2.5,-32.4 -8.9,-76.8 4.2,36.9 13.3,57.7 8.9,76.8 z" - class="st12" - id="XMLID_790_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - 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 - 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_" /><path - transform="matrix(0.06481902,0.9979,-0.9979,0.06481902,919.7263,-113.9278)" - 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" - cx="540.59998" - class="st19" - id="XMLID_794_" /><circle - style="fill:#787878" - r="3.7" - cy="437.10001" - cx="541.40002" - class="st19" - id="XMLID_795_" /><circle - style="fill:#787878" - r="3.7" - cy="408.29999" - cx="523.5" - class="st19" - id="XMLID_796_" /><circle - style="fill:#787878" - r="3.7" - cy="409.60001" - cx="512.90002" - class="st19" - id="XMLID_797_" /><circle - style="fill:#787878" - r="3.7" - cy="459.29999" - cx="527.29999" - class="st19" - id="XMLID_798_" /><circle - style="fill:#787878" - r="3.7" - cy="459.29999" - cx="516.59998" - class="st19" - id="XMLID_799_" /><circle - style="fill:#787878" - r="3.7" - cy="440.79999" - cx="500.5" - class="st19" - id="XMLID_800_" /><circle - style="fill:#787878" - r="3.7" - cy="431.29999" - cx="500.5" - class="st19" - id="XMLID_801_" /><ellipse - style="fill:#787878" - ry="2.5" - rx="2" - cy="406.89999" - cx="301.10001" - class="st19" - id="XMLID_802_" /><ellipse - style="fill:#787878" - ry="2.5" - rx="2" - cy="405.29999" - cx="305" - class="st19" - id="XMLID_803_" /><ellipse - style="fill:#787878" - ry="2.5" - rx="2" - cy="428.60001" - cx="297.89999" - class="st19" - id="XMLID_804_" /><ellipse - style="fill:#787878" - ry="2.5" - rx="2" - cy="422.5" - cx="296.20001" - class="st19" - transform="matrix(-0.9989,-0.04745027,0.04745027,-0.9989,572.0126,858.504)" - id="XMLID_805_" /><ellipse - style="fill:#787878" - ry="2.5" - rx="2" - cy="417.29999" - cx="317.70001" - class="st19" - id="XMLID_806_" /><ellipse - style="fill:#787878" - ry="2.5" - rx="2" - cy="424" - cx="320.10001" - class="st19" - id="XMLID_807_" /><ellipse - style="fill:#787878" - ry="2.5" - rx="2" - cy="441.5" - cx="311.89999" - class="st19" - transform="matrix(-0.9413,0.3376,-0.3376,-0.9413,754.4891,751.8561)" - id="XMLID_808_" /><ellipse - style="fill:#787878" - ry="2.5" - rx="2" - cy="439.89999" - cx="316.10001" - class="st19" - transform="matrix(-0.9425,0.3341,-0.3341,-0.9425,760.9403,748.9292)" - id="XMLID_809_" /></g><g - 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" - class="st19" - id="XMLID_810_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 302.3,423.7 c 0,0 -1.5,2.5 -1.5,5.7 -0.2,2.9 0.9,7.1 3.3,8.4 3.3,1.8 6.9,-2.5 8,-6.4 0.9,-3.7 -0.2,-7.1 0,-7.4 0.2,-0.3 2.2,4 1.8,8.4 -0.7,4.9 -4.7,10.4 -8.9,9.4 -3.3,-0.7 -6.2,-4.9 -6,-10.2 0.4,-4.5 3.3,-7.9 3.3,-7.9 z" - class="st19" - id="XMLID_811_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 306.1,442.2 c 0.2,-0.2 38.9,55.9 98.3,61 63.4,4.9 113.8,-51.7 114.2,-51.3 0.5,0.5 -46.3,59.2 -112.5,54.5 -63.4,-4.7 -100.3,-63.8 -100,-64.2 z" - class="st19" - id="XMLID_812_" /><circle - style="fill:#787878" - r="3.5" - cy="433.60001" - cx="511.10001" - class="st19" - id="XMLID_813_" /><circle - style="fill:#787878" - r="3.5" - cy="433.60001" - cx="526.59998" - class="st19" - id="XMLID_814_" /><circle - style="fill:#787878" - r="3.5" - cy="424.20001" - cx="518.79999" - class="st19" - id="XMLID_815_" /><circle - style="fill:#787878" - r="3.5" - cy="441.29999" - cx="519.79999" - class="st19" - id="XMLID_816_" /><ellipse - style="fill:#787878" - ry="2.7" - rx="2.2" - cy="423.39999" - cx="312.10001" - class="st19" - transform="matrix(-0.981,0.1941,-0.1941,-0.981,700.4802,778.1339)" - id="XMLID_817_" /><ellipse - style="fill:#787878" - ry="2.7" - rx="2.2" - cy="423.5" - cx="302.29999" - class="st19" - transform="matrix(-0.971,-0.2392,0.2392,-0.971,494.4378,907.0223)" - id="XMLID_818_" /><ellipse - style="fill:#787878" - ry="2" - rx="2.2" - cy="416.89999" - cx="304.39999" - class="st19" - transform="matrix(-0.2055,-0.9787,0.9787,-0.2055,-41.1507,800.4734)" - id="XMLID_819_" /><ellipse - style="fill:#787878" - ry="2" - rx="2.2" - cy="430.60001" - cx="307.89999" - class="st19" - transform="matrix(0.08246086,0.9966,-0.9966,0.08246086,711.6222,88.2673)" - id="XMLID_820_" /></g><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" - cy="433.60001" - cx="511.10001" - class="st19" - id="XMLID_822_" /><circle - style="fill:#787878" - r="3.5" - cy="433.60001" - cx="526.59998" - class="st19" - id="XMLID_823_" /></g><g - inkscape:groupmode="layer" - id="XMLID_824_"><ellipse - style="fill:#787878" - ry="2.7" - rx="2.2" - cy="423.39999" - cx="312.10001" - class="st19" - transform="matrix(-0.981,0.1941,-0.1941,-0.981,700.4802,778.1339)" - id="XMLID_825_" /><ellipse - style="fill:#787878" - ry="2.7" - rx="2.2" - cy="423.5" - cx="302.29999" - class="st19" - transform="matrix(-0.971,-0.2392,0.2392,-0.971,494.4378,907.0223)" - id="XMLID_826_" /></g></g></g><g - 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" - class="st12" - id="XMLID_897_" /><path - style="fill:#f6e0e8" - 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="st3" - id="XMLID_896_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - d="m 448.6,407.3 c 2.4,-17 17.5,-40.8 59.4,-87.5 -28.4,42.2 -52.4,61.6 -59.4,87.5 z" - class="st12" - id="XMLID_895_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - d="m 440.7,418.2 c 5.1,-14.1 3,-39.5 -10.8,-93.5 5.1,44.9 16.2,70.2 10.8,93.5 z" - class="st12" - id="XMLID_894_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - 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_" /><path - transform="matrix(0.06481902,0.9979,-0.9979,0.06481902,971.2539,-73.2956)" - 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" - cx="549.09998" - class="st19" - id="XMLID_834_" /><circle - style="fill:#787878" - r="4.5999999" - cy="485.60001" - cx="550.09998" - class="st19" - id="XMLID_835_" /><circle - style="fill:#787878" - r="4.5999999" - cy="450.5" - cx="528.20001" - class="st19" - id="XMLID_836_" /><circle - style="fill:#787878" - r="4.5999999" - cy="452.10001" - cx="515.29999" - class="st19" - id="XMLID_837_" /><circle - style="fill:#787878" - r="4.5999999" - cy="512.70001" - cx="532.79999" - class="st19" - id="XMLID_838_" /><circle - style="fill:#787878" - r="4.5999999" - cy="512.70001" - cx="519.79999" - class="st19" - id="XMLID_839_" /><circle - style="fill:#787878" - r="4.5999999" - cy="490.20001" - cx="500.20001" - class="st19" - id="XMLID_840_" /><circle - style="fill:#787878" - r="4.5999999" - cy="478.60001" - cx="500.20001" - class="st19" - id="XMLID_841_" /><ellipse - style="fill:#787878" - ry="3" - rx="2.4000001" - cy="448.79999" - cx="257.39999" - class="st19" - id="XMLID_842_" /><ellipse - style="fill:#787878" - ry="3" - rx="2.4000001" - cy="447" - cx="262.10001" - class="st19" - id="XMLID_843_" /><ellipse - style="fill:#787878" - ry="3" - rx="2.4000001" - cy="475.29999" - cx="253.39999" - class="st19" - id="XMLID_844_" /><ellipse - style="fill:#787878" - ry="3" - rx="2.4000001" - cy="467.79999" - cx="251.39999" - class="st19" - transform="matrix(-0.9989,-0.04745027,0.04745027,-0.9989,480.3226,947.0313)" - id="XMLID_845_" /><ellipse - style="fill:#787878" - ry="3" - rx="2.4000001" - cy="461.5" - cx="277.5" - class="st19" - id="XMLID_846_" /><ellipse - style="fill:#787878" - ry="3" - rx="2.4000001" - cy="469.60001" - cx="280.5" - class="st19" - id="XMLID_847_" /><ellipse - style="fill:#787878" - ry="3" - rx="2.4000001" - cy="491" - cx="270.5" - class="st19" - transform="matrix(-0.9413,0.3376,-0.3376,-0.9413,690.8691,861.9293)" - id="XMLID_848_" /><ellipse - style="fill:#787878" - ry="3" - rx="2.4000001" - cy="489.10001" - cx="275.60001" - class="st19" - transform="matrix(-0.9425,0.3341,-0.3341,-0.9425,698.752,857.9261)" - id="XMLID_849_" /></g><g - 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" - class="st19" - id="XMLID_850_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 258.9,469.3 c 0,0 -1.9,3 -1.9,7 -0.3,3.6 1.1,8.7 4,10.3 4,2.1 8.4,-3 9.7,-7.8 1.1,-4.6 -0.3,-8.7 0,-9 0.3,-0.3 2.7,4.8 2.1,10.3 -0.9,6 -5.7,12.7 -10.8,11.4 -4,-0.9 -7.6,-6 -7.3,-12.4 0.6,-5.6 4.2,-9.8 4.2,-9.8 z" - class="st19" - id="XMLID_851_" /><path - style="fill:#787878" - inkscape:connector-curvature="0" - d="m 263.4,491.9 c 0.3,-0.3 47.3,68.1 119.7,74.3 77.3,6 138.5,-63 139.1,-62.4 0.6,0.6 -56.4,72.1 -137,66.4 C 308,564.3 263.1,492.3 263.4,491.9 Z" - class="st19" - id="XMLID_852_" /><circle - style="fill:#787878" - r="4.3000002" - cy="481.29999" - cx="513.09998" - class="st19" - id="XMLID_853_" /><circle - style="fill:#787878" - r="4.3000002" - cy="481.29999" - cx="532" - class="st19" - id="XMLID_854_" /><circle - style="fill:#787878" - r="4.3000002" - cy="469.89999" - cx="522.5" - class="st19" - id="XMLID_855_" /><circle - style="fill:#787878" - r="4.3000002" - cy="490.70001" - cx="523.70001" - class="st19" - id="XMLID_856_" /><ellipse - style="fill:#787878" - ry="3.3" - rx="2.7" - cy="468.89999" - cx="270.79999" - class="st19" - transform="matrix(-0.981,0.1941,-0.1941,-0.981,627.4544,876.3939)" - id="XMLID_857_" /><ellipse - style="fill:#787878" - ry="3.3" - rx="2.7" - cy="469.10001" - cx="258.79999" - class="st19" - transform="matrix(-0.971,-0.2392,0.2392,-0.971,397.8483,986.4601)" - id="XMLID_858_" /><ellipse - style="fill:#787878" - ry="2.4000001" - rx="2.7" - cy="461.10001" - cx="261.29999" - class="st19" - transform="matrix(-0.2055,-0.9787,0.9787,-0.2055,-136.2163,811.5947)" - id="XMLID_859_" /><ellipse - style="fill:#787878" - ry="2.4000001" - rx="2.7" - cy="477.70001" - cx="265.60001" - class="st19" - transform="matrix(0.08246086,0.9966,-0.9966,0.08246086,719.8191,173.6128)" - id="XMLID_860_" /></g><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" - cy="481.29999" - cx="513.09998" - class="st19" - id="XMLID_862_" /><circle - style="fill:#787878" - r="4.3000002" - cy="481.29999" - cx="532" - class="st19" - id="XMLID_863_" /></g><g - inkscape:groupmode="layer" - id="XMLID_864_"><ellipse - style="fill:#787878" - ry="3.3" - rx="2.7" - cy="468.89999" - cx="270.79999" - class="st19" - transform="matrix(-0.981,0.1941,-0.1941,-0.981,627.4544,876.3939)" - id="XMLID_865_" /><ellipse - style="fill:#787878" - ry="3.3" - rx="2.7" - cy="469.10001" - cx="258.79999" - class="st19" - transform="matrix(-0.971,-0.2392,0.2392,-0.971,397.8483,986.4601)" - id="XMLID_866_" /></g></g></g></g><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" - d="m 510.2,215.4 c -18,-0.1 -50.2,31.3 -60.2,39.6 -17.2,14.5 -22.3,33.8 -9.5,49.3 8,9.8 41.4,7.6 49.9,-10.8 10.6,32.4 47.6,29.1 62.6,9.5 10.8,-14.2 8,-39.5 -3.8,-48.5 -15.8,-12 -21.4,-39 -39,-39.1" - class="st4" - id="XMLID_939_" /></g><path - style="fill:#515351" - inkscape:connector-curvature="0" - 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 - 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" - class="st12" - id="XMLID_511_" /><path - style="fill:#010101" - inkscape:connector-curvature="0" - 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 - inkscape:groupmode="layer" - id="Penis" - style="display:inline"><g - inkscape:groupmode="layer" - id="Ball_4"><path - style="fill:#010101" - inkscape:connector-curvature="0" - d="m 441.1,480.5 c 3.3,8.9 7.4,10.4 10.4,11.3 6.6,2 10.1,-0.6 21,2.7 5,1.5 8.3,5.6 16.6,5.6 1.5,0 13.3,2.3 22.7,-7 5.9,-5.7 5.6,-14.1 5.4,-26.3 -0.2,-9.1 -2,-15.1 -3.3,-18.6 -2.3,-6.2 -3.6,-9.8 -7.1,-12.1 -7.7,-5 -19.3,0.5 -25.2,3.3 -6.3,3 -11.6,-1.4 -19,5.4 -10.8,10.2 -25.4,25 -21.5,35.7 z" - class="st12" - id="XMLID_868_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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" - d="m 449.9,468.6 c 2.5,6.8 5.7,8 8,8.7 5.1,1.5 7.8,-0.5 16.1,2.1 3.8,1.2 6.4,4.3 12.7,4.3 1.2,0 10.2,1.7 17.4,-5.3 4.5,-4.4 4.3,-10.8 4.2,-20.2 -0.1,-7 -1.5,-11.6 -2.5,-14.3 -1.7,-4.8 -2.8,-7.5 -5.4,-9.3 -5.9,-3.8 -14.8,0.3 -19.4,2.5 -4.9,2.3 -8.9,-1 -14.6,4.2 -8.3,7.7 -19.5,19 -16.5,27.3 z" - class="st12" - id="XMLID_870_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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" - d="m 456.7,459.4 c 2,5.2 4.4,6.1 6.1,6.7 3.9,1.2 6,-0.4 12.4,1.6 2.9,0.9 4.9,3.3 9.8,3.3 0.9,0 7.8,1.3 13.3,-4.1 3.5,-3.4 3.3,-8.3 3.2,-15.5 -0.1,-5.3 -1.2,-8.9 -2,-10.9 -1.3,-3.6 -2.1,-5.8 -4.2,-7.1 -4.5,-2.9 -11.4,0.3 -14.8,2 -3.7,1.8 -6.8,-0.8 -11.2,3.2 -6.3,5.8 -14.9,14.5 -12.6,20.8 z" - class="st12" - id="XMLID_872_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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" - d="m 463.7,452.6 c 1.2,3.4 2.8,3.9 3.9,4.3 2.5,0.7 3.8,-0.3 7.9,1.1 1.9,0.5 3.1,2.1 6.3,2.1 0.6,0 5,0.8 8.5,-2.7 2.2,-2.2 2.1,-5.3 2,-9.9 -0.1,-3.4 -0.8,-5.7 -1.2,-7 -0.9,-2.3 -1.3,-3.6 -2.7,-4.5 -2.9,-1.9 -7.3,0.2 -9.5,1.2 -2.4,1.2 -4.7,-0.7 -7.5,1.8 -4,3.8 -9.1,9.6 -7.7,13.6 z" - class="st12" - id="XMLID_874_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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" - d="m 472.8,446.8 c 0.7,2 1.6,2.3 2.3,2.5 1.4,0.4 2.2,-0.1 4.6,0.6 1.1,0.4 1.8,1.2 3.6,1.2 0.4,0 2.9,0.4 5,-1.5 1.3,-1.2 1.2,-3 1.2,-5.7 0,-2 -0.4,-3.3 -0.7,-4.1 -0.5,-1.3 -0.8,-2.1 -1.5,-2.6 -1.7,-1.1 -4.2,0.1 -5.5,0.7 -1.4,0.7 -3.1,-0.2 -4.7,1.3 -2.6,2.1 -5.2,5.2 -4.3,7.6 z" - class="st12" - id="XMLID_876_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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" - d="m 377.7,353.4 c 1.4,0.9 1.4,3.5 1.4,3.9 0,7.5 14.3,33.3 27.4,46 39.3,38.2 78.2,48 74.4,30.6 -0.5,-2.6 3.3,-4.1 3.8,-5.6 5.1,-16.4 -19.5,-41.2 -46.7,-63.9 -22.8,-19 -23.3,-18.1 -28.6,-21.5 -0.8,-0.5 -2,-1.3 -2.4,-3.8 -0.4,-2 1.3,-4.2 1.4,-5.8 0.9,-5.9 -7.2,-10.4 -14.7,-14.2 -5.8,-2.9 -17.3,-6.4 -23.6,-1.4 -13.5,10.8 -2.9,39.9 3,36.6 1.3,-0.6 3.1,-1.9 4.6,-0.9 z" - class="st12" - id="XMLID_878_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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" - d="m 396.6,366.1 c 1.2,0.8 1.2,2.9 1.2,3.2 0,6.2 11.8,27.5 22.6,38 32.5,31.5 64.6,39.6 61.4,25.2 -0.4,-2.2 2.7,-3.4 3.1,-4.7 4.2,-13.5 -16.1,-34 -38.6,-52.7 -18.8,-15.7 -19.3,-14.9 -23.6,-17.8 -0.6,-0.4 -1.6,-1.1 -1.9,-3.1 -0.3,-1.6 1.1,-3.5 1.2,-4.8 0.8,-4.9 -6,-8.6 -12.1,-11.7 -4.8,-2.4 -14.3,-5.3 -19.5,-1.2 -11.2,8.9 -2.4,32.9 2.5,30.2 1,-0.3 2.6,-1.4 3.7,-0.6 z" - class="st12" - id="XMLID_880_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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" - d="m 413.3,379.4 c 1,0.6 1,2.4 1,2.7 0,5.1 9.7,22.6 18.6,31.2 26.7,25.9 53,32.5 50.4,20.7 -0.4,-1.8 2.2,-2.8 2.6,-3.8 3.5,-11.1 -13.2,-27.9 -31.6,-43.3 -15.5,-12.9 -15.8,-12.3 -19.4,-14.6 -0.5,-0.4 -1.3,-0.9 -1.6,-2.6 -0.3,-1.3 0.9,-2.8 1,-3.9 0.6,-4 -4.9,-7 -10,-9.6 -3.9,-2 -11.7,-4.4 -16,-1 -9.2,7.3 -2,27 2,24.8 0.8,-0.4 2,-1.3 3,-0.6 z" - class="st12" - id="XMLID_882_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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" - d="m 430.3,392.5 c 0.7,0.5 0.8,1.9 0.8,2.1 0,4 7.6,17.9 14.7,24.6 21.1,20.4 41.9,25.7 39.8,16.4 -0.3,-1.4 1.8,-2.1 2,-3 2.7,-8.8 -10.5,-22 -25,-34.2 -12.3,-10.2 -12.5,-9.7 -15.4,-11.6 -0.4,-0.3 -1,-0.7 -1.2,-2 -0.2,-1.1 0.7,-2.2 0.8,-3.1 0.4,-3.2 -3.9,-5.5 -7.9,-7.6 -3.1,-1.6 -9.2,-3.5 -12.6,-0.8 -7.2,5.8 -1.6,21.3 1.6,19.6 0.6,-0.3 1.6,-1 2.4,-0.4 z" - class="st12" - id="XMLID_884_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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" - d="m 446.2,405.6 c 0.5,0.4 0.5,1.3 0.5,1.5 0,2.8 5.5,12.7 10.5,17.6 15,14.6 29.9,18.3 28.4,11.7 -0.2,-1 1.2,-1.5 1.4,-2.1 2,-6.3 -7.5,-15.7 -17.9,-24.4 -8.7,-7.3 -9,-6.9 -10.9,-8.3 -0.3,-0.2 -0.7,-0.5 -0.9,-1.5 -0.2,-0.7 0.4,-1.6 0.5,-2.2 0.4,-2.3 -2.8,-4 -5.6,-5.4 -2.2,-1.2 -6.7,-2.5 -9.1,-0.5 -5.2,4.1 -1.2,15.3 1.2,14 0.6,-0.2 1.3,-0.7 1.9,-0.4 z" - class="st12" - id="XMLID_886_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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" - d="m 462.5,418.4 c 0.4,0.3 0.4,0.8 0.4,1 0,1.8 2.4,7.6 6.3,11.2 9.7,8.8 18.8,11.3 17.9,7.1 -0.2,-0.6 0.8,-1 0.9,-1.3 0.8,-3 -4.1,-10 -10.7,-15.3 -5.5,-4.4 -6,-4.3 -7.3,-5.1 -0.2,-0.1 -0.4,-0.3 -0.5,-0.9 -0.1,-0.4 0.3,-1 0.4,-1.3 0.2,-1.4 -1.8,-2.5 -3.6,-3.4 -1.4,-0.7 -4.2,-1.5 -5.6,-0.4 -3.2,2.6 -1.1,9.7 0.7,8.7 0.3,-0.2 0.7,-0.6 1.1,-0.3 z" - class="st12" - id="XMLID_888_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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" - d="m 472.9,426.4 c 0.2,0.1 0.2,0.4 0.2,0.5 0,1 1.5,4.4 3.3,6 4.8,4.2 10.2,6.1 9.7,3.9 -0.1,-0.4 0.4,-0.5 0.4,-0.7 0.6,-2.1 -2.1,-5.3 -5.6,-8.3 -2.9,-2.5 -3.4,-2.2 -4,-2.7 -0.1,-0.1 -0.3,-0.2 -0.3,-0.5 -0.1,-0.3 0.2,-0.5 0.2,-0.7 0.1,-0.8 -0.9,-1.3 -1.9,-1.8 -0.7,-0.4 -2.2,-0.8 -3,-0.2 -1.7,1.3 -0.7,5.3 0.4,4.7 0.2,-0.1 0.4,-0.3 0.6,-0.2 z" - class="st12" - id="XMLID_890_" /><path - style="fill:#f6e0e8" - inkscape:connector-curvature="0" - 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 - 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" - class="st12" - id="Head_Shadow" /><path - style="fill:#f6e0e8" - 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><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" - class="st22" - id="XMLID_867_" /><polygon - style="fill:#070505" - points="541.3,165 489,163.9 486.4,157.1 545.1,157.1 " - class="st23" - id="XMLID_892_" /><ellipse - style="fill:#bf2126" - ry="8.6999998" - rx="7.5999999" - cy="161.10001" - cx="502.79999" - class="st24" - 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" - class="st5" - id="Hair_Blonde" /><path - style="fill:#8e4f21" - 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" - class="st6" - id="Hair_Brown" /><path - style="fill:#bc2027" - 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" - class="st7" - id="Hair_Red" /><path - style="fill:#60bb46" - 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" - class="st8" - id="Hair_Green" /><path - style="fill:#4686c6" - 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" - class="st9" - id="Hair_Blue" /><path - style="fill:#d28dbd" - 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" - class="st10" - id="Hair_Pink" /><path - style="fill:#3f403f" - 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" - class="st11" - id="Hair_Black" /></g></svg> \ No newline at end of file