1
0
Fork 0

Merge branch 'freesewing:develop' into onyx

This commit is contained in:
Thrunic 2023-10-15 19:44:00 -04:00 committed by GitHub
commit a44266bb6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
161 changed files with 5581 additions and 530 deletions

View file

@ -76,6 +76,12 @@
- Rephrased flag message when expand is off to avoid confusion about included seam allowance. Fixes
### plugintest
#### Fixed
- Remove names from old plugins from list option
### sandy
#### Changed
@ -88,6 +94,12 @@
- Rephrased flag message when expand is off to avoid confusion about included seam allowance. Fixes
### simon
#### Fixed
- Replaced all instances of 'seperate' with 'separate' in option names
### sven
#### Changed
@ -106,8 +118,18 @@
- Added support for notes in flags
### plugin-bin-pack
#### Added
- First release of the plugin providing the default packing implementation
### core
#### Added
- Allow plugins to provide their own packing implementation
#### Fixed
- Fix order in mergeOptions method so user settings take precendence over defaults

View file

@ -1,4 +1,10 @@
Unreleased:
Added:
core:
- Allow plugins to provide their own packing implementation
plugin-bin-pack:
- First release of the plugin providing the default packing implementation
Changed:
aaron:
- Rephrased flag message when expand is off to avoid confusion about included seam allowance. Fixes #5057
@ -40,6 +46,10 @@ Unreleased:
core:
- Fix order in mergeOptions method so user settings take precendence over defaults
- Fix upward snap for snapped percentage option when snap is a simple number
simon:
- Replaced all instances of 'seperate' with 'separate' in option names
plugintest:
- Remove names from old plugins from list option
3.0.0:
date: 2022-09-30

View file

@ -49,7 +49,6 @@ core:
_:
'@freesewing/core-plugins': *freesewing
'bezier-js': '6.1.4'
'bin-pack-with-constraints': '1.0.1'
'hooks': '0.3.2'
'lodash.get': &_get '4.4.2'
'lodash.set': &_set '4.3.2'

View file

@ -589,13 +589,13 @@
"plugintest": {
"code": "Joost De Cock",
"description": "A FreeSewing pattern to test (y)our plugins",
"lab": false,
"lab": true,
"org": false
},
"rendertest": {
"code": "Joost De Cock",
"description": "A FreeSewing pattern to test (y)our render engine our CSS",
"lab": false,
"lab": true,
"org": false
},
"sandy": {
@ -689,6 +689,8 @@
"code": "Wouter Van Wageningen",
"design": "Wouter Van Wageningen",
"difficulty": 4,
"lab": true,
"org": true,
"tags": ["accessories", "toys"],
"techniques": ["curvedSeam", "precision"]
},

View file

@ -1,6 +1,7 @@
{
"core-plugins": "An umbrella package of essential plugins that are bundled with FreeSewing's core library",
"plugin-annotations": "A FreeSewing plugin that provides pattern annotations",
"plugin-bin-pack": "A FreeSewing plugin that adds a bin-pack algorithm to the core library",
"plugin-bust": "A FreeSewing plugin that helps with bust-adjusting menswear patterns",
"plugin-flip": "A FreeSewing plugin to flip parts horizontally",
"plugin-gore": "A FreeSewing plugin to generate gores for a semi-sphere or dome",

View file

@ -5,6 +5,7 @@
//}}{{=$$ $$=}}
import { Design } from '@freesewing/core'
import { i18n } from '../i18n/index.mjs'
import { data } from '../data.mjs'
// Parts
import { box } from './box.mjs'
@ -16,4 +17,4 @@ const $$capitalized_name$$ = new Design({
})
// Named exports
export { box, $$capitalized_name$$ }
export { box, i18n, $$capitalized_name$$ }

View file

@ -16,12 +16,12 @@ function draftCharlieFlyExtension({ points, paths, Path, macro, store, sa, part
// Paths
paths.saBase = new Path()
.move(points.flyCorner)
.line(points.flyBottom)
.line(points.flyExtensionBottom)
.join(
new Path()
.move(points.fork)
.curve(points.crotchSeamCurveCp1, points.crotchSeamCurveCp2, points.crotchSeamCurveStart)
.split(points.flyBottom)
.split(points.flyExtensionBottom)
.pop()
)
.line(points.styleWaistIn)
@ -55,7 +55,7 @@ function draftCharlieFlyExtension({ points, paths, Path, macro, store, sa, part
macro('title', {
at: points.titleAnchor,
nr: 10,
title: 'flyExtention',
title: 'flyExtension',
})
return part

View file

@ -30,12 +30,7 @@ function draftCharlieFront({
// Helper method to draw the outline path
const drawPath = () => {
let outseam = drawOutseam()
return frontInseamPath
.clone()
.curve(points.crotchSeamCurveCp1, points.crotchSeamCurveCp2, points.crotchSeamCurveStart)
.line(points.styleWaistIn)
.line(points.slantTop)
.join(outseam)
return frontInseamPath.clone().join(crotchCurve).join(outseam)
}
// Helper object holding the Titan side seam path
@ -57,7 +52,13 @@ function draftCharlieFront({
.line(points.kneeIn)
.curve(points.kneeInCp2, points.forkCp1, points.fork)
// Draw fly J-seam
// Helper object holding the crotchCurve
const crotchCurve = new Path()
.move(points.fork)
.curve(points.crotchSeamCurveCp1, points.crotchSeamCurveCp2, points.crotchSeamCurveStart)
.line(points.styleWaistIn)
// Mark the bottom of the fly J-seam
const flyBottom = utils.curveIntersectsY(
points.crotchSeamCurveStart,
points.crotchSeamCurveCp2,
@ -65,23 +66,19 @@ function draftCharlieFront({
points.fork,
points.cfSeat.shiftFractionTowards(points.crotchSeamCurveCp2, options.flyLength).y
)
if (flyBottom) points.flyBottom = flyBottom
else log.error('Unable to locate the fly bottom. This draft will fail.')
points.flyBottom = utils.curveIntersectsY(
points.crotchSeamCurveStart,
points.crotchSeamCurveCp2,
points.crotchSeamCurveCp1,
points.fork,
points.cfSeat.shiftFractionTowards(points.crotchSeamCurveCp2, options.flyLength).y
)
// Define Fly components
points.flyExtensionBottom = utils.curveIntersectsY(
points.crotchSeamCurveStart,
points.crotchSeamCurveCp2,
points.crotchSeamCurveCp1,
points.fork,
points.cfSeat.shiftFractionTowards(points.crotchSeamCurveCp2, options.flyLength * 1.25).y
points.cfSeat.shiftFractionTowards(points.crotchSeamCurveCp2, options.flyLength * 1.5).y
)
points.flyTop = points.styleWaistOut.shiftFractionTowards(
points.styleWaistIn,
1 - options.flyWidth
@ -98,6 +95,45 @@ function draftCharlieFront({
points.flyCurveCp1 = points.flyBottom.shiftFractionTowards(points.flyCorner, options.flyCurve)
points.flyCurveCp2 = points.flyCurveStart.shiftFractionTowards(points.flyCorner, options.flyCurve)
let topStitchDist = (1 - options.flyWidth) * 8
points.flyTopSeamline = points.flyTop.shiftTowards(points.styleWaistIn, topStitchDist)
points.flyBottomSeamLine = utils.curveIntersectsY(
points.crotchSeamCurveStart,
points.crotchSeamCurveCp2,
points.crotchSeamCurveCp1,
points.fork,
points.flyBottom.shiftTowards(points.crotchSeamCurveStart, topStitchDist).y
)
paths.flyFacingLine = new Path()
.move(points.flyTop)
.line(points.flyCurveStart)
.curve(points.flyCurveCp2, points.flyCurveCp1, points.flyBottom)
.setClass('lining dashed')
let JseamCurve = paths.flyFacingLine.offset(-topStitchDist)
// Too small to draw for dolls
if (measurements.waist > 500) {
paths.completeJseam = JseamCurve.split(points.flyBottomSeamLine)[0]
.clone()
.setClass('dashed')
.addText('jseamStitchLine', 'center text-sm')
paths.flyRightLegExtension = crotchCurve
.clone()
.split(points.flyBottom)[1]
.offset(topStitchDist)
.line(points.styleWaistIn)
.reverse()
.line(points.flyExtensionBottom)
.reverse()
.setClass('fabric')
.addText('rightLegSeamline', 'center fill-note text-sm')
}
// Construct pocket slant
points.slantTop = points.styleWaistIn.shiftFractionTowards(
points.styleWaistOut,
@ -150,6 +186,7 @@ function draftCharlieFront({
0,
points.slantTop.dist(points.pocketFacingTop)
)
// YOLO
points.pocketFacingBottom = new Path()
.move(points.pocketFacingTop)
@ -195,12 +232,39 @@ function draftCharlieFront({
.move(points.flyCurveStart)
.curve(points.flyCurveCp2, points.flyCurveCp1, points.flyBottom)
if (complete) {
paths.Jseam = new Path()
.move(points.flyTop)
.join(Jseam)
.attr('class', 'dashed')
.attr('data-text', 'Left panel only')
.attr('data-text-class', 'center')
points.titleAnchor = new Point(points.knee.x, points.fork.y)
macro('title', {
at: points.titleAnchor,
nr: 2,
title: 'front',
})
snippets.logo = new Snippet('logo', points.titleAnchor.shiftFractionTowards(points.knee, 0.666))
points.topPleat = utils.beamsIntersect(
points.styleWaistIn,
points.styleWaistOut,
points.knee,
points.grainlineBottom
)
points.slantBottomNotch = new Path()
.move(points.slantCurveStart)
.curve(points.slantCurveCp1, points.slantCurveCp2, points.slantCurveEnd)
.intersectsY(points.slantBottom.y)
.pop()
points.slantTopNotch = points.slantTop.shiftFractionTowards(points.slantCurveStart, 0.1)
store.set('slantTopNotchDistance', points.slantTop.dist(points.slantTopNotch))
macro('sprinkle', {
snippet: 'notch',
on: [
'slantBottomNotch',
'slantTopNotch',
'topPleat',
'grainlineBottom',
'flyBottom',
'flyExtensionBottom',
'flyBottomSeamLine',
],
})
paths.pocketBag = new Path()
.move(points.slantTop)
.line(points.slantCurveStart)
@ -210,7 +274,54 @@ function draftCharlieFront({
.line(points.pocketbagTopRight)
.move(points.pocketFacingTop)
.line(points.pocketFacingBottom)
.attr('class', 'lining dashed')
.setClass('lining dashed')
// Bartack
macro('bartack', {
anchor: points.slantTopNotch,
angle: points.slantTopNotch.angle(points.slantCurveStart) + 90,
length: sa ? sa / 1.5 : 7.5,
suffix: 'slantTop',
})
macro('bartack', {
anchor: points.slantBottomNotch,
length: sa ? sa / 2 : 5,
suffix: 'slantBottom',
})
// This is too small to do on doll-sized patterns
if (measurements.waist > 200) {
macro('bartackFractionAlong', {
path: JseamCurve.reverse(),
start: 0.02,
end: 0.05,
suffix: 'stom',
})
}
if (sa) {
// Draw the main front seam allowance
paths.sa = drawPath()
.offset(sa)
.join(
new Path()
.move(points.floorOut)
.line(points.floorIn)
.offset(sa * 6)
)
.close()
.trim()
.setClass('fabric sa')
// Draw the right leg fly extension (not for dolls)
if (measurements.waist > 500) {
let FlyRightLegExtensionSa = paths.flyRightLegExtension.offset(sa)
paths.flyRightLegExtensionSa = FlyRightLegExtensionSa.split(
FlyRightLegExtensionSa.intersects(paths.sa)[0]
)[1]
.setClass('dotted')
.addText('rightLegSeamAllowance', 'center fill-note text-sm')
}
}
}
delete paths.hint

View file

@ -24,21 +24,13 @@ export const base = {
dflt: 'all',
list: [
'all',
'banner',
'bartack',
'buttons',
'cutonfold',
'dimension',
'annotations',
'flip',
'gore',
'grainline',
'i18n',
'logo',
'measurements',
'mirror',
'notches',
'round',
'scalebox',
'sprinkle',
'title',
'versionfreeSvg',

View file

@ -128,7 +128,7 @@ function draftBack({
if (sa) {
paths.sa = new Path()
.move(points.cfHem)
.join(paths.hemBase.offset(sa * options.hemWidth * 100))
.join(paths.hemBase.offset(sa * options.hemWidth))
.join(paths.saBase.offset(sa))
.line(points.cfNeck)
.attr('class', 'fabric sa')

View file

@ -167,7 +167,7 @@ function draftBase({
if (sa) {
paths.sa = new Path()
.move(points.cfHem)
.join(paths.hemBase.offset(sa * options.hemWidth * 100))
.join(paths.hemBase.offset(sa * options.hemWidth))
.join(paths.saBase.offset(sa))
.line(points.cfNeck)
.attr('class', 'fabric sa')
@ -199,7 +199,7 @@ export const base = {
// How deep the scoop running down the raglan seam is, as a % of the raglan length.
raglanScoopMagnitude: { pct: 6, min: 0, max: 20, menu: 'advanced' },
// Length of the hem around the hips, as a multiple of the seam allowance.
hemWidth: { pct: 2, min: 0, max: 8, menu: 'construction' },
hemWidth: { pct: 200, min: 0, max: 800, menu: 'construction' },
// How the body curves along the side from the armpit to the side of the hips, as a % of the length of the side seam. Negative values form a concave body and positive values form a convex body.
sideShape: { pct: 0, min: -20, max: 20, menu: 'advanced' },
},

View file

@ -271,7 +271,7 @@ function draftRaglanSleeve({
if (sa) {
paths.sa = paths.saBase
.offset(sa)
.join(paths.hemBase.offset(sa * options.sleeveHem * 100))
.join(paths.hemBase.offset(sa * options.sleeveHem))
.close()
.attr('class', 'fabric sa')
}
@ -302,6 +302,6 @@ export const raglanSleeve = {
// How long the sleeve is. 100 is a long sleeve ending at the wrist. 20 is a typical short sleeve.
sleeveLength: { pct: 20, min: 0, max: 125, menu: 'style' },
// Length of the hem at the end of the sleeve, as a multiple of the seam allowance.
sleeveHem: { pct: 2, min: 0, max: 8, menu: 'construction' },
sleeveHem: { pct: 200, min: 0, max: 800, menu: 'construction' },
},
}

View file

@ -155,11 +155,11 @@
"t": "Runder Rücken",
"d": "Damit die Passform für einen runde(re)n Rücken besser ist, fügt diese Option etwas Länge in der hinteren Mitte (an der Passe) hinzu, die sich zu den Seiten hin verjüngt."
},
"seperateButtonholePlacket": {
"separateButtonholePlacket": {
"t": "Separate Knopflochleiste",
"d": "Eine separate Knopflochleiste entwerfen."
},
"seperateButtonPlacket": {
"separateButtonPlacket": {
"t": "Separate Knopfleiste",
"d": "Eine separate Knopfleiste entwerfen"
},

View file

@ -245,29 +245,29 @@
"t": "Round back",
"d": "To fit a round(er) back, this adds length to the center back (at the yoke) that tapers of towards the sides."
},
"seperateButtonholePlacket": {
"t": "Seperate buttonhole placket",
"separateButtonholePlacket": {
"t": "Separate buttonhole placket",
"d": "Draft a separate buttonhole placket."
},
"seperateButtonholePlacketNo": {
"t": "Do not seperate the buttonholeplacket",
"separateButtonholePlacketNo": {
"t": "Do not separate the buttonholeplacket",
"d": "Draft a pattern where the buttonholeplacket is attached to the front"
},
"seperateButtonholePlacketYes": {
"t": "Seperate the buttonholeplacket",
"d": "Draft a pattern where the buttonhole placket is seperated from the front, allowing one to use a different fabric or grain for the buttonhole placket"
"separateButtonholePlacketYes": {
"t": "Separate the buttonholeplacket",
"d": "Draft a pattern where the buttonhole placket is separated from the front, allowing one to use a different fabric or grain for the buttonhole placket"
},
"seperateButtonPlacket": {
"t": "Seperate button placket",
"separateButtonPlacket": {
"t": "Separate button placket",
"d": "Draft a separate button placket"
},
"seperateButtonPlacketNo": {
"t": "Do not seperate the button placket",
"separateButtonPlacketNo": {
"t": "Do not separate the button placket",
"d": "Draft a pattern where the button placket is attached to the front"
},
"seperateButtonPlacketYes": {
"t": "Seperate the button placket",
"d": "Draft a pattern where the button placket is seperated from the front, allowing one to use a different fabric or grain for the button placket"
"separateButtonPlacketYes": {
"t": "Separate the button placket",
"d": "Draft a pattern where the button placket is separated from the front, allowing one to use a different fabric or grain for the button placket"
},
"sleevePlacketLength": {
"t": "Sleeve placket length",

View file

@ -155,11 +155,11 @@
"t": "Retroceso",
"d": "Para encajar un redondo(er) hacia atrás, esto añade longitud al centro de atrás (en el yo) que se atenúa hacia los lados."
},
"seperateButtonholePlacket": {
"separateButtonholePlacket": {
"t": "Tapeta de ojal separada",
"d": "Construye una placa separada del botón."
},
"seperateButtonPlacket": {
"separateButtonPlacket": {
"t": "Tapeta de botones separada",
"d": "Borra una placket de botones separada"
},

View file

@ -155,11 +155,11 @@
"t": "Arrondi arrière",
"d": "Pour installer un rond-point arrière, cela ajoute de la longueur au centre du dos (au yoke) que les foulards de vers les côtés."
},
"seperateButtonholePlacket": {
"separateButtonholePlacket": {
"t": "Gorge (Patte de boutonnières) séparée",
"d": "Dessinez une gorge (patte de boutonnières) séparée."
},
"seperateButtonPlacket": {
"separateButtonPlacket": {
"t": "Patte de boutonnage séparée",
"d": "Dessinez une patte de boutonnage séparée"
},

View file

@ -155,11 +155,11 @@
"t": "Rond terug af",
"d": "Om een round(er) achteraan te passen voegt dit de lengte aan het midden (aan de schouderpas) toe die richting de zijkanten kort."
},
"seperateButtonholePlacket": {
"separateButtonholePlacket": {
"t": "Apart knoopsgatenpat",
"d": "Teken een apart knoopsgatenpat."
},
"seperateButtonPlacket": {
"separateButtonPlacket": {
"t": "Apart knopenpat",
"d": "Teken een apart knopenpat"
},

View file

@ -155,12 +155,12 @@
"t": "Round back",
"d": "To fit a round(er) back, this adds length to the center back (at the yoke) that tapers of towards the sides."
},
"seperateButtonholePlacket": {
"t": "Seperate buttonhole placket",
"separateButtonholePlacket": {
"t": "Separate buttonhole placket",
"d": "Draft a separate buttonhole placket."
},
"seperateButtonPlacket": {
"t": "Seperate button placket",
"separateButtonPlacket": {
"t": "Separate button placket",
"d": "Draft a separate button placket"
},
"sleevePlacketLength": {

View file

@ -17,7 +17,7 @@ function simonButtonholePlacket({
store,
part,
}) {
if (!options.seperateButtonholePlacket) {
if (!options.separateButtonholePlacket) {
part.paths = {}
part.snippets = {}
part.points = {}

View file

@ -17,7 +17,7 @@ function simonButtonPlacket({
store,
part,
}) {
if (!options.seperateButtonPlacket) {
if (!options.separateButtonPlacket) {
part.paths = {}
part.snippets = {}
part.points = {}

View file

@ -6,8 +6,8 @@ import {
backDartShaping,
buttonFreeLength,
extraTopButton,
seperateButtonPlacket,
seperateButtonholePlacket,
separateButtonPlacket,
separateButtonholePlacket,
buttons,
ffsa,
} from './options.mjs'
@ -176,8 +176,8 @@ export const front = {
backDartShaping,
buttonFreeLength,
extraTopButton,
seperateButtonPlacket,
seperateButtonholePlacket,
separateButtonPlacket,
separateButtonholePlacket,
buttons,
ffsa,
},

View file

@ -52,7 +52,7 @@ export const draftFrontLeftClassicCuton = ({
.move(points.placketCfNeck)
.line(points.placketCfHem)
.attr('class', 'help')
if (!options.seperateButtonPlacket) {
if (!options.separateButtonPlacket) {
// Match lines are only displayed on attached plackets
paths.frontCenter.addText('simon:matchHere', 'text-xs center')
}

View file

@ -1,4 +1,4 @@
export const draftFrontLeftClassicSeperate = ({
export const draftFrontLeftClassicSeparate = ({
utils,
sa,
Point,

View file

@ -32,7 +32,7 @@ export const draftFrontLeftSeamless = ({
if (complete) {
// Placket help lines
paths.frontCenter = new Path().move(points.cfNeck).line(points.cfHem).attr('class', 'help')
if (!options.seperateButtonPlacket) {
if (!options.separateButtonPlacket) {
// Match lines are only displayed on attached plackets
paths.frontCenter.addText('simon:matchHere', 'text-xs center')
}

View file

@ -1,5 +1,5 @@
import { frontDimensions } from './shared.mjs'
import { draftFrontLeftClassicSeperate } from './frontleft-classic-seperate.mjs'
import { draftFrontLeftClassicSeparate } from './frontleft-classic-separate.mjs'
import { draftFrontLeftClassicCuton } from './frontleft-classic-cuton.mjs'
import { draftFrontLeftSeamless } from './frontleft-seamless.mjs'
import { front } from './front.mjs'
@ -15,8 +15,8 @@ function simonFrontLeft(params) {
d: 15 + sa,
})
if (options.seperateButtonholePlacket) {
return draftFrontLeftClassicSeperate(params)
if (options.separateButtonholePlacket) {
return draftFrontLeftClassicSeparate(params)
} else if (options.buttonholePlacketStyle === 'seamless') {
return draftFrontLeftSeamless(params)
} else if (options.buttonholePlacketStyle === 'classic') {

View file

@ -39,7 +39,7 @@ export const draftFrontRightClassicCuton = ({
if (complete) {
// Placket help lines
paths.frontCenter = new Path().move(points.cfNeck).line(points.cfHem).attr('class', 'help')
if (!options.seperateButtonholePlacket) {
if (!options.separateButtonholePlacket) {
// Match lines are only displayed on attached plackets
paths.frontCenter.addText('simon:matchHere', 'text-xs center')
}

View file

@ -1,4 +1,4 @@
export const draftFrontRightClassicSeperate = ({
export const draftFrontRightClassicSeparate = ({
store,
snippets,
utils,

View file

@ -35,7 +35,7 @@ export const draftFrontRightSeamless = ({
if (complete) {
// Placket help lines
paths.frontCenter = new Path().move(points.cfNeck).line(points.cfHem).attr('class', 'help')
if (!options.seperateButtonholePlacket) {
if (!options.separateButtonholePlacket) {
// Match lines are only displayed on attached plackets
paths.frontCenter.addText('simon:matchHere', 'text-xs center')
}

View file

@ -1,5 +1,5 @@
import { frontDimensions } from './shared.mjs'
import { draftFrontRightClassicSeperate } from './frontright-classic-seperate.mjs'
import { draftFrontRightClassicSeparate } from './frontright-classic-separate.mjs'
import { draftFrontRightClassicCuton } from './frontright-classic-cuton.mjs'
import { draftFrontRightSeamless } from './frontright-seamless.mjs'
import { front } from './front.mjs'
@ -25,8 +25,8 @@ function simonFrontRight(params) {
d: 15 + sa,
})
if (options.seperateButtonPlacket) {
return draftFrontRightClassicSeperate(params)
if (options.separateButtonPlacket) {
return draftFrontRightClassicSeparate(params)
} else if (options.buttonPlacketStyle === 'seamless') {
return draftFrontRightSeamless(params)
} else if (options.buttonPlacketStyle === 'classic') {

View file

@ -13,19 +13,19 @@ export const buttonFreeLength = { pct: 2, min: 0, max: 15, menu: 'style.closure'
export const buttonholePlacketStyle = {
list: ['classic', 'seamless'],
dflt: 'seamless',
menu: ({ options }) => (options?.seperateButtonholePlacket ? false : 'style.closure'),
menu: ({ options }) => (options?.separateButtonholePlacket ? false : 'style.closure'),
}
export const buttonholePlacketWidth = { pct: 8, min: 4, max: 12, menu: 'style.closure' }
export const buttonholePlacketFoldWidth = { pct: 16, min: 8, max: 24, menu: 'style.closure' }
export const buttonPlacketStyle = {
list: ['classic', 'seamless'],
dflt: 'classic',
menu: ({ options }) => (options?.seperateButtonPlacket ? false : 'style.closure'),
menu: ({ options }) => (options?.separateButtonPlacket ? false : 'style.closure'),
}
export const buttonPlacketWidth = { pct: 5, min: 2, max: 8, menu: 'style.closure' }
export const extraTopButton = { bool: true, menu: 'style.closure' }
export const seperateButtonPlacket = { bool: false, menu: 'style.closure' }
export const seperateButtonholePlacket = { bool: false, menu: 'style.closure' }
export const separateButtonPlacket = { bool: false, menu: 'style.closure' }
export const separateButtonholePlacket = { bool: false, menu: 'style.closure' }
// Collar
export const collarEase = { pct: 2, min: 0, max: 10, menu: 'fit' }
export const collarAngle = { deg: 85, min: 60, max: 130, menu: 'style.collar' }

View file

@ -0,0 +1,347 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="110.34686mm"
height="161.89951mm"
viewBox="0 0 110.34686 161.8995"
version="1.1"
id="svg5908"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="AttachExtensionToRightLeg.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview5910"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="1.6819304"
inkscape:cx="127.82931"
inkscape:cy="199.77045"
inkscape:window-width="2048"
inkscape:window-height="1089"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g21870" />
<defs
id="defs5905">
<marker
style="overflow:visible"
id="TriangleStart"
refX="0"
refY="0"
orient="auto-start-reverse"
inkscape:stockid="TriangleStart"
markerWidth="5.3244081"
markerHeight="6.155385"
viewBox="0 0 5.3244081 6.1553851"
inkscape:isstock="true"
inkscape:collect="always"
preserveAspectRatio="xMidYMid">
<path
transform="scale(0.5)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path135" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Send"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Send"
inkscape:isstock="true">
<path
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path907" />
</marker>
<marker
orient="auto"
refY="4"
refX="0"
id="cutonfoldFrom"
style="overflow:visible"
markerWidth="12"
markerHeight="8">
<path
class="note fill-note"
d="M 0,4 12,0 c -2,2 -2,6 0,8 z"
id="path88320" />
</marker>
<marker
orient="auto"
refY="4"
refX="12"
id="cutonfoldTo"
style="overflow:visible"
markerWidth="12"
markerHeight="8">
<path
class="note fill-note"
d="M 12,4 0,0 c 2,2 2,6 0,8 z"
id="path88323" />
</marker>
</defs>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-13.562753,-28.829835)">
<g
id="g21870">
<g
id="g85697"
transform="matrix(0.74514532,0,0,0.74514532,8.2236643,3.8034494)">
<g
id="fs-stack-charlie.flyExtension"
transform="translate(-120.14408,-140.22688)">
<!-- Start of group #fs-stack-charlie.flyExtension-part-charlie.flyExtension -->
<g
id="fs-stack-charlie.flyExtension-part-charlie.flyExtension"
transform="rotate(-16.733719,285.64482,254.94413)">
<g
id="g90479"
transform="matrix(-0.98114471,-0.1932746,-0.1932746,0.98114471,532.45969,40.010512)"
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.9;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">
<g
id="g92506"
transform="translate(2.7125126,4.8757587)">
<g
id="g90482"
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.9;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">
<path
class="fabric"
id="fs-54"
d="m 226.94,169.8 c 0,0 -6.32206,139.56999 -6.96598,149.62401 -0.64391,10.05402 -2.52555,24.11834 -2.52555,24.11834 l 33.26714,30.58713 c 1.60483,-12.27801 14.12885,-33.46066 11.87625,-48.79383 -2.88873,-19.66333 4.21074,-32.67612 4.33814,-64.41565 l 0.36,-89.69"
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:nodetypes="czccssc" />
</g>
<path
class="fabric sa"
id="fs-56"
d="m 226.94,169.8 40.35,1.43"
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:nodetypes="cc" />
</g>
</g>
</g>
<!-- end of group #fs-stack-charlie.flyExtension-part-charlie.flyExtension -->
</g>
<g
id="g893-2"
transform="translate(51.588897,15.829531)">
<g
id="g886-3"
transform="translate(-92.726049,-18.610919)">
<g
id="g85754"
transform="translate(-7.1190074,3.3370347)">
<g
id="g85747">
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 144.3869,37.79762 c 1.95288,0.535467 1.82824,-1.070478 4.11185,-0.346023 l 1.41605,11.307336 1.25413,0.07087 -0.22972,-11.960197 c 2.04737,-0.299231 1.9689,0.362589 5.0557,-0.220128 0.23913,45.078809 8.78106,141.382042 26.04113,183.334802 -1.88131,0.42793 -3.99886,-0.51431 -5.92741,-0.13363 l -1.72631,-7.80818 -1.05286,0.25557 1.64921,7.55264 c -2.45098,0.56426 -4.19325,-0.28889 -5.79378,0.13363 C 159.02197,194.97884 143.65574,95.144999 144.3869,37.79762 Z"
id="path1497-0"
sodipodi:nodetypes="ccccccccccccc" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 2;stroke-dashoffset:0;stroke-opacity:1"
d="m 150.43452,52.916666 c 1.85231,14.230906 4.16036,38.67234 6.83462,64.587454 4.51148,43.71885 11.70852,85.29166 15.7727,93.24781"
id="path1487-0"
sodipodi:nodetypes="csc" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 148.26116,49.51488 -0.75595,-3.590774 5.90587,-1e-6 -0.61421,3.638021 z"
id="path843-3"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 148.77413,56.415766 0.90444,-6.711898 1.74814,0.04725 0.7492,6.570157 z"
id="path843-7-4"
sodipodi:nodetypes="ccccc" />
</g>
</g>
</g>
</g>
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.67063;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 14.531116,37.247799 65.650879,-4.977429 8.78057,79.4304 2.712008,18.58618 5.72867,26.78878 4.344587,13.33568 -0.59034,5.79969 -29.704763,-8.47302 -29.916133,-3.35828 -24.50865,-1.79641 -2.813176,-0.85946 0.316348,-124.476131"
id="path81574"
sodipodi:nodetypes="cccccccccccc" />
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.67063;stroke-opacity:1"
d="m 101.82124,176.91132 -5.143534,-4.76429 c 0,0 0.59993,0.0471 -2.260788,-3.7551 -3.506312,-4.66027 -21.472435,-6.57529 -27.833367,-7.4928 -17.921532,-2.58496 -52.683402,-4.99567 -52.683402,-4.99567 l -0.0567,25.85067 c 0,0 21.498402,-0.21905 32.206413,0.57161 10.032654,0.74079 29.926558,3.90224 29.926558,3.90224 l 33.705298,4.14045 v 0 l -3.0424,-6.02547"
id="path76966"
sodipodi:nodetypes="ccssccscccc" />
<path
style="fill:#babdb6;fill-opacity:1;stroke:#212121;stroke-width:0.67063;stroke-opacity:0.262222"
d="m 83.463723,187.24872 -41.103726,-5.30235 -28.831419,-0.0319 -0.222034,8.80761 66.817503,0.30116 29.557673,-0.65484 c 0,0 -2.18242,-6.05475 -5.63881,-10.95735 -2.32897,-3.30345 -6.05228,-5.6973 -6.988749,-6.82568"
id="path80579"
sodipodi:nodetypes="ccccccsc" />
<g
id="g11368" />
<path
style="fill:#e2e5de;stroke:#888a85;stroke-width:0.67063;stroke-opacity:0.99481863"
d="m 96.677706,172.14703 c 0,0 -0.809892,8.54999 -4.966395,11.89113 -4.156511,3.34113 -8.834351,3.05236 -8.834351,3.05236"
id="path76968"
sodipodi:nodetypes="czc" />
<g
id="g28548"
transform="matrix(0.74486229,0.02053578,-0.02053578,0.74486229,-7.9765103,9.6977977)">
<path
class="fabric"
id="fs-1"
d="m 146.41227,214.079 c -8.96138,-21.48695 -16.0812,-51.92064 -22.29393,-97.26659 l -10.82,-78.950003 -1.35,-9.91"
sodipodi:nodetypes="cccc"
style="fill:#e2e5de;fill-opacity:1;stroke:#ee00d7;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:9, 3, 0.6, 3;stroke-dashoffset:0;stroke-opacity:0.25906736" />
<g
id="g27804"
style="stroke:#7e7e7e;stroke-width:0.9;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">
<g
id="g80638"
style="stroke:#888a85;stroke-opacity:1">
<path
class="fabric sa"
id="fs-3"
d="m 118.67834,27.032407 -13.6526,1.414452 -74.234645,7.690938 M 164.5219,238.01992 c -2.11085,-4.72868 -8.06394,-14.98691 -11.49853,-18.04826 l -6.6111,-5.89266"
sodipodi:nodetypes="ccccsc"
style="fill:none;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<path
class="dotted"
data-text="right leg seam allowance"
data-text-class="center fill-note text-sm"
id="fs-11"
d="m 153.25543,220.26394 -0.004,-0.14923 -3.45375,-2.90491 -5.8081,-5.73203 c -8.59,-20.56 -16.43812,-50.35261 -22.38812,-93.77261 l -12.47843,-89.674819 9.55542,-0.997934 -6.73,0.92"
style="fill:none;stroke:#7e7e7e;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.207254"
sodipodi:nodetypes="cccccccc" />
</g>
<g
id="use143-6"
transform="translate(143.12114,208.80325)">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8484-6"
style="fill:#8b5cf6;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8486-1"
style="fill:none;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
</g>
<g
id="use143"
transform="translate(146.44833,214.1724)">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8484"
style="fill:#8b5cf6;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8486"
style="fill:none;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
</g>
<g
id="use145"
transform="translate(153.02835,227.79242)">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8490"
style="fill:#8b5cf6;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8492"
style="fill:none;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
</g>
<path
style="fill:#babdb6;fill-opacity:1;stroke:#7e7e7e;stroke-width:0.899999;stroke-opacity:0.26943"
d="m 153.1251,227.96098 -0.45933,-11.23422"
id="path80635"
sodipodi:nodetypes="cc" />
<path
class="fabric"
data-text="right leg seamline"
data-text-class="center fill-note text-sm"
id="fs-6"
d="m 152.66577,216.72676 0.0525,-5.17435 c -7.93701,-21.59235 -15.75,-51.06 -21.86,-95.66 l -10.82,-78.960003 -1.36,-9.9"
style="fill:none;stroke:#888a85;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
<path
class="fabric"
data-text="right leg seamline"
data-text-class="center fill-note text-sm"
id="path86791"
d="m 152.02688,213.85116 -1.42449,-2.24043 c -8.82,-21.12 -15.75,-51.06 -21.86,-95.66 l -10.82,-78.959987 -1.36,-9.9"
style="fill:none;stroke:#ff1010;stroke-width:0.9;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:2.7, 0.9;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
</g>
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#f00000;stroke-width:0.67063;stroke-dasharray:2.01189, 0.67063;stroke-dashoffset:0;stroke-opacity:0.238342"
d="m 95.732507,173.39193 c 0,0 -2.428233,-4.43591 -8.754622,-6.46063 -9.763774,-3.12485 -25.769165,-4.41945 -32.823161,-5.19463 -18.18287,-1.99817 -40.462232,-3.96856 -40.462232,-3.96856"
id="path80778"
sodipodi:nodetypes="cssc" />
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#f00000;stroke-width:0.67063;stroke-dasharray:2.01189, 0.67063;stroke-dashoffset:0;stroke-opacity:0.290155"
d="M 104.54596,190.13882 99.032757,177.96556"
id="path80780"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:0.67063;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 95.683958,175.62807 c 0,0 4.199821,2.87301 5.533682,4.11499 1.8147,1.68971 7.83164,8.8737 7.83164,8.8737"
id="path81783"
sodipodi:nodetypes="csc" />
<text
xml:space="preserve"
style="font-size:6.35px;fill:#ff04e6;fill-opacity:0.502591;stroke:#ee00d7;stroke-width:0.3;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:0.259067"
x="-121.28302"
y="65.299042"
id="text101162"
transform="rotate(-96.457814)"
inkscape:transform-center-x="-1.3350958"
inkscape:transform-center-y="13.332936"><tspan
sodipodi:role="line"
id="tspan101160"
style="fill:#ff04e6;fill-opacity:0.502591;stroke:#ff0fe8;stroke-width:0.3;stroke-dasharray:none;stroke-opacity:0.259067"
x="-121.28302"
y="65.299042">Center Front</tspan></text>
<path
style="fill:none;fill-opacity:0.502591;stroke:#ff0fe8;stroke-width:0.3;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:0.259067;marker-end:url(#TriangleStart)"
d="m 72.239128,72.404516 -0.314616,-3.146187 5.663134,-0.471926"
id="path102132" />
<path
style="fill:none;fill-opacity:0.502591;stroke:#ff0fe8;stroke-width:0.3;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:0.259067;marker-end:url(#TriangleStart)"
d="m 76.566871,114.39207 0.267018,3.1506 5.65376,-0.57341"
id="path102474" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View file

@ -0,0 +1,315 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="96.00882mm"
height="170.37711mm"
viewBox="0 0 96.008817 170.37711"
version="1.1"
id="svg5908"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="AttachFacing.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview5910"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="1.6819304"
inkscape:cx="389.43347"
inkscape:cy="412.62112"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="2552"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g21870" />
<defs
id="defs5905">
<marker
orient="auto"
refY="4"
refX="10"
id="grainlineFrom"
style="overflow:visible"
markerWidth="12"
markerHeight="8">
<path
class="note fill-note"
d="M 0,4 12,0 c -2,2 -2,6 0,8 z"
id="path36095" />
</marker>
<marker
orient="auto"
refY="4"
refX="2"
id="grainlineTo"
style="overflow:visible"
markerWidth="12"
markerHeight="8">
<path
class="note fill-note"
d="M 12,4 0,0 c 2,2 2,6 0,8 z"
id="path36098" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Send"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Send"
inkscape:isstock="true">
<path
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path907" />
</marker>
</defs>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-56.626039,0.90727852)">
<g
id="g21870">
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.590382;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 80.797078,148.28241 6.562784,0.0274 -0.526386,20.4382 -6.745347,-0.33399 0.708949,-20.13166"
id="path50711" />
<g
id="g11368" />
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.590382;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 87.491504,148.78867 11.585572,-5.23579 -1.224736,6.53568 -4.320618,8.89028 -0.763856,9.6346 -5.93439,0.13462 z"
id="path50836" />
<g
id="g28548"
transform="matrix(0.57738785,0.31134237,-0.31134237,0.57738785,69.3578,-21.431269)">
<path
class="fabric"
id="fs-1"
d="m 124.11834,116.81241 -10.82,-78.950003 -1.35,-9.91"
sodipodi:nodetypes="ccc"
style="fill:none;stroke:#ee00d7;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:9, 3, 0.6, 3;stroke-dashoffset:0;stroke-opacity:1" />
<g
id="g27804"
style="stroke:#7e7e7e;stroke-width:0.9;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">
<path
class="fabric sa"
id="fs-3"
d="m 168.91433,238.06273 c -2.79105,-4.45466 -3.50932,-7.80897 -5.94599,-13.48032 m -50.67,-196.670003 31.13053,-27.49071553"
sodipodi:nodetypes="cccc"
style="fill:none;stroke:#7e7e7e;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
class="dotted"
data-text="right leg seam allowance"
data-text-class="center fill-note text-sm"
id="fs-11"
d="m 162.96834,224.58241 -0.25,-13.22 -0.77,-3.67 c -8.59,-20.56 -15.24,-49.74 -21.19,-93.16 l -10.81,-78.950003 -11.27,-8.55 -6.73,0.92"
style="fill:none;stroke:#7e7e7e;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="fill:#babdb6;fill-opacity:1;stroke:#787878;stroke-width:0.899999;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 52.940756,41.037052 67.661364,-69.491759 5.81437,-3.621363 17.01238,32.4977631 -31.48053,27.5307139 12.17,88.860003 -71.349961,-74.852818"
id="path40891" />
<g
id="g63332">
<path
style="fill:#babdb6;fill-opacity:1;stroke:#888a85;stroke-width:0.899999;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 112.29834,27.912408 143.42887,0.4216931 249.24614,195.71287 l -80.33181,42.34986 -5.94599,-13.48032 -1.02,-16.89 -2.70041,-7.82066 -15.21123,-60.53093 -14.08836,-103.758413 -11.27,-8.549999 z"
id="path40889" />
</g>
</g>
<g
id="use143"
transform="translate(146.44833,214.1724)">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8484"
style="fill:#8b5cf6;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8486"
style="fill:none;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
</g>
<g
id="use145"
transform="translate(153.02835,227.79242)">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8490"
style="fill:#8b5cf6;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8492"
style="fill:none;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
</g>
<g
id="fs-stack-charlie.flyFacing"
transform="matrix(-0.88019018,0.47462117,0.47462117,0.88019018,160.17775,-178.87335)">
<!-- Start of group #fs-stack-charlie.flyFacing-part-charlie.flyFacing -->
<g
id="fs-stack-charlie.flyFacing-part-charlie.flyFacing">
<g
id="g39764"
transform="rotate(22.455059,279.07376,90.555851)"
style="stroke:#767676;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">
<g
id="g39767">
<g
id="g39774"
style="fill:#bababa;fill-opacity:1">
<path
class="fabric"
id="fs-43"
d="m 226.58,179.79 17.66,128.92 c 4.82,35.15 20.87136,47.09287 56.13136,43.14287"
style="fill:#bababa;fill-opacity:1;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:nodetypes="ccc"
transform="translate(1.1094336e-6)" />
<path
class="sa fabric"
id="fs-45"
d="M 226.84947,181.75712 225.58,169.84 l 40.17,-4.05 10.91,8.59 10.82,78.95 c 6.06,44.23 12.9,73.92 21.65,94.86 l -9.23,3.86"
style="fill:#babdb6;fill-opacity:1;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:nodetypes="ccccccc" />
</g>
</g>
</g>
</g>
<!-- end of group #fs-stack-charlie.flyFacing-part-charlie.flyFacing -->
</g>
<path
class="fabric"
id="path39769"
d="m 146.64687,214.63846 c -2.01094,-4.76969 -4.68152,-9.77116 -6.51794,-15.49695 -6.4482,-20.10477 -11.1329,-46.72741 -16.01059,-82.3291 l -10.82,-78.950003 -1.35,-9.91"
sodipodi:nodetypes="csccc"
style="fill:none;stroke:#ee00d7;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:9, 3, 0.6, 3;stroke-dashoffset:0;stroke-opacity:0.165957" />
</g>
<g
id="g39935"
style="stroke:#787878;stroke-width:0.9;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.6559808,0,0,0.6559808,19.480445,-0.31212134)">
<g
id="g31911"
transform="matrix(-0.92487216,0.38027818,0.38027818,0.92487216,157.14693,-27.773572)"
style="stroke:#787878;stroke-width:0.9;stroke-dasharray:none;stroke-opacity:1">
<path
class="fabric"
id="fs-1-7"
d="m 146.54708,214.40123 c -2.25372,-5.37024 -5.33214,-10.91524 -7.36805,-17.50311 -6.11672,-19.79267 -10.37608,-45.89333 -15.06069,-80.08571 l -10.82,-78.950003 -1,-9.95"
sodipodi:nodetypes="csccc"
style="fill:none;stroke:#fe0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:3, 1;stroke-dashoffset:0;stroke-opacity:1" />
<path
class="fabric sa"
id="fs-3-6"
d="m 168.26343,238.9506 c -3.00177,-4.94546 -4.37051,-8.99439 -7.32469,-15.16244 -1.9262,-4.02174 -3.52937,-8.48875 -5.34537,-12.81035 -8.7244,-20.76168 -15.39477,-50.48548 -21.56503,-95.5254 l -10.82,-78.950003 -10.91,-8.59 -81.507245,8.22539"
sodipodi:nodetypes="csscccc"
style="fill:none;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<g
id="use143-4"
transform="translate(146.44833,214.1724)"
style="stroke:#787878;stroke-width:0.9;stroke-dasharray:none;stroke-opacity:1">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8484-9"
style="fill:#8b5cf6;stroke:#787878;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8486-1"
style="fill:none;stroke:#787878;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="use143-4-7"
transform="translate(142.22701,205.98306)"
style="stroke:#787878;stroke-width:0.9;stroke-dasharray:none;stroke-opacity:1">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8484-9-8"
style="fill:#8b5cf6;stroke:#787878;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8486-1-7"
style="fill:none;stroke:#787878;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="use145-0"
transform="translate(153.02835,227.79242)"
style="stroke:#787878;stroke-width:0.9;stroke-dasharray:none;stroke-opacity:1">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8490-8"
style="fill:#8b5cf6;stroke:#787878;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8492-8"
style="fill:none;stroke:#787878;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
<path
style="fill:#bababa;fill-opacity:1;stroke:#787878;stroke-width:0.9;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 142.41152,17.358452 195.69279,0"
id="path39923" />
</g>
<path
style="fill:#babdb6;fill-opacity:1;stroke:#888a85;stroke-width:0.590383;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 87.024708,148.30846 -0.191232,20.4396"
id="path49824" />
<path
style="fill:none;stroke:#ff0000;stroke-width:0.655981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.96794, 0.655981;stroke-dashoffset:0;stroke-opacity:0.341969"
d="m 86.833476,168.74806 c 0.461201,-15.3481 -0.05038,-6.09431 0.191232,-20.4396"
id="path3038"
sodipodi:nodetypes="cc" />
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.590382;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 125.29264,29.562372 4.17225,1.564137 3.84519,8.445495 -24.16994,64.295146 -4.48657,-19.209055 z"
id="path50838" />
<path
class="dotted"
data-text="right leg seam allowance"
data-text-class="center fill-note text-sm"
id="fs-11-1"
d="m 93.760654,158.55115 3.951138,-7.67118 0.694442,-2.34661 c 1.434009,-14.47058 6.652336,-33.29174 16.683426,-60.075724 l 18.24446,-48.698253 -3.82537,-8.401993 -4.15076,-1.556082"
style="fill:none;stroke:#7e7e7e;stroke-width:0.587342;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.15025906" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 178 KiB

View file

@ -0,0 +1,288 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="148.08771mm"
height="217.27238mm"
viewBox="0 0 148.08771 217.27238"
version="1.1"
id="svg5908"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="AttachZipperToExtension.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview5910"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="1.1893044"
inkscape:cx="415.36885"
inkscape:cy="429.66292"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="2552"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g21870" />
<defs
id="defs5905">
<marker
style="overflow:visible"
id="Arrow1Send"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Send"
inkscape:isstock="true">
<path
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path907" />
</marker>
<marker
orient="auto"
refY="4"
refX="0"
id="cutonfoldFrom"
style="overflow:visible"
markerWidth="12"
markerHeight="8">
<path
class="note fill-note"
d="M 0,4 12,0 c -2,2 -2,6 0,8 z"
id="path88320" />
</marker>
<marker
orient="auto"
refY="4"
refX="12"
id="cutonfoldTo"
style="overflow:visible"
markerWidth="12"
markerHeight="8">
<path
class="note fill-note"
d="M 12,4 0,0 c 2,2 2,6 0,8 z"
id="path88323" />
</marker>
</defs>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-13.562753,-28.829836)">
<g
id="g21870">
<g
id="g85697"
transform="translate(6.3975888,-4.7560773)">
<g
id="fs-stack-charlie.flyExtension"
transform="translate(-120.14408,-140.22688)">
<!-- Start of group #fs-stack-charlie.flyExtension-part-charlie.flyExtension -->
<g
id="fs-stack-charlie.flyExtension-part-charlie.flyExtension"
transform="rotate(-16.733719,285.64482,254.94413)">
<g
id="g90479"
transform="matrix(-0.98114471,-0.1932746,-0.1932746,0.98114471,532.45969,40.010512)"
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.9;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">
<g
id="g92506"
transform="translate(2.7125126,4.8757587)">
<g
id="g90482"
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.9;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">
<path
class="fabric"
id="fs-54"
d="m 226.94,169.8 c 0,0 -6.32206,139.56999 -6.96598,149.62401 -0.64391,10.05402 -2.52555,24.11834 -2.52555,24.11834 l 33.26714,30.58713 c 1.60483,-12.27801 14.12885,-33.46066 11.87625,-48.79383 -2.88873,-19.66333 4.21074,-32.67612 4.33814,-64.41565 l 0.36,-89.69"
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:nodetypes="czccssc" />
</g>
<path
class="fabric sa"
id="fs-56"
d="m 226.94,169.8 40.35,1.43"
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:nodetypes="cc" />
</g>
</g>
</g>
<!-- end of group #fs-stack-charlie.flyExtension-part-charlie.flyExtension -->
</g>
<g
id="g893-2"
transform="translate(51.588897,15.829531)">
<g
id="g886-3"
transform="translate(-92.726049,-18.610919)">
<g
id="g85754"
transform="translate(-7.1190074,3.3370347)">
<g
id="g85747">
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 144.3869,37.79762 c 1.95288,0.535467 1.82824,-1.070478 4.11185,-0.346023 l 1.41605,11.307336 1.25413,0.07087 -0.22972,-11.960197 c 2.04737,-0.299231 1.9689,0.362589 5.0557,-0.220128 0.23913,45.078809 10.79633,146.233602 28.0564,188.186362 -1.88131,0.42793 -3.99886,-0.51431 -5.92741,-0.13363 l -1.72631,-7.80818 -1.05286,0.25557 1.64921,7.55264 c -2.45098,0.56426 -4.19325,-0.28889 -5.79378,0.13363 C 161.03724,199.8304 143.65574,95.144999 144.3869,37.79762 Z"
id="path1497-0"
sodipodi:nodetypes="ccccccccccccc" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 2;stroke-dashoffset:0;stroke-opacity:1"
d="m 150.43452,52.916666 c 1.85231,14.230906 4.16036,38.67234 6.83462,64.587454 4.51148,43.71885 13.72379,90.14322 17.78797,98.09937"
id="path1487-0"
sodipodi:nodetypes="csc" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 148.26116,49.51488 -0.75595,-3.590774 5.90587,-1e-6 -0.61421,3.638021 z"
id="path843-3"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 148.77413,56.415766 0.90444,-6.711898 1.74814,0.04725 0.7492,6.570157 z"
id="path843-7-4"
sodipodi:nodetypes="ccccc" />
</g>
</g>
</g>
</g>
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.899999;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 14.440091,40.126912 88.104799,-6.679809 11.7837,106.597187 3.63957,24.94304 7.68799,35.95106 5.83052,17.89675 -0.19513,5.17094 -40.461503,-8.75859 -40.148052,-4.50687 -32.8911,-2.41083 -3.77534,-1.15341 0.424546,-167.049468"
id="path81574"
sodipodi:nodetypes="cccccccccccc" />
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.899999;stroke-opacity:1"
d="m 133.35093,224.94578 -8.24624,-3.78139 c 0,0 -21.76988,-5.22062 -37.536946,-7.49481 -24.051061,-3.46905 -73.552199,-6.4932 -73.552199,-6.4932 l 0.222469,38.22616 128.318326,0.21538 v 0 l -2.59018,-7.86239"
id="path76966"
sodipodi:nodetypes="ccsccccc" />
<path
style="fill:#babdb6;fill-opacity:1;stroke:#212121;stroke-width:0.899999;stroke-opacity:0.262222"
d="m 125.10469,221.16439 -4.81175,13.46758 -4.3866,6.07946 -3.67577,2.31995 -9.44678,2.62084 39.77255,-0.0343 c 0,0 -2.18866,-7.0495 -3.66849,-11.10973 -0.71641,-1.96562 -1.83232,-4.64174 -1.83232,-4.64174 0,0 -1.37023,-3.84248 -3.7046,-4.92065 -2.81804,-1.30156 -8.26434,-3.76518 -8.24624,-3.78135"
id="path80579"
sodipodi:nodetypes="ccccccscsc" />
<g
id="g11368" />
<path
style="fill:#e2e5de;stroke:#212121;stroke-width:0.899999;stroke-opacity:0.262222"
d="m 125.10469,221.16439 c 0,0 -3.62024,15.06317 -9.19835,19.54704 -5.57812,4.48387 -13.12255,4.94079 -13.12255,4.94079"
id="path76968"
sodipodi:nodetypes="czc" />
<g
id="g28548"
transform="rotate(1.5792396,-122.10277,-555.05452)">
<path
class="fabric"
id="fs-1"
d="m 146.41227,214.079 c -8.96138,-21.48695 -16.0812,-51.92064 -22.29393,-97.26659 l -10.82,-78.950003 -1.35,-9.91"
sodipodi:nodetypes="cccc"
style="fill:#e2e5de;fill-opacity:1;stroke:#ee00d7;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:9, 3, 0.6, 3;stroke-dashoffset:0;stroke-opacity:0.528889" />
<g
id="g27804"
style="stroke:#7e7e7e;stroke-width:0.9;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">
<g
id="g80638"
style="stroke:#888a85;stroke-opacity:1">
<path
class="fabric sa"
id="fs-3"
d="m 118.67834,27.032407 -13.6526,1.414452 -74.234645,7.690938 M 164.5219,238.01992 c -2.11085,-4.72868 -5.53485,-18.6167 -9.77163,-20.41057 l -8.338,-3.53035"
sodipodi:nodetypes="ccccsc"
style="fill:none;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<path
class="dotted"
data-text="right leg seam allowance"
data-text-class="center fill-note text-sm"
id="fs-11"
d="m 154.75027,217.60935 v 0 l -4.169,-1.76518 -6.5918,-4.3664 c -8.59,-20.56 -16.43812,-50.35261 -22.38812,-93.77261 l -10.81,-78.950001 7.88699,-11.722752 -6.73,0.92"
style="fill:none;stroke:#7e7e7e;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.207254"
sodipodi:nodetypes="cccccccc" />
</g>
<g
id="use143"
transform="translate(146.44833,214.1724)">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8484"
style="fill:#8b5cf6;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8486"
style="fill:none;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
</g>
<g
id="use145"
transform="translate(153.02835,227.79242)">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8490"
style="fill:#8b5cf6;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8492"
style="fill:none;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
</g>
<path
style="fill:#babdb6;fill-opacity:1;stroke:#7e7e7e;stroke-width:0.899999;stroke-opacity:0.26943"
d="m 153.1251,227.96098 -0.45933,-11.23422"
id="path80635"
sodipodi:nodetypes="cc" />
<path
class="fabric"
data-text="right leg seamline"
data-text-class="center fill-note text-sm"
id="fs-6"
d="m 152.66577,216.72676 0.0525,-5.17435 c -8.82,-21.12 -15.75,-51.06 -21.86,-95.66 l -10.82,-78.960003 -1.36,-9.9"
style="fill:none;stroke:#888a85;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
<path
class="fabric"
data-text="right leg seamline"
data-text-class="center fill-note text-sm"
id="path86791"
d="m 152.02688,213.85116 -1.42449,-2.24043 c -8.82,-21.12 -15.75,-51.06 -21.86,-95.66 l -10.82,-78.959987 -1.36,-9.9"
style="fill:none;stroke:#ff1010;stroke-width:0.9;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:2.7, 0.9;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
</g>
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#f00000;stroke-width:0.899999;stroke-dasharray:2.7, 0.899999;stroke-dashoffset:0;stroke-opacity:0.414508"
d="m 126.36956,222.94063 c 0,0 -37.031092,-6.64385 -52.631536,-8.35821 -24.40178,-2.68155 -59.473378,-4.16477 -59.473378,-4.16477"
id="path80778"
sodipodi:nodetypes="csc" />
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#f00000;stroke-width:0.899999;stroke-dasharray:2.7, 0.899999;stroke-dashoffset:0;stroke-opacity:0.414508"
d="m 135.61126,245.73196 -7.5481,-18.65058"
id="path80780"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:0.899999;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 123.77106,225.83602 c 0,0 5.28128,1.4652 7.57559,2.3129 3.10712,1.14802 9.76382,13.25219 9.76382,13.25219"
id="path81783"
sodipodi:nodetypes="csc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View file

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="44.95985mm"
height="144.98718mm"
viewBox="0 0 44.95985 144.98718"
version="1.1"
id="svg918"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="BasteZipper.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs912" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="-132.5"
inkscape:cy="290.71429"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
inkscape:window-width="1869"
inkscape:window-height="943"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="0"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata915">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-44.381639,-18.499443)">
<path
class="fabric sa"
id="fs-53-0"
d="M 88.876303,86.980474 88.22341,24.787147 58.82577,29.09435 49.833783,37.69649 v 47.886687 c 0,34.244843 -0.722529,50.281003 -4.960642,71.974443 l 3.30187,5.34479 39.295952,-16.67117 1.40534,-59.250766"
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.930424;stroke-opacity:1"
sodipodi:nodetypes="ccccscccc" />
<g
id="g893">
<g
id="g886"
transform="translate(-92.726049,-18.610919)">
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 144.3869,37.79762 c 1.95288,0.535467 3.00806,-0.677205 5.29167,0.04725 l 0.23623,10.914063 1.25413,0.07087 0.39952,-10.937686 c 2.04737,-0.299231 2.20486,0.677207 5.29166,0.09449 -1.54062,44.85634 1.6628,84.434103 -3.48596,127.553193 -1.88131,0.42793 -3.99886,-0.51431 -5.92741,-0.13363 l 0.55468,-8.20145 -1.05286,0.0196 -0.63178,8.18188 c -2.45098,0.56426 -4.19325,-0.28889 -5.79378,0.13363 6.74472,-23.00325 3.13274,-70.394831 3.8639,-127.74221 z"
id="path1497"
sodipodi:nodetypes="ccccccccccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 2;stroke-dashoffset:0;stroke-opacity:1"
d="m 150.43452,52.916666 c 0.16027,37.296815 1.83082,93.967344 -3.01824,102.704034"
id="path1487"
sodipodi:nodetypes="cc" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 148.26116,49.51488 -0.75595,-3.590774 5.90587,-1e-6 -0.61421,3.638021 z"
id="path843"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 148.77413,56.415766 0.90444,-6.711898 1.74814,0.04725 0.7492,6.570157 z"
id="path843-7"
sodipodi:nodetypes="ccccc" />
</g>
</g>
<path
style="fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 1;stroke-dashoffset:0;stroke-opacity:1"
d="m 53.578124,24.75744 c -1.5749,44.853174 3.85727,102.73243 -4.143225,122.07221"
id="path895"
sodipodi:nodetypes="cc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View file

@ -0,0 +1,193 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="156.22101mm"
height="111.50687mm"
viewBox="0 0 156.221 111.50687"
version="1.1"
id="svg8011"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="CloseCrossseam.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs8005" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.8889558"
inkscape:cx="183.16998"
inkscape:cy="255.69682"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
showguides="true"
inkscape:window-width="2048"
inkscape:window-height="1089"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
fit-margin-bottom="-150"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata8008">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-145.34356,-7.6092663)">
<g
id="g169748">
<path
style="fill:#babdb6;fill-opacity:1;stroke:#888a85;stroke-width:1.0786;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 185.17258,17.52415 c -10.93064,2.367321 -38.53382,10.292157 -38.93443,3.006954 -0.48751,-9.262524 41.73011,-10.9200271 63.47267,-12.2850311 7.20502,-0.279068 15.40025,0.05578 23.58083,0.819047 23.25868,2.1700801 46.39898,7.8032491 46.32685,12.6359871 0.21288,6.56084 -18.29429,0.836648 -27.44143,1.254972 l -2.98873,2.15971 c -4.86144,24.269258 -5.40976,38.147857 -16.57191,41.635797 -2.47199,0.772446 -5.46453,1.035278 -9.13977,0.788496 C 198.55352,67.292134 197.61544,48.90914 188.19484,19.411116 Z"
id="path1438"
sodipodi:nodetypes="cccscccsccc" />
<path
class="lining sa"
id="fs-13"
d="m 232.0969,9.1028899 c 12.07902,0.611893 25.70621,3.2880051 35.6178,5.8609061 l 2.63425,2.698254 -0.032,45.116178 c -2.6e-4,-0.02427 0.002,1.92e-4 0.002,0.04079 0.003,0.135731 0.01,0.366445 0.009,0.674753 -0.003,0.489727 -0.024,1.188964 -0.0985,2.037788 -0.22044,2.500757 -0.91852,6.304772 -2.97058,9.992141 -2.95534,5.305012 -8.64494,10.520597 -20.00082,11.10587 l -21.54052,1.114082"
style="fill:#babdb6;fill-opacity:1;stroke:#888a85;stroke-width:1.0786;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccccsccc" />
<path
style="fill:none;stroke:#888a85;stroke-width:1.0786;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 232.0969,9.1028899 225.717,87.743652"
id="path10502" />
<path
style="fill:none;stroke:#888a85;stroke-width:0.539302;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.61791, 0.539302;stroke-dashoffset:0;stroke-opacity:1"
d="m 267.7147,14.963796 -0.24967,48.254743"
id="path10506"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#888a85;stroke-width:0.539302;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.61791, 0.539302;stroke-dashoffset:0;stroke-opacity:1"
d="m 267.46503,63.218539 c -0.051,9.805322 -4.85342,19.21173 -16.50719,20.456659 l -25.07978,1.592082"
id="path14098"
sodipodi:nodetypes="ccc" />
<path
class="fabric sa"
id="fs-8"
d="m 215.25454,117.73971 c 0,0 5.21288,-44.527793 5.37999,-47.651278 l 2.84212,-2.548306 0.11843,0.0064 c 7.48935,-0.412224 12.62704,-0.658402 15.97242,-5.647919 2.64106,-3.938948 4.39732,-9.964016 6.10948,-18.748521 l 3.51135,-18.034217 c 0,0 2.21699,-2.13849 2.98873,-2.15971 6.81852,-0.187485 13.61474,2.14919 22.16742,2.008325 3.87194,-0.06378 5.44884,-1.624495 5.26647,-2.721723 l 10e-6,-2.6e-5 c 0.18402,1.798617 -0.006,3.353505 -0.11279,5.337994 -0.87841,16.134474 -1.43301,32.754641 -2.63521,48.403421 -1.01461,12.018588 -2.74807,18.969232 -5.09718,33.34994 -0.82372,5.04882 -1.32749,9.24274 -1.32749,9.24274"
style="fill:#babdb6;fill-opacity:1;stroke:#888a85;stroke-width:1.0786;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:nodetypes="ccccsccsscccccc" />
<path
style="fill:none;stroke:#888a85;stroke-width:0.539302;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3.23581, 0.539302;stroke-dashoffset:0;stroke-opacity:1"
d="M 270.34895,17.66205 C 257.32618,13.783396 244.71627,12.286667 231.89992,10.589822"
id="path14102"
sodipodi:nodetypes="cc" />
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:1.0786;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 146.30394,21.072435 c 6.80772,3.739533 23.22691,-0.413766 38.94567,-5.124813 l 4.15607,2.516839 c 7.94387,29.845774 8.84583,30.970867 13.03569,38.1231 4.57677,6.466338 12.79087,10.15951 21.08783,9.384651 9.52331,-0.362284 10.51373,-1.393891 14.13941,-5.039295 2.29936,-2.311855 4.57333,-6.072692 3.84691,-12.055022 -0.69402,-5.715551 2.40972,-15.63891 4.02448,-25.236149 l 4.26358,-2.568415 c 9.89093,2.199457 26.51271,3.920338 29.80738,1.169404 -1.32878,5.184525 -13.93612,2.553195 -27.43389,0.713344 l -2.98873,2.159764 c -6.78973,36.203908 -4.08171,41.738005 -25.71168,42.424293 -25.11681,1.864206 -29.06156,-24.072288 -35.28182,-48.12902 l -3.02226,-1.886966 c -10.38391,3.161459 -36.39952,10.774988 -38.86864,3.548285 z"
id="path1446"
sodipodi:nodetypes="cccccssccccccccc" />
<path
style="fill:none;stroke:#888a85;stroke-width:0.539302;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 232.0969,9.1028899 226.849,65.805774"
id="path1444"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#888a85;stroke-width:0.539302;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 224.58603,66.139365 -0.1863,1.341373"
id="path1448" />
<path
class="fabric sa"
id="fs-5"
d="m 160.88225,116.21978 c -1.94304,-15.40816 -5.1309,-31.174806 -7.19325,-43.864472 -1.59092,-11.69838 -6.83049,-37.645488 -6.83049,-37.645488 -0.53701,-4.616131 -1.18144,-9.347671 -0.55457,-13.637385 1.02646,6.194847 26.20773,0.784605 38.86864,-3.548285 l 3.02226,1.886966 c 2.63694,10.943452 4.98146,19.089113 7.45107,26.123805 4.70486,14.294746 10.38455,18.785914 19.78919,21.158983 2.49906,0.631589 5.18409,0.913544 8.04161,0.846181 l -2.84217,2.548357 c -1.28541,16.567879 -1.05907,18.913379 -5.23371,48.360188"
style="fill:#babdb6;fill-opacity:1;stroke:#888a85;stroke-width:1.0786;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:nodetypes="ccccccccccc" />
<path
style="fill:none;stroke:#888a85;stroke-width:0.539302;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.61791, 0.539302;stroke-dashoffset:0;stroke-opacity:1"
d="m 223.47671,67.540086 c -1.40261,21.05793 -3.1392,35.301404 -5.60434,50.867074"
id="path1440"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#ff0000;stroke-width:0.539302;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.61791, 0.539302;stroke-dashoffset:0;stroke-opacity:1"
d="M 246.96486,50.905617 C 243.4017,59.711153 246.70607,70.681763 220.63454,70.088441 202.72715,69.25119 194.86568,63.788881 185.17258,17.52415"
id="path1471"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#ff0000;stroke-width:0.323581;stroke-dasharray:1.29433, 0.323581;stroke-dashoffset:0;stroke-opacity:0.160622"
d="m 246.86834,50.742199 c 3.77346,1.021882 7.43671,-0.279253 8.15905,-3.963815 1.51935,-7.750013 2.70927,-18.345246 3.54955,-22.172779"
id="path99476"
sodipodi:nodetypes="csc" />
<ellipse
style="fill:none;stroke:#ff0000;stroke-width:0.323581;stroke-dasharray:1.29433, 0.323581;stroke-dashoffset:0;stroke-opacity:0.160622"
id="path99530"
cx="301.03"
cy="45.60553"
rx="0.37769645"
ry="0.075539283" />
<g
id="use145"
transform="matrix(0.28418348,-0.04030811,-0.04030811,-0.28418348,247.04917,50.956522)">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8490"
style="fill:#8b5cf6;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8492"
style="fill:none;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8486"
style="fill:none;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
transform="translate(-6.5800162,-13.620022)" />
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8484"
style="fill:#8b5cf6;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
transform="translate(-6.5800162,-13.620022)" />
<circle
cy="-5.200006"
cx="-3.2496378"
r="1.4"
class="fill-note"
id="circle8484-5"
style="fill:#8b5cf6;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
</g>
<circle
cy="-86.639763"
cx="236.5255"
class="note"
id="circle8486-1"
style="fill:none;stroke:#8b5cf6;stroke-width:0.114811;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
transform="matrix(0.99009022,-0.14043273,-0.14043273,-0.99009022,0,0)"
r="0.80367804" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 30 KiB

View file

@ -0,0 +1,386 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="112.10447mm"
height="164.44069mm"
viewBox="0 0 112.10447 164.44069"
version="1.1"
id="svg5908"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="FinishFacing.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview5910"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="2.3786088"
inkscape:cx="208.10484"
inkscape:cy="397.29106"
inkscape:window-width="2048"
inkscape:window-height="1089"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g21870" />
<defs
id="defs5905">
<marker
orient="auto"
refY="4"
refX="10"
id="grainlineFrom"
style="overflow:visible"
markerWidth="12"
markerHeight="8">
<path
class="note fill-note"
d="M 0,4 12,0 c -2,2 -2,6 0,8 z"
id="path36095" />
</marker>
<marker
orient="auto"
refY="4"
refX="2"
id="grainlineTo"
style="overflow:visible"
markerWidth="12"
markerHeight="8">
<path
class="note fill-note"
d="M 12,4 0,0 c 2,2 2,6 0,8 z"
id="path36098" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Send"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Send"
inkscape:isstock="true">
<path
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path907" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Send-6"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Send"
inkscape:isstock="true">
<path
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path907-0" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Send-60"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Send"
inkscape:isstock="true">
<path
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path907-8" />
</marker>
</defs>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-25.919822,0.90728019)">
<g
id="g21870">
<g
id="g11368" />
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.569812;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 111.63475,28.500725 4.02688,1.509638 3.71121,8.15123 -28.184014,81.206407 -5.701426,24.32116 -4.506929,9.7188 -0.737242,9.29891 -12.237939,-0.19243 0.684246,-19.43021 -0.0044,-1.86111 6.188006,1.73886 15.700617,-118.494327 z"
id="path56987" />
<g
id="g28548"
transform="matrix(0.55727006,0.30049434,-0.30049434,0.55727006,57.648836,-20.716158)"
style="fill:#e2e5de;fill-opacity:1">
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.899999;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 111.94834,27.952407 15.35062,110.342553 9.46886,44.96063 5.58726,22.0909 4.16187,9.6265 -121.820761,-143.840286 0.629428,-0.844885 95.276503,-98.742526 5.81437,-3.621363 17.01238,32.4977631 z"
id="path56927"
sodipodi:nodetypes="ccccccccccc" />
<g
id="g27804"
style="fill:#e2e5de;fill-opacity:1;stroke:#7e7e7e;stroke-width:0.9;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">
<path
class="fabric sa"
id="fs-3"
d="m 168.91433,238.06273 c -2.79105,-4.45466 -3.50932,-7.80897 -5.94599,-13.48032 m -50.67,-196.670003 31.13053,-27.49071553"
sodipodi:nodetypes="cccc"
style="fill:#e2e5de;fill-opacity:1;stroke:#7e7e7e;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="fill:#babdb6;fill-opacity:1;stroke:#888a85;stroke-width:0.899999;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 112.29834,27.912408 143.42887,0.4216931 249.24614,195.71287 l -81.02113,43.42727 -5.94599,-13.48032 -1.15508,-17.66401 -10.57511,-37.7999 -20.60049,-134.613503 -11.27,-8.549999 z"
id="path40889"
sodipodi:nodetypes="cccccccccc" />
</g>
<g
id="use143"
transform="translate(146.44833,214.1724)"
style="fill:#e2e5de;fill-opacity:1">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8484"
style="fill:#e2e5de;fill-opacity:1;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8486"
style="fill:#e2e5de;fill-opacity:1;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
</g>
<g
id="use145"
transform="translate(153.02835,227.79242)"
style="fill:#e2e5de;fill-opacity:1">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8490"
style="fill:#e2e5de;fill-opacity:1;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8492"
style="fill:#e2e5de;fill-opacity:1;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
</g>
<g
id="fs-stack-charlie.flyFacing"
transform="matrix(-0.88019018,0.47462117,0.47462117,0.88019018,160.17775,-178.87335)"
style="fill:#e2e5de;fill-opacity:1">
<!-- Start of group #fs-stack-charlie.flyFacing-part-charlie.flyFacing -->
<g
id="fs-stack-charlie.flyFacing-part-charlie.flyFacing"
style="fill:#e2e5de;fill-opacity:1">
<g
id="g39764"
transform="rotate(22.455059,279.07376,90.555851)"
style="fill:#e2e5de;fill-opacity:1;stroke:#767676;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">
<g
id="g39767"
style="fill:#e2e5de;fill-opacity:1">
<g
id="g39774"
style="fill:#e2e5de;fill-opacity:1">
<g
id="g51653"
style="fill:#e2e5de;fill-opacity:1">
<path
class="sa fabric"
id="fs-45"
d="M 266.26099,166.40861 276.66,174.38 l 10.82,78.95 c 6.06,44.23 8.15899,71.18538 16.90899,92.12538 L 299.9,352.05"
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
</g>
</g>
</g>
<g
id="g52425"
style="fill:#e2e5de;fill-opacity:1">
<g
id="g52428"
style="fill:#e2e5de;fill-opacity:1">
<g
id="g52433"
style="fill:#e2e5de;fill-opacity:1">
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.899999;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 280.11065,271.81117 264.18251,166.66082 m 56.05516,99.49663 -16.44842,-106.32243 -39.60674,6.8258 15.92814,105.15035"
id="path52417"
sodipodi:nodetypes="ccccc" />
<g
id="g53198"
style="fill:#e2e5de;fill-opacity:1">
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.899999;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 319.86655,263.75852 6.3621,36.38575 c 0,0 3.11869,18.10599 -1.60562,28.10956 -4.72431,10.00356 -24.25167,23.59904 -24.25167,23.59904 l -5.01852,-9.35375 -8.65414,-35.29796 -6.58805,-35.38999"
id="path52421"
sodipodi:nodetypes="cczcccc" />
</g>
</g>
</g>
</g>
</g>
</g>
<!-- end of group #fs-stack-charlie.flyFacing-part-charlie.flyFacing -->
</g>
</g>
<g
id="g39935"
style="stroke:#888a85;stroke-width:0.9;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.63312461,0,0,0.63312461,9.5093449,-0.33285876)">
<g
id="g31911"
transform="matrix(-0.92487216,0.38027818,0.38027818,0.92487216,157.14693,-27.773572)"
style="stroke:#888a85;stroke-width:0.9;stroke-dasharray:none;stroke-opacity:1">
<path
class="fabric"
id="fs-1-7"
d="m 148.50472,213.59631 c -2.12731,-5.06902 -2.58032,-3.22483 -4.51283,-9.374 -6.26591,-19.93789 -13.14384,-53.38408 -17.91591,-88.21482 l -11.91374,-77.812032 -0.7616,-8.785184"
sodipodi:nodetypes="csccc"
style="fill:none;stroke:#ff1010;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:3, 1;stroke-dashoffset:0;stroke-opacity:1" />
<path
class="fabric sa"
id="fs-3-6"
d="m 168.26343,238.9506 c -3.00177,-4.94546 -4.37051,-8.99439 -7.32469,-15.16244 -1.9262,-4.02174 -3.52937,-8.48875 -5.34537,-12.81035 -8.7244,-20.76168 -15.39477,-50.48548 -21.56503,-95.5254 l -10.82,-78.950003 -10.23895,-7.542945"
sodipodi:nodetypes="cssccc"
style="fill:none;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.293617" />
<g
id="use143-4"
transform="translate(146.44833,214.1724)"
style="stroke:#888a85;stroke-width:0.9;stroke-dasharray:none;stroke-opacity:1">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8484-9"
style="fill:#8b5cf6;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8486-1"
style="fill:none;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="use145-0"
transform="translate(153.02835,227.79242)"
style="stroke:#888a85;stroke-width:0.9;stroke-dasharray:none;stroke-opacity:1">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8490-8"
style="fill:#8b5cf6;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8492-8"
style="fill:none;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="use145-0-2"
transform="translate(141.98205,205.06548)"
style="stroke:#888a85;stroke-width:0.9;stroke-dasharray:none;stroke-opacity:1">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8490-8-8"
style="fill:#8b5cf6;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8492-8-0"
style="fill:none;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
<g
id="g57104"
transform="matrix(-0.92487216,0.38027818,0.38027818,0.92487216,153.97191,-27.773572)"
style="stroke:#888a85;stroke-width:0.9;stroke-dasharray:none;stroke-opacity:1">
<path
class="fabric"
id="path57088"
d="m 148.13847,212.48406 c -9.02484,-21.50466 -15.32923,-51.1047 -21.57308,-96.6778 -3.41695,-27.794171 -7.73745,-54.627014 -11.48316,-82.260037"
sodipodi:nodetypes="ccc"
style="fill:none;stroke:#888a85;stroke-width:0.9;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.293617" />
<g
id="g57096"
transform="translate(146.44833,214.1724)"
style="stroke:#888a85;stroke-width:0.9;stroke-dasharray:none;stroke-opacity:1" />
<g
id="g57102"
transform="translate(153.02835,227.79242)"
style="stroke:#888a85;stroke-width:0.9;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
<path
style="fill:#babdb6;fill-opacity:1;stroke:#888a85;stroke-width:0.569812;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 74.700179,143.10937 74.51561,162.8368"
id="path49824" />
<path
style="fill:none;stroke:#ff0000;stroke-width:0.633125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.89937, 0.633125;stroke-dashoffset:0;stroke-opacity:0.341969"
d="m 74.51561,162.8368 c 0.445131,-14.81334 -0.04862,-5.88197 0.184569,-19.72743"
id="path3038"
sodipodi:nodetypes="cc" />
<g
id="g54995"
style="stroke:#888a85;stroke-opacity:1"
transform="matrix(0.63312461,0,0,0.63312461,9.5093449,-0.33285876)">
<g
id="g54903"
style="fill:none;fill-opacity:1;stroke:#888a85;stroke-opacity:1">
<g
id="g55084"
style="stroke:#888a85;stroke-opacity:1">
<g
id="g56931"
style="stroke:#c34db5;stroke-opacity:0.531915">
<path
class="fabric"
id="fs-1"
d="m 124.11834,116.81241 -10.82,-78.950003 -1.35,-9.91"
sodipodi:nodetypes="ccc"
style="fill:#5e5e5e;fill-opacity:1;stroke:#c34db5;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:9, 3, 0.6, 3;stroke-dashoffset:0;stroke-opacity:0.531915"
transform="rotate(28.334688,101.78644,134.50678)" />
<path
class="fabric"
id="path39769"
d="m 146.64687,214.63846 c -1.75192,-4.8836 -3.31096,-4.78111 -4.52573,-9.49694 -7.71849,-29.96365 -14.04448,-58.49847 -18.0028,-88.32911"
sodipodi:nodetypes="csc"
style="fill:none;fill-opacity:1;stroke:#c34db5;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:9, 3, 0.6, 3;stroke-dashoffset:0;stroke-opacity:0.531915"
transform="rotate(28.334688,101.78644,134.50678)" />
</g>
</g>
<g
id="g54988"
style="fill:none;stroke:#888a85;stroke-opacity:1" />
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

View file

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="355.48495mm"
height="25.750826mm"
viewBox="0 0 355.48496 25.750826"
version="1.1"
id="svg847"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="FinishLoopEdges.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs841" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="531.34024"
inkscape:cy="-58.588848"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
inkscape:window-width="2048"
inkscape:window-height="1089"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata844">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-27.864543,-131.31493)">
<path
style="fill:#babdb6;fill-opacity:1;stroke:#888a85;stroke-width:2.87901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 35.119674,133.78836 343.437076,-1.0275 -3.45742,8.4769 6.33861,5.90815 -5.76237,7.96314 -339.403421,0.51375 4.033658,-8.47689 -10.372262,-5.13752 z"
id="path1412" />
<path
style="fill:none;stroke:#ff0000;stroke-width:6.09343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.52336, 1.52336;stroke-dashoffset:0;stroke-opacity:1"
d="M 34.323655,135.46622 380.47858,134.43304"
id="path1414" />
<path
style="fill:none;stroke:#ff0000;stroke-width:6.05416;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.51354, 1.51354;stroke-dashoffset:0;stroke-opacity:1"
d="M 34.820946,153.18854 376.43043,152.15506"
id="path1414-2" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -0,0 +1,776 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="239.64345mm"
height="164.07721mm"
viewBox="0 0 239.64344 164.0772"
version="1.1"
id="svg5908"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="SewTheJSeam.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview5910"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="1.1893044"
inkscape:cx="538.12969"
inkscape:cy="319.5145"
inkscape:window-width="2048"
inkscape:window-height="1089"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g85697" />
<defs
id="defs5905">
<marker
style="overflow:visible"
id="Arrow1Send"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Send"
inkscape:isstock="true"
viewBox="0 0 4.4434635 2.539122"
markerWidth="0.44299999"
markerHeight="0.25314289"
preserveAspectRatio="xMidYMid">
<path
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path907" />
</marker>
<marker
orient="auto"
refY="4"
refX="0"
id="cutonfoldFrom"
style="overflow:visible"
markerWidth="12"
markerHeight="8">
<path
class="note fill-note"
d="M 0,4 12,0 c -2,2 -2,6 0,8 z"
id="path88320" />
</marker>
<marker
orient="auto"
refY="4"
refX="12"
id="cutonfoldTo"
style="overflow:visible"
markerWidth="4"
markerHeight="2.6666667"
viewBox="0 0 12 8"
preserveAspectRatio="xMidYMid">
<path
class="note fill-note"
d="M 12,4 0,0 c 2,2 2,6 0,8 z"
id="path88323" />
</marker>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath122864">
<path
id="path122866"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19658"
d="m 163.79342,44.374418 -27.00157,24.880748 188.59192,204.667394 27.00157,-24.88074 z m 104.8587,125.774202 c 0.0745,0.0752 0.13899,0.15838 0.19271,0.25536 0.49562,0.89128 -0.89555,2.376 -1.39056,2.99626 -0.5472,0.67853 -1.08224,1.36193 -1.61698,2.05032 -0.0707,-0.0649 -0.14458,-0.12671 -0.21777,-0.19011 l -0.004,-0.005 c -0.32907,-0.28523 -0.67583,-0.55447 -1.01313,-0.8323 -1.28382,0.29025 -2.89096,0.78853 -1.93882,-0.77735 -0.10968,-0.0528 -0.22238,-0.11587 -0.33263,-0.18593 -0.44441,-0.2828 -0.53573,-0.90179 -0.80624,-1.35405 l 3.7e-4,-0.009 c -0.35093,0.10603 -0.73341,0.0578 -1.27693,-0.21567 -0.0847,-0.0276 -0.36213,-0.17445 -0.43632,-0.24318 -0.24145,-0.15003 -0.51132,-0.33616 -0.81645,-0.56357 -0.094,-0.0699 -0.1413,-0.17363 -0.15997,-0.30257 -0.20482,0.0753 -0.41023,0.15068 -0.62437,0.14239 -0.61785,-0.0246 -1.27958,-0.12359 -1.78769,-0.47514 -0.78319,-0.54205 -0.87194,-1.44186 -0.88872,-2.25436 -0.003,-0.16067 -0.0187,-0.32878 0.011,-0.48558 -0.12457,0.007 -0.25134,0.0112 -0.37553,-0.002 -1.8416,-0.20127 -2.63579,-0.87503 -3.40624,-2.27773 -0.56788,0.54501 -1.66991,0.60559 -2.88389,-0.35648 -1.42545,-1.12977 -2.87919,-2.23356 -4.18225,-3.50684 -1.12918,-1.10354 -1.17012,-2.18445 -0.64653,-2.77466 -1.28104,0.19466 -2.43084,0.29531 -3.75293,-0.49803 -1.33612,-0.80175 -1.43036,-2.73489 -1.70341,-4.05059 -0.086,-0.40538 -0.17983,-0.81157 -0.26396,-1.21702 -0.0487,-0.23592 -0.14779,-0.47101 -0.13876,-0.71262 0.007,-0.0799 0.0642,-0.11562 0.16633,-0.18804 -0.21512,0.0235 -0.409,0.0304 -0.5565,-0.005 -0.0226,-0.005 -0.0433,-0.0101 -0.0657,-0.016 -0.33085,0.0732 -0.67699,0.13725 -0.72179,0.14724 -0.43899,0.0446 -0.91633,0.31813 -1.31783,0.13611 -0.67249,-0.30493 -1.24597,-0.85809 -1.64952,-1.4769 -0.1946,-0.29874 -0.0562,-0.71942 -0.0135,-1.07422 0.0672,-0.55827 0.31016,-1.07586 0.52932,-1.5999 -0.31456,-0.1992 -0.62299,-0.40179 -0.89719,-0.642 -0.23287,0.16198 -0.46485,0.32532 -0.70019,0.48393 -0.37385,0.25103 -0.69308,0.79947 -1.13916,0.73541 -3.8031,-0.54329 -3.3808,-1.37213 -2.12175,-3.43585 1.57891,-2.44834 3.2562,-4.85642 4.48232,-7.5092 l -0.009,-0.009 c 0.82831,-1.79269 2.24877,-2.06779 2.98068,-1.36273 0.50044,0.48201 0.67772,1.42473 0.12118,2.65599 -0.54302,1.20123 -1.1761,2.35271 -1.85221,3.48107 0.13987,-0.0441 0.26776,0.0175 0.40692,-0.01 1.28789,-1.35452 3.01413,-0.36695 2.71568,1.44537 0.24552,0.52162 0.2126,1.15046 0.11277,1.78079 0.23189,0.13449 0.46665,0.31308 0.6979,0.54549 0.10038,0.10093 0.1973,0.2094 0.29567,0.33031 0.12365,0.15165 0.24603,0.30569 0.37013,0.45697 0.56272,-0.11732 1.24715,-0.0324 2.0601,0.51279 1.48314,0.99463 2.98857,1.95647 4.45586,2.97457 1.69611,1.1999 3.28347,2.54526 4.79976,3.9651 1.59283,1.43225 3.17881,2.8732 4.708,4.37222 0.20281,0.0813 0.4612,0.0852 0.60395,0.25002 0.16438,0.19019 0.15824,0.39514 0.24086,0.59307 0.24697,0.24962 0.49455,0.50132 0.73803,0.75471 0.56478,0.57235 1.12869,1.14395 1.68812,1.72149 0.0698,0.0291 0.0553,0.0317 0.13447,0.063 0.0148,0.0533 -1.4e-4,0.0471 0.0137,0.0978 1.48832,1.53772 2.96816,3.08464 4.4823,4.59718 0.89288,0.89196 1.09119,1.77339 0.86533,2.3948 0.036,0.1672 0.0756,0.32414 0.069,0.58164 0.51914,-0.28624 1.04307,-0.57211 1.57606,-0.83251 0.69597,0.34532 1.66722,0.40125 2.18888,0.92896 z m -0.73515,2.09518 c -0.4298,0.20262 -0.86776,0.4623 -1.31938,0.71488 0.0338,0.0405 0.0658,0.0771 0.10101,0.11905 0.32512,-0.18353 0.72062,-0.45451 1.2182,-0.8339 z m -4.37673,-1.4514 c 0.0126,-0.0203 0.008,-0.0248 -0.0177,-0.01 -0.11609,0.0596 -0.22299,0.13071 -0.33075,0.20306 0.0155,0.003 0.0312,0.0103 0.048,0.0153 0.0859,0.0195 0.26014,-0.15016 0.30008,-0.20871 z m -7.37557,-3.10274 c -0.0102,-0.008 -0.0202,-0.0162 -0.0301,-0.0232 -0.0145,3.1e-4 -0.0295,-0.003 -0.0447,-0.002 0.0241,0.008 0.0493,0.0167 0.0741,0.0251 z m -13.54256,-11.77628 c -0.0752,-0.0537 -0.14604,-0.1132 -0.21363,-0.17655 0.0204,0.0438 0.0201,0.12925 0.0419,0.16525 0.06,0.0995 0.11314,0.0131 0.17193,0.0115 z m -10.43886,-8.15005 c -0.0731,0.12471 -0.14626,0.25082 -0.22727,0.37068 0.0565,-0.0608 0.21853,-0.25005 0.22727,-0.37068 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath122864-5">
<path
id="path122866-9"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19658"
d="m 163.79342,44.374418 -27.00157,24.880748 188.59192,204.667394 27.00157,-24.88074 z m 104.8587,125.774202 c 0.0745,0.0752 0.13899,0.15838 0.19271,0.25536 0.49562,0.89128 -0.89555,2.376 -1.39056,2.99626 -0.5472,0.67853 -1.08224,1.36193 -1.61698,2.05032 -0.0707,-0.0649 -0.14458,-0.12671 -0.21777,-0.19011 l -0.004,-0.005 c -0.32907,-0.28523 -0.67583,-0.55447 -1.01313,-0.8323 -1.28382,0.29025 -2.89096,0.78853 -1.93882,-0.77735 -0.10968,-0.0528 -0.22238,-0.11587 -0.33263,-0.18593 -0.44441,-0.2828 -0.53573,-0.90179 -0.80624,-1.35405 l 3.7e-4,-0.009 c -0.35093,0.10603 -0.73341,0.0578 -1.27693,-0.21567 -0.0847,-0.0276 -0.36213,-0.17445 -0.43632,-0.24318 -0.24145,-0.15003 -0.51132,-0.33616 -0.81645,-0.56357 -0.094,-0.0699 -0.1413,-0.17363 -0.15997,-0.30257 -0.20482,0.0753 -0.41023,0.15068 -0.62437,0.14239 -0.61785,-0.0246 -1.27958,-0.12359 -1.78769,-0.47514 -0.78319,-0.54205 -0.87194,-1.44186 -0.88872,-2.25436 -0.003,-0.16067 -0.0187,-0.32878 0.011,-0.48558 -0.12457,0.007 -0.25134,0.0112 -0.37553,-0.002 -1.8416,-0.20127 -2.63579,-0.87503 -3.40624,-2.27773 -0.56788,0.54501 -1.66991,0.60559 -2.88389,-0.35648 -1.42545,-1.12977 -2.87919,-2.23356 -4.18225,-3.50684 -1.12918,-1.10354 -1.17012,-2.18445 -0.64653,-2.77466 -1.28104,0.19466 -2.43084,0.29531 -3.75293,-0.49803 -1.33612,-0.80175 -1.43036,-2.73489 -1.70341,-4.05059 -0.086,-0.40538 -0.17983,-0.81157 -0.26396,-1.21702 -0.0487,-0.23592 -0.14779,-0.47101 -0.13876,-0.71262 0.007,-0.0799 0.0642,-0.11562 0.16633,-0.18804 -0.21512,0.0235 -0.409,0.0304 -0.5565,-0.005 -0.0226,-0.005 -0.0433,-0.0101 -0.0657,-0.016 -0.33085,0.0732 -0.67699,0.13725 -0.72179,0.14724 -0.43899,0.0446 -0.91633,0.31813 -1.31783,0.13611 -0.67249,-0.30493 -1.24597,-0.85809 -1.64952,-1.4769 -0.1946,-0.29874 -0.0562,-0.71942 -0.0135,-1.07422 0.0672,-0.55827 0.31016,-1.07586 0.52932,-1.5999 -0.31456,-0.1992 -0.62299,-0.40179 -0.89719,-0.642 -0.23287,0.16198 -0.46485,0.32532 -0.70019,0.48393 -0.37385,0.25103 -0.69308,0.79947 -1.13916,0.73541 -3.8031,-0.54329 -3.3808,-1.37213 -2.12175,-3.43585 1.57891,-2.44834 3.2562,-4.85642 4.48232,-7.5092 l -0.009,-0.009 c 0.82831,-1.79269 2.24877,-2.06779 2.98068,-1.36273 0.50044,0.48201 0.67772,1.42473 0.12118,2.65599 -0.54302,1.20123 -1.1761,2.35271 -1.85221,3.48107 0.13987,-0.0441 0.26776,0.0175 0.40692,-0.01 1.28789,-1.35452 3.01413,-0.36695 2.71568,1.44537 0.24552,0.52162 0.2126,1.15046 0.11277,1.78079 0.23189,0.13449 0.46665,0.31308 0.6979,0.54549 0.10038,0.10093 0.1973,0.2094 0.29567,0.33031 0.12365,0.15165 0.24603,0.30569 0.37013,0.45697 0.56272,-0.11732 1.24715,-0.0324 2.0601,0.51279 1.48314,0.99463 2.98857,1.95647 4.45586,2.97457 1.69611,1.1999 3.28347,2.54526 4.79976,3.9651 1.59283,1.43225 3.17881,2.8732 4.708,4.37222 0.20281,0.0813 0.4612,0.0852 0.60395,0.25002 0.16438,0.19019 0.15824,0.39514 0.24086,0.59307 0.24697,0.24962 0.49455,0.50132 0.73803,0.75471 0.56478,0.57235 1.12869,1.14395 1.68812,1.72149 0.0698,0.0291 0.0553,0.0317 0.13447,0.063 0.0148,0.0533 -1.4e-4,0.0471 0.0137,0.0978 1.48832,1.53772 2.96816,3.08464 4.4823,4.59718 0.89288,0.89196 1.09119,1.77339 0.86533,2.3948 0.036,0.1672 0.0756,0.32414 0.069,0.58164 0.51914,-0.28624 1.04307,-0.57211 1.57606,-0.83251 0.69597,0.34532 1.66722,0.40125 2.18888,0.92896 z m -0.73515,2.09518 c -0.4298,0.20262 -0.86776,0.4623 -1.31938,0.71488 0.0338,0.0405 0.0658,0.0771 0.10101,0.11905 0.32512,-0.18353 0.72062,-0.45451 1.2182,-0.8339 z m -4.37673,-1.4514 c 0.0126,-0.0203 0.008,-0.0248 -0.0177,-0.01 -0.11609,0.0596 -0.22299,0.13071 -0.33075,0.20306 0.0155,0.003 0.0312,0.0103 0.048,0.0153 0.0859,0.0195 0.26014,-0.15016 0.30008,-0.20871 z m -7.37557,-3.10274 c -0.0102,-0.008 -0.0202,-0.0162 -0.0301,-0.0232 -0.0145,3.1e-4 -0.0295,-0.003 -0.0447,-0.002 0.0241,0.008 0.0493,0.0167 0.0741,0.0251 z m -13.54256,-11.77628 c -0.0752,-0.0537 -0.14604,-0.1132 -0.21363,-0.17655 0.0204,0.0438 0.0201,0.12925 0.0419,0.16525 0.06,0.0995 0.11314,0.0131 0.17193,0.0115 z m -10.43886,-8.15005 c -0.0731,0.12471 -0.14626,0.25082 -0.22727,0.37068 0.0565,-0.0608 0.21853,-0.25005 0.22727,-0.37068 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath122864-5-5">
<path
id="path122866-9-3"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19658"
d="m 163.79342,44.374418 -27.00157,24.880748 188.59192,204.667394 27.00157,-24.88074 z m 104.8587,125.774202 c 0.0745,0.0752 0.13899,0.15838 0.19271,0.25536 0.49562,0.89128 -0.89555,2.376 -1.39056,2.99626 -0.5472,0.67853 -1.08224,1.36193 -1.61698,2.05032 -0.0707,-0.0649 -0.14458,-0.12671 -0.21777,-0.19011 l -0.004,-0.005 c -0.32907,-0.28523 -0.67583,-0.55447 -1.01313,-0.8323 -1.28382,0.29025 -2.89096,0.78853 -1.93882,-0.77735 -0.10968,-0.0528 -0.22238,-0.11587 -0.33263,-0.18593 -0.44441,-0.2828 -0.53573,-0.90179 -0.80624,-1.35405 l 3.7e-4,-0.009 c -0.35093,0.10603 -0.73341,0.0578 -1.27693,-0.21567 -0.0847,-0.0276 -0.36213,-0.17445 -0.43632,-0.24318 -0.24145,-0.15003 -0.51132,-0.33616 -0.81645,-0.56357 -0.094,-0.0699 -0.1413,-0.17363 -0.15997,-0.30257 -0.20482,0.0753 -0.41023,0.15068 -0.62437,0.14239 -0.61785,-0.0246 -1.27958,-0.12359 -1.78769,-0.47514 -0.78319,-0.54205 -0.87194,-1.44186 -0.88872,-2.25436 -0.003,-0.16067 -0.0187,-0.32878 0.011,-0.48558 -0.12457,0.007 -0.25134,0.0112 -0.37553,-0.002 -1.8416,-0.20127 -2.63579,-0.87503 -3.40624,-2.27773 -0.56788,0.54501 -1.66991,0.60559 -2.88389,-0.35648 -1.42545,-1.12977 -2.87919,-2.23356 -4.18225,-3.50684 -1.12918,-1.10354 -1.17012,-2.18445 -0.64653,-2.77466 -1.28104,0.19466 -2.43084,0.29531 -3.75293,-0.49803 -1.33612,-0.80175 -1.43036,-2.73489 -1.70341,-4.05059 -0.086,-0.40538 -0.17983,-0.81157 -0.26396,-1.21702 -0.0487,-0.23592 -0.14779,-0.47101 -0.13876,-0.71262 0.007,-0.0799 0.0642,-0.11562 0.16633,-0.18804 -0.21512,0.0235 -0.409,0.0304 -0.5565,-0.005 -0.0226,-0.005 -0.0433,-0.0101 -0.0657,-0.016 -0.33085,0.0732 -0.67699,0.13725 -0.72179,0.14724 -0.43899,0.0446 -0.91633,0.31813 -1.31783,0.13611 -0.67249,-0.30493 -1.24597,-0.85809 -1.64952,-1.4769 -0.1946,-0.29874 -0.0562,-0.71942 -0.0135,-1.07422 0.0672,-0.55827 0.31016,-1.07586 0.52932,-1.5999 -0.31456,-0.1992 -0.62299,-0.40179 -0.89719,-0.642 -0.23287,0.16198 -0.46485,0.32532 -0.70019,0.48393 -0.37385,0.25103 -0.69308,0.79947 -1.13916,0.73541 -3.8031,-0.54329 -3.3808,-1.37213 -2.12175,-3.43585 1.57891,-2.44834 3.2562,-4.85642 4.48232,-7.5092 l -0.009,-0.009 c 0.82831,-1.79269 2.24877,-2.06779 2.98068,-1.36273 0.50044,0.48201 0.67772,1.42473 0.12118,2.65599 -0.54302,1.20123 -1.1761,2.35271 -1.85221,3.48107 0.13987,-0.0441 0.26776,0.0175 0.40692,-0.01 1.28789,-1.35452 3.01413,-0.36695 2.71568,1.44537 0.24552,0.52162 0.2126,1.15046 0.11277,1.78079 0.23189,0.13449 0.46665,0.31308 0.6979,0.54549 0.10038,0.10093 0.1973,0.2094 0.29567,0.33031 0.12365,0.15165 0.24603,0.30569 0.37013,0.45697 0.56272,-0.11732 1.24715,-0.0324 2.0601,0.51279 1.48314,0.99463 2.98857,1.95647 4.45586,2.97457 1.69611,1.1999 3.28347,2.54526 4.79976,3.9651 1.59283,1.43225 3.17881,2.8732 4.708,4.37222 0.20281,0.0813 0.4612,0.0852 0.60395,0.25002 0.16438,0.19019 0.15824,0.39514 0.24086,0.59307 0.24697,0.24962 0.49455,0.50132 0.73803,0.75471 0.56478,0.57235 1.12869,1.14395 1.68812,1.72149 0.0698,0.0291 0.0553,0.0317 0.13447,0.063 0.0148,0.0533 -1.4e-4,0.0471 0.0137,0.0978 1.48832,1.53772 2.96816,3.08464 4.4823,4.59718 0.89288,0.89196 1.09119,1.77339 0.86533,2.3948 0.036,0.1672 0.0756,0.32414 0.069,0.58164 0.51914,-0.28624 1.04307,-0.57211 1.57606,-0.83251 0.69597,0.34532 1.66722,0.40125 2.18888,0.92896 z m -0.73515,2.09518 c -0.4298,0.20262 -0.86776,0.4623 -1.31938,0.71488 0.0338,0.0405 0.0658,0.0771 0.10101,0.11905 0.32512,-0.18353 0.72062,-0.45451 1.2182,-0.8339 z m -4.37673,-1.4514 c 0.0126,-0.0203 0.008,-0.0248 -0.0177,-0.01 -0.11609,0.0596 -0.22299,0.13071 -0.33075,0.20306 0.0155,0.003 0.0312,0.0103 0.048,0.0153 0.0859,0.0195 0.26014,-0.15016 0.30008,-0.20871 z m -7.37557,-3.10274 c -0.0102,-0.008 -0.0202,-0.0162 -0.0301,-0.0232 -0.0145,3.1e-4 -0.0295,-0.003 -0.0447,-0.002 0.0241,0.008 0.0493,0.0167 0.0741,0.0251 z m -13.54256,-11.77628 c -0.0752,-0.0537 -0.14604,-0.1132 -0.21363,-0.17655 0.0204,0.0438 0.0201,0.12925 0.0419,0.16525 0.06,0.0995 0.11314,0.0131 0.17193,0.0115 z m -10.43886,-8.15005 c -0.0731,0.12471 -0.14626,0.25082 -0.22727,0.37068 0.0565,-0.0608 0.21853,-0.25005 0.22727,-0.37068 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath122864-5-5-8">
<path
id="path122866-9-3-9"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19658"
d="m 163.79342,44.374418 -27.00157,24.880748 188.59192,204.667394 27.00157,-24.88074 z m 104.8587,125.774202 c 0.0745,0.0752 0.13899,0.15838 0.19271,0.25536 0.49562,0.89128 -0.89555,2.376 -1.39056,2.99626 -0.5472,0.67853 -1.08224,1.36193 -1.61698,2.05032 -0.0707,-0.0649 -0.14458,-0.12671 -0.21777,-0.19011 l -0.004,-0.005 c -0.32907,-0.28523 -0.67583,-0.55447 -1.01313,-0.8323 -1.28382,0.29025 -2.89096,0.78853 -1.93882,-0.77735 -0.10968,-0.0528 -0.22238,-0.11587 -0.33263,-0.18593 -0.44441,-0.2828 -0.53573,-0.90179 -0.80624,-1.35405 l 3.7e-4,-0.009 c -0.35093,0.10603 -0.73341,0.0578 -1.27693,-0.21567 -0.0847,-0.0276 -0.36213,-0.17445 -0.43632,-0.24318 -0.24145,-0.15003 -0.51132,-0.33616 -0.81645,-0.56357 -0.094,-0.0699 -0.1413,-0.17363 -0.15997,-0.30257 -0.20482,0.0753 -0.41023,0.15068 -0.62437,0.14239 -0.61785,-0.0246 -1.27958,-0.12359 -1.78769,-0.47514 -0.78319,-0.54205 -0.87194,-1.44186 -0.88872,-2.25436 -0.003,-0.16067 -0.0187,-0.32878 0.011,-0.48558 -0.12457,0.007 -0.25134,0.0112 -0.37553,-0.002 -1.8416,-0.20127 -2.63579,-0.87503 -3.40624,-2.27773 -0.56788,0.54501 -1.66991,0.60559 -2.88389,-0.35648 -1.42545,-1.12977 -2.87919,-2.23356 -4.18225,-3.50684 -1.12918,-1.10354 -1.17012,-2.18445 -0.64653,-2.77466 -1.28104,0.19466 -2.43084,0.29531 -3.75293,-0.49803 -1.33612,-0.80175 -1.43036,-2.73489 -1.70341,-4.05059 -0.086,-0.40538 -0.17983,-0.81157 -0.26396,-1.21702 -0.0487,-0.23592 -0.14779,-0.47101 -0.13876,-0.71262 0.007,-0.0799 0.0642,-0.11562 0.16633,-0.18804 -0.21512,0.0235 -0.409,0.0304 -0.5565,-0.005 -0.0226,-0.005 -0.0433,-0.0101 -0.0657,-0.016 -0.33085,0.0732 -0.67699,0.13725 -0.72179,0.14724 -0.43899,0.0446 -0.91633,0.31813 -1.31783,0.13611 -0.67249,-0.30493 -1.24597,-0.85809 -1.64952,-1.4769 -0.1946,-0.29874 -0.0562,-0.71942 -0.0135,-1.07422 0.0672,-0.55827 0.31016,-1.07586 0.52932,-1.5999 -0.31456,-0.1992 -0.62299,-0.40179 -0.89719,-0.642 -0.23287,0.16198 -0.46485,0.32532 -0.70019,0.48393 -0.37385,0.25103 -0.69308,0.79947 -1.13916,0.73541 -3.8031,-0.54329 -3.3808,-1.37213 -2.12175,-3.43585 1.57891,-2.44834 3.2562,-4.85642 4.48232,-7.5092 l -0.009,-0.009 c 0.82831,-1.79269 2.24877,-2.06779 2.98068,-1.36273 0.50044,0.48201 0.67772,1.42473 0.12118,2.65599 -0.54302,1.20123 -1.1761,2.35271 -1.85221,3.48107 0.13987,-0.0441 0.26776,0.0175 0.40692,-0.01 1.28789,-1.35452 3.01413,-0.36695 2.71568,1.44537 0.24552,0.52162 0.2126,1.15046 0.11277,1.78079 0.23189,0.13449 0.46665,0.31308 0.6979,0.54549 0.10038,0.10093 0.1973,0.2094 0.29567,0.33031 0.12365,0.15165 0.24603,0.30569 0.37013,0.45697 0.56272,-0.11732 1.24715,-0.0324 2.0601,0.51279 1.48314,0.99463 2.98857,1.95647 4.45586,2.97457 1.69611,1.1999 3.28347,2.54526 4.79976,3.9651 1.59283,1.43225 3.17881,2.8732 4.708,4.37222 0.20281,0.0813 0.4612,0.0852 0.60395,0.25002 0.16438,0.19019 0.15824,0.39514 0.24086,0.59307 0.24697,0.24962 0.49455,0.50132 0.73803,0.75471 0.56478,0.57235 1.12869,1.14395 1.68812,1.72149 0.0698,0.0291 0.0553,0.0317 0.13447,0.063 0.0148,0.0533 -1.4e-4,0.0471 0.0137,0.0978 1.48832,1.53772 2.96816,3.08464 4.4823,4.59718 0.89288,0.89196 1.09119,1.77339 0.86533,2.3948 0.036,0.1672 0.0756,0.32414 0.069,0.58164 0.51914,-0.28624 1.04307,-0.57211 1.57606,-0.83251 0.69597,0.34532 1.66722,0.40125 2.18888,0.92896 z m -0.73515,2.09518 c -0.4298,0.20262 -0.86776,0.4623 -1.31938,0.71488 0.0338,0.0405 0.0658,0.0771 0.10101,0.11905 0.32512,-0.18353 0.72062,-0.45451 1.2182,-0.8339 z m -4.37673,-1.4514 c 0.0126,-0.0203 0.008,-0.0248 -0.0177,-0.01 -0.11609,0.0596 -0.22299,0.13071 -0.33075,0.20306 0.0155,0.003 0.0312,0.0103 0.048,0.0153 0.0859,0.0195 0.26014,-0.15016 0.30008,-0.20871 z m -7.37557,-3.10274 c -0.0102,-0.008 -0.0202,-0.0162 -0.0301,-0.0232 -0.0145,3.1e-4 -0.0295,-0.003 -0.0447,-0.002 0.0241,0.008 0.0493,0.0167 0.0741,0.0251 z m -13.54256,-11.77628 c -0.0752,-0.0537 -0.14604,-0.1132 -0.21363,-0.17655 0.0204,0.0438 0.0201,0.12925 0.0419,0.16525 0.06,0.0995 0.11314,0.0131 0.17193,0.0115 z m -10.43886,-8.15005 c -0.0731,0.12471 -0.14626,0.25082 -0.22727,0.37068 0.0565,-0.0608 0.21853,-0.25005 0.22727,-0.37068 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath122864-7">
<path
id="path122866-6"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19658"
d="m 163.79342,44.374418 -27.00157,24.880748 188.59192,204.667394 27.00157,-24.88074 z m 104.8587,125.774202 c 0.0745,0.0752 0.13899,0.15838 0.19271,0.25536 0.49562,0.89128 -0.89555,2.376 -1.39056,2.99626 -0.5472,0.67853 -1.08224,1.36193 -1.61698,2.05032 -0.0707,-0.0649 -0.14458,-0.12671 -0.21777,-0.19011 l -0.004,-0.005 c -0.32907,-0.28523 -0.67583,-0.55447 -1.01313,-0.8323 -1.28382,0.29025 -2.89096,0.78853 -1.93882,-0.77735 -0.10968,-0.0528 -0.22238,-0.11587 -0.33263,-0.18593 -0.44441,-0.2828 -0.53573,-0.90179 -0.80624,-1.35405 l 3.7e-4,-0.009 c -0.35093,0.10603 -0.73341,0.0578 -1.27693,-0.21567 -0.0847,-0.0276 -0.36213,-0.17445 -0.43632,-0.24318 -0.24145,-0.15003 -0.51132,-0.33616 -0.81645,-0.56357 -0.094,-0.0699 -0.1413,-0.17363 -0.15997,-0.30257 -0.20482,0.0753 -0.41023,0.15068 -0.62437,0.14239 -0.61785,-0.0246 -1.27958,-0.12359 -1.78769,-0.47514 -0.78319,-0.54205 -0.87194,-1.44186 -0.88872,-2.25436 -0.003,-0.16067 -0.0187,-0.32878 0.011,-0.48558 -0.12457,0.007 -0.25134,0.0112 -0.37553,-0.002 -1.8416,-0.20127 -2.63579,-0.87503 -3.40624,-2.27773 -0.56788,0.54501 -1.66991,0.60559 -2.88389,-0.35648 -1.42545,-1.12977 -2.87919,-2.23356 -4.18225,-3.50684 -1.12918,-1.10354 -1.17012,-2.18445 -0.64653,-2.77466 -1.28104,0.19466 -2.43084,0.29531 -3.75293,-0.49803 -1.33612,-0.80175 -1.43036,-2.73489 -1.70341,-4.05059 -0.086,-0.40538 -0.17983,-0.81157 -0.26396,-1.21702 -0.0487,-0.23592 -0.14779,-0.47101 -0.13876,-0.71262 0.007,-0.0799 0.0642,-0.11562 0.16633,-0.18804 -0.21512,0.0235 -0.409,0.0304 -0.5565,-0.005 -0.0226,-0.005 -0.0433,-0.0101 -0.0657,-0.016 -0.33085,0.0732 -0.67699,0.13725 -0.72179,0.14724 -0.43899,0.0446 -0.91633,0.31813 -1.31783,0.13611 -0.67249,-0.30493 -1.24597,-0.85809 -1.64952,-1.4769 -0.1946,-0.29874 -0.0562,-0.71942 -0.0135,-1.07422 0.0672,-0.55827 0.31016,-1.07586 0.52932,-1.5999 -0.31456,-0.1992 -0.62299,-0.40179 -0.89719,-0.642 -0.23287,0.16198 -0.46485,0.32532 -0.70019,0.48393 -0.37385,0.25103 -0.69308,0.79947 -1.13916,0.73541 -3.8031,-0.54329 -3.3808,-1.37213 -2.12175,-3.43585 1.57891,-2.44834 3.2562,-4.85642 4.48232,-7.5092 l -0.009,-0.009 c 0.82831,-1.79269 2.24877,-2.06779 2.98068,-1.36273 0.50044,0.48201 0.67772,1.42473 0.12118,2.65599 -0.54302,1.20123 -1.1761,2.35271 -1.85221,3.48107 0.13987,-0.0441 0.26776,0.0175 0.40692,-0.01 1.28789,-1.35452 3.01413,-0.36695 2.71568,1.44537 0.24552,0.52162 0.2126,1.15046 0.11277,1.78079 0.23189,0.13449 0.46665,0.31308 0.6979,0.54549 0.10038,0.10093 0.1973,0.2094 0.29567,0.33031 0.12365,0.15165 0.24603,0.30569 0.37013,0.45697 0.56272,-0.11732 1.24715,-0.0324 2.0601,0.51279 1.48314,0.99463 2.98857,1.95647 4.45586,2.97457 1.69611,1.1999 3.28347,2.54526 4.79976,3.9651 1.59283,1.43225 3.17881,2.8732 4.708,4.37222 0.20281,0.0813 0.4612,0.0852 0.60395,0.25002 0.16438,0.19019 0.15824,0.39514 0.24086,0.59307 0.24697,0.24962 0.49455,0.50132 0.73803,0.75471 0.56478,0.57235 1.12869,1.14395 1.68812,1.72149 0.0698,0.0291 0.0553,0.0317 0.13447,0.063 0.0148,0.0533 -1.4e-4,0.0471 0.0137,0.0978 1.48832,1.53772 2.96816,3.08464 4.4823,4.59718 0.89288,0.89196 1.09119,1.77339 0.86533,2.3948 0.036,0.1672 0.0756,0.32414 0.069,0.58164 0.51914,-0.28624 1.04307,-0.57211 1.57606,-0.83251 0.69597,0.34532 1.66722,0.40125 2.18888,0.92896 z m -0.73515,2.09518 c -0.4298,0.20262 -0.86776,0.4623 -1.31938,0.71488 0.0338,0.0405 0.0658,0.0771 0.10101,0.11905 0.32512,-0.18353 0.72062,-0.45451 1.2182,-0.8339 z m -4.37673,-1.4514 c 0.0126,-0.0203 0.008,-0.0248 -0.0177,-0.01 -0.11609,0.0596 -0.22299,0.13071 -0.33075,0.20306 0.0155,0.003 0.0312,0.0103 0.048,0.0153 0.0859,0.0195 0.26014,-0.15016 0.30008,-0.20871 z m -7.37557,-3.10274 c -0.0102,-0.008 -0.0202,-0.0162 -0.0301,-0.0232 -0.0145,3.1e-4 -0.0295,-0.003 -0.0447,-0.002 0.0241,0.008 0.0493,0.0167 0.0741,0.0251 z m -13.54256,-11.77628 c -0.0752,-0.0537 -0.14604,-0.1132 -0.21363,-0.17655 0.0204,0.0438 0.0201,0.12925 0.0419,0.16525 0.06,0.0995 0.11314,0.0131 0.17193,0.0115 z m -10.43886,-8.15005 c -0.0731,0.12471 -0.14626,0.25082 -0.22727,0.37068 0.0565,-0.0608 0.21853,-0.25005 0.22727,-0.37068 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath122864-5-9">
<path
id="path122866-9-4"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19658"
d="m 163.79342,44.374418 -27.00157,24.880748 188.59192,204.667394 27.00157,-24.88074 z m 104.8587,125.774202 c 0.0745,0.0752 0.13899,0.15838 0.19271,0.25536 0.49562,0.89128 -0.89555,2.376 -1.39056,2.99626 -0.5472,0.67853 -1.08224,1.36193 -1.61698,2.05032 -0.0707,-0.0649 -0.14458,-0.12671 -0.21777,-0.19011 l -0.004,-0.005 c -0.32907,-0.28523 -0.67583,-0.55447 -1.01313,-0.8323 -1.28382,0.29025 -2.89096,0.78853 -1.93882,-0.77735 -0.10968,-0.0528 -0.22238,-0.11587 -0.33263,-0.18593 -0.44441,-0.2828 -0.53573,-0.90179 -0.80624,-1.35405 l 3.7e-4,-0.009 c -0.35093,0.10603 -0.73341,0.0578 -1.27693,-0.21567 -0.0847,-0.0276 -0.36213,-0.17445 -0.43632,-0.24318 -0.24145,-0.15003 -0.51132,-0.33616 -0.81645,-0.56357 -0.094,-0.0699 -0.1413,-0.17363 -0.15997,-0.30257 -0.20482,0.0753 -0.41023,0.15068 -0.62437,0.14239 -0.61785,-0.0246 -1.27958,-0.12359 -1.78769,-0.47514 -0.78319,-0.54205 -0.87194,-1.44186 -0.88872,-2.25436 -0.003,-0.16067 -0.0187,-0.32878 0.011,-0.48558 -0.12457,0.007 -0.25134,0.0112 -0.37553,-0.002 -1.8416,-0.20127 -2.63579,-0.87503 -3.40624,-2.27773 -0.56788,0.54501 -1.66991,0.60559 -2.88389,-0.35648 -1.42545,-1.12977 -2.87919,-2.23356 -4.18225,-3.50684 -1.12918,-1.10354 -1.17012,-2.18445 -0.64653,-2.77466 -1.28104,0.19466 -2.43084,0.29531 -3.75293,-0.49803 -1.33612,-0.80175 -1.43036,-2.73489 -1.70341,-4.05059 -0.086,-0.40538 -0.17983,-0.81157 -0.26396,-1.21702 -0.0487,-0.23592 -0.14779,-0.47101 -0.13876,-0.71262 0.007,-0.0799 0.0642,-0.11562 0.16633,-0.18804 -0.21512,0.0235 -0.409,0.0304 -0.5565,-0.005 -0.0226,-0.005 -0.0433,-0.0101 -0.0657,-0.016 -0.33085,0.0732 -0.67699,0.13725 -0.72179,0.14724 -0.43899,0.0446 -0.91633,0.31813 -1.31783,0.13611 -0.67249,-0.30493 -1.24597,-0.85809 -1.64952,-1.4769 -0.1946,-0.29874 -0.0562,-0.71942 -0.0135,-1.07422 0.0672,-0.55827 0.31016,-1.07586 0.52932,-1.5999 -0.31456,-0.1992 -0.62299,-0.40179 -0.89719,-0.642 -0.23287,0.16198 -0.46485,0.32532 -0.70019,0.48393 -0.37385,0.25103 -0.69308,0.79947 -1.13916,0.73541 -3.8031,-0.54329 -3.3808,-1.37213 -2.12175,-3.43585 1.57891,-2.44834 3.2562,-4.85642 4.48232,-7.5092 l -0.009,-0.009 c 0.82831,-1.79269 2.24877,-2.06779 2.98068,-1.36273 0.50044,0.48201 0.67772,1.42473 0.12118,2.65599 -0.54302,1.20123 -1.1761,2.35271 -1.85221,3.48107 0.13987,-0.0441 0.26776,0.0175 0.40692,-0.01 1.28789,-1.35452 3.01413,-0.36695 2.71568,1.44537 0.24552,0.52162 0.2126,1.15046 0.11277,1.78079 0.23189,0.13449 0.46665,0.31308 0.6979,0.54549 0.10038,0.10093 0.1973,0.2094 0.29567,0.33031 0.12365,0.15165 0.24603,0.30569 0.37013,0.45697 0.56272,-0.11732 1.24715,-0.0324 2.0601,0.51279 1.48314,0.99463 2.98857,1.95647 4.45586,2.97457 1.69611,1.1999 3.28347,2.54526 4.79976,3.9651 1.59283,1.43225 3.17881,2.8732 4.708,4.37222 0.20281,0.0813 0.4612,0.0852 0.60395,0.25002 0.16438,0.19019 0.15824,0.39514 0.24086,0.59307 0.24697,0.24962 0.49455,0.50132 0.73803,0.75471 0.56478,0.57235 1.12869,1.14395 1.68812,1.72149 0.0698,0.0291 0.0553,0.0317 0.13447,0.063 0.0148,0.0533 -1.4e-4,0.0471 0.0137,0.0978 1.48832,1.53772 2.96816,3.08464 4.4823,4.59718 0.89288,0.89196 1.09119,1.77339 0.86533,2.3948 0.036,0.1672 0.0756,0.32414 0.069,0.58164 0.51914,-0.28624 1.04307,-0.57211 1.57606,-0.83251 0.69597,0.34532 1.66722,0.40125 2.18888,0.92896 z m -0.73515,2.09518 c -0.4298,0.20262 -0.86776,0.4623 -1.31938,0.71488 0.0338,0.0405 0.0658,0.0771 0.10101,0.11905 0.32512,-0.18353 0.72062,-0.45451 1.2182,-0.8339 z m -4.37673,-1.4514 c 0.0126,-0.0203 0.008,-0.0248 -0.0177,-0.01 -0.11609,0.0596 -0.22299,0.13071 -0.33075,0.20306 0.0155,0.003 0.0312,0.0103 0.048,0.0153 0.0859,0.0195 0.26014,-0.15016 0.30008,-0.20871 z m -7.37557,-3.10274 c -0.0102,-0.008 -0.0202,-0.0162 -0.0301,-0.0232 -0.0145,3.1e-4 -0.0295,-0.003 -0.0447,-0.002 0.0241,0.008 0.0493,0.0167 0.0741,0.0251 z m -13.54256,-11.77628 c -0.0752,-0.0537 -0.14604,-0.1132 -0.21363,-0.17655 0.0204,0.0438 0.0201,0.12925 0.0419,0.16525 0.06,0.0995 0.11314,0.0131 0.17193,0.0115 z m -10.43886,-8.15005 c -0.0731,0.12471 -0.14626,0.25082 -0.22727,0.37068 0.0565,-0.0608 0.21853,-0.25005 0.22727,-0.37068 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath122864-5-5-6">
<path
id="path122866-9-3-5"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19658"
d="m 163.79342,44.374418 -27.00157,24.880748 188.59192,204.667394 27.00157,-24.88074 z m 104.8587,125.774202 c 0.0745,0.0752 0.13899,0.15838 0.19271,0.25536 0.49562,0.89128 -0.89555,2.376 -1.39056,2.99626 -0.5472,0.67853 -1.08224,1.36193 -1.61698,2.05032 -0.0707,-0.0649 -0.14458,-0.12671 -0.21777,-0.19011 l -0.004,-0.005 c -0.32907,-0.28523 -0.67583,-0.55447 -1.01313,-0.8323 -1.28382,0.29025 -2.89096,0.78853 -1.93882,-0.77735 -0.10968,-0.0528 -0.22238,-0.11587 -0.33263,-0.18593 -0.44441,-0.2828 -0.53573,-0.90179 -0.80624,-1.35405 l 3.7e-4,-0.009 c -0.35093,0.10603 -0.73341,0.0578 -1.27693,-0.21567 -0.0847,-0.0276 -0.36213,-0.17445 -0.43632,-0.24318 -0.24145,-0.15003 -0.51132,-0.33616 -0.81645,-0.56357 -0.094,-0.0699 -0.1413,-0.17363 -0.15997,-0.30257 -0.20482,0.0753 -0.41023,0.15068 -0.62437,0.14239 -0.61785,-0.0246 -1.27958,-0.12359 -1.78769,-0.47514 -0.78319,-0.54205 -0.87194,-1.44186 -0.88872,-2.25436 -0.003,-0.16067 -0.0187,-0.32878 0.011,-0.48558 -0.12457,0.007 -0.25134,0.0112 -0.37553,-0.002 -1.8416,-0.20127 -2.63579,-0.87503 -3.40624,-2.27773 -0.56788,0.54501 -1.66991,0.60559 -2.88389,-0.35648 -1.42545,-1.12977 -2.87919,-2.23356 -4.18225,-3.50684 -1.12918,-1.10354 -1.17012,-2.18445 -0.64653,-2.77466 -1.28104,0.19466 -2.43084,0.29531 -3.75293,-0.49803 -1.33612,-0.80175 -1.43036,-2.73489 -1.70341,-4.05059 -0.086,-0.40538 -0.17983,-0.81157 -0.26396,-1.21702 -0.0487,-0.23592 -0.14779,-0.47101 -0.13876,-0.71262 0.007,-0.0799 0.0642,-0.11562 0.16633,-0.18804 -0.21512,0.0235 -0.409,0.0304 -0.5565,-0.005 -0.0226,-0.005 -0.0433,-0.0101 -0.0657,-0.016 -0.33085,0.0732 -0.67699,0.13725 -0.72179,0.14724 -0.43899,0.0446 -0.91633,0.31813 -1.31783,0.13611 -0.67249,-0.30493 -1.24597,-0.85809 -1.64952,-1.4769 -0.1946,-0.29874 -0.0562,-0.71942 -0.0135,-1.07422 0.0672,-0.55827 0.31016,-1.07586 0.52932,-1.5999 -0.31456,-0.1992 -0.62299,-0.40179 -0.89719,-0.642 -0.23287,0.16198 -0.46485,0.32532 -0.70019,0.48393 -0.37385,0.25103 -0.69308,0.79947 -1.13916,0.73541 -3.8031,-0.54329 -3.3808,-1.37213 -2.12175,-3.43585 1.57891,-2.44834 3.2562,-4.85642 4.48232,-7.5092 l -0.009,-0.009 c 0.82831,-1.79269 2.24877,-2.06779 2.98068,-1.36273 0.50044,0.48201 0.67772,1.42473 0.12118,2.65599 -0.54302,1.20123 -1.1761,2.35271 -1.85221,3.48107 0.13987,-0.0441 0.26776,0.0175 0.40692,-0.01 1.28789,-1.35452 3.01413,-0.36695 2.71568,1.44537 0.24552,0.52162 0.2126,1.15046 0.11277,1.78079 0.23189,0.13449 0.46665,0.31308 0.6979,0.54549 0.10038,0.10093 0.1973,0.2094 0.29567,0.33031 0.12365,0.15165 0.24603,0.30569 0.37013,0.45697 0.56272,-0.11732 1.24715,-0.0324 2.0601,0.51279 1.48314,0.99463 2.98857,1.95647 4.45586,2.97457 1.69611,1.1999 3.28347,2.54526 4.79976,3.9651 1.59283,1.43225 3.17881,2.8732 4.708,4.37222 0.20281,0.0813 0.4612,0.0852 0.60395,0.25002 0.16438,0.19019 0.15824,0.39514 0.24086,0.59307 0.24697,0.24962 0.49455,0.50132 0.73803,0.75471 0.56478,0.57235 1.12869,1.14395 1.68812,1.72149 0.0698,0.0291 0.0553,0.0317 0.13447,0.063 0.0148,0.0533 -1.4e-4,0.0471 0.0137,0.0978 1.48832,1.53772 2.96816,3.08464 4.4823,4.59718 0.89288,0.89196 1.09119,1.77339 0.86533,2.3948 0.036,0.1672 0.0756,0.32414 0.069,0.58164 0.51914,-0.28624 1.04307,-0.57211 1.57606,-0.83251 0.69597,0.34532 1.66722,0.40125 2.18888,0.92896 z m -0.73515,2.09518 c -0.4298,0.20262 -0.86776,0.4623 -1.31938,0.71488 0.0338,0.0405 0.0658,0.0771 0.10101,0.11905 0.32512,-0.18353 0.72062,-0.45451 1.2182,-0.8339 z m -4.37673,-1.4514 c 0.0126,-0.0203 0.008,-0.0248 -0.0177,-0.01 -0.11609,0.0596 -0.22299,0.13071 -0.33075,0.20306 0.0155,0.003 0.0312,0.0103 0.048,0.0153 0.0859,0.0195 0.26014,-0.15016 0.30008,-0.20871 z m -7.37557,-3.10274 c -0.0102,-0.008 -0.0202,-0.0162 -0.0301,-0.0232 -0.0145,3.1e-4 -0.0295,-0.003 -0.0447,-0.002 0.0241,0.008 0.0493,0.0167 0.0741,0.0251 z m -13.54256,-11.77628 c -0.0752,-0.0537 -0.14604,-0.1132 -0.21363,-0.17655 0.0204,0.0438 0.0201,0.12925 0.0419,0.16525 0.06,0.0995 0.11314,0.0131 0.17193,0.0115 z m -10.43886,-8.15005 c -0.0731,0.12471 -0.14626,0.25082 -0.22727,0.37068 0.0565,-0.0608 0.21853,-0.25005 0.22727,-0.37068 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath122864-5-5-8-6">
<path
id="path122866-9-3-9-6"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19658"
d="m 163.79342,44.374418 -27.00157,24.880748 188.59192,204.667394 27.00157,-24.88074 z m 104.8587,125.774202 c 0.0745,0.0752 0.13899,0.15838 0.19271,0.25536 0.49562,0.89128 -0.89555,2.376 -1.39056,2.99626 -0.5472,0.67853 -1.08224,1.36193 -1.61698,2.05032 -0.0707,-0.0649 -0.14458,-0.12671 -0.21777,-0.19011 l -0.004,-0.005 c -0.32907,-0.28523 -0.67583,-0.55447 -1.01313,-0.8323 -1.28382,0.29025 -2.89096,0.78853 -1.93882,-0.77735 -0.10968,-0.0528 -0.22238,-0.11587 -0.33263,-0.18593 -0.44441,-0.2828 -0.53573,-0.90179 -0.80624,-1.35405 l 3.7e-4,-0.009 c -0.35093,0.10603 -0.73341,0.0578 -1.27693,-0.21567 -0.0847,-0.0276 -0.36213,-0.17445 -0.43632,-0.24318 -0.24145,-0.15003 -0.51132,-0.33616 -0.81645,-0.56357 -0.094,-0.0699 -0.1413,-0.17363 -0.15997,-0.30257 -0.20482,0.0753 -0.41023,0.15068 -0.62437,0.14239 -0.61785,-0.0246 -1.27958,-0.12359 -1.78769,-0.47514 -0.78319,-0.54205 -0.87194,-1.44186 -0.88872,-2.25436 -0.003,-0.16067 -0.0187,-0.32878 0.011,-0.48558 -0.12457,0.007 -0.25134,0.0112 -0.37553,-0.002 -1.8416,-0.20127 -2.63579,-0.87503 -3.40624,-2.27773 -0.56788,0.54501 -1.66991,0.60559 -2.88389,-0.35648 -1.42545,-1.12977 -2.87919,-2.23356 -4.18225,-3.50684 -1.12918,-1.10354 -1.17012,-2.18445 -0.64653,-2.77466 -1.28104,0.19466 -2.43084,0.29531 -3.75293,-0.49803 -1.33612,-0.80175 -1.43036,-2.73489 -1.70341,-4.05059 -0.086,-0.40538 -0.17983,-0.81157 -0.26396,-1.21702 -0.0487,-0.23592 -0.14779,-0.47101 -0.13876,-0.71262 0.007,-0.0799 0.0642,-0.11562 0.16633,-0.18804 -0.21512,0.0235 -0.409,0.0304 -0.5565,-0.005 -0.0226,-0.005 -0.0433,-0.0101 -0.0657,-0.016 -0.33085,0.0732 -0.67699,0.13725 -0.72179,0.14724 -0.43899,0.0446 -0.91633,0.31813 -1.31783,0.13611 -0.67249,-0.30493 -1.24597,-0.85809 -1.64952,-1.4769 -0.1946,-0.29874 -0.0562,-0.71942 -0.0135,-1.07422 0.0672,-0.55827 0.31016,-1.07586 0.52932,-1.5999 -0.31456,-0.1992 -0.62299,-0.40179 -0.89719,-0.642 -0.23287,0.16198 -0.46485,0.32532 -0.70019,0.48393 -0.37385,0.25103 -0.69308,0.79947 -1.13916,0.73541 -3.8031,-0.54329 -3.3808,-1.37213 -2.12175,-3.43585 1.57891,-2.44834 3.2562,-4.85642 4.48232,-7.5092 l -0.009,-0.009 c 0.82831,-1.79269 2.24877,-2.06779 2.98068,-1.36273 0.50044,0.48201 0.67772,1.42473 0.12118,2.65599 -0.54302,1.20123 -1.1761,2.35271 -1.85221,3.48107 0.13987,-0.0441 0.26776,0.0175 0.40692,-0.01 1.28789,-1.35452 3.01413,-0.36695 2.71568,1.44537 0.24552,0.52162 0.2126,1.15046 0.11277,1.78079 0.23189,0.13449 0.46665,0.31308 0.6979,0.54549 0.10038,0.10093 0.1973,0.2094 0.29567,0.33031 0.12365,0.15165 0.24603,0.30569 0.37013,0.45697 0.56272,-0.11732 1.24715,-0.0324 2.0601,0.51279 1.48314,0.99463 2.98857,1.95647 4.45586,2.97457 1.69611,1.1999 3.28347,2.54526 4.79976,3.9651 1.59283,1.43225 3.17881,2.8732 4.708,4.37222 0.20281,0.0813 0.4612,0.0852 0.60395,0.25002 0.16438,0.19019 0.15824,0.39514 0.24086,0.59307 0.24697,0.24962 0.49455,0.50132 0.73803,0.75471 0.56478,0.57235 1.12869,1.14395 1.68812,1.72149 0.0698,0.0291 0.0553,0.0317 0.13447,0.063 0.0148,0.0533 -1.4e-4,0.0471 0.0137,0.0978 1.48832,1.53772 2.96816,3.08464 4.4823,4.59718 0.89288,0.89196 1.09119,1.77339 0.86533,2.3948 0.036,0.1672 0.0756,0.32414 0.069,0.58164 0.51914,-0.28624 1.04307,-0.57211 1.57606,-0.83251 0.69597,0.34532 1.66722,0.40125 2.18888,0.92896 z m -0.73515,2.09518 c -0.4298,0.20262 -0.86776,0.4623 -1.31938,0.71488 0.0338,0.0405 0.0658,0.0771 0.10101,0.11905 0.32512,-0.18353 0.72062,-0.45451 1.2182,-0.8339 z m -4.37673,-1.4514 c 0.0126,-0.0203 0.008,-0.0248 -0.0177,-0.01 -0.11609,0.0596 -0.22299,0.13071 -0.33075,0.20306 0.0155,0.003 0.0312,0.0103 0.048,0.0153 0.0859,0.0195 0.26014,-0.15016 0.30008,-0.20871 z m -7.37557,-3.10274 c -0.0102,-0.008 -0.0202,-0.0162 -0.0301,-0.0232 -0.0145,3.1e-4 -0.0295,-0.003 -0.0447,-0.002 0.0241,0.008 0.0493,0.0167 0.0741,0.0251 z m -13.54256,-11.77628 c -0.0752,-0.0537 -0.14604,-0.1132 -0.21363,-0.17655 0.0204,0.0438 0.0201,0.12925 0.0419,0.16525 0.06,0.0995 0.11314,0.0131 0.17193,0.0115 z m -10.43886,-8.15005 c -0.0731,0.12471 -0.14626,0.25082 -0.22727,0.37068 0.0565,-0.0608 0.21853,-0.25005 0.22727,-0.37068 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath127585">
<path
id="path127587"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.223242"
d="m 205.42989,-10.255549 -0.30838,2.5038888 -17.85049,-2.1984849 c 0.0121,-0.061259 -0.0219,-0.1287239 -0.10587,-0.1676779 0.14569,-0.02025 0.21443,-0.0968 0.21656,-0.171019 0.0146,-0.0023 0.0293,-0.0039 0.0438,-0.0065 0.0112,-0.002 0.0217,-0.0045 0.032,-0.007 0.13308,0.01151 0.21551,-0.0421 0.23809,-0.110379 0.0276,0.0032 0.0552,0.0061 0.0828,0.0093 0.54281,0.05888 1.086,0.116708 1.63105,0.150801 8.9e-4,6.4e-5 0.003,-1.9e-5 0.004,3.7e-5 0.50098,0.04878 1.00273,0.09281 1.50547,0.118201 0.48581,0.02199 0.97262,0.03387 1.45906,0.0277 0.36549,-0.0096 0.73149,-0.02453 1.09169,-0.09267 0.17385,-0.03134 0.34737,-0.06377 0.52128,-0.09483 0.16674,-0.02978 0.2279,-0.1299 0.20361,-0.212152 2.6e-4,-5.53e-4 3.2e-4,-0.0011 6.6e-4,-0.0017 0.008,-0.01718 0.0154,-0.03443 0.0235,-0.05158 l -4.5e-4,-5.6e-5 c 0.0753,-0.165557 0.0153,-0.277988 -0.0766,-0.294552 l -4.5e-4,-5.4e-5 c -0.002,-2.62e-4 -0.003,-2.55e-4 -0.004,-4.82e-4 -0.071,-0.01032 -0.15944,0.03598 -0.21967,0.157019 -0.25915,0.01244 -0.51858,-0.0013 -0.77724,-0.01709 -0.45049,-0.03171 -0.89935,-0.07971 -1.34822,-0.128705 -0.40122,-0.05104 -0.80568,-0.07231 -1.20906,-0.09927 -0.64224,-0.04147 -1.28401,-0.08713 -1.92603,-0.131337 -0.5836,-0.03778 -1.16587,-0.09052 -1.74781,-0.148048 -0.29778,-0.02828 -0.59538,-0.06762 -0.89465,-0.0768 -0.0133,1.38e-4 -0.0263,1.64e-4 -0.0396,3.97e-4 -0.0496,7.92e-4 -0.0915,0.0092 -0.1258,0.02273 l 0.16879,-1.370518 16.94604,2.087093 c -0.12894,0.004 -0.25777,0.0085 -0.38682,0.01254 -0.0594,0.0019 -0.10786,0.0145 -0.14558,0.03347 -0.34381,-0.01195 -0.2573,-0.0082 -0.79534,-0.03425 -0.56713,-0.03476 -1.13415,-0.0741 -1.70049,-0.122011 -0.16637,-0.01407 -0.25344,0.06463 -0.25602,0.149026 -0.006,0.0057 -0.0121,0.01143 -0.0171,0.01766 -0.13519,-0.01048 -0.27037,-0.01926 -0.40593,-0.02495 -0.30697,-0.0096 -0.61441,-0.0046 -0.92145,-0.0054 -0.19099,-7.76e-4 -0.38155,-0.0055 -0.57232,-0.01513 -0.0192,-0.0012 -0.0388,-0.002 -0.058,-0.0032 -0.32792,-0.0197 -0.34727,0.311424 -0.0197,0.331013 0.0203,0.0012 0.0402,0.0027 0.0606,0.0039 0.19604,0.0099 0.39232,0.01418 0.5886,0.01494 0.30273,7.95e-4 0.60559,-0.0037 0.90825,0.0055 0.31721,0.01311 0.6331,0.04342 0.94905,0.07383 0.43681,0.03621 0.87449,0.06303 1.3127,0.07469 0.67345,0.01635 1.34681,0.01429 2.02041,0.01424 0.46167,0.0032 0.9232,0.01328 1.38484,0.0168 0.24885,0.0019 0.30701,-0.187904 0.17785,-0.281223 z m -1.1892,-0.146463 c -0.0282,0.0017 -0.0563,0.0033 -0.0845,0.005 1.8e-4,-0.0051 1.4e-4,-0.01028 -3.5e-4,-0.01542 z m -12.89983,-0.154836 c -0.0466,0.0017 -0.0933,0.0036 -0.1399,0.0052 -0.29731,0.0074 -0.59442,0.0073 -0.89153,0.0013 0.0771,-0.0073 0.13294,-0.03289 0.16775,-0.0672 0.0279,0.0018 0.0558,0.0037 0.0837,0.0055 0.26012,0.01738 0.52031,0.03294 0.78001,0.05521 z m -5.6053,0.204088 c 0.0324,0.0145 0.0718,0.02457 0.1186,0.02867 0.0242,0.0021 0.0484,0.0039 0.0726,0.0059 -0.0773,0.04929 -0.095,0.131761 -0.0531,0.19598 l -0.16401,-0.0202 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath122864-7-3">
<path
id="path122866-6-2"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19658"
d="m 163.79342,44.374418 -27.00157,24.880748 188.59192,204.667394 27.00157,-24.88074 z m 104.8587,125.774202 c 0.0745,0.0752 0.13899,0.15838 0.19271,0.25536 0.49562,0.89128 -0.89555,2.376 -1.39056,2.99626 -0.5472,0.67853 -1.08224,1.36193 -1.61698,2.05032 -0.0707,-0.0649 -0.14458,-0.12671 -0.21777,-0.19011 l -0.004,-0.005 c -0.32907,-0.28523 -0.67583,-0.55447 -1.01313,-0.8323 -1.28382,0.29025 -2.89096,0.78853 -1.93882,-0.77735 -0.10968,-0.0528 -0.22238,-0.11587 -0.33263,-0.18593 -0.44441,-0.2828 -0.53573,-0.90179 -0.80624,-1.35405 l 3.7e-4,-0.009 c -0.35093,0.10603 -0.73341,0.0578 -1.27693,-0.21567 -0.0847,-0.0276 -0.36213,-0.17445 -0.43632,-0.24318 -0.24145,-0.15003 -0.51132,-0.33616 -0.81645,-0.56357 -0.094,-0.0699 -0.1413,-0.17363 -0.15997,-0.30257 -0.20482,0.0753 -0.41023,0.15068 -0.62437,0.14239 -0.61785,-0.0246 -1.27958,-0.12359 -1.78769,-0.47514 -0.78319,-0.54205 -0.87194,-1.44186 -0.88872,-2.25436 -0.003,-0.16067 -0.0187,-0.32878 0.011,-0.48558 -0.12457,0.007 -0.25134,0.0112 -0.37553,-0.002 -1.8416,-0.20127 -2.63579,-0.87503 -3.40624,-2.27773 -0.56788,0.54501 -1.66991,0.60559 -2.88389,-0.35648 -1.42545,-1.12977 -2.87919,-2.23356 -4.18225,-3.50684 -1.12918,-1.10354 -1.17012,-2.18445 -0.64653,-2.77466 -1.28104,0.19466 -2.43084,0.29531 -3.75293,-0.49803 -1.33612,-0.80175 -1.43036,-2.73489 -1.70341,-4.05059 -0.086,-0.40538 -0.17983,-0.81157 -0.26396,-1.21702 -0.0487,-0.23592 -0.14779,-0.47101 -0.13876,-0.71262 0.007,-0.0799 0.0642,-0.11562 0.16633,-0.18804 -0.21512,0.0235 -0.409,0.0304 -0.5565,-0.005 -0.0226,-0.005 -0.0433,-0.0101 -0.0657,-0.016 -0.33085,0.0732 -0.67699,0.13725 -0.72179,0.14724 -0.43899,0.0446 -0.91633,0.31813 -1.31783,0.13611 -0.67249,-0.30493 -1.24597,-0.85809 -1.64952,-1.4769 -0.1946,-0.29874 -0.0562,-0.71942 -0.0135,-1.07422 0.0672,-0.55827 0.31016,-1.07586 0.52932,-1.5999 -0.31456,-0.1992 -0.62299,-0.40179 -0.89719,-0.642 -0.23287,0.16198 -0.46485,0.32532 -0.70019,0.48393 -0.37385,0.25103 -0.69308,0.79947 -1.13916,0.73541 -3.8031,-0.54329 -3.3808,-1.37213 -2.12175,-3.43585 1.57891,-2.44834 3.2562,-4.85642 4.48232,-7.5092 l -0.009,-0.009 c 0.82831,-1.79269 2.24877,-2.06779 2.98068,-1.36273 0.50044,0.48201 0.67772,1.42473 0.12118,2.65599 -0.54302,1.20123 -1.1761,2.35271 -1.85221,3.48107 0.13987,-0.0441 0.26776,0.0175 0.40692,-0.01 1.28789,-1.35452 3.01413,-0.36695 2.71568,1.44537 0.24552,0.52162 0.2126,1.15046 0.11277,1.78079 0.23189,0.13449 0.46665,0.31308 0.6979,0.54549 0.10038,0.10093 0.1973,0.2094 0.29567,0.33031 0.12365,0.15165 0.24603,0.30569 0.37013,0.45697 0.56272,-0.11732 1.24715,-0.0324 2.0601,0.51279 1.48314,0.99463 2.98857,1.95647 4.45586,2.97457 1.69611,1.1999 3.28347,2.54526 4.79976,3.9651 1.59283,1.43225 3.17881,2.8732 4.708,4.37222 0.20281,0.0813 0.4612,0.0852 0.60395,0.25002 0.16438,0.19019 0.15824,0.39514 0.24086,0.59307 0.24697,0.24962 0.49455,0.50132 0.73803,0.75471 0.56478,0.57235 1.12869,1.14395 1.68812,1.72149 0.0698,0.0291 0.0553,0.0317 0.13447,0.063 0.0148,0.0533 -1.4e-4,0.0471 0.0137,0.0978 1.48832,1.53772 2.96816,3.08464 4.4823,4.59718 0.89288,0.89196 1.09119,1.77339 0.86533,2.3948 0.036,0.1672 0.0756,0.32414 0.069,0.58164 0.51914,-0.28624 1.04307,-0.57211 1.57606,-0.83251 0.69597,0.34532 1.66722,0.40125 2.18888,0.92896 z m -0.73515,2.09518 c -0.4298,0.20262 -0.86776,0.4623 -1.31938,0.71488 0.0338,0.0405 0.0658,0.0771 0.10101,0.11905 0.32512,-0.18353 0.72062,-0.45451 1.2182,-0.8339 z m -4.37673,-1.4514 c 0.0126,-0.0203 0.008,-0.0248 -0.0177,-0.01 -0.11609,0.0596 -0.22299,0.13071 -0.33075,0.20306 0.0155,0.003 0.0312,0.0103 0.048,0.0153 0.0859,0.0195 0.26014,-0.15016 0.30008,-0.20871 z m -7.37557,-3.10274 c -0.0102,-0.008 -0.0202,-0.0162 -0.0301,-0.0232 -0.0145,3.1e-4 -0.0295,-0.003 -0.0447,-0.002 0.0241,0.008 0.0493,0.0167 0.0741,0.0251 z m -13.54256,-11.77628 c -0.0752,-0.0537 -0.14604,-0.1132 -0.21363,-0.17655 0.0204,0.0438 0.0201,0.12925 0.0419,0.16525 0.06,0.0995 0.11314,0.0131 0.17193,0.0115 z m -10.43886,-8.15005 c -0.0731,0.12471 -0.14626,0.25082 -0.22727,0.37068 0.0565,-0.0608 0.21853,-0.25005 0.22727,-0.37068 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath127585-0">
<path
id="path127587-0"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.223242"
d="m 205.42989,-10.255549 -0.30838,2.5038888 -17.85049,-2.1984849 c 0.0121,-0.061259 -0.0219,-0.1287239 -0.10587,-0.1676779 0.14569,-0.02025 0.21443,-0.0968 0.21656,-0.171019 0.0146,-0.0023 0.0293,-0.0039 0.0438,-0.0065 0.0112,-0.002 0.0217,-0.0045 0.032,-0.007 0.13308,0.01151 0.21551,-0.0421 0.23809,-0.110379 0.0276,0.0032 0.0552,0.0061 0.0828,0.0093 0.54281,0.05888 1.086,0.116708 1.63105,0.150801 8.9e-4,6.4e-5 0.003,-1.9e-5 0.004,3.7e-5 0.50098,0.04878 1.00273,0.09281 1.50547,0.118201 0.48581,0.02199 0.97262,0.03387 1.45906,0.0277 0.36549,-0.0096 0.73149,-0.02453 1.09169,-0.09267 0.17385,-0.03134 0.34737,-0.06377 0.52128,-0.09483 0.16674,-0.02978 0.2279,-0.1299 0.20361,-0.212152 2.6e-4,-5.53e-4 3.2e-4,-0.0011 6.6e-4,-0.0017 0.008,-0.01718 0.0154,-0.03443 0.0235,-0.05158 l -4.5e-4,-5.6e-5 c 0.0753,-0.165557 0.0153,-0.277988 -0.0766,-0.294552 l -4.5e-4,-5.4e-5 c -0.002,-2.62e-4 -0.003,-2.55e-4 -0.004,-4.82e-4 -0.071,-0.01032 -0.15944,0.03598 -0.21967,0.157019 -0.25915,0.01244 -0.51858,-0.0013 -0.77724,-0.01709 -0.45049,-0.03171 -0.89935,-0.07971 -1.34822,-0.128705 -0.40122,-0.05104 -0.80568,-0.07231 -1.20906,-0.09927 -0.64224,-0.04147 -1.28401,-0.08713 -1.92603,-0.131337 -0.5836,-0.03778 -1.16587,-0.09052 -1.74781,-0.148048 -0.29778,-0.02828 -0.59538,-0.06762 -0.89465,-0.0768 -0.0133,1.38e-4 -0.0263,1.64e-4 -0.0396,3.97e-4 -0.0496,7.92e-4 -0.0915,0.0092 -0.1258,0.02273 l 0.16879,-1.370518 16.94604,2.087093 c -0.12894,0.004 -0.25777,0.0085 -0.38682,0.01254 -0.0594,0.0019 -0.10786,0.0145 -0.14558,0.03347 -0.34381,-0.01195 -0.2573,-0.0082 -0.79534,-0.03425 -0.56713,-0.03476 -1.13415,-0.0741 -1.70049,-0.122011 -0.16637,-0.01407 -0.25344,0.06463 -0.25602,0.149026 -0.006,0.0057 -0.0121,0.01143 -0.0171,0.01766 -0.13519,-0.01048 -0.27037,-0.01926 -0.40593,-0.02495 -0.30697,-0.0096 -0.61441,-0.0046 -0.92145,-0.0054 -0.19099,-7.76e-4 -0.38155,-0.0055 -0.57232,-0.01513 -0.0192,-0.0012 -0.0388,-0.002 -0.058,-0.0032 -0.32792,-0.0197 -0.34727,0.311424 -0.0197,0.331013 0.0203,0.0012 0.0402,0.0027 0.0606,0.0039 0.19604,0.0099 0.39232,0.01418 0.5886,0.01494 0.30273,7.95e-4 0.60559,-0.0037 0.90825,0.0055 0.31721,0.01311 0.6331,0.04342 0.94905,0.07383 0.43681,0.03621 0.87449,0.06303 1.3127,0.07469 0.67345,0.01635 1.34681,0.01429 2.02041,0.01424 0.46167,0.0032 0.9232,0.01328 1.38484,0.0168 0.24885,0.0019 0.30701,-0.187904 0.17785,-0.281223 z m -1.1892,-0.146463 c -0.0282,0.0017 -0.0563,0.0033 -0.0845,0.005 1.8e-4,-0.0051 1.4e-4,-0.01028 -3.5e-4,-0.01542 z m -12.89983,-0.154836 c -0.0466,0.0017 -0.0933,0.0036 -0.1399,0.0052 -0.29731,0.0074 -0.59442,0.0073 -0.89153,0.0013 0.0771,-0.0073 0.13294,-0.03289 0.16775,-0.0672 0.0279,0.0018 0.0558,0.0037 0.0837,0.0055 0.26012,0.01738 0.52031,0.03294 0.78001,0.05521 z m -5.6053,0.204088 c 0.0324,0.0145 0.0718,0.02457 0.1186,0.02867 0.0242,0.0021 0.0484,0.0039 0.0726,0.0059 -0.0773,0.04929 -0.095,0.131761 -0.0531,0.19598 l -0.16401,-0.0202 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath122864-7-3-6">
<path
id="path122866-6-2-4"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19658"
d="m 163.79342,44.374418 -27.00157,24.880748 188.59192,204.667394 27.00157,-24.88074 z m 104.8587,125.774202 c 0.0745,0.0752 0.13899,0.15838 0.19271,0.25536 0.49562,0.89128 -0.89555,2.376 -1.39056,2.99626 -0.5472,0.67853 -1.08224,1.36193 -1.61698,2.05032 -0.0707,-0.0649 -0.14458,-0.12671 -0.21777,-0.19011 l -0.004,-0.005 c -0.32907,-0.28523 -0.67583,-0.55447 -1.01313,-0.8323 -1.28382,0.29025 -2.89096,0.78853 -1.93882,-0.77735 -0.10968,-0.0528 -0.22238,-0.11587 -0.33263,-0.18593 -0.44441,-0.2828 -0.53573,-0.90179 -0.80624,-1.35405 l 3.7e-4,-0.009 c -0.35093,0.10603 -0.73341,0.0578 -1.27693,-0.21567 -0.0847,-0.0276 -0.36213,-0.17445 -0.43632,-0.24318 -0.24145,-0.15003 -0.51132,-0.33616 -0.81645,-0.56357 -0.094,-0.0699 -0.1413,-0.17363 -0.15997,-0.30257 -0.20482,0.0753 -0.41023,0.15068 -0.62437,0.14239 -0.61785,-0.0246 -1.27958,-0.12359 -1.78769,-0.47514 -0.78319,-0.54205 -0.87194,-1.44186 -0.88872,-2.25436 -0.003,-0.16067 -0.0187,-0.32878 0.011,-0.48558 -0.12457,0.007 -0.25134,0.0112 -0.37553,-0.002 -1.8416,-0.20127 -2.63579,-0.87503 -3.40624,-2.27773 -0.56788,0.54501 -1.66991,0.60559 -2.88389,-0.35648 -1.42545,-1.12977 -2.87919,-2.23356 -4.18225,-3.50684 -1.12918,-1.10354 -1.17012,-2.18445 -0.64653,-2.77466 -1.28104,0.19466 -2.43084,0.29531 -3.75293,-0.49803 -1.33612,-0.80175 -1.43036,-2.73489 -1.70341,-4.05059 -0.086,-0.40538 -0.17983,-0.81157 -0.26396,-1.21702 -0.0487,-0.23592 -0.14779,-0.47101 -0.13876,-0.71262 0.007,-0.0799 0.0642,-0.11562 0.16633,-0.18804 -0.21512,0.0235 -0.409,0.0304 -0.5565,-0.005 -0.0226,-0.005 -0.0433,-0.0101 -0.0657,-0.016 -0.33085,0.0732 -0.67699,0.13725 -0.72179,0.14724 -0.43899,0.0446 -0.91633,0.31813 -1.31783,0.13611 -0.67249,-0.30493 -1.24597,-0.85809 -1.64952,-1.4769 -0.1946,-0.29874 -0.0562,-0.71942 -0.0135,-1.07422 0.0672,-0.55827 0.31016,-1.07586 0.52932,-1.5999 -0.31456,-0.1992 -0.62299,-0.40179 -0.89719,-0.642 -0.23287,0.16198 -0.46485,0.32532 -0.70019,0.48393 -0.37385,0.25103 -0.69308,0.79947 -1.13916,0.73541 -3.8031,-0.54329 -3.3808,-1.37213 -2.12175,-3.43585 1.57891,-2.44834 3.2562,-4.85642 4.48232,-7.5092 l -0.009,-0.009 c 0.82831,-1.79269 2.24877,-2.06779 2.98068,-1.36273 0.50044,0.48201 0.67772,1.42473 0.12118,2.65599 -0.54302,1.20123 -1.1761,2.35271 -1.85221,3.48107 0.13987,-0.0441 0.26776,0.0175 0.40692,-0.01 1.28789,-1.35452 3.01413,-0.36695 2.71568,1.44537 0.24552,0.52162 0.2126,1.15046 0.11277,1.78079 0.23189,0.13449 0.46665,0.31308 0.6979,0.54549 0.10038,0.10093 0.1973,0.2094 0.29567,0.33031 0.12365,0.15165 0.24603,0.30569 0.37013,0.45697 0.56272,-0.11732 1.24715,-0.0324 2.0601,0.51279 1.48314,0.99463 2.98857,1.95647 4.45586,2.97457 1.69611,1.1999 3.28347,2.54526 4.79976,3.9651 1.59283,1.43225 3.17881,2.8732 4.708,4.37222 0.20281,0.0813 0.4612,0.0852 0.60395,0.25002 0.16438,0.19019 0.15824,0.39514 0.24086,0.59307 0.24697,0.24962 0.49455,0.50132 0.73803,0.75471 0.56478,0.57235 1.12869,1.14395 1.68812,1.72149 0.0698,0.0291 0.0553,0.0317 0.13447,0.063 0.0148,0.0533 -1.4e-4,0.0471 0.0137,0.0978 1.48832,1.53772 2.96816,3.08464 4.4823,4.59718 0.89288,0.89196 1.09119,1.77339 0.86533,2.3948 0.036,0.1672 0.0756,0.32414 0.069,0.58164 0.51914,-0.28624 1.04307,-0.57211 1.57606,-0.83251 0.69597,0.34532 1.66722,0.40125 2.18888,0.92896 z m -0.73515,2.09518 c -0.4298,0.20262 -0.86776,0.4623 -1.31938,0.71488 0.0338,0.0405 0.0658,0.0771 0.10101,0.11905 0.32512,-0.18353 0.72062,-0.45451 1.2182,-0.8339 z m -4.37673,-1.4514 c 0.0126,-0.0203 0.008,-0.0248 -0.0177,-0.01 -0.11609,0.0596 -0.22299,0.13071 -0.33075,0.20306 0.0155,0.003 0.0312,0.0103 0.048,0.0153 0.0859,0.0195 0.26014,-0.15016 0.30008,-0.20871 z m -7.37557,-3.10274 c -0.0102,-0.008 -0.0202,-0.0162 -0.0301,-0.0232 -0.0145,3.1e-4 -0.0295,-0.003 -0.0447,-0.002 0.0241,0.008 0.0493,0.0167 0.0741,0.0251 z m -13.54256,-11.77628 c -0.0752,-0.0537 -0.14604,-0.1132 -0.21363,-0.17655 0.0204,0.0438 0.0201,0.12925 0.0419,0.16525 0.06,0.0995 0.11314,0.0131 0.17193,0.0115 z m -10.43886,-8.15005 c -0.0731,0.12471 -0.14626,0.25082 -0.22727,0.37068 0.0565,-0.0608 0.21853,-0.25005 0.22727,-0.37068 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath127585-0-5">
<path
id="path127587-0-2"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.223242"
d="m 205.42989,-10.255549 -0.30838,2.5038888 -17.85049,-2.1984849 c 0.0121,-0.061259 -0.0219,-0.1287239 -0.10587,-0.1676779 0.14569,-0.02025 0.21443,-0.0968 0.21656,-0.171019 0.0146,-0.0023 0.0293,-0.0039 0.0438,-0.0065 0.0112,-0.002 0.0217,-0.0045 0.032,-0.007 0.13308,0.01151 0.21551,-0.0421 0.23809,-0.110379 0.0276,0.0032 0.0552,0.0061 0.0828,0.0093 0.54281,0.05888 1.086,0.116708 1.63105,0.150801 8.9e-4,6.4e-5 0.003,-1.9e-5 0.004,3.7e-5 0.50098,0.04878 1.00273,0.09281 1.50547,0.118201 0.48581,0.02199 0.97262,0.03387 1.45906,0.0277 0.36549,-0.0096 0.73149,-0.02453 1.09169,-0.09267 0.17385,-0.03134 0.34737,-0.06377 0.52128,-0.09483 0.16674,-0.02978 0.2279,-0.1299 0.20361,-0.212152 2.6e-4,-5.53e-4 3.2e-4,-0.0011 6.6e-4,-0.0017 0.008,-0.01718 0.0154,-0.03443 0.0235,-0.05158 l -4.5e-4,-5.6e-5 c 0.0753,-0.165557 0.0153,-0.277988 -0.0766,-0.294552 l -4.5e-4,-5.4e-5 c -0.002,-2.62e-4 -0.003,-2.55e-4 -0.004,-4.82e-4 -0.071,-0.01032 -0.15944,0.03598 -0.21967,0.157019 -0.25915,0.01244 -0.51858,-0.0013 -0.77724,-0.01709 -0.45049,-0.03171 -0.89935,-0.07971 -1.34822,-0.128705 -0.40122,-0.05104 -0.80568,-0.07231 -1.20906,-0.09927 -0.64224,-0.04147 -1.28401,-0.08713 -1.92603,-0.131337 -0.5836,-0.03778 -1.16587,-0.09052 -1.74781,-0.148048 -0.29778,-0.02828 -0.59538,-0.06762 -0.89465,-0.0768 -0.0133,1.38e-4 -0.0263,1.64e-4 -0.0396,3.97e-4 -0.0496,7.92e-4 -0.0915,0.0092 -0.1258,0.02273 l 0.16879,-1.370518 16.94604,2.087093 c -0.12894,0.004 -0.25777,0.0085 -0.38682,0.01254 -0.0594,0.0019 -0.10786,0.0145 -0.14558,0.03347 -0.34381,-0.01195 -0.2573,-0.0082 -0.79534,-0.03425 -0.56713,-0.03476 -1.13415,-0.0741 -1.70049,-0.122011 -0.16637,-0.01407 -0.25344,0.06463 -0.25602,0.149026 -0.006,0.0057 -0.0121,0.01143 -0.0171,0.01766 -0.13519,-0.01048 -0.27037,-0.01926 -0.40593,-0.02495 -0.30697,-0.0096 -0.61441,-0.0046 -0.92145,-0.0054 -0.19099,-7.76e-4 -0.38155,-0.0055 -0.57232,-0.01513 -0.0192,-0.0012 -0.0388,-0.002 -0.058,-0.0032 -0.32792,-0.0197 -0.34727,0.311424 -0.0197,0.331013 0.0203,0.0012 0.0402,0.0027 0.0606,0.0039 0.19604,0.0099 0.39232,0.01418 0.5886,0.01494 0.30273,7.95e-4 0.60559,-0.0037 0.90825,0.0055 0.31721,0.01311 0.6331,0.04342 0.94905,0.07383 0.43681,0.03621 0.87449,0.06303 1.3127,0.07469 0.67345,0.01635 1.34681,0.01429 2.02041,0.01424 0.46167,0.0032 0.9232,0.01328 1.38484,0.0168 0.24885,0.0019 0.30701,-0.187904 0.17785,-0.281223 z m -1.1892,-0.146463 c -0.0282,0.0017 -0.0563,0.0033 -0.0845,0.005 1.8e-4,-0.0051 1.4e-4,-0.01028 -3.5e-4,-0.01542 z m -12.89983,-0.154836 c -0.0466,0.0017 -0.0933,0.0036 -0.1399,0.0052 -0.29731,0.0074 -0.59442,0.0073 -0.89153,0.0013 0.0771,-0.0073 0.13294,-0.03289 0.16775,-0.0672 0.0279,0.0018 0.0558,0.0037 0.0837,0.0055 0.26012,0.01738 0.52031,0.03294 0.78001,0.05521 z m -5.6053,0.204088 c 0.0324,0.0145 0.0718,0.02457 0.1186,0.02867 0.0242,0.0021 0.0484,0.0039 0.0726,0.0059 -0.0773,0.04929 -0.095,0.131761 -0.0531,0.19598 l -0.16401,-0.0202 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath122864-7-3-6-5">
<path
id="path122866-6-2-4-2"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19658"
d="m 163.79342,44.374418 -27.00157,24.880748 188.59192,204.667394 27.00157,-24.88074 z m 104.8587,125.774202 c 0.0745,0.0752 0.13899,0.15838 0.19271,0.25536 0.49562,0.89128 -0.89555,2.376 -1.39056,2.99626 -0.5472,0.67853 -1.08224,1.36193 -1.61698,2.05032 -0.0707,-0.0649 -0.14458,-0.12671 -0.21777,-0.19011 l -0.004,-0.005 c -0.32907,-0.28523 -0.67583,-0.55447 -1.01313,-0.8323 -1.28382,0.29025 -2.89096,0.78853 -1.93882,-0.77735 -0.10968,-0.0528 -0.22238,-0.11587 -0.33263,-0.18593 -0.44441,-0.2828 -0.53573,-0.90179 -0.80624,-1.35405 l 3.7e-4,-0.009 c -0.35093,0.10603 -0.73341,0.0578 -1.27693,-0.21567 -0.0847,-0.0276 -0.36213,-0.17445 -0.43632,-0.24318 -0.24145,-0.15003 -0.51132,-0.33616 -0.81645,-0.56357 -0.094,-0.0699 -0.1413,-0.17363 -0.15997,-0.30257 -0.20482,0.0753 -0.41023,0.15068 -0.62437,0.14239 -0.61785,-0.0246 -1.27958,-0.12359 -1.78769,-0.47514 -0.78319,-0.54205 -0.87194,-1.44186 -0.88872,-2.25436 -0.003,-0.16067 -0.0187,-0.32878 0.011,-0.48558 -0.12457,0.007 -0.25134,0.0112 -0.37553,-0.002 -1.8416,-0.20127 -2.63579,-0.87503 -3.40624,-2.27773 -0.56788,0.54501 -1.66991,0.60559 -2.88389,-0.35648 -1.42545,-1.12977 -2.87919,-2.23356 -4.18225,-3.50684 -1.12918,-1.10354 -1.17012,-2.18445 -0.64653,-2.77466 -1.28104,0.19466 -2.43084,0.29531 -3.75293,-0.49803 -1.33612,-0.80175 -1.43036,-2.73489 -1.70341,-4.05059 -0.086,-0.40538 -0.17983,-0.81157 -0.26396,-1.21702 -0.0487,-0.23592 -0.14779,-0.47101 -0.13876,-0.71262 0.007,-0.0799 0.0642,-0.11562 0.16633,-0.18804 -0.21512,0.0235 -0.409,0.0304 -0.5565,-0.005 -0.0226,-0.005 -0.0433,-0.0101 -0.0657,-0.016 -0.33085,0.0732 -0.67699,0.13725 -0.72179,0.14724 -0.43899,0.0446 -0.91633,0.31813 -1.31783,0.13611 -0.67249,-0.30493 -1.24597,-0.85809 -1.64952,-1.4769 -0.1946,-0.29874 -0.0562,-0.71942 -0.0135,-1.07422 0.0672,-0.55827 0.31016,-1.07586 0.52932,-1.5999 -0.31456,-0.1992 -0.62299,-0.40179 -0.89719,-0.642 -0.23287,0.16198 -0.46485,0.32532 -0.70019,0.48393 -0.37385,0.25103 -0.69308,0.79947 -1.13916,0.73541 -3.8031,-0.54329 -3.3808,-1.37213 -2.12175,-3.43585 1.57891,-2.44834 3.2562,-4.85642 4.48232,-7.5092 l -0.009,-0.009 c 0.82831,-1.79269 2.24877,-2.06779 2.98068,-1.36273 0.50044,0.48201 0.67772,1.42473 0.12118,2.65599 -0.54302,1.20123 -1.1761,2.35271 -1.85221,3.48107 0.13987,-0.0441 0.26776,0.0175 0.40692,-0.01 1.28789,-1.35452 3.01413,-0.36695 2.71568,1.44537 0.24552,0.52162 0.2126,1.15046 0.11277,1.78079 0.23189,0.13449 0.46665,0.31308 0.6979,0.54549 0.10038,0.10093 0.1973,0.2094 0.29567,0.33031 0.12365,0.15165 0.24603,0.30569 0.37013,0.45697 0.56272,-0.11732 1.24715,-0.0324 2.0601,0.51279 1.48314,0.99463 2.98857,1.95647 4.45586,2.97457 1.69611,1.1999 3.28347,2.54526 4.79976,3.9651 1.59283,1.43225 3.17881,2.8732 4.708,4.37222 0.20281,0.0813 0.4612,0.0852 0.60395,0.25002 0.16438,0.19019 0.15824,0.39514 0.24086,0.59307 0.24697,0.24962 0.49455,0.50132 0.73803,0.75471 0.56478,0.57235 1.12869,1.14395 1.68812,1.72149 0.0698,0.0291 0.0553,0.0317 0.13447,0.063 0.0148,0.0533 -1.4e-4,0.0471 0.0137,0.0978 1.48832,1.53772 2.96816,3.08464 4.4823,4.59718 0.89288,0.89196 1.09119,1.77339 0.86533,2.3948 0.036,0.1672 0.0756,0.32414 0.069,0.58164 0.51914,-0.28624 1.04307,-0.57211 1.57606,-0.83251 0.69597,0.34532 1.66722,0.40125 2.18888,0.92896 z m -0.73515,2.09518 c -0.4298,0.20262 -0.86776,0.4623 -1.31938,0.71488 0.0338,0.0405 0.0658,0.0771 0.10101,0.11905 0.32512,-0.18353 0.72062,-0.45451 1.2182,-0.8339 z m -4.37673,-1.4514 c 0.0126,-0.0203 0.008,-0.0248 -0.0177,-0.01 -0.11609,0.0596 -0.22299,0.13071 -0.33075,0.20306 0.0155,0.003 0.0312,0.0103 0.048,0.0153 0.0859,0.0195 0.26014,-0.15016 0.30008,-0.20871 z m -7.37557,-3.10274 c -0.0102,-0.008 -0.0202,-0.0162 -0.0301,-0.0232 -0.0145,3.1e-4 -0.0295,-0.003 -0.0447,-0.002 0.0241,0.008 0.0493,0.0167 0.0741,0.0251 z m -13.54256,-11.77628 c -0.0752,-0.0537 -0.14604,-0.1132 -0.21363,-0.17655 0.0204,0.0438 0.0201,0.12925 0.0419,0.16525 0.06,0.0995 0.11314,0.0131 0.17193,0.0115 z m -10.43886,-8.15005 c -0.0731,0.12471 -0.14626,0.25082 -0.22727,0.37068 0.0565,-0.0608 0.21853,-0.25005 0.22727,-0.37068 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath127585-0-5-5">
<path
id="path127587-0-2-7"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.223242"
d="m 205.42989,-10.255549 -0.30838,2.5038888 -17.85049,-2.1984849 c 0.0121,-0.061259 -0.0219,-0.1287239 -0.10587,-0.1676779 0.14569,-0.02025 0.21443,-0.0968 0.21656,-0.171019 0.0146,-0.0023 0.0293,-0.0039 0.0438,-0.0065 0.0112,-0.002 0.0217,-0.0045 0.032,-0.007 0.13308,0.01151 0.21551,-0.0421 0.23809,-0.110379 0.0276,0.0032 0.0552,0.0061 0.0828,0.0093 0.54281,0.05888 1.086,0.116708 1.63105,0.150801 8.9e-4,6.4e-5 0.003,-1.9e-5 0.004,3.7e-5 0.50098,0.04878 1.00273,0.09281 1.50547,0.118201 0.48581,0.02199 0.97262,0.03387 1.45906,0.0277 0.36549,-0.0096 0.73149,-0.02453 1.09169,-0.09267 0.17385,-0.03134 0.34737,-0.06377 0.52128,-0.09483 0.16674,-0.02978 0.2279,-0.1299 0.20361,-0.212152 2.6e-4,-5.53e-4 3.2e-4,-0.0011 6.6e-4,-0.0017 0.008,-0.01718 0.0154,-0.03443 0.0235,-0.05158 l -4.5e-4,-5.6e-5 c 0.0753,-0.165557 0.0153,-0.277988 -0.0766,-0.294552 l -4.5e-4,-5.4e-5 c -0.002,-2.62e-4 -0.003,-2.55e-4 -0.004,-4.82e-4 -0.071,-0.01032 -0.15944,0.03598 -0.21967,0.157019 -0.25915,0.01244 -0.51858,-0.0013 -0.77724,-0.01709 -0.45049,-0.03171 -0.89935,-0.07971 -1.34822,-0.128705 -0.40122,-0.05104 -0.80568,-0.07231 -1.20906,-0.09927 -0.64224,-0.04147 -1.28401,-0.08713 -1.92603,-0.131337 -0.5836,-0.03778 -1.16587,-0.09052 -1.74781,-0.148048 -0.29778,-0.02828 -0.59538,-0.06762 -0.89465,-0.0768 -0.0133,1.38e-4 -0.0263,1.64e-4 -0.0396,3.97e-4 -0.0496,7.92e-4 -0.0915,0.0092 -0.1258,0.02273 l 0.16879,-1.370518 16.94604,2.087093 c -0.12894,0.004 -0.25777,0.0085 -0.38682,0.01254 -0.0594,0.0019 -0.10786,0.0145 -0.14558,0.03347 -0.34381,-0.01195 -0.2573,-0.0082 -0.79534,-0.03425 -0.56713,-0.03476 -1.13415,-0.0741 -1.70049,-0.122011 -0.16637,-0.01407 -0.25344,0.06463 -0.25602,0.149026 -0.006,0.0057 -0.0121,0.01143 -0.0171,0.01766 -0.13519,-0.01048 -0.27037,-0.01926 -0.40593,-0.02495 -0.30697,-0.0096 -0.61441,-0.0046 -0.92145,-0.0054 -0.19099,-7.76e-4 -0.38155,-0.0055 -0.57232,-0.01513 -0.0192,-0.0012 -0.0388,-0.002 -0.058,-0.0032 -0.32792,-0.0197 -0.34727,0.311424 -0.0197,0.331013 0.0203,0.0012 0.0402,0.0027 0.0606,0.0039 0.19604,0.0099 0.39232,0.01418 0.5886,0.01494 0.30273,7.95e-4 0.60559,-0.0037 0.90825,0.0055 0.31721,0.01311 0.6331,0.04342 0.94905,0.07383 0.43681,0.03621 0.87449,0.06303 1.3127,0.07469 0.67345,0.01635 1.34681,0.01429 2.02041,0.01424 0.46167,0.0032 0.9232,0.01328 1.38484,0.0168 0.24885,0.0019 0.30701,-0.187904 0.17785,-0.281223 z m -1.1892,-0.146463 c -0.0282,0.0017 -0.0563,0.0033 -0.0845,0.005 1.8e-4,-0.0051 1.4e-4,-0.01028 -3.5e-4,-0.01542 z m -12.89983,-0.154836 c -0.0466,0.0017 -0.0933,0.0036 -0.1399,0.0052 -0.29731,0.0074 -0.59442,0.0073 -0.89153,0.0013 0.0771,-0.0073 0.13294,-0.03289 0.16775,-0.0672 0.0279,0.0018 0.0558,0.0037 0.0837,0.0055 0.26012,0.01738 0.52031,0.03294 0.78001,0.05521 z m -5.6053,0.204088 c 0.0324,0.0145 0.0718,0.02457 0.1186,0.02867 0.0242,0.0021 0.0484,0.0039 0.0726,0.0059 -0.0773,0.04929 -0.095,0.131761 -0.0531,0.19598 l -0.16401,-0.0202 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath127585-6">
<path
id="path127587-2"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.223242"
d="m 205.42989,-10.255549 -0.30838,2.5038888 -17.85049,-2.1984849 c 0.0121,-0.061259 -0.0219,-0.1287239 -0.10587,-0.1676779 0.14569,-0.02025 0.21443,-0.0968 0.21656,-0.171019 0.0146,-0.0023 0.0293,-0.0039 0.0438,-0.0065 0.0112,-0.002 0.0217,-0.0045 0.032,-0.007 0.13308,0.01151 0.21551,-0.0421 0.23809,-0.110379 0.0276,0.0032 0.0552,0.0061 0.0828,0.0093 0.54281,0.05888 1.086,0.116708 1.63105,0.150801 8.9e-4,6.4e-5 0.003,-1.9e-5 0.004,3.7e-5 0.50098,0.04878 1.00273,0.09281 1.50547,0.118201 0.48581,0.02199 0.97262,0.03387 1.45906,0.0277 0.36549,-0.0096 0.73149,-0.02453 1.09169,-0.09267 0.17385,-0.03134 0.34737,-0.06377 0.52128,-0.09483 0.16674,-0.02978 0.2279,-0.1299 0.20361,-0.212152 2.6e-4,-5.53e-4 3.2e-4,-0.0011 6.6e-4,-0.0017 0.008,-0.01718 0.0154,-0.03443 0.0235,-0.05158 l -4.5e-4,-5.6e-5 c 0.0753,-0.165557 0.0153,-0.277988 -0.0766,-0.294552 l -4.5e-4,-5.4e-5 c -0.002,-2.62e-4 -0.003,-2.55e-4 -0.004,-4.82e-4 -0.071,-0.01032 -0.15944,0.03598 -0.21967,0.157019 -0.25915,0.01244 -0.51858,-0.0013 -0.77724,-0.01709 -0.45049,-0.03171 -0.89935,-0.07971 -1.34822,-0.128705 -0.40122,-0.05104 -0.80568,-0.07231 -1.20906,-0.09927 -0.64224,-0.04147 -1.28401,-0.08713 -1.92603,-0.131337 -0.5836,-0.03778 -1.16587,-0.09052 -1.74781,-0.148048 -0.29778,-0.02828 -0.59538,-0.06762 -0.89465,-0.0768 -0.0133,1.38e-4 -0.0263,1.64e-4 -0.0396,3.97e-4 -0.0496,7.92e-4 -0.0915,0.0092 -0.1258,0.02273 l 0.16879,-1.370518 16.94604,2.087093 c -0.12894,0.004 -0.25777,0.0085 -0.38682,0.01254 -0.0594,0.0019 -0.10786,0.0145 -0.14558,0.03347 -0.34381,-0.01195 -0.2573,-0.0082 -0.79534,-0.03425 -0.56713,-0.03476 -1.13415,-0.0741 -1.70049,-0.122011 -0.16637,-0.01407 -0.25344,0.06463 -0.25602,0.149026 -0.006,0.0057 -0.0121,0.01143 -0.0171,0.01766 -0.13519,-0.01048 -0.27037,-0.01926 -0.40593,-0.02495 -0.30697,-0.0096 -0.61441,-0.0046 -0.92145,-0.0054 -0.19099,-7.76e-4 -0.38155,-0.0055 -0.57232,-0.01513 -0.0192,-0.0012 -0.0388,-0.002 -0.058,-0.0032 -0.32792,-0.0197 -0.34727,0.311424 -0.0197,0.331013 0.0203,0.0012 0.0402,0.0027 0.0606,0.0039 0.19604,0.0099 0.39232,0.01418 0.5886,0.01494 0.30273,7.95e-4 0.60559,-0.0037 0.90825,0.0055 0.31721,0.01311 0.6331,0.04342 0.94905,0.07383 0.43681,0.03621 0.87449,0.06303 1.3127,0.07469 0.67345,0.01635 1.34681,0.01429 2.02041,0.01424 0.46167,0.0032 0.9232,0.01328 1.38484,0.0168 0.24885,0.0019 0.30701,-0.187904 0.17785,-0.281223 z m -1.1892,-0.146463 c -0.0282,0.0017 -0.0563,0.0033 -0.0845,0.005 1.8e-4,-0.0051 1.4e-4,-0.01028 -3.5e-4,-0.01542 z m -12.89983,-0.154836 c -0.0466,0.0017 -0.0933,0.0036 -0.1399,0.0052 -0.29731,0.0074 -0.59442,0.0073 -0.89153,0.0013 0.0771,-0.0073 0.13294,-0.03289 0.16775,-0.0672 0.0279,0.0018 0.0558,0.0037 0.0837,0.0055 0.26012,0.01738 0.52031,0.03294 0.78001,0.05521 z m -5.6053,0.204088 c 0.0324,0.0145 0.0718,0.02457 0.1186,0.02867 0.0242,0.0021 0.0484,0.0039 0.0726,0.0059 -0.0773,0.04929 -0.095,0.131761 -0.0531,0.19598 l -0.16401,-0.0202 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath122864-7-9">
<path
id="path122866-6-8"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19658"
d="m 163.79342,44.374418 -27.00157,24.880748 188.59192,204.667394 27.00157,-24.88074 z m 104.8587,125.774202 c 0.0745,0.0752 0.13899,0.15838 0.19271,0.25536 0.49562,0.89128 -0.89555,2.376 -1.39056,2.99626 -0.5472,0.67853 -1.08224,1.36193 -1.61698,2.05032 -0.0707,-0.0649 -0.14458,-0.12671 -0.21777,-0.19011 l -0.004,-0.005 c -0.32907,-0.28523 -0.67583,-0.55447 -1.01313,-0.8323 -1.28382,0.29025 -2.89096,0.78853 -1.93882,-0.77735 -0.10968,-0.0528 -0.22238,-0.11587 -0.33263,-0.18593 -0.44441,-0.2828 -0.53573,-0.90179 -0.80624,-1.35405 l 3.7e-4,-0.009 c -0.35093,0.10603 -0.73341,0.0578 -1.27693,-0.21567 -0.0847,-0.0276 -0.36213,-0.17445 -0.43632,-0.24318 -0.24145,-0.15003 -0.51132,-0.33616 -0.81645,-0.56357 -0.094,-0.0699 -0.1413,-0.17363 -0.15997,-0.30257 -0.20482,0.0753 -0.41023,0.15068 -0.62437,0.14239 -0.61785,-0.0246 -1.27958,-0.12359 -1.78769,-0.47514 -0.78319,-0.54205 -0.87194,-1.44186 -0.88872,-2.25436 -0.003,-0.16067 -0.0187,-0.32878 0.011,-0.48558 -0.12457,0.007 -0.25134,0.0112 -0.37553,-0.002 -1.8416,-0.20127 -2.63579,-0.87503 -3.40624,-2.27773 -0.56788,0.54501 -1.66991,0.60559 -2.88389,-0.35648 -1.42545,-1.12977 -2.87919,-2.23356 -4.18225,-3.50684 -1.12918,-1.10354 -1.17012,-2.18445 -0.64653,-2.77466 -1.28104,0.19466 -2.43084,0.29531 -3.75293,-0.49803 -1.33612,-0.80175 -1.43036,-2.73489 -1.70341,-4.05059 -0.086,-0.40538 -0.17983,-0.81157 -0.26396,-1.21702 -0.0487,-0.23592 -0.14779,-0.47101 -0.13876,-0.71262 0.007,-0.0799 0.0642,-0.11562 0.16633,-0.18804 -0.21512,0.0235 -0.409,0.0304 -0.5565,-0.005 -0.0226,-0.005 -0.0433,-0.0101 -0.0657,-0.016 -0.33085,0.0732 -0.67699,0.13725 -0.72179,0.14724 -0.43899,0.0446 -0.91633,0.31813 -1.31783,0.13611 -0.67249,-0.30493 -1.24597,-0.85809 -1.64952,-1.4769 -0.1946,-0.29874 -0.0562,-0.71942 -0.0135,-1.07422 0.0672,-0.55827 0.31016,-1.07586 0.52932,-1.5999 -0.31456,-0.1992 -0.62299,-0.40179 -0.89719,-0.642 -0.23287,0.16198 -0.46485,0.32532 -0.70019,0.48393 -0.37385,0.25103 -0.69308,0.79947 -1.13916,0.73541 -3.8031,-0.54329 -3.3808,-1.37213 -2.12175,-3.43585 1.57891,-2.44834 3.2562,-4.85642 4.48232,-7.5092 l -0.009,-0.009 c 0.82831,-1.79269 2.24877,-2.06779 2.98068,-1.36273 0.50044,0.48201 0.67772,1.42473 0.12118,2.65599 -0.54302,1.20123 -1.1761,2.35271 -1.85221,3.48107 0.13987,-0.0441 0.26776,0.0175 0.40692,-0.01 1.28789,-1.35452 3.01413,-0.36695 2.71568,1.44537 0.24552,0.52162 0.2126,1.15046 0.11277,1.78079 0.23189,0.13449 0.46665,0.31308 0.6979,0.54549 0.10038,0.10093 0.1973,0.2094 0.29567,0.33031 0.12365,0.15165 0.24603,0.30569 0.37013,0.45697 0.56272,-0.11732 1.24715,-0.0324 2.0601,0.51279 1.48314,0.99463 2.98857,1.95647 4.45586,2.97457 1.69611,1.1999 3.28347,2.54526 4.79976,3.9651 1.59283,1.43225 3.17881,2.8732 4.708,4.37222 0.20281,0.0813 0.4612,0.0852 0.60395,0.25002 0.16438,0.19019 0.15824,0.39514 0.24086,0.59307 0.24697,0.24962 0.49455,0.50132 0.73803,0.75471 0.56478,0.57235 1.12869,1.14395 1.68812,1.72149 0.0698,0.0291 0.0553,0.0317 0.13447,0.063 0.0148,0.0533 -1.4e-4,0.0471 0.0137,0.0978 1.48832,1.53772 2.96816,3.08464 4.4823,4.59718 0.89288,0.89196 1.09119,1.77339 0.86533,2.3948 0.036,0.1672 0.0756,0.32414 0.069,0.58164 0.51914,-0.28624 1.04307,-0.57211 1.57606,-0.83251 0.69597,0.34532 1.66722,0.40125 2.18888,0.92896 z m -0.73515,2.09518 c -0.4298,0.20262 -0.86776,0.4623 -1.31938,0.71488 0.0338,0.0405 0.0658,0.0771 0.10101,0.11905 0.32512,-0.18353 0.72062,-0.45451 1.2182,-0.8339 z m -4.37673,-1.4514 c 0.0126,-0.0203 0.008,-0.0248 -0.0177,-0.01 -0.11609,0.0596 -0.22299,0.13071 -0.33075,0.20306 0.0155,0.003 0.0312,0.0103 0.048,0.0153 0.0859,0.0195 0.26014,-0.15016 0.30008,-0.20871 z m -7.37557,-3.10274 c -0.0102,-0.008 -0.0202,-0.0162 -0.0301,-0.0232 -0.0145,3.1e-4 -0.0295,-0.003 -0.0447,-0.002 0.0241,0.008 0.0493,0.0167 0.0741,0.0251 z m -13.54256,-11.77628 c -0.0752,-0.0537 -0.14604,-0.1132 -0.21363,-0.17655 0.0204,0.0438 0.0201,0.12925 0.0419,0.16525 0.06,0.0995 0.11314,0.0131 0.17193,0.0115 z m -10.43886,-8.15005 c -0.0731,0.12471 -0.14626,0.25082 -0.22727,0.37068 0.0565,-0.0608 0.21853,-0.25005 0.22727,-0.37068 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath131007">
<path
id="path131005"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.223242"
d="m 205.42989,-10.255549 -0.30838,2.5038888 -17.85049,-2.1984849 c 0.0121,-0.061259 -0.0219,-0.1287239 -0.10587,-0.1676779 0.14569,-0.02025 0.21443,-0.0968 0.21656,-0.171019 0.0146,-0.0023 0.0293,-0.0039 0.0438,-0.0065 0.0112,-0.002 0.0217,-0.0045 0.032,-0.007 0.13308,0.01151 0.21551,-0.0421 0.23809,-0.110379 0.0276,0.0032 0.0552,0.0061 0.0828,0.0093 0.54281,0.05888 1.086,0.116708 1.63105,0.150801 8.9e-4,6.4e-5 0.003,-1.9e-5 0.004,3.7e-5 0.50098,0.04878 1.00273,0.09281 1.50547,0.118201 0.48581,0.02199 0.97262,0.03387 1.45906,0.0277 0.36549,-0.0096 0.73149,-0.02453 1.09169,-0.09267 0.17385,-0.03134 0.34737,-0.06377 0.52128,-0.09483 0.16674,-0.02978 0.2279,-0.1299 0.20361,-0.212152 2.6e-4,-5.53e-4 3.2e-4,-0.0011 6.6e-4,-0.0017 0.008,-0.01718 0.0154,-0.03443 0.0235,-0.05158 l -4.5e-4,-5.6e-5 c 0.0753,-0.165557 0.0153,-0.277988 -0.0766,-0.294552 l -4.5e-4,-5.4e-5 c -0.002,-2.62e-4 -0.003,-2.55e-4 -0.004,-4.82e-4 -0.071,-0.01032 -0.15944,0.03598 -0.21967,0.157019 -0.25915,0.01244 -0.51858,-0.0013 -0.77724,-0.01709 -0.45049,-0.03171 -0.89935,-0.07971 -1.34822,-0.128705 -0.40122,-0.05104 -0.80568,-0.07231 -1.20906,-0.09927 -0.64224,-0.04147 -1.28401,-0.08713 -1.92603,-0.131337 -0.5836,-0.03778 -1.16587,-0.09052 -1.74781,-0.148048 -0.29778,-0.02828 -0.59538,-0.06762 -0.89465,-0.0768 -0.0133,1.38e-4 -0.0263,1.64e-4 -0.0396,3.97e-4 -0.0496,7.92e-4 -0.0915,0.0092 -0.1258,0.02273 l 0.16879,-1.370518 16.94604,2.087093 c -0.12894,0.004 -0.25777,0.0085 -0.38682,0.01254 -0.0594,0.0019 -0.10786,0.0145 -0.14558,0.03347 -0.34381,-0.01195 -0.2573,-0.0082 -0.79534,-0.03425 -0.56713,-0.03476 -1.13415,-0.0741 -1.70049,-0.122011 -0.16637,-0.01407 -0.25344,0.06463 -0.25602,0.149026 -0.006,0.0057 -0.0121,0.01143 -0.0171,0.01766 -0.13519,-0.01048 -0.27037,-0.01926 -0.40593,-0.02495 -0.30697,-0.0096 -0.61441,-0.0046 -0.92145,-0.0054 -0.19099,-7.76e-4 -0.38155,-0.0055 -0.57232,-0.01513 -0.0192,-0.0012 -0.0388,-0.002 -0.058,-0.0032 -0.32792,-0.0197 -0.34727,0.311424 -0.0197,0.331013 0.0203,0.0012 0.0402,0.0027 0.0606,0.0039 0.19604,0.0099 0.39232,0.01418 0.5886,0.01494 0.30273,7.95e-4 0.60559,-0.0037 0.90825,0.0055 0.31721,0.01311 0.6331,0.04342 0.94905,0.07383 0.43681,0.03621 0.87449,0.06303 1.3127,0.07469 0.67345,0.01635 1.34681,0.01429 2.02041,0.01424 0.46167,0.0032 0.9232,0.01328 1.38484,0.0168 0.24885,0.0019 0.30701,-0.187904 0.17785,-0.281223 z m -1.1892,-0.146463 c -0.0282,0.0017 -0.0563,0.0033 -0.0845,0.005 1.8e-4,-0.0051 1.4e-4,-0.01028 -3.5e-4,-0.01542 z m -12.89983,-0.154836 c -0.0466,0.0017 -0.0933,0.0036 -0.1399,0.0052 -0.29731,0.0074 -0.59442,0.0073 -0.89153,0.0013 0.0771,-0.0073 0.13294,-0.03289 0.16775,-0.0672 0.0279,0.0018 0.0558,0.0037 0.0837,0.0055 0.26012,0.01738 0.52031,0.03294 0.78001,0.05521 z m -5.6053,0.204088 c 0.0324,0.0145 0.0718,0.02457 0.1186,0.02867 0.0242,0.0021 0.0484,0.0039 0.0726,0.0059 -0.0773,0.04929 -0.095,0.131761 -0.0531,0.19598 l -0.16401,-0.0202 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath131015">
<path
id="path131013"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19658"
d="m 163.79342,44.374418 -27.00157,24.880748 188.59192,204.667394 27.00157,-24.88074 z m 104.8587,125.774202 c 0.0745,0.0752 0.13899,0.15838 0.19271,0.25536 0.49562,0.89128 -0.89555,2.376 -1.39056,2.99626 -0.5472,0.67853 -1.08224,1.36193 -1.61698,2.05032 -0.0707,-0.0649 -0.14458,-0.12671 -0.21777,-0.19011 l -0.004,-0.005 c -0.32907,-0.28523 -0.67583,-0.55447 -1.01313,-0.8323 -1.28382,0.29025 -2.89096,0.78853 -1.93882,-0.77735 -0.10968,-0.0528 -0.22238,-0.11587 -0.33263,-0.18593 -0.44441,-0.2828 -0.53573,-0.90179 -0.80624,-1.35405 l 3.7e-4,-0.009 c -0.35093,0.10603 -0.73341,0.0578 -1.27693,-0.21567 -0.0847,-0.0276 -0.36213,-0.17445 -0.43632,-0.24318 -0.24145,-0.15003 -0.51132,-0.33616 -0.81645,-0.56357 -0.094,-0.0699 -0.1413,-0.17363 -0.15997,-0.30257 -0.20482,0.0753 -0.41023,0.15068 -0.62437,0.14239 -0.61785,-0.0246 -1.27958,-0.12359 -1.78769,-0.47514 -0.78319,-0.54205 -0.87194,-1.44186 -0.88872,-2.25436 -0.003,-0.16067 -0.0187,-0.32878 0.011,-0.48558 -0.12457,0.007 -0.25134,0.0112 -0.37553,-0.002 -1.8416,-0.20127 -2.63579,-0.87503 -3.40624,-2.27773 -0.56788,0.54501 -1.66991,0.60559 -2.88389,-0.35648 -1.42545,-1.12977 -2.87919,-2.23356 -4.18225,-3.50684 -1.12918,-1.10354 -1.17012,-2.18445 -0.64653,-2.77466 -1.28104,0.19466 -2.43084,0.29531 -3.75293,-0.49803 -1.33612,-0.80175 -1.43036,-2.73489 -1.70341,-4.05059 -0.086,-0.40538 -0.17983,-0.81157 -0.26396,-1.21702 -0.0487,-0.23592 -0.14779,-0.47101 -0.13876,-0.71262 0.007,-0.0799 0.0642,-0.11562 0.16633,-0.18804 -0.21512,0.0235 -0.409,0.0304 -0.5565,-0.005 -0.0226,-0.005 -0.0433,-0.0101 -0.0657,-0.016 -0.33085,0.0732 -0.67699,0.13725 -0.72179,0.14724 -0.43899,0.0446 -0.91633,0.31813 -1.31783,0.13611 -0.67249,-0.30493 -1.24597,-0.85809 -1.64952,-1.4769 -0.1946,-0.29874 -0.0562,-0.71942 -0.0135,-1.07422 0.0672,-0.55827 0.31016,-1.07586 0.52932,-1.5999 -0.31456,-0.1992 -0.62299,-0.40179 -0.89719,-0.642 -0.23287,0.16198 -0.46485,0.32532 -0.70019,0.48393 -0.37385,0.25103 -0.69308,0.79947 -1.13916,0.73541 -3.8031,-0.54329 -3.3808,-1.37213 -2.12175,-3.43585 1.57891,-2.44834 3.2562,-4.85642 4.48232,-7.5092 l -0.009,-0.009 c 0.82831,-1.79269 2.24877,-2.06779 2.98068,-1.36273 0.50044,0.48201 0.67772,1.42473 0.12118,2.65599 -0.54302,1.20123 -1.1761,2.35271 -1.85221,3.48107 0.13987,-0.0441 0.26776,0.0175 0.40692,-0.01 1.28789,-1.35452 3.01413,-0.36695 2.71568,1.44537 0.24552,0.52162 0.2126,1.15046 0.11277,1.78079 0.23189,0.13449 0.46665,0.31308 0.6979,0.54549 0.10038,0.10093 0.1973,0.2094 0.29567,0.33031 0.12365,0.15165 0.24603,0.30569 0.37013,0.45697 0.56272,-0.11732 1.24715,-0.0324 2.0601,0.51279 1.48314,0.99463 2.98857,1.95647 4.45586,2.97457 1.69611,1.1999 3.28347,2.54526 4.79976,3.9651 1.59283,1.43225 3.17881,2.8732 4.708,4.37222 0.20281,0.0813 0.4612,0.0852 0.60395,0.25002 0.16438,0.19019 0.15824,0.39514 0.24086,0.59307 0.24697,0.24962 0.49455,0.50132 0.73803,0.75471 0.56478,0.57235 1.12869,1.14395 1.68812,1.72149 0.0698,0.0291 0.0553,0.0317 0.13447,0.063 0.0148,0.0533 -1.4e-4,0.0471 0.0137,0.0978 1.48832,1.53772 2.96816,3.08464 4.4823,4.59718 0.89288,0.89196 1.09119,1.77339 0.86533,2.3948 0.036,0.1672 0.0756,0.32414 0.069,0.58164 0.51914,-0.28624 1.04307,-0.57211 1.57606,-0.83251 0.69597,0.34532 1.66722,0.40125 2.18888,0.92896 z m -0.73515,2.09518 c -0.4298,0.20262 -0.86776,0.4623 -1.31938,0.71488 0.0338,0.0405 0.0658,0.0771 0.10101,0.11905 0.32512,-0.18353 0.72062,-0.45451 1.2182,-0.8339 z m -4.37673,-1.4514 c 0.0126,-0.0203 0.008,-0.0248 -0.0177,-0.01 -0.11609,0.0596 -0.22299,0.13071 -0.33075,0.20306 0.0155,0.003 0.0312,0.0103 0.048,0.0153 0.0859,0.0195 0.26014,-0.15016 0.30008,-0.20871 z m -7.37557,-3.10274 c -0.0102,-0.008 -0.0202,-0.0162 -0.0301,-0.0232 -0.0145,3.1e-4 -0.0295,-0.003 -0.0447,-0.002 0.0241,0.008 0.0493,0.0167 0.0741,0.0251 z m -13.54256,-11.77628 c -0.0752,-0.0537 -0.14604,-0.1132 -0.21363,-0.17655 0.0204,0.0438 0.0201,0.12925 0.0419,0.16525 0.06,0.0995 0.11314,0.0131 0.17193,0.0115 z m -10.43886,-8.15005 c -0.0731,0.12471 -0.14626,0.25082 -0.22727,0.37068 0.0565,-0.0608 0.21853,-0.25005 0.22727,-0.37068 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath131023">
<path
id="path131021"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.223242"
d="m 205.42989,-10.255549 -0.30838,2.5038888 -17.85049,-2.1984849 c 0.0121,-0.061259 -0.0219,-0.1287239 -0.10587,-0.1676779 0.14569,-0.02025 0.21443,-0.0968 0.21656,-0.171019 0.0146,-0.0023 0.0293,-0.0039 0.0438,-0.0065 0.0112,-0.002 0.0217,-0.0045 0.032,-0.007 0.13308,0.01151 0.21551,-0.0421 0.23809,-0.110379 0.0276,0.0032 0.0552,0.0061 0.0828,0.0093 0.54281,0.05888 1.086,0.116708 1.63105,0.150801 8.9e-4,6.4e-5 0.003,-1.9e-5 0.004,3.7e-5 0.50098,0.04878 1.00273,0.09281 1.50547,0.118201 0.48581,0.02199 0.97262,0.03387 1.45906,0.0277 0.36549,-0.0096 0.73149,-0.02453 1.09169,-0.09267 0.17385,-0.03134 0.34737,-0.06377 0.52128,-0.09483 0.16674,-0.02978 0.2279,-0.1299 0.20361,-0.212152 2.6e-4,-5.53e-4 3.2e-4,-0.0011 6.6e-4,-0.0017 0.008,-0.01718 0.0154,-0.03443 0.0235,-0.05158 l -4.5e-4,-5.6e-5 c 0.0753,-0.165557 0.0153,-0.277988 -0.0766,-0.294552 l -4.5e-4,-5.4e-5 c -0.002,-2.62e-4 -0.003,-2.55e-4 -0.004,-4.82e-4 -0.071,-0.01032 -0.15944,0.03598 -0.21967,0.157019 -0.25915,0.01244 -0.51858,-0.0013 -0.77724,-0.01709 -0.45049,-0.03171 -0.89935,-0.07971 -1.34822,-0.128705 -0.40122,-0.05104 -0.80568,-0.07231 -1.20906,-0.09927 -0.64224,-0.04147 -1.28401,-0.08713 -1.92603,-0.131337 -0.5836,-0.03778 -1.16587,-0.09052 -1.74781,-0.148048 -0.29778,-0.02828 -0.59538,-0.06762 -0.89465,-0.0768 -0.0133,1.38e-4 -0.0263,1.64e-4 -0.0396,3.97e-4 -0.0496,7.92e-4 -0.0915,0.0092 -0.1258,0.02273 l 0.16879,-1.370518 16.94604,2.087093 c -0.12894,0.004 -0.25777,0.0085 -0.38682,0.01254 -0.0594,0.0019 -0.10786,0.0145 -0.14558,0.03347 -0.34381,-0.01195 -0.2573,-0.0082 -0.79534,-0.03425 -0.56713,-0.03476 -1.13415,-0.0741 -1.70049,-0.122011 -0.16637,-0.01407 -0.25344,0.06463 -0.25602,0.149026 -0.006,0.0057 -0.0121,0.01143 -0.0171,0.01766 -0.13519,-0.01048 -0.27037,-0.01926 -0.40593,-0.02495 -0.30697,-0.0096 -0.61441,-0.0046 -0.92145,-0.0054 -0.19099,-7.76e-4 -0.38155,-0.0055 -0.57232,-0.01513 -0.0192,-0.0012 -0.0388,-0.002 -0.058,-0.0032 -0.32792,-0.0197 -0.34727,0.311424 -0.0197,0.331013 0.0203,0.0012 0.0402,0.0027 0.0606,0.0039 0.19604,0.0099 0.39232,0.01418 0.5886,0.01494 0.30273,7.95e-4 0.60559,-0.0037 0.90825,0.0055 0.31721,0.01311 0.6331,0.04342 0.94905,0.07383 0.43681,0.03621 0.87449,0.06303 1.3127,0.07469 0.67345,0.01635 1.34681,0.01429 2.02041,0.01424 0.46167,0.0032 0.9232,0.01328 1.38484,0.0168 0.24885,0.0019 0.30701,-0.187904 0.17785,-0.281223 z m -1.1892,-0.146463 c -0.0282,0.0017 -0.0563,0.0033 -0.0845,0.005 1.8e-4,-0.0051 1.4e-4,-0.01028 -3.5e-4,-0.01542 z m -12.89983,-0.154836 c -0.0466,0.0017 -0.0933,0.0036 -0.1399,0.0052 -0.29731,0.0074 -0.59442,0.0073 -0.89153,0.0013 0.0771,-0.0073 0.13294,-0.03289 0.16775,-0.0672 0.0279,0.0018 0.0558,0.0037 0.0837,0.0055 0.26012,0.01738 0.52031,0.03294 0.78001,0.05521 z m -5.6053,0.204088 c 0.0324,0.0145 0.0718,0.02457 0.1186,0.02867 0.0242,0.0021 0.0484,0.0039 0.0726,0.0059 -0.0773,0.04929 -0.095,0.131761 -0.0531,0.19598 l -0.16401,-0.0202 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath122864-7-3-1">
<path
id="path122866-6-2-6"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19658"
d="m 163.79342,44.374418 -27.00157,24.880748 188.59192,204.667394 27.00157,-24.88074 z m 104.8587,125.774202 c 0.0745,0.0752 0.13899,0.15838 0.19271,0.25536 0.49562,0.89128 -0.89555,2.376 -1.39056,2.99626 -0.5472,0.67853 -1.08224,1.36193 -1.61698,2.05032 -0.0707,-0.0649 -0.14458,-0.12671 -0.21777,-0.19011 l -0.004,-0.005 c -0.32907,-0.28523 -0.67583,-0.55447 -1.01313,-0.8323 -1.28382,0.29025 -2.89096,0.78853 -1.93882,-0.77735 -0.10968,-0.0528 -0.22238,-0.11587 -0.33263,-0.18593 -0.44441,-0.2828 -0.53573,-0.90179 -0.80624,-1.35405 l 3.7e-4,-0.009 c -0.35093,0.10603 -0.73341,0.0578 -1.27693,-0.21567 -0.0847,-0.0276 -0.36213,-0.17445 -0.43632,-0.24318 -0.24145,-0.15003 -0.51132,-0.33616 -0.81645,-0.56357 -0.094,-0.0699 -0.1413,-0.17363 -0.15997,-0.30257 -0.20482,0.0753 -0.41023,0.15068 -0.62437,0.14239 -0.61785,-0.0246 -1.27958,-0.12359 -1.78769,-0.47514 -0.78319,-0.54205 -0.87194,-1.44186 -0.88872,-2.25436 -0.003,-0.16067 -0.0187,-0.32878 0.011,-0.48558 -0.12457,0.007 -0.25134,0.0112 -0.37553,-0.002 -1.8416,-0.20127 -2.63579,-0.87503 -3.40624,-2.27773 -0.56788,0.54501 -1.66991,0.60559 -2.88389,-0.35648 -1.42545,-1.12977 -2.87919,-2.23356 -4.18225,-3.50684 -1.12918,-1.10354 -1.17012,-2.18445 -0.64653,-2.77466 -1.28104,0.19466 -2.43084,0.29531 -3.75293,-0.49803 -1.33612,-0.80175 -1.43036,-2.73489 -1.70341,-4.05059 -0.086,-0.40538 -0.17983,-0.81157 -0.26396,-1.21702 -0.0487,-0.23592 -0.14779,-0.47101 -0.13876,-0.71262 0.007,-0.0799 0.0642,-0.11562 0.16633,-0.18804 -0.21512,0.0235 -0.409,0.0304 -0.5565,-0.005 -0.0226,-0.005 -0.0433,-0.0101 -0.0657,-0.016 -0.33085,0.0732 -0.67699,0.13725 -0.72179,0.14724 -0.43899,0.0446 -0.91633,0.31813 -1.31783,0.13611 -0.67249,-0.30493 -1.24597,-0.85809 -1.64952,-1.4769 -0.1946,-0.29874 -0.0562,-0.71942 -0.0135,-1.07422 0.0672,-0.55827 0.31016,-1.07586 0.52932,-1.5999 -0.31456,-0.1992 -0.62299,-0.40179 -0.89719,-0.642 -0.23287,0.16198 -0.46485,0.32532 -0.70019,0.48393 -0.37385,0.25103 -0.69308,0.79947 -1.13916,0.73541 -3.8031,-0.54329 -3.3808,-1.37213 -2.12175,-3.43585 1.57891,-2.44834 3.2562,-4.85642 4.48232,-7.5092 l -0.009,-0.009 c 0.82831,-1.79269 2.24877,-2.06779 2.98068,-1.36273 0.50044,0.48201 0.67772,1.42473 0.12118,2.65599 -0.54302,1.20123 -1.1761,2.35271 -1.85221,3.48107 0.13987,-0.0441 0.26776,0.0175 0.40692,-0.01 1.28789,-1.35452 3.01413,-0.36695 2.71568,1.44537 0.24552,0.52162 0.2126,1.15046 0.11277,1.78079 0.23189,0.13449 0.46665,0.31308 0.6979,0.54549 0.10038,0.10093 0.1973,0.2094 0.29567,0.33031 0.12365,0.15165 0.24603,0.30569 0.37013,0.45697 0.56272,-0.11732 1.24715,-0.0324 2.0601,0.51279 1.48314,0.99463 2.98857,1.95647 4.45586,2.97457 1.69611,1.1999 3.28347,2.54526 4.79976,3.9651 1.59283,1.43225 3.17881,2.8732 4.708,4.37222 0.20281,0.0813 0.4612,0.0852 0.60395,0.25002 0.16438,0.19019 0.15824,0.39514 0.24086,0.59307 0.24697,0.24962 0.49455,0.50132 0.73803,0.75471 0.56478,0.57235 1.12869,1.14395 1.68812,1.72149 0.0698,0.0291 0.0553,0.0317 0.13447,0.063 0.0148,0.0533 -1.4e-4,0.0471 0.0137,0.0978 1.48832,1.53772 2.96816,3.08464 4.4823,4.59718 0.89288,0.89196 1.09119,1.77339 0.86533,2.3948 0.036,0.1672 0.0756,0.32414 0.069,0.58164 0.51914,-0.28624 1.04307,-0.57211 1.57606,-0.83251 0.69597,0.34532 1.66722,0.40125 2.18888,0.92896 z m -0.73515,2.09518 c -0.4298,0.20262 -0.86776,0.4623 -1.31938,0.71488 0.0338,0.0405 0.0658,0.0771 0.10101,0.11905 0.32512,-0.18353 0.72062,-0.45451 1.2182,-0.8339 z m -4.37673,-1.4514 c 0.0126,-0.0203 0.008,-0.0248 -0.0177,-0.01 -0.11609,0.0596 -0.22299,0.13071 -0.33075,0.20306 0.0155,0.003 0.0312,0.0103 0.048,0.0153 0.0859,0.0195 0.26014,-0.15016 0.30008,-0.20871 z m -7.37557,-3.10274 c -0.0102,-0.008 -0.0202,-0.0162 -0.0301,-0.0232 -0.0145,3.1e-4 -0.0295,-0.003 -0.0447,-0.002 0.0241,0.008 0.0493,0.0167 0.0741,0.0251 z m -13.54256,-11.77628 c -0.0752,-0.0537 -0.14604,-0.1132 -0.21363,-0.17655 0.0204,0.0438 0.0201,0.12925 0.0419,0.16525 0.06,0.0995 0.11314,0.0131 0.17193,0.0115 z m -10.43886,-8.15005 c -0.0731,0.12471 -0.14626,0.25082 -0.22727,0.37068 0.0565,-0.0608 0.21853,-0.25005 0.22727,-0.37068 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath127585-0-4">
<path
id="path127587-0-8"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.223242"
d="m 205.42989,-10.255549 -0.30838,2.5038888 -17.85049,-2.1984849 c 0.0121,-0.061259 -0.0219,-0.1287239 -0.10587,-0.1676779 0.14569,-0.02025 0.21443,-0.0968 0.21656,-0.171019 0.0146,-0.0023 0.0293,-0.0039 0.0438,-0.0065 0.0112,-0.002 0.0217,-0.0045 0.032,-0.007 0.13308,0.01151 0.21551,-0.0421 0.23809,-0.110379 0.0276,0.0032 0.0552,0.0061 0.0828,0.0093 0.54281,0.05888 1.086,0.116708 1.63105,0.150801 8.9e-4,6.4e-5 0.003,-1.9e-5 0.004,3.7e-5 0.50098,0.04878 1.00273,0.09281 1.50547,0.118201 0.48581,0.02199 0.97262,0.03387 1.45906,0.0277 0.36549,-0.0096 0.73149,-0.02453 1.09169,-0.09267 0.17385,-0.03134 0.34737,-0.06377 0.52128,-0.09483 0.16674,-0.02978 0.2279,-0.1299 0.20361,-0.212152 2.6e-4,-5.53e-4 3.2e-4,-0.0011 6.6e-4,-0.0017 0.008,-0.01718 0.0154,-0.03443 0.0235,-0.05158 l -4.5e-4,-5.6e-5 c 0.0753,-0.165557 0.0153,-0.277988 -0.0766,-0.294552 l -4.5e-4,-5.4e-5 c -0.002,-2.62e-4 -0.003,-2.55e-4 -0.004,-4.82e-4 -0.071,-0.01032 -0.15944,0.03598 -0.21967,0.157019 -0.25915,0.01244 -0.51858,-0.0013 -0.77724,-0.01709 -0.45049,-0.03171 -0.89935,-0.07971 -1.34822,-0.128705 -0.40122,-0.05104 -0.80568,-0.07231 -1.20906,-0.09927 -0.64224,-0.04147 -1.28401,-0.08713 -1.92603,-0.131337 -0.5836,-0.03778 -1.16587,-0.09052 -1.74781,-0.148048 -0.29778,-0.02828 -0.59538,-0.06762 -0.89465,-0.0768 -0.0133,1.38e-4 -0.0263,1.64e-4 -0.0396,3.97e-4 -0.0496,7.92e-4 -0.0915,0.0092 -0.1258,0.02273 l 0.16879,-1.370518 16.94604,2.087093 c -0.12894,0.004 -0.25777,0.0085 -0.38682,0.01254 -0.0594,0.0019 -0.10786,0.0145 -0.14558,0.03347 -0.34381,-0.01195 -0.2573,-0.0082 -0.79534,-0.03425 -0.56713,-0.03476 -1.13415,-0.0741 -1.70049,-0.122011 -0.16637,-0.01407 -0.25344,0.06463 -0.25602,0.149026 -0.006,0.0057 -0.0121,0.01143 -0.0171,0.01766 -0.13519,-0.01048 -0.27037,-0.01926 -0.40593,-0.02495 -0.30697,-0.0096 -0.61441,-0.0046 -0.92145,-0.0054 -0.19099,-7.76e-4 -0.38155,-0.0055 -0.57232,-0.01513 -0.0192,-0.0012 -0.0388,-0.002 -0.058,-0.0032 -0.32792,-0.0197 -0.34727,0.311424 -0.0197,0.331013 0.0203,0.0012 0.0402,0.0027 0.0606,0.0039 0.19604,0.0099 0.39232,0.01418 0.5886,0.01494 0.30273,7.95e-4 0.60559,-0.0037 0.90825,0.0055 0.31721,0.01311 0.6331,0.04342 0.94905,0.07383 0.43681,0.03621 0.87449,0.06303 1.3127,0.07469 0.67345,0.01635 1.34681,0.01429 2.02041,0.01424 0.46167,0.0032 0.9232,0.01328 1.38484,0.0168 0.24885,0.0019 0.30701,-0.187904 0.17785,-0.281223 z m -1.1892,-0.146463 c -0.0282,0.0017 -0.0563,0.0033 -0.0845,0.005 1.8e-4,-0.0051 1.4e-4,-0.01028 -3.5e-4,-0.01542 z m -12.89983,-0.154836 c -0.0466,0.0017 -0.0933,0.0036 -0.1399,0.0052 -0.29731,0.0074 -0.59442,0.0073 -0.89153,0.0013 0.0771,-0.0073 0.13294,-0.03289 0.16775,-0.0672 0.0279,0.0018 0.0558,0.0037 0.0837,0.0055 0.26012,0.01738 0.52031,0.03294 0.78001,0.05521 z m -5.6053,0.204088 c 0.0324,0.0145 0.0718,0.02457 0.1186,0.02867 0.0242,0.0021 0.0484,0.0039 0.0726,0.0059 -0.0773,0.04929 -0.095,0.131761 -0.0531,0.19598 l -0.16401,-0.0202 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath122864-7-3-6-3">
<path
id="path122866-6-2-4-6"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19658"
d="m 163.79342,44.374418 -27.00157,24.880748 188.59192,204.667394 27.00157,-24.88074 z m 104.8587,125.774202 c 0.0745,0.0752 0.13899,0.15838 0.19271,0.25536 0.49562,0.89128 -0.89555,2.376 -1.39056,2.99626 -0.5472,0.67853 -1.08224,1.36193 -1.61698,2.05032 -0.0707,-0.0649 -0.14458,-0.12671 -0.21777,-0.19011 l -0.004,-0.005 c -0.32907,-0.28523 -0.67583,-0.55447 -1.01313,-0.8323 -1.28382,0.29025 -2.89096,0.78853 -1.93882,-0.77735 -0.10968,-0.0528 -0.22238,-0.11587 -0.33263,-0.18593 -0.44441,-0.2828 -0.53573,-0.90179 -0.80624,-1.35405 l 3.7e-4,-0.009 c -0.35093,0.10603 -0.73341,0.0578 -1.27693,-0.21567 -0.0847,-0.0276 -0.36213,-0.17445 -0.43632,-0.24318 -0.24145,-0.15003 -0.51132,-0.33616 -0.81645,-0.56357 -0.094,-0.0699 -0.1413,-0.17363 -0.15997,-0.30257 -0.20482,0.0753 -0.41023,0.15068 -0.62437,0.14239 -0.61785,-0.0246 -1.27958,-0.12359 -1.78769,-0.47514 -0.78319,-0.54205 -0.87194,-1.44186 -0.88872,-2.25436 -0.003,-0.16067 -0.0187,-0.32878 0.011,-0.48558 -0.12457,0.007 -0.25134,0.0112 -0.37553,-0.002 -1.8416,-0.20127 -2.63579,-0.87503 -3.40624,-2.27773 -0.56788,0.54501 -1.66991,0.60559 -2.88389,-0.35648 -1.42545,-1.12977 -2.87919,-2.23356 -4.18225,-3.50684 -1.12918,-1.10354 -1.17012,-2.18445 -0.64653,-2.77466 -1.28104,0.19466 -2.43084,0.29531 -3.75293,-0.49803 -1.33612,-0.80175 -1.43036,-2.73489 -1.70341,-4.05059 -0.086,-0.40538 -0.17983,-0.81157 -0.26396,-1.21702 -0.0487,-0.23592 -0.14779,-0.47101 -0.13876,-0.71262 0.007,-0.0799 0.0642,-0.11562 0.16633,-0.18804 -0.21512,0.0235 -0.409,0.0304 -0.5565,-0.005 -0.0226,-0.005 -0.0433,-0.0101 -0.0657,-0.016 -0.33085,0.0732 -0.67699,0.13725 -0.72179,0.14724 -0.43899,0.0446 -0.91633,0.31813 -1.31783,0.13611 -0.67249,-0.30493 -1.24597,-0.85809 -1.64952,-1.4769 -0.1946,-0.29874 -0.0562,-0.71942 -0.0135,-1.07422 0.0672,-0.55827 0.31016,-1.07586 0.52932,-1.5999 -0.31456,-0.1992 -0.62299,-0.40179 -0.89719,-0.642 -0.23287,0.16198 -0.46485,0.32532 -0.70019,0.48393 -0.37385,0.25103 -0.69308,0.79947 -1.13916,0.73541 -3.8031,-0.54329 -3.3808,-1.37213 -2.12175,-3.43585 1.57891,-2.44834 3.2562,-4.85642 4.48232,-7.5092 l -0.009,-0.009 c 0.82831,-1.79269 2.24877,-2.06779 2.98068,-1.36273 0.50044,0.48201 0.67772,1.42473 0.12118,2.65599 -0.54302,1.20123 -1.1761,2.35271 -1.85221,3.48107 0.13987,-0.0441 0.26776,0.0175 0.40692,-0.01 1.28789,-1.35452 3.01413,-0.36695 2.71568,1.44537 0.24552,0.52162 0.2126,1.15046 0.11277,1.78079 0.23189,0.13449 0.46665,0.31308 0.6979,0.54549 0.10038,0.10093 0.1973,0.2094 0.29567,0.33031 0.12365,0.15165 0.24603,0.30569 0.37013,0.45697 0.56272,-0.11732 1.24715,-0.0324 2.0601,0.51279 1.48314,0.99463 2.98857,1.95647 4.45586,2.97457 1.69611,1.1999 3.28347,2.54526 4.79976,3.9651 1.59283,1.43225 3.17881,2.8732 4.708,4.37222 0.20281,0.0813 0.4612,0.0852 0.60395,0.25002 0.16438,0.19019 0.15824,0.39514 0.24086,0.59307 0.24697,0.24962 0.49455,0.50132 0.73803,0.75471 0.56478,0.57235 1.12869,1.14395 1.68812,1.72149 0.0698,0.0291 0.0553,0.0317 0.13447,0.063 0.0148,0.0533 -1.4e-4,0.0471 0.0137,0.0978 1.48832,1.53772 2.96816,3.08464 4.4823,4.59718 0.89288,0.89196 1.09119,1.77339 0.86533,2.3948 0.036,0.1672 0.0756,0.32414 0.069,0.58164 0.51914,-0.28624 1.04307,-0.57211 1.57606,-0.83251 0.69597,0.34532 1.66722,0.40125 2.18888,0.92896 z m -0.73515,2.09518 c -0.4298,0.20262 -0.86776,0.4623 -1.31938,0.71488 0.0338,0.0405 0.0658,0.0771 0.10101,0.11905 0.32512,-0.18353 0.72062,-0.45451 1.2182,-0.8339 z m -4.37673,-1.4514 c 0.0126,-0.0203 0.008,-0.0248 -0.0177,-0.01 -0.11609,0.0596 -0.22299,0.13071 -0.33075,0.20306 0.0155,0.003 0.0312,0.0103 0.048,0.0153 0.0859,0.0195 0.26014,-0.15016 0.30008,-0.20871 z m -7.37557,-3.10274 c -0.0102,-0.008 -0.0202,-0.0162 -0.0301,-0.0232 -0.0145,3.1e-4 -0.0295,-0.003 -0.0447,-0.002 0.0241,0.008 0.0493,0.0167 0.0741,0.0251 z m -13.54256,-11.77628 c -0.0752,-0.0537 -0.14604,-0.1132 -0.21363,-0.17655 0.0204,0.0438 0.0201,0.12925 0.0419,0.16525 0.06,0.0995 0.11314,0.0131 0.17193,0.0115 z m -10.43886,-8.15005 c -0.0731,0.12471 -0.14626,0.25082 -0.22727,0.37068 0.0565,-0.0608 0.21853,-0.25005 0.22727,-0.37068 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath127585-0-5-58">
<path
id="path127587-0-2-4"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.223242"
d="m 205.42989,-10.255549 -0.30838,2.5038888 -17.85049,-2.1984849 c 0.0121,-0.061259 -0.0219,-0.1287239 -0.10587,-0.1676779 0.14569,-0.02025 0.21443,-0.0968 0.21656,-0.171019 0.0146,-0.0023 0.0293,-0.0039 0.0438,-0.0065 0.0112,-0.002 0.0217,-0.0045 0.032,-0.007 0.13308,0.01151 0.21551,-0.0421 0.23809,-0.110379 0.0276,0.0032 0.0552,0.0061 0.0828,0.0093 0.54281,0.05888 1.086,0.116708 1.63105,0.150801 8.9e-4,6.4e-5 0.003,-1.9e-5 0.004,3.7e-5 0.50098,0.04878 1.00273,0.09281 1.50547,0.118201 0.48581,0.02199 0.97262,0.03387 1.45906,0.0277 0.36549,-0.0096 0.73149,-0.02453 1.09169,-0.09267 0.17385,-0.03134 0.34737,-0.06377 0.52128,-0.09483 0.16674,-0.02978 0.2279,-0.1299 0.20361,-0.212152 2.6e-4,-5.53e-4 3.2e-4,-0.0011 6.6e-4,-0.0017 0.008,-0.01718 0.0154,-0.03443 0.0235,-0.05158 l -4.5e-4,-5.6e-5 c 0.0753,-0.165557 0.0153,-0.277988 -0.0766,-0.294552 l -4.5e-4,-5.4e-5 c -0.002,-2.62e-4 -0.003,-2.55e-4 -0.004,-4.82e-4 -0.071,-0.01032 -0.15944,0.03598 -0.21967,0.157019 -0.25915,0.01244 -0.51858,-0.0013 -0.77724,-0.01709 -0.45049,-0.03171 -0.89935,-0.07971 -1.34822,-0.128705 -0.40122,-0.05104 -0.80568,-0.07231 -1.20906,-0.09927 -0.64224,-0.04147 -1.28401,-0.08713 -1.92603,-0.131337 -0.5836,-0.03778 -1.16587,-0.09052 -1.74781,-0.148048 -0.29778,-0.02828 -0.59538,-0.06762 -0.89465,-0.0768 -0.0133,1.38e-4 -0.0263,1.64e-4 -0.0396,3.97e-4 -0.0496,7.92e-4 -0.0915,0.0092 -0.1258,0.02273 l 0.16879,-1.370518 16.94604,2.087093 c -0.12894,0.004 -0.25777,0.0085 -0.38682,0.01254 -0.0594,0.0019 -0.10786,0.0145 -0.14558,0.03347 -0.34381,-0.01195 -0.2573,-0.0082 -0.79534,-0.03425 -0.56713,-0.03476 -1.13415,-0.0741 -1.70049,-0.122011 -0.16637,-0.01407 -0.25344,0.06463 -0.25602,0.149026 -0.006,0.0057 -0.0121,0.01143 -0.0171,0.01766 -0.13519,-0.01048 -0.27037,-0.01926 -0.40593,-0.02495 -0.30697,-0.0096 -0.61441,-0.0046 -0.92145,-0.0054 -0.19099,-7.76e-4 -0.38155,-0.0055 -0.57232,-0.01513 -0.0192,-0.0012 -0.0388,-0.002 -0.058,-0.0032 -0.32792,-0.0197 -0.34727,0.311424 -0.0197,0.331013 0.0203,0.0012 0.0402,0.0027 0.0606,0.0039 0.19604,0.0099 0.39232,0.01418 0.5886,0.01494 0.30273,7.95e-4 0.60559,-0.0037 0.90825,0.0055 0.31721,0.01311 0.6331,0.04342 0.94905,0.07383 0.43681,0.03621 0.87449,0.06303 1.3127,0.07469 0.67345,0.01635 1.34681,0.01429 2.02041,0.01424 0.46167,0.0032 0.9232,0.01328 1.38484,0.0168 0.24885,0.0019 0.30701,-0.187904 0.17785,-0.281223 z m -1.1892,-0.146463 c -0.0282,0.0017 -0.0563,0.0033 -0.0845,0.005 1.8e-4,-0.0051 1.4e-4,-0.01028 -3.5e-4,-0.01542 z m -12.89983,-0.154836 c -0.0466,0.0017 -0.0933,0.0036 -0.1399,0.0052 -0.29731,0.0074 -0.59442,0.0073 -0.89153,0.0013 0.0771,-0.0073 0.13294,-0.03289 0.16775,-0.0672 0.0279,0.0018 0.0558,0.0037 0.0837,0.0055 0.26012,0.01738 0.52031,0.03294 0.78001,0.05521 z m -5.6053,0.204088 c 0.0324,0.0145 0.0718,0.02457 0.1186,0.02867 0.0242,0.0021 0.0484,0.0039 0.0726,0.0059 -0.0773,0.04929 -0.095,0.131761 -0.0531,0.19598 l -0.16401,-0.0202 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath136724">
<path
id="path136726"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.35398"
d="m -975.4721,895.31254 23.68741,12.13656 101.49721,-198.09618 -23.68741,-12.13656 z m 91.328,-177.91582 c 0.49072,-1.06677 1.98006,-1.71235 4.13802,-0.92776 1.30358,0.47376 2.67995,0.69525 4.0008,1.1045 0.26798,0.14788 0.85297,0.14442 0.79956,0.4459 -0.0564,0.31823 -0.12827,0.63226 -0.2149,0.94375 0.0427,0.0245 0.0853,0.049 0.12879,0.0713 0.50926,0.25891 1.02226,0.51319 1.53697,0.76104 1.59278,1.35475 1.75243,1.12191 0.31314,3.49247 1.17647,0.9827 2.25003,2.40708 0.97007,4.01505 -1.12696,1.41576 -2.18515,1.16405 -3.47092,1.04741 -0.37156,-0.0539 -0.74033,-0.11508 -1.10853,-0.18569 0.57819,1.27208 0.28431,2.06227 -1.04182,3.27354 0.11746,0.7151 0.005,1.60691 -0.44119,2.62555 -0.58157,1.32881 -1.18124,2.64814 -1.78885,3.96528 0.50601,0.56772 0.93541,1.18373 0.98382,1.99187 0.0355,0.58998 -0.30229,1.14359 -0.45485,1.71452 -0.29743,0.18244 -0.58593,0.37976 -0.87747,0.57328 0.14264,0.0969 0.28608,0.1963 0.42683,0.29619 1.57325,1.86449 1.52262,1.20132 -1.14861,4.7221 -0.1626,0.2143 -0.49597,0.13736 -0.79068,0.11147 -0.0103,0.3002 -0.0546,0.58775 -0.22607,0.82438 -0.96086,1.32611 -2.34254,1.61436 -3.76602,1.57295 -0.20373,0.40848 -0.45553,0.80137 -0.67397,1.20448 0.0209,0.0186 0.1131,0.10423 0.12637,0.11632 0.0146,0.0128 0.0328,0.03 0.0386,0.0356 -0.0956,-0.0895 -0.21574,-0.19914 0.62552,0.58393 1.78659,1.67216 2.14361,2.66255 0.67031,4.3884 -1.05084,3.934 -1.02691,3.68581 -3.18363,3.6123 -0.8001,-0.10463 -1.58721,-0.26739 -2.37043,-0.45515 -0.1645,0.65305 -0.27673,0.83265 -0.59935,0.72612 -0.0124,0.0175 -0.0231,0.0316 -0.0354,0.049 -0.0792,0.11229 -0.25964,-0.0939 -0.39143,-0.13338 -0.13582,-0.0405 -0.5848,-0.15045 -0.75889,-0.19257 -0.25862,0.52075 -0.73254,0.59673 -1.61983,-0.25653 -0.18538,-0.17804 -0.58949,-0.28352 -0.55605,-0.53803 0.32938,-2.47787 0.41639,-3.64895 1.03313,-4.06317 0.0469,-0.44808 0.10814,-0.72476 0.23278,-0.87779 -0.0247,-1.5511 -0.0188,-1.78017 0.82357,-1.99054 -0.21491,-0.32541 -0.37847,-0.6522 -0.45719,-0.97296 -0.14241,-0.58053 0.0639,-1.19312 0.0958,-1.79003 0.3831,-0.37525 0.62875,-0.64864 0.81244,-0.85973 -0.73966,-0.80645 -0.88889,-1.47816 0.47137,-3.60197 0.50024,-0.781 1.85121,-0.56843 2.913,-0.35172 -0.0329,-0.59177 -0.0308,-1.17888 0.0953,-1.74891 -0.23429,-0.27345 -0.4245,-0.57829 -0.52736,-0.94691 -0.58799,-2.10749 0.73219,-3.28907 2.39814,-3.61179 -0.18198,-0.23924 -0.3066,-0.44677 -0.3151,-0.57475 -0.15328,-2.30412 -0.0564,-3.09009 1.03748,-3.66836 -0.67428,-0.72268 -1.27165,-1.50079 -1.52532,-2.54825 0.1457,-0.65296 0.0634,-1.40069 0.43462,-1.95736 0.81752,-1.22699 2.21302,-1.40776 3.55164,-1.51749 -0.56104,-0.65052 -0.94431,-1.2428 -0.8258,-1.54412 0.51193,-1.30038 1.85053,-2.09207 2.77594,-3.13926 0.1914,0.0298 0.38346,0.0579 0.57485,0.088 0.16035,-0.70943 0.37374,-0.79893 1.12004,-0.77447 -0.0168,-0.32872 0.0483,-0.61795 0.20403,-0.88217 -0.51264,-0.14099 -1.02386,-0.28812 -1.52739,-0.45711 -2.46718,-0.82775 -3.19195,-2.57977 -2.63579,-3.7888 z m -8.84072,42.31009 c 0.0754,0.0175 0.14937,0.0318 0.21558,0.033 -0.0297,-0.01 -0.11644,-0.0213 -0.21558,-0.033 z m 0.37041,-0.23899 c -0.0282,0.0974 -0.0603,0.19073 -0.0973,0.27047 0.0725,-0.008 0.13367,-0.0352 0.17582,-0.10115 0.0202,-0.0317 0.0366,-0.059 0.0564,-0.0899 -0.0398,-0.023 -0.0921,-0.0551 -0.13483,-0.0797 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath136724-5">
<path
id="path136726-2"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.35398"
d="m -975.4721,895.31254 23.68741,12.13656 101.49721,-198.09618 -23.68741,-12.13656 z m 91.328,-177.91582 c 0.49072,-1.06677 1.98006,-1.71235 4.13802,-0.92776 1.30358,0.47376 2.67995,0.69525 4.0008,1.1045 0.26798,0.14788 0.85297,0.14442 0.79956,0.4459 -0.0564,0.31823 -0.12827,0.63226 -0.2149,0.94375 0.0427,0.0245 0.0853,0.049 0.12879,0.0713 0.50926,0.25891 1.02226,0.51319 1.53697,0.76104 1.59278,1.35475 1.75243,1.12191 0.31314,3.49247 1.17647,0.9827 2.25003,2.40708 0.97007,4.01505 -1.12696,1.41576 -2.18515,1.16405 -3.47092,1.04741 -0.37156,-0.0539 -0.74033,-0.11508 -1.10853,-0.18569 0.57819,1.27208 0.28431,2.06227 -1.04182,3.27354 0.11746,0.7151 0.005,1.60691 -0.44119,2.62555 -0.58157,1.32881 -1.18124,2.64814 -1.78885,3.96528 0.50601,0.56772 0.93541,1.18373 0.98382,1.99187 0.0355,0.58998 -0.30229,1.14359 -0.45485,1.71452 -0.29743,0.18244 -0.58593,0.37976 -0.87747,0.57328 0.14264,0.0969 0.28608,0.1963 0.42683,0.29619 1.57325,1.86449 1.52262,1.20132 -1.14861,4.7221 -0.1626,0.2143 -0.49597,0.13736 -0.79068,0.11147 -0.0103,0.3002 -0.0546,0.58775 -0.22607,0.82438 -0.96086,1.32611 -2.34254,1.61436 -3.76602,1.57295 -0.20373,0.40848 -0.45553,0.80137 -0.67397,1.20448 0.0209,0.0186 0.1131,0.10423 0.12637,0.11632 0.0146,0.0128 0.0328,0.03 0.0386,0.0356 -0.0956,-0.0895 -0.21574,-0.19914 0.62552,0.58393 1.78659,1.67216 2.14361,2.66255 0.67031,4.3884 -1.05084,3.934 -1.02691,3.68581 -3.18363,3.6123 -0.8001,-0.10463 -1.58721,-0.26739 -2.37043,-0.45515 -0.1645,0.65305 -0.27673,0.83265 -0.59935,0.72612 -0.0124,0.0175 -0.0231,0.0316 -0.0354,0.049 -0.0792,0.11229 -0.25964,-0.0939 -0.39143,-0.13338 -0.13582,-0.0405 -0.5848,-0.15045 -0.75889,-0.19257 -0.25862,0.52075 -0.73254,0.59673 -1.61983,-0.25653 -0.18538,-0.17804 -0.58949,-0.28352 -0.55605,-0.53803 0.32938,-2.47787 0.41639,-3.64895 1.03313,-4.06317 0.0469,-0.44808 0.10814,-0.72476 0.23278,-0.87779 -0.0247,-1.5511 -0.0188,-1.78017 0.82357,-1.99054 -0.21491,-0.32541 -0.37847,-0.6522 -0.45719,-0.97296 -0.14241,-0.58053 0.0639,-1.19312 0.0958,-1.79003 0.3831,-0.37525 0.62875,-0.64864 0.81244,-0.85973 -0.73966,-0.80645 -0.88889,-1.47816 0.47137,-3.60197 0.50024,-0.781 1.85121,-0.56843 2.913,-0.35172 -0.0329,-0.59177 -0.0308,-1.17888 0.0953,-1.74891 -0.23429,-0.27345 -0.4245,-0.57829 -0.52736,-0.94691 -0.58799,-2.10749 0.73219,-3.28907 2.39814,-3.61179 -0.18198,-0.23924 -0.3066,-0.44677 -0.3151,-0.57475 -0.15328,-2.30412 -0.0564,-3.09009 1.03748,-3.66836 -0.67428,-0.72268 -1.27165,-1.50079 -1.52532,-2.54825 0.1457,-0.65296 0.0634,-1.40069 0.43462,-1.95736 0.81752,-1.22699 2.21302,-1.40776 3.55164,-1.51749 -0.56104,-0.65052 -0.94431,-1.2428 -0.8258,-1.54412 0.51193,-1.30038 1.85053,-2.09207 2.77594,-3.13926 0.1914,0.0298 0.38346,0.0579 0.57485,0.088 0.16035,-0.70943 0.37374,-0.79893 1.12004,-0.77447 -0.0168,-0.32872 0.0483,-0.61795 0.20403,-0.88217 -0.51264,-0.14099 -1.02386,-0.28812 -1.52739,-0.45711 -2.46718,-0.82775 -3.19195,-2.57977 -2.63579,-3.7888 z m -8.84072,42.31009 c 0.0754,0.0175 0.14937,0.0318 0.21558,0.033 -0.0297,-0.01 -0.11644,-0.0213 -0.21558,-0.033 z m 0.37041,-0.23899 c -0.0282,0.0974 -0.0603,0.19073 -0.0973,0.27047 0.0725,-0.008 0.13367,-0.0352 0.17582,-0.10115 0.0202,-0.0317 0.0366,-0.059 0.0564,-0.0899 -0.0398,-0.023 -0.0921,-0.0551 -0.13483,-0.0797 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath136724-5-1">
<path
id="path136726-2-0"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.35398"
d="m -975.4721,895.31254 23.68741,12.13656 101.49721,-198.09618 -23.68741,-12.13656 z m 91.328,-177.91582 c 0.49072,-1.06677 1.98006,-1.71235 4.13802,-0.92776 1.30358,0.47376 2.67995,0.69525 4.0008,1.1045 0.26798,0.14788 0.85297,0.14442 0.79956,0.4459 -0.0564,0.31823 -0.12827,0.63226 -0.2149,0.94375 0.0427,0.0245 0.0853,0.049 0.12879,0.0713 0.50926,0.25891 1.02226,0.51319 1.53697,0.76104 1.59278,1.35475 1.75243,1.12191 0.31314,3.49247 1.17647,0.9827 2.25003,2.40708 0.97007,4.01505 -1.12696,1.41576 -2.18515,1.16405 -3.47092,1.04741 -0.37156,-0.0539 -0.74033,-0.11508 -1.10853,-0.18569 0.57819,1.27208 0.28431,2.06227 -1.04182,3.27354 0.11746,0.7151 0.005,1.60691 -0.44119,2.62555 -0.58157,1.32881 -1.18124,2.64814 -1.78885,3.96528 0.50601,0.56772 0.93541,1.18373 0.98382,1.99187 0.0355,0.58998 -0.30229,1.14359 -0.45485,1.71452 -0.29743,0.18244 -0.58593,0.37976 -0.87747,0.57328 0.14264,0.0969 0.28608,0.1963 0.42683,0.29619 1.57325,1.86449 1.52262,1.20132 -1.14861,4.7221 -0.1626,0.2143 -0.49597,0.13736 -0.79068,0.11147 -0.0103,0.3002 -0.0546,0.58775 -0.22607,0.82438 -0.96086,1.32611 -2.34254,1.61436 -3.76602,1.57295 -0.20373,0.40848 -0.45553,0.80137 -0.67397,1.20448 0.0209,0.0186 0.1131,0.10423 0.12637,0.11632 0.0146,0.0128 0.0328,0.03 0.0386,0.0356 -0.0956,-0.0895 -0.21574,-0.19914 0.62552,0.58393 1.78659,1.67216 2.14361,2.66255 0.67031,4.3884 -1.05084,3.934 -1.02691,3.68581 -3.18363,3.6123 -0.8001,-0.10463 -1.58721,-0.26739 -2.37043,-0.45515 -0.1645,0.65305 -0.27673,0.83265 -0.59935,0.72612 -0.0124,0.0175 -0.0231,0.0316 -0.0354,0.049 -0.0792,0.11229 -0.25964,-0.0939 -0.39143,-0.13338 -0.13582,-0.0405 -0.5848,-0.15045 -0.75889,-0.19257 -0.25862,0.52075 -0.73254,0.59673 -1.61983,-0.25653 -0.18538,-0.17804 -0.58949,-0.28352 -0.55605,-0.53803 0.32938,-2.47787 0.41639,-3.64895 1.03313,-4.06317 0.0469,-0.44808 0.10814,-0.72476 0.23278,-0.87779 -0.0247,-1.5511 -0.0188,-1.78017 0.82357,-1.99054 -0.21491,-0.32541 -0.37847,-0.6522 -0.45719,-0.97296 -0.14241,-0.58053 0.0639,-1.19312 0.0958,-1.79003 0.3831,-0.37525 0.62875,-0.64864 0.81244,-0.85973 -0.73966,-0.80645 -0.88889,-1.47816 0.47137,-3.60197 0.50024,-0.781 1.85121,-0.56843 2.913,-0.35172 -0.0329,-0.59177 -0.0308,-1.17888 0.0953,-1.74891 -0.23429,-0.27345 -0.4245,-0.57829 -0.52736,-0.94691 -0.58799,-2.10749 0.73219,-3.28907 2.39814,-3.61179 -0.18198,-0.23924 -0.3066,-0.44677 -0.3151,-0.57475 -0.15328,-2.30412 -0.0564,-3.09009 1.03748,-3.66836 -0.67428,-0.72268 -1.27165,-1.50079 -1.52532,-2.54825 0.1457,-0.65296 0.0634,-1.40069 0.43462,-1.95736 0.81752,-1.22699 2.21302,-1.40776 3.55164,-1.51749 -0.56104,-0.65052 -0.94431,-1.2428 -0.8258,-1.54412 0.51193,-1.30038 1.85053,-2.09207 2.77594,-3.13926 0.1914,0.0298 0.38346,0.0579 0.57485,0.088 0.16035,-0.70943 0.37374,-0.79893 1.12004,-0.77447 -0.0168,-0.32872 0.0483,-0.61795 0.20403,-0.88217 -0.51264,-0.14099 -1.02386,-0.28812 -1.52739,-0.45711 -2.46718,-0.82775 -3.19195,-2.57977 -2.63579,-3.7888 z m -8.84072,42.31009 c 0.0754,0.0175 0.14937,0.0318 0.21558,0.033 -0.0297,-0.01 -0.11644,-0.0213 -0.21558,-0.033 z m 0.37041,-0.23899 c -0.0282,0.0974 -0.0603,0.19073 -0.0973,0.27047 0.0725,-0.008 0.13367,-0.0352 0.17582,-0.10115 0.0202,-0.0317 0.0366,-0.059 0.0564,-0.0899 -0.0398,-0.023 -0.0921,-0.0551 -0.13483,-0.0797 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath136724-5-1-9">
<path
id="path136726-2-0-4"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.35398"
d="m -975.4721,895.31254 23.68741,12.13656 101.49721,-198.09618 -23.68741,-12.13656 z m 91.328,-177.91582 c 0.49072,-1.06677 1.98006,-1.71235 4.13802,-0.92776 1.30358,0.47376 2.67995,0.69525 4.0008,1.1045 0.26798,0.14788 0.85297,0.14442 0.79956,0.4459 -0.0564,0.31823 -0.12827,0.63226 -0.2149,0.94375 0.0427,0.0245 0.0853,0.049 0.12879,0.0713 0.50926,0.25891 1.02226,0.51319 1.53697,0.76104 1.59278,1.35475 1.75243,1.12191 0.31314,3.49247 1.17647,0.9827 2.25003,2.40708 0.97007,4.01505 -1.12696,1.41576 -2.18515,1.16405 -3.47092,1.04741 -0.37156,-0.0539 -0.74033,-0.11508 -1.10853,-0.18569 0.57819,1.27208 0.28431,2.06227 -1.04182,3.27354 0.11746,0.7151 0.005,1.60691 -0.44119,2.62555 -0.58157,1.32881 -1.18124,2.64814 -1.78885,3.96528 0.50601,0.56772 0.93541,1.18373 0.98382,1.99187 0.0355,0.58998 -0.30229,1.14359 -0.45485,1.71452 -0.29743,0.18244 -0.58593,0.37976 -0.87747,0.57328 0.14264,0.0969 0.28608,0.1963 0.42683,0.29619 1.57325,1.86449 1.52262,1.20132 -1.14861,4.7221 -0.1626,0.2143 -0.49597,0.13736 -0.79068,0.11147 -0.0103,0.3002 -0.0546,0.58775 -0.22607,0.82438 -0.96086,1.32611 -2.34254,1.61436 -3.76602,1.57295 -0.20373,0.40848 -0.45553,0.80137 -0.67397,1.20448 0.0209,0.0186 0.1131,0.10423 0.12637,0.11632 0.0146,0.0128 0.0328,0.03 0.0386,0.0356 -0.0956,-0.0895 -0.21574,-0.19914 0.62552,0.58393 1.78659,1.67216 2.14361,2.66255 0.67031,4.3884 -1.05084,3.934 -1.02691,3.68581 -3.18363,3.6123 -0.8001,-0.10463 -1.58721,-0.26739 -2.37043,-0.45515 -0.1645,0.65305 -0.27673,0.83265 -0.59935,0.72612 -0.0124,0.0175 -0.0231,0.0316 -0.0354,0.049 -0.0792,0.11229 -0.25964,-0.0939 -0.39143,-0.13338 -0.13582,-0.0405 -0.5848,-0.15045 -0.75889,-0.19257 -0.25862,0.52075 -0.73254,0.59673 -1.61983,-0.25653 -0.18538,-0.17804 -0.58949,-0.28352 -0.55605,-0.53803 0.32938,-2.47787 0.41639,-3.64895 1.03313,-4.06317 0.0469,-0.44808 0.10814,-0.72476 0.23278,-0.87779 -0.0247,-1.5511 -0.0188,-1.78017 0.82357,-1.99054 -0.21491,-0.32541 -0.37847,-0.6522 -0.45719,-0.97296 -0.14241,-0.58053 0.0639,-1.19312 0.0958,-1.79003 0.3831,-0.37525 0.62875,-0.64864 0.81244,-0.85973 -0.73966,-0.80645 -0.88889,-1.47816 0.47137,-3.60197 0.50024,-0.781 1.85121,-0.56843 2.913,-0.35172 -0.0329,-0.59177 -0.0308,-1.17888 0.0953,-1.74891 -0.23429,-0.27345 -0.4245,-0.57829 -0.52736,-0.94691 -0.58799,-2.10749 0.73219,-3.28907 2.39814,-3.61179 -0.18198,-0.23924 -0.3066,-0.44677 -0.3151,-0.57475 -0.15328,-2.30412 -0.0564,-3.09009 1.03748,-3.66836 -0.67428,-0.72268 -1.27165,-1.50079 -1.52532,-2.54825 0.1457,-0.65296 0.0634,-1.40069 0.43462,-1.95736 0.81752,-1.22699 2.21302,-1.40776 3.55164,-1.51749 -0.56104,-0.65052 -0.94431,-1.2428 -0.8258,-1.54412 0.51193,-1.30038 1.85053,-2.09207 2.77594,-3.13926 0.1914,0.0298 0.38346,0.0579 0.57485,0.088 0.16035,-0.70943 0.37374,-0.79893 1.12004,-0.77447 -0.0168,-0.32872 0.0483,-0.61795 0.20403,-0.88217 -0.51264,-0.14099 -1.02386,-0.28812 -1.52739,-0.45711 -2.46718,-0.82775 -3.19195,-2.57977 -2.63579,-3.7888 z m -8.84072,42.31009 c 0.0754,0.0175 0.14937,0.0318 0.21558,0.033 -0.0297,-0.01 -0.11644,-0.0213 -0.21558,-0.033 z m 0.37041,-0.23899 c -0.0282,0.0974 -0.0603,0.19073 -0.0973,0.27047 0.0725,-0.008 0.13367,-0.0352 0.17582,-0.10115 0.0202,-0.0317 0.0366,-0.059 0.0564,-0.0899 -0.0398,-0.023 -0.0921,-0.0551 -0.13483,-0.0797 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath136724-52">
<path
id="path136726-9"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.35398"
d="m -975.4721,895.31254 23.68741,12.13656 101.49721,-198.09618 -23.68741,-12.13656 z m 91.328,-177.91582 c 0.49072,-1.06677 1.98006,-1.71235 4.13802,-0.92776 1.30358,0.47376 2.67995,0.69525 4.0008,1.1045 0.26798,0.14788 0.85297,0.14442 0.79956,0.4459 -0.0564,0.31823 -0.12827,0.63226 -0.2149,0.94375 0.0427,0.0245 0.0853,0.049 0.12879,0.0713 0.50926,0.25891 1.02226,0.51319 1.53697,0.76104 1.59278,1.35475 1.75243,1.12191 0.31314,3.49247 1.17647,0.9827 2.25003,2.40708 0.97007,4.01505 -1.12696,1.41576 -2.18515,1.16405 -3.47092,1.04741 -0.37156,-0.0539 -0.74033,-0.11508 -1.10853,-0.18569 0.57819,1.27208 0.28431,2.06227 -1.04182,3.27354 0.11746,0.7151 0.005,1.60691 -0.44119,2.62555 -0.58157,1.32881 -1.18124,2.64814 -1.78885,3.96528 0.50601,0.56772 0.93541,1.18373 0.98382,1.99187 0.0355,0.58998 -0.30229,1.14359 -0.45485,1.71452 -0.29743,0.18244 -0.58593,0.37976 -0.87747,0.57328 0.14264,0.0969 0.28608,0.1963 0.42683,0.29619 1.57325,1.86449 1.52262,1.20132 -1.14861,4.7221 -0.1626,0.2143 -0.49597,0.13736 -0.79068,0.11147 -0.0103,0.3002 -0.0546,0.58775 -0.22607,0.82438 -0.96086,1.32611 -2.34254,1.61436 -3.76602,1.57295 -0.20373,0.40848 -0.45553,0.80137 -0.67397,1.20448 0.0209,0.0186 0.1131,0.10423 0.12637,0.11632 0.0146,0.0128 0.0328,0.03 0.0386,0.0356 -0.0956,-0.0895 -0.21574,-0.19914 0.62552,0.58393 1.78659,1.67216 2.14361,2.66255 0.67031,4.3884 -1.05084,3.934 -1.02691,3.68581 -3.18363,3.6123 -0.8001,-0.10463 -1.58721,-0.26739 -2.37043,-0.45515 -0.1645,0.65305 -0.27673,0.83265 -0.59935,0.72612 -0.0124,0.0175 -0.0231,0.0316 -0.0354,0.049 -0.0792,0.11229 -0.25964,-0.0939 -0.39143,-0.13338 -0.13582,-0.0405 -0.5848,-0.15045 -0.75889,-0.19257 -0.25862,0.52075 -0.73254,0.59673 -1.61983,-0.25653 -0.18538,-0.17804 -0.58949,-0.28352 -0.55605,-0.53803 0.32938,-2.47787 0.41639,-3.64895 1.03313,-4.06317 0.0469,-0.44808 0.10814,-0.72476 0.23278,-0.87779 -0.0247,-1.5511 -0.0188,-1.78017 0.82357,-1.99054 -0.21491,-0.32541 -0.37847,-0.6522 -0.45719,-0.97296 -0.14241,-0.58053 0.0639,-1.19312 0.0958,-1.79003 0.3831,-0.37525 0.62875,-0.64864 0.81244,-0.85973 -0.73966,-0.80645 -0.88889,-1.47816 0.47137,-3.60197 0.50024,-0.781 1.85121,-0.56843 2.913,-0.35172 -0.0329,-0.59177 -0.0308,-1.17888 0.0953,-1.74891 -0.23429,-0.27345 -0.4245,-0.57829 -0.52736,-0.94691 -0.58799,-2.10749 0.73219,-3.28907 2.39814,-3.61179 -0.18198,-0.23924 -0.3066,-0.44677 -0.3151,-0.57475 -0.15328,-2.30412 -0.0564,-3.09009 1.03748,-3.66836 -0.67428,-0.72268 -1.27165,-1.50079 -1.52532,-2.54825 0.1457,-0.65296 0.0634,-1.40069 0.43462,-1.95736 0.81752,-1.22699 2.21302,-1.40776 3.55164,-1.51749 -0.56104,-0.65052 -0.94431,-1.2428 -0.8258,-1.54412 0.51193,-1.30038 1.85053,-2.09207 2.77594,-3.13926 0.1914,0.0298 0.38346,0.0579 0.57485,0.088 0.16035,-0.70943 0.37374,-0.79893 1.12004,-0.77447 -0.0168,-0.32872 0.0483,-0.61795 0.20403,-0.88217 -0.51264,-0.14099 -1.02386,-0.28812 -1.52739,-0.45711 -2.46718,-0.82775 -3.19195,-2.57977 -2.63579,-3.7888 z m -8.84072,42.31009 c 0.0754,0.0175 0.14937,0.0318 0.21558,0.033 -0.0297,-0.01 -0.11644,-0.0213 -0.21558,-0.033 z m 0.37041,-0.23899 c -0.0282,0.0974 -0.0603,0.19073 -0.0973,0.27047 0.0725,-0.008 0.13367,-0.0352 0.17582,-0.10115 0.0202,-0.0317 0.0366,-0.059 0.0564,-0.0899 -0.0398,-0.023 -0.0921,-0.0551 -0.13483,-0.0797 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath136724-5-1-9-7">
<path
id="path136726-2-0-4-7"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.35398"
d="m -975.4721,895.31254 23.68741,12.13656 101.49721,-198.09618 -23.68741,-12.13656 z m 91.328,-177.91582 c 0.49072,-1.06677 1.98006,-1.71235 4.13802,-0.92776 1.30358,0.47376 2.67995,0.69525 4.0008,1.1045 0.26798,0.14788 0.85297,0.14442 0.79956,0.4459 -0.0564,0.31823 -0.12827,0.63226 -0.2149,0.94375 0.0427,0.0245 0.0853,0.049 0.12879,0.0713 0.50926,0.25891 1.02226,0.51319 1.53697,0.76104 1.59278,1.35475 1.75243,1.12191 0.31314,3.49247 1.17647,0.9827 2.25003,2.40708 0.97007,4.01505 -1.12696,1.41576 -2.18515,1.16405 -3.47092,1.04741 -0.37156,-0.0539 -0.74033,-0.11508 -1.10853,-0.18569 0.57819,1.27208 0.28431,2.06227 -1.04182,3.27354 0.11746,0.7151 0.005,1.60691 -0.44119,2.62555 -0.58157,1.32881 -1.18124,2.64814 -1.78885,3.96528 0.50601,0.56772 0.93541,1.18373 0.98382,1.99187 0.0355,0.58998 -0.30229,1.14359 -0.45485,1.71452 -0.29743,0.18244 -0.58593,0.37976 -0.87747,0.57328 0.14264,0.0969 0.28608,0.1963 0.42683,0.29619 1.57325,1.86449 1.52262,1.20132 -1.14861,4.7221 -0.1626,0.2143 -0.49597,0.13736 -0.79068,0.11147 -0.0103,0.3002 -0.0546,0.58775 -0.22607,0.82438 -0.96086,1.32611 -2.34254,1.61436 -3.76602,1.57295 -0.20373,0.40848 -0.45553,0.80137 -0.67397,1.20448 0.0209,0.0186 0.1131,0.10423 0.12637,0.11632 0.0146,0.0128 0.0328,0.03 0.0386,0.0356 -0.0956,-0.0895 -0.21574,-0.19914 0.62552,0.58393 1.78659,1.67216 2.14361,2.66255 0.67031,4.3884 -1.05084,3.934 -1.02691,3.68581 -3.18363,3.6123 -0.8001,-0.10463 -1.58721,-0.26739 -2.37043,-0.45515 -0.1645,0.65305 -0.27673,0.83265 -0.59935,0.72612 -0.0124,0.0175 -0.0231,0.0316 -0.0354,0.049 -0.0792,0.11229 -0.25964,-0.0939 -0.39143,-0.13338 -0.13582,-0.0405 -0.5848,-0.15045 -0.75889,-0.19257 -0.25862,0.52075 -0.73254,0.59673 -1.61983,-0.25653 -0.18538,-0.17804 -0.58949,-0.28352 -0.55605,-0.53803 0.32938,-2.47787 0.41639,-3.64895 1.03313,-4.06317 0.0469,-0.44808 0.10814,-0.72476 0.23278,-0.87779 -0.0247,-1.5511 -0.0188,-1.78017 0.82357,-1.99054 -0.21491,-0.32541 -0.37847,-0.6522 -0.45719,-0.97296 -0.14241,-0.58053 0.0639,-1.19312 0.0958,-1.79003 0.3831,-0.37525 0.62875,-0.64864 0.81244,-0.85973 -0.73966,-0.80645 -0.88889,-1.47816 0.47137,-3.60197 0.50024,-0.781 1.85121,-0.56843 2.913,-0.35172 -0.0329,-0.59177 -0.0308,-1.17888 0.0953,-1.74891 -0.23429,-0.27345 -0.4245,-0.57829 -0.52736,-0.94691 -0.58799,-2.10749 0.73219,-3.28907 2.39814,-3.61179 -0.18198,-0.23924 -0.3066,-0.44677 -0.3151,-0.57475 -0.15328,-2.30412 -0.0564,-3.09009 1.03748,-3.66836 -0.67428,-0.72268 -1.27165,-1.50079 -1.52532,-2.54825 0.1457,-0.65296 0.0634,-1.40069 0.43462,-1.95736 0.81752,-1.22699 2.21302,-1.40776 3.55164,-1.51749 -0.56104,-0.65052 -0.94431,-1.2428 -0.8258,-1.54412 0.51193,-1.30038 1.85053,-2.09207 2.77594,-3.13926 0.1914,0.0298 0.38346,0.0579 0.57485,0.088 0.16035,-0.70943 0.37374,-0.79893 1.12004,-0.77447 -0.0168,-0.32872 0.0483,-0.61795 0.20403,-0.88217 -0.51264,-0.14099 -1.02386,-0.28812 -1.52739,-0.45711 -2.46718,-0.82775 -3.19195,-2.57977 -2.63579,-3.7888 z m -8.84072,42.31009 c 0.0754,0.0175 0.14937,0.0318 0.21558,0.033 -0.0297,-0.01 -0.11644,-0.0213 -0.21558,-0.033 z m 0.37041,-0.23899 c -0.0282,0.0974 -0.0603,0.19073 -0.0973,0.27047 0.0725,-0.008 0.13367,-0.0352 0.17582,-0.10115 0.0202,-0.0317 0.0366,-0.059 0.0564,-0.0899 -0.0398,-0.023 -0.0921,-0.0551 -0.13483,-0.0797 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath136724-5-1-0">
<path
id="path136726-2-0-8"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.35398"
d="m -975.4721,895.31254 23.68741,12.13656 101.49721,-198.09618 -23.68741,-12.13656 z m 91.328,-177.91582 c 0.49072,-1.06677 1.98006,-1.71235 4.13802,-0.92776 1.30358,0.47376 2.67995,0.69525 4.0008,1.1045 0.26798,0.14788 0.85297,0.14442 0.79956,0.4459 -0.0564,0.31823 -0.12827,0.63226 -0.2149,0.94375 0.0427,0.0245 0.0853,0.049 0.12879,0.0713 0.50926,0.25891 1.02226,0.51319 1.53697,0.76104 1.59278,1.35475 1.75243,1.12191 0.31314,3.49247 1.17647,0.9827 2.25003,2.40708 0.97007,4.01505 -1.12696,1.41576 -2.18515,1.16405 -3.47092,1.04741 -0.37156,-0.0539 -0.74033,-0.11508 -1.10853,-0.18569 0.57819,1.27208 0.28431,2.06227 -1.04182,3.27354 0.11746,0.7151 0.005,1.60691 -0.44119,2.62555 -0.58157,1.32881 -1.18124,2.64814 -1.78885,3.96528 0.50601,0.56772 0.93541,1.18373 0.98382,1.99187 0.0355,0.58998 -0.30229,1.14359 -0.45485,1.71452 -0.29743,0.18244 -0.58593,0.37976 -0.87747,0.57328 0.14264,0.0969 0.28608,0.1963 0.42683,0.29619 1.57325,1.86449 1.52262,1.20132 -1.14861,4.7221 -0.1626,0.2143 -0.49597,0.13736 -0.79068,0.11147 -0.0103,0.3002 -0.0546,0.58775 -0.22607,0.82438 -0.96086,1.32611 -2.34254,1.61436 -3.76602,1.57295 -0.20373,0.40848 -0.45553,0.80137 -0.67397,1.20448 0.0209,0.0186 0.1131,0.10423 0.12637,0.11632 0.0146,0.0128 0.0328,0.03 0.0386,0.0356 -0.0956,-0.0895 -0.21574,-0.19914 0.62552,0.58393 1.78659,1.67216 2.14361,2.66255 0.67031,4.3884 -1.05084,3.934 -1.02691,3.68581 -3.18363,3.6123 -0.8001,-0.10463 -1.58721,-0.26739 -2.37043,-0.45515 -0.1645,0.65305 -0.27673,0.83265 -0.59935,0.72612 -0.0124,0.0175 -0.0231,0.0316 -0.0354,0.049 -0.0792,0.11229 -0.25964,-0.0939 -0.39143,-0.13338 -0.13582,-0.0405 -0.5848,-0.15045 -0.75889,-0.19257 -0.25862,0.52075 -0.73254,0.59673 -1.61983,-0.25653 -0.18538,-0.17804 -0.58949,-0.28352 -0.55605,-0.53803 0.32938,-2.47787 0.41639,-3.64895 1.03313,-4.06317 0.0469,-0.44808 0.10814,-0.72476 0.23278,-0.87779 -0.0247,-1.5511 -0.0188,-1.78017 0.82357,-1.99054 -0.21491,-0.32541 -0.37847,-0.6522 -0.45719,-0.97296 -0.14241,-0.58053 0.0639,-1.19312 0.0958,-1.79003 0.3831,-0.37525 0.62875,-0.64864 0.81244,-0.85973 -0.73966,-0.80645 -0.88889,-1.47816 0.47137,-3.60197 0.50024,-0.781 1.85121,-0.56843 2.913,-0.35172 -0.0329,-0.59177 -0.0308,-1.17888 0.0953,-1.74891 -0.23429,-0.27345 -0.4245,-0.57829 -0.52736,-0.94691 -0.58799,-2.10749 0.73219,-3.28907 2.39814,-3.61179 -0.18198,-0.23924 -0.3066,-0.44677 -0.3151,-0.57475 -0.15328,-2.30412 -0.0564,-3.09009 1.03748,-3.66836 -0.67428,-0.72268 -1.27165,-1.50079 -1.52532,-2.54825 0.1457,-0.65296 0.0634,-1.40069 0.43462,-1.95736 0.81752,-1.22699 2.21302,-1.40776 3.55164,-1.51749 -0.56104,-0.65052 -0.94431,-1.2428 -0.8258,-1.54412 0.51193,-1.30038 1.85053,-2.09207 2.77594,-3.13926 0.1914,0.0298 0.38346,0.0579 0.57485,0.088 0.16035,-0.70943 0.37374,-0.79893 1.12004,-0.77447 -0.0168,-0.32872 0.0483,-0.61795 0.20403,-0.88217 -0.51264,-0.14099 -1.02386,-0.28812 -1.52739,-0.45711 -2.46718,-0.82775 -3.19195,-2.57977 -2.63579,-3.7888 z m -8.84072,42.31009 c 0.0754,0.0175 0.14937,0.0318 0.21558,0.033 -0.0297,-0.01 -0.11644,-0.0213 -0.21558,-0.033 z m 0.37041,-0.23899 c -0.0282,0.0974 -0.0603,0.19073 -0.0973,0.27047 0.0725,-0.008 0.13367,-0.0352 0.17582,-0.10115 0.0202,-0.0317 0.0366,-0.059 0.0564,-0.0899 -0.0398,-0.023 -0.0921,-0.0551 -0.13483,-0.0797 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath136724-9">
<path
id="path136726-5"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.35398"
d="m -975.4721,895.31254 23.68741,12.13656 101.49721,-198.09618 -23.68741,-12.13656 z m 91.328,-177.91582 c 0.49072,-1.06677 1.98006,-1.71235 4.13802,-0.92776 1.30358,0.47376 2.67995,0.69525 4.0008,1.1045 0.26798,0.14788 0.85297,0.14442 0.79956,0.4459 -0.0564,0.31823 -0.12827,0.63226 -0.2149,0.94375 0.0427,0.0245 0.0853,0.049 0.12879,0.0713 0.50926,0.25891 1.02226,0.51319 1.53697,0.76104 1.59278,1.35475 1.75243,1.12191 0.31314,3.49247 1.17647,0.9827 2.25003,2.40708 0.97007,4.01505 -1.12696,1.41576 -2.18515,1.16405 -3.47092,1.04741 -0.37156,-0.0539 -0.74033,-0.11508 -1.10853,-0.18569 0.57819,1.27208 0.28431,2.06227 -1.04182,3.27354 0.11746,0.7151 0.005,1.60691 -0.44119,2.62555 -0.58157,1.32881 -1.18124,2.64814 -1.78885,3.96528 0.50601,0.56772 0.93541,1.18373 0.98382,1.99187 0.0355,0.58998 -0.30229,1.14359 -0.45485,1.71452 -0.29743,0.18244 -0.58593,0.37976 -0.87747,0.57328 0.14264,0.0969 0.28608,0.1963 0.42683,0.29619 1.57325,1.86449 1.52262,1.20132 -1.14861,4.7221 -0.1626,0.2143 -0.49597,0.13736 -0.79068,0.11147 -0.0103,0.3002 -0.0546,0.58775 -0.22607,0.82438 -0.96086,1.32611 -2.34254,1.61436 -3.76602,1.57295 -0.20373,0.40848 -0.45553,0.80137 -0.67397,1.20448 0.0209,0.0186 0.1131,0.10423 0.12637,0.11632 0.0146,0.0128 0.0328,0.03 0.0386,0.0356 -0.0956,-0.0895 -0.21574,-0.19914 0.62552,0.58393 1.78659,1.67216 2.14361,2.66255 0.67031,4.3884 -1.05084,3.934 -1.02691,3.68581 -3.18363,3.6123 -0.8001,-0.10463 -1.58721,-0.26739 -2.37043,-0.45515 -0.1645,0.65305 -0.27673,0.83265 -0.59935,0.72612 -0.0124,0.0175 -0.0231,0.0316 -0.0354,0.049 -0.0792,0.11229 -0.25964,-0.0939 -0.39143,-0.13338 -0.13582,-0.0405 -0.5848,-0.15045 -0.75889,-0.19257 -0.25862,0.52075 -0.73254,0.59673 -1.61983,-0.25653 -0.18538,-0.17804 -0.58949,-0.28352 -0.55605,-0.53803 0.32938,-2.47787 0.41639,-3.64895 1.03313,-4.06317 0.0469,-0.44808 0.10814,-0.72476 0.23278,-0.87779 -0.0247,-1.5511 -0.0188,-1.78017 0.82357,-1.99054 -0.21491,-0.32541 -0.37847,-0.6522 -0.45719,-0.97296 -0.14241,-0.58053 0.0639,-1.19312 0.0958,-1.79003 0.3831,-0.37525 0.62875,-0.64864 0.81244,-0.85973 -0.73966,-0.80645 -0.88889,-1.47816 0.47137,-3.60197 0.50024,-0.781 1.85121,-0.56843 2.913,-0.35172 -0.0329,-0.59177 -0.0308,-1.17888 0.0953,-1.74891 -0.23429,-0.27345 -0.4245,-0.57829 -0.52736,-0.94691 -0.58799,-2.10749 0.73219,-3.28907 2.39814,-3.61179 -0.18198,-0.23924 -0.3066,-0.44677 -0.3151,-0.57475 -0.15328,-2.30412 -0.0564,-3.09009 1.03748,-3.66836 -0.67428,-0.72268 -1.27165,-1.50079 -1.52532,-2.54825 0.1457,-0.65296 0.0634,-1.40069 0.43462,-1.95736 0.81752,-1.22699 2.21302,-1.40776 3.55164,-1.51749 -0.56104,-0.65052 -0.94431,-1.2428 -0.8258,-1.54412 0.51193,-1.30038 1.85053,-2.09207 2.77594,-3.13926 0.1914,0.0298 0.38346,0.0579 0.57485,0.088 0.16035,-0.70943 0.37374,-0.79893 1.12004,-0.77447 -0.0168,-0.32872 0.0483,-0.61795 0.20403,-0.88217 -0.51264,-0.14099 -1.02386,-0.28812 -1.52739,-0.45711 -2.46718,-0.82775 -3.19195,-2.57977 -2.63579,-3.7888 z m -8.84072,42.31009 c 0.0754,0.0175 0.14937,0.0318 0.21558,0.033 -0.0297,-0.01 -0.11644,-0.0213 -0.21558,-0.033 z m 0.37041,-0.23899 c -0.0282,0.0974 -0.0603,0.19073 -0.0973,0.27047 0.0725,-0.008 0.13367,-0.0352 0.17582,-0.10115 0.0202,-0.0317 0.0366,-0.059 0.0564,-0.0899 -0.0398,-0.023 -0.0921,-0.0551 -0.13483,-0.0797 z" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath136724-5-3">
<path
id="path136726-2-3"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.35398"
d="m -975.4721,895.31254 23.68741,12.13656 101.49721,-198.09618 -23.68741,-12.13656 z m 91.328,-177.91582 c 0.49072,-1.06677 1.98006,-1.71235 4.13802,-0.92776 1.30358,0.47376 2.67995,0.69525 4.0008,1.1045 0.26798,0.14788 0.85297,0.14442 0.79956,0.4459 -0.0564,0.31823 -0.12827,0.63226 -0.2149,0.94375 0.0427,0.0245 0.0853,0.049 0.12879,0.0713 0.50926,0.25891 1.02226,0.51319 1.53697,0.76104 1.59278,1.35475 1.75243,1.12191 0.31314,3.49247 1.17647,0.9827 2.25003,2.40708 0.97007,4.01505 -1.12696,1.41576 -2.18515,1.16405 -3.47092,1.04741 -0.37156,-0.0539 -0.74033,-0.11508 -1.10853,-0.18569 0.57819,1.27208 0.28431,2.06227 -1.04182,3.27354 0.11746,0.7151 0.005,1.60691 -0.44119,2.62555 -0.58157,1.32881 -1.18124,2.64814 -1.78885,3.96528 0.50601,0.56772 0.93541,1.18373 0.98382,1.99187 0.0355,0.58998 -0.30229,1.14359 -0.45485,1.71452 -0.29743,0.18244 -0.58593,0.37976 -0.87747,0.57328 0.14264,0.0969 0.28608,0.1963 0.42683,0.29619 1.57325,1.86449 1.52262,1.20132 -1.14861,4.7221 -0.1626,0.2143 -0.49597,0.13736 -0.79068,0.11147 -0.0103,0.3002 -0.0546,0.58775 -0.22607,0.82438 -0.96086,1.32611 -2.34254,1.61436 -3.76602,1.57295 -0.20373,0.40848 -0.45553,0.80137 -0.67397,1.20448 0.0209,0.0186 0.1131,0.10423 0.12637,0.11632 0.0146,0.0128 0.0328,0.03 0.0386,0.0356 -0.0956,-0.0895 -0.21574,-0.19914 0.62552,0.58393 1.78659,1.67216 2.14361,2.66255 0.67031,4.3884 -1.05084,3.934 -1.02691,3.68581 -3.18363,3.6123 -0.8001,-0.10463 -1.58721,-0.26739 -2.37043,-0.45515 -0.1645,0.65305 -0.27673,0.83265 -0.59935,0.72612 -0.0124,0.0175 -0.0231,0.0316 -0.0354,0.049 -0.0792,0.11229 -0.25964,-0.0939 -0.39143,-0.13338 -0.13582,-0.0405 -0.5848,-0.15045 -0.75889,-0.19257 -0.25862,0.52075 -0.73254,0.59673 -1.61983,-0.25653 -0.18538,-0.17804 -0.58949,-0.28352 -0.55605,-0.53803 0.32938,-2.47787 0.41639,-3.64895 1.03313,-4.06317 0.0469,-0.44808 0.10814,-0.72476 0.23278,-0.87779 -0.0247,-1.5511 -0.0188,-1.78017 0.82357,-1.99054 -0.21491,-0.32541 -0.37847,-0.6522 -0.45719,-0.97296 -0.14241,-0.58053 0.0639,-1.19312 0.0958,-1.79003 0.3831,-0.37525 0.62875,-0.64864 0.81244,-0.85973 -0.73966,-0.80645 -0.88889,-1.47816 0.47137,-3.60197 0.50024,-0.781 1.85121,-0.56843 2.913,-0.35172 -0.0329,-0.59177 -0.0308,-1.17888 0.0953,-1.74891 -0.23429,-0.27345 -0.4245,-0.57829 -0.52736,-0.94691 -0.58799,-2.10749 0.73219,-3.28907 2.39814,-3.61179 -0.18198,-0.23924 -0.3066,-0.44677 -0.3151,-0.57475 -0.15328,-2.30412 -0.0564,-3.09009 1.03748,-3.66836 -0.67428,-0.72268 -1.27165,-1.50079 -1.52532,-2.54825 0.1457,-0.65296 0.0634,-1.40069 0.43462,-1.95736 0.81752,-1.22699 2.21302,-1.40776 3.55164,-1.51749 -0.56104,-0.65052 -0.94431,-1.2428 -0.8258,-1.54412 0.51193,-1.30038 1.85053,-2.09207 2.77594,-3.13926 0.1914,0.0298 0.38346,0.0579 0.57485,0.088 0.16035,-0.70943 0.37374,-0.79893 1.12004,-0.77447 -0.0168,-0.32872 0.0483,-0.61795 0.20403,-0.88217 -0.51264,-0.14099 -1.02386,-0.28812 -1.52739,-0.45711 -2.46718,-0.82775 -3.19195,-2.57977 -2.63579,-3.7888 z m -8.84072,42.31009 c 0.0754,0.0175 0.14937,0.0318 0.21558,0.033 -0.0297,-0.01 -0.11644,-0.0213 -0.21558,-0.033 z m 0.37041,-0.23899 c -0.0282,0.0974 -0.0603,0.19073 -0.0973,0.27047 0.0725,-0.008 0.13367,-0.0352 0.17582,-0.10115 0.0202,-0.0317 0.0366,-0.059 0.0564,-0.0899 -0.0398,-0.023 -0.0921,-0.0551 -0.13483,-0.0797 z" />
</clipPath>
<filter
color-interpolation-filters="sRGB"
inkscape:collect="always"
id="filter5961"
x="-0.28596836"
width="1.5719367"
y="-0.14576722"
height="1.2915344">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.34813858"
id="feGaussianBlur5963" />
</filter>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3821">
<path
id="path3823"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.19951"
d="m -1013.2767,757.30131 61.28504,150.03873 146.04984,-59.65573 -61.28504,-150.03874 z m 107.71337,17.4014 c 0.0424,-0.0189 0.0872,-0.0361 0.13133,-0.0536 0.86424,-0.34351 2.04485,-0.41485 3.5185,-0.0543 2.48121,0.60701 4.96497,1.21043 7.45365,1.7862 6.30638,1.45893 4.82943,7.83166 -1.47656,6.37124 -1.32228,-0.3062 -2.64441,-0.61256 -3.96367,-0.93326 -0.0148,0.60604 -0.0707,1.24759 -0.2013,1.93841 -0.7185,3.80125 -2.03613,7.48178 -2.77233,11.27648 1.23639,0.7306 1.31828,1.48316 0.32933,3.27158 -0.20358,0.36817 -0.28696,0.95763 -0.51868,1.29775 -0.0371,0.25012 -0.0785,0.49405 -0.1231,0.73244 -3.7e-4,0.005 -0.003,0.0106 -0.003,0.0155 -0.21418,2.48152 -1.94205,4.85116 -3.55766,6.62729 -0.51528,0.0594 -1.10508,0.12118 -1.70187,0.1847 0.1261,0.14119 0.23067,0.27448 0.31652,0.39972 0.0596,-0.003 0.10278,-0.004 0.16427,-0.007 0.11537,-0.002 0.20365,-0.17703 0.31317,-0.14217 0.0743,0.0226 -0.0561,0.14075 -0.095,0.21059 -0.0766,0.1311 -0.12372,0.20782 -0.1789,0.30045 0.14887,0.34702 0.089,0.60827 -0.0802,0.82628 1.14243,1.60146 0.65914,3.40599 -0.93409,4.17744 0.11771,1.90117 -1.8898,3.64295 -5.49902,2.84011 -1.96443,-0.43674 -1.03062,-0.24184 -2.79884,-0.59232 -4.25126,-0.84259 -5.13701,-4.00413 -3.35079,-5.62451 -1.661,-1.66293 -1.22045,-3.82729 0.68477,-4.67423 0.81813,-0.36364 1.90341,-0.4812 3.20303,-0.21319 0.68404,-1.25227 2.4178,-4.47543 3.64578,-4.82101 0.006,-0.002 0.15881,-0.0219 0.22006,-0.0295 0.29473,-0.58231 0.44965,-1.09207 0.46281,-0.30973 3.4e-4,0.0474 -0.002,0.1651 -0.004,0.2521 0.002,-2e-4 0.008,0.002 0.01,7.4e-4 0.0123,-0.24026 6.6e-4,-0.0217 0.0464,-0.86351 -0.35662,-0.27361 -0.23247,-0.92861 -0.16199,-1.54407 -0.0321,-0.11923 -0.0621,-0.24288 -0.08,-0.36639 -0.08,-0.54949 0.0482,-1.07588 0.27574,-1.57439 0.71522,-4.62143 2.16422,-9.075 3.16039,-13.64383 l -0.002,-0.004 c 0.41744,-1.91444 1.16642,-3.27459 2.04022,-4.23016 -0.23076,-1.1682 0.30327,-2.28272 1.52708,-2.828 z m -6.46523,24.32111 0.39403,0.64649 c 0.0947,-0.0107 0.16586,-0.0186 0.26624,-0.0299 -0.0904,-0.16313 -0.18362,-0.3233 -0.27716,-0.48543 -0.1288,-0.0408 -0.25543,-0.0867 -0.38308,-0.13123 z m 0.56839,0.93724 0.67811,1.11514 c -0.0881,-0.40011 -0.24885,-0.77967 -0.43668,-1.14879 -0.073,0.0108 -0.16579,0.0228 -0.24144,0.0337 z m 1.80605,7.34137 c 0.16519,0.0979 0.32419,0.19562 0.47047,0.29972 0.12438,-0.005 0.0425,0.004 0.17545,-0.002 -0.0554,-0.11825 -0.11677,-0.23936 -0.18283,-0.35688 -0.22178,0.0236 -0.24983,0.0362 -0.46308,0.0592 z" />
</clipPath>
</defs>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-13.655774,-27.803468)">
<g
id="g21870">
<g
id="g28548"
transform="matrix(0.74486229,0.02053578,-0.02053578,0.74486229,-7.9765103,9.6977977)">
<path
class="fabric"
id="fs-1"
d="m 146.41227,214.079 c -8.96138,-21.48695 -16.0812,-51.92064 -22.29393,-97.26659 l -10.82,-78.950003 -1.35,-9.91"
sodipodi:nodetypes="cccc"
style="fill:#e2e5de;fill-opacity:1;stroke:#ee00d7;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:9, 3, 0.6, 3;stroke-dashoffset:0;stroke-opacity:0.259067" />
<g
id="g27804"
style="stroke:#7e7e7e;stroke-width:0.9;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">
<g
id="g80638"
style="stroke:#888a85;stroke-opacity:1">
<path
class="fabric sa"
id="fs-3"
d="m 118.67834,27.032407 -13.6526,1.414452 -74.234645,7.690938 M 158.30252,238.24933 c -2.11085,-4.72868 -3.17448,-6.14631 -5.17742,-10.28835 L 146.41227,214.079"
sodipodi:nodetypes="ccccsc"
style="fill:none;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
inkscape:label="fs-3" />
</g>
</g>
<g
id="use143"
transform="translate(146.44833,214.1724)" />
</g>
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.67063;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 14.531116,37.247799 65.650879,-4.977429 8.78057,79.4304 2.712008,18.58618 5.72867,26.78878 4.344587,13.33568 7.93389,19.95704 -38.779576,0.36089 H 39.963501 l -25.971202,0.80543 v 0 L 14.531116,37.247799"
id="path81574"
sodipodi:nodetypes="cccccccccccc" />
<g
id="g11368" />
<g
id="fs-stack-charlie.flyFacing-part-charlie.flyFacing"
style="fill:#e2e5de;fill-opacity:1"
transform="matrix(0.7028879,-0.25921897,0.25921897,0.7028879,-131.51127,-14.553613)">
<g
id="g39764"
transform="rotate(22.455059,279.07376,90.555851)"
style="fill:#e2e5de;fill-opacity:1;stroke:#767676;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
d="m 74.685568,32.969976 29.089412,-3.652287 19.98464,-0.335316 V 190.88188 l -18.86518,-0.31774 -3.92106,-7.98964 -4.439186,-10.2581 c 0,0 -5.047759,-14.46483 -6.553114,-21.95112 -2.245591,-11.16756 -4.138968,-22.66399 -5.657379,-32.94805 -2.905681,-19.679906 -4.43824,-34.920124 -4.43824,-34.920124 z"
id="path113442"
sodipodi:nodetypes="cccccccsscc" />
<path
style="opacity:0.123894;fill:none;stroke:#888a85;stroke-width:0.7;stroke-opacity:0.994819"
d="m 97.403243,157.07573 2.172292,6.66784 -5.614722,4.17838 -15.09042,-1.04364 -5.165723,-8.03319 c 9.457303,-0.77219 14.169737,-1.14051 23.698573,-1.76939 z"
id="path175512"
sodipodi:nodetypes="cccccc" />
<g
id="g85697"
transform="matrix(0.74514532,0,0,0.74514532,8.2236643,3.8034494)">
<path
class="fabric"
id="fs-54"
d="m 282.77467,170.29266 c 0.0822,52.25493 0.44825,104.75858 -0.12485,132.81542 -0.19901,10.07266 -4.24413,47.35181 -4.24413,47.35181 l -20.54726,3.45539"
style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22279793"
sodipodi:nodetypes="cccc"
transform="matrix(-0.99524479,0.09740522,0.09740522,0.99524479,337.75452,-157.0618)" />
<g
id="g893-2"
transform="translate(51.588897,15.829531)">
<path
class="fabric sa"
id="fs-56"
d="m 226.94,169.8 40.35,1.43"
style="fill:#e2e5de;fill-opacity:0.0673575;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.217617"
sodipodi:nodetypes="cc"
transform="matrix(-0.99524479,0.09740522,0.09740522,0.99524479,286.16563,-172.89133)" />
<path
class="fabric"
data-text="right leg seamline"
data-text-class="center fill-note text-sm"
id="fs-6"
d="m 130.85827,115.89241 -10.82,-78.960003 -1.36,-9.9"
style="fill:none;stroke:#888a85;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.290155"
sodipodi:nodetypes="ccc"
transform="rotate(1.579239,250.63205,-2664.2441)" />
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.899999;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.401316"
d="M 280.11065,271.81117 264.18251,166.66082 m 55.7481,96.98685 -17.07631,-104.00085 -38.67179,7.014"
id="path52417"
sodipodi:nodetypes="ccccc"
transform="matrix(1.0046436,0.03879683,-0.03879683,1.0046436,-221.22266,-153.93157)" />
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.0984456"
d="m 144.3869,38.693294 c 2.69927,-0.360207 2.05216,-0.249444 4.18649,-0.346023 l 1.34141,10.411662 1.25413,0.07087 -0.379,-10.840605 c 2.04737,-0.299231 1.9689,-0.159887 5.0557,-0.742604 0.23913,45.078809 6.91508,136.530476 24.17515,178.483236 -1.88131,0.42793 -3.99886,-0.51431 -5.92741,-0.13363 l -1.72631,-7.80818 -1.05286,0.25557 1.64921,7.55264 c -2.45098,0.56426 -4.19325,-0.28889 -5.79378,0.13363 C 157.00671,190.72439 143.65574,96.040673 144.3869,38.693294 Z"
id="path1497-0"
sodipodi:nodetypes="ccccccccccccc"
transform="translate(-99.845055,-15.273884)" />
<path
style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:0.899999;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.473684"
d="m 319.93061,263.64767 6.29804,36.4966 c 0,0 3.11869,18.10599 -1.60562,28.10956 -4.72431,10.00356 -24.25167,23.59904 -24.25167,23.59904 l -6.27815,-16.62978 -7.39451,-28.02193 -6.58805,-35.38999"
id="path52421"
sodipodi:nodetypes="cczcccc"
transform="matrix(1.0046436,0.03879683,-0.03879683,1.0046436,-221.22266,-153.93157)" />
<path
style="fill:#000000;fill-opacity:0.165803;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.181347"
d="m 148.26116,49.51488 -0.75595,-3.590774 5.90587,-1e-6 -0.61421,3.638021 z"
id="path843-3"
sodipodi:nodetypes="ccccc"
transform="translate(-99.845055,-15.273884)" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.181347"
d="m 148.77413,56.415766 0.90444,-6.711898 1.74814,0.04725 0.7492,6.570157 z"
id="path843-7-4"
sodipodi:nodetypes="ccccc"
transform="translate(-99.845055,-15.273884)" />
<path
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 2;stroke-dashoffset:0;stroke-opacity:0.119171"
d="m 150.43452,52.916666 c 1.85231,14.230906 1.7719,39.568014 4.44616,65.483124 4.51148,43.71885 12.02395,78.56157 16.08813,86.51772"
id="path1487-0"
sodipodi:nodetypes="csc"
transform="translate(-99.845055,-15.273884)" />
</g>
</g>
<path
class="dashed"
data-text="j-seam stitch line (left leg)"
data-text-class="center text-sm"
id="fs-5"
d="m 99.785908,29.884732 12.398502,98.210978 c 1.52731,27.4622 0.32377,30.24538 -15.48,38.80191"
style="fill:none;fill-opacity:1;stroke:#ff0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:3, 1;stroke-dashoffset:0;stroke-opacity:1" />
<g
id="g28548-6"
transform="matrix(0.74486229,0.02053578,-0.02053578,0.74486229,121.11309,8.9765067)">
<path
class="fabric"
id="fs-1-5"
d="m 146.41227,214.079 c -8.96138,-21.48695 -16.0812,-51.92064 -22.29393,-97.26659 l -10.82,-78.950003 -1.35,-9.91"
sodipodi:nodetypes="cccc"
style="fill:#e2e5de;fill-opacity:1;stroke:#ee00d7;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:9, 3, 0.6, 3;stroke-dashoffset:0;stroke-opacity:0.259067" />
<g
id="g27804-9"
style="stroke:#7e7e7e;stroke-width:0.9;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">
<g
id="g80638-0"
style="stroke:#888a85;stroke-opacity:1">
<path
class="fabric sa"
id="fs-3-5"
d="m 118.67834,27.032407 -13.6526,1.414452 -74.234645,7.690938 M 158.30252,238.24933 c -2.11085,-4.72868 -3.17448,-6.14631 -5.17742,-10.28835 L 146.41227,214.079"
sodipodi:nodetypes="ccccsc"
style="fill:none;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
inkscape:label="fs-3" />
</g>
</g>
<g
id="use143-4"
transform="translate(146.44833,214.1724)" />
</g>
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.67063;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 143.62072,36.526508 65.65087,-4.977429 8.78057,79.430401 2.71201,18.58618 5.72867,26.78878 4.34459,13.33568 7.93389,19.95704 -38.77958,0.36089 H 169.0531 l -25.9712,0.80543 v 0 l 0.53882,-154.286972"
id="path81574-3"
sodipodi:nodetypes="cccccccccccc" />
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
d="m 203.77517,32.248685 29.08941,-3.652287 19.98464,-0.335316 V 190.16059 l -18.86518,-0.31774 -3.92106,-7.98964 -4.43919,-10.2581 c 0,0 -5.04776,-14.46483 -6.55311,-21.95112 -2.24559,-11.16756 -4.13897,-22.66399 -5.65738,-32.94805 -2.90568,-19.679907 -4.43824,-34.920125 -4.43824,-34.920125 z"
id="path113442-9"
sodipodi:nodetypes="cccccccsscc" />
<g
id="g85697-3"
transform="matrix(0.74514532,0,0,0.74514532,137.31326,3.0821584)">
<path
class="fabric"
id="fs-54-2"
d="m 226.94,169.8 c 0,0 1.04926,25.42609 -0.2295,55.53567 -1.70784,40.21282 -0.0767,62.29139 -4.0006,91.69937 -1.33245,9.98612 -1.95924,22.63578 -1.95924,22.63578 l 29.96495,34.45866"
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.0673575"
sodipodi:nodetypes="csscc"
transform="matrix(-0.99524479,0.09740522,0.09740522,0.99524479,337.75452,-157.0618)" />
<g
id="g893-2-2"
transform="translate(51.588897,15.829531)">
<path
class="fabric sa"
id="fs-56-0"
d="m 226.94,169.8 40.35,1.43"
style="fill:#e2e5de;fill-opacity:0.0673575;stroke:#888a85;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.217617"
sodipodi:nodetypes="cc"
transform="matrix(-0.99524479,0.09740522,0.09740522,0.99524479,286.16563,-172.89133)" />
<path
class="fabric"
data-text="right leg seamline"
data-text-class="center fill-note text-sm"
id="fs-6-0"
d="m 130.85827,115.89241 -10.82,-78.960003 -1.36,-9.9"
style="fill:none;stroke:#888a85;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.290155"
sodipodi:nodetypes="ccc"
transform="rotate(1.579239,250.63205,-2664.2441)" />
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:0.899999;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.401316"
d="M 280.11065,271.81117 264.18251,166.66082 m 55.7481,96.98685 -17.07631,-104.00085 -38.67179,7.014"
id="path52417-7"
sodipodi:nodetypes="ccccc"
transform="matrix(1.0046436,0.03879683,-0.03879683,1.0046436,-221.22266,-153.93157)" />
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.0984456"
d="m 144.3869,38.693294 c 2.69927,-0.360207 2.05216,-0.249444 4.18649,-0.346023 l 1.34141,10.411662 1.25413,0.07087 -0.379,-10.840605 c 2.04737,-0.299231 1.9689,-0.159887 5.0557,-0.742604 0.23913,45.078809 7.51219,136.306556 24.77226,178.259316 -1.88131,0.42793 -3.99886,-0.51431 -5.92741,-0.13363 l -1.72631,-7.80818 -1.05286,0.25557 1.64921,7.55264 c -2.45098,0.56426 -4.19325,-0.28889 -5.79378,0.13363 C 157.60382,190.50047 143.65574,96.040673 144.3869,38.693294 Z"
id="path1497-0-6"
sodipodi:nodetypes="ccccccccccccc"
transform="translate(-99.845055,-15.273884)" />
<path
style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:0.899999;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.473684"
d="m 319.93061,263.64767 6.29804,36.4966 c 0,0 3.11869,18.10599 -1.60562,28.10956 -4.72431,10.00356 -24.25167,23.59904 -24.25167,23.59904 l -6.27815,-16.62978 -7.39451,-28.02193 -6.58805,-35.38999"
id="path52421-8"
sodipodi:nodetypes="cczcccc"
transform="matrix(1.0046436,0.03879683,-0.03879683,1.0046436,-221.22266,-153.93157)" />
<path
style="fill:#000000;fill-opacity:0.165803;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.181347"
d="m 148.26116,49.51488 -0.75595,-3.590774 5.90587,-1e-6 -0.61421,3.638021 z"
id="path843-3-8"
sodipodi:nodetypes="ccccc"
transform="translate(-99.845055,-15.273884)" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.181347"
d="m 148.77413,56.415766 0.90444,-6.711898 1.74814,0.04725 0.7492,6.570157 z"
id="path843-7-4-2"
sodipodi:nodetypes="ccccc"
transform="translate(-99.845055,-15.273884)" />
<path
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 2;stroke-dashoffset:0;stroke-opacity:0.119171"
d="m 150.43452,52.916666 c 1.85231,14.230906 1.17478,31.80551 3.84904,57.720624 4.51148,43.71885 12.87934,87.18765 16.94352,95.1438"
id="path1487-0-6"
sodipodi:nodetypes="csc"
transform="translate(-99.845055,-15.273884)" />
</g>
</g>
<g
id="use145-8"
transform="matrix(0.7448623,0.02053578,-0.02053578,0.7448623,230.42024,181.79305)">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8490-5"
style="fill:#8b5cf6;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8492-2"
style="fill:none;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8486-2"
style="fill:none;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
transform="translate(-6.5800162,-13.620022)" />
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8484-8"
style="fill:#8b5cf6;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
transform="translate(-6.5800162,-13.620022)" />
</g>
<path
class="dashed"
data-text="j-seam stitch line (left leg)"
data-text-class="center text-sm"
id="fs-5-9"
d="m 228.94836,29.50848 12.3985,98.21098 c 1.52731,27.4622 0.32377,30.24538 -15.48,38.80191"
style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:3, 1;stroke-dashoffset:0;stroke-opacity:1" />
<path
class="stroke-sm stroke-mark"
id="fs-8"
d="m 230.17631,165.75288 v 0 l -1.06874,-2.18177 0.29072,2.54149 -1.07692,-2.17905 0.3019,2.52078 -1.04423,-2.18989 0.24727,2.54739 -0.98144,-2.21919 0.21757,2.5402 -0.97327,-2.22188 0.16033,2.55915 -0.94874,-2.23002 0.17408,2.54609 -0.91605,-2.24086"
style="fill:none;stroke:#ff0000;stroke-width:0.500377;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" />
<path
class="stroke-sm stroke-mark"
id="fs-8-4"
d="m 243.42729,137.39722 v 0 l -2.42899,-0.0483 2.39274,0.90467 -2.43031,-0.0398 2.37945,0.88526 -2.42499,-0.0738 2.37811,0.94601 -2.42231,-0.14303 2.35812,0.96912 -2.42096,-0.15153 2.34878,1.0287 -2.41697,-0.17707 2.34345,1.01049 -2.41164,-0.2111"
style="fill:none;stroke:#9100ff;stroke-width:0.500377;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
inkscape:transform-center-x="0.66740691"
inkscape:transform-center-y="2.5583984" />
<g
transform="matrix(0.11136015,0.04548633,-0.04548633,0.11136015,221.88071,115.27791)"
id="g5081"
clip-path="url(#clipPath3821)">
<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;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
d="m -872.71875,708.375 c -0.53441,0.0631 -1.02063,0.43716 -1.21875,0.9375 l -70.92857,176.41964 c -0.29479,0.73322 -6.42774,17.20588 -7.12371,21.60935 1.89331,-2.11438 9.61017,-19.75113 9.90496,-20.48435 l 70.92857,-176.41964 c 0.39709,-0.96136 -0.52954,-2.18451 -1.5625,-2.0625 z"
id="path5083"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccscscc" />
<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;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#333333;stroke:none;stroke-width:0.3;marker:none;enable-background:accumulate"
d="m -872.71875,708.375 c -0.53441,0.0631 -1.02063,0.43716 -1.21875,0.9375 l -70.9375,176.40625 c -0.16083,0.40002 -3.42237,10.27293 -5.22768,15.52679 2.50715,-5.34168 6.40548,-15.86402 6.57143,-16.27679 L -874.8074,714.0371 c 0.14952,-0.55764 1.72868,-1.39366 2.30956,-1.26382 1.54913,0.34628 -0.51228,-2.87814 -0.0959,-4.24203 0.0226,-0.0548 0.017,-0.10005 0.0312,-0.15625 -0.053,-7.2e-4 -0.10245,-0.006 -0.15625,0 z"
id="path5085"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccscccc" />
<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;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#999999;stroke:none;stroke-width:0.3;marker:none;enable-background:accumulate"
d="m -871.40625,709 c -0.0742,0.10035 -0.14144,0.19618 -0.1875,0.3125 l -70.9375,176.40625 c -0.16083,0.40002 -2.66344,6.56757 -4.46875,11.82143 2.17724,-4.71497 4.76029,-10.33339 4.90625,-10.69643 l 70.9375,-176.40625 c 0.19854,-0.48068 0.0611,-1.02679 -0.25,-1.4375 z"
id="path5087"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" />
<circle
style="fill:#b60724;fill-opacity:1;stroke:#aa203a;stroke-width:1.68528;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.8;stroke-opacity:1"
id="path5089"
transform="matrix(0.59337348,0,0,0.59337348,-354.27336,287.26915)"
cx="-871.25"
cy="706.4693"
r="10.357142" />
<path
style="fill:#ffb7c4;fill-opacity:1;stroke:none;filter:url(#filter5961)"
d="m -869.03125,702.3125 c -0.57745,-0.0868 -0.34375,1.13049 -0.34375,1.75 0,1.82098 0.66684,2.87775 2.17411,3.91964 0.48827,0.33752 0.70089,-0.88328 0.70089,-1.51339 0,-1.81021 -0.85815,-3.90488 -2.53125,-4.15625 z"
id="path5091"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssss" />
</g>
</g>
<g
id="use145"
transform="matrix(0.7448623,0.02053578,-0.02053578,0.7448623,101.33064,182.51434)">
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8490"
style="fill:#8b5cf6;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8492"
style="fill:none;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8486"
style="fill:none;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
transform="translate(-6.5800162,-13.620022)" />
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8484"
style="fill:#8b5cf6;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
transform="translate(-6.5800162,-13.620022)" />
</g>
<g
id="use145-0"
transform="matrix(0.7448623,0.02053578,-0.02053578,0.7448623,99.340471,177.70256)">
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8486-8"
style="fill:none;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
transform="translate(-6.5800162,-13.620022)" />
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8484-7"
style="fill:#8b5cf6;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
transform="translate(-6.5800162,-13.620022)" />
</g>
<g
id="use145-0-3"
transform="matrix(0.7448623,0.02053578,-0.02053578,0.7448623,228.95541,177.4488)"
style="opacity:0.402655">
<circle
cy="0"
cx="0"
r="2.8"
class="note"
id="circle8486-8-3"
style="fill:none;stroke:#8b5cf6;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
transform="translate(-6.5800162,-13.620022)" />
<circle
cy="0"
cx="0"
r="1.4"
class="fill-note"
id="circle8484-7-7"
style="fill:#8b5cf6;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
transform="translate(-6.5800162,-13.620022)" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 152 KiB

View file

@ -0,0 +1,285 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="305.98901mm"
height="24.598883mm"
viewBox="0 0 305.98902 24.598883"
version="1.1"
id="svg847"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="StitchAndCutLoops.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs841">
<marker
style="overflow:visible"
id="Scissors"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Scissors"
markerWidth="15.249177"
markerHeight="9.0857267"
viewBox="0 0 15.249177 9.0857269"
inkscape:isstock="true"
inkscape:collect="always"
preserveAspectRatio="xMidYMid">
<path
style="fill:context-stroke"
d="M 9.0898857,-3.6061018 C 8.1198849,-4.7769976 6.3697607,-4.7358294 5.0623558,-4.2327734 l -8.2124046,3.0779029 c -2.3882933,-1.3067135 -4.7482873,-0.9325372 -4.7482873,-1.5687873 0,-0.4973164 0.4566662,-0.3883222 0.3883068,-1.6831941 -0.065635,-1.2432767 -1.3635771,-2.1630796 -2.5903987,-2.0816435 -1.227271,-0.00735 -2.499439,0.9331613 -2.510341,2.2300611 -0.09143,1.3063864 1.007209,2.5196896 2.306764,2.6052316 1.5223406,0.2266616 4.218258,-0.6955566 5.482945,1.57086006 -0.9422847,1.73825774 -2.6140244,1.74307674 -4.1255107,1.65607034 -1.2548743,-0.072235 -2.7620933,0.2873979 -3.3606483,1.5208605 -0.578367,1.1820862 -0.0112,2.8646022 1.316749,3.226412 1.3401912,0.4918277 3.1806689,-0.129711 3.4993722,-1.6707242 0.2456585,-1.187823 -0.5953659,-1.7459574 -0.2725074,-2.1771537 0.2436135,-0.32536 1.7907806,-0.1368452 4.5471053,-1.3748244 L 5.6763468,4.2330688 C 6.8000164,4.5467672 8.1730685,4.5362646 9.1684433,3.4313614 l -9.22008423,-3.48508362 z m -18.3078016,-1.900504 c 1.294559,0.7227998 1.1888392,2.6835702 -0.1564272,3.0632889 -1.2165179,0.423661 -2.7710269,-0.7589694 -2.3831779,-2.0774648 0.227148,-1.0818519 1.653387,-1.480632 2.5396051,-0.9858241 z m 0.056264,8.0173649 c 1.3508301,0.4988648 1.1214429,2.7844356 -0.2522207,3.091609 -0.9110594,0.3163391 -2.2135494,-0.1387976 -2.3056964,-1.2121394 -0.177609,-1.305055 1.356085,-2.4841482 2.5579171,-1.8794696 z"
id="sizzorsPath"
transform="scale(0.7)" />
</marker>
<marker
style="overflow:visible"
id="Scissors-8"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Scissors"
markerWidth="15.249177"
markerHeight="9.0857267"
viewBox="0 0 15.249177 9.0857269"
inkscape:isstock="true"
inkscape:collect="always"
preserveAspectRatio="xMidYMid">
<path
style="fill:context-stroke"
d="M 9.0898857,-3.6061018 C 8.1198849,-4.7769976 6.3697607,-4.7358294 5.0623558,-4.2327734 l -8.2124046,3.0779029 c -2.3882933,-1.3067135 -4.7482873,-0.9325372 -4.7482873,-1.5687873 0,-0.4973164 0.4566662,-0.3883222 0.3883068,-1.6831941 -0.065635,-1.2432767 -1.3635771,-2.1630796 -2.5903987,-2.0816435 -1.227271,-0.00735 -2.499439,0.9331613 -2.510341,2.2300611 -0.09143,1.3063864 1.007209,2.5196896 2.306764,2.6052316 1.5223406,0.2266616 4.218258,-0.6955566 5.482945,1.57086006 -0.9422847,1.73825774 -2.6140244,1.74307674 -4.1255107,1.65607034 -1.2548743,-0.072235 -2.7620933,0.2873979 -3.3606483,1.5208605 -0.578367,1.1820862 -0.0112,2.8646022 1.316749,3.226412 1.3401912,0.4918277 3.1806689,-0.129711 3.4993722,-1.6707242 0.2456585,-1.187823 -0.5953659,-1.7459574 -0.2725074,-2.1771537 0.2436135,-0.32536 1.7907806,-0.1368452 4.5471053,-1.3748244 L 5.6763468,4.2330688 C 6.8000164,4.5467672 8.1730685,4.5362646 9.1684433,3.4313614 l -9.22008423,-3.48508362 z m -18.3078016,-1.900504 c 1.294559,0.7227998 1.1888392,2.6835702 -0.1564272,3.0632889 -1.2165179,0.423661 -2.7710269,-0.7589694 -2.3831779,-2.0774648 0.227148,-1.0818519 1.653387,-1.480632 2.5396051,-0.9858241 z m 0.056264,8.0173649 c 1.3508301,0.4988648 1.1214429,2.7844356 -0.2522207,3.091609 -0.9110594,0.3163391 -2.2135494,-0.1387976 -2.3056964,-1.2121394 -0.177609,-1.305055 1.356085,-2.4841482 2.5579171,-1.8794696 z"
id="sizzorsPath-9"
transform="scale(0.7)" />
</marker>
<marker
style="overflow:visible"
id="Scissors-4"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Scissors"
markerWidth="15.249177"
markerHeight="9.0857267"
viewBox="0 0 15.249177 9.0857269"
inkscape:isstock="true"
inkscape:collect="always"
preserveAspectRatio="xMidYMid">
<path
style="fill:context-stroke"
d="M 9.0898857,-3.6061018 C 8.1198849,-4.7769976 6.3697607,-4.7358294 5.0623558,-4.2327734 l -8.2124046,3.0779029 c -2.3882933,-1.3067135 -4.7482873,-0.9325372 -4.7482873,-1.5687873 0,-0.4973164 0.4566662,-0.3883222 0.3883068,-1.6831941 -0.065635,-1.2432767 -1.3635771,-2.1630796 -2.5903987,-2.0816435 -1.227271,-0.00735 -2.499439,0.9331613 -2.510341,2.2300611 -0.09143,1.3063864 1.007209,2.5196896 2.306764,2.6052316 1.5223406,0.2266616 4.218258,-0.6955566 5.482945,1.57086006 -0.9422847,1.73825774 -2.6140244,1.74307674 -4.1255107,1.65607034 -1.2548743,-0.072235 -2.7620933,0.2873979 -3.3606483,1.5208605 -0.578367,1.1820862 -0.0112,2.8646022 1.316749,3.226412 1.3401912,0.4918277 3.1806689,-0.129711 3.4993722,-1.6707242 0.2456585,-1.187823 -0.5953659,-1.7459574 -0.2725074,-2.1771537 0.2436135,-0.32536 1.7907806,-0.1368452 4.5471053,-1.3748244 L 5.6763468,4.2330688 C 6.8000164,4.5467672 8.1730685,4.5362646 9.1684433,3.4313614 l -9.22008423,-3.48508362 z m -18.3078016,-1.900504 c 1.294559,0.7227998 1.1888392,2.6835702 -0.1564272,3.0632889 -1.2165179,0.423661 -2.7710269,-0.7589694 -2.3831779,-2.0774648 0.227148,-1.0818519 1.653387,-1.480632 2.5396051,-0.9858241 z m 0.056264,8.0173649 c 1.3508301,0.4988648 1.1214429,2.7844356 -0.2522207,3.091609 -0.9110594,0.3163391 -2.2135494,-0.1387976 -2.3056964,-1.2121394 -0.177609,-1.305055 1.356085,-2.4841482 2.5579171,-1.8794696 z"
id="sizzorsPath-0"
transform="scale(0.7)" />
</marker>
<marker
style="overflow:visible"
id="Scissors-9"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Scissors"
markerWidth="15.249177"
markerHeight="9.0857267"
viewBox="0 0 15.249177 9.0857269"
inkscape:isstock="true"
inkscape:collect="always"
preserveAspectRatio="xMidYMid">
<path
style="fill:context-stroke"
d="M 9.0898857,-3.6061018 C 8.1198849,-4.7769976 6.3697607,-4.7358294 5.0623558,-4.2327734 l -8.2124046,3.0779029 c -2.3882933,-1.3067135 -4.7482873,-0.9325372 -4.7482873,-1.5687873 0,-0.4973164 0.4566662,-0.3883222 0.3883068,-1.6831941 -0.065635,-1.2432767 -1.3635771,-2.1630796 -2.5903987,-2.0816435 -1.227271,-0.00735 -2.499439,0.9331613 -2.510341,2.2300611 -0.09143,1.3063864 1.007209,2.5196896 2.306764,2.6052316 1.5223406,0.2266616 4.218258,-0.6955566 5.482945,1.57086006 -0.9422847,1.73825774 -2.6140244,1.74307674 -4.1255107,1.65607034 -1.2548743,-0.072235 -2.7620933,0.2873979 -3.3606483,1.5208605 -0.578367,1.1820862 -0.0112,2.8646022 1.316749,3.226412 1.3401912,0.4918277 3.1806689,-0.129711 3.4993722,-1.6707242 0.2456585,-1.187823 -0.5953659,-1.7459574 -0.2725074,-2.1771537 0.2436135,-0.32536 1.7907806,-0.1368452 4.5471053,-1.3748244 L 5.6763468,4.2330688 C 6.8000164,4.5467672 8.1730685,4.5362646 9.1684433,3.4313614 l -9.22008423,-3.48508362 z m -18.3078016,-1.900504 c 1.294559,0.7227998 1.1888392,2.6835702 -0.1564272,3.0632889 -1.2165179,0.423661 -2.7710269,-0.7589694 -2.3831779,-2.0774648 0.227148,-1.0818519 1.653387,-1.480632 2.5396051,-0.9858241 z m 0.056264,8.0173649 c 1.3508301,0.4988648 1.1214429,2.7844356 -0.2522207,3.091609 -0.9110594,0.3163391 -2.2135494,-0.1387976 -2.3056964,-1.2121394 -0.177609,-1.305055 1.356085,-2.4841482 2.5579171,-1.8794696 z"
id="sizzorsPath-4"
transform="scale(0.7)" />
</marker>
<marker
style="overflow:visible"
id="Scissors-90"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Scissors"
markerWidth="15.249177"
markerHeight="9.0857267"
viewBox="0 0 15.249177 9.0857269"
inkscape:isstock="true"
inkscape:collect="always"
preserveAspectRatio="xMidYMid">
<path
style="fill:context-stroke"
d="M 9.0898857,-3.6061018 C 8.1198849,-4.7769976 6.3697607,-4.7358294 5.0623558,-4.2327734 l -8.2124046,3.0779029 c -2.3882933,-1.3067135 -4.7482873,-0.9325372 -4.7482873,-1.5687873 0,-0.4973164 0.4566662,-0.3883222 0.3883068,-1.6831941 -0.065635,-1.2432767 -1.3635771,-2.1630796 -2.5903987,-2.0816435 -1.227271,-0.00735 -2.499439,0.9331613 -2.510341,2.2300611 -0.09143,1.3063864 1.007209,2.5196896 2.306764,2.6052316 1.5223406,0.2266616 4.218258,-0.6955566 5.482945,1.57086006 -0.9422847,1.73825774 -2.6140244,1.74307674 -4.1255107,1.65607034 -1.2548743,-0.072235 -2.7620933,0.2873979 -3.3606483,1.5208605 -0.578367,1.1820862 -0.0112,2.8646022 1.316749,3.226412 1.3401912,0.4918277 3.1806689,-0.129711 3.4993722,-1.6707242 0.2456585,-1.187823 -0.5953659,-1.7459574 -0.2725074,-2.1771537 0.2436135,-0.32536 1.7907806,-0.1368452 4.5471053,-1.3748244 L 5.6763468,4.2330688 C 6.8000164,4.5467672 8.1730685,4.5362646 9.1684433,3.4313614 l -9.22008423,-3.48508362 z m -18.3078016,-1.900504 c 1.294559,0.7227998 1.1888392,2.6835702 -0.1564272,3.0632889 -1.2165179,0.423661 -2.7710269,-0.7589694 -2.3831779,-2.0774648 0.227148,-1.0818519 1.653387,-1.480632 2.5396051,-0.9858241 z m 0.056264,8.0173649 c 1.3508301,0.4988648 1.1214429,2.7844356 -0.2522207,3.091609 -0.9110594,0.3163391 -2.2135494,-0.1387976 -2.3056964,-1.2121394 -0.177609,-1.305055 1.356085,-2.4841482 2.5579171,-1.8794696 z"
id="sizzorsPath-45"
transform="scale(0.7)" />
</marker>
<marker
style="overflow:visible"
id="Scissors-7"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Scissors"
markerWidth="15.249177"
markerHeight="9.0857267"
viewBox="0 0 15.249177 9.0857269"
inkscape:isstock="true"
inkscape:collect="always"
preserveAspectRatio="xMidYMid">
<path
style="fill:context-stroke"
d="M 9.0898857,-3.6061018 C 8.1198849,-4.7769976 6.3697607,-4.7358294 5.0623558,-4.2327734 l -8.2124046,3.0779029 c -2.3882933,-1.3067135 -4.7482873,-0.9325372 -4.7482873,-1.5687873 0,-0.4973164 0.4566662,-0.3883222 0.3883068,-1.6831941 -0.065635,-1.2432767 -1.3635771,-2.1630796 -2.5903987,-2.0816435 -1.227271,-0.00735 -2.499439,0.9331613 -2.510341,2.2300611 -0.09143,1.3063864 1.007209,2.5196896 2.306764,2.6052316 1.5223406,0.2266616 4.218258,-0.6955566 5.482945,1.57086006 -0.9422847,1.73825774 -2.6140244,1.74307674 -4.1255107,1.65607034 -1.2548743,-0.072235 -2.7620933,0.2873979 -3.3606483,1.5208605 -0.578367,1.1820862 -0.0112,2.8646022 1.316749,3.226412 1.3401912,0.4918277 3.1806689,-0.129711 3.4993722,-1.6707242 0.2456585,-1.187823 -0.5953659,-1.7459574 -0.2725074,-2.1771537 0.2436135,-0.32536 1.7907806,-0.1368452 4.5471053,-1.3748244 L 5.6763468,4.2330688 C 6.8000164,4.5467672 8.1730685,4.5362646 9.1684433,3.4313614 l -9.22008423,-3.48508362 z m -18.3078016,-1.900504 c 1.294559,0.7227998 1.1888392,2.6835702 -0.1564272,3.0632889 -1.2165179,0.423661 -2.7710269,-0.7589694 -2.3831779,-2.0774648 0.227148,-1.0818519 1.653387,-1.480632 2.5396051,-0.9858241 z m 0.056264,8.0173649 c 1.3508301,0.4988648 1.1214429,2.7844356 -0.2522207,3.091609 -0.9110594,0.3163391 -2.2135494,-0.1387976 -2.3056964,-1.2121394 -0.177609,-1.305055 1.356085,-2.4841482 2.5579171,-1.8794696 z"
id="sizzorsPath-96"
transform="scale(0.7)" />
</marker>
<marker
style="overflow:visible"
id="Scissors-6"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Scissors"
markerWidth="15.249177"
markerHeight="9.0857267"
viewBox="0 0 15.249177 9.0857269"
inkscape:isstock="true"
inkscape:collect="always"
preserveAspectRatio="xMidYMid">
<path
style="fill:context-stroke"
d="M 9.0898857,-3.6061018 C 8.1198849,-4.7769976 6.3697607,-4.7358294 5.0623558,-4.2327734 l -8.2124046,3.0779029 c -2.3882933,-1.3067135 -4.7482873,-0.9325372 -4.7482873,-1.5687873 0,-0.4973164 0.4566662,-0.3883222 0.3883068,-1.6831941 -0.065635,-1.2432767 -1.3635771,-2.1630796 -2.5903987,-2.0816435 -1.227271,-0.00735 -2.499439,0.9331613 -2.510341,2.2300611 -0.09143,1.3063864 1.007209,2.5196896 2.306764,2.6052316 1.5223406,0.2266616 4.218258,-0.6955566 5.482945,1.57086006 -0.9422847,1.73825774 -2.6140244,1.74307674 -4.1255107,1.65607034 -1.2548743,-0.072235 -2.7620933,0.2873979 -3.3606483,1.5208605 -0.578367,1.1820862 -0.0112,2.8646022 1.316749,3.226412 1.3401912,0.4918277 3.1806689,-0.129711 3.4993722,-1.6707242 0.2456585,-1.187823 -0.5953659,-1.7459574 -0.2725074,-2.1771537 0.2436135,-0.32536 1.7907806,-0.1368452 4.5471053,-1.3748244 L 5.6763468,4.2330688 C 6.8000164,4.5467672 8.1730685,4.5362646 9.1684433,3.4313614 l -9.22008423,-3.48508362 z m -18.3078016,-1.900504 c 1.294559,0.7227998 1.1888392,2.6835702 -0.1564272,3.0632889 -1.2165179,0.423661 -2.7710269,-0.7589694 -2.3831779,-2.0774648 0.227148,-1.0818519 1.653387,-1.480632 2.5396051,-0.9858241 z m 0.056264,8.0173649 c 1.3508301,0.4988648 1.1214429,2.7844356 -0.2522207,3.091609 -0.9110594,0.3163391 -2.2135494,-0.1387976 -2.3056964,-1.2121394 -0.177609,-1.305055 1.356085,-2.4841482 2.5579171,-1.8794696 z"
id="sizzorsPath-1"
transform="scale(0.7)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="583.86817"
inkscape:cy="9.0913729"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
inkscape:window-width="2048"
inkscape:window-height="1089"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata844">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-25.326232,-138.09881)">
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:2.7235;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 28.897176,141.22704 300.005114,-1.04733 -2.02366,5.49843 c 0,0 3.45456,6.54575 3.03548,6.54575 l -297.981467,0.52366 -5.059109,-5.49842 z"
id="path1412"
sodipodi:nodetypes="ccccccc" />
<path
style="fill:#e2e5de;fill-opacity:1;stroke:#888a85;stroke-width:2.7235;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 26.883348,149.86172 302.661142,-0.85094 -1.9428,-8.83107 -300.005107,1.04733 z"
id="path1458"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;stroke:#888a85;stroke-width:6.44191;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.61048, 1.61048;stroke-dashoffset:0;stroke-opacity:1"
d="M 25.350097,147.8172 331.29965,147.03171"
id="path1414"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#ff0000;stroke-width:1.15822;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.31644, 1.15822;stroke-dashoffset:0;stroke-opacity:1"
d="M 26.777633,147.24913 329.86384,145.99975"
id="path1460"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-size:3.175px;fill:#ececec;stroke:#888a85;stroke-width:6.335;stroke-dasharray:1.58375, 1.58375;stroke-dashoffset:0;stroke-opacity:0.222798"
x="167.16199"
y="157.45891"
id="text2721"><tspan
sodipodi:role="line"
id="tspan2719"
style="stroke-width:6.335"
x="167.16199"
y="157.45891"></tspan></text>
<text
xml:space="preserve"
style="font-size:3.175px;fill:#ececec;stroke:#888a85;stroke-width:6.335;stroke-dasharray:1.58375, 1.58375;stroke-dashoffset:0;stroke-opacity:0.222798"
x="160.73639"
y="158.78183"
id="text2725"><tspan
sodipodi:role="line"
id="tspan2723"
style="stroke-width:6.335"
x="160.73639"
y="158.78183"></tspan></text>
<text
xml:space="preserve"
style="font-size:3.175px;fill:none;stroke:#888a85;stroke-width:6.035;stroke-dasharray:1.50875, 1.50875;stroke-dashoffset:0;stroke-opacity:0.222798"
x="131.73883"
y="159.11693"
id="text2881"><tspan
sodipodi:role="line"
id="tspan2879"
style="stroke-width:6.035;stroke-dasharray:1.50875, 1.50875;stroke-dashoffset:0"
x="131.73883"
y="159.11693"></tspan></text>
<path
style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ff1010;stroke-width:0.5;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Scissors)"
d="M 179.9392,158.28206 V 138.09881"
id="path3045"
sodipodi:nodetypes="cc" />
<path
style="fill:#ff0000;fill-opacity:1;stroke:#ff1010;stroke-width:0.5;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Scissors-8)"
d="M 61.581876,158.28206 V 138.09881"
id="path3045-8"
sodipodi:nodetypes="cc" />
<path
style="fill:#ff0000;fill-opacity:1;stroke:#ff1010;stroke-width:0.5;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Scissors-4)"
d="M 101.03432,158.28206 V 138.09881"
id="path3045-6"
sodipodi:nodetypes="cc" />
<path
style="fill:#ff0000;fill-opacity:1;stroke:#ff1010;stroke-width:0.5;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Scissors-9)"
d="M 140.48676,158.28206 V 138.09881"
id="path3045-7"
sodipodi:nodetypes="cc" />
<path
style="fill:#ff0000;fill-opacity:1;stroke:#ff1010;stroke-width:0.5;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Scissors-90)"
d="M 219.39165,158.28206 V 138.09881"
id="path3045-65"
sodipodi:nodetypes="cc" />
<path
style="fill:#ff0000;fill-opacity:1;stroke:#ff1010;stroke-width:0.5;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Scissors-7)"
d="M 258.84409,158.28206 V 138.09881"
id="path3045-5"
sodipodi:nodetypes="cc" />
<path
style="fill:#ff0000;fill-opacity:1;stroke:#ff1010;stroke-width:0.5;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Scissors-6)"
d="M 298.29653,158.28206 V 138.09881"
id="path3045-50"
sodipodi:nodetypes="cc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View file

@ -194,17 +194,28 @@ When you're done, press open the inseam.
## Step 9: Close the crossseam
<tip>
Double check that your right and left legs match the pattern markings. The right leg's crotch should extend slightly beyond the left. Refer to the pattern and cut excess on the left leg if necessary.
It can be valuable to mark with chalk or thread mark the **Center Front** on each leg. This will help you make sure the peices are in the right place duing fly construction.
</tip>
Make sure one leg is turned with the good side out, and the other has the good side in.
Now tuck the leg with the good side out inside the leg that has the good side in.
This way, they have their good sides against each other.
Align the cross seam, starting at the back waist, pinning both halves together as you make your way
towards the fly. Stop at the lowest fly notch.
towards the fly. **Stop at the fly notch** and makes sure to back-stitch.
When you're done. Do it again. Always sew the cross seam twice.
It's one of those best practices you ignore at your own peril.
![Close Crossseam](CloseCrossseam.svg)
<Tip>
Take extra care to carefully align the seams where both legs have their back and front panels joined together.
@ -216,7 +227,7 @@ Getting it just right is one of those things you'll end up cherishing each time
## Step 10: Construct the fly
### Close fly extension
### Close the fly extension and serge
Fold the fly extension on its fold line with good sides together.
@ -224,69 +235,86 @@ Now sew along the bottom, to close the fly extension.
Trim back one half of the seam allowance to remove bulk before turning it good side out and pressing.
### Serge the fly extension and fly facing
#### Serge the fly extension and fly facing
Serge (or zig-zag) along the open side of the fly extension. No need to serge the top as that will get caught in our waistband.
while you're at it, also serge along the entirety of the fly facings J-shaped edge.
### Cut away the extra seam allowance on the left leg front
![Close Extension and Serge](CloseExtensionAndSerge.svg)
There's extra seam allowance that runs along the fly. We only need this on the right leg panel.
Cut it away on the left panel so you're left with the regular seam allowance only.
### Attach the fly facing
Sew the fly facing to the left front. Place them with good sides together, aligning the top.
Sew fly facing to left leg. You will be sewing slightly past the cross seam point, so be careful to keep the right leg seam allowance out of the way and aim to sew directly on top of the cross seam line.
### Tuck in the tip of the fly facing
![Attach Facing](AttachFacing.svg)
Fold the bottom of the fly facing seam allowance inwards and secure with a few stitches.
### Finish the fly facing
### Edge stitch the fly facing to the seam alowance
Trim the fly facing to half of the seam allowance.
Tuck in the tip of the fly facing and secure it with a few stitches.
Edge stitch the fly facing to the seam allowance.
Press the seam allowance toward the facing and understitch the facing for a clean finish. Again, keeping the right leg seam allowance out of the way.
Sew the fly facing to the seam allowance. Make sure to leave the front panel out of it.
![Finish Facing](FinishFacing.svg)
### Press cross seam, fly facing and the fly edge
### Edge stitch the zipper to the fly extension
Press open the cross seam. Press the fly facing to the side.
<tip>
Then, fold over the extra seam allowance on the right front leg and press it down.
**Zipper Length**
### Baste the zipper to the fly extension
It's a good idea to ensure your zipper stop ends before the indicated stitch line on the pattern. This will ensure you don't sew over your zipper stop and reduces tension on the bottom of the fly. If your zipper is too long, you can do a 0 length zig zag stitch to create a new stop (on just the zipper itself).
Place the zipper along the (slightly curved) edge of the fly extension.
</tip>
Now sew along the edge. No need to get close to the zipper, just sew along the edge to hold them in place.
Edge stitch along the left edge of the zipper to the serged edge of the fly extension to hold it in place.
### Attach zipper to the fly
![Baste Zipper](BasteZipper.svg)
Now place the right front leg's fly with the extra seam allowance that you folded back on top of the zip.
Use a zipper foot edge-stitch the folded-over edge along the zipper edge.
### Top stitch the right leg to the zipper
<Tip>
Start by pressing the right leg seam allowance to the back.
You might want to baste this first to make sure it is nicely parallel to the zipper. Close, but not too close.
<tip>
</Tip>
Remember that the seam allowance starts slightly right of the center front, the center front is marked in purple in the image, make sure you don't fold along the center front line by mistake.
### Sew the zipper to the fly facing
</tip>
Now sew the other side of the zipper to the fly facing. Make sure to align it properly so that
when the trousers are closed, the zip is hidden.
Ensure you place the folded edge of the right leg just left of the zipper teeth to prevent fabric from being caught in the zipper.
### Finish the cross seam
Stop sewing at the top 'fly extention' notch, slightly above the cross seam, and be sure to backstitch. If you don't do this you won't be able to keep the extension out of the way when sewing the J-Seam.
![Attach Extension to Right Leg](AttachExtensionToRightLeg.svg)
### Attach the zipper to the fly facing.
Be careful to align the leg left on the right center front. It can be valuable to pin or baste through the facing and right zide of the zipper tape. (We need to sew the left side of the zipper tape to the left leg).
Ensuring everything is lined, sew the fly facing to the left side of the zipper. Try to get close to the zipper, but not too close.
![Attach Facing to Zipper](AttachFacingToZipper.svg)
Sew the last bit of the cross seam up to the highest fly notch.
### Sew the J-seam of the fly
Now topstitch the so-called J-seam of the fly. Make sure to keep the fly extension out of the way.
<tip>
### Bar tack the bottom of the fly
Use a peice of paper as a guide to sew the J seam, this can be cut from your pattern along the indicated stitch line.
Now bartack the very botton of the J-seam (the horizontal part) but this time make sure to also catch the fly extension.
</tip>
Now topstitch the so-called J-seam of the fly. Make sure to keep the fly extension out of the way. Since you didn't sew all the way along the fly extention, you should be able to pin it out of the way.
#### Bar tack the bottom of the fly
Now, bartack the very botton of the J-seam (the horizontal part) but this time make sure to also catch the fly extension.
You can choose to add an additional bar tack along the J-Seam as well (shown in purple).
![Sew the J-Seam](SewTheJSeam.svg)
## Step 11: Attach the belt loops
@ -302,6 +330,8 @@ Cut a strip 80cm long (32 inch) and 2.8cm wide (1 1/8 inch).
Serge (or zigzag) the long edge of the strip on both sides.
![Finish Loop Edges](FinishLoopEdges.svg)
Fold one side inwards, and the other side over it. Then press down with your iron.
The end result should be a long strip about 1cm wide.
@ -310,6 +340,8 @@ Make sure to use a generous stitch length for this.
Finally, cut your length belt loops strip into 8 equal parts to make 8 belt loops.
![Stitch and Cut Loops](StitchAndCutLoops.svg)
### Attach the belt loops
We're going to divide our belt loops along the waist:

View file

@ -1,8 +1,7 @@
---
title: FIXME - this option is undocumented
title: "Full chest ease reduction"
---
<Fixme>
Please document this option. See https://github/freesewing/freesewing/issues/5096
***
</Fixme>
Allows you to independently reduce the ease around the chest to make it fit tight(er) in that area.

View file

@ -1,9 +1,5 @@
---
title: FIXME - this option is undocumented
title: "Arm Length"
---
<Fixme>
Please document this option. See https://github/freesewing/freesewing/issues/5097
</Fixme>
This setting adjusts the length of the arms.

View file

@ -1,9 +1,5 @@
---
title: FIXME - this option is undocumented
title: "Arm Taper"
---
<Fixme>
Please document this option. See https://github/freesewing/freesewing/issues/5097
</Fixme>
This setting changes how much the arms taper from the body down to the end.

View file

@ -1,9 +1,5 @@
---
title: FIXME - this option is undocumented
title: "Arm Width"
---
<Fixme>
Please document this option. See https://github/freesewing/freesewing/issues/5097
</Fixme>
The setting adjusts the width of the arms.

View file

@ -1,9 +1,6 @@
---
title: FIXME - this option is undocumented
title: "Bottom Arm Reduction"
---
<Fixme>
Please document this option. See https://github/freesewing/freesewing/issues/5097
</Fixme>
This setting adjusts the difference in length between the top and the bottom fabric of the arms for the Octopus and Squid styles.
The bigger the difference, the more the arms will want to curl.

View file

@ -1,9 +1,6 @@
---
title: FIXME - this option is undocumented
title: "Bottom Arm Reduction (Octoplushy)"
---
<Fixme>
Please document this option. See https://github/freesewing/freesewing/issues/5097
</Fixme>
This setting adjusts the difference in length between the top and the bottom fabric of the arms for the Octoplushy style.
The bigger the difference, the more the arms will want to curl.

View file

@ -1,9 +0,0 @@
---
title: "Untere Beinreduktion"
---
Mit dieser Einstellung wird der Längenunterschied zwischen dem oberen und dem unteren Stoff der Beine angepasst. Je größer der Unterschied ist, desto mehr werden sich die Beine einrollen wollen.
## Effekt dieser Option auf das Schnittmuster
![Dieses Bild zeigt den Effekt dieser Option, indem es mehrere Varianten überlagert, die einen anderen Wert für diese Option haben](octoplushy_bottomlegreduction_sample.svg "Effekt dieser Option auf das Schnittmuster")

View file

@ -1,10 +0,0 @@
---
title: "Bottom Leg Reduction"
---
This setting adjusts the difference in length between the top and the bottom fabric of the legs.
The bigger the difference, the more the legs will want to curl.

View file

@ -1,9 +0,0 @@
---
title: "Reducción de la pata inferior"
---
Esta configuración ajusta la diferencia de longitud entre la tela superior e inferior de las patas. Cuanto mayor sea la diferencia, más querrán curvarse las piernas.
## Efecto de esta opción en el patrón
![Esta imagen muestra el efecto de esta opción superponiendo varias variantes que tienen un valor diferente para esta opción](octoplushy_bottomlegreduction_sample.svg "Efecto de esta opción en el patrón")

View file

@ -1,9 +0,0 @@
---
title: "Réduction des jambes du bas"
---
Ce paramètre permet de régler la différence de longueur entre le tissu supérieur et le tissu inférieur des pieds. Plus la différence est importante, plus les jambes ont envie de s'enrouler.
## Effet de cette option sur le motif
![Cette image montre l'effet de cette option en superposant plusieurs variantes qui ont une valeur différente pour cette option](octoplushy_bottomlegreduction_sample.svg "Effet de cette option sur le motif")

View file

@ -1,9 +0,0 @@
---
title: "Vermindering onderbeen"
---
Deze instelling past het verschil in lengte aan tussen de bovenste en onderste stof van de poten. Hoe groter het verschil, hoe meer de benen zullen willen krullen.
## Effect van deze optie op het patroon
![Deze afbeelding toont het effect van deze optie door meerdere varianten die een andere waarde hebben voor deze optie te vervangen](octoplushy_bottomlegreduction_sample.svg "Effect van deze optie op het patroon")

View file

@ -1,9 +0,0 @@
---
title: "Зменшення довжини нижньої лапи"
---
Цей параметр регулює різницю в довжині між верхньою і нижньою тканиною штанин. Чим більша різниця, тим більше ноги будуть хотіти скручуватися.
## Вплив цієї опції на шаблон
![На цьому зображенні показано вплив цієї опції шляхом накладання декількох варіантів, які мають різне значення для цієї опції](octoplushy_bottomlegreduction_sample.svg "Вплив цієї опції на шаблон")

View file

@ -1,9 +0,0 @@
---
title: "Unterschenkelverkleinerung (Octoplushy)"
---
Mit dieser Einstellung wird der Längenunterschied zwischen dem oberen und dem unteren Stoff der Beine angepasst. Je größer der Unterschied ist, desto mehr werden sich die Beine einrollen wollen.
## Effekt dieser Option auf das Schnittmuster
![Dieses Bild zeigt den Effekt dieser Option, indem es mehrere Varianten überlagert, die einen anderen Wert für diese Option haben](octoplushy_bottomlegreductionplushy_sample.svg "Effekt dieser Option auf das Schnittmuster")

View file

@ -1,10 +0,0 @@
---
title: "Bottom Leg Reduction (Octoplushy)"
---
This setting adjusts the difference in length between the top and the bottom fabric of the legs.
The bigger the difference, the more the legs will want to curl.

View file

@ -1,9 +0,0 @@
---
title: "Reducción de la parte inferior de la pierna (Octoplushy)"
---
Esta configuración ajusta la diferencia de longitud entre la tela superior e inferior de las patas. Cuanto mayor sea la diferencia, más querrán curvarse las piernas.
## Efecto de esta opción en el patrón
![Esta imagen muestra el efecto de esta opción superponiendo varias variantes que tienen un valor diferente para esta opción](octoplushy_bottomlegreductionplushy_sample.svg "Efecto de esta opción en el patrón")

View file

@ -1,9 +0,0 @@
---
title: "Réduction des jambes du bas (Octoplushy)"
---
Ce paramètre permet de régler la différence de longueur entre le tissu supérieur et le tissu inférieur des pieds. Plus la différence est importante, plus les jambes ont envie de s'enrouler.
## Effet de cette option sur le motif
![Cette image montre l'effet de cette option en superposant plusieurs variantes qui ont une valeur différente pour cette option](octoplushy_bottomlegreductionplushy_sample.svg "Effet de cette option sur le motif")

View file

@ -1,9 +0,0 @@
---
title: "Onderbeenverkleining (Octoplushy)"
---
Deze instelling past het verschil in lengte aan tussen de bovenste en onderste stof van de poten. Hoe groter het verschil, hoe meer de benen zullen willen krullen.
## Effect van deze optie op het patroon
![Deze afbeelding toont het effect van deze optie door meerdere varianten die een andere waarde hebben voor deze optie te vervangen](octoplushy_bottomlegreductionplushy_sample.svg "Effect van deze optie op het patroon")

View file

@ -1,9 +0,0 @@
---
title: "Зменшення нижньої лапки (Октопуши)"
---
Цей параметр регулює різницю в довжині між верхньою і нижньою тканиною штанин. Чим більша різниця, тим більше ноги будуть хотіти скручуватися.
## Вплив цієї опції на шаблон
![На цьому зображенні показано вплив цієї опції шляхом накладання декількох варіантів, які мають різне значення для цієї опції](octoplushy_bottomlegreductionplushy_sample.svg "Вплив цієї опції на шаблон")

View file

@ -1,9 +1,7 @@
---
title: FIXME - this option is undocumented
title: "Bottom to Top Arm Ratio"
---
<Fixme>
Please document this option. See https://github/freesewing/freesewing/issues/5097
</Fixme>
This setting adjusts the ratio between the top and the bottom of the arms.
The lower the ratio, the more fabric will be associated with the top of the leg.
100% makes both the top and the bottom the same.

View file

@ -1,9 +0,0 @@
---
title: "Verhältnis von unterem zu oberem Bein"
---
Mit dieser Einstellung wird das Verhältnis zwischen der Oberseite und der Unterseite der Beine angepasst. Je niedriger der Wert, desto mehr Stoff wird mit dem oberen Teil des Beins verbunden. 100% bedeutet, dass die Ober- und Unterseite gleich sind.
## Effekt dieser Option auf das Schnittmuster
![Dieses Bild zeigt den Effekt dieser Option, indem es mehrere Varianten überlagert, die einen anderen Wert für diese Option haben](octoplushy_bottomtoplegratio_sample.svg "Effekt dieser Option auf das Schnittmuster")

View file

@ -1,11 +0,0 @@
---
title: "Bottom to Top Leg Ratio"
---
This setting adjusts the ratio between the top and the bottom of the legs.
The lower the ration, the more fabric will be associated with the top of the leg.
100% makes both the top and the bottom the same.

View file

@ -1,9 +0,0 @@
---
title: "Relación entre la pata inferior y la superior"
---
Esta opción ajusta la relación entre la parte superior y la inferior de las patas. Cuanto menor sea la ración, más tejido se asociará a la parte superior de la pierna. El 100% hace que tanto la parte superior como la inferior sean iguales.
## Efecto de esta opción en el patrón
![Esta imagen muestra el efecto de esta opción superponiendo varias variantes que tienen un valor diferente para esta opción](octoplushy_bottomtoplegratio_sample.svg "Efecto de esta opción en el patrón")

View file

@ -1,9 +0,0 @@
---
title: "Rapport entre le bas et le haut de la jambe"
---
Ce paramètre permet de régler le rapport entre le haut et le bas des jambes. Plus le rapport est faible, plus le tissu sera associé à la partie supérieure de la jambe. 100% rend le haut et le bas identiques.
## Effet de cette option sur le motif
![Cette image montre l'effet de cette option en superposant plusieurs variantes qui ont une valeur différente pour cette option](octoplushy_bottomtoplegratio_sample.svg "Effet de cette option sur le motif")

View file

@ -1,9 +0,0 @@
---
title: "Verhouding tussen onder- en bovenbenen"
---
Deze instelling past de verhouding tussen de boven- en onderkant van de poten aan. Hoe lager de verhouding, hoe meer stof er bij de bovenkant van het been hoort. 100% maakt zowel de bovenkant als de onderkant hetzelfde.
## Effect van deze optie op het patroon
![Deze afbeelding toont het effect van deze optie door meerdere varianten die een andere waarde hebben voor deze optie te vervangen](octoplushy_bottomtoplegratio_sample.svg "Effect van deze optie op het patroon")

View file

@ -1,9 +0,0 @@
---
title: "Співвідношення нижньої та верхньої частини ноги"
---
Цей параметр регулює співвідношення між верхньою і нижньою частиною ніг. Чим менший відсоток, тим більше тканини буде пов'язано з верхньою частиною ноги. 100% робить верх і низ однаковими.
## Вплив цієї опції на шаблон
![На цьому зображенні показано вплив цієї опції шляхом накладання декількох варіантів, які мають різне значення для цієї опції](octoplushy_bottomtoplegratio_sample.svg "Вплив цієї опції на шаблон")

View file

@ -1,5 +1,5 @@
---
title: Otis: the simple romper
title: "Otis: the simple romper"
---
<PatternDocs pattern='otis' />
<DesignInfo design='otis' docs />

View file

@ -2,4 +2,4 @@
title: "Otis, the simple romper: Required Measurements"
---
<PatternMeasurements pattern='otis' />
<DesignMeasurements design='otis' />

View file

@ -2,4 +2,4 @@
title: "Otis, the simple romper: Design Options"
---
<PatternOptions pattern='otis' />
<DesignOptions design='otis' />

View file

@ -2,4 +2,4 @@
title: "Shelly shirt"
---
<PatternDocs pattern='shelly' />
<DesignInfo design='shelly' docs />

View file

@ -2,4 +2,4 @@
title: "Shelly shirt: Required Measurements"
---
<PatternMeasurements pattern='shelly' />
<DesignMeasurements design='shelly' />

View file

@ -2,4 +2,4 @@
title: "Shelly shirt: Design Options"
---
<PatternOptions pattern='shelly' />
<DesignOptions design='shelly' />

View file

@ -0,0 +1,5 @@
---
title: Hem width
---
Sets the hem allowance of the hem along the waist, as a multiple of the seam allowance.

View file

@ -14,7 +14,7 @@ Seamless is less work, and it looks great.
<Note>
As seamless is only possible on a _cut-on_ placket, this option is ignored if you choose a seperate buttonhole placket.
As seamless is only possible on a _cut-on_ placket, this option is ignored if you choose a separate buttonhole placket.
</Note>

View file

@ -14,7 +14,7 @@ Seamless is less work, and it looks great.
<Note>
As seamless is only possible on a _cut-on_ placket, this option is ignored if you choose a seperate button placket.
As seamless is only possible on a _cut-on_ placket, this option is ignored if you choose a separate button placket.
</Note>

View file

@ -0,0 +1,8 @@
---
title: "Separate buttonhole placket"
---
![Separate buttonhole placket](separatebuttonholeplacket.svg)
Whether or not you want the buttonhole placket to be a separate pattern part.

View file

@ -0,0 +1,11 @@
---
title: "Separate button placket"
---
![Separate button placket](separatebuttonplacket.svg)
Whether or not you want the button placket to be a separate pattern part.

View file

@ -1,11 +0,0 @@
---
title: "Seperate buttonhole placket"
---
![Seperate buttonhole placket](seperatebuttonholeplacket.svg)
Whether or not you want the buttonhole placket to be a seperate pattern part.

View file

@ -1,11 +0,0 @@
---
title: "Seperate button placket"
---
![Seperate button placket](seperatebuttonplacket.svg)
Whether or not you want the button placket to be a seperate pattern part.

View file

@ -14,7 +14,7 @@ Seamless is less work, and it looks great.
<Note>
As seamless is only possible on a _cut-on_ placket, this option is ignored if you choose a seperate buttonhole placket.
As seamless is only possible on a _cut-on_ placket, this option is ignored if you choose a separate buttonhole placket.
</Note>

View file

@ -14,7 +14,7 @@ Seamless is less work, and it looks great.
<Note>
As seamless is only possible on a _cut-on_ placket, this option is ignored if you choose a seperate button placket.
As seamless is only possible on a _cut-on_ placket, this option is ignored if you choose a separate button placket.
</Note>

View file

@ -0,0 +1,11 @@
---
title: "Separate buttonhole placket"
---
![Separate buttonhole placket](separatebuttonholeplacket.svg)
Whether or not you want the buttonhole placket to be a separate pattern part.

Some files were not shown because too many files have changed in this diff Show more