I finally had a chance to tie all this together. First, here is some code to expand the "sun" arrangement of 5 kites (10 triangles) into triangles representing kite and dart halves.
When I run this with the argument 4, it expands it to 210 triangles and their adjacencies (along long sides 'l', short sides 's', and internal sides 'i', i.e. ones between the halves of the kite or dart):
The above satisfies my goal of doing a Penrose tile layout without any geometry. However, I would like to see it, so I have this code to traverse the graph and assign positions and orientations to the triangles (including flips).
Code: Select all
import sys
import math
import numpy as np
def matrix(element_00, element_01, element_10, element_11, translation_x=0, translation_y=0):
return np.array([[element_00, element_01, translation_x],
[element_10, element_11, translation_y],
[0, 0, 1]])
COS36 = math.cos(math.radians(36))
SIN36 = math.sin(math.radians(36))
COS18 = math.cos(math.radians(18))
SIN18 = math.sin(math.radians(18))
TRANSFORM = {
'kki': matrix(SIN18, -COS18, -COS18, -SIN18),
'kks': matrix(-COS36, SIN36, SIN36, COS36, COS18/SIN18 * SIN36, -SIN36),
'kkl': matrix(1, 0, 0, -1),
'ddl': matrix(1, 0, 0, -1),
'ddi': matrix(SIN18, -COS18, -COS18, -SIN18),
'kds': matrix(-COS36, SIN36, -SIN36, -COS36, 2 * COS36, 0),
'dks': np.linalg.inv(matrix(-COS36, SIN36, -SIN36, -COS36, 2 * COS36, 0)),
'kdl': matrix(-1, 0, 0, -1, 1, 0),
'dkl': matrix(-1, 0, 0, -1, 1, 0)
}
CENTER = np.array([[0.0, 0.0, 1.0]]).T
BASE = np.array([[1.0, 0.0, 1.0]]).T
KITE_HALF_PEAK = np.array([[COS36, -SIN36, 1]]).T
DART_HALF_PEAK = np.array([[0.5, -0.5 * SIN36 / COS36, 1]]).T
SVG_HEAD = '''<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="420mm"
height="297mm"
viewBox="0 0 420 297"
version="1.1"
id="svg8">
<g id="layer1" transform="scale(10)">'''
SVG_TAIL = '''</g></svg>'''
COLORS = {
('k', True): 'acd4e2',
('k', False): '748f98',
('d', True): '833535',
('d', False): 'e28787'
}
def tile(transformation, node):
tile_peak = KITE_HALF_PEAK if node[-1] == 'k' else DART_HALF_PEAK
return '''<path transform="matrix(%f %f %f %f %f %f)"
style="fill:#%s;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 %f,%f z"
id="%s"/>''' % (transformation[0, 0], transformation[1, 0],
transformation[0, 1], transformation[1, 1],
transformation[0, 2], transformation[1, 2],
COLORS[(node[-1], np.linalg.det(transformation) < 0)],
tile_peak[0, 0], tile_peak[1, 0], node)
def traverse(parent, node, side, adjacency, seen, transformation):
if node not in seen:
if parent:
transformation = transformation @ TRANSFORM[parent[-1] + node[-1] + side]
center = np.round(0.0001 + transformation @ CENTER, decimals = 2)
base = np.round(0.0001 + transformation @ BASE, decimals = 2)
peak = np.round(0.0001 + transformation @
(KITE_HALF_PEAK if node[-1] == 'k' else DART_HALF_PEAK), decimals = 2)
print(tile(transformation, node))
seen.add(node)
sides = adjacency[node]
for k in sorted(sides):
traverse(node, sides[k], k, adjacency, seen, transformation)
adjacency = {}
for line in sys.stdin:
(node, neighbor, side) = line.split()
neighbors = adjacency.get(node, {})
neighbors[side] = neighbor
adjacency[node] = neighbors
neighbors = adjacency.get(neighbor, {})
neighbors[side] = node
adjacency[neighbor] = neighbors
triangles = sorted(adjacency.keys())
print(SVG_HEAD)
traverse(None, triangles[0], None, adjacency, set(), matrix(1, 0, 0, 1))
print(SVG_TAIL)
The key to this layout is the transformation applied to a triangle adjacent on one side. For example, in this dict 'kds' means the transformation applied when going from a kite half to the dart half adjacent on its short side.
I derived the more complex ones above by composing inflations and deflations, but then I went back and filled in the numerical values with appropriate sine and cosine values. Some of these are pretty obvious, like the y-flips, but I am not sure if there's an easier derivation of the others. The layout is generated as SVG
Code: Select all
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="420mm"
height="297mm"
viewBox="0 0 420 297"
version="1.1"
id="svg8">
<g id="layer1" transform="scale(10)">
<path transform="matrix(1.000000 0.000000 0.000000 1.000000 0.000000 0.000000)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="0+kdddd"/>
<path transform="matrix(0.309017 -0.951057 -0.951057 -0.309017 0.000000 0.000000)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="0+kdkkdd"/>
<path transform="matrix(0.309017 -0.951057 0.951057 0.309017 0.000000 0.000000)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="0+kdkdkdd"/>
<path transform="matrix(-0.809017 -0.587785 -0.587785 0.809017 0.000000 0.000000)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="4-kdkdkdd"/>
<path transform="matrix(-0.809017 -0.587785 0.587785 -0.809017 0.000000 0.000000)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="4-kdkkdd"/>
<path transform="matrix(-0.809017 0.587785 0.587785 0.809017 0.000000 0.000000)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="4-kdddd"/>
<path transform="matrix(0.809017 -0.587785 -0.587785 -0.809017 -0.809017 0.587785)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4-kddkk"/>
<path transform="matrix(0.809017 0.587785 -0.587785 0.809017 -0.809017 0.587785)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4-kddkdk"/>
<path transform="matrix(0.809017 0.587785 0.587785 -0.809017 -0.809017 0.587785)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4+kddkdk"/>
<path transform="matrix(-0.309017 0.951057 -0.951057 -0.309017 -0.809017 0.587785)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4+kddkk"/>
<path transform="matrix(0.309017 -0.951057 0.951057 0.309017 -1.118034 1.538842)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="4+kdddd"/>
<path transform="matrix(-0.809017 -0.587785 -0.587785 0.809017 -1.118034 1.538842)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="4+kdkkdd"/>
<path transform="matrix(-0.809017 -0.587785 0.587785 -0.809017 -1.118034 1.538842)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="4+kdkdkdd"/>
<path transform="matrix(-0.809017 0.587785 0.587785 0.809017 -1.118034 1.538842)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="3-kdkdkdd"/>
<path transform="matrix(-0.809017 0.587785 -0.587785 -0.809017 -1.118034 1.538842)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="3-kdkkdd"/>
<path transform="matrix(0.309017 0.951057 0.951057 -0.309017 -1.118034 1.538842)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="3-kdddd"/>
<path transform="matrix(-0.309017 -0.951057 -0.951057 0.309017 -0.809017 2.489898)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3-kddkk"/>
<path transform="matrix(0.809017 -0.587785 0.587785 0.809017 -0.809017 2.489898)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3-kddkdk"/>
<path transform="matrix(0.809017 -0.587785 -0.587785 -0.809017 -0.809017 2.489898)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3+kddkdk"/>
<path transform="matrix(0.809017 0.587785 -0.587785 0.809017 -0.809017 2.489898)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3+kddkk"/>
<path transform="matrix(-0.809017 -0.587785 0.587785 -0.809017 0.000000 3.077684)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="3+kdddd"/>
<path transform="matrix(-0.809017 0.587785 0.587785 0.809017 0.000000 3.077684)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="3+kdkkdd"/>
<path transform="matrix(-0.809017 0.587785 -0.587785 -0.809017 0.000000 3.077684)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="3+kdkdkdd"/>
<path transform="matrix(0.309017 0.951057 0.951057 -0.309017 0.000000 3.077684)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="2-kdkdkdd"/>
<path transform="matrix(0.309017 0.951057 -0.951057 0.309017 0.000000 3.077684)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="2-kdkkdd"/>
<path transform="matrix(1.000000 -0.000000 -0.000000 -1.000000 0.000000 3.077684)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="2-kdddd"/>
<path transform="matrix(-1.000000 0.000000 0.000000 1.000000 1.000000 3.077684)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2-kddkk"/>
<path transform="matrix(-0.309017 -0.951057 0.951057 -0.309017 1.000000 3.077684)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2-kddkdk"/>
<path transform="matrix(-0.309017 -0.951057 -0.951057 0.309017 1.000000 3.077684)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2+kddkdk"/>
<path transform="matrix(0.809017 -0.587785 0.587785 0.809017 1.000000 3.077684)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2+kddkk"/>
<path transform="matrix(-0.809017 0.587785 -0.587785 -0.809017 1.809017 2.489898)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="2+kdddd"/>
<path transform="matrix(0.309017 0.951057 0.951057 -0.309017 1.809017 2.489898)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="2+kdkkdd"/>
<path transform="matrix(0.309017 0.951057 -0.951057 0.309017 1.809017 2.489898)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="2+kdkdkdd"/>
<path transform="matrix(1.000000 -0.000000 -0.000000 -1.000000 1.809017 2.489898)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="1-kdkdkdd"/>
<path transform="matrix(1.000000 -0.000000 0.000000 1.000000 1.809017 2.489898)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="1-kdkkdd"/>
<path transform="matrix(0.309017 -0.951057 -0.951057 -0.309017 1.809017 2.489898)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="1-kdddd"/>
<path transform="matrix(-0.309017 0.951057 0.951057 0.309017 2.118034 1.538842)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1-kddkk"/>
<path transform="matrix(-1.000000 0.000000 -0.000000 -1.000000 2.118034 1.538842)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1-kddkdk"/>
<path transform="matrix(-1.000000 0.000000 0.000000 1.000000 2.118034 1.538842)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1+kddkdk"/>
<path transform="matrix(-0.309017 -0.951057 0.951057 -0.309017 2.118034 1.538842)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1+kddkk"/>
<path transform="matrix(0.309017 0.951057 -0.951057 0.309017 1.809017 0.587785)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="1+kdddd"/>
<path transform="matrix(1.000000 -0.000000 -0.000000 -1.000000 1.809017 0.587785)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="1+kdkkdd"/>
<path transform="matrix(1.000000 -0.000000 0.000000 1.000000 1.809017 0.587785)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="1+kdkdkdd"/>
<path transform="matrix(0.309017 -0.951057 -0.951057 -0.309017 1.809017 0.587785)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="0-kdkdkdd"/>
<path transform="matrix(0.309017 -0.951057 0.951057 0.309017 1.809017 0.587785)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="0-kdkkdd"/>
<path transform="matrix(-0.809017 -0.587785 -0.587785 0.809017 1.809017 0.587785)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="0-kdddd"/>
<path transform="matrix(0.809017 0.587785 0.587785 -0.809017 1.000000 0.000000)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0-kddkk"/>
<path transform="matrix(-0.309017 0.951057 -0.951057 -0.309017 1.000000 0.000000)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0-kddkdk"/>
<path transform="matrix(-0.309017 0.951057 0.951057 0.309017 1.000000 0.000000)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0+kddkdk"/>
<path transform="matrix(-1.000000 0.000000 -0.000000 -1.000000 1.000000 0.000000)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0+kddkk"/>
<path transform="matrix(-0.309017 -0.951057 -0.951057 0.309017 0.500000 1.538842)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="0+kddkdd"/>
<path transform="matrix(0.809017 -0.587785 0.587785 0.809017 0.500000 1.538842)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="0-kddkdd"/>
<path transform="matrix(0.809017 -0.587785 -0.587785 -0.809017 0.500000 1.538842)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="1+kddkdd"/>
<path transform="matrix(0.809017 0.587785 -0.587785 0.809017 0.500000 1.538842)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="1-kddkdd"/>
<path transform="matrix(0.809017 0.587785 0.587785 -0.809017 0.500000 1.538842)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="2+kddkdd"/>
<path transform="matrix(-0.309017 0.951057 -0.951057 -0.309017 0.500000 1.538842)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="2-kddkdd"/>
<path transform="matrix(-0.309017 0.951057 0.951057 0.309017 0.500000 1.538842)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="3+kddkdd"/>
<path transform="matrix(-1.000000 0.000000 -0.000000 -1.000000 0.500000 1.538842)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="3-kddkdd"/>
<path transform="matrix(-1.000000 0.000000 0.000000 1.000000 0.500000 1.538842)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="4+kddkdd"/>
<path transform="matrix(-0.309017 -0.951057 0.951057 -0.309017 0.500000 1.538842)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="4-kddkdd"/>
<path transform="matrix(0.309017 0.951057 0.951057 -0.309017 1.309017 -0.951057)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0-kdddk"/>
<path transform="matrix(-0.809017 0.587785 -0.587785 -0.809017 1.309017 -0.951057)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0+kdddk"/>
<path transform="matrix(-0.809017 0.587785 0.587785 0.809017 1.309017 -0.951057)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0+kdkkdk"/>
<path transform="matrix(-0.809017 -0.587785 0.587785 -0.809017 1.309017 -0.951057)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0+kdkkk"/>
<path transform="matrix(-0.809017 -0.587785 -0.587785 0.809017 1.309017 -0.951057)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0+kkkk"/>
<path transform="matrix(0.309017 -0.951057 0.951057 0.309017 1.309017 -0.951057)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0+kkkdk"/>
<path transform="matrix(0.309017 -0.951057 -0.951057 -0.309017 1.309017 -0.951057)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0-kkkdk"/>
<path transform="matrix(1.000000 -0.000000 0.000000 1.000000 1.309017 -0.951057)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0-kkkk"/>
<path transform="matrix(1.000000 -0.000000 -0.000000 -1.000000 1.309017 -0.951057)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0-kdkkk"/>
<path transform="matrix(0.309017 0.951057 -0.951057 0.309017 1.309017 -0.951057)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0-kdkkdk"/>
<path transform="matrix(-0.809017 -0.587785 0.587785 -0.809017 3.118034 -0.363271)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0-kdkdkk"/>
<path transform="matrix(-0.809017 0.587785 0.587785 0.809017 3.118034 -0.363271)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0-kdkdkdk"/>
<path transform="matrix(-0.809017 0.587785 -0.587785 -0.809017 3.118034 -0.363271)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1+kdkdkdk"/>
<path transform="matrix(0.309017 0.951057 0.951057 -0.309017 3.118034 -0.363271)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1+kdkdkk"/>
<path transform="matrix(-0.309017 -0.951057 -0.951057 0.309017 3.427051 0.587785)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="1+kdkddd"/>
<path transform="matrix(0.809017 -0.587785 0.587785 0.809017 3.427051 0.587785)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="1+kkddd"/>
<path transform="matrix(-0.809017 0.587785 -0.587785 -0.809017 4.236068 0.000000)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1+kkdkk"/>
<path transform="matrix(0.309017 0.951057 0.951057 -0.309017 4.236068 0.000000)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1+kkdkdk"/>
<path transform="matrix(-0.809017 -0.587785 -0.587785 0.809017 4.736068 1.538842)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="1+kkdkdd"/>
<path transform="matrix(-0.809017 -0.587785 0.587785 -0.809017 4.736068 1.538842)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="1+kkkdd"/>
<path transform="matrix(-0.809017 0.587785 0.587785 0.809017 4.736068 1.538842)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="1-kkkdd"/>
<path transform="matrix(-0.809017 0.587785 -0.587785 -0.809017 4.736068 1.538842)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="1-kkdkdd"/>
<path transform="matrix(0.309017 -0.951057 0.951057 0.309017 4.236068 3.077684)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1-kkdkdk"/>
<path transform="matrix(-0.809017 -0.587785 -0.587785 0.809017 4.236068 3.077684)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1-kkdkk"/>
<path transform="matrix(0.809017 0.587785 0.587785 -0.809017 3.427051 2.489898)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="1-kkddd"/>
<path transform="matrix(-0.309017 0.951057 -0.951057 -0.309017 3.427051 2.489898)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="1-kdkddd"/>
<path transform="matrix(0.309017 -0.951057 0.951057 0.309017 3.118034 3.440955)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1-kdkdkk"/>
<path transform="matrix(-0.809017 -0.587785 -0.587785 0.809017 3.118034 3.440955)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1-kdkdkdk"/>
<path transform="matrix(-0.809017 -0.587785 0.587785 -0.809017 3.118034 3.440955)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2+kdkdkdk"/>
<path transform="matrix(-0.809017 0.587785 0.587785 0.809017 3.118034 3.440955)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2+kdkdkk"/>
<path transform="matrix(0.809017 -0.587785 -0.587785 -0.809017 2.309017 4.028740)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="2+kdkddd"/>
<path transform="matrix(0.809017 0.587785 -0.587785 0.809017 2.309017 4.028740)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="2+kkddd"/>
<path transform="matrix(-0.809017 -0.587785 0.587785 -0.809017 3.118034 4.616525)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2+kkdkk"/>
<path transform="matrix(-0.809017 0.587785 0.587785 0.809017 3.118034 4.616525)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2+kkdkdk"/>
<path transform="matrix(0.309017 -0.951057 -0.951057 -0.309017 1.809017 5.567582)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="2+kkdkdd"/>
<path transform="matrix(0.309017 -0.951057 0.951057 0.309017 1.809017 5.567582)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="2+kkkdd"/>
<path transform="matrix(-0.809017 -0.587785 -0.587785 0.809017 1.809017 5.567582)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="2-kkkdd"/>
<path transform="matrix(-0.809017 -0.587785 0.587785 -0.809017 1.809017 5.567582)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="2-kkdkdd"/>
<path transform="matrix(1.000000 -0.000000 0.000000 1.000000 0.190983 5.567582)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2-kkdkdk"/>
<path transform="matrix(0.309017 -0.951057 -0.951057 -0.309017 0.190983 5.567582)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2-kkdkk"/>
<path transform="matrix(-0.309017 0.951057 0.951057 0.309017 0.500000 4.616525)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="2-kkddd"/>
<path transform="matrix(-1.000000 0.000000 -0.000000 -1.000000 0.500000 4.616525)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="2-kdkddd"/>
<path transform="matrix(1.000000 -0.000000 0.000000 1.000000 -0.500000 4.616525)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2-kdkdkk"/>
<path transform="matrix(0.309017 -0.951057 -0.951057 -0.309017 -0.500000 4.616525)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2-kdkdkdk"/>
<path transform="matrix(0.309017 -0.951057 0.951057 0.309017 -0.500000 4.616525)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3+kdkdkdk"/>
<path transform="matrix(-0.809017 -0.587785 -0.587785 0.809017 -0.500000 4.616525)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3+kdkdkk"/>
<path transform="matrix(0.809017 0.587785 0.587785 -0.809017 -1.309017 4.028740)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="3+kdkddd"/>
<path transform="matrix(-0.309017 0.951057 -0.951057 -0.309017 -1.309017 4.028740)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="3+kkddd"/>
<path transform="matrix(0.309017 -0.951057 0.951057 0.309017 -1.618034 4.979797)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3+kkdkk"/>
<path transform="matrix(-0.809017 -0.587785 -0.587785 0.809017 -1.618034 4.979797)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3+kkdkdk"/>
<path transform="matrix(1.000000 -0.000000 -0.000000 -1.000000 -2.927051 4.028740)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="3+kkdkdd"/>
<path transform="matrix(1.000000 -0.000000 0.000000 1.000000 -2.927051 4.028740)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="3+kkkdd"/>
<path transform="matrix(0.309017 -0.951057 -0.951057 -0.309017 -2.927051 4.028740)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="3-kkkdd"/>
<path transform="matrix(0.309017 -0.951057 0.951057 0.309017 -2.927051 4.028740)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="3-kkdkdd"/>
<path transform="matrix(0.309017 0.951057 -0.951057 0.309017 -3.427051 2.489898)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3-kkdkdk"/>
<path transform="matrix(1.000000 -0.000000 -0.000000 -1.000000 -3.427051 2.489898)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3-kkdkk"/>
<path transform="matrix(-1.000000 0.000000 0.000000 1.000000 -2.427051 2.489898)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="3-kkddd"/>
<path transform="matrix(-0.309017 -0.951057 0.951057 -0.309017 -2.427051 2.489898)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="3-kdkddd"/>
<path transform="matrix(0.309017 0.951057 -0.951057 0.309017 -2.736068 1.538842)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3-kdkdkk"/>
<path transform="matrix(1.000000 -0.000000 -0.000000 -1.000000 -2.736068 1.538842)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3-kdkdkdk"/>
<path transform="matrix(1.000000 -0.000000 0.000000 1.000000 -2.736068 1.538842)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4+kdkdkdk"/>
<path transform="matrix(0.309017 -0.951057 -0.951057 -0.309017 -2.736068 1.538842)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4+kdkdkk"/>
<path transform="matrix(-0.309017 0.951057 0.951057 0.309017 -2.427051 0.587785)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="4+kdkddd"/>
<path transform="matrix(-1.000000 0.000000 -0.000000 -1.000000 -2.427051 0.587785)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="4+kkddd"/>
<path transform="matrix(1.000000 -0.000000 0.000000 1.000000 -3.427051 0.587785)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4+kkdkk"/>
<path transform="matrix(0.309017 -0.951057 -0.951057 -0.309017 -3.427051 0.587785)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4+kkdkdk"/>
<path transform="matrix(0.309017 0.951057 0.951057 -0.309017 -2.927051 -0.951057)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="4+kkdkdd"/>
<path transform="matrix(0.309017 0.951057 -0.951057 0.309017 -2.927051 -0.951057)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="4+kkkdd"/>
<path transform="matrix(1.000000 -0.000000 -0.000000 -1.000000 -2.927051 -0.951057)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="4-kkkdd"/>
<path transform="matrix(1.000000 -0.000000 0.000000 1.000000 -2.927051 -0.951057)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="4-kkdkdd"/>
<path transform="matrix(-0.809017 0.587785 -0.587785 -0.809017 -1.618034 -1.902113)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4-kkdkdk"/>
<path transform="matrix(0.309017 0.951057 0.951057 -0.309017 -1.618034 -1.902113)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4-kkdkk"/>
<path transform="matrix(-0.309017 -0.951057 -0.951057 0.309017 -1.309017 -0.951057)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="4-kkddd"/>
<path transform="matrix(0.809017 -0.587785 0.587785 0.809017 -1.309017 -0.951057)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="4-kdkddd"/>
<path transform="matrix(-0.809017 0.587785 -0.587785 -0.809017 -0.500000 -1.538842)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4-kdkdkk"/>
<path transform="matrix(0.309017 0.951057 0.951057 -0.309017 -0.500000 -1.538842)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4-kdkdkdk"/>
<path transform="matrix(0.309017 0.951057 -0.951057 0.309017 -0.500000 -1.538842)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0+kdkdkdk"/>
<path transform="matrix(1.000000 -0.000000 -0.000000 -1.000000 -0.500000 -1.538842)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0+kdkdkk"/>
<path transform="matrix(-1.000000 0.000000 0.000000 1.000000 0.500000 -1.538842)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="0+kdkddd"/>
<path transform="matrix(-0.309017 -0.951057 0.951057 -0.309017 0.500000 -1.538842)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="0+kkddd"/>
<path transform="matrix(0.309017 0.951057 -0.951057 0.309017 0.190983 -2.489898)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0+kkdkk"/>
<path transform="matrix(1.000000 -0.000000 -0.000000 -1.000000 0.190983 -2.489898)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0+kkdkdk"/>
<path transform="matrix(-0.809017 0.587785 0.587785 0.809017 1.809017 -2.489898)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="0+kkdkdd"/>
<path transform="matrix(-0.809017 0.587785 -0.587785 -0.809017 1.809017 -2.489898)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="0+kkkdd"/>
<path transform="matrix(0.309017 0.951057 0.951057 -0.309017 1.809017 -2.489898)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="0-kkkdd"/>
<path transform="matrix(0.309017 0.951057 -0.951057 0.309017 1.809017 -2.489898)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="0-kkdkdd"/>
<path transform="matrix(-0.809017 -0.587785 0.587785 -0.809017 3.118034 -1.538842)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0-kkdkdk"/>
<path transform="matrix(-0.809017 0.587785 0.587785 0.809017 3.118034 -1.538842)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0-kkdkk"/>
<path transform="matrix(0.809017 -0.587785 -0.587785 -0.809017 2.309017 -0.951057)"
style="fill:#833535;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="0-kkddd"/>
<path transform="matrix(0.809017 0.587785 -0.587785 0.809017 2.309017 -0.951057)"
style="fill:#e28787;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.500000,-0.363271 z"
id="0-kdkddd"/>
<path transform="matrix(-1.000000 0.000000 -0.000000 -1.000000 3.927051 -0.951057)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0-kdkddk"/>
<path transform="matrix(-0.309017 0.951057 0.951057 0.309017 3.927051 -0.951057)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1+kdkddk"/>
<path transform="matrix(-0.309017 0.951057 -0.951057 -0.309017 3.927051 -0.951057)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1+kkddk"/>
<path transform="matrix(-1.000000 0.000000 0.000000 1.000000 3.927051 -0.951057)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0-kkddk"/>
<path transform="matrix(0.809017 0.587785 -0.587785 0.809017 -0.809017 -2.489898)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0+kkddk"/>
<path transform="matrix(0.809017 0.587785 0.587785 -0.809017 -0.809017 -2.489898)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="0+kdkddk"/>
<path transform="matrix(-0.309017 0.951057 -0.951057 -0.309017 -0.809017 -2.489898)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4-kdkddk"/>
<path transform="matrix(-0.309017 0.951057 0.951057 0.309017 -0.809017 -2.489898)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4-kkddk"/>
<path transform="matrix(0.309017 -0.951057 -0.951057 -0.309017 -1.618034 0.000000)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4-kdkkk"/>
<path transform="matrix(1.000000 -0.000000 0.000000 1.000000 -1.618034 0.000000)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4-kdkkdk"/>
<path transform="matrix(1.000000 -0.000000 -0.000000 -1.000000 -1.618034 0.000000)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4-kdddk"/>
<path transform="matrix(0.309017 0.951057 -0.951057 0.309017 -1.618034 0.000000)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4+kdddk"/>
<path transform="matrix(0.309017 0.951057 0.951057 -0.309017 -1.618034 0.000000)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4+kdkkdk"/>
<path transform="matrix(-0.809017 0.587785 -0.587785 -0.809017 -1.618034 0.000000)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4+kdkkk"/>
<path transform="matrix(-0.809017 0.587785 0.587785 0.809017 -1.618034 0.000000)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4+kkkk"/>
<path transform="matrix(-0.809017 -0.587785 0.587785 -0.809017 -1.618034 0.000000)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4+kkkdk"/>
<path transform="matrix(-0.809017 -0.587785 -0.587785 0.809017 -1.618034 0.000000)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4-kkkdk"/>
<path transform="matrix(0.309017 -0.951057 0.951057 0.309017 -1.618034 0.000000)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4-kkkk"/>
<path transform="matrix(0.809017 -0.587785 0.587785 0.809017 -3.736068 1.538842)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4+kkddk"/>
<path transform="matrix(0.809017 -0.587785 -0.587785 -0.809017 -3.736068 1.538842)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="4+kdkddk"/>
<path transform="matrix(0.809017 0.587785 -0.587785 0.809017 -3.736068 1.538842)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3-kdkddk"/>
<path transform="matrix(0.809017 0.587785 0.587785 -0.809017 -3.736068 1.538842)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3-kkddk"/>
<path transform="matrix(-0.809017 -0.587785 -0.587785 0.809017 -1.618034 3.077684)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3-kdkkk"/>
<path transform="matrix(0.309017 -0.951057 0.951057 0.309017 -1.618034 3.077684)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3-kdkkdk"/>
<path transform="matrix(0.309017 -0.951057 -0.951057 -0.309017 -1.618034 3.077684)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3-kdddk"/>
<path transform="matrix(1.000000 -0.000000 0.000000 1.000000 -1.618034 3.077684)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3+kdddk"/>
<path transform="matrix(1.000000 -0.000000 -0.000000 -1.000000 -1.618034 3.077684)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3+kdkkdk"/>
<path transform="matrix(0.309017 0.951057 -0.951057 0.309017 -1.618034 3.077684)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3+kdkkk"/>
<path transform="matrix(0.309017 0.951057 0.951057 -0.309017 -1.618034 3.077684)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3+kkkk"/>
<path transform="matrix(-0.809017 0.587785 -0.587785 -0.809017 -1.618034 3.077684)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3+kkkdk"/>
<path transform="matrix(-0.809017 0.587785 0.587785 0.809017 -1.618034 3.077684)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3-kkkdk"/>
<path transform="matrix(-0.809017 -0.587785 0.587785 -0.809017 -1.618034 3.077684)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3-kkkk"/>
<path transform="matrix(-0.309017 -0.951057 0.951057 -0.309017 -0.809017 5.567582)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3+kkddk"/>
<path transform="matrix(-0.309017 -0.951057 -0.951057 0.309017 -0.809017 5.567582)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="3+kdkddk"/>
<path transform="matrix(0.809017 -0.587785 0.587785 0.809017 -0.809017 5.567582)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2-kdkddk"/>
<path transform="matrix(0.809017 -0.587785 -0.587785 -0.809017 -0.809017 5.567582)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2-kkddk"/>
<path transform="matrix(-0.809017 0.587785 0.587785 0.809017 1.309017 4.028740)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2-kdkkk"/>
<path transform="matrix(-0.809017 -0.587785 0.587785 -0.809017 1.309017 4.028740)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2-kdkkdk"/>
<path transform="matrix(-0.809017 -0.587785 -0.587785 0.809017 1.309017 4.028740)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2-kdddk"/>
<path transform="matrix(0.309017 -0.951057 0.951057 0.309017 1.309017 4.028740)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2+kdddk"/>
<path transform="matrix(0.309017 -0.951057 -0.951057 -0.309017 1.309017 4.028740)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2+kdkkdk"/>
<path transform="matrix(1.000000 -0.000000 0.000000 1.000000 1.309017 4.028740)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2+kdkkk"/>
<path transform="matrix(1.000000 -0.000000 -0.000000 -1.000000 1.309017 4.028740)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2+kkkk"/>
<path transform="matrix(0.309017 0.951057 -0.951057 0.309017 1.309017 4.028740)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2+kkkdk"/>
<path transform="matrix(0.309017 0.951057 0.951057 -0.309017 1.309017 4.028740)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2-kkkdk"/>
<path transform="matrix(-0.809017 0.587785 -0.587785 -0.809017 1.309017 4.028740)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2-kkkk"/>
<path transform="matrix(-1.000000 0.000000 -0.000000 -1.000000 3.927051 4.028740)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2+kkddk"/>
<path transform="matrix(-1.000000 0.000000 0.000000 1.000000 3.927051 4.028740)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="2+kdkddk"/>
<path transform="matrix(-0.309017 -0.951057 0.951057 -0.309017 3.927051 4.028740)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1-kdkddk"/>
<path transform="matrix(-0.309017 -0.951057 -0.951057 0.309017 3.927051 4.028740)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1-kkddk"/>
<path transform="matrix(0.309017 0.951057 0.951057 -0.309017 3.118034 1.538842)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1-kdkkk"/>
<path transform="matrix(-0.809017 0.587785 -0.587785 -0.809017 3.118034 1.538842)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1-kdkkdk"/>
<path transform="matrix(-0.809017 0.587785 0.587785 0.809017 3.118034 1.538842)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1-kdddk"/>
<path transform="matrix(-0.809017 -0.587785 0.587785 -0.809017 3.118034 1.538842)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1+kdddk"/>
<path transform="matrix(-0.809017 -0.587785 -0.587785 0.809017 3.118034 1.538842)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1+kdkkdk"/>
<path transform="matrix(0.309017 -0.951057 0.951057 0.309017 3.118034 1.538842)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1+kdkkk"/>
<path transform="matrix(0.309017 -0.951057 -0.951057 -0.309017 3.118034 1.538842)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1+kkkk"/>
<path transform="matrix(1.000000 -0.000000 0.000000 1.000000 3.118034 1.538842)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1+kkkdk"/>
<path transform="matrix(1.000000 -0.000000 -0.000000 -1.000000 3.118034 1.538842)"
style="fill:#acd4e2;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1-kkkdk"/>
<path transform="matrix(0.309017 0.951057 -0.951057 0.309017 3.118034 1.538842)"
style="fill:#748f98;fill-opacity:1;stroke:#909090;stroke-width:0.02;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 1,0 0.809017,-0.587785 z"
id="1-kkkk"/>
</g></svg>
And finally, here is how it renders. I assigned the colors as blue/red for kite and dart, and light/dark so they are 2-colored according to flips.