REDCODE Class Renaming

This commit is contained in:
lewd_alt
2026-06-13 22:38:57 -05:00
1921 changed files with 129982 additions and 45137 deletions

9
.gitignore vendored
View File

@@ -1,7 +1,8 @@
2DGAMELIB/obj/
SlaveMatrix/obj/
2DGAMELIB/bin/
SlaveMatrix/bin/
**/bin/
**/obj/
.vs/
.idea/
Config.ini
game_folder/save/*
/game_folder/save
extracted/

View File

@@ -7,17 +7,17 @@ using System.IO;
namespace _2DGAMELIB
{
[Serializable]
public class Obj
public class BodyTemplate
{
public OrderedDictionary<string, Difs> Difss = new OrderedDictionary<string, Difs>();
public OrderedDictionary<string, VariantGrid> Difss = new OrderedDictionary<string, VariantGrid>();
private Difs r;
private VariantGrid r;
private JointsD jsd;
public IEnumerable<string> Keys => Difss.Keys;
public Difs this[string Name]
public VariantGrid this[string Name]
{
get
{
@@ -29,11 +29,23 @@ namespace _2DGAMELIB
}
}
public VariantGrid this[int Index]
{
get
{
return Difss[Index];
}
set
{
Difss[Index] = value;
}
}
public double AngleBase
{
set
{
foreach (Difs value2 in Difss.Values)
foreach (VariantGrid value2 in Difss.Values)
{
value2.SetAngleBase(value);
}
@@ -44,35 +56,35 @@ namespace _2DGAMELIB
{
set
{
foreach (Difs value2 in Difss.Values)
foreach (VariantGrid value2 in Difss.Values)
{
value2.SetSizeBase(value);
}
}
}
public Difs JoinRoot => r;
public IEnumerable<Par> EnumAllPar()
public VariantGrid JoinRoot => r;
public IEnumerable<ShapePart> EnumAllPar()
{
foreach (Difs value in Difss.Values)
foreach (VariantGrid value in Difss.Values)
{
foreach (Par item in value.EnumAllPar())
foreach (ShapePart item in value.EnumAllPar())
{
yield return item;
}
}
}
public Obj SetDefaultR()
public BodyTemplate SetDefaultR()
{
foreach (Difs value in Difss.Values)
foreach (VariantGrid value in Difss.Values)
{
value.SetDefault();
}
return this;
}
public Obj()
public BodyTemplate()
{
}
@@ -80,29 +92,29 @@ namespace _2DGAMELIB
public void Draw(RenderArea Are)
{
foreach (Difs value in Difss.Values)
foreach (VariantGrid value in Difss.Values)
{
value.Draw(Are);
}
}
private Difs GetJoinRootDifs()
private VariantGrid GetJoinRootDifs()
{
Difs[] array = Difss.Values.ToArray();
VariantGrid[] array = Difss.Values.ToArray();
if (array.Length <= 1)
{
return array.FirstOrDefault();
}
Par[] pa = EnumAllPar().ToArray();
Difs[] array2 = array;
ShapePart[] pa = EnumAllPar().ToArray();
VariantGrid[] array2 = array;
Vector2D p;
foreach (Difs difs in array2)
foreach (VariantGrid difs in array2)
{
if (difs.EnumJoinRoot.All(delegate(Par p0)
if (difs.EnumJoinRoot.All(delegate(ShapePart p0)
{
p = p0.GetPosition();
return pa.All((Par p1) => p0 == p1 || p1.GetJP().All((Joi j) => !(p1.ToGlobal(j.Joint).DistanceSquared(p) <= Join.IdentityDistance)));
return pa.All((ShapePart p1) => p0 == p1 || p1.GetJP().All((JointPoint j) => !(p1.ToGlobal(j.Joint).DistanceSquared(p) <= JointLink.IdentityDistance)));
}))
{
return difs;
@@ -113,8 +125,8 @@ namespace _2DGAMELIB
public void SetJoints()
{
Difs[] array = Difss.Values.ToArray();
Difs[] array2 = array;
VariantGrid[] array = Difss.Values.ToArray();
VariantGrid[] array2 = array;
for (int i = 0; i < array2.Length; i++)
{
array2[i].SetJoints();
@@ -139,7 +151,7 @@ namespace _2DGAMELIB
public void Dispose()
{
foreach (Difs value in Difss.Values)
foreach (VariantGrid value in Difss.Values)
{
value.Dispose();
}

View File

@@ -5,7 +5,7 @@ using System.Linq;
namespace _2DGAMELIB
{
public class But1 : But
public class Button : ButtonBase
{
public List<Color> BaseColors = new List<Color>();
@@ -15,15 +15,15 @@ namespace _2DGAMELIB
public List<Color> TextColors = new List<Color>();
public But1(ParT ParT, Action<But> Action)
: base(ParT, Action)
public Button(ShapePartT ShapePartT, Action<ButtonBase> Action)
: base(ShapePartT, Action)
{
Setting();
}
private void Setting()
{
foreach (Par item in pars.EnumAllPar())
foreach (ShapePart item in partGroup.EnumAllPar())
{
BaseColors.Add(item.GetBrushColor());
OverColors.Add(BaseColors.Last().FuncHSV(delegate(Hsv hsv)
@@ -45,7 +45,7 @@ namespace _2DGAMELIB
Over = delegate
{
int num4 = 0;
foreach (Par item2 in pars.EnumAllPar())
foreach (ShapePart item2 in partGroup.EnumAllPar())
{
item2.SetBrushColor(OverColors[num4]);
if (item2.IsParT())
@@ -58,7 +58,7 @@ namespace _2DGAMELIB
Push = delegate
{
int num3 = 0;
foreach (Par item3 in pars.EnumAllPar())
foreach (ShapePart item3 in partGroup.EnumAllPar())
{
item3.SetBrushColor(PushColors[num3]);
if (item3.IsParT())
@@ -71,7 +71,7 @@ namespace _2DGAMELIB
Release = delegate
{
int num2 = 0;
foreach (Par item4 in pars.EnumAllPar())
foreach (ShapePart item4 in partGroup.EnumAllPar())
{
item4.SetBrushColor(OverColors[num2]);
if (item4.IsParT())
@@ -84,7 +84,7 @@ namespace _2DGAMELIB
Out = delegate
{
int num = 0;
foreach (Par item5 in pars.EnumAllPar())
foreach (ShapePart item5 in partGroup.EnumAllPar())
{
item5.SetBrushColor(BaseColors[num]);
if (item5.IsParT())

View File

@@ -3,31 +3,31 @@ using System.Drawing;
namespace _2DGAMELIB
{
public class But
public class ButtonBase
{
private bool dra = true;
private Color hc = Color.Transparent;
protected Pars pars;
protected PartGroup partGroup;
protected Action<But> Over = delegate
protected Action<ButtonBase> Over = delegate
{
};
protected Action<But> Push = delegate
protected Action<ButtonBase> Push = delegate
{
};
protected Action<But> Release = delegate
protected Action<ButtonBase> Release = delegate
{
};
protected Action<But> Out = delegate
protected Action<ButtonBase> Out = delegate
{
};
public Action<But> Action = delegate
public Action<ButtonBase> Action = delegate
{
};
@@ -48,23 +48,23 @@ namespace _2DGAMELIB
}
}
public Pars Pars => pars;
public PartGroup PartGroup => partGroup;
public But(ParT ParT, Action<But> Action)
public ButtonBase(ShapePartT ShapePartT, Action<ButtonBase> Action)
{
pars = new Pars(ParT);
partGroup = new PartGroup(ShapePartT);
this.Action = Action;
}
public bool Move(ref Color HitColor)
{
if (Dra && !f2 && pars.IsHit(ref HitColor))
if (Dra && !f2 && partGroup.IsHit(ref HitColor))
{
f2 = true;
Over(this);
return true;
}
if (Dra && f2 && !pars.IsHit(ref HitColor))
if (Dra && f2 && !partGroup.IsHit(ref HitColor))
{
f1 = false;
f2 = false;
@@ -88,7 +88,7 @@ namespace _2DGAMELIB
public bool Down(ref Color HitColor)
{
if (Dra && !f1 && pars.IsHit(ref HitColor))
if (Dra && !f1 && partGroup.IsHit(ref HitColor))
{
f1 = true;
Push(this);
@@ -99,7 +99,7 @@ namespace _2DGAMELIB
public bool Up(ref Color HitColor)
{
if (Dra && f1 && pars.IsHit(ref HitColor))
if (Dra && f1 && partGroup.IsHit(ref HitColor))
{
f1 = false;
Release(this);
@@ -113,13 +113,13 @@ namespace _2DGAMELIB
{
if (dra)
{
Are.Draw(pars);
Are.Draw(partGroup);
}
}
public void SetHitColor(ModeEventDispatcher Med)
{
foreach (Par item in pars.EnumAllPar())
foreach (ShapePart item in partGroup.EnumAllPar())
{
if (item.GetHitColor() != Color.Transparent)
{
@@ -131,7 +131,7 @@ namespace _2DGAMELIB
public void Dispose()
{
pars.Dispose();
partGroup.Dispose();
}
}
}

View File

@@ -4,22 +4,22 @@ using System.Linq;
namespace _2DGAMELIB
{
public class Buts
public class ButtonMap
{
private OrderedDictionary<string, But> buts = new OrderedDictionary<string, But>();
private OrderedDictionary<string, ButtonBase> buts = new OrderedDictionary<string, ButtonBase>();
public But this[string Name] => buts[Name];
public ButtonBase this[string Name] => buts[Name];
public IEnumerable<But> EnumBut => buts.Values;
public IEnumerable<ButtonBase> EnumBut => buts.Values;
public void Add(string Name, But But)
public void Add(string Name, ButtonBase ButtonBase)
{
buts.Add(Name, But);
buts.Add(Name, ButtonBase);
}
public void Down(ref Color HitColor)
{
using IEnumerator<But> enumerator = buts.Values.GetEnumerator();
using IEnumerator<ButtonBase> enumerator = buts.Values.GetEnumerator();
while (enumerator.MoveNext() && !enumerator.Current.Down(ref HitColor))
{
}
@@ -27,7 +27,7 @@ namespace _2DGAMELIB
public void Up(ref Color HitColor)
{
using IEnumerator<But> enumerator = buts.Values.GetEnumerator();
using IEnumerator<ButtonBase> enumerator = buts.Values.GetEnumerator();
while (enumerator.MoveNext() && !enumerator.Current.Up(ref HitColor))
{
}
@@ -35,7 +35,7 @@ namespace _2DGAMELIB
public void Move(ref Color HitColor)
{
foreach (But value in buts.Values)
foreach (ButtonBase value in buts.Values)
{
value.Move(ref HitColor);
}
@@ -43,7 +43,7 @@ namespace _2DGAMELIB
public void Leave()
{
using IEnumerator<But> enumerator = buts.Values.GetEnumerator();
using IEnumerator<ButtonBase> enumerator = buts.Values.GetEnumerator();
while (enumerator.MoveNext() && !enumerator.Current.Leave())
{
}
@@ -51,7 +51,7 @@ namespace _2DGAMELIB
public void SetHitColor(ModeEventDispatcher Med)
{
foreach (But item in EnumBut)
foreach (ButtonBase item in EnumBut)
{
item.SetHitColor(Med);
}
@@ -59,7 +59,7 @@ namespace _2DGAMELIB
public void Draw(RenderArea Are)
{
foreach (But value in buts.Values)
foreach (ButtonBase value in buts.Values)
{
value.Draw(Are);
}
@@ -67,7 +67,7 @@ namespace _2DGAMELIB
public void Dispose()
{
foreach (But value in buts.Values)
foreach (ButtonBase value in buts.Values)
{
value.Dispose();
}

View File

@@ -6,22 +6,22 @@ namespace _2DGAMELIB
//outline/path/line basically represents a curve :3
[Serializable]
public class Out
public class CurveOutline
{
public List<Vector2D> ps = new List<Vector2D>();
public float Tension = 0.5f;
public bool Outline = true;
public Out()
public CurveOutline()
{
}
public Out(Out Out)
public CurveOutline(CurveOutline CurveOutline)
{
ps = new List<Vector2D>(Out.ps);
Tension = Out.Tension;
Outline = Out.Outline;
ps = new List<Vector2D>(CurveOutline.ps);
Tension = CurveOutline.Tension;
Outline = CurveOutline.Outline;
}
}
}

View File

@@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
namespace _2DGAMELIB
{
[StructLayout(LayoutKind.Sequential, Size = 1)]
public struct Dat
public struct DataConsts
{
public static MatrixD MatDZero = new MatrixD(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);

View File

@@ -1,132 +0,0 @@
using System;
using System.Collections.Generic;
using System.Drawing;
namespace _2DGAMELIB
{
[Serializable]
public class Dif
{
public string Tag = "";
private List<Pars> parss = new List<Pars>();
public List<Pars> Parss => parss;
public int Count => parss.Count;
public Pars this[int Index]
{
get
{
return parss[Index];
}
set
{
parss[Index] = value;
}
}
public void SetAngleBase(double value)
{
foreach (Pars item in parss)
{
item.SetAngleBase(value);
}
}
public void SetSizeBase(double value)
{
foreach (Pars item in parss)
{
item.SetSizeBase(value);
}
}
public void SetSizeYCont(double value)
{
foreach (Pars item in parss)
{
item.SetSizeYCont(value);
}
}
public IEnumerable<Par> EnumAllPar()
{
foreach (Pars item in parss)
{
foreach (Par item2 in item.EnumAllPar())
{
yield return item2;
}
}
}
public void SetDefault()
{
foreach (Pars item in parss)
{
item.SetDefault();
}
}
public Dif()
{
}
public Dif(Dif Dif)
{
Copy(Dif);
}
private void Copy(Dif Dif)
{
Tag = Dif.Tag;
foreach (Pars item in Dif.parss)
{
parss.Add(new Pars(item));
}
}
public void Add(Pars Pars)
{
parss.Add(Pars);
}
public bool IsHit(ref Color HitColor)
{
foreach (Pars item in parss)
{
if (item.IsHit(ref HitColor))
{
return true;
}
}
return false;
}
public void ReverseX()
{
foreach (Pars item in parss)
{
item.ReverseX();
}
}
public void ReverseY()
{
foreach (Pars item in parss)
{
item.ReverseY();
}
}
public void Dispose()
{
foreach (Pars item in parss)
{
item.Dispose();
}
}
}
}

View File

@@ -3,7 +3,7 @@ using System.Diagnostics;
namespace _2DGAMELIB
{
public class FPS
public class FpsCounter
{
public Stopwatch sw = new Stopwatch();
@@ -11,7 +11,7 @@ namespace _2DGAMELIB
public double Value;
private double ticks_per_frame;
public FPS(double FPS)
public FpsCounter(double FPS)
{
Value = FPS;
ticks_per_frame = (double)Stopwatch.Frequency / FPS;

View File

@@ -7,7 +7,7 @@ using System.Text;
namespace _2DGAMELIB
{
public static class Oth
public static class GeometryUtils
{
public static Color Reverse(this Color c)
{
@@ -16,7 +16,7 @@ namespace _2DGAMELIB
public static void GetRandomColor(out Color ret)
{
ret = Color.FromArgb(255, RNG.XS.Next(256), RNG.XS.Next(256), RNG.XS.Next(256));
ret = Color.FromArgb(255, Rng.XS.Next(256), Rng.XS.Next(256), Rng.XS.Next(256));
}
public static Color GetInter(ref Color c1, ref Color c2)
@@ -31,7 +31,7 @@ namespace _2DGAMELIB
public static Vector2D GetRandomVector()
{
return new Vector2D(RNG.XS.NextDouble() * (double)(RNG.XS.NextBool() ? 1 : (-1)), RNG.XS.NextDouble() * (double)(RNG.XS.NextBool() ? 1 : (-1)));
return new Vector2D(Rng.XS.NextDouble() * (double)(Rng.XS.NextBool() ? 1 : (-1)), Rng.XS.NextDouble() * (double)(Rng.XS.NextBool() ? 1 : (-1)));
}
public static Color FuncHSV(this Color Color, Func<Hsv, Hsv> Func)
@@ -60,13 +60,13 @@ namespace _2DGAMELIB
};
}
private static void GetMinMaxX(Par Par, ref double MinX, ref double MaxX)
private static void GetMinMaxX(ShapePart ShapePart, ref double MinX, ref double MaxX)
{
foreach (Out item in Par.GetOP())
foreach (CurveOutline item in ShapePart.GetOP())
{
foreach (Vector2D p in item.ps)
{
Vector2D vector2D = Par.ToGlobal(p);
Vector2D vector2D = ShapePart.ToGlobal(p);
if (MinX > vector2D.X)
{
MinX = vector2D.X;
@@ -79,13 +79,13 @@ namespace _2DGAMELIB
}
}
private static void GetMinMaxY(Par Par, ref double MinY, ref double MaxY)
private static void GetMinMaxY(ShapePart ShapePart, ref double MinY, ref double MaxY)
{
foreach (Out item in Par.GetOP())
foreach (CurveOutline item in ShapePart.GetOP())
{
foreach (Vector2D p in item.ps)
{
Vector2D vector2D = Par.ToGlobal(p);
Vector2D vector2D = ShapePart.ToGlobal(p);
if (MinY > vector2D.Y)
{
MinY = vector2D.Y;
@@ -98,7 +98,7 @@ namespace _2DGAMELIB
}
}
private static void GetMinMaxY(Par[] Pars, ref double MinY, ref double MaxY)
private static void GetMinMaxY(ShapePart[] Pars, ref double MinY, ref double MaxY)
{
for (int i = 0; i < Pars.Length; i++)
{
@@ -106,67 +106,79 @@ namespace _2DGAMELIB
}
}
public static void GetMiX_MaX(this Par Par, out Vector2D[] MM)
public static void GetMiX_MaX(this ShapePart ShapePart, out Vector2D[] MM)
{
Vector2D vector2D = Par.ToGlobal(Par.GetOP().First().ps.First());
Vector2D vector2D = ShapePart.ToGlobal(ShapePart.GetOP().First().ps.First());
MM = new Vector2D[2];
MM[0].X = vector2D.X;
MM[1].X = vector2D.X;
GetMinMaxX(Par, ref MM[0].X, ref MM[1].X);
GetMinMaxX(ShapePart, ref MM[0].X, ref MM[1].X);
}
public static void GetMaX_MiX(this Par Par, out Vector2D[] MM)
public static void GetMaX_MiX(this ShapePart ShapePart, out Vector2D[] MM)
{
Vector2D vector2D = Par.ToGlobal(Par.GetOP().First().ps.First());
Vector2D vector2D = ShapePart.ToGlobal(ShapePart.GetOP().First().ps.First());
MM = new Vector2D[2];
MM[0].X = vector2D.X;
MM[1].X = vector2D.X;
GetMinMaxX(Par, ref MM[1].X, ref MM[0].X);
GetMinMaxX(ShapePart, ref MM[1].X, ref MM[0].X);
}
public static void GetMiY_MaY(this Par Par, out Vector2D[] MM)
public static void GetMiY_MaY(this ShapePart ShapePart, out Vector2D[] MM)
{
Vector2D vector2D = Par.ToGlobal(Par.GetOP().First().ps.First());
Vector2D vector2D = ShapePart.ToGlobal(ShapePart.GetOP().First().ps.First());
MM = new Vector2D[2];
MM[0].Y = vector2D.Y;
MM[1].Y = vector2D.Y;
GetMinMaxY(Par, ref MM[0].Y, ref MM[1].Y);
GetMinMaxY(ShapePart, ref MM[0].Y, ref MM[1].Y);
}
public static void GetMiY_MaY(this Par[] Pars, out Vector2D[] MM)
public static void GetMiY_MaY(this ShapePart[] Pars, out Vector2D[] MM)
{
Par par = Pars.First();
Vector2D vector2D = par.ToGlobal(par.GetOP().First().ps.First());
ShapePart shapePart = Pars.First();
Vector2D vector2D = shapePart.ToGlobal(shapePart.GetOP().First().ps.First());
MM = new Vector2D[2];
MM[0].Y = vector2D.Y;
MM[1].Y = vector2D.Y;
GetMinMaxY(Pars, ref MM[0].Y, ref MM[1].Y);
}
public static void GetMaY_MiY(this Par Par, out Vector2D[] MM)
public static void GetMaY_MiY(this ShapePart ShapePart, out Vector2D[] MM)
{
Vector2D vector2D = Par.ToGlobal(Par.GetOP().First().ps.First());
Vector2D vector2D = ShapePart.ToGlobal(ShapePart.GetOP().First().ps.First());
MM = new Vector2D[2];
MM[0].Y = vector2D.Y;
MM[1].Y = vector2D.Y;
GetMinMaxY(Par, ref MM[1].Y, ref MM[0].Y);
GetMinMaxY(ShapePart, ref MM[1].Y, ref MM[0].Y);
}
public static Obj ObjLoad(this byte[] bd)
{
return bd.Load<byte[]>().ToDeserialObject<Obj>().SetDefaultR();
public static BodyTemplate ObjLoad(this byte[] bd)
{
return bd.Load<byte[]>().ToDeserialObject<BodyTemplate>().SetDefaultR();
}
public static BodyTemplate? ObjLoadRaw(this byte[] bd)
{
try
{
return bd.Load<byte[]>().ToDeserialObject<BodyTemplate>();
}
catch
{
return null;
}
}
public static bool Lot(this double p)
{
return RNG.XS.NextDouble() < p;
return Rng.XS.NextDouble() < p;
}
public static int GetRandomIndex(params double[] WeightTable)
{
double les = WeightTable.Sum();
double num = RNG.XS.NextDouble(les);
double num = Rng.XS.NextDouble(les);
int result = -1;
for (int i = 0; i < WeightTable.Length; i++)
{
@@ -333,7 +345,7 @@ namespace _2DGAMELIB
return string.Join(Separator, strs);
}
static Oth()
static GeometryUtils()
{
}

View File

@@ -1,24 +0,0 @@
using System;
using System.IO;
namespace _2DGAMELIB
{
//its the position of a joint
[Serializable]
public class Joi
{
public Vector2D Joint = Dat.Vec2DZero;
public Joi(Joi Joi)
{
Joint = Joi.Joint;
}
public Joi(Vector2D Joint)
{
this.Joint = Joint;
}
}
}

View File

@@ -5,13 +5,13 @@ namespace _2DGAMELIB
[Serializable]
public class Joint
{
public Par Par0;
public ShapePart Par0;
public int Index;
public Par Par1;
public ShapePart Par1;
public Joint(Par Par0, int Index, Par Par1)
public Joint(ShapePart Par0, int Index, ShapePart Par1)
{
this.Par0 = Par0;
this.Index = Index;

View File

@@ -6,15 +6,15 @@ namespace _2DGAMELIB
[Serializable]
public class JointD
{
public Difs Difs0;
public VariantGrid Difs0;
public List<int> Path0;
public int Index;
public Difs Difs1;
public VariantGrid Difs1;
public JointD(Difs Difs0, Par Par0, int Index, Difs Difs1)
public JointD(VariantGrid Difs0, ShapePart Par0, int Index, VariantGrid Difs1)
{
this.Difs0 = Difs0;
Path0 = Par0.GetPath();
@@ -22,7 +22,7 @@ namespace _2DGAMELIB
this.Difs1 = Difs1;
}
public JointD(Difs Difs1)
public JointD(VariantGrid Difs1)
{
this.Difs1 = Difs1;
}
@@ -41,7 +41,7 @@ namespace _2DGAMELIB
public void Set(JointS )
{
Difs0 = .Difs;
Difs0 = .VariantGrid;
Path0 = .Path;
Index = .Index;
}

View File

@@ -4,22 +4,22 @@ using System.Linq;
namespace _2DGAMELIB
{
public static class Join
public static class JointLink
{
public static double IdentityDistance = System.Math.Pow(5E-05, 2.0);
public static Joints GetJoints(this Par JoinRoot, IEnumerable<Par> EnumPar)
public static Joints GetJoints(this ShapePart JoinRoot, IEnumerable<ShapePart> EnumPar)
{
Joints joints = new Joints();
int num = 0;
List<int> list = new List<int>();
List<Par> list2 = EnumPar.ToList();
foreach (Joi item in JoinRoot.GetJP())
List<ShapePart> list2 = EnumPar.ToList();
foreach (JointPoint item in JoinRoot.GetJP())
{
Vector2D v = JoinRoot.ToGlobal(item.Joint);
int num2 = 0;
list.Clear();
foreach (Par item2 in list2)
foreach (ShapePart item2 in list2)
{
if (JoinRoot != item2)
{
@@ -48,7 +48,7 @@ namespace _2DGAMELIB
return joints;
}
private static void GetJoints(List<Par> pl, Joints js, List<int> del)
private static void GetJoints(List<ShapePart> pl, Joints js, List<int> del)
{
int num = -1;
int num2 = 0;
@@ -57,20 +57,20 @@ namespace _2DGAMELIB
num = js.Joins.Count;
for (int i = num2; i < num; i++)
{
Par par = js.Joins[i].Par1;
ShapePart shapePart = js.Joins[i].Par1;
int num3 = 0;
foreach (Joi item in par.GetJP())
foreach (JointPoint item in shapePart.GetJP())
{
Vector2D v = par.ToGlobal(item.Joint);
Vector2D v = shapePart.ToGlobal(item.Joint);
int num4 = 0;
del.Clear();
foreach (Par item2 in pl)
foreach (ShapePart item2 in pl)
{
if (par != item2)
if (shapePart != item2)
{
if (v.DistanceSquared(item2.GetPosition()) <= IdentityDistance)
{
js.Joins.Add(new Joint(par, num3, item2));
js.Joins.Add(new Joint(shapePart, num3, item2));
if (!del.Contains(num4))
{
del.Add(num4);
@@ -94,24 +94,24 @@ namespace _2DGAMELIB
}
}
public static JointsD GetJointsD(this Difs JoinRoot, IEnumerable<Difs> EnumDifs)
public static JointsD GetJointsD(this VariantGrid JoinRoot, IEnumerable<VariantGrid> EnumDifs)
{
JointsD jointsD = new JointsD();
List<int> list = new List<int>();
List<Difs> list2 = EnumDifs.ToList();
foreach (Par item in JoinRoot.EnumAllPar())
List<VariantGrid> list2 = EnumDifs.ToList();
foreach (ShapePart item in JoinRoot.EnumAllPar())
{
int num = 0;
list.Clear();
foreach (Difs item2 in list2)
foreach (VariantGrid item2 in list2)
{
if (JoinRoot != item2)
{
int num2 = 0;
foreach (Joi item3 in item.GetJP())
foreach (JointPoint item3 in item.GetJP())
{
Vector2D v = item.ToGlobal(item3.Joint);
foreach (Par item4 in item2.EnumJoinRoot)
foreach (ShapePart item4 in item2.EnumJoinRoot)
{
if (v.DistanceSquared(item4.GetPosition()) <= IdentityDistance)
{
@@ -141,7 +141,7 @@ namespace _2DGAMELIB
return jointsD;
}
private static void GetJointsD(List<Difs> dl, JointsD jsd, List<int> del)
private static void GetJointsD(List<VariantGrid> dl, JointsD jsd, List<int> del)
{
int num = -1;
int num2 = 0;
@@ -150,24 +150,24 @@ namespace _2DGAMELIB
num = jsd.Joins.Count;
for (int i = num2; i < num; i++)
{
Difs difs = jsd.Joins[i].Difs1;
foreach (Par item in difs.EnumAllPar())
VariantGrid variantGrid = jsd.Joins[i].Difs1;
foreach (ShapePart item in variantGrid.EnumAllPar())
{
int num3 = 0;
del.Clear();
foreach (Difs item2 in dl)
foreach (VariantGrid item2 in dl)
{
if (difs != item2)
if (variantGrid != item2)
{
int num4 = 0;
foreach (Joi item3 in item.GetJP())
foreach (JointPoint item3 in item.GetJP())
{
Vector2D v = item.ToGlobal(item3.Joint);
foreach (Par item4 in item2.EnumJoinRoot)
foreach (ShapePart item4 in item2.EnumJoinRoot)
{
if (v.DistanceSquared(item4.GetPosition()) <= IdentityDistance)
{
jsd.Joins.Add(new JointD(difs, item, num4, item2));
jsd.Joins.Add(new JointD(variantGrid, item, num4, item2));
if (!del.Contains(num3))
{
del.Add(num3);

View File

@@ -0,0 +1,24 @@
using System;
using System.IO;
namespace _2DGAMELIB
{
//its the position of a joint
[Serializable]
public class JointPoint
{
public Vector2D Joint = DataConsts.Vec2DZero;
public JointPoint(JointPoint JointPoint)
{
Joint = JointPoint.Joint;
}
public JointPoint(Vector2D Joint)
{
this.Joint = Joint;
}
}
}

View File

@@ -27,16 +27,16 @@ namespace _2DGAMELIB
[Serializable]
public class JointS
{
public Difs Difs;
public VariantGrid VariantGrid;
public List<int> Path;
public int Index;
public JointS(Difs Difs, Par Par, int Index)
public JointS(VariantGrid VariantGrid, ShapePart ShapePart, int Index)
{
this.Difs = Difs;
Path = Par.GetPath();
this.VariantGrid = VariantGrid;
Path = ShapePart.GetPath();
this.Index = Index;
}
}

View File

@@ -5,7 +5,7 @@ namespace _2DGAMELIB
{
public class Lab
{
private ParT parT;
private ShapePartT _shapePartT;
private RenderArea Are;
@@ -13,13 +13,13 @@ namespace _2DGAMELIB
private double Min;
public ParT ParT => parT;
public ShapePartT ShapePartT => _shapePartT;
public string Text
{
get
{
return parT.Text;
return _shapePartT.Text;
}
set
{
@@ -29,7 +29,7 @@ namespace _2DGAMELIB
private void SetText(string Text)
{
parT.Text = Text;
_shapePartT.Text = Text;
SetRect();
}
@@ -48,75 +48,75 @@ namespace _2DGAMELIB
this.Are = Are;
this.Width = Width;
Out[] array = new Out[1] { Shas.GetSquare() };
CurveOutline[] array = new CurveOutline[1] { ShapeHelper.GetSquare() };
if (FramColor == Color.Empty || FramColor == Color.Transparent)
{
array.OutlineFalse();
}
parT = new ParT
_shapePartT = new ShapePartT
{
Tag = Name,
Text = "A"
};
parT.SetFont(Font);
parT.SetFontSize(TextSize);
parT.SetTextColor(TextColor);
parT.SetInitializeOP(array);
parT.SetBasePointBase(array[0].ps[0]);
parT.SetPositionBase(Position);
parT.SetSizeBase(Size);
parT.SetClosed(true);
parT.SetBrushColor(BackColor);
parT.SetPenColor(FramColor);
_shapePartT.SetFont(Font);
_shapePartT.SetFontSize(TextSize);
_shapePartT.SetTextColor(TextColor);
_shapePartT.SetInitializeOP(array);
_shapePartT.SetBasePointBase(array[0].ps[0]);
_shapePartT.SetPositionBase(Position);
_shapePartT.SetSizeBase(Size);
_shapePartT.SetClosed(true);
_shapePartT.SetBrushColor(BackColor);
_shapePartT.SetPenColor(FramColor);
if (ShadColor != Color.Empty)
{
parT.SetShadBrush(new SolidBrush(ShadColor));
_shapePartT.SetShadBrush(new SolidBrush(ShadColor));
}
SetRect();
Min = parT.GetRectSize().Y;
Min = _shapePartT.GetRectSize().Y;
SetText(Text);
}
public void SetHitColor(ModeEventDispatcher Med)
{
if (parT.GetHitColor() != Color.Transparent)
if (_shapePartT.GetHitColor() != Color.Transparent)
{
Med.RemUniqueColor(parT.GetHitColor());
Med.RemUniqueColor(_shapePartT.GetHitColor());
}
parT.SetHitColor(Med.GetUniqueColor());
_shapePartT.SetHitColor(Med.GetUniqueColor());
}
private void SetRect()
{
if (!string.IsNullOrEmpty(parT.Text))
if (!string.IsNullOrEmpty(_shapePartT.Text))
{
parT.SetRectSize(new Vector2D(Width, 10.0));
Vector2D_2 stringRect = parT.GetStringRect(Are.DisplayUnitScale, Are.DisplayGraphics);
_shapePartT.SetRectSize(new Vector2D(Width, 10.0));
Vector2D_2 stringRect = _shapePartT.GetStringRect(Are.DisplayUnitScale, Are.DisplayGraphics);
double x = ((stringRect.v2.X > Min) ? stringRect.v2.X : Min) + 0.07;
parT.SetRectSize(new Vector2D(x, stringRect.v2.Y));
_shapePartT.SetRectSize(new Vector2D(x, stringRect.v2.Y));
}
else
{
double x2 = Min + 0.07;
parT.SetRectSize(new Vector2D(x2, Min));
_shapePartT.SetRectSize(new Vector2D(x2, Min));
}
parT.GetOP()[0].ps[0] = new Vector2D(0.0, 0.0);
parT.GetOP()[0].ps[1] = new Vector2D(parT.GetRectSize().X, 0.0);
parT.GetOP()[0].ps[2] = new Vector2D(parT.GetRectSize().X, parT.GetRectSize().Y);
parT.GetOP()[0].ps[3] = new Vector2D(0.0, parT.GetRectSize().Y);
_shapePartT.GetOP()[0].ps[0] = new Vector2D(0.0, 0.0);
_shapePartT.GetOP()[0].ps[1] = new Vector2D(_shapePartT.GetRectSize().X, 0.0);
_shapePartT.GetOP()[0].ps[2] = new Vector2D(_shapePartT.GetRectSize().X, _shapePartT.GetRectSize().Y);
_shapePartT.GetOP()[0].ps[3] = new Vector2D(0.0, _shapePartT.GetRectSize().Y);
}
public void Dispose()
{
parT.Dispose();
_shapePartT.Dispose();
}
}
}

View File

@@ -3,7 +3,7 @@ using System.Drawing;
namespace _2DGAMELIB
{
public class Labs
public class LabelMap
{
private OrderedDictionary<string, Lab> labs = new OrderedDictionary<string, Lab>();
@@ -13,7 +13,7 @@ namespace _2DGAMELIB
public Lab this[string Name] => labs[Name];
public Labs(ModeEventDispatcher Med, RenderArea Are)
public LabelMap(ModeEventDispatcher Med, RenderArea Are)
{
this.Med = Med;
this.Are = Are;
@@ -28,7 +28,7 @@ namespace _2DGAMELIB
{
foreach (Lab value in labs.Values)
{
Are.Draw(value.ParT);
Are.Draw(value.ShapePartT);
}
}

View File

@@ -3,13 +3,14 @@ using System.Drawing.Drawing2D;
namespace _2DGAMELIB
{
public class AreM : RenderArea
//TODO: Find a better name...
public class ManagedArea : RenderArea
{
private double strength;
private double unitS;
public AreM(double Unit, double XRatio, double YRatio, double Size, double DisMag, double HitMag, double Strength) :
public ManagedArea(double Unit, double XRatio, double YRatio, double Size, double DisMag, double HitMag, double Strength) :
base(Unit, XRatio, YRatio, Size, DisMag, HitMag)
{
SetXYRatio(XRatio, YRatio);
@@ -40,12 +41,12 @@ namespace _2DGAMELIB
hitGraphics.PixelOffsetMode = PixelOffsetMode.None;
}
public new void Draw(Pars Pars)
public new void Draw(PartGroup PartGroup)
{
Pars.Draw(unitS, displayGraphics);
PartGroup.Draw(unitS, displayGraphics);
if (hitGraphics != null)
{
Pars.DrawH(hitUnitScale, hitGraphics);
PartGroup.DrawH(hitUnitScale, hitGraphics);
}
}
}

View File

@@ -29,11 +29,11 @@ namespace _2DGAMELIB
public Bitmap Hit;
public Graphics HitGraphics;
public Sce Sce;
public FPS FPSF = new FPS(60.0);
public SceneFader SceneFader;
public FpsCounter FPSF = new FpsCounter(60.0);
private Size BaseSize = Size.Empty;
private Vector2D resVector = Dat.Vec2DZero;
private Vector2D resVector = DataConsts.Vec2DZero;
public string UITitle;
@@ -60,11 +60,11 @@ namespace _2DGAMELIB
}
set
{
Modes[mode].Up(MouseButtons.None, Dat.Vec2DZero, Color.Empty);
Modes[mode].Move(MouseButtons.None, Dat.Vec2DZero, Color.Empty);
Modes[mode].Up(MouseButtons.None, DataConsts.Vec2DZero, Color.Empty);
Modes[mode].Move(MouseButtons.None, DataConsts.Vec2DZero, Color.Empty);
Modeb = mode;
mode = value;
Modes[mode].Move(MouseButtons.None, Dat.Vec2DZero, Color.Empty);
Modes[mode].Move(MouseButtons.None, DataConsts.Vec2DZero, Color.Empty);
Modes[mode].Setting();
}
}
@@ -84,12 +84,12 @@ namespace _2DGAMELIB
public void FadeIn(double Rate)
{
Sce.TransformAlpha(DisplayGraphics, Rate);
SceneFader.TransformAlpha(DisplayGraphics, Rate);
}
public void FadeOut(double Rate)
{
Sce.TransD(DisplayGraphics, Rate);
SceneFader.TransD(DisplayGraphics, Rate);
}
public void InitializeModes(string Mode, Func<ModeEventDispatcher, Dictionary<string, Module>> GetModes)
@@ -121,7 +121,7 @@ namespace _2DGAMELIB
WidthM = Hit.Width - 1;
HeightM = Hit.Height - 1;
Sce = new Sce(BaseSize.Width, BaseSize.Height);
SceneFader = new SceneFader(BaseSize.Width, BaseSize.Height);
Modes = GetModes(this);
@@ -347,10 +347,10 @@ namespace _2DGAMELIB
//hit color stuff
public Color GetUniqueColor()
{
Oth.GetRandomColor(out var ret);
GeometryUtils.GetRandomColor(out var ret);
while (HitColors.Contains(ret))
{
Oth.GetRandomColor(out ret);
GeometryUtils.GetRandomColor(out ret);
}
HitColors.Add(ret);
return ret;
@@ -358,17 +358,17 @@ namespace _2DGAMELIB
public void GetUniqueColor(out Color c)
{
Oth.GetRandomColor(out c);
GeometryUtils.GetRandomColor(out c);
while (HitColors.Contains(c))
{
Oth.GetRandomColor(out c);
GeometryUtils.GetRandomColor(out c);
}
HitColors.Add(c);
}
public void SetUniqueColor(IEnumerable<Par> ps)
public void SetUniqueColor(IEnumerable<ShapePart> ps)
{
foreach (Par p in ps)
foreach (ShapePart p in ps)
{
p.SetHitColor(GetUniqueColor());
}
@@ -379,9 +379,9 @@ namespace _2DGAMELIB
HitColors.Remove(Color);
}
public void RemUniqueColor(IEnumerable<Par> ps)
public void RemUniqueColor(IEnumerable<ShapePart> ps)
{
foreach (Par p in ps)
foreach (ShapePart p in ps)
{
HitColors.Remove(p.GetHitColor());
}

View File

@@ -3,6 +3,9 @@ using System.Drawing;
namespace _2DGAMELIB
{
/// <summary>
/// Represents a screen module/mode
/// </summary>
public class Module
{
public Action<MouseButtons, Vector2D, Color> Down = delegate
@@ -25,7 +28,7 @@ namespace _2DGAMELIB
{
};
public Action<FPS> Draw = delegate
public Action<FpsCounter> Draw = delegate
{
};

View File

@@ -0,0 +1,152 @@
using System;
using System.Collections.Generic;
using System.Drawing;
namespace _2DGAMELIB
{
[Serializable]
public class MorphVariant
{
public string Tag = "";
private List<PartGroup> parss = new List<PartGroup>();
public List<PartGroup> Parss => parss;
public int Count => parss.Count;
public PartGroup this[int Index]
{
get
{
return parss[Index];
}
set
{
parss[Index] = value;
}
}
public void SetAngleBase(double value)
{
foreach (PartGroup item in parss)
{
item.SetAngleBase(value);
}
}
public void SetSizeBase(double value)
{
foreach (PartGroup item in parss)
{
item.SetSizeBase(value);
}
}
public void SetSizeYCont(double value)
{
foreach (PartGroup item in parss)
{
item.SetSizeYCont(value);
}
}
public IEnumerable<ShapePart> EnumAllPar()
{
foreach (PartGroup item in parss)
{
foreach (ShapePart item2 in item.EnumAllPar())
{
yield return item2;
}
}
}
public void SetDefault()
{
foreach (PartGroup item in parss)
{
item.SetDefault();
}
}
public MorphVariant()
{
}
public MorphVariant(MorphVariant MorphVariant)
{
Copy(MorphVariant);
}
private void Copy(MorphVariant MorphVariant)
{
Tag = MorphVariant.Tag;
foreach (PartGroup item in MorphVariant.parss)
{
parss.Add(new PartGroup(item));
}
}
public void Add(PartGroup PartGroup)
{
parss.Add(PartGroup);
}
public List<string> GetHitTags(ref Color HitColor)
{
List<string> list = new List<string>();
foreach (PartGroup item in parss)
{
list.AddRange(item.GetHitTags(ref HitColor));
}
return list;
}
public List<ShapePart> GetHitPars(ref Color HitColor)
{
List<ShapePart> list = new List<ShapePart>();
foreach (PartGroup item in parss)
{
list.AddRange(item.GetHitPars(ref HitColor));
}
return list;
}
public bool IsHit(ref Color HitColor)
{
foreach (PartGroup item in parss)
{
if (item.IsHit(ref HitColor))
{
return true;
}
}
return false;
}
public void ReverseX()
{
foreach (PartGroup item in parss)
{
item.ReverseX();
}
}
public void ReverseY()
{
foreach (PartGroup item in parss)
{
item.ReverseY();
}
}
public void Dispose()
{
foreach (PartGroup item in parss)
{
item.Dispose();
}
}
}
}

View File

@@ -2,7 +2,7 @@ using System;
namespace _2DGAMELIB
{
public class Motion : MotV
public class Motion : MotionBase
{
public Action<Motion> OnStart;
@@ -25,7 +25,7 @@ namespace _2DGAMELIB
{
}
public new void GetValue(FPS FPS)
public new void GetValue(FpsCounter FPS)
{
if (!run)
{

View File

@@ -1,6 +1,6 @@
namespace _2DGAMELIB
{
public class MotV
public class MotionBase
{
public double Value;
@@ -58,7 +58,7 @@ namespace _2DGAMELIB
}
}
public MotV(double Min, double Max)
public MotionBase(double Min, double Max)
{
min = Min;
max = Max;
@@ -78,13 +78,13 @@ namespace _2DGAMELIB
Value = min;
}
private void Count(FPS FPS)
private void Count(FpsCounter FPS)
{
m = Frame / FPS.Value;
Value += (m * d + m * LowestIncrease) * BaseSpeed * ((s > 0) ? GotoSpeed : RetuSpeed) * (double)s;
}
public void GetValue(FPS FPS)
public void GetValue(FpsCounter FPS)
{
if (!((double)(FPS.sw.ElapsedMilliseconds - st) < Interval) && FPS.Value > 0.0)
{

View File

@@ -35,7 +35,7 @@ namespace _2DGAMELIB
ms.Remove(Name);
}
public void Drive(FPS FPS)
public void Drive(FpsCounter FPS)
{
foreach (Motion value in ms.Values)
{

View File

@@ -28,35 +28,22 @@ namespace _2DGAMELIB
["四足上腕"] = "四足UpperArm",
["鳥翼下腕"] = "鳥翼LowerArm",
["獣翼下腕"] = "獣翼LowerArm",
["四足下腕"] = "四足LowerArm"
//["乳房"] = "Breast",
//["腹"] = "Abdomen",
//["顔"] = "Face",
//["目"] = "Eye",
//["眉"] = "Eyebrow",
//["瞼"] = "Eyelid",
//["鼻"] = "Nose",
//["口"] = "Mouth",
//["耳"] = "Ear",
//["触覚"] = "Antenna",
//["髪"] = "Hair",
//["基髪"] = "BaseHair",
//["吹出し"] = "SpeechBubble",
["四足下腕"] = "四足LowerArm",
};
public static void MigrateKeys(this Obj obj)
public static void MigrateKeys(this BodyTemplate BodyTemplate)
{
var newDict = new OrderedDictionary<string, Difs>();
var newDict = new OrderedDictionary<string, VariantGrid>();
foreach (var key in obj.Keys)
foreach (var key in BodyTemplate.Keys)
{
var newKey = KeyMap.TryGetValue(key, out var mapped) ? mapped : key;
var difs = obj.Difss[key];
var difs = BodyTemplate.Difss[key];
newDict.Add(newKey, difs);
}
obj.Difss = newDict;
BodyTemplate.Difss = newDict;
}
}

View File

@@ -0,0 +1,47 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace _2DGAMELIB
{
public class OrderedDictionaryConverter<T1, T2> : JsonConverter<OrderedDictionary<T1, T2>>
where T1 : notnull
{
public override OrderedDictionary<T1, T2> ReadJson(JsonReader reader, Type objectType, OrderedDictionary<T1, T2> existingValue, bool hasExistingValue, JsonSerializer serializer)
{
var dict = new OrderedDictionary<T1, T2>();
if (reader.TokenType == JsonToken.Null)
return dict;
var array = JArray.Load(reader);
foreach (var item in array)
{
var key = item["Key"].ToObject<T1>(serializer);
var value = item["Value"].ToObject<T2>(serializer);
dict.Add(key, value);
}
return dict;
}
public override void WriteJson(JsonWriter writer, OrderedDictionary<T1, T2> value, JsonSerializer serializer)
{
writer.WriteStartArray();
foreach (var key in value.Keys)
{
writer.WriteStartObject();
writer.WritePropertyName("Key");
serializer.Serialize(writer, key);
writer.WritePropertyName("Value");
serializer.Serialize(writer, value[key]);
writer.WriteEndObject();
}
writer.WriteEndArray();
}
}
}

View File

@@ -1,340 +0,0 @@
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Drawing2D;
namespace _2DGAMELIB
{
[Serializable]
public class Pars
{
private Pars parent;
public string Tag = "";
public OrderedDictionary<string, object> pars = new OrderedDictionary<string, object>();
public Pars Parent => parent;
public IEnumerable<object> Values => pars.Values;
public void SetAngleBase(double value)
{
foreach (object value2 in pars.Values)
{
if (value2 is Pars)
{
((Pars)value2).SetAngleBase(value);
}
else if (value2 is Par)
{
((Par)value2).SetAngleBase(value);
}
}
}
public void SetSizeBase(double value)
{
foreach (object value2 in pars.Values)
{
if (value2 is Pars)
{
((Pars)value2).SetSizeBase(value);
}
else if (value2 is Par)
{
((Par)value2).SetSizeBase(value);
}
}
}
public void SetSizeYCont(double value)
{
foreach (object value2 in pars.Values)
{
if (value2 is Pars)
{
((Pars)value2).SetSizeYCont(value);
}
else if (value2 is Par)
{
((Par)value2).SetSizeYCont(value);
}
}
}
public object this[string Name]
{
get
{
return pars[Name];
}
set
{
pars[Name] = value;
}
}
public void SetParent(Pars Parent)
{
parent = Parent;
}
public int IndexOf(object obj)
{
return pars.IndexOf(obj);
}
public void Add(string Name, Par Par)
{
Par.SetParent(this);
pars.Add(Name, Par);
}
public void Add(string Name, ParT ParT)
{
ParT.SetParent(this);
pars.Add(Name, ParT);
}
public void Add(string Name, Pars Pars)
{
Pars.SetParent(this);
pars.Add(Name, Pars);
}
public void Add(Pars Pars)
{
Pars.SetParent(this);
pars.Add(Pars.Tag, Pars);
}
public void Remove(string Name)
{
object obj = pars[Name];
if (obj is Pars)
{
((Pars)obj).SetParent(null);
}
else if (obj is ParT)
{
((ParT)obj).SetParent(null);
}
else if (obj is Par)
{
((Par)obj).SetParent(null);
}
pars.Remove(Name);
}
public IEnumerable<Par> EnumAllPar()
{
foreach (object value in pars.Values)
{
if (value is Pars)
{
foreach (Par item in ((Pars)value).EnumAllPar())
{
yield return item;
}
}
else if (value is Par)
{
yield return (Par)value;
}
}
}
public void SetDefault()
{
foreach (object value in pars.Values)
{
if (value is Pars)
{
((Pars)value).SetDefault();
}
else if (value is ParT)
{
((ParT)value).SetDefault();
}
else if (value is Par)
{
((Par)value).SetDefault();
}
}
}
public Pars()
{
}
public Pars(ParT ParT)
{
Tag = ParT.Tag;
Add(ParT.Tag, ParT);
}
public Pars(Pars Pars)
{
Copy(Pars);
}
private void Copy(Pars Pars)
{
Tag = Pars.Tag;
foreach (string key in Pars.pars.Keys)
{
object obj = Pars.pars[key];
if (obj is Pars)
{
Add(key, ((Pars)obj).Clone());
}
else if (obj is ParT)
{
Add(key, new ParT((ParT)obj));
}
else if (obj is Par)
{
Add(key, new Par((Par)obj));
}
}
}
private Pars Clone()
{
Pars pars2 = new Pars();
pars2.Tag = Tag;
foreach (string key in pars.Keys)
{
object obj = pars[key];
if (obj is Pars)
{
pars2.Add(key, ((Pars)obj).Clone());
}
else if (obj is ParT)
{
pars2.Add(key, new ParT((ParT)obj));
}
else if (obj is Par)
{
pars2.Add(key, new Par((Par)obj));
}
}
return pars2;
}
public void Draw(double Unit, Graphics Graphics)
{
foreach (object value in pars.Values)
{
if (value is Pars)
{
((Pars)value).Draw(Unit, Graphics);
}
else if (value is ParT)
{
((ParT)value).Draw(Unit, Graphics);
}
else if (value is Par)
{
((Par)value).Draw(Unit, Graphics);
}
}
}
public void DrawH(double Unit, Graphics Graphics)
{
foreach (object value in pars.Values)
{
if (value is Pars)
{
((Pars)value).DrawH(Unit, Graphics);
}
else if (value is Par)
{
((Par)value).DrawH(Unit, Graphics);
}
}
}
public bool IsHit(ref Color HitColor)
{
foreach (object value in pars.Values)
{
if (value is Pars && ((Pars)value).IsHit(ref HitColor))
{
return true;
}
if (value is Par && ((Par)value).GetHitColor() == HitColor)
{
return true;
}
}
return false;
}
public Par GetPar(List<int> Path)
{
return GetPar(0, Path);
}
private Par GetPar(int l, List<int> Path)
{
object obj = pars[Path[l]];
if (obj is Pars)
{
return ((Pars)obj).GetPar(l + 1, Path);
}
return (Par)obj;
}
public void ReverseX()
{
foreach (object value in pars.Values)
{
if (value is Pars)
{
((Pars)value).ReverseX();
}
else if (value is Par)
{
((Par)value).ReverseX();
}
}
}
public void ReverseY()
{
foreach (object value in pars.Values)
{
if (value is Pars)
{
((Pars)value).ReverseY();
}
else if (value is Par)
{
((Par)value).ReverseY();
}
}
}
public void Dispose()
{
foreach (object value in pars.Values)
{
if (value is Pars)
{
((Pars)value).Dispose();
}
else if (value is ParT)
{
((ParT)value).Dispose();
}
else if (value is Par)
{
((Par)value).Dispose();
}
}
}
}
}

View File

@@ -0,0 +1,481 @@
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Drawing2D;
namespace _2DGAMELIB
{
[Serializable]
public class PartGroup
{
private PartGroup parent;
public string Tag = "";
public OrderedDictionary<string, object> pars = new OrderedDictionary<string, object>();
public PartGroup Parent => parent;
public IEnumerable<object> Values => pars.Values;
public void SetAngleBase(double value)
{
foreach (object value2 in pars.Values)
{
if (value2 is PartGroup)
{
((PartGroup)value2).SetAngleBase(value);
}
else if (value2 is ShapePart)
{
((ShapePart)value2).SetAngleBase(value);
}
}
}
public void SetSizeBase(double value)
{
foreach (object value2 in pars.Values)
{
if (value2 is PartGroup)
{
((PartGroup)value2).SetSizeBase(value);
}
else if (value2 is ShapePart)
{
((ShapePart)value2).SetSizeBase(value);
}
}
}
public void SetSizeYCont(double value)
{
foreach (object value2 in pars.Values)
{
if (value2 is PartGroup)
{
((PartGroup)value2).SetSizeYCont(value);
}
else if (value2 is ShapePart)
{
((ShapePart)value2).SetSizeYCont(value);
}
}
}
public object this[string Name]
{
get
{
return pars[Name];
}
set
{
pars[Name] = value;
}
}
public object this[int Index]
{
get
{
return pars[Index];
}
set
{
pars[Index] = value;
}
}
public void SetParent(PartGroup Parent)
{
parent = Parent;
}
public int IndexOf(object obj)
{
return pars.IndexOf(obj);
}
public void Add(string Name, ShapePart ShapePart)
{
ShapePart.SetParent(this);
pars.Add(Name, ShapePart);
}
public void Add(string Name, ShapePartT ShapePartT)
{
ShapePartT.SetParent(this);
pars.Add(Name, ShapePartT);
}
public void Add(string Name, PartGroup PartGroup)
{
PartGroup.SetParent(this);
pars.Add(Name, PartGroup);
}
public void Add(PartGroup PartGroup)
{
PartGroup.SetParent(this);
pars.Add(PartGroup.Tag, PartGroup);
}
public void Remove(string Name)
{
object obj = pars[Name];
if (obj is PartGroup)
{
((PartGroup)obj).SetParent(null);
}
else if (obj is ShapePartT)
{
((ShapePartT)obj).SetParent(null);
}
else if (obj is ShapePart)
{
((ShapePart)obj).SetParent(null);
}
pars.Remove(Name);
}
public IEnumerable<ShapePart> EnumAllPar()
{
foreach (object value in pars.Values)
{
if (value is PartGroup)
{
foreach (ShapePart item in ((PartGroup)value).EnumAllPar())
{
yield return item;
}
}
else if (value is ShapePart)
{
yield return (ShapePart)value;
}
}
}
public void SetDefault()
{
foreach (object value in pars.Values)
{
if (value is PartGroup)
{
((PartGroup)value).SetDefault();
}
else if (value is ShapePartT)
{
((ShapePartT)value).SetDefault();
}
else if (value is ShapePart)
{
((ShapePart)value).SetDefault();
}
}
}
public PartGroup()
{
}
public PartGroup(ShapePart ShapePart)
{
Tag = ShapePart.Tag;
Add(ShapePart.Tag, ShapePart);
}
public PartGroup(ShapePartT ShapePartT)
{
Tag = ShapePartT.Tag;
Add(ShapePartT.Tag, ShapePartT);
}
public PartGroup(PartGroup PartGroup)
{
Copy(PartGroup);
}
private void Copy(PartGroup PartGroup)
{
Tag = PartGroup.Tag;
foreach (string key in PartGroup.pars.Keys)
{
object obj = PartGroup.pars[key];
if (obj is PartGroup)
{
Add(key, ((PartGroup)obj).Clone());
}
else if (obj is ShapePartT)
{
Add(key, new ShapePartT((ShapePartT)obj));
}
else if (obj is ShapePart)
{
Add(key, new ShapePart((ShapePart)obj));
}
}
}
private PartGroup Clone()
{
PartGroup pars2 = new PartGroup();
pars2.Tag = Tag;
foreach (string key in pars.Keys)
{
object obj = pars[key];
if (obj is PartGroup)
{
pars2.Add(key, ((PartGroup)obj).Clone());
}
else if (obj is ShapePartT)
{
pars2.Add(key, new ShapePartT((ShapePartT)obj));
}
else if (obj is ShapePart)
{
pars2.Add(key, new ShapePart((ShapePart)obj));
}
}
return pars2;
}
public void Draw(double Unit, Graphics Graphics)
{
foreach (object value in pars.Values)
{
if (value is PartGroup)
{
((PartGroup)value).Draw(Unit, Graphics);
}
else if (value is ShapePartT)
{
((ShapePartT)value).Draw(Unit, Graphics);
}
else if (value is ShapePart)
{
((ShapePart)value).Draw(Unit, Graphics);
}
}
}
public void DrawH(double Unit, Graphics Graphics)
{
foreach (object value in pars.Values)
{
if (value is PartGroup)
{
((PartGroup)value).DrawH(Unit, Graphics);
}
else if (value is ShapePart)
{
((ShapePart)value).DrawH(Unit, Graphics);
}
}
}
public List<string> GetHitTags(ref Color HitColor)
{
List<string> list = new List<string>();
foreach (object value in pars.Values)
{
ShapePart shapePart;
if (value is PartGroup)
{
list.AddRange(((PartGroup)value).GetHitTags(ref HitColor));
}
else if (value is ShapePart && (shapePart = (ShapePart)value).GetHitColor() == HitColor)
{
list.Add(shapePart.Tag);
}
}
return list;
}
public List<ShapePart> GetHitPars(ref Color HitColor)
{
List<ShapePart> list = new List<ShapePart>();
foreach (object value in pars.Values)
{
ShapePart item;
if (value is PartGroup)
{
list.AddRange(((PartGroup)value).GetHitPars(ref HitColor));
}
else if (value is ShapePart && (item = (ShapePart)value).GetHitColor() == HitColor)
{
list.Add(item);
}
}
return list;
}
public bool IsHit(ref Color HitColor)
{
foreach (object value in pars.Values)
{
if (value is PartGroup && ((PartGroup)value).IsHit(ref HitColor))
{
return true;
}
if (value is ShapePart && ((ShapePart)value).GetHitColor() == HitColor)
{
return true;
}
}
return false;
}
public ShapePart GetPar(List<int> Path)
{
return GetPar(0, Path);
}
private ShapePart GetPar(int l, List<int> Path)
{
object obj = pars[Path[l]];
if (obj is PartGroup)
{
return ((PartGroup)obj).GetPar(l + 1, Path);
}
return (ShapePart)obj;
}
public void ReverseX()
{
foreach (object value in pars.Values)
{
if (value is PartGroup)
{
((PartGroup)value).ReverseX();
}
else if (value is ShapePart)
{
((ShapePart)value).ReverseX();
}
}
}
public void ReverseY()
{
foreach (object value in pars.Values)
{
if (value is PartGroup)
{
((PartGroup)value).ReverseY();
}
else if (value is ShapePart)
{
((ShapePart)value).ReverseY();
}
}
}
public void Dispose()
{
foreach (object value in pars.Values)
{
if (value is PartGroup)
{
((PartGroup)value).Dispose();
}
else if (value is ShapePartT)
{
((ShapePartT)value).Dispose();
}
else if (value is ShapePart)
{
((ShapePart)value).Dispose();
}
}
}
}
public static class PartGroupUtils
{
public static PartGroup ToPars(this object obj)
{
return (PartGroup)obj;
}
public static ShapePartT ToParT(this object obj)
{
return (ShapePartT)obj;
}
public static ShapePart ToPar(this object obj)
{
return (ShapePart)obj;
}
public static Pen Copy(this Pen Pen)
{
return new Pen(Pen.Color, Pen.Width)
{
EndCap = Pen.EndCap,
StartCap = Pen.StartCap
};
}
public static Brush Copy(this Brush Brush)
{
if (Brush is SolidBrush)
{
return new SolidBrush(((SolidBrush)Brush).Color);
}
if (Brush is LinearGradientBrush)
{
LinearGradientBrush linearGradientBrush = (LinearGradientBrush)Brush;
LinearGradientBrush linearGradientBrush2 = new LinearGradientBrush(linearGradientBrush.Rectangle, Color.Black, Color.White, 0f);
linearGradientBrush2.Blend = linearGradientBrush.Blend;
linearGradientBrush2.GammaCorrection = linearGradientBrush.GammaCorrection;
linearGradientBrush2.InterpolationColors = linearGradientBrush.InterpolationColors;
linearGradientBrush2.LinearColors = new Color[linearGradientBrush.LinearColors.Length];
linearGradientBrush.LinearColors.CopyTo(linearGradientBrush2.LinearColors, 0);
linearGradientBrush2.Transform = linearGradientBrush.Transform;
linearGradientBrush2.WrapMode = linearGradientBrush.WrapMode;
return linearGradientBrush2;
}
if (Brush is PathGradientBrush)
{
PathGradientBrush pathGradientBrush = (PathGradientBrush)Brush;
PathGradientBrush pathGradientBrush2 = new PathGradientBrush(new GraphicsPath());
pathGradientBrush2.Blend = pathGradientBrush.Blend;
pathGradientBrush2.CenterColor = pathGradientBrush.CenterColor;
pathGradientBrush2.CenterPoint = pathGradientBrush.CenterPoint;
pathGradientBrush2.FocusScales = pathGradientBrush.FocusScales;
pathGradientBrush2.InterpolationColors = pathGradientBrush.InterpolationColors;
pathGradientBrush2.SurroundColors = new Color[pathGradientBrush.SurroundColors.Length];
pathGradientBrush.SurroundColors.CopyTo(pathGradientBrush2.SurroundColors, 0);
pathGradientBrush2.Transform = pathGradientBrush.Transform;
pathGradientBrush2.WrapMode = pathGradientBrush.WrapMode;
return pathGradientBrush2;
}
if (Brush is TextureBrush)
{
TextureBrush textureBrush = (TextureBrush)Brush;
return new TextureBrush(textureBrush.Image)
{
Transform = textureBrush.Transform,
WrapMode = textureBrush.WrapMode
};
}
if (Brush is HatchBrush)
{
HatchBrush hatchBrush = (HatchBrush)Brush;
return new HatchBrush(hatchBrush.HatchStyle, hatchBrush.ForegroundColor, hatchBrush.BackgroundColor);
}
return null;
}
public static Font Copy(this Font Font)
{
return new Font(Font.FontFamily, Font.Size, Font.Style, Font.Unit, Font.GdiCharSet, Font.GdiVerticalFont);
}
public static StringFormat Copy(this StringFormat StringFormat)
{
return new StringFormat(StringFormat);
}
}
}

View File

@@ -16,19 +16,19 @@ namespace _2DGAMELIB
Rig
}
public class Gau
public class ProgressBar
{
private Pars pars;
private PartGroup _partGroup;
private Par base_;
private ShapePart base_;
private Par frame1;
private ShapePart frame1;
private Par frame2;
private ShapePart frame2;
private Par gauge;
private ShapePart gauge;
private Par knob;
private ShapePart knob;
private double val;
@@ -56,15 +56,15 @@ namespace _2DGAMELIB
private Color MinusColor2;
public Pars Pars => pars;
public PartGroup PartGroup => _partGroup;
public Par Base => base_;
public ShapePart Base => base_;
public Par Frame1 => frame1;
public ShapePart Frame1 => frame1;
public Par Gauge => gauge;
public ShapePart Gauge => gauge;
public Par Knob => knob;
public ShapePart Knob => knob;
public double Value
{
@@ -264,7 +264,7 @@ namespace _2DGAMELIB
Open.Bot => frame1.ToGlobal((TL1 + TR1) * 0.5),
Open.Rig => frame1.ToGlobal((TL1 + BL1) * 0.5),
Open.Lef => frame1.ToGlobal((TR1 + BR1) * 0.5),
_ => Dat.Vec2DZero,
_ => DataConsts.Vec2DZero,
};
}
@@ -276,19 +276,19 @@ namespace _2DGAMELIB
Open.Bot => gauge.ToGlobal((BLG + BRG) * 0.5),
Open.Rig => gauge.ToGlobal((TRG + BRG) * 0.5),
Open.Lef => gauge.ToGlobal((TLG + BLG) * 0.5),
_ => Dat.Vec2DZero,
_ => DataConsts.Vec2DZero,
};
}
private void ParSetting(string Name, ref Vector2D Position, double Size, double Width, double Height, double Margin, ref Color BackColor, bool knob)
{
pars = new Pars();
base_ = new Par
_partGroup = new PartGroup();
base_ = new ShapePart
{
Tag = Name + "_ベース",
};
base_.SetInitializeOP(new Out[1] { Shas.GetSquare() });
base_.SetInitializeOP(new CurveOutline[1] { ShapeHelper.GetSquare() });
base_.SetPositionBase(Position);
base_.SetSizeBase(Size);
base_.SetSizeXBase(Width);
@@ -299,13 +299,13 @@ namespace _2DGAMELIB
base_.SetBasePointBase(base_.GetOP().GetCenter());
pars.Add(base_.Tag, base_);
frame1 = new Par
_partGroup.Add(base_.Tag, base_);
frame1 = new ShapePart
{
Tag = Name + "_フレーム1",
};
frame1.SetInitializeOP(new Out[1] { Shas.GetSquare() });
frame1.SetInitializeOP(new CurveOutline[1] { ShapeHelper.GetSquare() });
frame1.SetPositionBase(Position);
frame1.SetSizeBase(Size);
frame1.SetSizeXBase(Width * GetWidthMag());
@@ -316,15 +316,15 @@ namespace _2DGAMELIB
frame1.SetBasePointBase(GetBasePoint1());
pars.Add(frame1.Tag, frame1);
_partGroup.Add(frame1.Tag, frame1);
if (Range == Range.MinusPlus)
{
frame2 = new Par
frame2 = new ShapePart
{
Tag = Name + "_フレーム2",
};
frame2.SetInitializeOP(new Out[1] { Shas.GetSquare() });
frame2.SetInitializeOP(new CurveOutline[1] { ShapeHelper.GetSquare() });
frame2.SetPositionBase(Position);
frame2.SetSizeBase(Size);
frame2.SetSizeXBase(Width * GetWidthMag());
@@ -332,13 +332,13 @@ namespace _2DGAMELIB
frame2.SetClosed(true);
frame2.SetBrush(null);
frame2.SetBasePointBase(GetBasePoint2());
pars.Add(frame2.Tag, frame2);
_partGroup.Add(frame2.Tag, frame2);
}
gauge = new Par
gauge = new ShapePart
{
Tag = Name + "_ゲージ",
};
gauge.SetInitializeOP(new Out[1] { Shas.GetSquare() });
gauge.SetInitializeOP(new CurveOutline[1] { ShapeHelper.GetSquare() });
gauge.SetPositionBase(GetGaugePosition());
gauge.SetSizeBase(Size);
gauge.SetSizeXBase(Width * GetWidthMag() * GetGaugeWidthMag(Margin));
@@ -347,22 +347,22 @@ namespace _2DGAMELIB
gauge.SetBasePointBase(GetBasePoint());
pars.Add(gauge.Tag, gauge);
_partGroup.Add(gauge.Tag, gauge);
if (knob)
{
this.knob = new Par
this.knob = new ShapePart
{
Tag = Name + "_ブ",
};
this.knob.SetInitializeOP(new Out[1] { Shas.GetSquare() });
this.knob.SetInitializeOP(new CurveOutline[1] { ShapeHelper.GetSquare() });
this.knob.SetSizeBase(Size);
this.knob.SetSizeXBase(GetKnobWidthMag(Width));
this.knob.SetSizeYBase(GetKnobHeightMag(Height));
this.knob.SetClosed(true);
this.knob.SetBrushColor(Color.FromArgb(128, Color.White));
this.knob.SetBasePointBase(this.knob.GetOP().GetCenter());
pars.Add(this.knob.Tag, this.knob);
_partGroup.Add(this.knob.Tag, this.knob);
}
}
@@ -378,44 +378,44 @@ namespace _2DGAMELIB
case Open.Top:
{
frame1.GetMiY_MaY(out var MM7);
PlusBrush = Oth.GetLGB(Unit, MM7, ref PlusColor2, ref PlusColor1);
PlusBrush = GeometryUtils.GetLGB(Unit, MM7, ref PlusColor2, ref PlusColor1);
if (Range == Range.MinusPlus)
{
frame2.GetMiY_MaY(out var MM8);
MinusBrush = Oth.GetLGB(Unit, MM8, ref MinusColor1, ref MinusColor2);
MinusBrush = GeometryUtils.GetLGB(Unit, MM8, ref MinusColor1, ref MinusColor2);
}
break;
}
case Open.Bot:
{
frame1.GetMaY_MiY(out var MM3);
PlusBrush = Oth.GetLGB(Unit, MM3, ref PlusColor2, ref PlusColor1);
PlusBrush = GeometryUtils.GetLGB(Unit, MM3, ref PlusColor2, ref PlusColor1);
if (Range == Range.MinusPlus)
{
frame2.GetMaY_MiY(out var MM4);
MinusBrush = Oth.GetLGB(Unit, MM4, ref MinusColor1, ref MinusColor2);
MinusBrush = GeometryUtils.GetLGB(Unit, MM4, ref MinusColor1, ref MinusColor2);
}
break;
}
case Open.Rig:
{
frame1.GetMaX_MiX(out var MM5);
PlusBrush = Oth.GetLGB(Unit, MM5, ref PlusColor2, ref PlusColor1);
PlusBrush = GeometryUtils.GetLGB(Unit, MM5, ref PlusColor2, ref PlusColor1);
if (Range == Range.MinusPlus)
{
frame2.GetMaX_MiX(out var MM6);
MinusBrush = Oth.GetLGB(Unit, MM6, ref MinusColor1, ref MinusColor2);
MinusBrush = GeometryUtils.GetLGB(Unit, MM6, ref MinusColor1, ref MinusColor2);
}
break;
}
case Open.Lef:
{
frame1.GetMiX_MaX(out var MM);
PlusBrush = Oth.GetLGB(Unit, MM, ref PlusColor2, ref PlusColor1);
PlusBrush = GeometryUtils.GetLGB(Unit, MM, ref PlusColor2, ref PlusColor1);
if (Range == Range.MinusPlus)
{
frame2.GetMiX_MaX(out var MM2);
MinusBrush = Oth.GetLGB(Unit, MM2, ref MinusColor1, ref MinusColor2);
MinusBrush = GeometryUtils.GetLGB(Unit, MM2, ref MinusColor1, ref MinusColor2);
}
break;
}
@@ -430,12 +430,12 @@ namespace _2DGAMELIB
{
PlusBrush.Dispose();
frame1.GetMiY_MaY(out var MM7);
PlusBrush = Oth.GetLGB(Unit, MM7, Color.FromArgb((int)(255.0 * Alpha), PlusColor2), Color.FromArgb((int)(255.0 * Alpha), PlusColor1));
PlusBrush = GeometryUtils.GetLGB(Unit, MM7, Color.FromArgb((int)(255.0 * Alpha), PlusColor2), Color.FromArgb((int)(255.0 * Alpha), PlusColor1));
if (Range == Range.MinusPlus)
{
MinusBrush.Dispose();
frame2.GetMiY_MaY(out var MM8);
MinusBrush = Oth.GetLGB(Unit, MM8, Color.FromArgb((int)(255.0 * Alpha), MinusColor1), Color.FromArgb((int)(255.0 * Alpha), MinusColor2));
MinusBrush = GeometryUtils.GetLGB(Unit, MM8, Color.FromArgb((int)(255.0 * Alpha), MinusColor1), Color.FromArgb((int)(255.0 * Alpha), MinusColor2));
}
break;
}
@@ -443,12 +443,12 @@ namespace _2DGAMELIB
{
PlusBrush.Dispose();
frame1.GetMaY_MiY(out var MM3);
PlusBrush = Oth.GetLGB(Unit, MM3, Color.FromArgb((int)(255.0 * Alpha), PlusColor2), Color.FromArgb((int)(255.0 * Alpha), PlusColor1));
PlusBrush = GeometryUtils.GetLGB(Unit, MM3, Color.FromArgb((int)(255.0 * Alpha), PlusColor2), Color.FromArgb((int)(255.0 * Alpha), PlusColor1));
if (Range == Range.MinusPlus)
{
MinusBrush.Dispose();
frame2.GetMaY_MiY(out var MM4);
MinusBrush = Oth.GetLGB(Unit, MM4, Color.FromArgb((int)(255.0 * Alpha), MinusColor1), Color.FromArgb((int)(255.0 * Alpha), MinusColor2));
MinusBrush = GeometryUtils.GetLGB(Unit, MM4, Color.FromArgb((int)(255.0 * Alpha), MinusColor1), Color.FromArgb((int)(255.0 * Alpha), MinusColor2));
}
break;
}
@@ -456,12 +456,12 @@ namespace _2DGAMELIB
{
PlusBrush.Dispose();
frame1.GetMaX_MiX(out var MM5);
PlusBrush = Oth.GetLGB(Unit, MM5, Color.FromArgb((int)(255.0 * Alpha), PlusColor2), Color.FromArgb((int)(255.0 * Alpha), PlusColor1));
PlusBrush = GeometryUtils.GetLGB(Unit, MM5, Color.FromArgb((int)(255.0 * Alpha), PlusColor2), Color.FromArgb((int)(255.0 * Alpha), PlusColor1));
if (Range == Range.MinusPlus)
{
MinusBrush.Dispose();
frame2.GetMaX_MiX(out var MM6);
MinusBrush = Oth.GetLGB(Unit, MM6, Color.FromArgb((int)(255.0 * Alpha), MinusColor1), Color.FromArgb((int)(255.0 * Alpha), MinusColor2));
MinusBrush = GeometryUtils.GetLGB(Unit, MM6, Color.FromArgb((int)(255.0 * Alpha), MinusColor1), Color.FromArgb((int)(255.0 * Alpha), MinusColor2));
}
break;
}
@@ -469,12 +469,12 @@ namespace _2DGAMELIB
{
PlusBrush.Dispose();
frame1.GetMiX_MaX(out var MM);
PlusBrush = Oth.GetLGB(Unit, MM, Color.FromArgb((int)(255.0 * Alpha), PlusColor2), Color.FromArgb((int)(255.0 * Alpha), PlusColor1));
PlusBrush = GeometryUtils.GetLGB(Unit, MM, Color.FromArgb((int)(255.0 * Alpha), PlusColor2), Color.FromArgb((int)(255.0 * Alpha), PlusColor1));
if (Range == Range.MinusPlus)
{
MinusBrush.Dispose();
frame2.GetMiX_MaX(out var MM2);
MinusBrush = Oth.GetLGB(Unit, MM2, Color.FromArgb((int)(255.0 * Alpha), MinusColor1), Color.FromArgb((int)(255.0 * Alpha), MinusColor2));
MinusBrush = GeometryUtils.GetLGB(Unit, MM2, Color.FromArgb((int)(255.0 * Alpha), MinusColor1), Color.FromArgb((int)(255.0 * Alpha), MinusColor2));
}
break;
}
@@ -506,7 +506,7 @@ namespace _2DGAMELIB
return 0.0;
}
public Gau(string Name, Vector2D Position, double Size, double Width, double Height, double Margin, Open Open, Range Range, double DisUnit, Color PlusColor1, Color PlusColor2, Color MinusColor1, Color MinusColor2, Color BackColor, bool Knob)
public ProgressBar(string Name, Vector2D Position, double Size, double Width, double Height, double Margin, Open Open, Range Range, double DisUnit, Color PlusColor1, Color PlusColor2, Color MinusColor1, Color MinusColor2, Color BackColor, bool Knob)
{
this.Open = Open;
this.Range = Range;
@@ -560,7 +560,7 @@ namespace _2DGAMELIB
public void Dispose()
{
pars.Dispose();
_partGroup.Dispose();
PlusBrush.Dispose();
if (MinusBrush != null)
{

View File

@@ -3,7 +3,7 @@ using System.Globalization;
namespace _2DGAMELIB
{
public static class Qua
public static class Quaternion
{
public static QuaternionD RotationZQ(this double angle)
{
@@ -29,14 +29,13 @@ namespace _2DGAMELIB
public static Vector2D TransformCoordinateBP(this Vector2D coord, Vector2D BasePoint, QuaternionD rotation)
{
Vec.Subtract(ref coord, ref BasePoint, out coord);
VectorMath.Subtract(ref coord, ref BasePoint, out coord);
TransformCoordinate(ref coord, ref rotation, out var result);
Vec.Add(ref result, ref BasePoint, out result);
VectorMath.Add(ref result, ref BasePoint, out result);
return result;
}
}
//used in a total of 1 places
[Serializable]
public struct QuaternionD

View File

@@ -0,0 +1,119 @@
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Runtime.Serialization;
namespace _2DGAMELIB
{
public sealed class RemappedTypeBinder : SerializationBinder
{
private readonly Dictionary<string, Type> _typeOnlyMap = new();
private readonly Dictionary<string, (string AssemblyName, Type Type)> _fullMap = new();
private static readonly ConcurrentDictionary<string, Type> _additionalMappings = new();
public static void RegisterMapping(string oldTypeName, Type newType)
{
_additionalMappings[oldTypeName] = newType;
}
public RemappedTypeBinder Add(string oldTypeName, Type newType)
{
_typeOnlyMap[oldTypeName] = newType;
return this;
}
public RemappedTypeBinder Add(string oldTypeName, string oldAssemblyName, Type newType)
{
_fullMap[oldTypeName] = (oldAssemblyName, newType);
return this;
}
public override Type BindToType(string assemblyName, string typeName)
{
if (_fullMap.TryGetValue(typeName, out var entry))
{
if (assemblyName != null && assemblyName.StartsWith(entry.AssemblyName))
return entry.Type;
}
if (_typeOnlyMap.TryGetValue(typeName, out var type))
return type;
if (_additionalMappings.TryGetValue(typeName, out var extra))
return extra;
var fullName = typeName;
if (!string.IsNullOrEmpty(assemblyName))
fullName += ", " + assemblyName;
var result = Type.GetType(fullName, throwOnError: false);
if (result != null)
return result;
// Generic types like List<Pars> embed type args in the name.
// Remap any old type names within the type arg list.
if (typeName.Contains("[["))
{
var mangled = RemapTypeArgs(typeName);
if (mangled != typeName)
{
fullName = mangled;
if (!string.IsNullOrEmpty(assemblyName))
fullName += ", " + assemblyName;
result = Type.GetType(fullName, throwOnError: false);
if (result != null)
return result;
}
}
return null;
}
private string RemapTypeArgs(string typeName)
{
// Find the generic arguments section: the outermost [...] containing [args]
int outerStart = typeName.LastIndexOf('`');
if (outerStart < 0) return typeName;
int bracketStart = -1;
for (int i = outerStart + 1; i < typeName.Length; i++)
{
if (typeName[i] == '[')
{
bracketStart = i;
break;
}
}
if (bracketStart < 0) return typeName;
int depth = 0;
int bracketEnd = -1;
for (int i = bracketStart; i < typeName.Length; i++)
{
if (typeName[i] == '[') depth++;
else if (typeName[i] == ']') depth--;
if (depth == 0) { bracketEnd = i; break; }
}
if (bracketEnd < 0) return typeName;
var inner = typeName.Substring(bracketStart, bracketEnd - bracketStart + 1);
// Replace mapped old type names (longest first to avoid partial prefix matches)
var allKeys = new List<string>(_typeOnlyMap.Keys);
allKeys.AddRange(_additionalMappings.Keys);
allKeys.Sort((a, b) => b.Length.CompareTo(a.Length));
foreach (var old in allKeys)
{
Type repType;
if (!_typeOnlyMap.TryGetValue(old, out repType))
_additionalMappings.TryGetValue(old, out repType);
if (repType == null) continue;
var rep = repType.FullName;
inner = inner.Replace(old + ",", rep + ",");
inner = inner.Replace(old + "]", rep + "]");
}
return typeName.Substring(0, bracketStart) + inner + typeName.Substring(bracketEnd + 1);
}
}
}

View File

@@ -23,8 +23,8 @@ namespace _2DGAMELIB
protected Size hitBufferSize = System.Drawing.Size.Empty;
protected Size displayBufferSize = System.Drawing.Size.Empty;
public Vector2D BasePoint = Dat.Vec2DZero;
public Vector2D Position = Dat.Vec2DZero;
public Vector2D BasePoint = DataConsts.Vec2DZero;
public Vector2D Position = DataConsts.Vec2DZero;
public Graphics DisplayGraphics => displayGraphics;
public Graphics HitGraphics => hitGraphics;
@@ -92,30 +92,30 @@ namespace _2DGAMELIB
return new Vector2D(Position.X - BasePoint.X * XRatio * Size, Position.Y - BasePoint.Y * YRatio * Size);
}
public void Draw(Par Par)
public void Draw(ShapePart ShapePart)
{
Par.Draw(displayUnitScale, displayGraphics);
ShapePart.Draw(displayUnitScale, displayGraphics);
if (hitGraphics != null)
{
Par.DrawH(hitUnitScale, hitGraphics);
ShapePart.DrawH(hitUnitScale, hitGraphics);
}
}
public void Draw(ParT ParT)
public void Draw(ShapePartT ShapePartT)
{
ParT.Draw(displayUnitScale, displayGraphics);
ShapePartT.Draw(displayUnitScale, displayGraphics);
if (hitGraphics != null)
{
ParT.DrawH(hitUnitScale, hitGraphics);
ShapePartT.DrawH(hitUnitScale, hitGraphics);
}
}
public void Draw(Pars Pars)
public void Draw(PartGroup PartGroup)
{
Pars.Draw(displayUnitScale, displayGraphics);
PartGroup.Draw(displayUnitScale, displayGraphics);
if (hitGraphics != null)
{
Pars.DrawH(hitUnitScale, hitGraphics);
PartGroup.DrawH(hitUnitScale, hitGraphics);
}

View File

@@ -3,7 +3,7 @@ using System.Globalization;
namespace _2DGAMELIB
{
public static class RNG
public static class Rng
{
public static MyRandom XS = new MyRandom((uint)(Environment.TickCount + DateTime.Now.ToBinary()));
}

View File

@@ -5,7 +5,7 @@ namespace _2DGAMELIB
{
//Basically used to animate switching between two static images
public class Sce
public class SceneFader
{
private Bitmap Start;
private Graphics GS;
@@ -23,7 +23,7 @@ namespace _2DGAMELIB
private ImageAttributes ia = new ImageAttributes();
public Sce(int Width, int Height)
public SceneFader(int Width, int Height)
{
w = Width;
h = Height;

View File

@@ -3,7 +3,7 @@ using System.Drawing;
namespace _2DGAMELIB
{
public class Swi
public class ScreenSwitch
{
private bool flag;
@@ -13,14 +13,14 @@ namespace _2DGAMELIB
public bool Flag => flag;
public Swi(Color OnColor)
public ScreenSwitch(Color OnColor)
{
this.OnColor = OnColor;
}
public void OnOff(But But)
public void OnOff(ButtonBase ButtonBase)
{
But1 but = (But1)But;
Button but = (Button)ButtonBase;
if (!flag)
{
flag = true;
@@ -49,7 +49,7 @@ namespace _2DGAMELIB
}
i = 0;
{
foreach (Par item in but.Pars.EnumAllPar())
foreach (ShapePart item in but.PartGroup.EnumAllPar())
{
item.SetBrushColor(but.OverColors[i]);
i++;
@@ -82,16 +82,16 @@ namespace _2DGAMELIB
});
}
j = 0;
foreach (Par item2 in but.Pars.EnumAllPar())
foreach (ShapePart item2 in but.PartGroup.EnumAllPar())
{
item2.SetBrushColor(but.OverColors[j]);
j++;
}
}
public void SetFlag(But But, bool On)
public void SetFlag(ButtonBase ButtonBase, bool On)
{
But1 but = (But1)But;
Button but = (Button)ButtonBase;
if (On)
{
flag = true;
@@ -120,7 +120,7 @@ namespace _2DGAMELIB
}
i = 0;
{
foreach (Par item in but.Pars.EnumAllPar())
foreach (ShapePart item in but.PartGroup.EnumAllPar())
{
item.SetBrushColor(but.BaseColors[i]);
i++;
@@ -153,7 +153,7 @@ namespace _2DGAMELIB
});
}
j = 0;
foreach (Par item2 in but.Pars.EnumAllPar())
foreach (ShapePart item2 in but.PartGroup.EnumAllPar())
{
item2.SetBrushColor(but.BaseColors[j]);
j++;

View File

@@ -1,155 +0,0 @@
using System;
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
using System.Security.Cryptography;
using System.Text;
using Newtonsoft.Json;
namespace _2DGAMELIB
{
//serialization stuff
public static class Ser
{
private static SerializableAttribute s = new SerializableAttribute();
public static T DeepCopy<T>(this T Object)
{
BinaryFormatter binaryFormatter = new BinaryFormatter();
using MemoryStream memoryStream = new MemoryStream();
binaryFormatter.Serialize(memoryStream, Object);
memoryStream.Position = 0L;
return (T)binaryFormatter.Deserialize(memoryStream);
}
public static byte[] ToSerialBytes<T>(this T Object)
{
using MemoryStream memoryStream = new MemoryStream();
new BinaryFormatter().Serialize(memoryStream, Object);
return memoryStream.ToArray();
}
public static T ToDeserialObject<T>(this byte[] Bytes)
{
using MemoryStream serializationStream = new MemoryStream(Bytes);
return (T)new BinaryFormatter().Deserialize(serializationStream);
}
public static void Save<T>(this T Object, string Path)
{
using FileStream serializationStream = new FileStream(Path, FileMode.Create, FileAccess.Write);
new BinaryFormatter().Serialize(serializationStream, Object);
}
public static T Load<T>(this string Path)
{
using FileStream serializationStream = new FileStream(Path, FileMode.Open, FileAccess.Read);
return (T)new BinaryFormatter().Deserialize(serializationStream);
}
public static T Load<T>(this byte[] bd)
{
using MemoryStream serializationStream = new MemoryStream(bd);
return (T)new BinaryFormatter().Deserialize(serializationStream);
}
/*
public static void ToXml<T>(this T Object, string Path)
{
using FileStream output = new FileStream(Path, FileMode.Create, FileAccess.Write);
using XmlWriter writer = XmlWriter.Create(output, new XmlWriterSettings
{
Indent = true
});
new DataContractSerializer(typeof(T)).WriteObject(writer, Object);
}
public static T FromXml<T>(this string Path)
{
using FileStream input = new FileStream(Path, FileMode.Open, FileAccess.Read);
using XmlReader reader = XmlReader.Create(input);
return (T)new DataContractSerializer(typeof(T)).ReadObject(reader);
}
*/
static Ser(){}
public static T JsonDeepCopy<T>(this T Object)
{
using MemoryStream memoryStream = new MemoryStream();
JsonSerializer jsonSerializer = new JsonSerializer
{
PreserveReferencesHandling = PreserveReferencesHandling.All,
TypeNameHandling = TypeNameHandling.All,
Formatting = Newtonsoft.Json.Formatting.Indented,
NullValueHandling = NullValueHandling.Ignore
};
jsonSerializer.Serialize(new StreamWriter(memoryStream, Encoding.UTF8), Object);
return (T)new JsonSerializer
{
PreserveReferencesHandling = PreserveReferencesHandling.All,
TypeNameHandling = TypeNameHandling.All,
Formatting = Newtonsoft.Json.Formatting.Indented,
NullValueHandling = NullValueHandling.Ignore
}.Deserialize(new StreamReader(memoryStream), typeof(T));
}
public static byte[] ToJsonBytes<T>(this T Object)
{
MemoryStream textWriter = new MemoryStream();
JsonSerializer jsonSerializer = new JsonSerializer
{
PreserveReferencesHandling = PreserveReferencesHandling.Objects,
TypeNameHandling = TypeNameHandling.All,
Formatting = Newtonsoft.Json.Formatting.Indented,
NullValueHandling = NullValueHandling.Ignore
};
jsonSerializer.Serialize(new StreamWriter(textWriter, Encoding.UTF8), Object);
return textWriter.ToArray();
}
public static T ToUnJsonObject<T>(this byte[] Bytes)
{
using StreamReader reader = new StreamReader(new MemoryStream(Bytes), Encoding.UTF8);
return (T)new JsonSerializer
{
PreserveReferencesHandling = PreserveReferencesHandling.All,
TypeNameHandling = TypeNameHandling.All,
Formatting = Newtonsoft.Json.Formatting.Indented,
NullValueHandling = NullValueHandling.Ignore
}.Deserialize(reader, typeof(T));
}
public static void ToJson<T>(this T Object, string Path)
{
using StreamWriter textWriter = File.CreateText(Path);
JsonSerializer jsonSerializer = new JsonSerializer
{
PreserveReferencesHandling = PreserveReferencesHandling.All,
TypeNameHandling = TypeNameHandling.All,
Formatting = Newtonsoft.Json.Formatting.Indented,
NullValueHandling = NullValueHandling.Ignore
};
jsonSerializer.Serialize(textWriter, Object);
}
public static T UnJson<T>(string Path)
{
using StreamReader reader = File.OpenText(Path);
return (T)new JsonSerializer
{
PreserveReferencesHandling = PreserveReferencesHandling.All,
TypeNameHandling = TypeNameHandling.All,
Formatting = Newtonsoft.Json.Formatting.Indented,
NullValueHandling = NullValueHandling.Ignore
}.Deserialize(reader, typeof(T));
}
}
}

View File

@@ -0,0 +1,123 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.Serialization.Formatters.Binary;
using System.Text;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
namespace _2DGAMELIB
{
public static class Serializer
{
private static SerializableAttribute s = new SerializableAttribute();
private static readonly RemappedTypeBinder Binder = new RemappedTypeBinder()
.Add("_2DGAMELIB.Par", typeof(ShapePart))
.Add("_2DGAMELIB.ParT", typeof(ShapePartT))
.Add("_2DGAMELIB.Pars", typeof(PartGroup))
.Add("_2DGAMELIB.Out", typeof(CurveOutline))
.Add("_2DGAMELIB.Joi", typeof(JointPoint))
.Add("_2DGAMELIB.Dif", typeof(MorphVariant))
.Add("_2DGAMELIB.Difs", typeof(VariantGrid))
.Add("_2DGAMELIB.Obj", typeof(BodyTemplate))
.Add("_2DGAMELIB.Sce", typeof(SceneFader));
private static BinaryFormatter NewFormatter()
{
return new BinaryFormatter { Binder = Binder };
}
private static JsonSerializerSettings CreateSettings()
{
var settings = new JsonSerializerSettings
{
PreserveReferencesHandling = PreserveReferencesHandling.All,
TypeNameHandling = TypeNameHandling.All,
Formatting = Newtonsoft.Json.Formatting.Indented,
NullValueHandling = NullValueHandling.Ignore
};
settings.Converters.Add(new OrderedDictionaryConverter<string, VariantGrid>());
settings.Converters.Add(new OrderedDictionaryConverter<string, object>());
settings.Converters.Add(new OrderedDictionaryConverter<string, ButtonBase>());
settings.Converters.Add(new OrderedDictionaryConverter<string, Lab>());
return settings;
}
public static T DeepCopy<T>(this T Object)
{
BinaryFormatter binaryFormatter = NewFormatter();
using MemoryStream memoryStream = new MemoryStream();
binaryFormatter.Serialize(memoryStream, Object);
memoryStream.Position = 0L;
return (T)binaryFormatter.Deserialize(memoryStream);
}
public static byte[] ToSerialBytes<T>(this T Object)
{
using MemoryStream memoryStream = new MemoryStream();
NewFormatter().Serialize(memoryStream, Object);
return memoryStream.ToArray();
}
public static T ToDeserialObject<T>(this byte[] Bytes)
{
using MemoryStream serializationStream = new MemoryStream(Bytes);
return (T)NewFormatter().Deserialize(serializationStream);
}
public static void Save<T>(this T Object, string Path)
{
using FileStream serializationStream = new FileStream(Path, FileMode.Create, FileAccess.Write);
NewFormatter().Serialize(serializationStream, Object);
}
public static T Load<T>(this string Path)
{
using FileStream serializationStream = new FileStream(Path, FileMode.Open, FileAccess.Read);
return (T)NewFormatter().Deserialize(serializationStream);
}
public static T Load<T>(this byte[] bd)
{
using MemoryStream serializationStream = new MemoryStream(bd);
return (T)NewFormatter().Deserialize(serializationStream);
}
static Serializer() { }
public static T JsonDeepCopy<T>(this T Object)
{
var json = JsonConvert.SerializeObject(Object, CreateSettings());
return JsonConvert.DeserializeObject<T>(json, CreateSettings());
}
public static byte[] ToJsonBytes<T>(this T Object)
{
var json = JsonConvert.SerializeObject(Object, CreateSettings());
return Encoding.UTF8.GetBytes(json);
}
public static T ToUnJsonObject<T>(this byte[] Bytes)
{
var json = Encoding.UTF8.GetString(Bytes);
return JsonConvert.DeserializeObject<T>(json, CreateSettings());
}
public static void ToJson<T>(this T Object, string Path)
{
var json = JsonConvert.SerializeObject(Object, CreateSettings());
File.WriteAllText(Path, json);
}
public static T UnJson<T>(string Path)
{
var json = File.ReadAllText(Path);
return JsonConvert.DeserializeObject<T>(json, CreateSettings());
}
public static JsonSerializerSettings GetSettings() => CreateSettings();
}
}

View File

@@ -3,7 +3,7 @@ using System.Linq;
namespace _2DGAMELIB
{
public static class Shas
public static class ShapeHelper
{
//rectangle coords
@@ -38,27 +38,27 @@ namespace _2DGAMELIB
return Point;
}
public static void SetTension(this IEnumerable<Out> Out, float Tension)
public static void SetTension(this IEnumerable<CurveOutline> Out, float Tension)
{
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
item.Tension = Tension;
}
}
public static void OutlineFalse(this IEnumerable<Out> Out)
public static void OutlineFalse(this IEnumerable<CurveOutline> Out)
{
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
item.Outline = false;
}
}
public static Vector2D GetCenter(this IEnumerable<Out> Out)
public static Vector2D GetCenter(this IEnumerable<CurveOutline> Out)
{
double num = 0.0;
Vector2D vec2DZero = Dat.Vec2DZero;
foreach (Out item in Out)
Vector2D vec2DZero = DataConsts.Vec2DZero;
foreach (CurveOutline item in Out)
{
foreach (Vector2D p in item.ps)
{
@@ -69,11 +69,11 @@ namespace _2DGAMELIB
return vec2DZero / num;
}
public static Vector2D GetCenter(this IEnumerable<Joi> Joi)
public static Vector2D GetCenter(this IEnumerable<JointPoint> Joi)
{
double num = 0.0;
Vector2D vec2DZero = Dat.Vec2DZero;
foreach (Joi item in Joi)
Vector2D vec2DZero = DataConsts.Vec2DZero;
foreach (JointPoint item in Joi)
{
vec2DZero += item.Joint;
num += 1.0;
@@ -81,10 +81,10 @@ namespace _2DGAMELIB
return vec2DZero / num;
}
public static void Rotation(this IEnumerable<Out> Out, Vector2D BP, double Angle)
public static void Rotation(this IEnumerable<CurveOutline> Out, Vector2D BP, double Angle)
{
MatrixD transform = Angle.ToRadian().RotationZ();
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -93,10 +93,10 @@ namespace _2DGAMELIB
}
}
public static void ScalingX(this IEnumerable<Out> Out, Vector2D BP, double Rate)
public static void ScalingX(this IEnumerable<CurveOutline> Out, Vector2D BP, double Rate)
{
double num = BP.X - BP.X * Rate;
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -107,10 +107,10 @@ namespace _2DGAMELIB
}
}
public static void ScalingX(this IEnumerable<Out> Out, ref Vector2D BP, double Rate)
public static void ScalingX(this IEnumerable<CurveOutline> Out, ref Vector2D BP, double Rate)
{
double num = BP.X - BP.X * Rate;
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -121,10 +121,10 @@ namespace _2DGAMELIB
}
}
public static void ScalingY(this IEnumerable<Out> Out, Vector2D BP, double Rate)
public static void ScalingY(this IEnumerable<CurveOutline> Out, Vector2D BP, double Rate)
{
double num = BP.Y - BP.Y * Rate;
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -135,10 +135,10 @@ namespace _2DGAMELIB
}
}
public static void ScalingY(this IEnumerable<Out> Out, ref Vector2D BP, double Rate)
public static void ScalingY(this IEnumerable<CurveOutline> Out, ref Vector2D BP, double Rate)
{
double num = BP.Y - BP.Y * Rate;
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -149,12 +149,12 @@ namespace _2DGAMELIB
}
}
public static void ScalingXY(this IEnumerable<Out> Out, Vector2D BP, double Rate)
public static void ScalingXY(this IEnumerable<CurveOutline> Out, Vector2D BP, double Rate)
{
Vector2D vector2D = default(Vector2D);
vector2D.X = BP.X - BP.X * Rate;
vector2D.Y = BP.Y - BP.Y * Rate;
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -166,12 +166,12 @@ namespace _2DGAMELIB
}
}
public static void ScalingXY(this IEnumerable<Out> Out, ref Vector2D BP, double Rate)
public static void ScalingXY(this IEnumerable<CurveOutline> Out, ref Vector2D BP, double Rate)
{
Vector2D vector2D = default(Vector2D);
vector2D.X = BP.X - BP.X * Rate;
vector2D.Y = BP.Y - BP.Y * Rate;
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -183,12 +183,12 @@ namespace _2DGAMELIB
}
}
public static void ScalingXY(this IEnumerable<Out> Out, Vector2D BP, double X, double Y)
public static void ScalingXY(this IEnumerable<CurveOutline> Out, Vector2D BP, double X, double Y)
{
Vector2D vector2D = default(Vector2D);
vector2D.X = BP.X - BP.X * X;
vector2D.Y = BP.Y - BP.Y * Y;
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -200,70 +200,70 @@ namespace _2DGAMELIB
}
}
public static void ScalingX(this IEnumerable<Joi> Joi, Vector2D BP, double Rate)
public static void ScalingX(this IEnumerable<JointPoint> Joi, Vector2D BP, double Rate)
{
double num = BP.X - BP.X * Rate;
foreach (Joi item in Joi)
foreach (JointPoint item in Joi)
{
item.Joint.X = item.Joint.X * Rate + num;
}
}
public static void ScalingX(this IEnumerable<Joi> Joi, ref Vector2D BP, double Rate)
public static void ScalingX(this IEnumerable<JointPoint> Joi, ref Vector2D BP, double Rate)
{
double num = BP.X - BP.X * Rate;
foreach (Joi item in Joi)
foreach (JointPoint item in Joi)
{
item.Joint.X = item.Joint.X * Rate + num;
}
}
public static void ScalingY(this IEnumerable<Joi> Joi, Vector2D BP, double Rate)
public static void ScalingY(this IEnumerable<JointPoint> Joi, Vector2D BP, double Rate)
{
double num = BP.Y - BP.Y * Rate;
foreach (Joi item in Joi)
foreach (JointPoint item in Joi)
{
item.Joint.Y = item.Joint.Y * Rate + num;
}
}
public static void ScalingY(this IEnumerable<Joi> Joi, ref Vector2D BP, double Rate)
public static void ScalingY(this IEnumerable<JointPoint> Joi, ref Vector2D BP, double Rate)
{
double num = BP.Y - BP.Y * Rate;
foreach (Joi item in Joi)
foreach (JointPoint item in Joi)
{
item.Joint.Y = item.Joint.Y * Rate + num;
}
}
public static void ScalingXY(this IEnumerable<Joi> Joi, Vector2D BP, double Rate)
public static void ScalingXY(this IEnumerable<JointPoint> Joi, Vector2D BP, double Rate)
{
Vector2D vector2D = default(Vector2D);
vector2D.X = BP.X - BP.X * Rate;
vector2D.Y = BP.Y - BP.Y * Rate;
foreach (Joi item in Joi)
foreach (JointPoint item in Joi)
{
item.Joint.X = item.Joint.X * Rate + vector2D.X;
item.Joint.Y = item.Joint.Y * Rate + vector2D.Y;
}
}
public static void ScalingXY(this IEnumerable<Joi> Joi, ref Vector2D BP, double Rate)
public static void ScalingXY(this IEnumerable<JointPoint> Joi, ref Vector2D BP, double Rate)
{
Vector2D vector2D = default(Vector2D);
vector2D.X = BP.X - BP.X * Rate;
vector2D.Y = BP.Y - BP.Y * Rate;
foreach (Joi item in Joi)
foreach (JointPoint item in Joi)
{
item.Joint.X = item.Joint.X * Rate + vector2D.X;
item.Joint.Y = item.Joint.Y * Rate + vector2D.Y;
}
}
public static void ReverseX(this List<Out> Out, ref Vector2D BP)
public static void ReverseX(this List<CurveOutline> Out, ref Vector2D BP)
{
double num = BP.X - (1.0 - BP.X);
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -276,10 +276,10 @@ namespace _2DGAMELIB
Out.Reverse();
}
public static void ReverseY(this List<Out> Out, Vector2D BP)
public static void ReverseY(this List<CurveOutline> Out, Vector2D BP)
{
double num = BP.Y - (1.0 - BP.Y);
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -292,10 +292,10 @@ namespace _2DGAMELIB
Out.Reverse();
}
public static void ReverseY(this List<Out> Out, ref Vector2D BP)
public static void ReverseY(this List<CurveOutline> Out, ref Vector2D BP)
{
double num = BP.Y - (1.0 - BP.Y);
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -308,27 +308,27 @@ namespace _2DGAMELIB
Out.Reverse();
}
public static void ReverseX(this List<Joi> Joi, ref Vector2D BP)
public static void ReverseX(this List<JointPoint> Joi, ref Vector2D BP)
{
double num = BP.X - (1.0 - BP.X);
foreach (Joi item in Joi)
foreach (JointPoint item in Joi)
{
item.Joint.X = 1.0 - item.Joint.X + num;
}
}
public static void ReverseY(this List<Joi> Joi, ref Vector2D BP)
public static void ReverseY(this List<JointPoint> Joi, ref Vector2D BP)
{
double num = BP.Y - (1.0 - BP.Y);
foreach (Joi item in Joi)
foreach (JointPoint item in Joi)
{
item.Joint.Y = 1.0 - item.Joint.Y + num;
}
}
public static void ExpansionX(this List<Out> Out, Vector2D BP, double Rate)
public static void ExpansionX(this List<CurveOutline> Out, Vector2D BP, double Rate)
{
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -339,9 +339,9 @@ namespace _2DGAMELIB
}
}
public static void ExpansionX(this List<Out> Out, ref Vector2D BP, double Rate)
public static void ExpansionX(this List<CurveOutline> Out, ref Vector2D BP, double Rate)
{
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -352,9 +352,9 @@ namespace _2DGAMELIB
}
}
public static void ExpansionY(this List<Out> Out, Vector2D BP, double Rate)
public static void ExpansionY(this List<CurveOutline> Out, Vector2D BP, double Rate)
{
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -365,9 +365,9 @@ namespace _2DGAMELIB
}
}
public static void ExpansionY(this List<Out> Out, ref Vector2D BP, double Rate)
public static void ExpansionY(this List<CurveOutline> Out, ref Vector2D BP, double Rate)
{
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -378,9 +378,9 @@ namespace _2DGAMELIB
}
}
public static void ExpansionXY(this List<Out> Out, Vector2D BP, double Rate)
public static void ExpansionXY(this List<CurveOutline> Out, Vector2D BP, double Rate)
{
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -389,9 +389,9 @@ namespace _2DGAMELIB
}
}
public static void ExpansionXY(this List<Out> Out, ref Vector2D BP, double Rate)
public static void ExpansionXY(this List<CurveOutline> Out, ref Vector2D BP, double Rate)
{
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
for (int i = 0; i < item.ps.Count; i++)
{
@@ -400,9 +400,9 @@ namespace _2DGAMELIB
}
}
public static void ExpansionX(this List<Joi> Joi, ref Vector2D BP, double Rate)
public static void ExpansionX(this List<JointPoint> Joi, ref Vector2D BP, double Rate)
{
foreach (Joi item in Joi)
foreach (JointPoint item in Joi)
{
Vector2D vector2D = (item.Joint - BP).newNormalize();
vector2D.Y = 0.0;
@@ -410,9 +410,9 @@ namespace _2DGAMELIB
}
}
public static void ExpansionY(this List<Joi> Joi, ref Vector2D BP, double Rate)
public static void ExpansionY(this List<JointPoint> Joi, ref Vector2D BP, double Rate)
{
foreach (Joi item in Joi)
foreach (JointPoint item in Joi)
{
Vector2D vector2D = (item.Joint - BP).newNormalize();
vector2D.X = 0.0;
@@ -420,26 +420,26 @@ namespace _2DGAMELIB
}
}
public static void ExpansionXY(this List<Joi> Joi, Vector2D BP, double Rate)
public static void ExpansionXY(this List<JointPoint> Joi, Vector2D BP, double Rate)
{
foreach (Joi item in Joi)
foreach (JointPoint item in Joi)
{
item.Joint += (item.Joint - BP).newNormalize() * Rate;
}
}
public static void ExpansionXY(this List<Joi> Joi, ref Vector2D BP, double Rate)
public static void ExpansionXY(this List<JointPoint> Joi, ref Vector2D BP, double Rate)
{
foreach (Joi item in Joi)
foreach (JointPoint item in Joi)
{
item.Joint += (item.Joint - BP).newNormalize() * Rate;
}
}
public static IEnumerable<Vector2D> EnumPoints(this IEnumerable<Out> Out)
public static IEnumerable<Vector2D> EnumPoints(this IEnumerable<CurveOutline> Out)
{
HashSet<Vector2D> hs = new HashSet<Vector2D>();
foreach (Out item in Out)
foreach (CurveOutline item in Out)
{
foreach (Vector2D p in item.ps)
{
@@ -452,7 +452,7 @@ namespace _2DGAMELIB
}
}
public static Out GetTriangle()
public static CurveOutline GetTriangle()
{
MatrixD m120 = 120.0.ToRadian().RotationZ();
@@ -464,16 +464,16 @@ namespace _2DGAMELIB
Vector2D TP3 = Math.TransformCoordinateBP(TP1, new Vector2D(0.5, 0.5), m240);
return new Out
return new CurveOutline
{
Tension = 0f,
ps = { TP1, TP2, TP3 }
};
}
public static Out GetSquare()
public static CurveOutline GetSquare()
{
return new Out
return new CurveOutline
{
Tension = 0f,
ps = {

View File

@@ -11,23 +11,29 @@ namespace _2DGAMELIB
{
//represents a whole or part of a body part :3
[Serializable]
public class Par
public class ShapePart
{
private Pars parent;
private PartGroup parent;
public string Tag = "";
protected List<Out> op = new List<Out>();
protected List<CurveOutline> op = new List<CurveOutline>();
protected List<Joi> jp = new List<Joi>();
protected List<JointPoint> jp = new List<JointPoint>();
protected Vector2D basePointBase = Dat.Vec2DZero;
protected Vector2D basePointBase = DataConsts.Vec2DZero;
protected Vector2D basePointCont = Dat.Vec2DZero;
protected Vector2D basePointCont = DataConsts.Vec2DZero;
protected Vector2D positionBase = Dat.Vec2DZero;
protected Vector2D positionBase = DataConsts.Vec2DZero;
protected Vector2D positionCont = Dat.Vec2DZero;
protected Vector2D positionContO = DataConsts.Vec2DZero;
protected Vector2D positionCont = DataConsts.Vec2DZero;
protected double positionSize = 1.0;
protected Vector2D positionVector = DataConsts.Vec2DZero;
protected double anglePare;
@@ -47,8 +53,6 @@ namespace _2DGAMELIB
protected double ySizeCont = 1.0;
protected double positionSize = 1.0;
protected double penWidth;
@@ -75,23 +79,23 @@ namespace _2DGAMELIB
public bool Hit = true;
private bool closed;
public Pars GetParent()
public PartGroup GetParent()
{
return parent;
}
public List<Out> GetOP()
public List<CurveOutline> GetOP()
{
return op;
}
public void SetInitializeOP(IEnumerable<Out> value)
public void SetInitializeOP(IEnumerable<CurveOutline> value)
{
op.Clear();
op.AddRange(value);
}
public List<Joi> GetJP()
public List<JointPoint> GetJP()
{
return jp;
}
@@ -334,7 +338,7 @@ namespace _2DGAMELIB
{
HitBrush.Color = value;
}
public void SetParent(Pars Parent)
public void SetParent(PartGroup Parent)
{
parent = Parent;
}
@@ -357,59 +361,60 @@ namespace _2DGAMELIB
gph = new GraphicsPath();
}
public Par()
public ShapePart()
{
pen.StartCap = LineCap.Round;
pen.EndCap = LineCap.Round;
}
public Par(Par Par)
public ShapePart(ShapePart ShapePart)
{
Copy(Par);
Copy(ShapePart);
}
protected void Copy(Par Par)
protected void Copy(ShapePart ShapePart)
{
Tag = Par.Tag;
op = new List<Out>(Par.op.Count);
for (int i = 0; i < Par.op.Count; i++)
Tag = ShapePart.Tag;
op = new List<CurveOutline>(ShapePart.op.Count);
for (int i = 0; i < ShapePart.op.Count; i++)
{
op.Add(new Out(Par.op[i]));
op.Add(new CurveOutline(ShapePart.op[i]));
}
jp = new List<Joi>(Par.jp.Count);
for (int j = 0; j < Par.jp.Count; j++)
jp = new List<JointPoint>(ShapePart.jp.Count);
for (int j = 0; j < ShapePart.jp.Count; j++)
{
jp.Add(new Joi(Par.jp[j]));
jp.Add(new JointPoint(ShapePart.jp[j]));
}
basePointBase = Par.basePointBase;
basePointCont = Par.basePointCont;
positionBase = Par.positionBase;
positionCont = Par.positionCont;
positionSize = Par.positionSize;
anglePare = Par.anglePare;
angleBase = Par.angleBase;
angleCont = Par.angleCont;
sizeBase = Par.sizeBase;
sizeCont = Par.sizeCont;
xSizeBase = Par.xSizeBase;
xSizeCont = Par.xSizeCont;
ySizeBase = Par.ySizeBase;
ySizeCont = Par.ySizeCont;
penWidth = Par.penWidth;
Dra = Par.Dra;
closed = Par.closed;
if (Par.pen != null)
basePointBase = ShapePart.basePointBase;
basePointCont = ShapePart.basePointCont;
positionBase = ShapePart.positionBase;
positionContO = ShapePart.positionContO;
positionCont = ShapePart.positionCont;
positionVector = ShapePart.positionVector;
anglePare = ShapePart.anglePare;
angleBase = ShapePart.angleBase;
angleCont = ShapePart.angleCont;
sizeBase = ShapePart.sizeBase;
sizeCont = ShapePart.sizeCont;
xSizeBase = ShapePart.xSizeBase;
xSizeCont = ShapePart.xSizeCont;
ySizeBase = ShapePart.ySizeBase;
ySizeCont = ShapePart.ySizeCont;
penWidth = ShapePart.penWidth;
Dra = ShapePart.Dra;
closed = ShapePart.closed;
if (ShapePart.pen != null)
{
SetPen(Par.pen.Copy());
SetPen(ShapePart.pen.Copy());
}
if (Par.brush != null)
if (ShapePart.brush != null)
{
SetBrush1(Par.brush.Copy());
SetBrush1(ShapePart.brush.Copy());
}
Hit = Par.Hit;
if (Par.HitBrush != null)
Hit = ShapePart.Hit;
if (ShapePart.HitBrush != null)
{
HitBrush = (SolidBrush)Par.HitBrush.Copy();
HitBrush = (SolidBrush)ShapePart.HitBrush.Copy();
}
}
@@ -429,7 +434,7 @@ namespace _2DGAMELIB
Path.Reset();
OutlinePath.Reset();
foreach (Out item in op)
foreach (CurveOutline item in op)
{
PointF[] points = new PointF[item.ps.Count];
for (int i = 0; i < item.ps.Count; i++)
@@ -513,7 +518,7 @@ namespace _2DGAMELIB
gph.Reset();
if (closed)
{
foreach (Out item in op)
foreach (CurveOutline item in op)
{
PointF[] psh = new PointF[item.ps.Count];
for (int i = 0; i < item.ps.Count; i++)
@@ -532,7 +537,7 @@ namespace _2DGAMELIB
return;
}
foreach (Out item2 in op)
foreach (CurveOutline item2 in op)
{
PointF[] psh = new PointF[item2.ps.Count];
for (int j = 0; j < item2.ps.Count; j++)
@@ -575,21 +580,21 @@ namespace _2DGAMELIB
}
}
public void SetJointP(int Index, Par Par)
public void SetJointP(int Index, ShapePart ShapePart)
{
if (Index < jp.Count)
{
Par.SetPositionBase(ToGlobal(jp[Index].Joint));
ShapePart.SetPositionBase(ToGlobal(jp[Index].Joint));
}
}
public void SetJointPA(int Index, Par Par)
public void SetJointPA(int Index, ShapePart ShapePart)
{
if (Index < jp.Count)
{
Par.SetPositionBase(ToGlobal(jp[Index].Joint));
ShapePart.SetPositionBase(ToGlobal(jp[Index].Joint));
}
Par.SetAngleParent(anglePare + angleBase + angleCont);
ShapePart.SetAngleParent(anglePare + angleBase + angleCont);
}
public Vector2D ToGlobal(Vector2D Local)
@@ -692,19 +697,19 @@ namespace _2DGAMELIB
public bool IsParT()
{
return this is ParT;
return this is ShapePartT;
}
public ParT ToParT()
public ShapePartT ToParT()
{
return (ParT)this;
return (ShapePartT)this;
}
public List<int> GetPath()
{
List<int> list = new List<int> { parent.IndexOf(this) };
Pars pars2 = parent;
for (Pars pars3 = pars2.Parent; pars3 != null; pars3 = pars2.Parent)
PartGroup pars2 = parent;
for (PartGroup pars3 = pars2.Parent; pars3 != null; pars3 = pars2.Parent)
{
list.Insert(0, pars3.IndexOf(pars2));
pars2 = pars3;

View File

@@ -7,7 +7,7 @@ namespace _2DGAMELIB
{
// renders text
[Serializable]
public class ParT : Par
public class ShapePartT : ShapePart
{
private double fontSize = 1.0;
@@ -24,9 +24,9 @@ namespace _2DGAMELIB
[NonSerialized, JsonIgnore]
private StringFormat stringformat = new StringFormat();
private Vector2D positionT = Dat.Vec2DZero;
private Vector2D positionT = DataConsts.Vec2DZero;
private Vector2D rectSize = Dat.Vec2DOne;
private Vector2D rectSize = DataConsts.Vec2DOne;
public string Text = "";
@@ -135,36 +135,36 @@ namespace _2DGAMELIB
EditTS = true;
}
public ParT()
public ShapePartT()
{
}
public ParT(ParT ParT)
public ShapePartT(ShapePartT ShapePartT)
{
CopyT(ParT);
CopyT(ShapePartT);
}
private void CopyT(ParT ParT)
private void CopyT(ShapePartT ShapePartT)
{
Copy(ParT);
Copy(ShapePartT);
fontSize = ParT.fontSize;
fontSize = ShapePartT.fontSize;
if (ParT.font != null)
SetFont(ParT.font.Copy());
if (ShapePartT.font != null)
SetFont(ShapePartT.font.Copy());
if (ParT.brusht != null)
SetTextBrush(ParT.brusht.Copy());
if (ShapePartT.brusht != null)
SetTextBrush(ShapePartT.brusht.Copy());
if (ParT.brushs != null)
SetShadBrush(ParT.brushs.Copy());
if (ShapePartT.brushs != null)
SetShadBrush(ShapePartT.brushs.Copy());
if (ParT.stringformat != null)
SetStringFormat(ParT.stringformat.Copy());
if (ShapePartT.stringformat != null)
SetStringFormat(ShapePartT.stringformat.Copy());
positionT = ParT.positionT;
rectSize = ParT.rectSize;
Text = ParT.Text;
positionT = ShapePartT.positionT;
rectSize = ShapePartT.rectSize;
Text = ShapePartT.Text;
}
public new void Draw(double Unit, Graphics Graphics)
@@ -307,18 +307,18 @@ namespace _2DGAMELIB
{
Vector2D[] stringRectPoints = GetStringRectPoints(Unit, Graphics);
Out @out = new Out { Tension = 0f };
Vector2D vector2D = Dat.Vec2DZero - stringRectPoints[0];
CurveOutline curveOutline = new CurveOutline { Tension = 0f };
Vector2D vector2D = DataConsts.Vec2DZero - stringRectPoints[0];
double x = 0.05;
double num = 0.025;
@out.ps.Add(stringRectPoints[0].AddY(-num) + vector2D);
@out.ps.Add(stringRectPoints[1].AddXY(x, -num) + vector2D);
@out.ps.Add(stringRectPoints[2].AddXY(x, num) + vector2D);
@out.ps.Add(stringRectPoints[3].AddY(num) + vector2D);
curveOutline.ps.Add(stringRectPoints[0].AddY(-num) + vector2D);
curveOutline.ps.Add(stringRectPoints[1].AddXY(x, -num) + vector2D);
curveOutline.ps.Add(stringRectPoints[2].AddXY(x, num) + vector2D);
curveOutline.ps.Add(stringRectPoints[3].AddY(num) + vector2D);
base.GetOP().Add(@out);
base.GetOP().Add(curveOutline);
}
public new void Dispose()

View File

@@ -5,13 +5,13 @@ using System.Linq;
namespace _2DGAMELIB
{
public class Tex
public class TextBlock
{
private Pars pars;
private PartGroup _partGroup;
private ParT parT;
private ShapePartT _shapePartT;
private Par feed;
private ShapePart feed;
public int Space;
@@ -19,11 +19,11 @@ namespace _2DGAMELIB
private double speed = 1.0;
private Action<Tex> Action = delegate
private Action<TextBlock> Action = delegate
{
};
private MotV mv;
private MotionBase mv;
private bool f1;
@@ -33,7 +33,7 @@ namespace _2DGAMELIB
private int Max;
public Action<Tex> Done;
public Action<TextBlock> Done;
private byte a0;
@@ -43,11 +43,11 @@ namespace _2DGAMELIB
private bool FastText;
public Pars Pars => pars;
public PartGroup PartGroup => _partGroup;
public ParT ParT => parT;
public ShapePartT ShapePartT => _shapePartT;
public Par Feed => feed;
public ShapePart Feed => feed;
public string TextIm
{
@@ -68,9 +68,9 @@ namespace _2DGAMELIB
Max = text.Length;
Count = Max;
f1 = false;
if (parT != null)
if (_shapePartT != null)
{
parT.Text = text;
_shapePartT.Text = text;
}
}
}
@@ -113,21 +113,21 @@ namespace _2DGAMELIB
{
get
{
return parT.GetPositionBase();
return _shapePartT.GetPositionBase();
}
set
{
parT.SetPositionBase(value);
_shapePartT.SetPositionBase(value);
if (feed != null)
{
feed.SetPositionBase(parT.ToGlobal(parT.GetOP()[0].ps[2] * 0.95));
feed.SetPositionBase(_shapePartT.ToGlobal(_shapePartT.GetOP()[0].ps[2] * 0.95));
}
}
}
public bool IsPlaying => !f1;
public Tex(string Name, Vector2D Position, double Size, double Width, double Height, Font Font, double TextSize, int Space, string Text, Color TextColor, Color ShadColor, Color BackColor, double Speed, Color FeedColor, Action<Tex> Action)
public TextBlock(string Name, Vector2D Position, double Size, double Width, double Height, Font Font, double TextSize, int Space, string Text, Color TextColor, Color ShadColor, Color BackColor, double Speed, Color FeedColor, Action<TextBlock> Action)
{
try
{
@@ -162,11 +162,11 @@ namespace _2DGAMELIB
this.Action = Action;
SetParT(Name, ref Position, Size, Width, Height, Font, TextSize, Text, ref TextColor, ref ShadColor, ref BackColor);
SetFeed(Name, Size, ref FeedColor);
mv = new MotV(0.0, 255.0);
mv = new MotionBase(0.0, 255.0);
mv.BaseSpeed = 2.0;
}
public Tex(string Name, Vector2D Position, double Size, double Width, double Height, Font Font, double TextSize, int Space, string Text, Color TextColor, Color ShadColor, Color BackColor, double Speed)
public TextBlock(string Name, Vector2D Position, double Size, double Width, double Height, Font Font, double TextSize, int Space, string Text, Color TextColor, Color ShadColor, Color BackColor, double Speed)
{
try
{
@@ -203,44 +203,44 @@ namespace _2DGAMELIB
private void SetParT(string Name, ref Vector2D Position, double Size, double Width, double Height, Font Font, double TextSize, string Text, ref Color TextColor, ref Color ShadColor, ref Color BackColor)
{
pars = new Pars();
Out[] array = new Out[1] { Shas.GetSquare() };
_partGroup = new PartGroup();
CurveOutline[] array = new CurveOutline[1] { ShapeHelper.GetSquare() };
array.OutlineFalse();
parT = new ParT
_shapePartT = new ShapePartT
{
Tag = Name,
Text = Text
};
parT.SetFont(Font);
parT.SetFontSize(TextSize);
parT.SetTextColor(TextColor);
parT.SetRectSize(new Vector2D(Width, Height));
parT.SetInitializeOP(array);
parT.SetPositionBase(Position);
parT.SetSizeBase(Size);
parT.SetClosed(true);
parT.SetBrushColor(BackColor);
ParT.GetOP().ScalingX(ParT.GetBasePointBase(), Width);
ParT.GetOP().ScalingY(ParT.GetBasePointBase(), Height);
_shapePartT.SetFont(Font);
_shapePartT.SetFontSize(TextSize);
_shapePartT.SetTextColor(TextColor);
_shapePartT.SetRectSize(new Vector2D(Width, Height));
_shapePartT.SetInitializeOP(array);
_shapePartT.SetPositionBase(Position);
_shapePartT.SetSizeBase(Size);
_shapePartT.SetClosed(true);
_shapePartT.SetBrushColor(BackColor);
_shapePartT.GetOP().ScalingX(_shapePartT.GetBasePointBase(), Width);
_shapePartT.GetOP().ScalingY(_shapePartT.GetBasePointBase(), Height);
if (ShadColor != Color.Empty)
{
parT.SetShadBrush(new SolidBrush(ShadColor));
_shapePartT.SetShadBrush(new SolidBrush(ShadColor));
}
pars.Add(parT.Tag, parT);
_partGroup.Add(_shapePartT.Tag, _shapePartT);
}
private void SetFeed(string Name, double Size, ref Color FeedColor)
{
Out[] array = new Out[1] { Shas.GetTriangle() };
feed = new Par
CurveOutline[] array = new CurveOutline[1] { ShapeHelper.GetTriangle() };
feed = new ShapePart
{
Tag = Name + "_Feed",
Hit = false
};
feed.SetInitializeOP(array);
feed.SetBasePointBase(array.GetCenter());
feed.SetPositionBase(parT.ToGlobal(parT.GetOP()[0].ps[2] * 0.96));
feed.SetPositionBase(feed.ToGlobal(feed.GetOP()[0].ps[2] * 0.96));
feed.SetSizeBase(Size * 0.07);
feed.SetSizeYBase(0.9);
feed.SetClosed(true);
@@ -248,19 +248,19 @@ namespace _2DGAMELIB
feed.SetBrushColor(Color.FromArgb(0, FeedColor));
feed.GetOP().ReverseY(feed.GetBasePointBase());
pars.Add(feed.Tag, feed);
_partGroup.Add(feed.Tag, feed);
}
public void SetHitColor(ModeEventDispatcher Med)
{
if (parT.GetHitColor() != Color.Transparent)
if (_shapePartT.GetHitColor() != Color.Transparent)
{
Med.RemUniqueColor(parT.GetHitColor());
Med.RemUniqueColor(_shapePartT.GetHitColor());
}
parT.SetHitColor(Med.GetUniqueColor());
_shapePartT.SetHitColor(Med.GetUniqueColor());
}
public void Progression(FPS FPS)
public void Progression(FpsCounter FPS)
{
if (!f1)
{
@@ -268,10 +268,10 @@ namespace _2DGAMELIB
int num = (int)Count;
if (num <= Max)
{
parT.Text = text.Substring(0, num);
_shapePartT.Text = text.Substring(0, num);
return;
}
parT.Text = text;
_shapePartT.Text = text;
f1 = true;
if (feed != null)
{
@@ -294,7 +294,7 @@ namespace _2DGAMELIB
public bool Down(ref Color HitColor)
{
if (parT.GetHitColor() == HitColor)
if (_shapePartT.GetHitColor() == HitColor)
{
f2 = true;
if (!f1 && Speed == speed)
@@ -308,7 +308,7 @@ namespace _2DGAMELIB
public bool Up(ref Color HitColor)
{
if (f1 && f2 && parT.GetHitColor() == HitColor && Speed == speed)
if (f1 && f2 && _shapePartT.GetHitColor() == HitColor && Speed == speed)
{
f1 = false;
f2 = false;
@@ -328,7 +328,7 @@ namespace _2DGAMELIB
public void Dispose()
{
pars.Dispose();
_partGroup.Dispose();
}
}
}

View File

@@ -7,7 +7,7 @@ using Newtonsoft.Json;
namespace _2DGAMELIB
{
[Serializable]
public class Difs
public class VariantGrid
{
public string Tag = "";
@@ -15,11 +15,11 @@ namespace _2DGAMELIB
public double ValueY;
private List<Dif> difs = new List<Dif>();
private List<MorphVariant> difs = new List<MorphVariant>();
public Dictionary<Pars, Joints> pj;
public Dictionary<PartGroup, Joints> pj;
public Dictionary<Pars, Par> pr;
public Dictionary<PartGroup, ShapePart> pr;
public int GetCountX()
{
@@ -63,7 +63,7 @@ namespace _2DGAMELIB
ValueY = (double)value / (double)GetCountY();
}
public Dif this[int Index]
public MorphVariant this[int Index]
{
get
{
@@ -75,14 +75,14 @@ namespace _2DGAMELIB
}
}
public Pars GetCurrent()
public PartGroup GetCurrent()
{
return difs[GetIndexX()][GetIndexY()];
}
public void SetAngleBase(double value)
{
foreach (Dif dif in difs)
foreach (MorphVariant dif in difs)
{
dif.SetAngleBase(value);
}
@@ -90,7 +90,7 @@ namespace _2DGAMELIB
public void SetSizeBase(double value)
{
foreach (Dif dif in difs)
foreach (MorphVariant dif in difs)
{
dif.SetSizeBase(value);
}
@@ -98,15 +98,15 @@ namespace _2DGAMELIB
public void SetSizeYCont(double value)
{
foreach (Dif dif in difs)
foreach (MorphVariant dif in difs)
{
dif.SetSizeYCont(value);
}
}
public Par GetCurJoinRoot()
public ShapePart GetCurJoinRoot()
{
Pars current = GetCurrent();
PartGroup current = GetCurrent();
if (pr.ContainsKey(current))
{
return pr[current];
@@ -115,23 +115,23 @@ namespace _2DGAMELIB
}
[JsonIgnore]
public IEnumerable<Par> EnumJoinRoot => pr.Values;
public IEnumerable<Par> EnumAllPar()
public IEnumerable<ShapePart> EnumJoinRoot => pr.Values;
public IEnumerable<ShapePart> EnumAllPar()
{
foreach (Dif dif in difs)
foreach (MorphVariant dif in difs)
{
foreach (Par item in dif.EnumAllPar())
foreach (ShapePart item in dif.EnumAllPar())
{
yield return item;
}
}
}
public IEnumerable<Pars> EnumAllPars()
public IEnumerable<PartGroup> EnumAllPars()
{
foreach (Dif dif in difs)
foreach (MorphVariant dif in difs)
{
foreach (Pars item in dif.Parss)
foreach (PartGroup item in dif.Parss)
{
yield return item;
}
@@ -140,35 +140,35 @@ namespace _2DGAMELIB
public void SetDefault()
{
foreach (Dif dif in difs)
foreach (MorphVariant dif in difs)
{
dif.SetDefault();
}
}
public Difs()
public VariantGrid()
{
}
public Difs(Difs Difs)
public VariantGrid(VariantGrid VariantGrid)
{
Copy(Difs);
Copy(VariantGrid);
}
private void Copy(Difs Difs)
private void Copy(VariantGrid VariantGrid)
{
Tag = Difs.Tag;
ValueX = Difs.ValueX;
ValueY = Difs.ValueY;
foreach (Dif dif in Difs.difs)
Tag = VariantGrid.Tag;
ValueX = VariantGrid.ValueX;
ValueY = VariantGrid.ValueY;
foreach (MorphVariant dif in VariantGrid.difs)
{
difs.Add(new Dif(dif));
difs.Add(new MorphVariant(dif));
}
}
public void Add(Dif Dif)
public void Add(MorphVariant MorphVariant)
{
difs.Add(Dif);
difs.Add(MorphVariant);
}
@@ -176,28 +176,28 @@ namespace _2DGAMELIB
{
Are.Draw(GetCurrent());
}
public void Draw(AreM AreM)
public void Draw(ManagedArea ManagedArea)
{
AreM.Draw(GetCurrent());
ManagedArea.Draw(GetCurrent());
}
private Par GetJoinRoot(Pars ps)
private ShapePart GetJoinRoot(PartGroup ps)
{
Par[] array = ps.EnumAllPar().ToArray();
ShapePart[] array = ps.EnumAllPar().ToArray();
if (array.Length <= 1)
{
return array.FirstOrDefault();
}
Par[] array2 = array;
foreach (Par p0 in array2)
ShapePart[] array2 = array;
foreach (ShapePart p0 in array2)
{
Vector2D p = p0.GetPosition();
if (array.All((Par p1) => p0 == p1 || p1.GetJP().All((Joi j) => !(p1.ToGlobal(j.Joint).DistanceSquared(p) <= Join.IdentityDistance))))
if (array.All((ShapePart p1) => p0 == p1 || p1.GetJP().All((JointPoint j) => !(p1.ToGlobal(j.Joint).DistanceSquared(p) <= JointLink.IdentityDistance))))
{
return p0;
}
}
Par par = array.FirstOrDefault((Par e) => e.GetJP().Count > 0);
ShapePart par = array.FirstOrDefault((ShapePart e) => e.GetJP().Count > 0);
if (par != null)
{
return par;
@@ -207,11 +207,11 @@ namespace _2DGAMELIB
public void SetJoints()
{
pj = new Dictionary<Pars, Joints>();
pr = new Dictionary<Pars, Par>();
foreach (Pars item in EnumAllPars())
pj = new Dictionary<PartGroup, Joints>();
pr = new Dictionary<PartGroup, ShapePart>();
foreach (PartGroup item in EnumAllPars())
{
Par joinRoot = GetJoinRoot(item);
ShapePart joinRoot = GetJoinRoot(item);
if (joinRoot != null)
{
pj.Add(item, joinRoot.GetJoints(item.EnumAllPar()));
@@ -238,14 +238,14 @@ namespace _2DGAMELIB
}
}
public Par GetHitPar_(Color HitColor)
public ShapePart GetHitPar_(Color HitColor)
{
return difs.FirstOrDefault((Dif d) => d.IsHit(ref HitColor)).Parss.FirstOrDefault((Pars ps) => ps.IsHit(ref HitColor)).EnumAllPar().FirstOrDefault((Par e) => e.GetHitColor() == HitColor);
return difs.FirstOrDefault((MorphVariant d) => d.IsHit(ref HitColor)).Parss.FirstOrDefault((PartGroup ps) => ps.IsHit(ref HitColor)).EnumAllPar().FirstOrDefault((ShapePart e) => e.GetHitColor() == HitColor);
}
public bool IsHit(ref Color HitColor)
{
foreach (Dif dif in difs)
foreach (MorphVariant dif in difs)
{
if (dif.IsHit(ref HitColor))
{
@@ -258,7 +258,7 @@ namespace _2DGAMELIB
public void ReverseX()
{
SetJoints();
foreach (Dif dif in difs)
foreach (MorphVariant dif in difs)
{
dif.ReverseX();
}
@@ -268,7 +268,7 @@ namespace _2DGAMELIB
public void ReverseY()
{
SetJoints();
foreach (Dif dif in difs)
foreach (MorphVariant dif in difs)
{
dif.ReverseY();
}
@@ -277,7 +277,7 @@ namespace _2DGAMELIB
public void Dispose()
{
foreach (Dif dif in difs)
foreach (MorphVariant dif in difs)
{
dif.Dispose();
}

View File

@@ -1,68 +0,0 @@
using System;
namespace _2DGAMELIB
{
public static class Vec
{
public static void Add(ref Vector2D v1, ref Vector2D v2, out Vector2D r)
{
r.X = v1.X + v2.X;
r.Y = v1.Y + v2.Y;
}
public static void Subtract(ref Vector2D v1, ref Vector2D v2, out Vector2D r)
{
r.X = v1.X - v2.X;
r.Y = v1.Y - v2.Y;
}
public static double DistanceSquared(this Vector2D v1, Vector2D v2)
{
double num = v1.X - v2.X;
double num2 = v1.Y - v2.Y;
return num * num + num2 * num2;
}
public static void Dot(ref Vector2D v1, ref Vector2D v2, out double r)
{
r = v1.X * v2.X + v1.Y * v2.Y;
}
public static double Cross(ref Vector2D v1, ref Vector2D v2)
{
return v1.X * v2.Y - v1.Y * v2.X;
}
public static Vector2D newNormalize(this Vector2D vector)
{
vector.Normalize();
return vector;
}
public static double Angle(ref Vector2D v1, ref Vector2D v2)
{
Dot(ref v1, ref v2, out var r);
r /= v1.Length() * v2.Length();
if (r > 1.0)
{
r = 1.0;
}
else if (r < -1.0)
{
r = -1.0;
}
return System.Math.Acos(r);
}
public static double Angle02π(this Vector2D v1, Vector2D v2)
{
double num = Angle(ref v1, ref v2);
if (Cross(ref v1, ref v2) < 0.0)
{
num = System.Math.PI * 2.0 - num;
}
return num;
}
}
}

View File

@@ -1,5 +1,6 @@
using System;
using System.Globalization;
using System.Runtime.CompilerServices;
namespace _2DGAMELIB
{
@@ -21,17 +22,19 @@ namespace _2DGAMELIB
X = x;
Y = y;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public double Length()
{
return System.Math.Sqrt(X * X + Y * Y);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public double LengthSquared()
{
return X * X + Y * Y;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Normalize()
{
double num = Length();

View File

@@ -0,0 +1,76 @@
using System;
using System.Runtime.CompilerServices;
namespace _2DGAMELIB
{
public static class VectorMath
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void Add(ref Vector2D a, ref Vector2D b, out Vector2D result)
{
result.X = a.X + b.X;
result.Y = a.Y + b.Y;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void Subtract(ref Vector2D a, ref Vector2D b, out Vector2D result)
{
result.X = a.X - b.X;
result.Y = a.Y - b.Y;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static double DistanceSquared(this Vector2D a, Vector2D b)
{
double num = a.X - b.X;
double num2 = a.Y - b.Y;
return num * num + num2 * num2;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void Dot(ref Vector2D a, ref Vector2D b, out double result)
{
result = a.X * b.X + a.Y * b.Y;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static double Cross(ref Vector2D a, ref Vector2D b)
{
return a.X * b.Y - a.Y * b.X;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static Vector2D newNormalize(this Vector2D vector)
{
vector.Normalize();
return vector;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static double Angle(ref Vector2D a, ref Vector2D b)
{
Dot(ref a, ref b, out var r);
r /= a.Length() * b.Length();
if (r > 1.0)
{
r = 1.0;
}
else if (r < -1.0)
{
r = -1.0;
}
return System.Math.Acos(r);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static double Angle02π(this Vector2D a, Vector2D b)
{
double num = Angle(ref a, ref b);
if (Cross(ref a, ref b) < 0.0)
{
num = System.Math.PI * 2.0 - num;
}
return num;
}
}
}

View File

@@ -196,17 +196,17 @@ namespace _2DGAMELIB
public static Vector2D TransformCoordinateBP(this Vector2D coord, Vector2D BasePoint, MatrixD transform)
{
Vec.Subtract(ref coord, ref BasePoint, out coord);
VectorMath.Subtract(ref coord, ref BasePoint, out coord);
TransformCoordinate(ref coord, ref transform, out var result);
Vec.Add(ref result, ref BasePoint, out result);
VectorMath.Add(ref result, ref BasePoint, out result);
return result;
}
public static Vector2D TransformCoordinateBP(ref Vector2D coord, ref Vector2D BasePoint, ref MatrixD transform)
{
Vec.Subtract(ref coord, ref BasePoint, out var r);
VectorMath.Subtract(ref coord, ref BasePoint, out var r);
TransformCoordinate(ref r, ref transform, out var result);
Vec.Add(ref result, ref BasePoint, out result);
VectorMath.Add(ref result, ref BasePoint, out result);
return result;
}
@@ -214,20 +214,20 @@ namespace _2DGAMELIB
public static Pars ToPars(this object obj)
/*
public static PartGroup ToPars(this object obj)
{
return (Pars)obj;
return (PartGroup)obj;
}
public static ParT ToParT(this object obj)
public static ShapePartT ToParT(this object obj)
{
return (ParT)obj;
return (ShapePartT)obj;
}
public static Par ToPar(this object obj)
public static ShapePart ToPar(this object obj)
{
return (Par)obj;
return (ShapePart)obj;
}
public static Pen Copy(this Pen Pen)
@@ -299,5 +299,7 @@ namespace _2DGAMELIB
{
return new StringFormat(StringFormat);
}
*/
}
}

46
AGENTS.md Normal file
View File

@@ -0,0 +1,46 @@
# AGENTS.md — SlaveMatrixDecomp
## Project
Decompilation + modding re-architecture of "Slave Matrix" (Auto Eden). Three .NET 8 projects:
- **SlaveMatrix** (`WinExe`) — game entrypoint `SlaveMatrix.Program.Main` at `SlaveMatrix/SlaveMatrix/GameClasses/Program.cs`
- **2DGAMELIB** (class library) — legacy rendering engine (GDI+) + core data types (BodyTemplate, ShapePart, etc.)
- **SlaveMatrix.Extract** (`Exe`) — asset pipeline CLI; depends on SlaveMatrix for embedded resources
## Build & Run
```
dotnet build Solution.sln # build all
./run.sh # launch game (cds to game_folder/, sets DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1)
dotnet run --project SlaveMatrix.Extract -- --output <path> # asset extraction
```
The game **must** run with `game_folder/` as working directory. `launchSettings.json` sets this automatically in VS/Rider.
## Key Quirks
- **C# 9.0** (`LangVersion` hardcoded in `.csproj`). No `ImplicitUsings` in SlaveMatrix/2DGAMELIB.
- **x64 only**, `AllowUnsafeBlocks=true`, `InvariantGlobalization=true` (needed on Linux).
- **BinaryFormatter** still in use (legacy saves). Requires `EnableUnsafeBinaryFormatterSerialization=true` and `NoWarn=SYSLIB0011`.
- **`System.Drawing.EnableUnixSupport`** must be set at startup (`runtimeconfig.template.json` + `AppContext.SetSwitch` in `Program.cs`).
- **Newtonsoft.Json** (not `System.Text.Json`) — used in 2DGAMELIB and Extract.
- **Empty `RootNamespace`** in SlaveMatrix and 2DGAMELIB — types live in global namespace.
- **`GenerateAssemblyInfo=false`** — uses legacy `Properties/AssemblyInfo.cs`.
- **No test projects**, no CI/CD, no formatter/linter config.
- **843 BodyPartClasses** (`SlaveMatrix/SlaveMatrix/BodyPartClasses/`). **Do not rename** — C# reflection (`Type.GetType`) resolves joint types by class name at runtime.
## Architecture Notes
- **BodyTemplate** (13 binary `Obj` resources) → `VariantGrid``MorphVariant``PartGroup``ShapePart` tree with cardinal-spline curves and joint points. Deserialized via `BinaryFormatter` + `RemappedTypeBinder` (type remapping for decompiled names).
- **Extract pipeline** (`SlaveMatrix.Extract`) loads the 13 embedded resources, applies `MigrateKeys()` (23-entry runtime KeyMap for Japanese→English), then exports:
- Intermediate JSON → `extracted/` (gitignored)
- SVG + YAML per part → `SlaveMatrix/Assets/Parts/` (checked in)
- `Catalog.yaml` index → `SlaveMatrix/Assets/`
- **EnglishNameMap** in `SlaveMatrix.Extract/Program.cs` (179 entries) is for extraction output naming only. It is separate from the smaller runtime `MigrateKeys` KeyMap which only covers keys the old game code actually looks up.
- **Phase 0 (extraction) is complete.** Phases 1-5 (engine rewrite) are planned in `PLAN.md`.
## Git
- `.gitignore` excludes: `**/bin/`, `**/obj/`, `.vs/`, `.idea/`, `Config.ini`, `game_folder/save/*`, `extracted/`.
- `SlaveMatrix/Assets/` (auto-generated SVGs + YAML) **is** checked in.
- `game_folder/` runtime assets are checked in (bgm, text, etc.).

213
PLAN.md Normal file
View File

@@ -0,0 +1,213 @@
# SlaveMatrix Engine Rewrite Plan
## Goal
Rearchitect the game from a decompiled monolith with hardcoded Japanese string lookups, BinaryFormatter resources, and GDI+ rendering into a moddable, data-driven engine with Vulkan/Silk.NET rendering, YAML sidecar definitions, and SVG vector assets.
## Key Decisions
- **Clean break** from save compatibility (no BinaryFormatter/RenameMap)
- **Vulkan/Silk.NET** rendering backend
- **YAML** sidecar data files for body part definitions
- **Full modding support**: new body parts, races, color schemes, animation states
- **SVG extraction** for vector graphics data; Vulkan rendering at runtime
- **Runtime catalog** built from sidecar files at load time
- **No MigrateKeys** -- resource data will have keys renamed at extraction time, not at runtime
## Current State
- **Phase 0 complete** (`engine-rewrite` branch, pushed to `gitea`)
- 843 BodyPartClasses with Japanese filenames (not yet touched)
- 13 binary `Obj` resources embedded in `.resx` (5.5MB largest)
- `MigrateKeys()` runtime key-mutation for 4 of 13 resources (fragile, incomplete)
- 1,660 unique string keys across all resource lookups
- BinaryFormatter double-wrapped serialization
- GDI+ rendering with cardinal splines, GraphicsPath, hit-testing
- Existing `Ser.ToJson`/`Ser.UnJson` infrastructure (patched for private fields and OrderedDictionary)
### Phase 0 Deliverables
**Asset pipeline tool**`SlaveMatrix.Extract` CLI:
- Loads all 13 binary resources via `ObjLoadRaw()` (GDI+-free deserialization)
- Applies `MigrateKeys()` for 23 KeyMap entries
- Exports structured JSON intermediate format
- Converts cardinal spline curves to cubic Bézier SVG paths
- Generates YAML sidecar files per body part
- Outputs `Catalog.yaml` runtime index
**Asset directory**`SlaveMatrix/Assets/`:
```
Assets/
Catalog.yaml <- 175 entries, auto-generated
Parts/ <- one directory per body part key
BaseHair/ <- English name (after MigrateKeys)
part.yaml <- id, original_key, resource, joints, fields, variants
x0y0.svg <- morph variant (X=0, Y=0)
BackHair0/
part.yaml
x0y0.svg ... x0y21.svg <- 22 morph variants
FrontHair/
part.yaml
x0y0.svg ... x0y18.svg <- 19 morph variants
上着ボトム後/ <- Japanese name (not in KeyMap yet)
part.yaml
x0y0.svg, x0y1.svg
...
Races/ <- (planned, Phase 2)
Colors/ <- (planned, Phase 3)
```
**Key stats:**
- 175 body parts extracted across 13 resources
- 838 SVG files (one per morph variant)
- 175 YAML sidecar files
- 1 Catalog.yaml index
- KeyMap entries for 23 Japanese→English mappings
## Phase 0: Resource Extraction & Asset Pipeline ✅ COMPLETE
### 0.1: Fix JSON Serialization ✅
- Add `JsonConverter<OrderedDictionary<T1,T2>>` for proper dictionary round-tripping
- Manual export walker instead of JsonSerializer serialization (avoids GDI+ and self-reference issues)
- Add `ObjLoadRaw()` for GDI+-free binary resource loading
- Clean JSON methods using `JsonConvert` API with consistent settings
### 0.2: Build Key Map ✅
- Added hair class entries: `基髪→BaseHair`, `胸毛→ChestHair`, `前髪→FrontHair`
- 23 total KeyMap entries (pre-existing + new)
- No Pars-level recursive migration needed (manual export avoids it)
### 0.3: Write Extraction Console App ✅
- Created `SlaveMatrix.Extract` console project
- Loads all 13 `Obj` from embedded resources via `ObjLoadRaw()`
- Applies `MigrateKeys()` with current KeyMap
- Exports each `Obj` to intermediate JSON file
- For SVG export: converts cardinal spline to cubic Bezier via Catmull-Rom tension formula
- For YAML: exports part metadata (id, original_key, resource, morph dimensions, joints, variant SVGs)
- Outputs `Catalog.yaml` index of all parts
### 0.4: Validate Extraction ✅
- Manual inspection of SVG output confirms valid path data with cubic Bezier curves
- All 175 parts export without errors
- 838 SVGs generated across all morph variants
## Phase 1: Engine Foundation
- New .NET 8 solution: `SlaveMatrix.Engine`, `SlaveMatrix.Modding`, `SlaveMatrix.Game`, `SlaveMatrix.AssetTool`
- Vulkan/Silk.NET renderer: GPU path rendering, fill/stroke, hit-testing
- YAML part definition schema (connections, variants, colors, joints)
- Asset loader: scan `Assets/` directories, build runtime `PartCatalog`
- Morph interpolation between SVG variants
## Phase 2: Character Assembly & Joints
- Explicit joint definitions in YAML (no proximity-based matching)
- Connection resolution: parent-child graph from catalog
- Character builder: given race template, assemble character from parts
- Runtime catalog on startup
## Phase 3: Game Logic Migration
- YAML-based character saves (replace EleD serialization)
- YAML-driven color palette system (replace `配色指定`/`BodyColorSet`)
- Pose/animation system (same morph concept, YAML-defined)
- Port UI
## Phase 4: Modding API
- Mod package format: manifest.yaml + Parts/ + Races/ + Colors/
- Mod loader: merge catalogs, validate connections
- Hot reload during development
## Phase 5: Polish & Release
- Build pipeline: MSBuild targets for asset packing
- Performance: GPU instancing, spatial partitioning
- Visual regression tests
## Resource Architecture
### Current (Binary)
```
Resources.resx -> byte[] -> BinaryFormatter(BinaryFormatter(Obj)) -> Obj
Obj.Difss keys are Japanese
MigrateKeys() renames some keys at runtime (fragile)
```
### Target (YAML + SVG) ✅ Phase 0 complete
```
Assets/
Catalog.yaml <- auto-generated index
Parts/
BaseHair/ <- one dir per body part (English name)
part.yaml <- sidecar: id, original_key, resource, morph, joints, fields
x0y0.svg <- morph variant SVG (X index, Y index)
x0y1.svg <- next morph variant
...
Races/ <- (planned, Phase 2)
Colors/ <- (planned, Phase 3)
Game loads YAML+SVG at runtime, no embedded binary resources needed.
Modders add directories under Assets/Parts/ to add new parts.
```
## Rendering Architecture
### Current (GDI+)
- `System.Drawing.Graphics.FillPath/DrawPath` for fills and strokes
- `GraphicsPath.AddCurve(points, tension)` for cardinal splines
- Separate hit-test pass with unique colors per `Par`
- `Difs.ValueX/ValueY` controls morph interpolation (discrete variant selection)
### Target (Vulkan/Silk.NET)
- GPU path rendering: tessellate cubic Bezier curves into triangles
- Separate hit-test pass: render with unique colors to offscreen buffer, read pixel
- Morph interpolation: blend control point positions between SVG variants
- YAML-driven pose system replaces hardcoded `Difs` index selection
## Data Format: YAML Part Definition (actual)
```yaml
id: BaseHair
original_key: 基髪
resource: 胴体
morph_x: 1
morph_y: 1
variants:
- x: 0
y: 0
file: x0y0.svg
fields:
- name:
joints:
- position: [0.34, 0.34]
- position: [0.39, 0.34]
- position: [0.37, 0.33]
- position: [0.37, 0.34]
```
## Data Format: YAML Race Template (planned)
```yaml
id: human
parts:
torso: { variant: human, morph_x: 0.5, morph_y: 0.3 }
head: { variant: human }
hair: { variant: long }
left_arm: { variant: human }
right_arm: { variant: human }
left_leg: { variant: human }
right_leg: { variant: human }
colors:
skin: { palette: skin_tones, index: 0 }
hair: { palette: hair_colors, index: 3 }
```

View File

@@ -0,0 +1,684 @@
using _2DGAMELIB;
using SlaveMatrix.Properties;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace SlaveMatrix.Extract;
class Program
{
static readonly string ProjectRoot = Environment.CurrentDirectory;
static string AssetsDir = Path.Combine(ProjectRoot, "SlaveMatrix", "Assets");
static string OutputDir;
// Complete translation map for extraction output.
// Separate from the runtime KeyMap in ObjExtensions — the runtime map only
// contains entries that match the old game code's string lookups.
static readonly Dictionary<string, string> EnglishNameMap = new()
{
["咳"] = "Cough",
["腰"] = "Waist",
["胴"] = "Torso",
["首"] = "Neck",
["頭"] = "Head",
["後髪0"] = "BackHair0",
["後髪1"] = "BackHair1",
["横髪"] = "SideHair",
["脚"] = "Leg",
["腕"] = "Arm",
["肩"] = "Shoulder",
["胸"] = "Chest",
["下腕"] = "LowerArm",
["上腕"] = "UpperArm",
["鳥翼上腕"] = "鳥翼UpperArm",
["獣翼上腕"] = "獣翼UpperArm",
["四足上腕"] = "四足UpperArm",
["鳥翼下腕"] = "鳥翼LowerArm",
["獣翼下腕"] = "獣翼LowerArm",
["四足下腕"] = "四足LowerArm",
["基髪"] = "BaseHair",
["胸毛"] = "ChestHair",
["前髪"] = "FrontHair",
["眉左"] = "EyebrowLeft",
["額目"] = "ForeheadEye",
["額瞼"] = "ForeheadEyelid",
["顔ハイライト左"] = "FaceHighlightLeft",
["顔面"] = "Face",
["魔性中瞼左"] = "DemonicMidEyelidLeft",
["魔性強瞼左"] = "DemonicStrongEyelidLeft",
["魔性弱瞼左"] = "DemonicWeakEyelidLeft",
["単眼目"] = "MonoEye",
["単眼眉"] = "MonoEyebrow",
["単眼瞼"] = "MonoEyelid",
["単足"] = "MonoLeg",
["獣性瞼左"] = "BestialEyelidLeft",
["目傷左"] = "EyeScarLeft",
["目尻影左"] = "EyeCornerShadowLeft",
["目左"] = "EyeLeft",
["目隠帯"] = "Blindfold",
["頬目左"] = "CheekEyeLeft",
["頬瞼左"] = "CheekEyelidLeft",
["頬肌左"] = "CheekSkinLeft",
["口"] = "Mouth",
["舌"] = "Tongue",
["涎左"] = "DroolLeft",
["涎口裂け左"] = "DroolMouthGashLeft",
["呼気"] = "Breath",
["吹出し"] = "SpeechBubble",
["鼻"] = "Nose",
["鼻水左"] = "NoseDripLeft",
["鼻肌"] = "NoseSkin",
["耳"] = "Ear",
["獣耳"] = "BeastEar",
["角"] = "Horn",
["胸郭"] = "Chest",
["胸郭肌"] = "ChestSkin",
["胸郭腹板"] = "ChestPlate",
["胸左"] = "LeftBreast",
["胴肌"] = "TorsoSkin",
["胴腹板"] = "TorsoPlate",
["腰肌"] = "WaistSkin",
["ボテ腹"] = "PregnantBelly",
["ボテ腹板"] = "PregnantBellyPlate",
["固定帯"] = "FixingBelt",
["紅潮"] = "Blush",
["肛門"] = "Anus",
["肛門精液垂れ"] = "AnusSemenDrip",
["膣基"] = "VaginaBase",
["膣内精液"] = "InternalSemen",
["性器"] = "Genitals",
["性器精液垂れ"] = "GenitalsSemenDrip",
["射精"] = "Ejaculation",
["放尿"] = "Urination",
["噴乳左"] = "LactationLeft",
["潮吹"] = "Squirting",
["尾"] = "Tail",
["背中"] = "Back",
["手"] = "Hand",
["足"] = "Foot",
["腿"] = "Thigh",
["前翅"] = "Forewing",
["後翅"] = "Hindwing",
["触手"] = "Tentacle",
["触覚"] = "Antenna",
["節足"] = "SegmentLeg",
["虫鎌"] = "InsectScythe",
["虫顎"] = "InsectJaw",
["植"] = "Plant",
["葉"] = "Leaf",
["羽根箒"] = "FeatherDuster",
["飛沫"] = "Splash",
["飛膜先"] = "MembraneTip",
["飛膜根"] = "MembraneBase",
["上着トップ"] = "JacketTop",
["上着ミドル"] = "JacketMid",
["上着ボトム前"] = "JacketBottomFront",
["上着ボトム後"] = "JacketBottomBack",
["下着トップ"] = "UnderwearTop",
["下着ボトム"] = "UnderwearBottom",
["下着乳首左"] = "UnderwearNippleLeft",
["下着陰核"] = "UnderwearClitoris",
["帽子"] = "Hat",
["パンスト"] = "Pantyhose",
["キャップ左"] = "CapLeft",
["キャップ中"] = "CapMid",
["玉口枷"] = "BallGag",
["留具前"] = "FastenerFront",
["留具後"] = "FastenerBack",
["拘束具上"] = "RestraintUpper",
["拘束具下"] = "RestraintLower",
["拘束鎖"] = "RestraintChain",
["押し付け"] = "Pressing",
["コモン"] = "CommonCursor",
["ハンド"] = "HandCursor",
["ペニス"] = "PenisCursor",
["アナル"] = "AnalCursor",
["マウス"] = "MouthCursor",
["ディル"] = "DildoCursor",
["デンマ"] = "VibratorCursor",
["ドリル"] = "DrillCursor",
["パール"] = "PearlCursor",
["ロータ"] = "RotoCursor",
["T字剃刀"] = "TRazorCursor",
["ぶっかけ"] = "Bukkake",
["キスマーク"] = "KissMark",
["汗"] = "Sweat",
["汚れ"] = "Stain",
["流血中"] = "BleedingMid",
["流血大"] = "BleedingLarge",
["流血小"] = "BleedingSmall",
["鞭痕"] = "WhipMark",
["横髪左"] = "SideHairLeft",
["涙左"] = "TearLeft",
["青筋左"] = "VeinLeft",
["頭部前"] = "Forehead",
["頭部後"] = "BackOfHead",
["鰭"] = "Fin",
["獣翼手"] = "BeastWingHand",
["鳥翼手"] = "BirdWingHand",
["エイリアン目左"] = "AlienEyeLeft",
["ピアス"] = "Piercing",
["反応"] = "Reaction",
["多足"] = "MultiLeg",
["大顎上"] = "MandibleUpper",
["大顎基"] = "MandibleBase",
["意思表示"] = "Expression",
["断面"] = "CrossSection",
["染み"] = "Spot",
["長物"] = "Phallus",
["調教鞭"] = "Whip",
["衝撃"] = "Impact",
["鎖"] = "Chain",
["四足ボテ腹"] = "QuadrupedPregnantBelly",
["四足固定帯"] = "QuadrupedFixingBelt",
["四足性器"] = "QuadrupedGenitals",
["四足性器精液垂れ"] = "QuadrupedGenitalsSemenDrip",
["四足手"] = "QuadrupedHand",
["四足放尿"] = "QuadrupedUrination",
["四足断面"] = "QuadrupedCrossSection",
["四足染み"] = "QuadrupedSpot",
["四足潮吹"] = "QuadrupedSquirting",
["四足留具前"] = "QuadrupedFastenerFront",
["四足留具後"] = "QuadrupedFastenerBack",
["四足肛門"] = "QuadrupedAnus",
["四足肛門精液垂れ"] = "QuadrupedAnusSemenDrip",
["四足胴"] = "QuadrupedTorso",
["四足胸郭"] = "QuadrupedChest",
["四足脇"] = "QuadrupedSide",
["四足脚"] = "QuadrupedLeg",
["四足腰"] = "QuadrupedWaist",
["四足腿"] = "QuadrupedThigh",
["四足膣内精液"] = "QuadrupedInternalSemen",
["四足膣基"] = "QuadrupedVaginaBase",
["四足足"] = "QuadrupedFoot",
["四足飛沫"] = "QuadrupedSplash",
};
static void Main(string[] args)
{
Console.WriteLine("SlaveMatrix Asset Extractor");
Console.WriteLine("=================================\n");
OutputDir = args.Length > 0 && args[0] == "--output" && args.Length > 1
? Path.GetFullPath(args[1])
: Path.GetFullPath(AssetsDir);
var partsDir = Path.Combine(OutputDir, "Parts");
var jsonDir = Path.Combine(OutputDir, "..", "..", "extracted");
Directory.CreateDirectory(partsDir);
Directory.CreateDirectory(jsonDir);
var resources = new (string Name, byte[] Data)[]
{
("胴体", Resources.),
("肩左", Resources.),
("腕左", Resources.),
("脚左", Resources.),
("尻尾", Resources.),
("半身", Resources.),
("肢左", Resources.),
("肢中", Resources.),
("性器", Resources.),
("性器付", Resources.),
("スタンプ", Resources.),
("カーソル", Resources.),
("その他", Resources.),
};
var catalog = new JObject();
catalog["parts"] = new JArray();
var catalogParts = (JArray)catalog["parts"];
foreach (var (name, data) in resources)
{
Console.Write($"Loading {name}... ");
BodyTemplate? obj;
try
{
obj = data.ObjLoadRaw();
if (obj == null) { Console.WriteLine("FAILED: null"); continue; }
Console.WriteLine($"OK ({obj.Difss.Count} keys)");
}
catch (Exception ex) { Console.WriteLine($"FAILED: {ex.Message}"); continue; }
Console.Write(" Applying MigrateKeys... ");
// Capture original keys before migration for original_key tracking
var origKeys = obj.Difss.Keys.Cast<string>().ToList();
obj.MigrateKeys();
Console.WriteLine("OK");
var jsonObj = ExportObj(obj);
var jsonPath = Path.Combine(jsonDir, $"{name}.json");
File.WriteAllText(jsonPath, JsonConvert.SerializeObject(jsonObj, Formatting.Indented));
var keys = obj.Difss.Keys.Cast<string>().ToList();
foreach (var key in keys)
{
// Use extraction EnglishNameMap for directory naming
var engKey = EnglishNameMap.TryGetValue(key, out var mapped) ? mapped : key;
var difs = obj.Difss[key];
var partDir = Path.Combine(partsDir, SanitizeName(engKey));
Directory.CreateDirectory(partDir);
var foundJoints = new List<string>();
// original_key: the pre-migration Japanese key
var originalKey = origKeys.Contains(key) ? key : origKeys.FirstOrDefault(ok => EnglishNameMap.GetValueOrDefault(ok, ok) == engKey) ?? key;
var partEntry = new JObject
{
["id"] = engKey,
["original_key"] = originalKey,
["resource"] = name,
["morph_x"] = difs.CountX,
["morph_y"] = difs.CountY,
["variants"] = new JArray(),
["fields"] = new JArray()
};
var variants = (JArray)partEntry["variants"];
for (int x = 0; x < difs.CountX; x++)
{
var dif = difs[x];
for (int y = 0; y < dif.Count; y++)
{
var pars = dif[y];
var svgName = $"x{x}y{y}.svg";
var svgContent = ExportParsToSvg(pars, foundJoints);
variants.Add(new JObject
{
["x"] = x,
["y"] = y,
["file"] = svgName
});
File.WriteAllText(Path.Combine(partDir, svgName), svgContent);
}
}
foreach (string childKey in difs[0][0].Keys)
{
((JArray)partEntry["fields"]).Add(new JObject { ["name"] = childKey });
}
if (foundJoints.Count > 0)
{
var joints = new JArray();
foreach (var j in foundJoints.Distinct())
{
var parts = j.Split(',');
joints.Add(new JObject
{
["position"] = new JArray
{
double.Parse(parts[0], CultureInfo.InvariantCulture),
double.Parse(parts[1], CultureInfo.InvariantCulture)
}
});
}
partEntry["joints"] = joints;
}
var yaml = ToYaml((JObject)partEntry);
File.WriteAllText(Path.Combine(partDir, "part.yaml"), yaml);
catalogParts.Add(new JObject
{
["id"] = engKey,
["path"] = $"Parts/{SanitizeName(engKey)}/"
});
}
Console.WriteLine($" -> {keys.Count} parts exported");
}
var catalogYaml = ToYaml(catalog);
var catalogPath = Path.Combine(OutputDir, "Catalog.yaml");
File.WriteAllText(catalogPath, catalogYaml);
Console.WriteLine($"\nCatalog: {catalogPath}");
Console.WriteLine($"Total: {((JArray)catalog["parts"]).Count} parts\n");
}
static string ToYaml(JObject obj, int indent = 0)
{
var prefix = new string(' ', indent);
var sb = new StringBuilder();
foreach (var prop in obj.Properties())
{
if (prop.Value is JObject nested)
{
sb.AppendLine($"{prefix}{prop.Name}:");
sb.Append(ToYaml(nested, indent + 2));
}
else if (prop.Value is JArray arr)
{
if (arr.Count == 0)
{
sb.AppendLine($"{prefix}{prop.Name}: []");
continue;
}
if (arr[0] is JObject)
{
sb.AppendLine($"{prefix}{prop.Name}:");
foreach (var item in arr)
{
var objItem = (JObject)item;
sb.Append($"{prefix}- ");
var first = true;
foreach (var p in objItem.Properties())
{
if (first)
{
sb.AppendLine($"{p.Name}: {FormatYamlValue(p.Value)}");
first = false;
}
else
{
sb.AppendLine($"{prefix} {p.Name}: {FormatYamlValue(p.Value)}");
}
}
}
}
else
{
sb.AppendLine($"{prefix}{prop.Name}:");
foreach (var item in arr)
sb.AppendLine($"{prefix}- {FormatYamlValue(item)}");
}
}
else
{
sb.AppendLine($"{prefix}{prop.Name}: {FormatYamlValue(prop.Value)}");
}
}
return sb.ToString();
}
static string FormatYamlValue(JToken token)
{
if (token.Type == JTokenType.String)
{
var s = token.Value<string>();
if (s.Contains(':') || s.Contains('#') || s.Contains('\n'))
return $"\"{s}\"";
return s;
}
if (token.Type == JTokenType.Float)
return ((double)token).ToString("G", CultureInfo.InvariantCulture);
if (token.Type == JTokenType.Integer)
return ((long)token).ToString(CultureInfo.InvariantCulture);
return token.ToString();
}
static string ExportParsToSvg(PartGroup PartGroup, List<string> foundJoints)
{
var sb = new StringBuilder();
sb.AppendLine("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
sb.AppendLine("<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1 1\">");
ExportParsToSvgInner(PartGroup, sb, foundJoints);
sb.AppendLine("</svg>");
return sb.ToString();
}
static void ExportParsToSvgInner(PartGroup PartGroup, StringBuilder sb, List<string> foundJoints)
{
foreach (string key in PartGroup.Keys)
{
var val = PartGroup[key];
if (val is PartGroup childPars)
{
sb.AppendLine($"<g id=\"{EscapeXml(key)}\">");
ExportParsToSvgInner(childPars, sb, foundJoints);
sb.AppendLine("</g>");
}
else if (val is ShapePart par)
{
ExportParToSvg(par, key, sb, foundJoints);
}
}
}
static void ExportParToSvg(ShapePart ShapePart, string name, StringBuilder sb, List<string> foundJoints)
{
if (!ShapePart.Dra) return;
var bx = ShapePart.BasePoint.X;
var by = ShapePart.BasePoint.Y;
var px = ShapePart.Position.X;
var py = ShapePart.Position.Y;
var angle = ShapePart.Angle;
var sx = ShapePart.Size * ShapePart.SizeX;
var sy = ShapePart.Size * ShapePart.SizeY;
var hasTransform = System.Math.Abs(bx) > 0.001 || System.Math.Abs(by) > 0.001
|| System.Math.Abs(px) > 0.001 || System.Math.Abs(py) > 0.001
|| System.Math.Abs(angle) > 0.001 || System.Math.Abs(sx - 1) > 0.001 || System.Math.Abs(sy - 1) > 0.001;
if (hasTransform)
sb.Append($"<g transform=\"translate({F(px)},{F(py)}) rotate({F(angle)}) scale({F(sx)},{F(sy)}) translate({F(-bx)},{F(-by)})\">");
foreach (var outObj in ShapePart.OP)
{
var points = outObj.ps;
if (points.Count < 2) continue;
var d = BuildSvgPath(points, outObj.Tension, ShapePart.Closed);
var fill = ShapePart.Closed ? "#cccccc" : "none";
var stroke = outObj.Outline ? "#000000" : "none";
var sw_val = outObj.Outline ? System.Math.Max(ShapePart.PenWidth, 0.001) : 0.0;
sb.AppendLine($"<path d=\"{d}\" fill=\"{fill}\" stroke=\"{stroke}\" stroke-width=\"{F(sw_val)}\"/>");
}
if (hasTransform)
sb.Append("</g>");
foreach (var joi in ShapePart.JP)
{
foundJoints.Add($"{F(joi.Joint.X)},{F(joi.Joint.Y)}");
}
}
static string BuildSvgPath(List<Vector2D> points, float tension, bool closed)
{
int n = points.Count;
if (n < 2) return "";
var sb = new StringBuilder();
sb.Append($"M {F(points[0].X)} {F(points[0].Y)}");
if (n == 2)
{
sb.Append($" L {F(points[1].X)} {F(points[1].Y)}");
if (closed) sb.Append(" Z");
return sb.ToString();
}
double tensionFactor = 1.0 - tension;
if (tensionFactor < 0.0) tensionFactor = 0.0;
int segmentCount = closed ? n : n - 1;
for (int i = 0; i < segmentCount; i++)
{
int p0, p1, p2, p3;
if (closed)
{
p0 = (i - 1 + n) % n;
p1 = i;
p2 = (i + 1) % n;
p3 = (i + 2) % n;
}
else
{
p0 = System.Math.Max(i - 1, 0);
p1 = i;
p2 = i + 1;
p3 = System.Math.Min(i + 2, n - 1);
}
var ci1x = tensionFactor * 0.5 * (points[p2].X - points[p0].X);
var ci1y = tensionFactor * 0.5 * (points[p2].Y - points[p0].Y);
var ci2x = tensionFactor * 0.5 * (points[p3].X - points[p1].X);
var ci2y = tensionFactor * 0.5 * (points[p3].Y - points[p1].Y);
var c1x = F(points[p1].X + ci1x / 3);
var c1y = F(points[p1].Y + ci1y / 3);
var c2x = F(points[p2].X + ci2x / 3);
var c2y = F(points[p2].Y + ci2y / 3);
var ex = F(points[p2].X);
var ey = F(points[p2].Y);
sb.Append($" C {c1x} {c1y} {c2x} {c2y} {ex} {ey}");
}
if (closed) sb.Append(" Z");
return sb.ToString();
}
static string F(double v) => v.ToString("G", CultureInfo.InvariantCulture);
static string EscapeXml(string s) => s.Replace("&", "&amp;").Replace("<", "&lt;").Replace(">", "&gt;").Replace("\"", "&quot;");
static string SanitizeName(string name)
{
var invalid = Path.GetInvalidFileNameChars();
var result = name;
foreach (var c in invalid)
result = result.Replace(c, '_');
return result;
}
static JObject ExportObj(BodyTemplate BodyTemplate)
{
var keys = BodyTemplate.Difss.Keys.Cast<string>().ToList();
var result = new JObject
{
["Tag"] = BodyTemplate.Tag ?? "",
["KeyCount"] = keys.Count,
["Keys"] = JArray.FromObject(keys),
["Difss"] = new JObject()
};
foreach (var key in keys)
{
result["Difss"][key] = ExportDifs(BodyTemplate.Difss[key]);
}
return result;
}
static JObject ExportDifs(VariantGrid VariantGrid)
{
int xCount = VariantGrid.CountX;
int yCount = VariantGrid.CountY;
var result = new JObject
{
["Tag"] = VariantGrid.Tag ?? "",
["ValueX"] = VariantGrid.ValueX,
["ValueY"] = VariantGrid.ValueY,
["CountX"] = xCount,
["CountY"] = yCount,
["VariantGrid"] = new JArray()
};
for (int x = 0; x < xCount; x++)
{
var dif = VariantGrid[x];
var difArr = new JArray();
for (int y = 0; y < dif.Count; y++)
{
difArr.Add(ExportPars(dif[y]));
}
((JArray)result["VariantGrid"]).Add(difArr);
}
return result;
}
static JObject ExportPars(PartGroup PartGroup)
{
var result = new JObject
{
["Tag"] = PartGroup.Tag ?? "",
["Children"] = new JObject()
};
foreach (string key in PartGroup.Keys)
{
var val = PartGroup[key];
if (val is PartGroup childPars)
result["Children"][key] = ExportPars(childPars);
else if (val is ShapePartT parT)
result["Children"][key] = ExportParT(parT);
else if (val is ShapePart par)
result["Children"][key] = ExportPar(par);
else
result["Children"][key] = val?.ToString() ?? "null";
}
return result;
}
static JObject ExportPar(ShapePart ShapePart)
{
var result = new JObject
{
["Tag"] = ShapePart.Tag ?? "",
["Dra"] = ShapePart.Dra,
["PenWidth"] = ShapePart.PenWidth,
["Closed"] = ShapePart.Closed,
["BasePoint"] = ExportVec(ShapePart.BasePoint),
["Position"] = ExportVec(ShapePart.Position),
["Angle"] = ShapePart.Angle,
["Size"] = ShapePart.Size,
["SizeX"] = ShapePart.SizeX,
["SizeY"] = ShapePart.SizeY,
["CurveOutline"] = new JArray()
};
foreach (var outObj in ShapePart.OP)
{
var outJ = new JObject
{
["Tension"] = outObj.Tension,
["Outline"] = outObj.Outline,
["Points"] = new JArray()
};
foreach (var pt in outObj.ps)
((JArray)outJ["Points"]).Add(ExportVec(pt));
((JArray)result["CurveOutline"]).Add(outJ);
}
if (ShapePart.JP.Count > 0)
{
result["Joints"] = new JArray();
foreach (var joi in ShapePart.JP)
((JArray)result["Joints"]).Add(ExportVec(joi.Joint));
}
return result;
}
static JObject ExportParT(ShapePartT ShapePartT)
{
var result = ExportPar(ShapePartT);
result["Text"] = ShapePartT.Text ?? "";
result["FontSize"] = ShapePartT.FontSize;
return result;
}
static JObject ExportVec(Vector2D v) => new JObject { ["X"] = v.X, ["Y"] = v.Y };
}

View File

@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
<GenerateResourceWarnOnBinaryFormatterUse>false</GenerateResourceWarnOnBinaryFormatterUse>
<NoWarn>SYSLIB0011;CA1416</NoWarn>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\SlaveMatrix\SlaveMatrix.csproj" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,351 @@
parts:
- id: JacketBottomBack
path: Parts/JacketBottomBack/
- id: BackHair1
path: Parts/BackHair1/
- id: BackHair0
path: Parts/BackHair0/
- id: Waist
path: Parts/Waist/
- id: Torso
path: Parts/Torso/
- id: Chest
path: Parts/Chest/
- id: VaginaBase
path: Parts/VaginaBase/
- id: InternalSemen
path: Parts/InternalSemen/
- id: CrossSection
path: Parts/CrossSection/
- id: PregnantBelly
path: Parts/PregnantBelly/
- id: WaistSkin
path: Parts/WaistSkin/
- id: PregnantBellyPlate
path: Parts/PregnantBellyPlate/
- id: TorsoPlate
path: Parts/TorsoPlate/
- id: TorsoSkin
path: Parts/TorsoSkin/
- id: Anus
path: Parts/Anus/
- id: FixingBelt
path: Parts/FixingBelt/
- id: Neck
path: Parts/Neck/
- id: Head
path: Parts/Head/
- id: BaseHair
path: Parts/BaseHair/
- id: MonoEye
path: Parts/MonoEye/
- id: MonoEyelid
path: Parts/MonoEyelid/
- id: EyeLeft
path: Parts/EyeLeft/
- id: DemonicWeakEyelidLeft
path: Parts/DemonicWeakEyelidLeft/
- id: DemonicMidEyelidLeft
path: Parts/DemonicMidEyelidLeft/
- id: DemonicStrongEyelidLeft
path: Parts/DemonicStrongEyelidLeft/
- id: BestialEyelidLeft
path: Parts/BestialEyelidLeft/
- id: AlienEyeLeft
path: Parts/AlienEyeLeft/
- id: NoseSkin
path: Parts/NoseSkin/
- id: EyeScarLeft
path: Parts/EyeScarLeft/
- id: CheekSkinLeft
path: Parts/CheekSkinLeft/
- id: ForeheadEye
path: Parts/ForeheadEye/
- id: ForeheadEyelid
path: Parts/ForeheadEyelid/
- id: CheekEyeLeft
path: Parts/CheekEyeLeft/
- id: CheekEyelidLeft
path: Parts/CheekEyelidLeft/
- id: Blush
path: Parts/Blush/
- id: EyeCornerShadowLeft
path: Parts/EyeCornerShadowLeft/
- id: FaceHighlightLeft
path: Parts/FaceHighlightLeft/
- id: TearLeft
path: Parts/TearLeft/
- id: Blindfold
path: Parts/Blindfold/
- id: NoseDripLeft
path: Parts/NoseDripLeft/
- id: Nose
path: Parts/Nose/
- id: Mouth
path: Parts/Mouth/
- id: Tongue
path: Parts/Tongue/
- id: DroolLeft
path: Parts/DroolLeft/
- id: DroolMouthGashLeft
path: Parts/DroolMouthGashLeft/
- id: BallGag
path: Parts/BallGag/
- id: ChestPlate
path: Parts/ChestPlate/
- id: ChestSkin
path: Parts/ChestSkin/
- id: LeftBreast
path: Parts/LeftBreast/
- id: ChestHair
path: Parts/ChestHair/
- id: SideHairLeft
path: Parts/SideHairLeft/
- id: FrontHair
path: Parts/FrontHair/
- id: MonoEyebrow
path: Parts/MonoEyebrow/
- id: EyebrowLeft
path: Parts/EyebrowLeft/
- id: VeinLeft
path: Parts/VeinLeft/
- id: LactationLeft
path: Parts/LactationLeft/
- id: CapLeft
path: Parts/CapLeft/
- id: UnderwearNippleLeft
path: Parts/UnderwearNippleLeft/
- id: UnderwearBottom
path: Parts/UnderwearBottom/
- id: UnderwearClitoris
path: Parts/UnderwearClitoris/
- id: Pantyhose
path: Parts/Pantyhose/
- id: UnderwearTop
path: Parts/UnderwearTop/
- id: JacketBottomFront
path: Parts/JacketBottomFront/
- id: JacketMid
path: Parts/JacketMid/
- id: JacketTop
path: Parts/JacketTop/
- id: Hat
path: Parts/Hat/
- id: AnusSemenDrip
path: Parts/AnusSemenDrip/
- id: Cough
path: Parts/Cough/
- id: Breath
path: Parts/Breath/
- id: FastenerBack
path: Parts/FastenerBack/
- id: FastenerFront
path: Parts/FastenerFront/
- id: Expression
path: Parts/Expression/
- id: Reaction
path: Parts/Reaction/
- id: SpeechBubble
path: Parts/SpeechBubble/
- id: Shoulder
path: Parts/Shoulder/
- id: QuadrupedSide
path: Parts/QuadrupedSide/
- id: UpperArm
path: Parts/UpperArm/
- id: LowerArm
path: Parts/LowerArm/
- id: Hand
path: Parts/Hand/
- id: 鳥翼UpperArm
path: Parts/鳥翼UpperArm/
- id: 鳥翼LowerArm
path: Parts/鳥翼LowerArm/
- id: BirdWingHand
path: Parts/BirdWingHand/
- id: MembraneBase
path: Parts/MembraneBase/
- id: MembraneTip
path: Parts/MembraneTip/
- id: 獣翼UpperArm
path: Parts/獣翼UpperArm/
- id: 獣翼LowerArm
path: Parts/獣翼LowerArm/
- id: BeastWingHand
path: Parts/BeastWingHand/
- id: 四足UpperArm
path: Parts/四足UpperArm/
- id: 四足LowerArm
path: Parts/四足LowerArm/
- id: QuadrupedHand
path: Parts/QuadrupedHand/
- id: Thigh
path: Parts/Thigh/
- id: Leg
path: Parts/Leg/
- id: Foot
path: Parts/Foot/
- id: QuadrupedThigh
path: Parts/QuadrupedThigh/
- id: QuadrupedLeg
path: Parts/QuadrupedLeg/
- id: QuadrupedFoot
path: Parts/QuadrupedFoot/
- id: Tail
path: Parts/Tail/
- id: Phallus
path: Parts/Phallus/
- id: QuadrupedWaist
path: Parts/QuadrupedWaist/
- id: QuadrupedTorso
path: Parts/QuadrupedTorso/
- id: QuadrupedChest
path: Parts/QuadrupedChest/
- id: QuadrupedVaginaBase
path: Parts/QuadrupedVaginaBase/
- id: QuadrupedInternalSemen
path: Parts/QuadrupedInternalSemen/
- id: QuadrupedCrossSection
path: Parts/QuadrupedCrossSection/
- id: QuadrupedPregnantBelly
path: Parts/QuadrupedPregnantBelly/
- id: QuadrupedAnus
path: Parts/QuadrupedAnus/
- id: QuadrupedFixingBelt
path: Parts/QuadrupedFixingBelt/
- id: MultiLeg
path: Parts/MultiLeg/
- id: MonoLeg
path: Parts/MonoLeg/
- id: QuadrupedFastenerBack
path: Parts/QuadrupedFastenerBack/
- id: QuadrupedFastenerFront
path: Parts/QuadrupedFastenerFront/
- id: QuadrupedAnusSemenDrip
path: Parts/QuadrupedAnusSemenDrip/
- id: Fin
path: Parts/Fin/
- id: Leaf
path: Parts/Leaf/
- id: Horn
path: Parts/Horn/
- id: Ear
path: Parts/Ear/
- id: Plant
path: Parts/Plant/
- id: BeastEar
path: Parts/BeastEar/
- id: InsectJaw
path: Parts/InsectJaw/
- id: Antenna
path: Parts/Antenna/
- id: InsectScythe
path: Parts/InsectScythe/
- id: Forewing
path: Parts/Forewing/
- id: Hindwing
path: Parts/Hindwing/
- id: SegmentLeg
path: Parts/SegmentLeg/
- id: Tentacle
path: Parts/Tentacle/
- id: Tail
path: Parts/Tail/
- id: BackOfHead
path: Parts/BackOfHead/
- id: Forehead
path: Parts/Forehead/
- id: MandibleBase
path: Parts/MandibleBase/
- id: MandibleUpper
path: Parts/MandibleUpper/
- id: Face
path: Parts/Face/
- id: Horn
path: Parts/Horn/
- id: Back
path: Parts/Back/
- id: Genitals
path: Parts/Genitals/
- id: QuadrupedGenitals
path: Parts/QuadrupedGenitals/
- id: Splash
path: Parts/Splash/
- id: Squirting
path: Parts/Squirting/
- id: Urination
path: Parts/Urination/
- id: GenitalsSemenDrip
path: Parts/GenitalsSemenDrip/
- id: QuadrupedSplash
path: Parts/QuadrupedSplash/
- id: QuadrupedSquirting
path: Parts/QuadrupedSquirting/
- id: QuadrupedUrination
path: Parts/QuadrupedUrination/
- id: QuadrupedGenitalsSemenDrip
path: Parts/QuadrupedGenitalsSemenDrip/
- id: Piercing
path: Parts/Piercing/
- id: CapMid
path: Parts/CapMid/
- id: KissMark
path: Parts/KissMark/
- id: WhipMark
path: Parts/WhipMark/
- id: Sweat
path: Parts/Sweat/
- id: Bukkake
path: Parts/Bukkake/
- id: Stain
path: Parts/Stain/
- id: Pressing
path: Parts/Pressing/
- id: Ejaculation
path: Parts/Ejaculation/
- id: PenisCursor
path: Parts/PenisCursor/
- id: HandCursor
path: Parts/HandCursor/
- id: MouthCursor
path: Parts/MouthCursor/
- id: RotoCursor
path: Parts/RotoCursor/
- id: CommonCursor
path: Parts/CommonCursor/
- id: DildoCursor
path: Parts/DildoCursor/
- id: AnalCursor
path: Parts/AnalCursor/
- id: VibratorCursor
path: Parts/VibratorCursor/
- id: DrillCursor
path: Parts/DrillCursor/
- id: PearlCursor
path: Parts/PearlCursor/
- id: FeatherDuster
path: Parts/FeatherDuster/
- id: Whip
path: Parts/Whip/
- id: TRazorCursor
path: Parts/TRazorCursor/
- id: Spot
path: Parts/Spot/
- id: QuadrupedSpot
path: Parts/QuadrupedSpot/
- id: RestraintUpper
path: Parts/RestraintUpper/
- id: RestraintLower
path: Parts/RestraintLower/
- id: Impact
path: Parts/Impact/
- id: BleedingLarge
path: Parts/BleedingLarge/
- id: BleedingMid
path: Parts/BleedingMid/
- id: BleedingSmall
path: Parts/BleedingSmall/
- id: Chain
path: Parts/Chain/
- id: RestraintChain
path: Parts/RestraintChain/

View File

@@ -0,0 +1,38 @@
id: AlienEyeLeft
original_key: エイリアン目左
resource: 胴体
morph_x: 1
morph_y: 5
variants:
- x: 0
y: 0
file: x0y0.svg
- x: 0
y: 1
file: x0y1.svg
- x: 0
y: 2
file: x0y2.svg
- x: 0
y: 3
file: x0y3.svg
- x: 0
y: 4
file: x0y4.svg
fields:
- name:
- name: ハイライト
- name: 瞬膜
joints:
- position: [
0.07201831829563823,
0.07009349303433152
]
- position: [
0.06209512995649251,
0.06384421952947215
]
- position: [
0.06598325895842165,
0.06598325895842165
]

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3257456317518053,0.1130072566562324) rotate(0) scale(1,1) translate(-0.06598325895842165,-0.06598325895842165)"><path d="M 0.07225249357760209 0.06395806119101938 C 0.07281230498998327 0.06461876577724276 0.07279034408124599 0.06958120467438665 0.07311639864828831 0.06890370805321513 C 0.07279034408124599 0.06958120467438665 0.0673734439659124 0.07227214052704257 0.06833983877309427 0.07208802064507759 C 0.0673734439659124 0.07227214052704257 0.060640640915453854 0.0706652437530727 0.06151966096210581 0.07111314663679501 C 0.060640640915453854 0.0706652437530727 0.05766187295101892 0.06597054039799694 0.05779159821327081 0.06671318604040988 C 0.05766187295101892 0.06597054039799694 0.060680213105620086 0.061723237842683396 0.05996295781508314 0.062201398927839685 C 0.060680213105620086 0.061723237842683396 0.06742278967992413 0.06112164154046607 0.06639866169971421 0.06097525301853443 C 0.06742278967992413 0.06112164154046607 0.07281230498998327 0.06461876577724276 0.07225249357760209 0.06395806119101938 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3218575027498762,0.1108682172272829) rotate(0) scale(1,1) translate(-0.01843233998853915,-0.018432339988539152)"><path d="M 0.019976125816828186 0.017712460834256823 C 0.02008003142270541 0.017935287125140274 0.019686646112349514 0.019610756196425713 0.019827666537947028 0.019409358156698694 C 0.019686646112349514 0.019610756196425713 0.018038954678183255 0.020107809059824597 0.018283880709657998 0.02012923731098103 C 0.018038954678183255 0.020107809059824597 0.01678464855437289 0.018929392851938037 0.01688855416025012 0.01915221914282149 C 0.01678464855437289 0.018929392851938037 0.01717803386472879 0.017253923780652602 0.017037013439131277 0.017455321820379618 C 0.01717803386472879 0.017253923780652602 0.018825725298895053 0.016756870917253718 0.01858079926742031 0.016735442666097285 C 0.018825725298895053 0.016756870917253718 0.02008003142270541 0.017935287125140274 0.019976125816828186 0.017712460834256823 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33178069108902186,0.11711749073214227) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.0036332467420611284 -0.0022085217917617484 C 0.0037231079977213593 -0.0021528140715144483 0.004898622236078136 -0.0013975727164722645 0.0047115818099839005 -0.0015400291487941502 C 0.004898622236078136 -0.0013975727164722645 0.006040037522696714 -0.00029679371945024846 0.005877731855191952 -0.0004990446038991199 C 0.006040037522696714 -0.00029679371945024846 0.00675451102365603 0.0011423054809394774 0.006659249820041047 0.0008869814645923064 C 0.00675451102365603 0.0011423054809394774 0.007030674403483338 0.0028494805423438666 0.007020866298571745 0.002564843592266933 C 0.007030674403483338 0.0028494805423438666 0.006665866957422665 0.004563941630887058 0.006776947078980155 0.004302624865515513 C 0.006665866957422665 0.004563941630887058 0.005461642698765965 0.005911905615017252 0.005687904839881863 0.005700644776725474 C 0.005461642698765965 0.005911905615017252 0.003835775337673513 0.006971761790818575 0.004061801385589377 0.006837754925016842 C 0.003835775337673513 0.006971761790818575 0.0028850748381666746 0.007347974853123716 0.0029755922648914976 0.007308727166346264" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0029755922648914976 0.007308727166346264 C 0.0032690077005345626 0.007068140497431296 0.006768533477265647 0.003849716385972744 0.0064965774926082805 0.004421687139366648 C 0.006768533477265647 0.003849716385972744 0.006000453184900976 -0.000107439285307949 0.006239064080779905 0.00044507812561941744 C 0.006000453184900976 -0.000107439285307949 0.0034160952971678932 -0.002429655118210179 0.003633246742061125 -0.0022085217917617484" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3257456317518053,0.1130072566562324) rotate(0) scale(1,1) translate(-0.06598325895842165,-0.06598325895842165)"><path d="M 0.07225249357760209 0.06395806119101938 C 0.07281230498998327 0.06461876577724276 0.07279034408124599 0.06958120467438665 0.07311639864828831 0.06890370805321513 C 0.07279034408124599 0.06958120467438665 0.0673734439659124 0.07227214052704257 0.06833983877309427 0.07208802064507759 C 0.0673734439659124 0.07227214052704257 0.060640640915453854 0.0706652437530727 0.06151966096210581 0.07111314663679501 C 0.060640640915453854 0.0706652437530727 0.05766187295101892 0.06597054039799694 0.05779159821327081 0.06671318604040988 C 0.05766187295101892 0.06597054039799694 0.060680213105620086 0.061723237842683396 0.05996295781508314 0.062201398927839685 C 0.060680213105620086 0.061723237842683396 0.06742278967992413 0.06112164154046607 0.06639866169971421 0.06097525301853443 C 0.06742278967992413 0.06112164154046607 0.07281230498998327 0.06461876577724276 0.07225249357760209 0.06395806119101938 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3218575027498762,0.1108682172272829) rotate(0) scale(1,1) translate(-0.01843233998853915,-0.018432339988539152)"><path d="M 0.019976125816828186 0.017712460834256823 C 0.02008003142270541 0.017935287125140274 0.019686646112349514 0.019610756196425713 0.019827666537947028 0.019409358156698694 C 0.019686646112349514 0.019610756196425713 0.018038954678183255 0.020107809059824597 0.018283880709657998 0.02012923731098103 C 0.018038954678183255 0.020107809059824597 0.01678464855437289 0.018929392851938037 0.01688855416025012 0.01915221914282149 C 0.01678464855437289 0.018929392851938037 0.01717803386472879 0.017253923780652602 0.017037013439131277 0.017455321820379618 C 0.01717803386472879 0.017253923780652602 0.018825725298895053 0.016756870917253718 0.01858079926742031 0.016735442666097285 C 0.018825725298895053 0.016756870917253718 0.02008003142270541 0.017935287125140274 0.019976125816828186 0.017712460834256823 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33178069108902186,0.11711749073214227) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.000866070719990794 -0.0033308719479547048 C 0.0010088838399534626 -0.0032813836219946655 0.0029066119082319618 -0.0025831610764737827 0.002579828159542818 -0.0027370120364342346 C 0.0029066119082319618 -0.0025831610764737827 0.005100320055979746 -0.00124301700127148 0.0047874757042605225 -0.0014846604284292817 C 0.005100320055979746 -0.00124301700127148 0.006521053327182581 0.0005090680359997031 0.006333960380173505 0.00016270908945938638 C 0.006521053327182581 0.0005090680359997031 0.007044147181618427 0.003061724981233923 0.00703259106836943 0.00267164693005452 C 0.007044147181618427 0.003061724981233923 0.006248392997872623 0.00517779809219626 0.00647263373916146 0.004843645703612225 C 0.006248392997872623 0.00517779809219626 0.003961893617329055 0.006912751093718321 0.004341702172903396 0.006681475593062942 C 0.003961893617329055 0.006912751093718321 0.001543237874446191 0.007705610400648698 0.0019149310722693686 0.0076189517114767825 C 0.001543237874446191 0.007705610400648698 -0.0002880784737450758 0.007729915542430023 -0.00011861620097473392 0.007721379863125928" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.00011861620097473392 0.007721379863125928 C 0.00010724683350758538 0.007436168939988709 0.002822122994579674 0.003674314090928706 0.0025917402128130974 0.004298848785479306 C 0.002822122994579674 0.003674314090928706 0.0025021713891556596 -0.00040884653260076935 0.0026459771802241853 0.0002269635285187316 C 0.0025021713891556596 -0.00040884653260076935 0.0007177451816380088 -0.0036273582376608244 0.0008660707199907916 -0.0033308719479547048" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3257456317518053,0.1130072566562324) rotate(0) scale(1,1) translate(-0.06598325895842165,-0.06598325895842165)"><path d="M 0.07225249357760209 0.06395806119101938 C 0.07281230498998327 0.06461876577724276 0.07279034408124599 0.06958120467438665 0.07311639864828831 0.06890370805321513 C 0.07279034408124599 0.06958120467438665 0.0673734439659124 0.07227214052704257 0.06833983877309427 0.07208802064507759 C 0.0673734439659124 0.07227214052704257 0.060640640915453854 0.0706652437530727 0.06151966096210581 0.07111314663679501 C 0.060640640915453854 0.0706652437530727 0.05766187295101892 0.06597054039799694 0.05779159821327081 0.06671318604040988 C 0.05766187295101892 0.06597054039799694 0.060680213105620086 0.061723237842683396 0.05996295781508314 0.062201398927839685 C 0.060680213105620086 0.061723237842683396 0.06742278967992413 0.06112164154046607 0.06639866169971421 0.06097525301853443 C 0.06742278967992413 0.06112164154046607 0.07281230498998327 0.06461876577724276 0.07225249357760209 0.06395806119101938 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3218575027498762,0.1108682172272829) rotate(0) scale(1,1) translate(-0.01843233998853915,-0.018432339988539152)"><path d="M 0.019976125816828186 0.017712460834256823 C 0.02008003142270541 0.017935287125140274 0.019686646112349514 0.019610756196425713 0.019827666537947028 0.019409358156698694 C 0.019686646112349514 0.019610756196425713 0.018038954678183255 0.020107809059824597 0.018283880709657998 0.02012923731098103 C 0.018038954678183255 0.020107809059824597 0.01678464855437289 0.018929392851938037 0.01688855416025012 0.01915221914282149 C 0.01678464855437289 0.018929392851938037 0.01717803386472879 0.017253923780652602 0.017037013439131277 0.017455321820379618 C 0.01717803386472879 0.017253923780652602 0.018825725298895053 0.016756870917253718 0.01858079926742031 0.016735442666097285 C 0.018825725298895053 0.016756870917253718 0.02008003142270541 0.017935287125140274 0.019976125816828186 0.017712460834256823 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33178069108902186,0.11711749073214227) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M -0.002006496722971024 -0.0035574686256632723 C -0.0018191615253345264 -0.003550524817920334 0.0006754112132928298 -0.003381677855995892 0.0002415256486669474 -0.003474142932748013 C 0.0006754112132928298 -0.003381677855995892 0.003680916862425797 -0.002188171409504492 0.003200130052539564 -0.0024478877046378205 C 0.003680916862425797 -0.002188171409504492 0.006331316182770705 7.798077322525906E-05 0.006010967367301743 -0.0003575473911480683 C 0.006331316182770705 7.798077322525906E-05 0.007049093640198103 0.003254654022849601 0.0070443158381671145 0.002778450267842108 C 0.007049093640198103 0.003254654022849601 0.005714284665915449 0.005744084736821075 0.006068300991673601 0.005356897668941852 C 0.005714284665915449 0.005744084736821075 0.0022478666410174616 0.007621224701944581 0.002796119929069283 0.007424695082392786 C 0.0022478666410174616 0.007621224701944581 -0.0009910896310174097 0.007705915050168376 -0.0005107384649482535 0.007715253103563389 C -0.0009910896310174097 0.007705915050168376 -0.003172873696994953 0.0072790872198267385 -0.0029680940637605915 0.007312638441652634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0029680940637605915 0.007312638441652634 C -0.0028301776473623826 0.0070512527741475785 -0.001144681705029665 0.0035673613057390806 -0.0013130970669820864 0.004176010431591963 C -0.001144681705029665 0.0035673613057390806 -0.0010048930249972796 -0.0006356076566865561 -0.0009471097203315345 8.848931418046634E-06 C -0.0010048930249972796 -0.0006356076566865561 -0.0020947789731909855 -0.003854661755420047 -0.0020064967229710276 -0.0035574686256632706" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3257456317518053,0.1130072566562324) rotate(0) scale(1,1) translate(-0.06598325895842165,-0.06598325895842165)"><path d="M 0.07225249357760209 0.06395806119101938 C 0.07281230498998327 0.06461876577724276 0.07279034408124599 0.06958120467438665 0.07311639864828831 0.06890370805321513 C 0.07279034408124599 0.06958120467438665 0.0673734439659124 0.07227214052704257 0.06833983877309427 0.07208802064507759 C 0.0673734439659124 0.07227214052704257 0.060640640915453854 0.0706652437530727 0.06151966096210581 0.07111314663679501 C 0.060640640915453854 0.0706652437530727 0.05766187295101892 0.06597054039799694 0.05779159821327081 0.06671318604040988 C 0.05766187295101892 0.06597054039799694 0.060680213105620086 0.061723237842683396 0.05996295781508314 0.062201398927839685 C 0.060680213105620086 0.061723237842683396 0.06742278967992413 0.06112164154046607 0.06639866169971421 0.06097525301853443 C 0.06742278967992413 0.06112164154046607 0.07281230498998327 0.06461876577724276 0.07225249357760209 0.06395806119101938 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3218575027498762,0.1108682172272829) rotate(0) scale(1,1) translate(-0.01843233998853915,-0.018432339988539152)"><path d="M 0.019976125816828186 0.017712460834256823 C 0.02008003142270541 0.017935287125140274 0.019686646112349514 0.019610756196425713 0.019827666537947028 0.019409358156698694 C 0.019686646112349514 0.019610756196425713 0.018038954678183255 0.020107809059824597 0.018283880709657998 0.02012923731098103 C 0.018038954678183255 0.020107809059824597 0.01678464855437289 0.018929392851938037 0.01688855416025012 0.01915221914282149 C 0.01678464855437289 0.018929392851938037 0.01717803386472879 0.017253923780652602 0.017037013439131277 0.017455321820379618 C 0.01717803386472879 0.017253923780652602 0.018825725298895053 0.016756870917253718 0.01858079926742031 0.016735442666097285 C 0.018825725298895053 0.016756870917253718 0.02008003142270541 0.017935287125140274 0.019976125816828186 0.017712460834256823 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33178069108902186,0.11711749073214227) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M -0.004172020899903828 -0.003208360671025953 C -0.003925737290585952 -0.0032408295866266997 -0.0006868282862814335 -0.0035748588911251656 -0.0012166175880893232 -0.003597987658234914 C -0.0006868282862814335 -0.0035748588911251656 0.0027751083050636827 -0.0026752551524303002 0.0021854507217908496 -0.0029308154657089703 C 0.0027751083050636827 -0.0026752551524303002 0.006265155901699173 -4.659147627931716E-05 0.005859273411184677 -0.0005312638988908727 C 0.006265155901699173 -4.659147627931716E-05 0.0070565528205402085 0.0033921332618793943 0.007056040607964799 0.002885253605629695 C 0.0070565528205402085 0.0033921332618793943 0.005452277518928727 0.005943693896231699 0.005865419962089592 0.005551291976105518 C 0.005452277518928727 0.005943693896231699 0.0014036903383351771 0.007752222041604771 0.0020983312900344185 0.007594076647143864 C 0.0014036903383351771 0.007752222041604771 -0.0030597825176229094 0.007364804999057475 -0.0024702714583013036 0.0074490367096364096 C -0.0030597825176229094 0.007364804999057475 -0.005184595585451814 0.00651115107107667 -0.004975801421824851 0.00658329612019665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.004975801421824851 0.00658329612019665 C -0.004973932839611954 0.006310610478057552 -0.004924460026277239 0.002745425283259352 -0.004953378435270085 0.0033110684145274713 C -0.004924460026277239 0.002745425283259352 -0.00456366738596351 -0.0007477072121502345 -0.004628780513910698 -0.00020442145502078243 C -0.00456366738596351 -0.0007477072121502345 -0.004133957598736592 -0.003458688939026384 -0.004172020899903831 -0.003208360671025953" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3257456317518053,0.1130072566562324) rotate(0) scale(1,1) translate(-0.06598325895842165,-0.06598325895842165)"><path d="M 0.07225249357760209 0.06395806119101938 C 0.07281230498998327 0.06461876577724276 0.07279034408124599 0.06958120467438665 0.07311639864828831 0.06890370805321513 C 0.07279034408124599 0.06958120467438665 0.0673734439659124 0.07227214052704257 0.06833983877309427 0.07208802064507759 C 0.0673734439659124 0.07227214052704257 0.060640640915453854 0.0706652437530727 0.06151966096210581 0.07111314663679501 C 0.060640640915453854 0.0706652437530727 0.05766187295101892 0.06597054039799694 0.05779159821327081 0.06671318604040988 C 0.05766187295101892 0.06597054039799694 0.060680213105620086 0.061723237842683396 0.05996295781508314 0.062201398927839685 C 0.060680213105620086 0.061723237842683396 0.06742278967992413 0.06112164154046607 0.06639866169971421 0.06097525301853443 C 0.06742278967992413 0.06112164154046607 0.07281230498998327 0.06461876577724276 0.07225249357760209 0.06395806119101938 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3218575027498762,0.1108682172272829) rotate(0) scale(1,1) translate(-0.01843233998853915,-0.018432339988539152)"><path d="M 0.019976125816828186 0.017712460834256823 C 0.02008003142270541 0.017935287125140274 0.019686646112349514 0.019610756196425713 0.019827666537947028 0.019409358156698694 C 0.019686646112349514 0.019610756196425713 0.018038954678183255 0.020107809059824597 0.018283880709657998 0.02012923731098103 C 0.018038954678183255 0.020107809059824597 0.01678464855437289 0.018929392851938037 0.01688855416025012 0.01915221914282149 C 0.01678464855437289 0.018929392851938037 0.01717803386472879 0.017253923780652602 0.017037013439131277 0.017455321820379618 C 0.01717803386472879 0.017253923780652602 0.018825725298895053 0.016756870917253718 0.01858079926742031 0.016735442666097285 C 0.018825725298895053 0.016756870917253718 0.02008003142270541 0.017935287125140274 0.019976125816828186 0.017712460834256823 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33178069108902186,0.11711749073214227) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M -0.006373374904638018 -0.0024497159106198303 C -0.006103011811999057 -0.0025384321995608416 -0.0024805516406021934 -0.0035776313841569683 -0.003129017792970479 -0.0035143113779119656 C -0.0024805516406021934 -0.0035776313841569683 0.0021446020277845856 -0.0029754450712866747 0.0014082189237814115 -0.0032095559855598653 C 0.0021446020277845856 -0.0029754450712866747 0.006179208326232701 -0.00018817932921891386 0.005707579455067611 -0.0007049804066336762 C 0.006179208326232701 -0.00018817932921891386 0.007064012000882315 0.0035296125009091875 0.007067765377762484 0.0029920569434172825 C 0.007064012000882315 0.0035296125009091875 0.005208327304798151 0.0061364754170037976 0.005662538932505582 0.005745686283269184 C 0.005208327304798151 0.0061364754170037976 0.000847930432301857 0.0078006659235826115 0.001617225845273306 0.007681526548232649 C 0.000847930432301857 0.0078006659235826115 -0.0042744734870260054 0.006986053642126459 -0.0035690060231518056 0.007175358787468735 C -0.0042744734870260054 0.006986053642126459 -0.00712166519605587 0.005262740305513382 -0.006848383721217095 0.005409864804125333" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.006848383721217095 0.005409864804125333 C -0.006993823394745511 0.005162886603570137 -0.008700734786910245 0.0019596893085539256 -0.008593659803558088 0.0024461263974629804 C -0.008700734786910245 0.0019596893085539256 -0.007948259779866301 -0.0008353671217902242 -0.008133283521442974 -0.0004273802627833235 C -0.007948259779866301 -0.0008353671217902242 -0.006226715853237608 -0.002618243881272871 -0.006373374904638021 -0.0024497159106198286" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -0,0 +1,81 @@
id: AnalCursor
original_key: アナル
resource: カーソル
morph_x: 1
morph_y: 5
variants:
- x: 0
y: 0
file: x0y0.svg
- x: 0
y: 1
file: x0y1.svg
- x: 0
y: 2
file: x0y2.svg
- x: 0
y: 3
file: x0y3.svg
- x: 0
y: 4
file: x0y4.svg
fields:
- name: ヘッド
- name: ユニット
joints:
- position: [
0.13378251699291144,
0.11355214938035088
]
- position: [
0.015096514070287394,
0.008994956633415117
]
- position: [
0.015096514070287394,
0.02583752236359944
]
- position: [
0.015096514070287394,
0.024174770409468336
]
- position: [
0.012973415475779428,
0.011724460486568064
]
- position: [
0.01659846530546976,
0.016050552809990976
]
- position: [
0.01659846530546976,
0.01202250245401227
]
- position: [
0.015096514070287396,
0.015096514070287394
]
- position: [
0.010730129621974588,
0.011361187233872302
]
- position: [
0.010730129621974588,
0.010079949052140581
]
- position: [
0.13378251699291144,
0.11928408161324774
]
- position: [
0.13378251699291144,
0.12654698894011573
]
- position: [
0.13378251699291144,
0.1353153973823115
]
- position: [
0.13378251699291144,
0.14434463610587728
]

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.5097530339487796,0.20630514609350628) rotate(0) scale(1,1) translate(-0.1337825169929114,-0.14905370265981344)"><path d="M 0.13470438795296688 0.11348348398697104 C 0.13484116253349457 0.11362653274585897 0.1356120273615125 0.11513185338742782 0.13542381195924355 0.11476109220650976 C 0.1356120273615125 0.11513185338742782 0.13700009529227514 0.11857336113124728 0.13696297278019443 0.11793261815798767 C 0.13700009529227514 0.11857336113124728 0.13595628063843235 0.12318698417048334 0.13586928210421195 0.12245000788562518 C 0.13595628063843235 0.12318698417048334 0.13800695519083925 0.1275732623678471 0.13800695519083925 0.1267763335762855 C 0.13800695519083925 0.1275732623678471 0.13592040810154174 0.13289128027679273 0.13586928210421195 0.1320131533843644 C 0.13592040810154174 0.13289128027679273 0.13862046715879664 0.1382147467979888 0.13862046715879664 0.1373138562854254 C 0.13862046715879664 0.1382147467979888 0.13560727009114731 0.14396808227243219 0.13586928210421195 0.14282383953512545 C 0.13560727009114731 0.14396808227243219 0.13516127540865353 0.15172984659960456 0.13547632300202103 0.15104476913310616 C 0.13516127540865353 0.15172984659960456 0.13177366339043434 0.1503596916666078 0.13208871098380184 0.15104476913310616 C 0.13177366339043434 0.1503596916666078 0.13143373986854626 0.14167959679781883 0.1316957518816109 0.14282383953512554 C 0.13143373986854626 0.14167959679781883 0.1289445668270262 0.13641296577286213 0.1289445668270262 0.13731385628542556 C 0.1289445668270262 0.13641296577286213 0.13174687787894068 0.13113502649193623 0.1316957518816109 0.13201315338436456 C 0.13174687787894068 0.13113502649193623 0.12955807879498357 0.1259794047847239 0.12955807879498357 0.1267763335762855 C 0.12955807879498357 0.1259794047847239 0.1317827504158313 0.12171303160076703 0.1316957518816109 0.12245000788562518 C 0.1317827504158313 0.12171303160076703 0.13063918371770913 0.11729187518472806 0.13060206120562842 0.11793261815798767 C 0.13063918371770913 0.11729187518472806 0.13232943742884826 0.11439033102559171 0.1321412220265793 0.11476109220650976 C 0.13232943742884826 0.11439033102559171 0.1329974206133836 0.11334043522808311 0.1328606460328559 0.11348348398697104 C 0.1329974206133836 0.11334043522808311 0.13393616215292065 0.11304450709985453 0.1337825169929114 0.11304450709985453 C 0.13393616215292065 0.11304450709985453 0.13484116253349457 0.11362653274585897 0.13470438795296688 0.11348348398697104 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g id="ユニット">
<g transform="translate(0.5097530339487796,0.21240670353037858) rotate(0) scale(1,1) translate(-0.015096514070287396,-0.015096514070287394)"><path d="M 0.01963528837722331 0.011008981811404472 C 0.01963528837722331 0.011349609499644716 0.01963528837722331 0.01633222578297031 0.01963528837722331 0.015096514070287394 C 0.01963528837722331 0.01633222578297031 0.01963528837722331 0.02673260638804211 0.01963528837722331 0.02583752236359944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01963528837722331 0.02583752236359944 C 0.01952450702587112 0.026078382511814012 0.01792768096875239 0.029068471830414562 0.01830591216099705 0.02872784414217432 C 0.01792768096875239 0.029068471830414562 0.014561614388502453 0.02992505462248236 0.015096514070287396 0.02992505462248236 C 0.014561614388502453 0.02992505462248236 0.01150888478733308 0.028387216453934078 0.011887115979577739 0.02872784414217432 C 0.01150888478733308 0.028387216453934078 0.010446958411999292 0.025596662215384876 0.01055773976335148 0.025837522363599447" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01055773976335148 0.025837522363599447 C 0.01055773976335148 0.024942438339156776 0.010557739763351481 0.01386080235760448 0.010557739763351481 0.015096514070287394 C 0.010557739763351481 0.01386080235760448 0.01055773976335148 0.010668354123164232 0.01055773976335148 0.011008981811404476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01055773976335148 0.011008981811404476 C 0.010668521114703667 0.010768121663189903 0.012265347171822392 0.0077780323445893525 0.011887115979577733 0.008118660032829596 C 0.012265347171822392 0.0077780323445893525 0.015631413752072335 0.006921449552521554 0.01509651407028739 0.006921449552521554 C 0.015631413752072335 0.006921449552521554 0.01868414335324171 0.008459287721069837 0.01830591216099705 0.008118660032829593 C 0.01868414335324171 0.008459287721069837 0.019746069728575497 0.011249841959619046 0.01963528837722331 0.011008981811404472" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5097530339487796,0.2214849598695595) rotate(0) scale(1,1) translate(-0.015096514070287394,-0.025837522363599444)"><path d="M 0.01055773976335148 0.025837522363599486 C 0.010668521114703667 0.025596662215384914 0.012265347171822398 0.0226065728967844 0.011887115979577739 0.02294720058502464 C 0.012265347171822398 0.0226065728967844 0.01563141375207234 0.021749990104716566 0.015096514070287396 0.021749990104716566 C 0.01563141375207234 0.021749990104716566 0.01868414335324171 0.023287828273264883 0.01830591216099705 0.02294720058502464 C 0.01868414335324171 0.023287828273264883 0.019746069728575497 0.026078382511814057 0.01963528837722331 0.025837522363599486" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5097530339487796,0.22314771182369061) rotate(0) scale(1,1) translate(-0.015096514070287394,-0.025837522363599444)"><path d="M 0.01055773976335148 0.025837522363599486 C 0.010668521114703667 0.025596662215384914 0.012265347171822398 0.0226065728967844 0.011887115979577739 0.02294720058502464 C 0.012265347171822398 0.0226065728967844 0.01563141375207234 0.021749990104716566 0.015096514070287396 0.021749990104716566 C 0.01563141375207234 0.021749990104716566 0.01868414335324171 0.023287828273264883 0.01830591216099705 0.02294720058502464 C 0.01868414335324171 0.023287828273264883 0.019746069728575497 0.026078382511814057 0.01963528837722331 0.025837522363599486" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5112549851839616,0.20933269191410353) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027442367311398805 0.025765125796155128 C 0.02753097802076402 0.0259186040468704 0.02735375660203359 0.02714643005259259 0.027442367311398805 0.026992951801877316 C 0.02735375660203359 0.02714643005259259 0.026201817380285777 0.027606864804738413 0.02637903879901621 0.027606864804738413 C 0.026201817380285777 0.027606864804738413 0.025227099577268403 0.026839473551162042 0.025315710286633618 0.026992951801877316 C 0.025227099577268403 0.026839473551162042 0.025404320995998833 0.025611647545439854 0.025315710286633618 0.025765125796155128 C 0.025404320995998833 0.025611647545439854 0.026556260217746645 0.025151212793294034 0.02637903879901621 0.025151212793294034 C 0.026556260217746645 0.025151212793294034 0.02753097802076402 0.0259186040468704 0.027442367311398805 0.025765125796155128 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5112549851839616,0.21336074227008214) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027442367311398805 0.025765125796155128 C 0.02753097802076402 0.0259186040468704 0.02735375660203359 0.02714643005259259 0.027442367311398805 0.026992951801877316 C 0.02735375660203359 0.02714643005259259 0.026201817380285777 0.027606864804738413 0.02637903879901621 0.027606864804738413 C 0.026201817380285777 0.027606864804738413 0.025227099577268403 0.026839473551162042 0.025315710286633618 0.026992951801877316 C 0.025227099577268403 0.026839473551162042 0.025404320995998833 0.025611647545439854 0.025315710286633618 0.025765125796155128 C 0.025404320995998833 0.025611647545439854 0.026556260217746645 0.025151212793294034 0.02637903879901621 0.025151212793294034 C 0.026556260217746645 0.025151212793294034 0.02753097802076402 0.0259186040468704 0.027442367311398805 0.025765125796155128 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.20903464994665932) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.01073012962197459)"><path d="M 0.011384977632547637 0.010099072010076876 C 0.011384977632547637 0.010151660144401685 0.011384977632547637 0.010835305890624208 0.011384977632547637 0.01073012962197459 C 0.011384977632547637 0.010835305890624208 0.011384977632547637 0.011413775368197111 0.011384977632547637 0.011361187233872302" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.011361187233872302 C 0.011330406964999883 0.011361187233872302 0.010620988286879079 0.011361187233872302 0.010730129621974588 0.011361187233872302 C 0.010620988286879079 0.011361187233872302 0.010020710943853785 0.011361187233872303 0.010075281611401539 0.011361187233872303" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.011361187233872303 C 0.010075281611401539 0.011308599099547494 0.010075281611401539 0.010624953353324971 0.010075281611401539 0.01073012962197459 C 0.010075281611401539 0.010624953353324971 0.010075281611401539 0.010046483875752067 0.010075281611401539 0.010099072010076876" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010099072010076876 C 0.010129852278949292 0.010099072010076876 0.010839270957070097 0.010099072010076876 0.010730129621974588 0.010099072010076876 C 0.010839270957070097 0.010099072010076876 0.01143954830009539 0.010099072010076876 0.011384977632547637 0.010099072010076876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.20966570755855704) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.21092782278235248) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.2121899380061479) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.21345205322994334) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.5097530339487796,0.20630514609350628) rotate(0) scale(1,1) translate(-0.1337825169929114,-0.14905370265981344)"><path d="M 0.13539161533708885 0.1177520883159161 C 0.13561072035991537 0.11782763103863779 0.136512506435944 0.11853852668976146 0.13641177726682963 0.11839426767215547 C 0.136512506435944 0.11853852668976146 0.13655700433257503 0.1198334921571038 0.13660036536646156 0.119483196527188 C 0.13655700433257503 0.1198334921571038 0.13600866067888956 0.1232055766519032 0.13589144486019142 0.12259781523114507 C 0.13600866067888956 0.1232055766519032 0.13800510829450763 0.1275609450890538 0.13800695519083925 0.1267763335762855 C 0.13800510829450763 0.1275609450890538 0.13592040810154174 0.13289128027679273 0.13586928210421195 0.1320131533843644 C 0.13592040810154174 0.13289128027679273 0.13862046715879664 0.1382147467979888 0.13862046715879664 0.1373138562854254 C 0.13862046715879664 0.1382147467979888 0.13560727009114731 0.14396808227243219 0.13586928210421195 0.14282383953512545 C 0.13560727009114731 0.14396808227243219 0.13516127540865353 0.15172984659960456 0.13547632300202103 0.15104476913310616 C 0.13516127540865353 0.15172984659960456 0.13177366339043434 0.1503596916666078 0.13208871098380184 0.15104476913310616 C 0.13177366339043434 0.1503596916666078 0.13143373986854626 0.14167959679781883 0.1316957518816109 0.14282383953512554 C 0.13143373986854626 0.14167959679781883 0.1289445668270262 0.13641296577286213 0.1289445668270262 0.13731385628542556 C 0.1289445668270262 0.13641296577286213 0.13174687787894068 0.13113502649193623 0.1316957518816109 0.13201315338436456 C 0.13174687787894068 0.13113502649193623 0.12955623189865195 0.12599172206351722 0.12955807879498357 0.1267763335762855 C 0.12955623189865195 0.12599172206351722 0.13179080494432957 0.12199005381038695 0.13167358912563143 0.12259781523114507 C 0.13179080494432957 0.12199005381038695 0.13092130758547477 0.1191329008972722 0.1309646686193613 0.119483196527188 C 0.13092130758547477 0.1191329008972722 0.1312539858881076 0.11825000865454947 0.13115325671899322 0.11839426767215547 C 0.1312539858881076 0.11825000865454947 0.13239252367156049 0.11767654559319442 0.13217341864873397 0.1177520883159161 C 0.13239252367156049 0.11767654559319442 0.1340507000502743 0.11748775499949521 0.1337825169929114 0.11748775499949521 C 0.1340507000502743 0.11748775499949521 0.13561072035991537 0.11782763103863779 0.13539161533708885 0.1177520883159161 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g id="ユニット">
<g transform="translate(0.5097530339487796,0.21240670353037858) rotate(0) scale(1,1) translate(-0.015096514070287396,-0.015096514070287394)"><path d="M 0.01963528837722331 0.011008981811404472 C 0.01963528837722331 0.011349609499644716 0.01963528837722331 0.01633222578297031 0.01963528837722331 0.015096514070287394 C 0.01963528837722331 0.01633222578297031 0.01963528837722331 0.02673260638804211 0.01963528837722331 0.02583752236359944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01963528837722331 0.02583752236359944 C 0.01952450702587112 0.026078382511814012 0.01792768096875239 0.029068471830414562 0.01830591216099705 0.02872784414217432 C 0.01792768096875239 0.029068471830414562 0.014561614388502453 0.02992505462248236 0.015096514070287396 0.02992505462248236 C 0.014561614388502453 0.02992505462248236 0.01150888478733308 0.028387216453934078 0.011887115979577739 0.02872784414217432 C 0.01150888478733308 0.028387216453934078 0.010446958411999292 0.025596662215384876 0.01055773976335148 0.025837522363599447" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01055773976335148 0.025837522363599447 C 0.01055773976335148 0.024942438339156776 0.010557739763351481 0.01386080235760448 0.010557739763351481 0.015096514070287394 C 0.010557739763351481 0.01386080235760448 0.01055773976335148 0.010668354123164232 0.01055773976335148 0.011008981811404476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01055773976335148 0.011008981811404476 C 0.010668521114703667 0.010768121663189903 0.012265347171822392 0.0077780323445893525 0.011887115979577733 0.008118660032829596 C 0.012265347171822392 0.0077780323445893525 0.015631413752072335 0.006921449552521554 0.01509651407028739 0.006921449552521554 C 0.015631413752072335 0.006921449552521554 0.01868414335324171 0.008459287721069837 0.01830591216099705 0.008118660032829593 C 0.01868414335324171 0.008459287721069837 0.019746069728575497 0.011249841959619046 0.01963528837722331 0.011008981811404472" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5097530339487796,0.2214849598695595) rotate(0) scale(1,1) translate(-0.015096514070287394,-0.025837522363599444)"><path d="M 0.01055773976335148 0.025837522363599486 C 0.010668521114703667 0.025596662215384914 0.012265347171822398 0.0226065728967844 0.011887115979577739 0.02294720058502464 C 0.012265347171822398 0.0226065728967844 0.01563141375207234 0.021749990104716566 0.015096514070287396 0.021749990104716566 C 0.01563141375207234 0.021749990104716566 0.01868414335324171 0.023287828273264883 0.01830591216099705 0.02294720058502464 C 0.01868414335324171 0.023287828273264883 0.019746069728575497 0.026078382511814057 0.01963528837722331 0.025837522363599486" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5097530339487796,0.22314771182369061) rotate(0) scale(1,1) translate(-0.015096514070287394,-0.025837522363599444)"><path d="M 0.01055773976335148 0.025837522363599486 C 0.010668521114703667 0.025596662215384914 0.012265347171822398 0.0226065728967844 0.011887115979577739 0.02294720058502464 C 0.012265347171822398 0.0226065728967844 0.01563141375207234 0.021749990104716566 0.015096514070287396 0.021749990104716566 C 0.01563141375207234 0.021749990104716566 0.01868414335324171 0.023287828273264883 0.01830591216099705 0.02294720058502464 C 0.01868414335324171 0.023287828273264883 0.019746069728575497 0.026078382511814057 0.01963528837722331 0.025837522363599486" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5112549851839616,0.20933269191410353) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027442367311398805 0.025765125796155128 C 0.02753097802076402 0.0259186040468704 0.02735375660203359 0.02714643005259259 0.027442367311398805 0.026992951801877316 C 0.02735375660203359 0.02714643005259259 0.026201817380285777 0.027606864804738413 0.02637903879901621 0.027606864804738413 C 0.026201817380285777 0.027606864804738413 0.025227099577268403 0.026839473551162042 0.025315710286633618 0.026992951801877316 C 0.025227099577268403 0.026839473551162042 0.025404320995998833 0.025611647545439854 0.025315710286633618 0.025765125796155128 C 0.025404320995998833 0.025611647545439854 0.026556260217746645 0.025151212793294034 0.02637903879901621 0.025151212793294034 C 0.026556260217746645 0.025151212793294034 0.02753097802076402 0.0259186040468704 0.027442367311398805 0.025765125796155128 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5112549851839616,0.21336074227008214) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027442367311398805 0.025765125796155128 C 0.02753097802076402 0.0259186040468704 0.02735375660203359 0.02714643005259259 0.027442367311398805 0.026992951801877316 C 0.02735375660203359 0.02714643005259259 0.026201817380285777 0.027606864804738413 0.02637903879901621 0.027606864804738413 C 0.026201817380285777 0.027606864804738413 0.025227099577268403 0.026839473551162042 0.025315710286633618 0.026992951801877316 C 0.025227099577268403 0.026839473551162042 0.025404320995998833 0.025611647545439854 0.025315710286633618 0.025765125796155128 C 0.025404320995998833 0.025611647545439854 0.026556260217746645 0.025151212793294034 0.02637903879901621 0.025151212793294034 C 0.026556260217746645 0.025151212793294034 0.02753097802076402 0.0259186040468704 0.027442367311398805 0.025765125796155128 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.20903464994665932) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.01073012962197459)"><path d="M 0.011384977632547637 0.010099072010076876 C 0.011384977632547637 0.010151660144401685 0.011384977632547637 0.010835305890624208 0.011384977632547637 0.01073012962197459 C 0.011384977632547637 0.010835305890624208 0.011384977632547637 0.011413775368197111 0.011384977632547637 0.011361187233872302" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.011361187233872302 C 0.011330406964999883 0.011361187233872302 0.010620988286879079 0.011361187233872302 0.010730129621974588 0.011361187233872302 C 0.010620988286879079 0.011361187233872302 0.010020710943853785 0.011361187233872303 0.010075281611401539 0.011361187233872303" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.011361187233872303 C 0.010075281611401539 0.011308599099547494 0.010075281611401539 0.010624953353324971 0.010075281611401539 0.01073012962197459 C 0.010075281611401539 0.010624953353324971 0.010075281611401539 0.010046483875752067 0.010075281611401539 0.010099072010076876" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010099072010076876 C 0.010129852278949292 0.010099072010076876 0.010839270957070097 0.010099072010076876 0.010730129621974588 0.010099072010076876 C 0.010839270957070097 0.010099072010076876 0.01143954830009539 0.010099072010076876 0.011384977632547637 0.010099072010076876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.20966570755855704) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.21092782278235248) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.2121899380061479) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.21345205322994334) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.5097530339487796,0.20630514609350628) rotate(0) scale(1,1) translate(-0.1337825169929114,-0.14905370265981344)"><path d="M 0.13505853038214996 0.12485295096107019 C 0.13526033539979798 0.12489269668280621 0.13638585785260754 0.12528794637127308 0.1362041772046878 0.12520909107474798 C 0.13638585785260754 0.12528794637127308 0.13737738815802808 0.1259284129448579 0.13723869815718684 0.12579921451937148 C 0.13737738815802808 0.1259284129448579 0.1379069636708949 0.1269398966147222 0.1378684572147828 0.1267594721805849 C 0.1379069636708949 0.1269398966147222 0.13753538342811758 0.1284177889010669 0.13770077563053185 0.127964307729019 C 0.13753538342811758 0.1284177889010669 0.13596039174650032 0.13298037529152673 0.13588375078581158 0.13220124624515953 C 0.13596039174650032 0.13298037529152673 0.13861926143533002 0.13819907239292256 0.13862046715879664 0.1373138562854254 C 0.13861926143533002 0.13819907239292256 0.13560727009114731 0.14396808227243219 0.13586928210421195 0.14282383953512545 C 0.13560727009114731 0.14396808227243219 0.13516127540865353 0.15172984659960456 0.13547632300202103 0.15104476913310616 C 0.13516127540865353 0.15172984659960456 0.13177366339043434 0.1503596916666078 0.13208871098380184 0.15104476913310616 C 0.13177366339043434 0.1503596916666078 0.13143373986854626 0.14167959679781883 0.1316957518816109 0.14282383953512554 C 0.13143373986854626 0.14167959679781883 0.12894336110355958 0.1364286401779284 0.1289445668270262 0.13731385628542556 C 0.12894336110355958 0.1364286401779284 0.1317579241607 0.1314221171987925 0.13168128320001127 0.1322012462451597 C 0.1317579241607 0.1314221171987925 0.1296988661528767 0.1275108265569711 0.12986425835529097 0.127964307729019 C 0.1296988661528767 0.1275108265569711 0.12973508322715213 0.1265790477464476 0.12969657677104005 0.1267594721805849 C 0.12973508322715213 0.1265790477464476 0.13046502582947725 0.12567001609388506 0.130326335828636 0.12579921451937148 C 0.13046502582947725 0.12567001609388506 0.13154253742905478 0.12513023577822288 0.13136085678113504 0.12520909107474798 C 0.13154253742905478 0.12513023577822288 0.13270830862132088 0.12481320523933416 0.13250650360367286 0.12485295096107019 C 0.13270830862132088 0.12481320523933416 0.13399518589111784 0.1247321424139157 0.1337825169929114 0.1247321424139157 C 0.13399518589111784 0.1247321424139157 0.13526033539979798 0.12489269668280621 0.13505853038214996 0.12485295096107019 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g id="ユニット">
<g transform="translate(0.5097530339487796,0.21240670353037858) rotate(0) scale(1,1) translate(-0.015096514070287396,-0.015096514070287394)"><path d="M 0.01963528837722331 0.011008981811404472 C 0.01963528837722331 0.011349609499644716 0.01963528837722331 0.01633222578297031 0.01963528837722331 0.015096514070287394 C 0.01963528837722331 0.01633222578297031 0.01963528837722331 0.02673260638804211 0.01963528837722331 0.02583752236359944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01963528837722331 0.02583752236359944 C 0.01952450702587112 0.026078382511814012 0.01792768096875239 0.029068471830414562 0.01830591216099705 0.02872784414217432 C 0.01792768096875239 0.029068471830414562 0.014561614388502453 0.02992505462248236 0.015096514070287396 0.02992505462248236 C 0.014561614388502453 0.02992505462248236 0.01150888478733308 0.028387216453934078 0.011887115979577739 0.02872784414217432 C 0.01150888478733308 0.028387216453934078 0.010446958411999292 0.025596662215384876 0.01055773976335148 0.025837522363599447" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01055773976335148 0.025837522363599447 C 0.01055773976335148 0.024942438339156776 0.010557739763351481 0.01386080235760448 0.010557739763351481 0.015096514070287394 C 0.010557739763351481 0.01386080235760448 0.01055773976335148 0.010668354123164232 0.01055773976335148 0.011008981811404476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01055773976335148 0.011008981811404476 C 0.010668521114703667 0.010768121663189903 0.012265347171822392 0.0077780323445893525 0.011887115979577733 0.008118660032829596 C 0.012265347171822392 0.0077780323445893525 0.015631413752072335 0.006921449552521554 0.01509651407028739 0.006921449552521554 C 0.015631413752072335 0.006921449552521554 0.01868414335324171 0.008459287721069837 0.01830591216099705 0.008118660032829593 C 0.01868414335324171 0.008459287721069837 0.019746069728575497 0.011249841959619046 0.01963528837722331 0.011008981811404472" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5097530339487796,0.2214849598695595) rotate(0) scale(1,1) translate(-0.015096514070287394,-0.025837522363599444)"><path d="M 0.01055773976335148 0.025837522363599486 C 0.010668521114703667 0.025596662215384914 0.012265347171822398 0.0226065728967844 0.011887115979577739 0.02294720058502464 C 0.012265347171822398 0.0226065728967844 0.01563141375207234 0.021749990104716566 0.015096514070287396 0.021749990104716566 C 0.01563141375207234 0.021749990104716566 0.01868414335324171 0.023287828273264883 0.01830591216099705 0.02294720058502464 C 0.01868414335324171 0.023287828273264883 0.019746069728575497 0.026078382511814057 0.01963528837722331 0.025837522363599486" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5097530339487796,0.22314771182369061) rotate(0) scale(1,1) translate(-0.015096514070287394,-0.025837522363599444)"><path d="M 0.01055773976335148 0.025837522363599486 C 0.010668521114703667 0.025596662215384914 0.012265347171822398 0.0226065728967844 0.011887115979577739 0.02294720058502464 C 0.012265347171822398 0.0226065728967844 0.01563141375207234 0.021749990104716566 0.015096514070287396 0.021749990104716566 C 0.01563141375207234 0.021749990104716566 0.01868414335324171 0.023287828273264883 0.01830591216099705 0.02294720058502464 C 0.01868414335324171 0.023287828273264883 0.019746069728575497 0.026078382511814057 0.01963528837722331 0.025837522363599486" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5112549851839616,0.20933269191410353) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027442367311398805 0.025765125796155128 C 0.02753097802076402 0.0259186040468704 0.02735375660203359 0.02714643005259259 0.027442367311398805 0.026992951801877316 C 0.02735375660203359 0.02714643005259259 0.026201817380285777 0.027606864804738413 0.02637903879901621 0.027606864804738413 C 0.026201817380285777 0.027606864804738413 0.025227099577268403 0.026839473551162042 0.025315710286633618 0.026992951801877316 C 0.025227099577268403 0.026839473551162042 0.025404320995998833 0.025611647545439854 0.025315710286633618 0.025765125796155128 C 0.025404320995998833 0.025611647545439854 0.026556260217746645 0.025151212793294034 0.02637903879901621 0.025151212793294034 C 0.026556260217746645 0.025151212793294034 0.02753097802076402 0.0259186040468704 0.027442367311398805 0.025765125796155128 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5112549851839616,0.21336074227008214) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027442367311398805 0.025765125796155128 C 0.02753097802076402 0.0259186040468704 0.02735375660203359 0.02714643005259259 0.027442367311398805 0.026992951801877316 C 0.02735375660203359 0.02714643005259259 0.026201817380285777 0.027606864804738413 0.02637903879901621 0.027606864804738413 C 0.026201817380285777 0.027606864804738413 0.025227099577268403 0.026839473551162042 0.025315710286633618 0.026992951801877316 C 0.025227099577268403 0.026839473551162042 0.025404320995998833 0.025611647545439854 0.025315710286633618 0.025765125796155128 C 0.025404320995998833 0.025611647545439854 0.026556260217746645 0.025151212793294034 0.02637903879901621 0.025151212793294034 C 0.026556260217746645 0.025151212793294034 0.02753097802076402 0.0259186040468704 0.027442367311398805 0.025765125796155128 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.20903464994665932) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.01073012962197459)"><path d="M 0.011384977632547637 0.010099072010076876 C 0.011384977632547637 0.010151660144401685 0.011384977632547637 0.010835305890624208 0.011384977632547637 0.01073012962197459 C 0.011384977632547637 0.010835305890624208 0.011384977632547637 0.011413775368197111 0.011384977632547637 0.011361187233872302" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.011361187233872302 C 0.011330406964999883 0.011361187233872302 0.010620988286879079 0.011361187233872302 0.010730129621974588 0.011361187233872302 C 0.010620988286879079 0.011361187233872302 0.010020710943853785 0.011361187233872303 0.010075281611401539 0.011361187233872303" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.011361187233872303 C 0.010075281611401539 0.011308599099547494 0.010075281611401539 0.010624953353324971 0.010075281611401539 0.01073012962197459 C 0.010075281611401539 0.010624953353324971 0.010075281611401539 0.010046483875752067 0.010075281611401539 0.010099072010076876" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010099072010076876 C 0.010129852278949292 0.010099072010076876 0.010839270957070097 0.010099072010076876 0.010730129621974588 0.010099072010076876 C 0.010839270957070097 0.010099072010076876 0.01143954830009539 0.010099072010076876 0.011384977632547637 0.010099072010076876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.20966570755855704) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.21092782278235248) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.2121899380061479) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.21345205322994334) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.5097530339487796,0.20630514609350628) rotate(0) scale(1,1) translate(-0.1337825169929114,-0.14905370265981344)"><path d="M 0.13505853038214996 0.13362135940326594 C 0.13526493106887788 0.13366570079408188 0.13644866533003286 0.13412835362905398 0.13625932523364662 0.13403264754590258 C 0.13644866533003286 0.13412835362905398 0.13748876847031347 0.13492134292495445 0.13733061153878487 0.1347698324010829 C 0.13748876847031347 0.13492134292495445 0.13826665905729152 0.13605838470553233 0.1381572084119899 0.13585077383236108 C 0.13826665905729152 0.13605838470553233 0.1386461324129778 0.1375071984513858 0.1386440192824043 0.13726116287913784 C 0.1386461324129778 0.1375071984513858 0.1379989211842792 0.1391507351078264 0.13818256597887194 0.1388032006993365 C 0.1379989211842792 0.1391507351078264 0.13623525297352337 0.14186773373709036 0.13644028174729145 0.14143157578101678 C 0.13623525297352337 0.14186773373709036 0.13564189079821592 0.1448381956182268 0.13572222069365514 0.14403709617221935 C 0.13564189079821592 0.1448381956182268 0.13517353052619993 0.15162874187984673 0.13547632300202103 0.15104476913310616 C 0.13517353052619993 0.15162874187984673 0.13178591850798074 0.15046079638636561 0.13208871098380184 0.15104476913310616 C 0.13178591850798074 0.15046079638636561 0.1317624833967285 0.143235996726212 0.1318428132921677 0.14403709617221944 C 0.1317624833967285 0.143235996726212 0.13091972346476333 0.14099541782494338 0.1311247522385314 0.14143157578101695 C 0.13091972346476333 0.14099541782494338 0.12919882321235818 0.1384556662908467 0.1293824680069509 0.13880320069933663 C 0.12919882321235818 0.1384556662908467 0.128923127833992 0.13701512730688986 0.12892101470341852 0.13726116287913784 C 0.128923127833992 0.13701512730688986 0.12951727621913459 0.13564316295918982 0.12940782557383296 0.13585077383236108 C 0.12951727621913459 0.13564316295918982 0.13039257937856658 0.13461832187721134 0.13023442244703798 0.1347698324010829 C 0.13039257937856658 0.13461832187721134 0.13149504884856247 0.13393694146275117 0.13130570875217623 0.13403264754590258 C 0.13149504884856247 0.13393694146275117 0.13271290429040078 0.13357701801245 0.13250650360367286 0.13362135940326594 C 0.13271290429040078 0.13357701801245 0.13399518589111784 0.13350055085611146 0.1337825169929114 0.13350055085611146 C 0.13399518589111784 0.13350055085611146 0.13526493106887788 0.13366570079408188 0.13505853038214996 0.13362135940326594 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g id="ユニット">
<g transform="translate(0.5097530339487796,0.21240670353037858) rotate(0) scale(1,1) translate(-0.015096514070287396,-0.015096514070287394)"><path d="M 0.01963528837722331 0.011008981811404472 C 0.01963528837722331 0.011349609499644716 0.01963528837722331 0.01633222578297031 0.01963528837722331 0.015096514070287394 C 0.01963528837722331 0.01633222578297031 0.01963528837722331 0.02673260638804211 0.01963528837722331 0.02583752236359944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01963528837722331 0.02583752236359944 C 0.01952450702587112 0.026078382511814012 0.01792768096875239 0.029068471830414562 0.01830591216099705 0.02872784414217432 C 0.01792768096875239 0.029068471830414562 0.014561614388502453 0.02992505462248236 0.015096514070287396 0.02992505462248236 C 0.014561614388502453 0.02992505462248236 0.01150888478733308 0.028387216453934078 0.011887115979577739 0.02872784414217432 C 0.01150888478733308 0.028387216453934078 0.010446958411999292 0.025596662215384876 0.01055773976335148 0.025837522363599447" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01055773976335148 0.025837522363599447 C 0.01055773976335148 0.024942438339156776 0.010557739763351481 0.01386080235760448 0.010557739763351481 0.015096514070287394 C 0.010557739763351481 0.01386080235760448 0.01055773976335148 0.010668354123164232 0.01055773976335148 0.011008981811404476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01055773976335148 0.011008981811404476 C 0.010668521114703667 0.010768121663189903 0.012265347171822392 0.0077780323445893525 0.011887115979577733 0.008118660032829596 C 0.012265347171822392 0.0077780323445893525 0.015631413752072335 0.006921449552521554 0.01509651407028739 0.006921449552521554 C 0.015631413752072335 0.006921449552521554 0.01868414335324171 0.008459287721069837 0.01830591216099705 0.008118660032829593 C 0.01868414335324171 0.008459287721069837 0.019746069728575497 0.011249841959619046 0.01963528837722331 0.011008981811404472" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5097530339487796,0.2214849598695595) rotate(0) scale(1,1) translate(-0.015096514070287394,-0.025837522363599444)"><path d="M 0.01055773976335148 0.025837522363599486 C 0.010668521114703667 0.025596662215384914 0.012265347171822398 0.0226065728967844 0.011887115979577739 0.02294720058502464 C 0.012265347171822398 0.0226065728967844 0.01563141375207234 0.021749990104716566 0.015096514070287396 0.021749990104716566 C 0.01563141375207234 0.021749990104716566 0.01868414335324171 0.023287828273264883 0.01830591216099705 0.02294720058502464 C 0.01868414335324171 0.023287828273264883 0.019746069728575497 0.026078382511814057 0.01963528837722331 0.025837522363599486" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5097530339487796,0.22314771182369061) rotate(0) scale(1,1) translate(-0.015096514070287394,-0.025837522363599444)"><path d="M 0.01055773976335148 0.025837522363599486 C 0.010668521114703667 0.025596662215384914 0.012265347171822398 0.0226065728967844 0.011887115979577739 0.02294720058502464 C 0.012265347171822398 0.0226065728967844 0.01563141375207234 0.021749990104716566 0.015096514070287396 0.021749990104716566 C 0.01563141375207234 0.021749990104716566 0.01868414335324171 0.023287828273264883 0.01830591216099705 0.02294720058502464 C 0.01868414335324171 0.023287828273264883 0.019746069728575497 0.026078382511814057 0.01963528837722331 0.025837522363599486" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5112549851839616,0.20933269191410353) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027442367311398805 0.025765125796155128 C 0.02753097802076402 0.0259186040468704 0.02735375660203359 0.02714643005259259 0.027442367311398805 0.026992951801877316 C 0.02735375660203359 0.02714643005259259 0.026201817380285777 0.027606864804738413 0.02637903879901621 0.027606864804738413 C 0.026201817380285777 0.027606864804738413 0.025227099577268403 0.026839473551162042 0.025315710286633618 0.026992951801877316 C 0.025227099577268403 0.026839473551162042 0.025404320995998833 0.025611647545439854 0.025315710286633618 0.025765125796155128 C 0.025404320995998833 0.025611647545439854 0.026556260217746645 0.025151212793294034 0.02637903879901621 0.025151212793294034 C 0.026556260217746645 0.025151212793294034 0.02753097802076402 0.0259186040468704 0.027442367311398805 0.025765125796155128 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5112549851839616,0.21336074227008214) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027442367311398805 0.025765125796155128 C 0.02753097802076402 0.0259186040468704 0.02735375660203359 0.02714643005259259 0.027442367311398805 0.026992951801877316 C 0.02735375660203359 0.02714643005259259 0.026201817380285777 0.027606864804738413 0.02637903879901621 0.027606864804738413 C 0.026201817380285777 0.027606864804738413 0.025227099577268403 0.026839473551162042 0.025315710286633618 0.026992951801877316 C 0.025227099577268403 0.026839473551162042 0.025404320995998833 0.025611647545439854 0.025315710286633618 0.025765125796155128 C 0.025404320995998833 0.025611647545439854 0.026556260217746645 0.025151212793294034 0.02637903879901621 0.025151212793294034 C 0.026556260217746645 0.025151212793294034 0.02753097802076402 0.0259186040468704 0.027442367311398805 0.025765125796155128 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.20903464994665932) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.01073012962197459)"><path d="M 0.011384977632547637 0.010099072010076876 C 0.011384977632547637 0.010151660144401685 0.011384977632547637 0.010835305890624208 0.011384977632547637 0.01073012962197459 C 0.011384977632547637 0.010835305890624208 0.011384977632547637 0.011413775368197111 0.011384977632547637 0.011361187233872302" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.011361187233872302 C 0.011330406964999883 0.011361187233872302 0.010620988286879079 0.011361187233872302 0.010730129621974588 0.011361187233872302 C 0.010620988286879079 0.011361187233872302 0.010020710943853785 0.011361187233872303 0.010075281611401539 0.011361187233872303" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.011361187233872303 C 0.010075281611401539 0.011308599099547494 0.010075281611401539 0.010624953353324971 0.010075281611401539 0.01073012962197459 C 0.010075281611401539 0.010624953353324971 0.010075281611401539 0.010046483875752067 0.010075281611401539 0.010099072010076876" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010099072010076876 C 0.010129852278949292 0.010099072010076876 0.010839270957070097 0.010099072010076876 0.010730129621974588 0.010099072010076876 C 0.010839270957070097 0.010099072010076876 0.01143954830009539 0.010099072010076876 0.011384977632547637 0.010099072010076876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.20966570755855704) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.21092782278235248) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.2121899380061479) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.21345205322994334) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.5097530339487796,0.20630514609350628) rotate(0) scale(1,1) translate(-0.1337825169929114,-0.14905370265981344)"><path d="M 0.1348820566894818 0.14335754350784408 C 0.13503336852073833 0.14342986601565738 0.13566584539110316 0.14417725469981083 0.13559825896798966 0.14401636820811525 C 0.13566584539110316 0.14417725469981083 0.1357028241278574 0.14547450778198862 0.13569309376684363 0.14528818140819086 C 0.1357028241278574 0.14547450778198862 0.1357168118182606 0.14642118621221573 0.13571502330015484 0.14625228469368842 C 0.1357168118182606 0.14642118621221573 0.1357172397941039 0.14751441499100423 0.13571455598411256 0.14731499963051864 C 0.1357172397941039 0.14751441499100423 0.1357474300770128 0.14886870662248022 0.13574722902005115 0.1486452690195155 C 0.1357474300770128 0.14886870662248022 0.13569298390785467 0.15020252936935394 0.13571696866765234 0.14999625086609544 C 0.13569298390785467 0.15020252936935394 0.13535994493530915 0.15128445951435796 0.1354594119024791 0.15112061105861752 C 0.13535994493530915 0.15128445951435796 0.13432188648009055 0.15203258410801088 0.134523365061613 0.1519624323349806 C 0.13432188648009055 0.15203258410801088 0.13284019034268743 0.15189228056195037 0.13304166892420988 0.1519624323349806 C 0.13284019034268743 0.15189228056195037 0.1320061551161738 0.1509567626028772 0.13210562208334375 0.1511206110586176 C 0.1320061551161738 0.1509567626028772 0.13182408055837283 0.1497899723628371 0.1318480653181705 0.14999625086609558 C 0.13182408055837283 0.1497899723628371 0.13181800602273333 0.1484218314165509 0.1318178049657717 0.14864526901951566 C 0.13181800602273333 0.1484218314165509 0.1318531618117016 0.14711558427003305 0.13185047800171024 0.14731499963051864 C 0.1318531618117016 0.14711558427003305 0.13185179920377377 0.14608338317516112 0.131850010685668 0.14625228469368842 C 0.13185179920377377 0.14608338317516112 0.13188167057999298 0.1451018550343931 0.13187194021897922 0.14528818140819086 C 0.13188167057999298 0.1451018550343931 0.13203436144094666 0.14385548171641968 0.1319667750178332 0.14401636820811525 C 0.13203436144094666 0.14385548171641968 0.13283428912759754 0.14328522100003077 0.13268297729634101 0.14335754350784408 C 0.13283428912759754 0.14328522100003077 0.13396577360900647 0.14314849811435548 0.1337825169929114 0.14314849811435548 C 0.13396577360900647 0.14314849811435548 0.13503336852073833 0.14342986601565738 0.1348820566894818 0.14335754350784408 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g id="ユニット">
<g transform="translate(0.5097530339487796,0.21240670353037858) rotate(0) scale(1,1) translate(-0.015096514070287396,-0.015096514070287394)"><path d="M 0.01963528837722331 0.011008981811404472 C 0.01963528837722331 0.011349609499644716 0.01963528837722331 0.01633222578297031 0.01963528837722331 0.015096514070287394 C 0.01963528837722331 0.01633222578297031 0.01963528837722331 0.02673260638804211 0.01963528837722331 0.02583752236359944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01963528837722331 0.02583752236359944 C 0.01952450702587112 0.026078382511814012 0.01792768096875239 0.029068471830414562 0.01830591216099705 0.02872784414217432 C 0.01792768096875239 0.029068471830414562 0.014561614388502453 0.02992505462248236 0.015096514070287396 0.02992505462248236 C 0.014561614388502453 0.02992505462248236 0.01150888478733308 0.028387216453934078 0.011887115979577739 0.02872784414217432 C 0.01150888478733308 0.028387216453934078 0.010446958411999292 0.025596662215384876 0.01055773976335148 0.025837522363599447" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01055773976335148 0.025837522363599447 C 0.01055773976335148 0.024942438339156776 0.010557739763351481 0.01386080235760448 0.010557739763351481 0.015096514070287394 C 0.010557739763351481 0.01386080235760448 0.01055773976335148 0.010668354123164232 0.01055773976335148 0.011008981811404476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01055773976335148 0.011008981811404476 C 0.010668521114703667 0.010768121663189903 0.012265347171822392 0.0077780323445893525 0.011887115979577733 0.008118660032829596 C 0.012265347171822392 0.0077780323445893525 0.015631413752072335 0.006921449552521554 0.01509651407028739 0.006921449552521554 C 0.015631413752072335 0.006921449552521554 0.01868414335324171 0.008459287721069837 0.01830591216099705 0.008118660032829593 C 0.01868414335324171 0.008459287721069837 0.019746069728575497 0.011249841959619046 0.01963528837722331 0.011008981811404472" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5097530339487796,0.2214849598695595) rotate(0) scale(1,1) translate(-0.015096514070287394,-0.025837522363599444)"><path d="M 0.01055773976335148 0.025837522363599486 C 0.010668521114703667 0.025596662215384914 0.012265347171822398 0.0226065728967844 0.011887115979577739 0.02294720058502464 C 0.012265347171822398 0.0226065728967844 0.01563141375207234 0.021749990104716566 0.015096514070287396 0.021749990104716566 C 0.01563141375207234 0.021749990104716566 0.01868414335324171 0.023287828273264883 0.01830591216099705 0.02294720058502464 C 0.01868414335324171 0.023287828273264883 0.019746069728575497 0.026078382511814057 0.01963528837722331 0.025837522363599486" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5097530339487796,0.22314771182369061) rotate(0) scale(1,1) translate(-0.015096514070287394,-0.025837522363599444)"><path d="M 0.01055773976335148 0.025837522363599486 C 0.010668521114703667 0.025596662215384914 0.012265347171822398 0.0226065728967844 0.011887115979577739 0.02294720058502464 C 0.012265347171822398 0.0226065728967844 0.01563141375207234 0.021749990104716566 0.015096514070287396 0.021749990104716566 C 0.01563141375207234 0.021749990104716566 0.01868414335324171 0.023287828273264883 0.01830591216099705 0.02294720058502464 C 0.01868414335324171 0.023287828273264883 0.019746069728575497 0.026078382511814057 0.01963528837722331 0.025837522363599486" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5112549851839616,0.20933269191410353) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027442367311398805 0.025765125796155128 C 0.02753097802076402 0.0259186040468704 0.02735375660203359 0.02714643005259259 0.027442367311398805 0.026992951801877316 C 0.02735375660203359 0.02714643005259259 0.026201817380285777 0.027606864804738413 0.02637903879901621 0.027606864804738413 C 0.026201817380285777 0.027606864804738413 0.025227099577268403 0.026839473551162042 0.025315710286633618 0.026992951801877316 C 0.025227099577268403 0.026839473551162042 0.025404320995998833 0.025611647545439854 0.025315710286633618 0.025765125796155128 C 0.025404320995998833 0.025611647545439854 0.026556260217746645 0.025151212793294034 0.02637903879901621 0.025151212793294034 C 0.026556260217746645 0.025151212793294034 0.02753097802076402 0.0259186040468704 0.027442367311398805 0.025765125796155128 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5112549851839616,0.21336074227008214) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027442367311398805 0.025765125796155128 C 0.02753097802076402 0.0259186040468704 0.02735375660203359 0.02714643005259259 0.027442367311398805 0.026992951801877316 C 0.02735375660203359 0.02714643005259259 0.026201817380285777 0.027606864804738413 0.02637903879901621 0.027606864804738413 C 0.026201817380285777 0.027606864804738413 0.025227099577268403 0.026839473551162042 0.025315710286633618 0.026992951801877316 C 0.025227099577268403 0.026839473551162042 0.025404320995998833 0.025611647545439854 0.025315710286633618 0.025765125796155128 C 0.025404320995998833 0.025611647545439854 0.026556260217746645 0.025151212793294034 0.02637903879901621 0.025151212793294034 C 0.026556260217746645 0.025151212793294034 0.02753097802076402 0.0259186040468704 0.027442367311398805 0.025765125796155128 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.20903464994665932) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.01073012962197459)"><path d="M 0.011384977632547637 0.010099072010076876 C 0.011384977632547637 0.010151660144401685 0.011384977632547637 0.010835305890624208 0.011384977632547637 0.01073012962197459 C 0.011384977632547637 0.010835305890624208 0.011384977632547637 0.011413775368197111 0.011384977632547637 0.011361187233872302" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.011361187233872302 C 0.011330406964999883 0.011361187233872302 0.010620988286879079 0.011361187233872302 0.010730129621974588 0.011361187233872302 C 0.010620988286879079 0.011361187233872302 0.010020710943853785 0.011361187233872303 0.010075281611401539 0.011361187233872303" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.011361187233872303 C 0.010075281611401539 0.011308599099547494 0.010075281611401539 0.010624953353324971 0.010075281611401539 0.01073012962197459 C 0.010075281611401539 0.010624953353324971 0.010075281611401539 0.010046483875752067 0.010075281611401539 0.010099072010076876" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010099072010076876 C 0.010129852278949292 0.010099072010076876 0.010839270957070097 0.010099072010076876 0.010730129621974588 0.010099072010076876 C 0.010839270957070097 0.010099072010076876 0.01143954830009539 0.010099072010076876 0.011384977632547637 0.010099072010076876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.20966570755855704) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.21092782278235248) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.2121899380061479) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.5076299353542716,0.21345205322994334) rotate(0) scale(1,1) translate(-0.010730129621974588,-0.008817833828345154)"><path d="M 0.011384977632547637 0.008817833828345154 C 0.011384977632547637 0.008870421962669963 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.009448891440242867 C 0.011384977632547637 0.009554067708892486 0.011384977632547637 0.01013253718646539 0.011384977632547637 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011384977632547637 0.010079949052140581 C 0.011330406964999883 0.010079949052140581 0.010620988286879079 0.010079949052140581 0.010730129621974588 0.010079949052140581 C 0.010620988286879079 0.010079949052140581 0.010020710943853785 0.010079949052140581 0.010075281611401539 0.010079949052140581" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.010079949052140581 C 0.010075281611401539 0.010027360917815772 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.009448891440242867 C 0.010075281611401539 0.009343715171593249 0.010075281611401539 0.008765245694020344 0.010075281611401539 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010075281611401539 0.008817833828345154 C 0.010129852278949292 0.008817833828345154 0.010839270957070097 0.008817833828345154 0.010730129621974588 0.008817833828345154 C 0.010839270957070097 0.008817833828345154 0.01143954830009539 0.008817833828345154 0.011384977632547637 0.008817833828345154" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,243 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.2780025635192015,0.11151864958480151) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09619711934541844 0.1188168453295266 C 0.096207203166842 0.11877921199563943 0.09635575853638832 0.11830006247652973 0.09631812520250115 0.11836524532288052 C 0.09635575853638832 0.11830006247652973 0.0967139021984153 0.11799701783942997 0.09664871935206451 0.11803465117331714 C 0.0967139021984153 0.11799701783942997 0.09717558602648492 0.11791364531623445 0.09710031935871058 0.11791364531623445 C 0.09717558602648492 0.11791364531623445 0.09761710221170744 0.11807228450720432 0.09755191936535665 0.11803465117331714 C 0.09761710221170744 0.11807228450720432 0.0979201468488072 0.11843042816923131 0.09788251351492003 0.11836524532288052 C 0.0979201468488072 0.11843042816923131 0.09801360319342631 0.11885447866341378 0.09800351937200275 0.1188168453295266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09800351937200275 0.1188168453295266 C 0.09800428739922493 0.11893500336370925 0.09801427175311338 0.12047105780808368 0.098012735698669 0.12023474173971838 C 0.09801427175311338 0.12047105780808368 0.09802272005255744 0.12177079618409277 0.09802195202533526 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09802195202533526 0.12165263814991012 C 0.09799945702881098 0.12170694587560457 0.09767520934482521 0.12238113358046218 0.09775201206704393 0.12230433085824347 C 0.09767520934482521 0.12238113358046218 0.09699170390732169 0.1225742708165348 0.09710031935871058 0.1225742708165348 C 0.09699170390732169 0.1225742708165348 0.09637182392815852 0.12222752813602475 0.09644862665037723 0.12230433085824347 C 0.09637182392815852 0.12222752813602475 0.09615619169556165 0.12159833042421567 0.09617868669208593 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09617868669208593 0.12165263814991012 C 0.09617945471930812 0.12153448011572747 0.09618943907319658 0.11999842567135308 0.0961879030187522 0.12023474173971838 C 0.09618943907319658 0.11999842567135308 0.09619788737264062 0.11869868729534395 0.09619711934541844 0.1188168453295266" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192015,0.108682856764418) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09621518334568427 0.11887356118593428 C 0.09622506549067936 0.11883668051872485 0.09637064975283476 0.11836711398999736 0.09633376908562533 0.11843099317942113 C 0.09637064975283476 0.11836711398999736 0.0967216305416212 0.11807013024563957 0.09665775135219742 0.118107010912849 C 0.0967216305416212 0.11807013024563957 0.09717408069312944 0.11798842517290797 0.09710031935871058 0.11798842517290797 C 0.09717408069312944 0.11798842517290797 0.0976067665546475 0.11814389158005843 0.09754288736522373 0.118107010912849 C 0.0976067665546475 0.11814389158005843 0.09790375029900526 0.1184948723688449 0.09786686963179583 0.11843099317942113 C 0.09790375029900526 0.1184948723688449 0.09799533751673199 0.11891044185314371 0.0979854553717369 0.11887356118593428" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0979854553717369 0.11887356118593428 C 0.09798620803841465 0.11898935605943328 0.09799599270522531 0.12049468941492021 0.09799448737186983 0.12026309966792223 C 0.09799599270522531 0.12049468941492021 0.09800427203868049 0.12176843302340912 0.09800351937200275 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09800351937200275 0.12165263814991012 C 0.09798147427540896 0.12170585972109067 0.0976637115451029 0.12236656367185114 0.09773897821287725 0.12229129700407679 C 0.0976637115451029 0.12236656367185114 0.09699387621634947 0.12255583816320229 0.09710031935871058 0.12255583816320229 C 0.09699387621634947 0.12255583816320229 0.09638639383676957 0.12221603033630243 0.09646166050454391 0.12229129700407679 C 0.09638639383676957 0.12221603033630243 0.09617507424882465 0.12159941657872957 0.09619711934541844 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09619711934541844 0.12165263814991012 C 0.09619787201209619 0.12153684327641112 0.09620765667890684 0.12003150992092425 0.09620615134555136 0.12026309966792223 C 0.09620765667890684 0.12003150992092425 0.09621593601236202 0.11875776631243529 0.09621518334568427 0.11887356118593428" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192015,0.10590377980044216) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09623288606594484 0.11892914272521382 C 0.09624257056804002 0.11889299967134857 0.09638524314495231 0.11843282447319561 0.09634910009108706 0.11849542607883091 C 0.09638524314495231 0.11843282447319561 0.09672920431796303 0.11814178040372501 0.09666660271232773 0.11817792345759026 C 0.09672920431796303 0.11814178040372501 0.0971726054664411 0.118061709432448 0.09710031935871062 0.118061709432448 C 0.0971726054664411 0.118061709432448 0.09759663761072881 0.11821406651145551 0.09753403600509351 0.11817792345759026 C 0.09759663761072881 0.11821406651145551 0.0978876816801994 0.11855802768446622 0.09785153862633417 0.11849542607883091 C 0.0978876816801994 0.11855802768446622 0.09797743715357156 0.11896528577907907 0.09796775265147638 0.11892914272521382" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09796775265147638 0.11892914272521382 C 0.09796849026482057 0.11904262170124283 0.09797807923829505 0.12051784838962003 0.09797660401160667 0.120290890437562 C 0.09797807923829505 0.12051784838962003 0.09798619298508109 0.12176611712593913 0.0979854553717369 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0979854553717369 0.12165263814991012 C 0.09796385117707498 0.12170479528966706 0.09765244370137506 0.1223522851614123 0.09772620503579392 0.12227852382699345 C 0.09765244370137506 0.1223522851614123 0.09699600507919669 0.12253777416293643 0.09710031935871058 0.12253777416293643 C 0.09699600507919669 0.12253777416293643 0.09640067234720838 0.12220476249257459 0.09647443368162724 0.12227852382699345 C 0.09640067234720838 0.12220476249257459 0.09619357915102235 0.12160048101015318 0.09621518334568427 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09621518334568427 0.12165263814991012 C 0.09621592095902846 0.12153915917388111 0.09622550993250292 0.12006393248550397 0.09622403470581455 0.120290890437562 C 0.09622550993250292 0.12006393248550397 0.09623362367928903 0.11881566374918481 0.09623288606594484 0.11892914272521382" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920155,0.10318028437574586) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09625023473180015 0.11898361263370774 C 0.09625972554385344 0.11894819244091981 0.09639954466922748 0.11849722074672991 0.09636412447643955 0.11855857032025251 C 0.09639954466922748 0.11849722074672991 0.09673662661877798 0.11821199755864874 0.09667527704525539 0.11824741775143667 C 0.09673662661877798 0.11821199755864874 0.0971711597442865 0.11813352800679727 0.09710031935871062 0.11813352800679727 C 0.0971711597442865 0.11813352800679727 0.09758671124568845 0.1182828379442246 0.09752536167216586 0.11824741775143667 C 0.09758671124568845 0.1182828379442246 0.09787193443376961 0.1186199198937751 0.09783651424098168 0.11855857032025251 C 0.09787193443376961 0.1186199198937751 0.09795989479767435 0.11901903282649567 0.09795040398562106 0.11898361263370774" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09795040398562106 0.11898361263370774 C 0.09795112684669838 0.11909482203021618 0.09796052404070338 0.12054054418482583 0.09795907831854876 0.12031812539180897 C 0.09796052404070338 0.12054054418482583 0.09796847551255368 0.12176384754641854 0.09796775265147638 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09796775265147638 0.12165263814991012 C 0.0979465805407077 0.12170375214687193 0.09764140121452178 0.12233829222118224 0.09771368732225226 0.12226600611345176 C 0.09764140121452178 0.12233829222118224 0.09699809136478701 0.12252007144267588 0.09710031935871062 0.12252007144267588 C 0.09699809136478701 0.12252007144267588 0.09641466528743849 0.12219372000572128 0.09648695139516897 0.12226600611345176 C 0.09641466528743849 0.12219372000572128 0.09621171395517616 0.12160152415294831 0.09623288606594484 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09623288606594484 0.12165263814991012 C 0.09623360892702214 0.1215414287534017 0.09624300612102707 0.12009570659879211 0.09624156039887247 0.12031812539180897 C 0.09624300612102707 0.12009570659879211 0.09625095759287745 0.1188724032371993 0.09625023473180015 0.11898361263370774" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192016,0.10051125885954348) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09626723642433835 0.1190369931440318 C 0.09627653742015056 0.11900228135509962 0.09641356016301712 0.11856032909479354 0.09637884837408495 0.11862045167684568 C 0.09641356016301712 0.11856032909479354 0.09674390047357663 0.11828081037047394 0.09668377789152449 0.11831552215940612 C 0.09674390047357663 0.11828081037047394 0.09716974293657497 0.11820391020965952 0.09710031935871062 0.11820391020965952 C 0.09716974293657497 0.11820391020965952 0.09757698340794889 0.1183502339483383 0.09751686082589675 0.11831552215940612 C 0.09757698340794889 0.1183502339483383 0.09785650213226846 0.11868057425889782 0.09782179034333628 0.11862045167684568 C 0.09785650213226846 0.11868057425889782 0.09794270328889508 0.11907170493296397 0.09793340229308287 0.1190369931440318" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09793340229308287 0.1190369931440318 C 0.09793411069693862 0.11914597835261007 0.09794331994706351 0.1205627860641275 0.097941903139352 0.12034481564697097 C 0.09794331994706351 0.1205627860641275 0.09795111238947682 0.12176162335848838 0.09795040398562106 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09795040398562106 0.12165263814991012 C 0.09792965531706777 0.12170272986693269 0.09763057957740556 0.1223245791397568 0.09770141996298143 0.12225373875418094 C 0.09763057957740556 0.1223245791397568 0.09700013592466548 0.12250272277682056 0.09710031935871062 0.12250272277682056 C 0.09700013592466548 0.12250272277682056 0.09642837836886392 0.12218289836860508 0.0964992187544398 0.12225373875418094 C 0.09642837836886392 0.12218289836860508 0.09622948606324686 0.12160254643288755 0.09625023473180015 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09625023473180015 0.12165263814991012 C 0.09625094313565591 0.12154365294133186 0.09626015238578077 0.12012684522981444 0.09625873557806926 0.12034481564697097 C 0.09626015238578077 0.12012684522981444 0.0962679448281941 0.11892800793545352 0.09626723642433835 0.1190369931440318" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920166,0.09789561385366516) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.0962838980830258 0.11908930604414936 C 0.09629301305892177 0.11905528849099582 0.09642729534693098 0.11862217527589586 0.09639327779377745 0.11868109540630695 C 0.09642729534693098 0.11862217527589586 0.09675102885127929 0.11834824692606269 0.0966921087208682 0.11838226447921622 C 0.09675102885127929 0.11834824692606269 0.09716835446501766 0.11827288476846455 0.0971003193587106 0.11827288476846455 C 0.09716835446501766 0.11827288476846455 0.09756745012696412 0.11841628203236973 0.09750852999655302 0.1183822644792162 C 0.09756745012696412 0.11841628203236973 0.0978413784767973 0.11874001553671805 0.09780736092364377 0.11868109540630695 C 0.0978413784767973 0.11874001553671805 0.09792585561029138 0.11912332359730289 0.09791674063439541 0.11908930604414936" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09791674063439541 0.11908930604414936 C 0.09791743487017406 0.11919611154855606 0.09792645993529644 0.12058458310584316 0.09792507146373916 0.12037097209702977 C 0.09792645993529644 0.12058458310584316 0.09793409652886151 0.12175944365431682 0.09793340229308287 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09793340229308287 0.12165263814991012 C 0.09791306859790062 0.12170172803259224 0.09761997437303167 0.12231114031995988 0.09768939795089603 0.12224171674209552 C 0.09761997437303167 0.12231114031995988 0.09700213959334639 0.12248572108428238 0.09710031935871062 0.12248572108428238 C 0.09700213959334639 0.12248572108428238 0.09644181718866086 0.12217229316423117 0.09651124076652522 0.12224171674209552 C 0.09644181718866086 0.12217229316423117 0.0962469027291561 0.121603548267228 0.09626723642433835 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09626723642433835 0.12165263814991012 C 0.09626793066011699 0.12154583264550342 0.09627695572523937 0.12015736108821637 0.09627556725368208 0.12037097209702977 C 0.09627695572523937 0.12015736108821637 0.09628459231880444 0.11898250053974266 0.0962838980830258 0.11908930604414936" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192017,0.0953322817479044) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09630022650853949 0.11914057268626457 C 0.09630915918491754 0.11910723548417411 0.0964407558271666 0.11868278453337616 0.09640741862507614 0.11874052626117904 C 0.0964407558271666 0.11868278453337616 0.09675801466142793 0.11841433475053964 0.09670027293362506 0.1184476719526301 C 0.09675801466142793 0.11841433475053964 0.09716699376289155 0.11834047983609346 0.09710031935871062 0.11834047983609346 C 0.09716699376289155 0.11834047983609346 0.09755810751159905 0.11848100915472057 0.09750036578379617 0.1184476719526301 C 0.09755810751159905 0.11848100915472057 0.09782655729443555 0.11879826798898191 0.09779322009234509 0.11874052626117904 C 0.09782655729443555 0.11879826798898191 0.09790934488525979 0.11917390988835504 0.09790041220888174 0.11914057268626457" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09790041220888174 0.11914057268626457 C 0.09790109255994481 0.11924524208058314 0.09790993712376475 0.12060594420672452 0.09790857642163861 0.12039660541808739 C 0.09790993712376475 0.12060594420672452 0.09791742098545848 0.12175730754422869 0.09791674063439541 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09791674063439541 0.12165263814991012 C 0.09789681361311682 0.1217007462349386 0.09760958127274524 0.12229797027655889 0.09767761637905231 0.12222993517025182 C 0.09760958127274524 0.12229797027655889 0.09700410318865367 0.12246905942559491 0.09710031935871062 0.12246905942559491 C 0.09700410318865367 0.12246905942559491 0.09645498723206185 0.12216190006394476 0.09652302233836892 0.12222993517025182 C 0.09645498723206185 0.12216190006394476 0.09626397106174721 0.12160453006488164 0.0962838980830258 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0962838980830258 0.12165263814991012 C 0.09628457843408887 0.12154796875559155 0.0962934229979088 0.12018726662945026 0.09629206229578266 0.12039660541808739 C 0.0962934229979088 0.12018726662945026 0.09630090685960256 0.11903590329194601 0.09630022650853949 0.11914057268626457" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192018,0.09282021628425885) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09631622836554292 0.11919081399553752 C 0.0963249823883934 0.11915814353748887 0.09645394709779748 0.11874218160570683 0.09642127663974882 0.11879876849895366 C 0.09645394709779748 0.11874218160570683 0.09676486075537358 0.11847910081852706 0.09670827386212676 0.11851177127657571 C 0.09676486075537358 0.11847910081852706 0.09716566027480793 0.1184067230023698 0.09710031935871062 0.1184067230023698 C 0.09716566027480793 0.1184067230023698 0.09754895174854128 0.11854444173462436 0.09749236485529446 0.11851177127657571 C 0.09754895174854128 0.11854444173462436 0.09781203253572106 0.11885535539220048 0.0977793620776724 0.11879876849895366 C 0.09781203253572106 0.11885535539220048 0.09789316437472882 0.11922348445358617 0.09788441035187832 0.11919081399553752" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09788441035187832 0.11919081399553752 C 0.09788507709592013 0.11929339000196972 0.09789374476846366 0.12062687808558825 0.09789241128038004 0.12042172607272386 C 0.09789374476846366 0.12062687808558825 0.09790107895292355 0.1217552141563423 0.09790041220888174 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09790041220888174 0.12165263814991012 C 0.09788088372802872 0.12169978407323803 0.09759939603446456 0.12228506363402591 0.09766607043864549 0.12221838922984499 C 0.09759939603446456 0.12228506363402591 0.09700602751205481 0.12245273100008125 0.09710031935871062 0.12245273100008125 C 0.09700602751205481 0.12245273100008125 0.09646789387459481 0.12215171482566406 0.09653456827877574 0.12221838922984499 C 0.09646789387459481 0.12215171482566406 0.09628069802768648 0.1216054922265822 0.09630022650853949 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09630022650853949 0.12165263814991012 C 0.0963008932525813 0.12155006214347794 0.09630956092512483 0.12021657405985947 0.0963082274370412 0.12042172607272386 C 0.09630956092512483 0.12021657405985947 0.09631689510958473 0.11908823798910532 0.09631622836554292 0.11919081399553752" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920183,0.09035839212988625) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.0963319101854063 0.11924005047862499 C 0.09634048912779977 0.1192080334297373 0.09646687454301578 0.11880039073659093 0.0964348574941281 0.11885584589197282 C 0.09646687454301578 0.11880039073659093 0.09677156992744036 0.11854257156515474 0.09671611477205848 0.11857458861404242 C 0.09677156992744036 0.11854257156515474 0.097164353456486 0.11847164130532065 0.09710031935871064 0.11847164130532065 C 0.097164353456486 0.11847164130532065 0.09753997910074468 0.1186066056629301 0.09748452394536279 0.11857458861404242 C 0.09753997910074468 0.1186066056629301 0.09779779827218087 0.1189113010473547 0.09776578122329319 0.11885584589197282 C 0.09779779827218087 0.1189113010473547 0.09787730747440844 0.11927206752751267 0.09786872853201496 0.11924005047862499" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09786872853201496 0.11924005047862499 C 0.09786938194117593 0.11934057496492853 0.09787787626026861 0.12064739328687468 0.09787656944194667 0.1204463443142676 C 0.09787787626026861 0.12064739328687468 0.0978850637610393 0.12175316263621366 0.09788441035187832 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09788441035187832 0.12165263814991012 C 0.09786527244064236 0.12169884115477148 0.09758941450094949 0.12227241512434361 0.0976547554170468 0.12220707420824631 C 0.09758941450094949 0.12227241512434361 0.09700791334898792 0.12243672914307782 0.09710031935871062 0.12243672914307782 C 0.09700791334898792 0.12243672914307782 0.09648054238427713 0.122141733292149 0.09654588330037443 0.12220707420824631 C 0.09648054238427713 0.122141733292149 0.09629709045430696 0.12160643514504876 0.09631622836554292 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09631622836554292 0.12165263814991012 C 0.09631688177470389 0.12155211366360658 0.09632537609379656 0.12024529534166051 0.09632406927547461 0.1204463443142676 C 0.09632537609379656 0.12024529534166051 0.09633256359456727 0.11913952599232144 0.0963319101854063 0.11924005047862499" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192019,0.08794580445860112) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09634727836887239 0.11928830223205067 C 0.096355685732418 0.11925692552414074 0.09647954343932964 0.11885743568485731 0.09644816673141972 0.11891178173713154 C 0.09647954343932964 0.11885743568485731 0.09677814491606575 0.11860477289684986 0.09672379886379151 0.11863614960475978 C 0.09677814491606575 0.11860477289684986 0.09716307277453048 0.11853526124221243 0.09710031935871064 0.11853526124221243 C 0.09716307277453048 0.11853526124221243 0.097531185905904 0.1186675263126697 0.09747683985362976 0.11863614960475978 C 0.097531185905904 0.1186675263126697 0.09778384869391148 0.11896612778940578 0.09775247198600155 0.11891178173713154 C 0.09778384869391148 0.11896612778940578 0.09786176771209451 0.1193196789399606 0.0978533603485489 0.11928830223205067" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0978533603485489 0.11928830223205067 C 0.09785400068952665 0.11938681622862815 0.09786232512223744 0.12066749818413537 0.09786104444028194 0.12047047019098042 C 0.09786232512223744 0.12066749818413537 0.09786936887299272 0.1217511521464876 0.09786872853201496 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09786872853201496 0.12165263814991012 C 0.09784997337900372 0.12169791709467424 0.09757963259810472 0.12226001958485494 0.09764366669588008 0.12219598548707958 C 0.09757963259810472 0.12226001958485494 0.09700976146918239 0.12242104732321446 0.09710031935871064 0.12242104732321446 C 0.09700976146918239 0.12242104732321446 0.09649293792376583 0.12213195138930422 0.09655697202154119 0.12219598548707958 C 0.09649293792376583 0.12213195138930422 0.09631315503239506 0.121607359205146 0.0963319101854063 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0963319101854063 0.12165263814991012 C 0.09633255052638405 0.12155412415333264 0.09634087495909482 0.12027344219782547 0.09633959427713931 0.12047047019098042 C 0.09634087495909482 0.12027344219782547 0.09634791870985014 0.11918978823547319 0.09634727836887239 0.11928830223205067" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920194,0.08558146854074167) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09636233918866914 0.11933558895040788 C 0.09637057840494384 0.11930483977665615 0.09649195895771727 0.11891333973415838 0.09646120978396554 0.11896659886538713 C 0.09649195895771727 0.11891333973415838 0.09678458840491866 0.11866573020191107 0.0967313292736899 0.1186964793756628 C 0.09678458840491866 0.11866573020191107 0.0971618177062141 0.11859760878036642 0.09710031935871064 0.11859760878036642 C 0.0971618177062141 0.11859760878036642 0.09752256857496014 0.11872722854941453 0.09746930944373138 0.1186964793756628 C 0.09752256857496014 0.11872722854941453 0.09777017810720745 0.11901985799661588 0.09773942893345572 0.11896659886538713 C 0.09777017810720745 0.11901985799661588 0.09784653874502681 0.11936633812415962 0.09783829952875212 0.11933558895040788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09783829952875212 0.11933558895040788 C 0.09783892706291032 0.11943213266705381 0.09784708500696693 0.1206872009834509 0.09784582993865053 0.12049411355015904 C 0.09784708500696693 0.1206872009834509 0.09785398788270709 0.12174918186655605 0.0978533603485489 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0978533603485489 0.12165263814991012 C 0.09783498029859788 0.12169701151577896 0.09757004633331685 0.12224787195615602 0.0976327997491367 0.12218511854033617 C 0.09757004633331685 0.12224787195615602 0.09701157262697296 0.12240567913974837 0.09710031935871064 0.12240567913974837 C 0.09701157262697296 0.12240567913974837 0.09650508555246472 0.12212236512451632 0.09656783896828457 0.12218511854033617 C 0.09650508555246472 0.12212236512451632 0.09632889831892137 0.12160826478404128 0.09634727836887239 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09634727836887239 0.12165263814991012 C 0.09634790590303058 0.12155609443326419 0.09635606384708714 0.12030102611686719 0.09635480877877074 0.12049411355015904 C 0.09635606384708714 0.12030102611686719 0.09636296672282735 0.11923904523376196 0.09636233918866914 0.11933558895040788" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.278002563519202,0.08326441934123943) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09637709879206996 0.11938192993439792 C 0.09638517322401917 0.11935179574412122 0.09650412616573714 0.1189681257024734 0.09647399197546044 0.1190203196510776 C 0.09650412616573714 0.1189681257024734 0.09679090302399447 0.11872546836087104 0.09673870907539028 0.11875560255114774 C 0.09679090302399447 0.11872546836087104 0.097160587739264 0.11865870936775726 0.09710031935871062 0.11865870936775726 C 0.097160587739264 0.11865870936775726 0.09751412359063513 0.11878573674142444 0.09746192964203094 0.11875560255114774 C 0.09751412359063513 0.11878573674142444 0.09775678093223748 0.11907251359968178 0.09772664674196078 0.1190203196510776 C 0.09775678093223748 0.11907251359968178 0.09783161435730049 0.11941206412467462 0.09782353992535128 0.11938192993439792" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09782353992535128 0.11938192993439792 C 0.09782415490882632 0.11947654277671094 0.09783214969400181 0.12070650972678007 0.09783091972705174 0.12051728404215406 C 0.09783214969400181 0.12070650972678007 0.09783891451222715 0.12174725099222312 0.09783829952875212 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09783829952875212 0.12165263814991012 C 0.09782028707980012 0.12169612404846158 0.09756065179382473 0.12223596728003114 0.09762215014132818 0.12217446893252767 C 0.09756065179382473 0.12223596728003114 0.09701334756160772 0.12239061831995163 0.09710031935871064 0.12239061831995163 C 0.09701334756160772 0.12239061831995163 0.09651699022858964 0.12211297058502421 0.09657848857609311 0.12217446893252767 C 0.09651699022858964 0.12211297058502421 0.09634432673971714 0.12160915225135865 0.09636233918866914 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09636233918866914 0.12165263814991012 C 0.09636295417214417 0.12155802530759711 0.09637094895731962 0.12032805835752805 0.09636971899036956 0.12051728404215406 C 0.09637094895731962 0.12032805835752805 0.096377713775545 0.1192873170920849 0.09637709879206996 0.11938192993439792" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920205,0.08099371112572723) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09639156320340281 0.11942734409870817 C 0.09639947614671303 0.11939781259223702 0.09651605002959661 0.11902181595142214 0.09648651852312545 0.11907296602105424 C 0.09651605002959661 0.11902181595142214 0.09679709135068883 0.11878401175665183 0.09674594128105672 0.11881354326312299 C 0.09679709135068883 0.11878401175665183 0.09715938237165297 0.11871858794340032 0.09710031935871065 0.11871858794340032 C 0.09715938237165297 0.11871858794340032 0.09750584750599667 0.11884307476959415 0.09745469743636458 0.11881354326312299 C 0.09750584750599667 0.11884307476959415 0.09774365170076699 0.11912411609068635 0.09771412019429583 0.11907296602105424 C 0.09774365170076699 0.11912411609068635 0.09781698845732871 0.11945687560517933 0.09780907551401849 0.11942734409870817" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09780907551401849 0.11942734409870817 C 0.09780967819782402 0.11952006468417492 0.09781751308729598 0.12072543229524269 0.09781630771968491 0.12053999112430919 C 0.09781751308729598 0.12072543229524269 0.09782414260915681 0.12174535873537687 0.09782353992535128 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09782353992535128 0.12165263814991012 C 0.09780588772537832 0.12169525433049055 0.09755144514512243 0.12222430069742869 0.09761171352567581 0.12216403231687531 C 0.09755144514512243 0.12222430069742869 0.09701508699754975 0.12237585871655077 0.09710031935871062 0.12237585871655077 C 0.09701508699754975 0.12237585871655077 0.09652865681119203 0.12210376393632193 0.09658892519174542 0.12216403231687531 C 0.09652865681119203 0.12210376393632193 0.096359446592097 0.12161002196932968 0.09637709879206996 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09637709879206996 0.12165263814991012 C 0.09637770147587549 0.12155991756444337 0.09638553636534744 0.12035454995337569 0.09638433099773637 0.12053999112430919 C 0.09638553636534744 0.12035454995337569 0.09639216588720835 0.11933462351324142 0.09639156320340281 0.11942734409870817" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192021,0.07876841707452528) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09640573832650895 0.1194718499797322 C 0.09641349301095296 0.11944290910339046 0.0965277354161789 0.11907443239539192 0.09649879453983716 0.11912455946363137 C 0.0965277354161789 0.11907443239539192 0.09680315591084925 0.118841384284517 0.09675302884260979 0.11887032516085874 C 0.09680315591084925 0.118841384284517 0.09715820111139412 0.11877726894753052 0.09710031935871064 0.11877726894753052 C 0.09715820111139412 0.11877726894753052 0.09749773694305094 0.11889926603720048 0.09744760987481149 0.11887032516085874 C 0.09749773694305094 0.11889926603720048 0.09773078505392586 0.1191746865318708 0.09770184417758412 0.11912455946363135 C 0.09773078505392586 0.1191746865318708 0.09780265507535633 0.11950079085607394 0.09779490039091232 0.1194718499797322" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09779490039091232 0.1194718499797322 C 0.09779549102104175 0.11956271615348962 0.09780316921272429 0.12074397641233604 0.09780198795246545 0.12056224406482122 C 0.09780316921272429 0.12074397641233604 0.0978096661441479 0.12174350432366753 0.09780907551401849 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09780907551401849 0.12165263814991012 C 0.097791776358045 0.12169440200687895 0.0975424226293942 0.12221286744647833 0.09760148564233652 0.12215380443353602 C 0.0975424226293942 0.12221286744647833 0.097016791644773 0.12236139430521795 0.09710031935871065 0.12236139430521795 C 0.097016791644773 0.12236139430521795 0.09654009006214244 0.1220947414205937 0.09659915307508476 0.12215380443353602 C 0.09654009006214244 0.1220947414205937 0.09637426404742931 0.12161087429294129 0.09639156320340281 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09639156320340281 0.12165263814991012 C 0.09639215383353222 0.12156177197615271 0.09639983202521471 0.12038051171730639 0.09639865076495586 0.12056224406482122 C 0.09639983202521471 0.12038051171730639 0.09640632895663838 0.11938098380597478 0.09640573832650895 0.1194718499797322" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920216,0.07658762890434737) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.096419629947153 0.11951546574313579 C 0.09642722953790814 0.11948710368432089 0.09653918709502955 0.11912599651048228 0.09651082503621465 0.11917512103735695 C 0.09653918709502955 0.11912599651048228 0.09680909917980648 0.11889760936182486 0.09675997465293182 0.11892597142063976 C 0.09680909917980648 0.11889760936182486 0.09715704347634045 0.11883477633157812 0.09710031935871065 0.11883477633157812 C 0.09715704347634045 0.11883477633157812 0.09748978859136413 0.11895433347945467 0.09744066406448947 0.11892597142063976 C 0.09748978859136413 0.11895433347945467 0.09771817574002155 0.11922424556423161 0.09768981368120665 0.11917512103735695 C 0.09771817574002155 0.11922424556423161 0.09778860836102343 0.11954382780195069 0.0977810087702683 0.11951546574313579" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0977810087702683 0.11951546574313579 C 0.09778158758779514 0.11960451459341806 0.097789112215644 0.12076214964708755 0.09778795458059034 0.12058405194652302 C 0.097789112215644 0.12076214964708755 0.09779547920843915 0.12174168700019238 0.09779490039091232 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09779490039091232 0.12165263814991012 C 0.0977779472180583 0.12169356672973956 0.09753358056398052 0.12220166286054696 0.09759146231666399 0.12214378110786347 C 0.09753358056398052 0.12220166286054696 0.09701846219905176 0.1223472191821118 0.09710031935871065 0.1223472191821118 C 0.09701846219905176 0.1223472191821118 0.09655129464807381 0.12208589935518 0.0966091764007573 0.12214378110786347 C 0.09655129464807381 0.12208589935518 0.09638878515365493 0.12161170957008068 0.09640573832650895 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09640573832650895 0.12165263814991012 C 0.09640631714403579 0.12156358929962786 0.09641384177188464 0.1204059542459585 0.09641268413683098 0.12058405194652302 C 0.09641384177188464 0.1204059542459585 0.09642020876467984 0.11942641689285352 0.096419629947153 0.11951546574313579" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192022,0.07445045649757304) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09643324373538414 0.11955820919127128 C 0.09644069133432417 0.11953041437363267 0.09655040974030316 0.11917652934327087 0.09652261492266455 0.11922467137960804 C 0.09655040974030316 0.11917652934327087 0.09681492358338456 0.11895270993758657 0.09676678154704739 0.11898050475522517 C 0.09681492358338456 0.11895270993758657 0.09715590899398785 0.11889113356794477 0.09710031935871064 0.11889113356794477 C 0.09715590899398785 0.11889113356794477 0.09748199920671105 0.11900829957286378 0.09743385717037388 0.11898050475522517 C 0.09748199920671105 0.11900829957286378 0.09770581861239533 0.11927281341594519 0.09767802379475672 0.11922467137960802 C 0.09770581861239533 0.11927281341594519 0.09777484258097717 0.11958600400890988 0.09776739498203714 0.11955820919127128" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09776739498203714 0.11955820919127128 C 0.09776796222321343 0.1196454770645479 0.09777533635850534 0.120779959417144 0.09777420187615274 0.12060542367059077 C 0.09777533635850534 0.120779959417144 0.09778157601144459 0.12173990602318674 0.0977810087702683 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0977810087702683 0.12165263814991012 C 0.09776439466087135 0.12169274815814297 0.09752491533987513 0.12219068236633421 0.09758163945750493 0.1221339582487044 C 0.09752491533987513 0.12219068236633421 0.09702009934224494 0.12233332756146775 0.09710031935871065 0.12233332756146775 C 0.09702009934224494 0.12233332756146775 0.09656227514228656 0.1220772341310746 0.09661899925991636 0.1221339582487044 C 0.09656227514228656 0.1220772341310746 0.09640301583775605 0.12161252814167726 0.096419629947153 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.096419629947153 0.12165263814991012 C 0.0964201971883293 0.1215653702766335 0.09642757132362115 0.12043088792403753 0.09642643684126856 0.12060542367059077 C 0.09642757132362115 0.12043088792403753 0.09643381097656044 0.11947094131799466 0.09643324373538414 0.11955820919127128" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192023,0.07235602753893419) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.0964465852478507 0.11960009777044406 C 0.09645388389481194 0.11957285884915822 0.09656140793267133 0.11922605151940366 0.09653416901138549 0.11927323071501408 C 0.09656140793267133 0.11922605151940366 0.09682063149889111 0.11900670850183306 0.09677345230328069 0.1190339474231189 C 0.09682063149889111 0.11900670850183306 0.09715479720128231 0.11894636365958411 0.09710031935871065 0.11894636365958411 C 0.09715479720128231 0.11894636365958411 0.09747436560975105 0.11906118634440474 0.09742718641414062 0.1190339474231189 C 0.09747436560975105 0.11906118634440474 0.09769370862732164 0.11932040991062451 0.0976664697060358 0.11927323071501408 C 0.09769370862732164 0.11932040991062451 0.09776135211653186 0.1196273366917299 0.09775405346957063 0.11960009777044406" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09775405346957063 0.11960009777044406 C 0.0977546093659234 0.11968562028625515 0.09776183601850945 0.12079741299179934 0.09776072422580391 0.12062636796017717 C 0.09776183601850945 0.12079741299179934 0.09776795087838991 0.1217381606657212 0.09776739498203714 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09776739498203714 0.12165263814991012 C 0.09775111315482814 0.12169194595797832 0.09751642342025185 0.12217992148200577 0.09757201305552905 0.12212433184672855 C 0.09751642342025185 0.12217992148200577 0.09702170374257425 0.12231971377323661 0.09710031935871065 0.12231971377323661 C 0.09702170374257425 0.12231971377323661 0.09657303602661502 0.12206874221145134 0.09662862566189223 0.12212433184672855 C 0.09657303602661502 0.12206874221145134 0.09641696190817514 0.12161333034184192 0.09643324373538414 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09643324373538414 0.12165263814991012 C 0.09643379963173691 0.12156711563409904 0.09644102628432295 0.120455322928555 0.0964399144916174 0.12062636796017717 C 0.09644102628432295 0.120455322928555 0.09644714114420347 0.11951457525463297 0.0964465852478507 0.11960009777044406" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920233,0.07030348715946813) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09645965993006791 0.1196411485780334 C 0.09646681260408993 0.11961445443517328 0.09657218616119215 0.11927458325201379 0.09654549201833203 0.11932081886371201 C 0.09657218616119215 0.11927458325201379 0.0968262252560875 0.11905962709479463 0.09677998964438927 0.11908632123765475 C 0.0968262252560875 0.11905962709479463 0.09715370764443089 0.11900048914939063 0.09710031935871066 0.11900048914939063 C 0.09715370764443089 0.11900048914939063 0.09746688468473026 0.11911301538051487 0.09742064907303204 0.11908632123765475 C 0.09746688468473026 0.11911301538051487 0.09768184084194943 0.11936705447541024 0.09765514669908931 0.11932081886371201 C 0.09768184084194943 0.11936705447541024 0.09774813146137544 0.11966784272089352 0.09774097878735342 0.1196411485780334" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09774097878735342 0.1196411485780334 C 0.09774152356577914 0.11972496064352828 0.09774860568531347 0.12081451749496158 0.09774751612846204 0.12064689336397186 C 0.09774860568531347 0.12081451749496158 0.09775459824799634 0.12173645021540497 0.09775405346957063 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09775405346957063 0.12165263814991012 C 0.0977380972789058 0.12169115980181695 0.09750810133902102 0.12216937581536381 0.09756257918159268 0.12211489797279215 C 0.09750810133902102 0.12216937581536381 0.09702327605489698 0.1223063722607701 0.09710031935871065 0.1223063722607701 C 0.09702327605489698 0.1223063722607701 0.09658358169325694 0.12206042013022049 0.0966380595358286 0.12211489797279215 C 0.09658358169325694 0.12206042013022049 0.09643062905718587 0.12161411649800329 0.0964465852478507 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0964465852478507 0.12165263814991012 C 0.09644713002627642 0.12156882608441527 0.09645421214581072 0.12047926923298213 0.09645312258895929 0.12064689336397186 C 0.09645421214581072 0.12047926923298213 0.09646020470849363 0.11955733651253853 0.09645965993006791 0.1196411485780334" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192024,0.06829199758759141) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09647247311864077 0.11968137836947093 C 0.09647948273918233 0.11965521810946803 0.09658274882514248 0.11932214434997172 0.09655658856513957 0.11936745524943598 C 0.09658274882514248 0.11932214434997172 0.09683170713813996 0.11911148731589691 0.0967863962386757 0.11913764757589981 C 0.09683170713813996 0.11911148731589691 0.09715263987871649 0.11905353212940104 0.09710031935871066 0.11905353212940104 C 0.09715263987871649 0.11905353212940104 0.09745955337820987 0.11916380783590272 0.09741424247874561 0.11913764757589981 C 0.09745955337820987 0.11916380783590272 0.09767021041228467 0.11941276614890024 0.09764405015228175 0.11936745524943598 C 0.09767021041228467 0.11941276614890024 0.09773517521932214 0.11970753862947384 0.09772816559878057 0.11968137836947093" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09772816559878057 0.11968137836947093 C 0.09772869948163777 0.11976351419365591 0.09773563995878141 0.12083127990806056 0.09773457219306701 0.12066700825969062 C 0.09773563995878141 0.12083127990806056 0.09774151267021063 0.12173477397409507 0.09774097878735342 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09774097878735342 0.12165263814991012 C 0.0977253417205019 0.12169038936877882 0.09749994569941484 0.12215904106205473 0.09755333398513506 0.1221056527763345 C 0.09749994569941484 0.12215904106205473 0.09702481692097327 0.1222932975785529 0.09710031935871066 0.1222932975785529 C 0.09702481692097327 0.1222932975785529 0.09659391644656605 0.12205226449061428 0.09664730473228628 0.1221056527763345 C 0.09659391644656605 0.12205226449061428 0.09644402286321638 0.12161488693104142 0.09645965993006791 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09645965993006791 0.12165263814991012 C 0.09646019381292512 0.12157050232572517 0.09646713429006872 0.12050273661132069 0.09646606652435431 0.12066700825969062 C 0.09646713429006872 0.12050273661132069 0.09647300700149797 0.11959924254528595 0.09647247311864077 0.11968137836947093" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192025,0.06632073780715222) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09648503004344215 0.11972080356507972 C 0.09649189947157288 0.11969516651027687 0.09659310023581386 0.1193687542259705 0.096567463181011 0.11941315890744547 C 0.09659310023581386 0.1193687542259705 0.09683707938255136 0.11916231033257721 0.09679267470107639 0.11918794738738006 C 0.09683707938255136 0.11916231033257721 0.09715159346831637 0.1191055142498112 0.09710031935871066 0.1191055142498112 C 0.09715159346831637 0.1191055142498112 0.09745236869781988 0.11921358444218291 0.09740796401634491 0.11918794738738006 C 0.09745236869781988 0.11921358444218291 0.09765881259121317 0.11945756358892044 0.09763317553641032 0.11941315890744547 C 0.09765881259121317 0.11945756358892044 0.0977224781021099 0.11974644061988257 0.09771560867397917 0.11972080356507972" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09771560867397917 0.11972080356507972 C 0.09771613187917924 0.119801296672781 0.09772293354678002 0.12084770707289755 0.0977218871363799 0.12068672085749502 C 0.09772293354678002 0.12084770707289755 0.09772868880398063 0.12173313125761137 0.09772816559878057 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09772816559878057 0.12165263814991012 C 0.09771284127326607 0.12168963434440144 0.09749195317260075 0.12214891300381185 0.09754427369260657 0.12209659248380603 C 0.09749195317260075 0.12214891300381185 0.09702632696972802 0.12228048438998004 0.09710031935871066 0.12228048438998004 C 0.09702632696972802 0.12228048438998004 0.09660404450480893 0.1220442719638002 0.09665636502481476 0.12209659248380603 C 0.09660404450480893 0.1220442719638002 0.09645714879312627 0.1216156419554188 0.09647247311864077 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09647247311864077 0.12165263814991012 C 0.09647299632384082 0.12157214504220887 0.09647979799144157 0.12052573464209249 0.09647875158104145 0.12068672085749502 C 0.09647979799144157 0.12052573464209249 0.0964855532486422 0.11964031045737844 0.09648503004344215 0.11972080356507972" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192026,0.06438890322232182) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09649733582974754 0.11975944025677632 C 0.09650406786931566 0.11973431594306952 0.09660324461827181 0.1194144319044493 0.09657812030456502 0.11945794849229477 C 0.09660324461827181 0.1194144319044493 0.09684234418207459 0.11921211688892389 0.09679882759422911 0.11923724120263068 C 0.09684234418207459 0.11921211688892389 0.09715056798612427 0.11915645672781319 0.09710031935871068 0.11915645672781319 C 0.09715056798612427 0.11915645672781319 0.09744532771103773 0.11926236551633748 0.09740181112319225 0.11923724120263068 C 0.09744532771103773 0.11926236551633748 0.09764764272656315 0.11950146508014024 0.09762251841285635 0.11945794849229477 C 0.09764764272656315 0.11950146508014024 0.09771003492724194 0.11978456457048312 0.09770330288767382 0.11975944025677632" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09770330288767382 0.11975944025677632 C 0.09770381562876987 0.11983832350232357 0.09771048126301862 0.12086380569443785 0.09770945578082652 0.12070603920334336 C 0.09771048126301862 0.12086380569443785 0.09771612141507523 0.12173152139545734 0.09771560867397917 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09771560867397917 0.12165263814991012 C 0.09770059083497497 0.12168889442051162 0.09748412049632295 0.12213898750673383 0.09753539460592865 0.12208771339712812 C 0.09748412049632295 0.12213898750673383 0.09702780681750767 0.12226792746517864 0.09710031935871066 0.12226792746517864 C 0.09702780681750767 0.12226792746517864 0.09661397000188697 0.12203643928752242 0.09666524411149267 0.12208771339712812 C 0.09661397000188697 0.12203643928752242 0.09647001220443795 0.12161638187930862 0.09648503004344215 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09648503004344215 0.12165263814991012 C 0.0964855427845382 0.1215737549043629 0.09649220841878696 0.12054827271224887 0.09649118293659484 0.12070603920334336 C 0.09649220841878696 0.12054827271224887 0.09649784857084359 0.11968055701122907 0.09649733582974754 0.11975944025677632" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192027,0.06249570532918802) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.0965093955003268 0.119797304214639 C 0.09651599289910356 0.11977268238720634 0.09661318611308059 0.11945919602935852 0.09658856428564792 0.11950184228544708 C 0.09661318611308059 0.11945919602935852 0.09684750368560731 0.11926092731414362 0.09680485742951875 0.11928554914157627 C 0.09684750368560731 0.11926092731414362 0.097149563013576 0.11920638035625516 0.09710031935871068 0.11920638035625516 C 0.097149563013576 0.11920638035625516 0.09743842754399118 0.11931017096900892 0.09739578128790262 0.11928554914157627 C 0.09743842754399118 0.11931017096900892 0.0976366962592061 0.11954448854153564 0.09761207443177343 0.11950184228544708 C 0.0976366962592061 0.11954448854153564 0.09769784061587132 0.11982192604207165 0.09769124321709456 0.119797304214639" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09769124321709456 0.119797304214639 C 0.0976917457033687 0.1198746097952753 0.09769827802493249 0.12087958234354727 0.09769727305238421 0.12072497118227468 C 0.09769827802493249 0.12087958234354727 0.09770380537394795 0.12172994373054641 0.09770330288767382 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09770330288767382 0.12165263814991012 C 0.0976885854054497 0.12168816929509958 0.09747644447357072 0.12212926051959733 0.09752669310098432 0.12207901189218373 C 0.09747644447357072 0.12212926051959733 0.09702925706833174 0.12225562167887324 0.09710031935871068 0.12225562167887324 C 0.09702925706833174 0.12225562167887324 0.09662369698902346 0.12202876326477013 0.09667394561643705 0.12207901189218373 C 0.09662369698902346 0.12202876326477013 0.09648261834752342 0.12161710700472066 0.09649733582974754 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09649733582974754 0.12165263814991012 C 0.09649783831602167 0.12157533256927383 0.09650437063758543 0.12057036002100209 0.09650336566503716 0.12072497118227468 C 0.09650437063758543 0.12057036002100209 0.09650989798660094 0.11971999863400269 0.0965093955003268 0.119797304214639" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192028,0.0606403713939169) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09652121397749447 0.11983441089334446 C 0.0965276794282957 0.11981028150246045 0.09662292877799318 0.11950306487176957 0.09659879938710918 0.11954485820273636 C 0.09662292877799318 0.11950306487176957 0.09685255999906937 0.11930876153085895 0.09681076666810258 0.11933289092174296 C 0.09685255999906937 0.11930876153085895 0.0971485781404787 0.11925530551212826 0.09710031935871068 0.11925530551212826 C 0.0971485781404787 0.11925530551212826 0.09743166538028558 0.11935702031262696 0.09738987204931879 0.11933289092174296 C 0.09743166538028558 0.11935702031262696 0.09762596872119618 0.11958665153370315 0.09760183933031218 0.11954485820273636 C 0.09762596872119618 0.11958665153370315 0.09768589019072811 0.11985854028422846 0.09767942473992688 0.11983441089334446" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09767942473992688 0.11983441089334446 C 0.09767991717647553 0.11991017036236803 0.09768631885160803 0.12089504345967454 0.09768533397851072 0.1207435245216274 C 0.09768631885160803 0.12089504345967454 0.09769173565364321 0.12172839761893368 0.09769124321709456 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09769124321709456 0.12165263814991012 C 0.09767682008451492 0.1216874586721958 0.09746892197127352 0.1221197280722036 0.09751816562613884 0.12207048441733828 C 0.09746892197127352 0.1221197280722036 0.09703067831413932 0.12224356200829398 0.09710031935871068 0.12224356200829398 C 0.09703067831413932 0.12224356200829398 0.0966332294364172 0.12202124076247296 0.09668247309128251 0.12207048441733828 C 0.0966332294364172 0.12202124076247296 0.09649497236774716 0.12161781762762444 0.0965093955003268 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0965093955003268 0.12165263814991012 C 0.09650988793687545 0.12157687868088655 0.09651628961200792 0.12059200558358026 0.09651530473891062 0.1207435245216274 C 0.09651628961200792 0.12059200558358026 0.09652170641404312 0.11975865142432088 0.09652121397749447 0.11983441089334446" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920294,0.058822144137351234) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.0965327960851188 0.11987077543847577 C 0.09653913222690401 0.11984712863540944 0.09663247658960752 0.11954605633733237 0.0966088297865412 0.11958701380167983 C 0.09663247658960752 0.11954605633733237 0.09685751518626219 0.11935563906324001 0.09681655772191473 0.11937928586630633 C 0.09685751518626219 0.11935563906324001 0.09714761296484332 0.11930325216488391 0.09710031935871066 0.11930325216488391 C 0.09714761296484332 0.11930325216488391 0.09742503845985406 0.11940293266937263 0.0973840809955066 0.1193792858663063 C 0.09742503845985406 0.11940293266937263 0.09761545573394648 0.11962797126602728 0.09759180893088015 0.11958701380167983 C 0.09761545573394648 0.11962797126602728 0.09767417877408775 0.11989442224154209 0.09766784263230255 0.11987077543847577" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09766784263230255 0.11987077543847577 C 0.09766832522012023 0.11994501971811887 0.09767459886175009 0.12091019535347924 0.09767363368611473 0.12076170679419304 C 0.09767459886175009 0.12091019535347924 0.09767990732774456 0.12172688242955321 0.09767942473992688 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09767942473992688 0.12165263814991012 C 0.09766529006999883 0.12168676226175008 0.09746154991902226 0.12211038627375774 0.09750980870079028 0.12206212749198972 C 0.09746154991902226 0.12211038627375774 0.09703207113503075 0.12223174353112634 0.09710031935871068 0.12223174353112634 C 0.09703207113503075 0.12223174353112634 0.09664257123486307 0.1220138687102217 0.09669083001663109 0.12206212749198972 C 0.09664257123486307 0.1220138687102217 0.09650707930756641 0.12161851403807016 0.09652121397749447 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09652121397749447 0.12165263814991012 C 0.09652169656531215 0.12157839387026703 0.09652797020694198 0.12061321823490684 0.09652700503130662 0.12076170679419304 C 0.09652797020694198 0.12061321823490684 0.09653327867293648 0.11979653115883267 0.0965327960851188 0.11987077543847577" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920305,0.05704028142591688) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09654414655059064 0.11990641269270447 C 0.09655035596954013 0.11988323882569947 0.09664183344498958 0.11958818797358395 0.09661865957798459 0.11962832628864445 C 0.09664183344498958 0.11958818797358395 0.09686237126971117 0.11940157904497338 0.09682223295465066 0.11942475291197838 C 0.09686237126971117 0.11940157904497338 0.09714666709272068 0.11935023988458443 0.09710031935871068 0.11935023988458443 C 0.09714666709272068 0.11935023988458443 0.09741854407783121 0.11944792677898337 0.09737840576277071 0.11942475291197838 C 0.09741854407783121 0.11944792677898337 0.09760515300644176 0.11966846460370495 0.09758197913943677 0.11962832628864445 C 0.09760515300644176 0.11966846460370495 0.09766270158578022 0.11992958655970946 0.09765649216683073 0.11990641269270447" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09765649216683073 0.11990641269270447 C 0.09765696510289205 0.11997917208675471 0.09766311327168932 0.12092504420940788 0.09766216739956667 0.1207795254213074 C 0.09766311327168932 0.12092504420940788 0.09766831556836388 0.12172539754396035 0.09766784263230255 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09766784263230255 0.12165263814991012 C 0.09765399065577306 0.12168607977951329 0.09745432530781602 0.1221012313112808 0.09750161891394868 0.12205393770514814 C 0.09745432530781602 0.1221012313112808 0.09703343609950435 0.122220161423502 0.09710031935871068 0.122220161423502 C 0.09703343609950435 0.122220161423502 0.09665172619734001 0.12200664409901547 0.09669901980347267 0.12205393770514814 C 0.09665172619734001 0.12200664409901547 0.09651894410858931 0.12161919652030695 0.0965327960851188 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0965327960851188 0.12165263814991012 C 0.09653326902118013 0.12157987875585989 0.09653941718997736 0.12063400663320693 0.0965384713178547 0.1207795254213074 C 0.09653941718997736 0.12063400663320693 0.09654461948665197 0.11983365329865422 0.09654414655059064 0.11990641269270447" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920316,0.05529405596871123) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09655527000675304 0.1199413372018486 C 0.09656135523732355 0.1199186268121837 0.09665100316326403 0.11962947697711049 0.09662829277359912 0.11966881252586978 C 0.09665100316326403 0.11962947697711049 0.09686713023149116 0.11944660022707214 0.09682779468273187 0.11946931061673705 C 0.09686713023149116 0.11944660022707214 0.09714574013804048 0.11939628784989095 0.09710031935871068 0.11939628784989095 C 0.09714574013804048 0.11939628784989095 0.0974121795834488 0.11949202100640195 0.0973728440346895 0.11946931061673705 C 0.0974121795834488 0.11949202100640195 0.09759505633348714 0.11970814807462907 0.09757234594382223 0.11966881252586978 C 0.09759505633348714 0.11970814807462907 0.09765145394123882 0.11996404759151351 0.09764536871066831 0.1199413372018486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09764536871066831 0.1199413372018486 C 0.09764583218800842 0.12001264140801784 0.09765185739342974 0.12093959608821792 0.09765093043874955 0.12079698767587946 C 0.09765185739342974 0.12093959608821792 0.09765695564417083 0.12172394235607933 0.09765649216683073 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09765649216683073 0.12165263814991012 C 0.09764291722983183 0.12168541094692123 0.09744724518883391 0.1220922594480534 0.09749359292284392 0.12204591171404339 C 0.09744724518883391 0.1220922594480534 0.09703477376468847 0.12220881095803016 0.09710031935871068 0.12220881095803016 C 0.09703477376468847 0.12220881095803016 0.09666069806056742 0.12199956398003338 0.09670704579457742 0.12204591171404339 C 0.09666069806056742 0.12199956398003338 0.09653057161359174 0.12161986535289901 0.09654414655059064 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09654414655059064 0.12165263814991012 C 0.09654461002793074 0.1215813339437409 0.09655063523335203 0.120654379263541 0.09654970827867183 0.12079698767587946 C 0.09655063523335203 0.120654379263541 0.09655573348409315 0.11987003299567936 0.09655527000675304 0.1199413372018486" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920327,0.053582755020649714) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09656617099379221 0.11997556322080982 C 0.0965721345197513 0.11995330703893822 0.09665998948717297 0.1196699402005665 0.09663773330530137 0.1197084890383506 C 0.09665998948717297 0.1196699402005665 0.09687179401403555 0.1194907209855289 0.09683324517625144 0.1195129771674005 C 0.09687179401403555 0.1194907209855289 0.09714483172245389 0.11944141485589133 0.09710031935871068 0.11944141485589133 C 0.09714483172245389 0.11944141485589133 0.09740594237895403 0.1195352333492721 0.09736739354116992 0.1195129771674005 C 0.09740594237895403 0.1195352333492721 0.09758516159399161 0.11974703787613468 0.09756290541212001 0.11970848903835057 C 0.09758516159399161 0.11974703787613468 0.09764043124958827 0.11999781940268142 0.09763446772362917 0.11997556322080982" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09763446772362917 0.11997556322080982 C 0.09763492193142247 0.12004544134285568 0.09764082663273536 0.1209538569294518 0.09763991821714876 0.12081410068536011 C 0.09764082663273536 0.1209538569294518 0.0976458229184616 0.12172251627195596 0.09764536871066831 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09764536871066831 0.12165263814991012 C 0.09763206527240939 0.121684755490981 0.09744030667223146 0.12208346702209048 0.09748572745156125 0.12203804624276068 C 0.09744030667223146 0.12208346702209048 0.0970360846765689 0.12219768750186774 0.09710031935871068 0.12219768750186774 C 0.0970360846765689 0.12219768750186774 0.0966694904865303 0.12199262546343088 0.0967149112658601 0.12203804624276068 C 0.0966694904865303 0.12199262546343088 0.09654196656849412 0.12162052080883924 0.09655527000675304 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09655527000675304 0.12165263814991012 C 0.09655572421454633 0.12158276002786428 0.09656162891585922 0.12067434444126841 0.09656072050027262 0.12081410068536011 C 0.09656162891585922 0.12067434444126841 0.0965666252015855 0.11990568509876397 0.09656617099379221 0.11997556322080982" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192034,0.05190568009154942) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09657685396109057 0.12000910471939183 C 0.09658269821653048 0.11998729366115767 0.0966687960846037 0.11970959415955337 0.09664698502636954 0.1197473720205818 C 0.0966687960846037 0.11970959415955337 0.09687636452092904 0.11953395932881655 0.09683858665990061 0.11955577038705073 C 0.09687636452092904 0.11953395932881655 0.097143941475179 0.11948563932177172 0.09710031935871066 0.11948563932177172 C 0.097143941475179 0.11948563932177172 0.09739982991854916 0.11957758144528488 0.09736205205752073 0.1195557703870507 C 0.09739982991854916 0.11957758144528488 0.09757546474928598 0.11978514988161021 0.0975536536910518 0.11974737202058178 C 0.09757546474928598 0.11978514988161021 0.09762962901177072 0.12003091577762601 0.09762378475633081 0.12000910471939183" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09762378475633081 0.12000910471939183 C 0.09762422987996824 0.12007758527899677 0.09763001648725489 0.12096783255386095 0.09762912623998002 0.1208308714346511 C 0.09763001648725489 0.12096783255386095 0.09763491284726661 0.12172111870951503 0.09763446772362917 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09763446772362917 0.12165263814991012 C 0.09762143035413542 0.12168411314415958 0.09743350692596106 0.1220748504446469 0.09747801928970426 0.12203033808090369 C 0.09743350692596106 0.1220748504446469 0.09703736937021178 0.12218678651482862 0.0971003193587107 0.12218678651482862 C 0.09703736937021178 0.12218678651482862 0.09667810706397391 0.12198582571716048 0.09672261942771712 0.12203033808090369 C 0.09667810706397391 0.12198582571716048 0.09655313362429846 0.12162116315566066 0.09656617099379221 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09656617099379221 0.12165263814991012 C 0.09656661611742964 0.1215841575903052 0.09657240272471623 0.12069391031544124 0.09657151247744136 0.1208308714346511 C 0.09657240272471623 0.12069391031544124 0.09657729908472801 0.11994062415978689 0.09657685396109057 0.12000910471939183" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192035,0.050262146661031126) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09658732326904297 0.12004197538800221 C 0.09659305063937408 0.12002060055093272 0.09667742655008585 0.11974845503936049 0.09665605171301636 0.11978547734316836 C 0.09667742655008585 0.11974845503936049 0.09688084361768469 0.11957633290523842 0.09684382131387682 0.11959770774230791 C 0.09688084361768469 0.11957633290523842 0.09714306903284965 0.1195289792983345 0.09710031935871068 0.1195289792983345 C 0.09714306903284965 0.1195289792983345 0.0973938397073524 0.1196190825793774 0.09735681740354453 0.11959770774230791 C 0.0973938397073524 0.1196190825793774 0.09756596184147448 0.11982249964697622 0.09754458700440499 0.11978547734316836 C 0.09756596184147448 0.11982249964697622 0.0976190428187095 0.1200633502250717 0.0976133154483784 0.12004197538800221" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0976133154483784 0.12004197538800221 C 0.09761375166954309 0.12010908633641505 0.09761942254468399 0.12098152866578193 0.09761855010235462 0.12084730676895628 C 0.09761942254468399 0.12098152866578193 0.09762422097749548 0.12171974909832294 0.09762378475633081 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09762378475633081 0.12165263814991012 C 0.09761100813422693 0.12168348364427459 0.09742684317461603 0.12206640619875216 0.09747046529108437 0.12202278408228381 C 0.09742684317461603 0.12206640619875216 0.09703862836998173 0.12217610354753025 0.09710031935871068 0.12217610354753025 C 0.09703862836998173 0.12217610354753025 0.09668655130986864 0.12197916196581547 0.09673017342633698 0.12202278408228381 C 0.09668655130986864 0.12197916196581547 0.0965640773389867 0.12162179265554565 0.09657685396109057 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09657685396109057 0.12165263814991012 C 0.09657729018225525 0.1215855272014973 0.09658296105739614 0.12071308487213062 0.09658208861506677 0.12084730676895628 C 0.09658296105739614 0.12071308487213062 0.09658775949020765 0.11997486443958937 0.09658732326904297 0.12004197538800221" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192036,0.048651483899123216) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09659758319083633 0.12007418864324038 C 0.09660319601376083 0.12005324130291228 0.09668588440625836 0.11978653870157151 0.09666493706593027 0.11982282055930321 C 0.09668588440625836 0.11978653870157151 0.09688523313250522 0.11961785901013189 0.09684895127477351 0.11963880635045998 C 0.09688523313250522 0.11961785901013189 0.09714221403936688 0.11957145247536605 0.09710031935871068 0.11957145247536605 C 0.09714221403936688 0.11957145247536605 0.09738796930037956 0.11965975369078807 0.09735168744264786 0.11963880635045998 C 0.09738796930037956 0.11965975369078807 0.09755664899181919 0.11985910241703492 0.0975357016514911 0.11982282055930321 C 0.09755664899181919 0.11985910241703492 0.09760866834950953 0.12009513598356847 0.09760305552658503 0.12007418864324038" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09760305552658503 0.12007418864324038 C 0.09760348302332643 0.12013995737268496 0.09760904048096453 0.12099495085546454 0.09760818548748175 0.12086341339657539 C 0.09760904048096453 0.12099495085546454 0.09761374294511978 0.12171840687935467 0.0976133154483784 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0976133154483784 0.12165263814991012 C 0.0976007943587166 0.1216828667343873 0.09742031269829793 0.12205813083777531 0.0974630623724369 0.12201538116363633 C 0.09742031269829793 0.12205813083777531 0.09703986218975631 0.12216563423957785 0.09710031935871068 0.12216563423957785 C 0.09703986218975631 0.12216563423957785 0.09669482667084549 0.12197263148949736 0.09673757634498446 0.12201538116363633 C 0.09669482667084549 0.12197263148949736 0.09657480217938118 0.12162240956543294 0.09658732326904297 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09658732326904297 0.12165263814991012 C 0.09658775076578437 0.12158686942046557 0.09659330822342242 0.12073187593768624 0.09659245322993965 0.12086341339657539 C 0.09659330822342242 0.12073187593768624 0.09659801068757773 0.1200084199137958 0.09659758319083633 0.12007418864324038" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192037,0.04707303439245347) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09660763791419381 0.12010575763337378 C 0.09661313848065982 0.12008522923985224 0.09669417310530741 0.11982386069053828 0.09667364471178587 0.11985941691111535 C 0.09669417310530741 0.11982386069053828 0.09688953485702931 0.11965855459292743 0.09685397863645225 0.11967908298644897 C 0.09688953485702931 0.11965855459292743 0.09714137614575377 0.11961307618885691 0.0971003193587107 0.11961307618885691 C 0.09714137614575377 0.11961307618885691 0.0973822163015462 0.11969961137997051 0.09734666008096914 0.11967908298644897 C 0.0973822163015462 0.11969961137997051 0.09754752239915707 0.11989497313169241 0.09752699400563553 0.11985941691111535 C 0.09754752239915707 0.11989497313169241 0.09759850136969359 0.12012628602689532 0.09759300080322758 0.12010575763337378" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09759300080322758 0.12010575763337378 C 0.09759341975003415 0.12017021098822947 0.09759886605851945 0.12100810460135344 0.09759802816490633 0.12087919789164209 C 0.09759886605851945 0.12100810460135344 0.0976034744733916 0.12171709150476578 0.09760305552658503 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09760305552658503 0.12165263814991012 C 0.09759078485871647 0.12168226216269776 0.09741391283150619 0.12205002098401803 0.09745580751216239 0.12200812630336183 C 0.09741391283150619 0.12205002098401803 0.09704107133313539 0.12215537431778448 0.09710031935871068 0.12215537431778448 C 0.09704107133313539 0.12215537431778448 0.09670293652460278 0.12196623162270563 0.09674483120525898 0.12200812630336183 C 0.09670293652460278 0.12196623162270563 0.09658531252296779 0.12162301413712248 0.09659758319083633 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09659758319083633 0.12165263814991012 C 0.0965980021376429 0.12158818479505445 0.0966034484461282 0.12075029118193073 0.09660261055251508 0.12087919789164209 C 0.0966034484461282 0.12075029118193073 0.09660805686100038 0.12004130427851809 0.09660763791419381 0.12010575763337378" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192038,0.04552615387591713) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09661749154308416 0.12013669524370452 C 0.09662288209822084 0.12011657741805341 0.09670229603037546 0.11986043623972573 0.09668217820472436 0.11989528133589125 C 0.09670229603037546 0.11986043623972573 0.09689375054706294 0.1196984362640671 0.09685890545089741 0.11971855408971821 C 0.09689375054706294 0.1196984362640671 0.09714055501001288 0.11965386742807799 0.09710031935871068 0.11965386742807799 C 0.09714055501001288 0.11965386742807799 0.09737657836268948 0.11973867191536929 0.09734173326652396 0.11971855408971818 C 0.09737657836268948 0.11973867191536929 0.09753857833834811 0.11993012643205678 0.09751846051269701 0.11989528133589125 C 0.09753857833834811 0.11993012643205678 0.09758853772947391 0.12015681306935562 0.09758314717433723 0.12013669524370452" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09758314717433723 0.12013669524370452 C 0.09758355774220767 0.12019985953146309 0.09758889512452329 0.12102099527232456 0.09758807398878243 0.12089466669680743 C 0.09758889512452329 0.12102099527232456 0.097593411371098 0.12171580243766868 0.09759300080322758 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09759300080322758 0.12165263814991012 C 0.09758097554871639 0.12168166968244201 0.0974076409620503 0.12204207332733588 0.09744869774909337 0.1220010165402928 C 0.0974076409620503 0.12204207332733588 0.09704225629364692 0.12214531959442701 0.0971003193587107 0.12214531959442701 C 0.09704225629364692 0.12214531959442701 0.09671088418128496 0.12195995975324972 0.09675194096832802 0.1220010165402928 C 0.09671088418128496 0.12195995975324972 0.09659561265968263 0.12162360661737823 0.09660763791419381 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09660763791419381 0.12165263814991012 C 0.09660804848206425 0.12158947386215156 0.09661338586437986 0.1207683381212903 0.096612564728639 0.12089466669680743 C 0.09661338586437986 0.1207683381212903 0.09661790211095458 0.12007353095594595 0.09661749154308416 0.12013669524370452" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920394,0.04401021096971153) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09662714809939668 0.12016701410182862 C 0.09663243084343064 0.12014729863269054 0.09671025649694218 0.11989628027792942 0.0966905410278041 0.11993042847217164 C 0.09671025649694218 0.11989628027792942 0.09689788192329593 0.11973752030178396 0.09686373372905371 0.11975723577092204 C 0.09689788192329593 0.11973752030178396 0.09713975029698688 0.11969384284251464 0.0971003193587107 0.11969384284251464 C 0.09713975029698688 0.11969384284251464 0.09737105318260991 0.11977695124006012 0.0973369049883677 0.11975723577092204 C 0.09737105318260991 0.11977695124006012 0.09752981315875536 0.11996457666641386 0.09751009768961728 0.11993042847217164 C 0.09752981315875536 0.11996457666641386 0.09757877336205865 0.1201867295709667 0.0975734906180247 0.12016701410182862" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0975734906180247 0.12016701410182862 C 0.09757389297453772 0.12022891510383202 0.09757912360920704 0.12103362812987627 0.09757831889618099 0.12090982612586948 C 0.09757912360920704 0.12103362812987627 0.09758354953085026 0.1217145391519135 0.09758314717433723 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09758314717433723 0.12165263814991012 C 0.09757136242491628 0.12168108905179137 0.0974014945299835 0.12203428462378732 0.09744173018128571 0.12199404897248511 C 0.0974014945299835 0.12203428462378732 0.0970434175549482 0.12213546596553668 0.0971003193587107 0.12213546596553668 C 0.0970434175549482 0.12213546596553668 0.09671867288483348 0.12195381332118291 0.09675890853613568 0.12199404897248511 C 0.09671867288483348 0.12195381332118291 0.0966057067936632 0.12162418724802887 0.09661749154308416 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09661749154308416 0.12165263814991012 C 0.09661789389959718 0.12159073714790673 0.09662312453426647 0.12078602412186269 0.09662231982124042 0.12090982612586948 C 0.09662312453426647 0.12078602412186269 0.0966275504559097 0.12010511309982522 0.09662714809939668 0.12016701410182862" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920405,0.042524586921630025) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09663661152458297 0.12019672658279026 C 0.09664178861373625 0.12017740542303494 0.09671805775417755 0.11993140743536905 0.09669873659442223 0.11996487266572642 C 0.09671805775417755 0.11993140743536905 0.0969019306720042 0.11977582265874649 0.09686846544164683 0.11979514381850181 C 0.0969019306720042 0.11977582265874649 0.09713896167822135 0.11973301874866255 0.0971003193587107 0.11973301874866255 C 0.09713896167822135 0.11973301874866255 0.09736563850613193 0.11981446497825714 0.09733217327577456 0.11979514381850181 C 0.09736563850613193 0.11981446497825714 0.09752122328275449 0.11999833789608379 0.09750190212299917 0.11996487266572642 C 0.09752122328275449 0.11999833789608379 0.09756920428199167 0.12021604774254559 0.09756402719283841 0.12019672658279026" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09756402719283841 0.12019672658279026 C 0.09756442150222118 0.1202573895647536 0.09756954752419711 0.12104600833027697 0.09756875890543158 0.12092468236635032 C 0.09756954752419711 0.12104600833027697 0.09757388492740746 0.12171330113187344 0.0975734906180247 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0975734906180247 0.12165263814991012 C 0.09756194156359216 0.12168052003375375 0.09739547102655803 0.12202665169430983 0.0974349019648342 0.12198722075603366 C 0.09739547102655803 0.12202665169430983 0.09704455559102346 0.12212580940922416 0.0971003193587107 0.12212580940922416 C 0.09704455559102346 0.12212580940922416 0.096726305814311 0.12194778981775749 0.09676573675258718 0.12198722075603366 C 0.096726305814311 0.12194778981775749 0.09661559904496414 0.12162475626606649 0.09662714809939668 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09662714809939668 0.12165263814991012 C 0.09662754240877944 0.1215919751679468 0.09663266843075537 0.12080335640242366 0.09663187981198984 0.12092468236635032 C 0.09663266843075537 0.12080335640242366 0.09663700583396573 0.12013606360082693 0.09663661152458297 0.12019672658279026" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920416,0.04106867535451017) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09664588568126553 0.12022584481413268 C 0.09665095922863573 0.12020691007757246 0.09672570298626822 0.11996583204965988 0.096706768249708 0.11999862797541011 C 0.09672570298626822 0.11996583204965988 0.09690589844573835 0.11981335896856977 0.09687310251998812 0.11983229370512999 C 0.09690589844573835 0.11981335896856977 0.09713818883183113 0.11977141113668752 0.0971003193587107 0.11977141113668752 C 0.09713818883183113 0.11977141113668752 0.0973603321231835 0.1198512284416902 0.09732753619743327 0.11983229370512999 C 0.0973603321231835 0.1198512284416902 0.0975128052042736 0.12003142390116034 0.09749387046771339 0.11999862797541011 C 0.0975128052042736 0.12003142390116034 0.09755982658352608 0.12024477955069289 0.09755475303615586 0.12022584481413268" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09755475303615586 0.12022584481413268 C 0.09755513945935097 0.12028529453645674 0.09756016296088739 0.12105814092666962 0.09755939011449717 0.12093924148202151 C 0.09756016296088739 0.12105814092666962 0.09756441361603352 0.12171208787223417 0.09756402719283841 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09756402719283841 0.12165263814991012 C 0.09755270911949451 0.12167996239607687 0.09738956799320109 0.12201917142342181 0.09742821031271173 0.12198052910391116 C 0.09738956799320109 0.12201917142342181 0.09704567086637719 0.12211634598403784 0.0971003193587107 0.12211634598403784 C 0.09704567086637719 0.12211634598403784 0.096733786085199 0.12194188678440052 0.09677242840470965 0.12198052910391116 C 0.096733786085199 0.12194188678440052 0.09662529345123907 0.12162531390374337 0.09663661152458297 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09663661152458297 0.12165263814991012 C 0.09663699794777808 0.12159318842758607 0.09664202144931447 0.1208203420373734 0.09664124860292425 0.12093924148202151 C 0.09664202144931447 0.1208203420373734 0.09664627210446064 0.12016639509180861 0.09664588568126553 0.12022584481413268" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920427,0.03964188201873273) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09665497435481442 0.12025438068084823 C 0.09665994643123722 0.12023582463901922 0.09673319531371705 0.11999956817166485 0.09671463927188803 0.12003170817890008 C 0.09673319531371705 0.11999956817166485 0.09690978686399779 0.11985014455219656 0.09687764685676256 0.11986870059402557 C 0.09690978686399779 0.11985014455219656 0.09713743144236872 0.11980903567695197 0.0971003193587107 0.11980903567695197 C 0.09713743144236872 0.11980903567695197 0.09735513186789406 0.11988725663585459 0.09732299186065883 0.11986870059402557 C 0.09735513186789406 0.11988725663585459 0.09750455548736237 0.1200638481861353 0.09748599944553335 0.12003170817890008 C 0.09750455548736237 0.1200638481861353 0.09755063643902977 0.12027293672267725 0.09754566436260696 0.12025438068084823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09754566436260696 0.12025438068084823 C 0.09754604305733817 0.12031264140872582 0.09755096608884385 0.12107003087113444 0.09755020869938144 0.12095350941537927 C 0.09755096608884385 0.12107003087113444 0.09755513173088706 0.12171089887778769 0.09755475303615586 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09755475303615586 0.12165263814991012 C 0.09754366132427886 0.12167941591115354 0.09738378302051129 0.12201184075795157 0.09742165249363172 0.12197397128483115 C 0.09738378302051129 0.12201184075795157 0.09704676383622386 0.12210707182735528 0.0971003193587107 0.12210707182735528 C 0.09704676383622386 0.12210707182735528 0.09674111675066925 0.12193610181171072 0.09677898622378968 0.12197397128483115 C 0.09674111675066925 0.12193610181171072 0.09663479396938852 0.1216258603886667 0.09664588568126553 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09664588568126553 0.12165263814991012 C 0.09664626437599674 0.12159437742203255 0.0966511874075024 0.12083698795962411 0.09665043001804 0.12095350941537927 C 0.0966511874075024 0.12083698795962411 0.09665535304954562 0.12019611995297065 0.09665497435481442 0.12025438068084823" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192044,0.03824362454967084) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09666388125489235 0.12028234583022951 C 0.0966687538897867 0.12026416090923708 0.09674053779461692 0.1200326295712298 0.09672235287362449 0.12006412677832032 C 0.09674053779461692 0.1200326295712298 0.09691359751389204 0.11988619442415085 0.09688210030680153 0.11990437934514328 C 0.09691359751389204 0.11988619442415085 0.09713668920069557 0.11984590772641115 0.0971003193587107 0.11984590772641115 C 0.09713668920069557 0.11984590772641115 0.09735003561771038 0.1199225642661357 0.09731853841061987 0.11990437934514328 C 0.09735003561771038 0.1199225642661357 0.09749647076478933 0.12009562398541083 0.0974782858437969 0.12006412677832032 C 0.09749647076478933 0.12009562398541083 0.09754163009742338 0.12030053075122193 0.09753675746252903 0.12028234583022951" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09753675746252903 0.12028234583022951 C 0.0975371285833656 0.12033944134354954 0.09754195315424118 0.12108168301670998 0.09754121091256801 0.12096749199006993 C 0.09754195315424118 0.12108168301670998 0.09754603548344354 0.12170973366323014 0.09754566436260696 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09754566436260696 0.12165263814991012 C 0.09753479448496749 0.12167888035592866 0.09737811374727529 0.12200465670579078 0.0974152258309333 0.12196754462213275 C 0.09737811374727529 0.12200465670579078 0.0970478349466736 0.1220979831538064 0.0971003193587107 0.1220979831538064 C 0.0970478349466736 0.1220979831538064 0.09674830080283006 0.12193043253847471 0.09678541288648809 0.12196754462213275 C 0.09674830080283006 0.12193043253847471 0.09664410447717495 0.12162639594389157 0.09665497435481442 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09665497435481442 0.12165263814991012 C 0.096655345475651 0.1215955426365901 0.09666017004652656 0.12085330096342987 0.0966594278048534 0.12096749199006993 C 0.09666017004652656 0.12085330096342987 0.09666425237572893 0.12022525031690948 0.09666388125489235 0.12028234583022951" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192045,0.03687333222999023) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09667261001696871 0.12030975167662308 C 0.09667738519916518 0.12029193045405051 0.0967477334258988 0.12006502974280342 0.09672991220332622 0.12009589700575213 C 0.0967477334258988 0.12006502974280342 0.09691733195078842 0.11992152329866608 0.09688646468783971 0.11993934452123867 C 0.09691733195078842 0.11992152329866608 0.09713596180385584 0.11988204233488112 0.09710031935871068 0.11988204233488112 C 0.09713596180385584 0.11988204233488112 0.09734504129253038 0.11995716574381123 0.09731417402958167 0.11993934452123864 C 0.09734504129253038 0.11995716574381123 0.09748854773666775 0.12012676426870084 0.09747072651409516 0.12009589700575213 C 0.09748854773666775 0.12012676426870084 0.09753280388264914 0.12032757289919566 0.09752802870045267 0.12030975167662308" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09752802870045267 0.12030975167662308 C 0.09752839239887252 0.12036570527967672 0.09753312047833057 0.12109310211937395 0.09753239308149088 0.1209811949132667 C 0.09753312047833057 0.12109310211937395 0.09753712116094887 0.12170859175296374 0.09753675746252903 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09753675746252903 0.12165263814991012 C 0.09752610498244235 0.1216783555118083 0.09737255785950398 0.12199761633467314 0.09740892770148885 0.12196124649268827 C 0.09737255785950398 0.12199761633467314 0.09704888463491435 0.12208907625372847 0.0971003193587107 0.12208907625372847 C 0.09704888463491435 0.12208907625372847 0.09675534117394768 0.12192487665070341 0.09679171101593255 0.12196124649268827 C 0.09675534117394768 0.12192487665070341 0.09665322877480567 0.12162692078801193 0.09666388125489235 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09666388125489235 0.12165263814991012 C 0.0966642449533122 0.1215966845468565 0.09666897303277025 0.12086928770715945 0.09666824563593056 0.1209811949132667 C 0.09666897303277025 0.12086928770715945 0.09667297371538855 0.12025379807356945 0.09667261001696871 0.12030975167662308" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192046,0.035530445756703194) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09668116420380357 0.12033660940608887 C 0.0966858438823561 0.12031914460796773 0.09675478514455507 0.12009678191094553 0.09673732034643394 0.12012703182863527 C 0.09675478514455507 0.12009678191094553 0.09692099169894687 0.11995614559569094 0.09689074178125714 0.11997361039381207 C 0.09692099169894687 0.11995614559569094 0.09713524895495299 0.11991745425118172 0.09710031935871072 0.11991745425118172 C 0.09713524895495299 0.11991745425118172 0.09734014685385402 0.11999107519193321 0.09730989693616429 0.11997361039381207 C 0.09734014685385402 0.11999107519193321 0.09748078316910863 0.120157281746325 0.0974633183709875 0.12012703182863527 C 0.09748078316910863 0.120157281746325 0.09752415419217036 0.12035407420421 0.09751947451361784 0.12033660940608887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09751947451361784 0.12033660940608887 C 0.09751983093806929 0.12039144393708143 0.09752446445593818 0.12110429283998468 0.09752375160703528 0.12099462377799958 C 0.09752446445593818 0.12110429283998468 0.09752838512490412 0.12170747268090266 0.09752802870045267 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09752802870045267 0.12165263814991012 C 0.09751758926996772 0.12167784116457034 0.09736711308948813 0.12199071677097786 0.09740275553463329 0.12195507432583269 C 0.09736711308948813 0.12199071677097786 0.09704991332939027 0.12208034749165211 0.0971003193587107 0.12208034749165211 C 0.09704991332939027 0.12208034749165211 0.09676224073764295 0.12191943188068752 0.0967978831827881 0.12195507432583269 C 0.09676224073764295 0.12191943188068752 0.09666217058648376 0.1216274351352499 0.09667261001696871 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09667261001696871 0.12165263814991012 C 0.09667296644142016 0.12159780361891757 0.09667759995928907 0.12088495471601447 0.09667688711038616 0.12099462377799958 C 0.09667759995928907 0.12088495471601447 0.09668152062825502 0.12028177487509631 0.09668116420380357 0.12033660940608887" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192047,0.03421441701288194) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09668954730690171 0.12036292998096529 C 0.0966941333918832 0.12034581447880659 0.09676169582883816 0.12012789903572488 0.09674458032667946 0.12015754395506081 C 0.09676169582883816 0.12012789903572488 0.09692457825214214 0.11999007544677531 0.0968949333328062 0.12000719094893403 C 0.09692457825214214 0.11999007544677531 0.09713455036302814 0.11995215792915631 0.09710031935871072 0.11995215792915631 C 0.09713455036302814 0.11995215792915631 0.09733535030395113 0.12002430645109274 0.0973057053846152 0.12000719094893403 C 0.09733535030395113 0.12002430645109274 0.09747317389290067 0.12018718887439675 0.09745605839074196 0.12015754395506081 C 0.09747317389290067 0.12018718887439675 0.09751567749550118 0.12038004548312399 0.0975110914105197 0.12036292998096529" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0975110914105197 0.12036292998096529 C 0.09751144070648211 0.120416667821338 0.09751598155399362 0.12111525974618323 0.09751528296206877 0.12100778406543783 C 0.09751598155399362 0.12111525974618323 0.09751982380958026 0.1217063759902828 0.09751947451361784 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09751947451361784 0.12165263814991012 C 0.09750924387174259 0.12167733710427713 0.0973617772148726 0.12198395519855651 0.09739670681111486 0.12194902560231424 C 0.0973617772148726 0.12198395519855651 0.0970509214499767 0.12207179330481727 0.09710031935871072 0.12207179330481727 C 0.0970509214499767 0.12207179330481727 0.09676900231006431 0.12191409600607198 0.09680393190630658 0.12194902560231424 C 0.09676900231006431 0.12191409600607198 0.09667093356192832 0.12162793919554311 0.09668116420380357 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09668116420380357 0.12165263814991012 C 0.09668151349976599 0.12159890030953743 0.09668605434727749 0.12090030838469243 0.09668535575535264 0.12100778406543783 C 0.09668605434727749 0.12090030838469243 0.09668989660286413 0.12030919214059257 0.09668954730690171 0.12036292998096529" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192048,0.03292470884393711) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09669776274793788 0.1203887241443442 C 0.09670225711121974 0.12037195095222868 0.09676846829943561 0.12015839381800861 0.09675169510732008 0.12018744583895782 C 0.09676846829943561 0.12015839381800861 0.09692809307427351 0.12002332670083808 0.0968990410533243 0.12004009989295361 C 0.09692809307427351 0.12002332670083808 0.09713386574294178 0.11998616753357141 0.0971003193587107 0.11998616753357141 C 0.09713386574294178 0.11998616753357141 0.09733064968504633 0.12005687308506911 0.09730159766409711 0.12004009989295358 C 0.09733064968504633 0.12005687308506911 0.09746571680221686 0.12021649785990701 0.09744894361010133 0.1201874458389578 C 0.09746571680221686 0.12021649785990701 0.09750737033276538 0.12040549733645974 0.09750287596948352 0.1203887241443442" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09750287596948352 0.1203887241443442 C 0.0975032182795267 0.12044138722790945 0.09750766831008796 0.12112600731425774 0.09750698369000162 0.12102068114712725 C 0.09750766831008796 0.12112600731425774 0.09751143372056287 0.12170530123347537 0.0975110914105197 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0975110914105197 0.12165263814991012 C 0.09750106538148196 0.12167684312518978 0.09735654805774935 0.12197732885758357 0.09739077906206677 0.12194309785326615 C 0.09735654805774935 0.12197732885758357 0.09705190940815138 0.12206341020171912 0.09710031935871072 0.12206341020171912 C 0.09705190940815138 0.12206341020171912 0.09677562865103724 0.12190886684894874 0.09680985965535466 0.12194309785326615 C 0.09677562865103724 0.12190886684894874 0.09667952127786397 0.12162843317463046 0.09668954730690171 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09668954730690171 0.12165263814991012 C 0.09668988961694489 0.12159997506634487 0.09669433964750616 0.12091535497999675 0.09669365502741982 0.12102068114712725 C 0.09669433964750616 0.12091535497999675 0.09669810505798106 0.12033606106077896 0.09669776274793788 0.1203887241443442" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920494,0.0316607948383712) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09670581388015335 0.12041400242445555 C 0.09671021835616957 0.12039756469618232 0.09677510532062113 0.12018827870464663 0.0967586675923479 0.12021674968517687 C 0.09677510532062113 0.12018827870464663 0.09693153759996226 0.12005591292981949 0.09690306661943203 0.12007235065809271 C 0.09693153759996226 0.12005591292981949 0.09713319481525716 0.12001949694589817 0.09710031935871072 0.12001949694589817 C 0.09713319481525716 0.12001949694589817 0.09732604307851961 0.12008878838636594 0.09729757209798938 0.12007235065809271 C 0.09732604307851961 0.12008878838636594 0.09745840885334674 0.12024522066570711 0.09744197112507351 0.12021674968517687 C 0.09745840885334674 0.12024522066570711 0.0974992293132843 0.12043044015272877 0.09749482483726808 0.12041400242445555" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09749482483726808 0.12041400242445555 C 0.0974951603011104 0.1204656122463495 0.09749952133106043 0.1211365399309708 0.09749885040337582 0.12103332028718292 C 0.09749952133106043 0.1211365399309708 0.09750321143332583 0.12170424797180406 0.09750287596948352 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09750287596948352 0.12165263814991012 C 0.09749305046102653 0.1216763590256842 0.09735142348376856 0.12197083504343013 0.09738496986799963 0.12193728865919906 C 0.09735142348376856 0.12197083504343013 0.09705287760716257 0.12205519476068294 0.09710031935871072 0.12205519476068294 C 0.09705287760716257 0.12205519476068294 0.09678212246519072 0.12190374227496799 0.09681566884942179 0.12193728865919906 C 0.09678212246519072 0.12190374227496799 0.0966879372394809 0.12162891727413604 0.09669776274793788 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09669776274793788 0.12165263814991012 C 0.0966980982117802 0.12160102832801618 0.09670245924173025 0.12093010064339503 0.09670178831404563 0.12103332028718292 C 0.09670245924173025 0.12093010064339503 0.09670614934399567 0.1203623926025616 0.09670581388015335 0.12041400242445555" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920505,0.030422159112916625) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09671370398972451 0.12043877513896462 C 0.0967180203762204 0.12042266616525686 0.09678160960138292 0.12021756589355191 0.09676550062767517 0.12024546745447154 C 0.09678160960138292 0.12021756589355191 0.09693491323513724 0.12008784743422134 0.09690701167421761 0.12010395640792909 C 0.09693491323513724 0.12008784743422134 0.09713253730612624 0.12005215976997843 0.09710031935871072 0.12005215976997843 C 0.09713253730612624 0.12005215976997843 0.09732152860412345 0.12012006538163685 0.09729362704320382 0.12010395640792909 C 0.09732152860412345 0.12012006538163685 0.09745124706345401 0.12027336901539117 0.09743513808974626 0.12024546745447154 C 0.09745124706345401 0.12027336901539117 0.09749125111419284 0.12045488411267237 0.09748693472769694 0.12043877513896462" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09748693472769694 0.12043877513896462 C 0.0974872634822624 0.12048935276442069 0.09749153729161343 0.12114686189534964 0.0974908797824825 0.1210457066444375 C 0.09749153729161343 0.12114686189534964 0.09749515359183354 0.12170321577536616 0.09749482483726808 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09749482483726808 0.12165263814991012 C 0.09748519583898023 0.12167588460816872 0.09734640140126744 0.12196447110555975 0.09737927685781388 0.12193159564901329 C 0.09734640140126744 0.12196447110555975 0.09705382644219353 0.1220471436284675 0.09710031935871072 0.1220471436284675 C 0.09705382644219353 0.1220471436284675 0.0967884864030611 0.12189872019246684 0.09682136185960755 0.12193159564901329 C 0.0967884864030611 0.12189872019246684 0.0966961848818655 0.12162939169165152 0.09670581388015335 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09670581388015335 0.12165263814991012 C 0.09670614263471881 0.12160206052445408 0.09671041644406986 0.12094455139352538 0.09670975893493892 0.1210457066444375 C 0.09671041644406986 0.12094455139352538 0.09671403274428997 0.12038819751350854 0.09671370398972451 0.12043877513896462" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920516,0.02920829610197112) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09672143629710422 0.12046305239918353 C 0.0967256663558702 0.12044726560494994 0.09678798379652946 0.12024626733867905 0.09677219700229586 0.12027361086838029 C 0.09678798379652946 0.12024626733867905 0.0969382213576087 0.1201191432485351 0.09691087782790746 0.1201349300427687 C 0.0969382213576087 0.1201191432485351 0.09713189294717792 0.12008416933757704 0.0971003193587107 0.12008416933757704 C 0.09713189294717792 0.12008416933757704 0.09731710441921519 0.1201507168370023 0.09728976088951395 0.1201349300427687 C 0.09731710441921519 0.1201507168370023 0.09744422850935915 0.12030095439808153 0.09742844171512555 0.12027361086838029 C 0.09744422850935915 0.12030095439808153 0.09748343247908317 0.12047883919341713 0.0974792024203172 0.12046305239918353" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0974792024203172 0.12046305239918353 C 0.09747952459979135 0.12051261847213049 0.09748371293295538 0.12115697742044082 0.09748306857400707 0.12105784527454694 C 0.09748371293295538 0.12115697742044082 0.0974872569071711 0.12170220422285705 0.09748693472769694 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09748693472769694 0.12165263814991012 C 0.09747749830937485 0.12167541967900354 0.0973414797604163 0.12195823444644673 0.09737369770783182 0.1219260164990312 C 0.0973414797604163 0.12195823444644673 0.09705475630052386 0.12203925351889633 0.09710031935871072 0.12203925351889633 C 0.09705475630052386 0.12203925351889633 0.09679472306217408 0.12189379855161568 0.0968269410095896 0.1219260164990312 C 0.09679472306217408 0.12189379855161568 0.09670426757140242 0.1216298566208167 0.09671370398972451 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09671370398972451 0.12165263814991012 C 0.09671402616919866 0.12160307207696319 0.09671821450236268 0.12095871312865306 0.09671757014341437 0.12105784527454694 C 0.09671821450236268 0.12095871312865306 0.09672175847657838 0.12041348632623658 0.09672143629710422 0.12046305239918353" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920527,0.028018710351244536) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09672901395833637 0.12048684411419808 C 0.09673315941592703 0.12047137305584915 0.09679423050777314 0.1202743947549037 0.0967787594494242 0.12030119141401091 C 0.09679423050777314 0.1202743947549037 0.09694146331763077 0.12014981314656262 0.09691466665852357 0.12016528420491154 C 0.09694146331763077 0.12014981314656262 0.0971312614754086 0.12011553871382374 0.09710031935871073 0.12011553871382374 C 0.0971312614754086 0.12011553871382374 0.09731276871800511 0.12018075526326047 0.0972859720588979 0.12016528420491154 C 0.09731276871800511 0.12018075526326047 0.0974373503263462 0.12032798807311812 0.09742187926799727 0.12030119141401091 C 0.0974373503263462 0.12032798807311812 0.09747577021667575 0.120502315172547 0.0974716247590851 0.12048684411419808" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0974716247590851 0.12048684411419808 C 0.09747194049496977 0.12053541886568608 0.09747604506147048 0.12116689063503021 0.09747541358970113 0.12106974113205421 C 0.09747604506147048 0.12116689063503021 0.09747951815620187 0.12170121290139811 0.0974792024203172 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0974792024203172 0.12165263814991012 C 0.09746995473036155 0.12167496404842168 0.09733665655238218 0.121952122520516 0.09736823014084939 0.12192054893204879 C 0.09733665655238218 0.121952122520516 0.09705566756168761 0.12203152121151661 0.09710031935871072 0.12203152121151661 C 0.09705566756168761 0.12203152121151661 0.09680083498810482 0.12188897534358158 0.09683240857657203 0.12192054893204879 C 0.09680083498810482 0.12188897534358158 0.09671218860714857 0.12163031225139856 0.09672143629710422 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09672143629710422 0.12165263814991012 C 0.0967217520329889 0.12160406339842213 0.09672585659948964 0.12097259162907821 0.09672522512772029 0.12106974113205421 C 0.09672585659948964 0.12097259162907821 0.09672932969422104 0.12043826936271007 0.09672901395833637 0.12048684411419808" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920544,0.026852916315532493) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09673644006634385 0.12051015999491232 C 0.09674050261478269 0.12049499835773037 0.09680035228479186 0.12030195962280382 0.09678519064760992 0.12032822034872889 C 0.09680035228479186 0.12030195962280382 0.09694464043845236 0.12017986964662955 0.09691837971252729 0.12019503128381151 C 0.09694464043845236 0.12017986964662955 0.09713064263307464 0.12014628070254546 0.09710031935871073 0.12014628070254546 C 0.09713064263307464 0.12014628070254546 0.09730851973081923 0.12021019292099347 0.09728225900489416 0.12019503128381151 C 0.09730851973081923 0.12021019292099347 0.0974306097069935 0.12035448107465396 0.09741544806981155 0.12032822034872889 C 0.0974306097069935 0.12035448107465396 0.09746826119951645 0.12052532163209428 0.09746419865107761 0.12051015999491232" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09746419865107761 0.12051015999491232 C 0.09746450807224459 0.12055776325137058 0.09746853054741529 0.12117660558532782 0.09746791170508133 0.12108139907241133 C 0.09746853054741529 0.12117660558532782 0.09747193418025207 0.12170024140636836 0.0974716247590851 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0974716247590851 0.12165263814991012 C 0.09746256202292855 0.12167451753045144 0.09733192980850876 0.12194613283310389 0.09736287192520662 0.12191519071640602 C 0.09733192980850876 0.12194613283310389 0.09705656059762809 0.12202394355028448 0.09710031935871073 0.12202394355028448 C 0.09705656059762809 0.12202394355028448 0.09680682467551696 0.12188424859970816 0.09683776679221483 0.12191519071640602 C 0.09680682467551696 0.12188424859970816 0.09671995122217983 0.1216307587693688 0.09672901395833637 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09672901395833637 0.12165263814991012 C 0.09672932337950335 0.12160503489345188 0.09673334585467407 0.12098619255949485 0.0967327270123401 0.12108139907241133 C 0.09673334585467407 0.12098619255949485 0.09673674948751083 0.12046255673845407 0.09673644006634385 0.12051015999491232" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192056,0.0257104381605347) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09674371765219118 0.1205330095580123 C 0.09674769894966125 0.12051815115357399 0.09680635162627023 0.12032897319334597 0.09679149322183192 0.12035470870475254 C 0.09680635162627023 0.12032897319334597 0.09694775401685753 0.12020932501669518 0.09692201850545096 0.1202241834211335 C 0.09694775401685753 0.12020932501669518 0.09713003616758735 0.12017640785149272 0.09710031935871072 0.12017640785149272 C 0.09713003616758735 0.12017640785149272 0.09730435572337706 0.12023904182557178 0.09727862021197049 0.12022418342113347 C 0.09730435572337706 0.12023904182557178 0.09742400390002784 0.12038044421615905 0.09740914549558953 0.12035470870475248 C 0.09742400390002784 0.12038044421615905 0.09746090236270033 0.12054786796245062 0.09745692106523027 0.1205330095580123" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09745692106523027 0.1205330095580123 C 0.0974572242979739 0.12057966074934139 0.0974611663236412 0.12118612623661948 0.09746055985815393 0.12109282385396133 C 0.0974611663236412 0.12118612623661948 0.09746450188382125 0.12169928934123919 0.09746419865107761 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09746419865107761 0.12165263814991012 C 0.0974553171696442 0.12167407994284062 0.09732729759951281 0.12194026293944 0.09735762087387671 0.1219099396650761 C 0.09732729759951281 0.12194026293944 0.09705743577284974 0.12201651744227698 0.09710031935871073 0.12201651744227698 C 0.09705743577284974 0.12201651744227698 0.09681269456918085 0.1218796163907122 0.09684301784354475 0.1219099396650761 C 0.09681269456918085 0.1218796163907122 0.09672755858491044 0.12163119635697962 0.09673644006634385 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09673644006634385 0.12165263814991012 C 0.09673674329908749 0.12160598695858105 0.09674068532475479 0.12099952147130319 0.09674007885926751 0.12109282385396133 C 0.09674068532475479 0.12099952147130319 0.09674402088493482 0.12048635836668321 0.09674371765219118 0.1205330095580123" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920577,0.02459080956863688) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09675084968632157 0.12055540212985028 C 0.09675475135784223 0.12054084089350073 0.09681223098091904 0.12035544649247724 0.09679766974456949 0.12038066729365568 C 0.09681223098091904 0.12035544649247724 0.09695080532369457 0.1202381912793595 0.09692558452251614 0.12025275251570905 C 0.09695080532369457 0.1202381912793595 0.09712944183140981 0.12020593245746111 0.09710031935871072 0.12020593245746111 C 0.09712944183140981 0.12020593245746111 0.09730027499608374 0.12026731375205857 0.0972750541949053 0.12025275251570902 C 0.09730027499608374 0.12026731375205857 0.09741753020920149 0.12040588809483412 0.09740296897285194 0.12038066729365568 C 0.09741753020920149 0.12040588809483412 0.09745369070262053 0.12056996336619982 0.09744978903109987 0.12055540212985028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09744978903109987 0.12055540212985028 C 0.09745008619918863 0.12060112029735277 0.09745394938434261 0.12119545647488529 0.09745335504816507 0.12110402013988031 C 0.09745394938434261 0.12119545647488529 0.09745721823331903 0.1216983563174126 0.09745692106523027 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09745692106523027 0.12165263814991012 C 0.09744821721342553 0.121673651106982 0.09732275803469674 0.1219345104436494 0.09735247484357337 0.12190479363477277 C 0.09732275803469674 0.1219345104436494 0.09705829344456696 0.12200923985642967 0.09710031935871073 0.12200923985642967 C 0.09705829344456696 0.12200923985642967 0.09681844706497143 0.12187507682589614 0.09684816387384806 0.12190479363477277 C 0.09681844706497143 0.12187507682589614 0.09673501380038645 0.12163162519283824 0.09674371765219118 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09674371765219118 0.12165263814991012 C 0.09674401482027994 0.12160691998240764 0.09674787800543393 0.12101258380487533 0.09674728366925639 0.12110402013988031 C 0.09674787800543393 0.12101258380487533 0.09675114685441033 0.12050968396234778 0.09675084968632157 0.12055540212985028" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920594,0.023493573548577035) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09675783907976937 0.12057734685025145 C 0.09676166271785962 0.1205630768386289 0.09681799274847488 0.12038139032562589 0.09680372273685232 0.12040610671078075 C 0.09681799274847488 0.12038139032562589 0.0969537956043949 0.1202664802167705 0.09692907921924004 0.12028075022839305 C 0.0969537956043949 0.1202664802167705 0.09712885938195584 0.1202348665713101 0.09710031935871073 0.1202348665713101 C 0.09712885938195584 0.1202348665713101 0.09729627588333628 0.1202950202400156 0.0972715594981814 0.12028075022839305 C 0.09729627588333628 0.1202950202400156 0.0974111859921917 0.12043082309593561 0.09739691598056914 0.12040610671078075 C 0.0974111859921917 0.12043082309593561 0.09744662327574234 0.12059161686187402 0.0974427996376521 0.12057734685025145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0974427996376521 0.12057734685025145 C 0.09744309086237908 0.1206221506544039 0.09744687678382997 0.12120460010838581 0.09744629433437599 0.12111499250008093 C 0.09744687678382997 0.12120460010838581 0.09745008025582685 0.12169744195406255 0.09744978903109987 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09744978903109987 0.12165263814991012 C 0.09744125925633122 0.12167323084784057 0.09731830926117704 0.12192887299777463 0.09734743173387614 0.12189975052507554 C 0.09731830926117704 0.12192887299777463 0.09705913396284983 0.12200210782229928 0.09710031935871073 0.12200210782229928 C 0.09705913396284983 0.12200210782229928 0.09682408451084622 0.12187062805237645 0.09685320698354531 0.12189975052507554 C 0.09682408451084622 0.12187062805237645 0.09674231991155292 0.12163204545197967 0.09675084968632157 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09675084968632157 0.12165263814991012 C 0.09675114091104856 0.12160783434575768 0.09675492683249946 0.12102538489177604 0.09675434438304548 0.12111499250008093 C 0.09675492683249946 0.12102538489177604 0.09675813030449636 0.120532543046099 0.09675783907976937 0.12057734685025145" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192061,0.02241828224891837) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.0967646886853482 0.12059885267624462 C 0.09676843585067664 0.12058486806485452 0.09682363928067961 0.1204068152821116 0.09680965466928951 0.12043103733956337 C 0.09682363928067961 0.1204068152821116 0.09695672607948125 0.12029420337543328 0.09693250402202948 0.12030818798682338 C 0.09695672607948125 0.12029420337543328 0.09712828858149096 0.12026322200288211 0.09710031935871075 0.12026322200288211 C 0.09712828858149096 0.12026322200288211 0.09729235675284377 0.12032217259821351 0.097268134695392 0.12030818798682341 C 0.09729235675284377 0.12032217259821351 0.09740496865952207 0.12045525939701514 0.09739098404813197 0.12043103733956337 C 0.09740496865952207 0.12045525939701514 0.09743969719740171 0.12061283728763472 0.09743595003207327 0.12059885267624462" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09743595003207327 0.12059885267624462 C 0.09743623543230572 0.12064276040431403 0.09743994563532758 0.12121356086921631 0.09743937483486267 0.12112574541307752 C 0.09743994563532758 0.12121356086921631 0.09744308503788454 0.1216965458779795 0.0974427996376521 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0974427996376521 0.12165263814991012 C 0.09743444045837882 0.12167281899388196 0.09731394946312771 0.12192334830081732 0.09734248948637282 0.12189480827757221 C 0.09731394946312771 0.12192334830081732 0.09705995767076706 0.12199511842885147 0.09710031935871073 0.12199511842885147 C 0.09705995767076706 0.12199511842885147 0.09682960920780354 0.1218662682543271 0.09685814923104864 0.12189480827757221 C 0.09682960920780354 0.1218662682543271 0.0967494799004961 0.12163245730593827 0.09675783907976937 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09675783907976937 0.12165263814991012 C 0.09675812448000182 0.12160873042184074 0.0967618346830237 0.12103792995693874 0.09676126388255879 0.12112574541307752 C 0.0967618346830237 0.12103792995693874 0.09676497408558064 0.12055494494817522 0.0967646886853482 0.12059885267624462" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920627,0.021364496775252872) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09677140129881545 0.12061992838571794 C 0.09677507352083732 0.12060622346655564 0.09682917288224023 0.12043173173946758 0.09681546796307793 0.12045546935577031 C 0.09682917288224023 0.12043173173946758 0.09695959794506581 0.12032137207092286 0.09693586032876308 0.12033507699008517 C 0.09695959794506581 0.12032137207092286 0.09712772919703534 0.12029101032582265 0.09710031935871073 0.12029101032582265 C 0.09712772919703534 0.12029101032582265 0.09728851600496112 0.12034878190924744 0.09726477838865838 0.12033507699008514 C 0.09728851600496112 0.12034878190924744 0.09739887567350586 0.12047920697207304 0.09738517075434355 0.12045546935577031 C 0.09739887567350586 0.12047920697207304 0.0974329096406279 0.12063363330488025 0.09742923741860603 0.12061992838571794" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09742923741860603 0.12061992838571794 C 0.09742951711083384 0.12066295795922596 0.09743315310979525 0.12122234241483018 0.09743259372533965 0.12113628326781417 C 0.09743315310979525 0.12122234241483018 0.09743622972430108 0.12169566772341811 0.09743595003207327 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09743595003207327 0.12165263814991012 C 0.09742775803638547 0.12167241537700252 0.09730967686103939 0.1219179340977992 0.0973376460838196 0.12188996487501899 C 0.09730967686103939 0.1219179340977992 0.09706076490452593 0.12198826882327266 0.09710031935871075 0.12198826882327266 C 0.09706076490452593 0.12198826882327266 0.09683502341082167 0.12186199565223878 0.09686299263360189 0.12188996487501899 C 0.09683502341082167 0.12186199565223878 0.09675649668966038 0.12163286092281772 0.0967646886853482 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0967646886853482 0.12165263814991012 C 0.096764968377576 0.12160960857640213 0.09676860437653742 0.12105022412079816 0.09676804499208182 0.12113628326781417 C 0.09676860437653742 0.12105022412079816 0.09677168099104326 0.12057689881220993 0.09677140129881545 0.12061992838571794" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920644,0.020331787011060698) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09677797966001336 0.1206405825810018 C 0.0967815784375948 0.12062715176022273 0.09683459581176965 0.12045614986767643 0.09682116499099058 0.12047941273165311 C 0.09683459581176965 0.12045614986767643 0.09696241237333873 0.12034799739250258 0.09693914950936205 0.12036142821328163 C 0.09696241237333873 0.12034799739250258 0.09712718100026886 0.12031824288230444 0.09710031935871075 0.12031824288230444 C 0.09712718100026886 0.12031824288230444 0.0972847520720361 0.12037485903406071 0.09726148920805942 0.12036142821328166 C 0.0972847520720361 0.12037485903406071 0.09739290454720995 0.12050267559562979 0.09737947372643088 0.12047941273165311 C 0.09739290454720995 0.12050267559562979 0.09742625783498955 0.12065401340178086 0.09742265905740811 0.1206405825810018" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09742265905740811 0.1206405825810018 C 0.09742293315579136 0.12068275156303966 0.09742649643477357 0.1212309483295318 0.09742594823800707 0.1211466103654561 C 0.09742649643477357 0.1212309483295318 0.09742951151698927 0.12169480713194795 0.09742923741860603 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09742923741860603 0.12165263814991012 C 0.09742120926283197 0.12167201983246068 0.0973054897109928 0.12191262817884141 0.09733289954931741 0.1218852183405168 C 0.0973054897109928 0.12191262817884141 0.09706155599360963 0.12198155620980539 0.09710031935871075 0.12198155620980539 C 0.09706155599360963 0.12198155620980539 0.09684032932977947 0.12185780850219219 0.09686773916810408 0.1218852183405168 C 0.09684032932977947 0.12185780850219219 0.0967633731430414 0.12163325646735956 0.09677140129881545 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09677140129881545 0.12165263814991012 C 0.09677167539719869 0.12161046916787228 0.0967752386761809 0.1210622724013804 0.09677469047941441 0.1211466103654561 C 0.0967752386761809 0.1210622724013804 0.0967782537583966 0.12059841359896394 0.09677797966001336 0.1206405825810018" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192066,0.019319731442152377) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09678442645398729 0.12066082369237999 C 0.09678795325601709 0.1206476614880165 0.09683991028270846 0.12048007963332112 0.09682674807834497 0.12050287724001826 C 0.09683991028270846 0.12048007963332112 0.09696517051304615 0.12037409020765075 0.09694237290634901 0.12038725241201423 C 0.09696517051304615 0.12037409020765075 0.09712664376743768 0.12034493078765657 0.09710031935871073 0.12034493078765657 C 0.09712664376743768 0.12034493078765657 0.09728106341776958 0.12040041461637771 0.09725826581107244 0.12038725241201423 C 0.09728106341776958 0.12040041461637771 0.09738705284343996 0.1205256748467154 0.09737389063907648 0.12050287724001826 C 0.09738705284343996 0.1205256748467154 0.09741973906546399 0.12067398589674347 0.09741621226343418 0.12066082369237999" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09741621226343418 0.12066082369237999 C 0.09741648087984976 0.12070214929477709 0.09741997289325231 0.12123938212593935 0.09741943566042115 0.12115673092114518 C 0.09741997289325231 0.12123938212593935 0.0974229276738237 0.1216939637523072 0.09742265905740811 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09742265905740811 0.12165263814991012 C 0.09741479146474954 0.12167163219880966 0.09730138630394716 0.12190742837826275 0.09732824794550528 0.12188056673670464 C 0.09730138630394716 0.12190742837826275 0.09706233126091166 0.12197497784860747 0.09710031935871075 0.12197497784860747 C 0.09706233126091166 0.12197497784860747 0.0968455291303581 0.12185370509514652 0.09687239077191621 0.12188056673670464 C 0.0968455291303581 0.12185370509514652 0.0967701120673548 0.12163364410101057 0.09677797966001336 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09677797966001336 0.12165263814991012 C 0.09677824827642895 0.12161131254751303 0.09678174028983148 0.12107407971635101 0.09678120305700032 0.12115673092114518 C 0.09678174028983148 0.12107407971635101 0.09678469507040287 0.12061949808998289 0.09678442645398729 0.12066082369237999" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920677,0.018327916984622245) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09679074431208176 0.1206806599815306 C 0.09679420057807098 0.1206677610212544 0.0968451184642285 0.1205035308036529 0.0968322195039523 0.12052587245821611 C 0.0968451184642285 0.1205035308036529 0.09696787348995944 0.12039966116649597 0.09694553183539624 0.12041256012677218 C 0.09696787348995944 0.12039966116649597 0.09712611727926315 0.12037108493490162 0.09710031935871073 0.12037108493490162 C 0.09712611727926315 0.12037108493490162 0.09727744853658843 0.12042545908704835 0.09725510688202522 0.12041256012677215 C 0.09727744853658843 0.12042545908704835 0.09738131817374539 0.12054821411277931 0.09736841921346918 0.12052587245821611 C 0.09738131817374539 0.12054821411277931 0.09741335067132892 0.1206935589418068 0.0974098944053397 0.1206806599815306" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0974098944053397 0.1206806599815306 C 0.09741015764942697 0.12072115907187976 0.09741357982256149 0.12124764724641876 0.09741305333438695 0.12116664906572047 C 0.09741357982256149 0.12124764724641876 0.09741647550752144 0.12169313724025926 0.09741621226343418 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09741621226343418 0.12165263814991012 C 0.09740850202262878 0.12167125231783167 0.09729736496504243 0.12190233257369575 0.09732368937376938 0.1218760081649688 C 0.09729736496504243 0.12190233257369575 0.09706309102286761 0.12196853105463357 0.09710031935871073 0.12196853105463357 C 0.09706309102286761 0.12196853105463357 0.0968506249349251 0.12184968375624185 0.09687694934365206 0.1218760081649688 C 0.0968506249349251 0.12184968375624185 0.09677671621318189 0.12163402398198857 0.09678442645398729 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09678442645398729 0.12165263814991012 C 0.09678468969807455 0.12161213905956098 0.09678811187120907 0.12108565088502218 0.09678758538303453 0.12116664906572047 C 0.09678811187120907 0.12108565088502218 0.09679100755616903 0.12064016089118144 0.09679074431208176 0.1206806599815306" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920694,0.017355938816242727) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09679693581301432 0.12070009954489819 C 0.09680032295368375 0.12068745856382751 0.09685022248211812 0.12052651295057806 0.09683758150104745 0.12054840777205 C 0.09685022248211812 0.12052651295057806 0.09697052240733446 0.12042472070616425 0.09694862758586252 0.12043736168723493 C 0.09697052240733446 0.12042472070616425 0.09712560132085209 0.12039671599920179 0.09710031935871072 0.12039671599920179 C 0.09712560132085209 0.12039671599920179 0.09727390595303086 0.12045000266830558 0.09725201113155892 0.1204373616872349 C 0.09727390595303086 0.12045000266830558 0.09737569819744468 0.12057030259352194 0.09736305721637399 0.12054840777205 C 0.09737569819744468 0.12057030259352194 0.09740709004507656 0.12071274052596886 0.09740370290440713 0.12070009954489819" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09740370290440713 0.12070009954489819 C 0.09740396088361265 0.12073978865344036 0.09740731461328447 0.12125574706448859 0.09740679865487342 0.12117636884740426 C 0.09740731461328447 0.12125574706448859 0.09741015238454523 0.12169232725845228 0.0974098944053397 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0974098944053397 0.12165263814991012 C 0.09740233836935042 0.12167088003447324 0.0972934240529158 0.12189733868522001 0.09731922197346822 0.12187154076466761 C 0.0972934240529158 0.12189733868522001 0.09706383558958451 0.12196221319653908 0.09710031935871075 0.12196221319653908 C 0.09706383558958451 0.12196221319653908 0.09685561882340085 0.1218457428441152 0.09688141674395327 0.12187154076466761 C 0.09685561882340085 0.1218457428441152 0.09678318827609247 0.121634396265347 0.09679074431208176 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09679074431208176 0.12165263814991012 C 0.09679100229128729 0.12161294904136796 0.0967943560209591 0.12109699063031994 0.09679384006254804 0.12117636884740426 C 0.0967943560209591 0.12109699063031994 0.09679719379221985 0.12066041043635602 0.09679693581301432 0.12070009954489819" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192071,0.016403400211230795) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09680300348392827 0.12071915031699845 C 0.09680632288178431 0.12070676215554918 0.09685522441964999 0.12054903545456473 0.09684283625820071 0.12057049237960724 C 0.09685522441964999 0.12054903545456473 0.09697311834636199 0.12044927905503916 0.09695166142131949 0.12046166721648843 C 0.09697311834636199 0.12044927905503916 0.09712509568160926 0.12042183444221596 0.09710031935871072 0.12042183444221596 C 0.09712509568160926 0.12042183444221596 0.09727043422114445 0.12047405537793768 0.09724897729610195 0.1204616672164884 C 0.09727043422114445 0.12047405537793768 0.09737019062067 0.12059194930464971 0.09735780245922072 0.12057049237960721 C 0.09737019062067 0.12059194930464971 0.09740095463134923 0.12073153847844773 0.0973976352334932 0.12071915031699845" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0973976352334932 0.12071915031699845 C 0.09739788805311461 0.12075804564336978 0.09740117470819298 0.12126368488619702 0.09740066906895016 0.12118589423345438 C 0.09740117470819298 0.12126368488619702 0.09740395572402855 0.12169153347628144 0.09740370290440713 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09740370290440713 0.12165263814991012 C 0.09739629798913763 0.12167051519678199 0.0972895619590317 0.12189244467451384 0.09731484392117307 0.12186716271237247 C 0.0972895619590317 0.12189244467451384 0.09706456526496701 0.12195602169560651 0.09710031935871073 0.12195602169560651 C 0.09706456526496701 0.12195602169560651 0.09686051283410702 0.1218418807502311 0.09688579479624838 0.12186716271237247 C 0.09686051283410702 0.1218418807502311 0.09678953089774482 0.12163476110303825 0.09679693581301432 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09679693581301432 0.12165263814991012 C 0.09679718863263574 0.1216137428235388 0.09680047528771413 0.12110810358071175 0.0967999696484713 0.12118589423345438 C 0.09680047528771413 0.12110810358071175 0.09680325630354969 0.12068025499062712 0.09680300348392827 0.12071915031699845" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920727,0.015469912378319128) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09680894980142392 0.12073782007365666 C 0.09681220281132283 0.12072567967543638 0.0968601263184312 0.12057110750847161 0.09684798592021092 0.12059213529501325 C 0.0968601263184312 0.12057110750847161 0.09697566236660898 0.12047334623693656 0.09695463458006733 0.12048548663515685 C 0.09697566236660898 0.12047334623693656 0.0971246001551513 0.12044645051636985 0.09710031935871073 0.12044645051636985 C 0.0971246001551513 0.12044645051636985 0.09726703192389578 0.12049762703337713 0.09724600413735414 0.12048548663515685 C 0.09726703192389578 0.12049762703337713 0.09736479319543082 0.1206131630815549 0.09735265279721053 0.12059213529501325 C 0.09736479319543082 0.1206131630815549 0.09739494192589647 0.12074996047187694 0.09739168891599755 0.12073782007365666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09739168891599755 0.12073782007365666 C 0.09739193667922653 0.12077593749350056 0.09739515760120335 0.1212714639514713 0.09739466207474537 0.12119522911178351 C 0.09739515760120335 0.1212714639514713 0.09739788299672218 0.121690755569754 0.0973976352334932 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0973976352334932 0.12165263814991012 C 0.09739037841652907 0.12167015765584455 0.09728577710702527 0.12188764854402176 0.09731055342992381 0.12186287222112321 C 0.09728577710702527 0.12188764854402176 0.09706528034684188 0.12194995402469261 0.09710031935871073 0.12194995402469261 C 0.09706528034684188 0.12194995402469261 0.0968653089645991 0.12183809589822467 0.09689008528749764 0.12186287222112321 C 0.0968653089645991 0.12183809589822467 0.09679574666696415 0.12163511864397569 0.09680300348392827 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09680300348392827 0.12165263814991012 C 0.09680325124715726 0.12161452073006623 0.09680647216913407 0.12111899427209573 0.0968059766426761 0.12119522911178351 C 0.09680647216913407 0.12111899427209573 0.09680919756465291 0.12069970265381276 0.09680894980142392 0.12073782007365666" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920744,0.014555094302065669) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09681477719256966 0.12075611643518175 C 0.0968179651422706 0.12074421884492587 0.09686493017923681 0.12059273812130039 0.09685303258898093 0.12061334535211121 C 0.09686493017923681 0.12059273812130039 0.09697815550645102 0.12049693207519604 0.0969575482756402 0.12050882966545193 C 0.09697815550645102 0.12049693207519604 0.09712411453922248 0.12047057426904065 0.09710031935871073 0.12047057426904065 C 0.09712411453922248 0.12047057426904065 0.0972636976725921 0.12052072725570781 0.09724309044178128 0.12050882966545193 C 0.0972636976725921 0.12052072725570781 0.09735950371869642 0.12063395258292203 0.09734760612844054 0.12061334535211121 C 0.09735950371869642 0.12063395258292203 0.09738904947455275 0.12076801402543763 0.0973858615248518 0.12075611643518175" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0973858615248518 0.12075611643518175 C 0.0973861043328162 0.12079347150662878 0.0973892608363535 0.12127908743544008 0.09738877522042469 0.12120437729254604 C 0.0973892608363535 0.12127908743544008 0.09739193172396195 0.12168999322135712 0.09739168891599755 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09739168891599755 0.12165263814991012 C 0.09738457723537272 0.12166980726572585 0.097282067952059 0.12188294833613952 0.09730634874849957 0.12185866753969896 C 0.097282067952059 0.12188294833613952 0.09706598112707926 0.12194400770719696 0.09710031935871073 0.12194400770719696 C 0.09706598112707926 0.12194400770719696 0.09687000917248133 0.12183438674325839 0.0968942899689219 0.12185866753969896 C 0.09687000917248133 0.12183438674325839 0.0968018381207991 0.12163546903409439 0.09680894980142392 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09680894980142392 0.12165263814991012 C 0.09680919260938832 0.12161528307846312 0.0968123491129256 0.12112966714965201 0.09681186349699679 0.12120437729254604 C 0.0968123491129256 0.12112966714965201 0.09681502000053406 0.12071876136373472 0.09681477719256966 0.12075611643518175" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192076,0.013658572587337298) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09682048803589248 0.12077404686947632 C 0.0968236122265994 0.12076238723102556 0.09686963796282627 0.12061393612187257 0.09685797832437551 0.12063413120806718 C 0.09686963796282627 0.12061393612187257 0.09698059878349621 0.12052004619669032 0.0969604036973016 0.12053170583514108 C 0.09698059878349621 0.12052004619669032 0.09712363863561226 0.12049421554665807 0.09710031935871073 0.12049421554665807 C 0.09712363863561226 0.12049421554665807 0.09726043010631448 0.12054336547359185 0.09724023502011987 0.12053170583514108 C 0.09726043010631448 0.12054336547359185 0.09735432003149673 0.12065432629426179 0.09734266039304597 0.12063413120806718 C 0.09735432003149673 0.12065432629426179 0.0973832748722359 0.12078570650792708 0.09738015068152898 0.12077404686947632" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09738015068152898 0.12077404686947632 C 0.0973803886333341 0.12081065483949441 0.09738348200680064 0.12128655844972949 0.0973830061031904 0.12121334250969334 C 0.09738348200680064 0.12128655844972949 0.09738609947665693 0.12168924611992818 0.0973858615248518 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0973858615248518 0.12165263814991012 C 0.09737889207783947 0.12166946388340955 0.09727843298019204 0.12187834213241493 0.09730222816070379 0.12185454695190318 C 0.09727843298019204 0.12187834213241493 0.09706666789171191 0.12193818031605119 0.09710031935871075 0.12193818031605119 C 0.09706666789171191 0.12193818031605119 0.09687461537620594 0.12183075177139142 0.09689841055671769 0.12185454695190318 C 0.09687461537620594 0.12183075177139142 0.09680780774555732 0.1216358124164107 0.09681477719256966 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09681477719256966 0.12165263814991012 C 0.09681501514437478 0.12161603017989206 0.09681810851784131 0.1211401265696572 0.09681763261423107 0.12121334250969334 C 0.09681810851784131 0.1211401265696572 0.0968207259876976 0.12073743889945823 0.09682048803589248 0.12077404686947632" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920777,0.012779981306903498) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09682608466234885 0.12079161869508498 C 0.09682914636924163 0.12078019224940323 0.09687425159074399 0.12063471016243335 0.09686282514506224 0.12065450134690406 C 0.09687425159074399 0.12063471016243335 0.09698299319500049 0.12054269803575474 0.09696320201052978 0.12055412448143649 C 0.09698299319500049 0.12054269803575474 0.09712317225007422 0.12051738399872308 0.09710031935871073 0.12051738399872308 C 0.09712317225007422 0.12051738399872308 0.09725722789136239 0.12056555092711821 0.09723743670689168 0.12055412448143646 C 0.09725722789136239 0.12056555092711821 0.097349240018041 0.12067429253137474 0.09733781357235925 0.12065450134690403 C 0.097349240018041 0.12067429253137474 0.09737761576196541 0.12080304514076673 0.09737455405507263 0.12079161869508498" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09737455405507263 0.12079161869508498 C 0.09737478724784164 0.12082749450570271 0.09737781875383883 0.12129388004373312 0.0973773523683008 0.12122212842249769 C 0.09737781875383883 0.12129388004373312 0.097380383874298 0.12168851396052782 0.09738015068152898 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09738015068152898 0.12165263814991012 C 0.0973733206234569 0.12166912736873955 0.0972748707077624 0.12187382805276484 0.09729818998466393 0.12185050877586331 C 0.0972748707077624 0.12187382805276484 0.09706734092105188 0.12193246947272837 0.09710031935871075 0.12193246947272837 C 0.09706734092105188 0.12193246947272837 0.09687912945585603 0.12182718949896179 0.09690244873275755 0.12185050877586331 C 0.09687912945585603 0.12182718949896179 0.09681365797782039 0.12163614893108068 0.09682048803589248 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09682048803589248 0.12165263814991012 C 0.09682072122866149 0.12161676233929242 0.0968237527346587 0.12115037680126226 0.09682328634912066 0.12122212842249769 C 0.0968237527346587 0.12115037680126226 0.09682631785511786 0.12075574288446725 0.09682608466234885 0.12079161869508498" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 132 KiB

View File

@@ -0,0 +1,132 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.2780025635192015,0.11151864958480151) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.0240319791180316 0.029539593832502535 C 0.024053528314786056 0.029459171135352607 0.024370992176235007 0.028435225269157975 0.02429056947908508 0.02857452146670338 C 0.024370992176235007 0.028435225269157975 0.02513634768137616 0.02778761676480777 0.024997051483830756 0.0278680394619577 C 0.02513634768137616 0.02778761676480777 0.02612296924392977 0.027609449100904224 0.02596212384962991 0.027609449100904224 C 0.02612296924392977 0.027609449100904224 0.027066492412974475 0.027948462159107627 0.02692719621542907 0.0278680394619577 C 0.027066492412974475 0.027948462159107627 0.027714100917324676 0.028713817664248784 0.02763367822017475 0.02857452146670338 C 0.027714100917324676 0.028713817664248784 0.027913817777982682 0.029620016529652463 0.027892268581228227 0.029539593832502535" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027892268581228227 0.029539593832502535 C 0.027949523289566965 0.029514923128563828 0.02873723329457456 0.029123262893916816 0.028579325081293065 0.029243545385238053 C 0.02873723329457456 0.029123262893916816 0.029887820645548915 0.028000592149265154 0.02978716714060616 0.028096203936647683" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02978716714060616 0.028096203936647683 C 0.029752352427491937 0.028309802345626578 0.029320732239752782 0.031043078510586603 0.029369390583235497 0.03065938484439444 C 0.029320732239752782 0.031043078510586603 0.02915968773409454 0.033045169276913554 0.02920326701881358 0.03270052793095362 C 0.02915968773409454 0.033045169276913554 0.02874193870973717 0.035140929283841514 0.028846439166607014 0.034795080995913684 C 0.02874193870973717 0.035140929283841514 0.027874496733856155 0.03702200958526872 0.02794926153637545 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02794926153637545 0.03685070738608756 C 0.02790021351621528 0.0369691197815658 0.02719322487881498 0.0384391165474648 0.027360685294453388 0.03827165613182639 C 0.02719322487881498 0.0384391165474648 0.025702911757758087 0.03886023237374846 0.025939736548714558 0.03886023237374846 C 0.025702911757758087 0.03886023237374846 0.024351327387337324 0.038104195716187984 0.02451878780297573 0.03827165613182639 C 0.024351327387337324 0.038104195716187984 0.02388116354089349 0.03673229499060932 0.02393021156105366 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02393021156105366 0.03685070738608756 C 0.023882634514092786 0.03669895182382967 0.023294409206212868 0.034716397845780546 0.023359286997523154 0.03502964063899287 C 0.023294409206212868 0.034716397845780546 0.023158165844461266 0.0327688194056308 0.02315167806533024 0.033091793867539666 C 0.023158165844461266 0.0327688194056308 0.023510498768153937 0.03085793042650004 0.02343714034709549 0.031153947096086466 C 0.023510498768153937 0.03085793042650004 0.024081549015609608 0.029405064393870542 0.0240319791180316 0.029539593832502535" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27802495082011686,0.10420753603121649) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.02410733935205844 0.029828397440096244 C 0.0241280373124427 0.02975115160032913 0.024432960716436698 0.028767653643740922 0.024355714876669585 0.028901447362890888 C 0.024432960716436698 0.028767653643740922 0.025168083148413765 0.028145626970529553 0.0250342894292638 0.028222872810296666 C 0.025168083148413765 0.028145626970529553 0.026115731186003386 0.027974497285685528 0.02596123950646916 0.027974497285685528 C 0.026115731186003386 0.027974497285685528 0.027021983302824484 0.02830011865006378 0.02688818958367452 0.028222872810296666 C 0.027021983302824484 0.02830011865006378 0.027644009976035847 0.029035241082040853 0.027566764136268733 0.028901447362890888 C 0.027644009976035847 0.029035241082040853 0.027835837621264136 0.029905643279863357 0.027815139660879874 0.029828397440096244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027815139660879874 0.029828397440096244 C 0.027870132693729815 0.029804701278304525 0.028626726578119596 0.029428512406246544 0.028475056055079148 0.029544043498595608 C 0.028626726578119596 0.029428512406246544 0.029731863427555766 0.02835018940135011 0.029635185937365256 0.028442024331907456" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029635185937365256 0.028442024331907456 C 0.02960174647504847 0.02864718517653487 0.02918717614796539 0.03127249146642664 0.02923391238956385 0.0309039544674364 C 0.02918717614796539 0.03127249146642664 0.02903249322236966 0.033195495643302146 0.02907435103818373 0.03286446831979032 C 0.02903249322236966 0.033195495643302146 0.028631246119972448 0.035208468938436425 0.02873161859979502 0.03487628234957832 C 0.028631246119972448 0.035208468938436425 0.02779806983702269 0.03701524280579666 0.02786988128031287 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02786988128031287 0.03685070738608756 C 0.027822770755045065 0.03696444225511961 0.027143709582799352 0.03837637120877207 0.027304554977099212 0.03821552581447221 C 0.027143709582799352 0.03837637120877207 0.025712266810650447 0.03878085211768587 0.025939736548714558 0.03878085211768587 C 0.025712266810650447 0.03878085211768587 0.024414072726030044 0.03805468042017236 0.024574918120329903 0.03821552581447222 C 0.024414072726030044 0.03805468042017236 0.023962481291848442 0.03673697251705551 0.024009591817116246 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024009591817116246 0.03685070738608756 C 0.023963894158664418 0.036704946472049985 0.02339890492689637 0.03480070734124175 0.023461219915694317 0.0351015764176366 C 0.02339890492689637 0.03480070734124175 0.023268043450420682 0.03293006214463479 0.023261811951540888 0.033240278469349335 C 0.023268043450420682 0.03293006214463479 0.023606458518961645 0.03109465710195766 0.02353599790225185 0.03137898052106208 C 0.023606458518961645 0.03109465710195766 0.024154951139542323 0.02969918218334909 0.02410733935205844 0.029828397440096244" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27804645377787146,0.09718522608522517) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.024179722706120753 0.030105792727582792 C 0.024199603055673917 0.03003159825297816 0.024492481375363338 0.029086950432671097 0.024418286900758705 0.0292154590323272 C 0.024492481375363338 0.029086950432671097 0.025198565001032444 0.028489495057104932 0.025070056401376342 0.028563689531709565 C 0.025198565001032444 0.028489495057104932 0.026108779045841198 0.028325125337071606 0.02596039009663193 0.028325125337071606 C 0.026108779045841198 0.028325125337071606 0.026979232391543626 0.028637884006314195 0.026850723791887524 0.02856368953170956 C 0.026979232391543626 0.028637884006314195 0.0275766877671098 0.029343967631983298 0.027502493292505165 0.029215459032327196 C 0.0275766877671098 0.029343967631983298 0.027760937836696285 0.030179987202187425 0.02774105748714312 0.030105792727582792" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02774105748714312 0.030105792727582792 C 0.027793878185209422 0.03008303261157417 0.028520585097978033 0.029721703952340216 0.02837490586393873 0.02983267133547931 C 0.028520585097978033 0.029721703952340216 0.029582066831587782 0.028685976862783197 0.02948920829561478 0.028774184129913668" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02948920829561478 0.028774184129913668 C 0.02945708975893843 0.02897124071085661 0.029058895788915785 0.03149284215168508 0.029103785855498623 0.03113886310122895 C 0.029058895788915785 0.03149284215168508 0.02891032314824693 0.033339883817565655 0.028950527496620714 0.03302193273538719 C 0.02891032314824693 0.033339883817565655 0.02852492610888862 0.035273340641595534 0.02862133367501324 0.034954276087370506 C 0.02852492610888862 0.035273340641595534 0.027724661955467942 0.037008743327647316 0.027793636703125273 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027793636703125273 0.03685070738608756 C 0.027748387137826597 0.03695994950032311 0.027096150240006937 0.03831610443644838 0.027250641919541164 0.038161612756914154 C 0.027096150240006937 0.03831610443644838 0.025721252320243457 0.038704607540498266 0.025939736548714558 0.038704607540498266 C 0.025721252320243457 0.038704607540498266 0.024474339498353724 0.03800712107737993 0.02462883117788795 0.038161612756914154 C 0.024474339498353724 0.03800712107737993 0.024040586829005166 0.036741465271852014 0.024085836394303842 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024085836394303842 0.03685070738608756 C 0.024041943884756178 0.036710704319676296 0.023499272857621434 0.03488168644301325 0.023559126279731883 0.03517067058915235 C 0.023499272857621434 0.03488168644301325 0.02337358067118948 0.03308493547296266 0.023367595328978436 0.03338289763241833 C 0.02337358067118948 0.03308493547296266 0.023698627667692942 0.03132203260028135 0.023630950386264418 0.031595124675684316 C 0.023698627667692942 0.03132203260028135 0.02422545373277545 0.029981681731907666 0.024179722706120753 0.030105792727582792" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780671073257888,0.0904403114267204) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.02424924677293089 0.030372230346423036 C 0.024268341808916006 0.030300966701954236 0.024549650849221057 0.029393634359844944 0.024478387204752258 0.029517066612797432 C 0.024549650849221057 0.029393634359844944 0.025227842759508987 0.028819779666524388 0.0251044105065565 0.028891043310993188 C 0.025227842759508987 0.028819779666524388 0.026102101529119705 0.02866190287917183 0.025959574240182106 0.02866190287917183 C 0.026102101529119705 0.02866190287917183 0.02693817022676019 0.028962306955461987 0.026814737973807706 0.028891043310993188 C 0.02693817022676019 0.028962306955461987 0.027512024920080744 0.02964049886574992 0.027440761275611944 0.029517066612797432 C 0.027512024920080744 0.02964049886574992 0.02768899674341842 0.030443493990891836 0.027669901707433307 0.030372230346423036" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027669901707433307 0.030372230346423036 C 0.027720635882284593 0.030350369300516985 0.02841863641858504 0.030003313845980095 0.028278711805648754 0.030109897795550428 C 0.02841863641858504 0.030003313845980095 0.029438187500753724 0.02900850004791477 0.029348997062668726 0.02909322295157905" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029348997062668726 0.02909322295157905 C 0.02931814727242817 0.029282495403461582 0.02893568276060935 0.03170448854417443 0.028978799579782034 0.031364492374169425 C 0.02893568276060935 0.03170448854417443 0.028792979036392198 0.0334785683701694 0.02883159523259652 0.03317317699163915 C 0.028792979036392198 0.0334785683701694 0.028422805950882625 0.03533564978273645 0.02851540522533019 0.035029188916532415 C 0.028422805950882625 0.03533564978273645 0.027654153832050356 0.03700250059188382 0.02772040393922573 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02772040393922573 0.03685070738608756 C 0.027676941822255482 0.03695563421832658 0.027050469586373506 0.03825821832216502 0.02719885853558277 0.038109829372955754 C 0.027050469586373506 0.03825821832216502 0.025729882884236523 0.03863137477659873 0.025939736548714558 0.03863137477659873 C 0.025729882884236523 0.03863137477659873 0.024532225612637078 0.03796144042374649 0.024680614561846344 0.038109829372955754 C 0.024532225612637078 0.03796144042374649 0.02411560704123312 0.03674578055384854 0.024159069158203365 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024159069158203365 0.03685070738608756 C 0.024116910490567856 0.03671623472080567 0.023595676054346995 0.03495946670830657 0.023653165146577237 0.03523703540270488 C 0.023595676054346995 0.03495946670830657 0.02347494896066348 0.033233690995074915 0.023469200051440455 0.03351988305330777 C 0.02347494896066348 0.033233690995074915 0.023787155950711056 0.03154042631167024 0.023722152057253518 0.03180273070391064 C 0.023787155950711056 0.03154042631167024 0.02429317133257067 0.03025302198329907 0.02424924677293089 0.030372230346423036" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27808694501725634,0.08396183438705587) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.024316024500053896 0.03062814314644386 C 0.024334365243927528 0.030559694558458868 0.02460456201452245 0.029688203658527583 0.024536113426537456 0.02980676009062394 C 0.02460456201452245 0.029688203658527583 0.02525596398797018 0.029137017373302578 0.025137407555873823 0.02920546596128757 C 0.02525596398797018 0.029137017373302578 0.026095687787663732 0.02898537703480401 0.025958790611693747 0.02898537703480401 C 0.026095687787663732 0.02898537703480401 0.026898730099610024 0.029273914549272563 0.026780173667513667 0.02920546596128757 C 0.026898730099610024 0.029273914549272563 0.02744991638483503 0.029925316522720298 0.027381467796850037 0.02980676009062394 C 0.02744991638483503 0.029925316522720298 0.02761989746720723 0.030696591734428853 0.027601556723333597 0.03062814314644386" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027601556723333597 0.03062814314644386 C 0.02765028679680991 0.030607145655573192 0.02832071491592541 0.030273799585601415 0.028186317605049332 0.03037617325599582 C 0.02832071491592541 0.030273799585601415 0.02929999169124627 0.029318282922187265 0.029214324453846505 0.029399659101711" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029214324453846505 0.029399659101711 C 0.02918469329202003 0.029581454913199266 0.02881733689334708 0.031907774480867686 0.028858750511928804 0.03158120883957022 C 0.02881733689334708 0.031907774480867686 0.028680270251643956 0.03361177460557618 0.028717361030865814 0.03331844679728064 C 0.028680270251643956 0.03361177460557618 0.02832471974335818 0.03539549758818402 0.028413661161266517 0.035101142539116774 C 0.02832471974335818 0.03539549758818402 0.027586430920524034 0.03699650445666846 0.027650064015965762 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027650064015965762 0.03685070738608756 C 0.027608318739540075 0.03695148939859947 0.0270065934099199 0.03820261882516808 0.0271491206988575 0.03806009153623048 C 0.0270065934099199 0.03820261882516808 0.025738172523690733 0.03856103485333875 0.025939736548714558 0.03856103485333875 C 0.025738172523690733 0.03856103485333875 0.02458782510963401 0.03791756424729288 0.024730352398571614 0.03806009153623048 C 0.02458782510963401 0.03791756424729288 0.024187663805037653 0.03674992537357565 0.024229409081463343 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024229409081463343 0.03685070738608756 C 0.02418891576551677 0.036721546660029636 0.023688271131995505 0.035034174497560265 0.023743489290104468 0.03530077867339246 C 0.023688271131995505 0.035034174497560265 0.02357231299996667 0.033376570376552686 0.023566791184155774 0.03365145727610122 C 0.02357231299996667 0.033376570376552686 0.023872187189493393 0.031750193034671886 0.023809751079835215 0.03200213587881 C 0.023872187189493393 0.031750193034671886 0.024358213951738785 0.030513643752080016 0.024316024500053896 0.03062814314644386" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27810599908023553,0.07773927014741217) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.02438016437340009 0.03087394687903825 C 0.024397780621209224 0.03080820214717584 0.0246573040789721 0.029971136880773637 0.02459155934710969 0.030085010096689326 C 0.0246573040789721 0.029971136880773637 0.0252829743716647 0.0294417235561876 0.02516910115574901 0.02950746828805001 C 0.0252829743716647 0.0294417235561876 0.026089527401822767 0.029296073314340403 0.025958037938097946 0.029296073314340403 C 0.026089527401822767 0.029296073314340403 0.02686084793636256 0.02957321301991242 0.026746974720446872 0.02950746828805001 C 0.02686084793636256 0.02957321301991242 0.02739026126094861 0.030198883312605014 0.0273245165290862 0.030085010096689326 C 0.02739026126094861 0.030198883312605014 0.02755352775060493 0.03093969161090066 0.027535911502795798 0.03087394687903825" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027535911502795798 0.03087394687903825 C 0.02758271664090965 0.030853778831051955 0.02822666150846384 0.03053360059753621 0.028097573160161992 0.030631930303202694 C 0.02822666150846384 0.03053360059753621 0.029167254892605986 0.029615828753360246 0.029084971682417988 0.029693990411040434" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029084971682417988 0.029693990411040434 C 0.02905651101074598 0.029868604924383292 0.028703665924533404 0.03210303021648968 0.028743443622353912 0.03178936457115474 C 0.028703665924533404 0.03210303021648968 0.028572013689310845 0.03373971892827195 0.02860763930857188 0.033457978155059694 C 0.028572013689310845 0.03373971892827195 0.028230508137203368 0.0354529812856208 0.02831593619122149 0.03517025384970181 C 0.028230508137203368 0.0354529812856208 0.02752138319944882 0.03699074518078638 0.02758250266035441 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02758250266035441 0.03685070738608756 C 0.027542406405838087 0.036947508307541226 0.02696445043018857 0.038149215619501506 0.02710134760615856 0.03801231844353152 C 0.02696445043018857 0.038149215619501506 0.025746134705807226 0.03849347349772738 0.025939736548714558 0.03849347349772738 C 0.025746134705807226 0.03849347349772738 0.02464122831530057 0.03787542126756154 0.02477812549127056 0.03801231844353153 C 0.02464122831530057 0.03787542126756154 0.024256874182558383 0.0367539064646339 0.024296970437074704 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024296970437074704 0.03685070738608756 C 0.02425807668809465 0.03672664876703038 0.023777208518886726 0.035105931179722875 0.023830245449314072 0.03536200395740135 C 0.023777208518886726 0.035105931179722875 0.02366583096498931 0.03351380573670333 0.023660527271946574 0.0337778340539459 C 0.02366583096498931 0.03351380573670333 0.023953859524281345 0.0319516735525815 0.023893889765826886 0.03219366415049047 C 0.023953859524281345 0.0319516735525815 0.024420687257364525 0.030763970439750567 0.02438016437340009 0.03087394687903825" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2781243004696189,0.07176250964036285) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.024441770593469362 0.031110040872587716 C 0.02445869096425754 0.031046893189123334 0.02470796272639187 0.030242893674874555 0.02464481504292749 0.03035226867101514 C 0.02470796272639187 0.030242893674874555 0.025308917791182522 0.029734393235436307 0.025199542795041937 0.02979754091890069 C 0.025308917791182522 0.029734393235436307 0.026083610363543282 0.02959449646944256 0.02595731499661452 0.02959449646944256 C 0.026083610363543282 0.02959449646944256 0.026824462194327686 0.02986068860236507 0.0267150871981871 0.02979754091890069 C 0.026824462194327686 0.02986068860236507 0.027332962633765938 0.030461643667155727 0.027269814950301556 0.03035226867101514 C 0.027332962633765938 0.030461643667155727 0.027489779770547864 0.031173188556052098 0.027472859399759686 0.031110040872587716" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027472859399759686 0.031110040872587716 C 0.02751781564130776 0.031090669502832975 0.02813632339870382 0.030783138949897565 0.02801233429833659 0.030877584435530812 C 0.02813632339870382 0.030783138949897565 0.02903976146298558 0.029901620929110227 0.028960728604166427 0.029976695044988733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028960728604166427 0.029976695044988733 C 0.02893339218594681 0.03014441193582552 0.028594485186329816 0.03229057296004312 0.028632691585531018 0.0319892977350302 C 0.028594485186329816 0.03229057296004312 0.028468033477703013 0.03386260919433257 0.028502251813752 0.033591997745143744 C 0.028468033477703013 0.03386260919433257 0.028140018077914882 0.03550819426204144 0.028222071552943182 0.035236635125296116 C 0.028140018077914882 0.03550819426204144 0.02745890499345151 0.03698521340782018 0.02751761011341241 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02751761011341241 0.03685070738608756 C 0.027479097741141992 0.03694368447754196 0.026923972182442576 0.0380979219472652 0.027055461646167397 0.037966432483540376 C 0.026923972182442576 0.0380979219472652 0.02575378236580575 0.038428580950785385 0.025939736548714558 0.038428580950785385 C 0.02575378236580575 0.038428580950785385 0.024692521987536895 0.037834943019815555 0.024824011451261715 0.037966432483540376 C 0.024692521987536895 0.037834943019815555 0.024323350611746283 0.03675773029463316 0.0243618629840167 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0243618629840167 0.03685070738608756 C 0.024324505615908855 0.03673154933060037 0.023862632701120982 0.03517485332942668 0.023913574566722585 0.035420810720241294 C 0.023862632701120982 0.03517485332942668 0.023755654783357623 0.0336456200256573 0.023750560596797463 0.033899218696312156 C 0.023755654783357623 0.0336456200256573 0.024032305638500503 0.03214519518707264 0.023974704805444513 0.03237762667238301 C 0.024032305638500503 0.03214519518707264 0.024480692742471433 0.031004408722604775 0.024441770593469362 0.031110040872587716" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27814187891751885,0.066021843126863) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.024500943244633457 0.03133680868120398 C 0.024517195226934758 0.03127615545753181 0.024756620255921253 0.030503915532094878 0.02469596703224908 0.03060896999713792 C 0.024756620255921253 0.030503915532094878 0.02533383639374256 0.030015501877015315 0.02522878192869952 0.030076155100687486 C 0.02533383639374256 0.030015501877015315 0.02607792706010992 0.02988113131307186 0.025956620612765578 0.02988113131307186 C 0.02607792706010992 0.02988113131307186 0.026789513761874675 0.030136808324359658 0.026684459296831636 0.030076155100687486 C 0.026789513761874675 0.030136808324359658 0.027277927416954235 0.030714024462180963 0.027217274193282064 0.03060896999713792 C 0.027277927416954235 0.030714024462180963 0.027428549963198993 0.031397461904876155 0.02741229798089769 0.03133680868120398" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02741229798089769 0.03133680868120398 C 0.027455478360992137 0.031318202519297296 0.02804955382495555 0.03102282003826394 0.027930462542031027 0.031113534738323706 C 0.02804955382495555 0.03102282003826394 0.02891730427882205 0.03017612374233374 0.02884139337599197 0.030248232280486814" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02884139337599197 0.030248232280486814 C 0.028815136800964862 0.030409324018701767 0.028489617305646725 0.03247070739014072 0.028526314475666684 0.032181333139066265 C 0.028489617305646725 0.03247070739014072 0.02836816069241411 0.033980645049103274 0.028401027335752487 0.03372072329338031 C 0.02836816069241411 0.033980645049103274 0.028053102556948407 0.03556122621546749 0.028131914755606138 0.035300394207741885 C 0.028053102556948407 0.03556122621546749 0.027398894801547505 0.0369799001509497 0.027455280951859708 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027455280951859708 0.03685070738608756 C 0.027418289895318717 0.03694001169647533 0.026885092906439045 0.03804865447766955 0.02701138827336781 0.03792235911074079 C 0.026885092906439045 0.03804865447766955 0.025761127927939016 0.03836625178923269 0.025939736548714558 0.03836625178923269 C 0.025761127927939016 0.03836625178923269 0.024741789457132533 0.03779606374381203 0.024868084824061297 0.037922359110740794 C 0.024741789457132533 0.03779606374381203 0.024387201089028403 0.03676140307569979 0.024424192145569394 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024424192145569394 0.03685070738608756 C 0.02438831046821655 0.03673625631210822 0.023944682457308627 0.03524105291637289 0.023993612017335235 0.035477294498335546 C 0.023944682457308627 0.03524105291637289 0.023841930381252752 0.033772227386569 0.02383703742525009 0.034015808402535645 C 0.023841930381252752 0.033772227386569 0.024107652974315785 0.03233107232995813 0.02405232748936717 0.03255432230673577 C 0.024107652974315785 0.03233107232995813 0.024538327890905647 0.03123534921240967 0.024500943244633457 0.03133680868120398" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2781587629815699,0.060507944421979425) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.02455777845773127 0.03155461870784428 C 0.024573388454227706 0.03149636140781361 0.024803355715719174 0.03075462650391129 0.0247450984156885 0.0308555311074762 C 0.024803355715719174 0.03075462650391129 0.025357770661664246 0.03028550616503469 0.025256866058099337 0.030343763465065364 C 0.025357770661664246 0.03028550616503469 0.02607246825852877 0.030156443507108124 0.025955953658467423 0.030156443507108124 C 0.02607246825852877 0.030156443507108124 0.02675594586240041 0.030402020765096037 0.026655041258835502 0.030343763465065364 C 0.02675594586240041 0.030402020765096037 0.027225066201277015 0.030956435711041102 0.027166808901246342 0.030855531107476193 C 0.027225066201277015 0.030956435711041102 0.027369738855700022 0.031612876007874956 0.027354128859203585 0.03155461870784428" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027354128859203585 0.03155461870784428 C 0.02739560352792354 0.03153674752654523 0.027966211822909474 0.03125303324427766 0.027851824883843034 0.03134016453225566 C 0.027966211822909474 0.03125303324427766 0.028799684398347337 0.0304397831454293 0.02872677212800085 0.03050904325210825" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02872677212800085 0.03050904325210825 C 0.028701552740200465 0.030663771544480238 0.02838889191598639 0.03264372614998061 0.028424139474396218 0.032365782760572094 C 0.02838889191598639 0.03264372614998061 0.028272233081889683 0.03409401825153881 0.028303801427082907 0.03384436392501041 C 0.028272233081889683 0.03409401825153881 0.02796962037289116 0.035612163300669325 0.028045319332077514 0.035361634678912894 C 0.02796962037289116 0.035612163300669325 0.0273412551322441 0.036974796778352116 0.02739541391684667 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02739541391684667 0.03685070738608756 C 0.02735988408102116 0.03693648399760639 0.02684774943959622 0.03800133317165787 0.026969055886940565 0.03788002672431353 C 0.02684774943959622 0.03800133317165787 0.02576818332567689 0.03830638475421964 0.025939736548714558 0.03830638475421964 C 0.02576818332567689 0.03830638475421964 0.0247891107631442 0.0377587202769692 0.024910417210488544 0.03788002672431354 C 0.0247891107631442 0.0377587202769692 0.024448529344756928 0.03676493077456873 0.024484059180582437 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024484059180582437 0.03685070738608756 C 0.024449594901248383 0.03674077735843256 0.02402349108402735 0.035304637487235536 0.024070487828573787 0.03553154705422751 C 0.02402349108402735 0.035304637487235536 0.023924797920479822 0.03389383350350998 0.02392009824602518 0.034127792582183916 C 0.023924797920479822 0.03389383350350998 0.02418002393967168 0.03250960695394536 0.024126883922029507 0.032724038110140324 C 0.02418002393967168 0.03250960695394536 0.024593686335706414 0.03145716709098628 0.02455777845773127 0.03155461870784428" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27817498009132274,0.055211855743736146) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.024612368566241275 0.031763824802812264 C 0.02462736193665611 0.0317078687826474 0.024848245031384154 0.030995433890919022 0.02479228901121929 0.03109235256083391 C 0.024848245031384154 0.030995433890919022 0.025380759478134514 0.030544844743668715 0.025283840808219625 0.030600800763833577 C 0.025380759478134514 0.030544844743668715 0.026067225090527692 0.030420880318855564 0.025955313050197968 0.030420880318855564 C 0.026067225090527692 0.030420880318855564 0.026723703962091207 0.03065675678399844 0.026626785292176318 0.030600800763833577 C 0.026723703962091207 0.03065675678399844 0.027174293109341507 0.0311892712307488 0.027118337089176645 0.03109235256083391 C 0.027174293109341507 0.0311892712307488 0.02731325090456948 0.03181978082297713 0.027298257534154647 0.031763824802812264" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027298257534154647 0.031763824802812264 C 0.027338093870510824 0.03174665956891688 0.027886161996628227 0.03147415256822742 0.02777629357042879 0.03155784199606772 C 0.027886161996628227 0.03147415256822742 0.028686710738391144 0.030693027474783776 0.028616678648547885 0.030759551668728694" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028616678648547885 0.030759551668728694 C 0.02859245547700439 0.0309081678840954 0.028292145380668418 0.032809910322769295 0.028326000590025942 0.032542946253129194 C 0.028292145380668418 0.032809910322769295 0.0281800948038362 0.03420291298573176 0.0282104161362576 0.03396312050440989 C 0.0281800948038362 0.03420291298573176 0.027889435902068528 0.03566108826913152 0.027962144600969102 0.035420456028991715 C 0.027889435902068528 0.03566108826913152 0.027285892345157513 0.03696989499917888 0.027337911749450713 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027337911749450713 0.03685070738608756 C 0.027303785413199985 0.036933095649898176 0.026811881114380615 0.037955881151876265 0.02692839571444196 0.03783936655181492 C 0.026811881114380615 0.037955881151876265 0.02577496002109332 0.03824888258682368 0.025939736548714558 0.03824888258682368 C 0.02577496002109332 0.03824888258682368 0.024834562782925795 0.037722851951753573 0.02495107738298714 0.03783936655181492 C 0.024834562782925795 0.037722851951753573 0.02450743501172766 0.036768319122276946 0.02454156134797839 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02454156134797839 0.03685070738608756 C 0.024508458476606588 0.03674511981438498 0.024099186612373414 0.03536571034037999 0.024144326891516778 0.03558365652565664 C 0.024099186612373414 0.03536571034037999 0.024004392026172355 0.03401063593561956 0.023999877998258017 0.03423535316276771 C 0.024004392026172355 0.03401063593561956 0.024249536107154097 0.03268108910321583 0.024198495226488825 0.03288704979987878 C 0.024249536107154097 0.03268108910321583 0.024646858011220647 0.03167022271972339 0.024612368566241275 0.031763824802812264" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27819055659280617,0.05012497316046085) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.024664802256284937 0.031964766838616786 C 0.024679203358581644 0.03191102119316048 0.024891361129301744 0.03122672890452516 0.024837615483845433 0.03131981909314107 C 0.024891361129301744 0.03122672890452516 0.02540284019037656 0.030793938929769536 0.02530975000176065 0.030847684575225846 C 0.02540284019037656 0.030793938929769536 0.026062189038148983 0.030674871347665354 0.025954697747236365 0.030674871347665354 C 0.026062189038148983 0.030674871347665354 0.02669273568132799 0.030901430220682157 0.026599645492712078 0.030847684575225846 C 0.02669273568132799 0.030901430220682157 0.027125525656083616 0.03141290928175698 0.027071780010627305 0.03131981909314107 C 0.027125525656083616 0.03141290928175698 0.02725899434048451 0.03201851248407309 0.027244593238187804 0.031964766838616786" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027244593238187804 0.031964766838616786 C 0.02728285595958524 0.031948279665790745 0.027809274298584753 0.03168653723664252 0.027703745894957048 0.03176692076470427 C 0.027809274298584753 0.03168653723664252 0.028578199763950537 0.03093626814664009 0.028510934081720268 0.031000164501875795" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028510934081720268 0.031000164501875795 C 0.02848766777389908 0.031142910079503087 0.028199220526988568 0.03296952988836449 0.02823173838786605 0.032713111433403316 C 0.028199220526988568 0.03296952988836449 0.02809159617204238 0.0343075061601346 0.02812071975119047 0.0340771859614099 C 0.02809159617204238 0.0343075061601346 0.027812418878212355 0.03570808060348951 0.02788225543808896 0.035476953818099705 C 0.027812418878212355 0.03570808060348951 0.02723271649888643 0.03696518685008655 0.02728268103267124 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02728268103267124 0.03685070738608756 C 0.027249902754955087 0.036929841148701126 0.026777429659747665 0.03791222457778006 0.02688934170007739 0.037800312537450344 C 0.026777429659747665 0.03791222457778006 0.025781469023487418 0.038193651870044185 0.025939736548714558 0.038193651870044185 C 0.025781469023487418 0.038193651870044185 0.024878219357021985 0.037688400497120626 0.02499013139735171 0.037800312537450344 C 0.024878219357021985 0.037688400497120626 0.02456401378704171 0.036771573623473996 0.02459679206475786 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02459679206475786 0.03685070738608756 C 0.02456499682301099 0.03674929073464238 0.024171892015958766 0.03542437069367951 0.02421524916379541 0.03563370756874537 C 0.024171892015958766 0.03542437069367951 0.02408084200550182 0.03412282443805592 0.024076506290718155 0.03433866488529727 C 0.02408084200550182 0.03412282443805592 0.024316302404996607 0.03284579736462582 0.024267277741199376 0.03304362220184919 C 0.024316302404996607 0.03284579736462582 0.024697929299208735 0.03187486222501409 0.024664802256284937 0.031964766838616786" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27820551779132796,0.045239032612990074) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.0247151647107045 0.03215777126212297 C 0.024728996940658284 0.03210614867715347 0.024932774055119393 0.031448887302503815 0.0248811514701499 0.03153830024248902 C 0.024932774055119393 0.031448887302503815 0.025424048670323638 0.031033193397331005 0.025334635730338433 0.0310848159823005 C 0.025424048670323638 0.031033193397331005 0.02605735191991135 0.030918829222855097 0.025954106749972363 0.030918829222855097 C 0.02605735191991135 0.030918829222855097 0.0266629907095915 0.031136438567269994 0.026573577769606296 0.0310848159823005 C 0.0266629907095915 0.031136438567269994 0.02707868461476433 0.031627713182474225 0.027027062029794834 0.03153830024248902 C 0.02707868461476433 0.031627713182474225 0.027206881019194013 0.03220939384709247 0.02719304878924023 0.03215777126212297" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02719304878924023 0.03215777126212297 C 0.027229800056617025 0.0321419353655979 0.02773542381838938 0.0318905322858859 0.027634063997761776 0.03196774050382215 C 0.02773542381838938 0.0318905322858859 0.02847397519002228 0.031169900325476743 0.028409366636771474 0.03123127264688793" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028409366636771474 0.03123127264688793 C 0.028387019394641843 0.031368379488707784 0.028109966390878795 0.03312284416187953 0.028141199731215896 0.03287655474872623 C 0.028109966390878795 0.03312284416187953 0.02800659341320169 0.0344079676949622 0.02803456655272628 0.034186745604727516 C 0.02800659341320169 0.0344079676949622 0.027738444180832517 0.0357532166466557 0.027805522056920873 0.03553121983154236 C 0.027738444180832517 0.0357532166466557 0.027181641204894733 0.03696066468229966 0.027229632039665976 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027229632039665976 0.03685070738608756 C 0.027198148569476166 0.036926715206810366 0.026744339106475633 0.037870292525673824 0.02685183039738825 0.03776280123476121 C 0.026744339106475633 0.037870292525673824 0.02578772090726894 0.03814060287703893 0.025939736548714558 0.03814060287703893 C 0.02578772090726894 0.03814060287703893 0.024920151409128226 0.037655309943848594 0.025027642700040847 0.03776280123476121 C 0.024920151409128226 0.037655309943848594 0.02461835758757331 0.036774699565364756 0.02464984105776312 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02464984105776312 0.03685070738608756 C 0.024619301791655734 0.03675329689520777 0.024241725410691688 0.03548071384570303 0.024283369864474488 0.035681781495530036 C 0.024241725410691688 0.03548071384570303 0.024154272057747804 0.03423058127026908 0.024150107612369524 0.0344378955881635 C 0.024154272057747804 0.03423058127026908 0.024380431300541752 0.033003999320293596 0.024333343209013838 0.03319400968079697 C 0.024380431300541752 0.033003999320293596 0.024746983169178723 0.032071418060566806 0.0247151647107045 0.03215777126212297" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27821988799258573,0.040546096489025484) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.024763537747449566 0.03234315162489182 C 0.024776823576655716 0.03229356823527379 0.02497255108754138 0.03166226999944554 0.02492296769792335 0.03174815094947545 C 0.02497255108754138 0.03166226999944554 0.025444419372895828 0.031262996834914854 0.02535853842286592 0.031312580224532885 C 0.025444419372895828 0.031262996834914854 0.02605270587751833 0.031153150274059113 0.025953539098282272 0.031153150274059113 C 0.02605270587751833 0.031153150274059113 0.026634420723728527 0.031362163614150916 0.02654853977369862 0.031312580224532885 C 0.026634420723728527 0.031362163614150916 0.027033693888259214 0.031834031899505365 0.026984110498641183 0.03174815094947545 C 0.027033693888259214 0.031834031899505365 0.02715682627832113 0.03239273501450985 0.02714354044911498 0.03234315162489182" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02714354044911498 0.03234315162489182 C 0.027178839967927856 0.032327941277951286 0.027664490579862668 0.03208646912269407 0.027567134674869494 0.032160627461605404 C 0.027664490579862668 0.03208646912269407 0.028373867695213353 0.031394303565984966 0.028311811309033055 0.031453251557955766" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028311811309033055 0.031453251557955766 C 0.028290346827662027 0.03158494240531006 0.028024237971653623 0.03327010221496221 0.02805423753258073 0.03303354172620729 C 0.028024237971653623 0.03327010221496221 0.027924948433340716 0.034504460798241016 0.0279518165779078 0.03429197742301479 C 0.027924948433340716 0.034504460798241016 0.027667391631948597 0.03579656972584471 0.02773181979777571 0.03558334222892198 C 0.027667391631948597 0.03579656972584471 0.027132583487166302 0.03695632114918469 0.02717867858798241 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02717867858798241 0.03685070738608756 C 0.02714843877783204 0.03692371274587617 0.02671255569623896 0.03783001687348987 0.02681580086617795 0.03772677170355089 C 0.02671255569623896 0.03783001687348987 0.025793725829137325 0.038089649425355344 0.025939736548714558 0.038089649425355344 C 0.025793725829137325 0.038089649425355344 0.024960427061312174 0.03762352653361191 0.025063672231251163 0.03772677170355089 C 0.024960427061312174 0.03762352653361191 0.024670554699296313 0.03677770202629895 0.024700794509446684 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024700794509446684 0.03685070738608756 C 0.02467146160542907 0.036757144804418496 0.024308800246665856 0.03553483133053527 0.024348799661235328 0.03572795640605881 C 0.024308800246665856 0.03553483133053527 0.024224801476069972 0.034334081492096144 0.024220801534613024 0.034533206479805095 C 0.024224801476069972 0.034334081492096144 0.024442026976455075 0.03315595198230858 0.024396798958718695 0.03333845655355135 C 0.024442026976455075 0.03315595198230858 0.024794099313177137 0.03226020954750353 0.024763537747449566 0.03234315162489182" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27823369054215347,0.03603854072782974) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.024809999952497136 0.032521209092570544 C 0.024822760964877982 0.03247358434600921 0.025010756847628643 0.03186722365309267 0.024963132101067306 0.0319497121338345 C 0.025010756847628643 0.03186722365309267 0.025463985391975023 0.03148372257710729 0.025381496911233196 0.03153134732366863 C 0.025463985391975023 0.03148372257710729 0.026048243363091916 0.03137821517509845 0.025952993869969243 0.03137821517509845 C 0.026048243363091916 0.03137821517509845 0.026606979309447124 0.03157897207022995 0.026524490828705297 0.031531347323668614 C 0.026606979309447124 0.03157897207022995 0.026990480385432523 0.03203220061457632 0.026942855638871183 0.03194971213383449 C 0.026990480385432523 0.03203220061457632 0.027108748799822214 0.03256883383913188 0.027095987787441364 0.032521209092570544" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027095987787441364 0.032521209092570544 C 0.027129892904662094 0.03250659958475485 0.027596359346124266 0.03227466606257461 0.027502849194090132 0.03234589499878227 C 0.027596359346124266 0.03227466606257461 0.028277714646664353 0.03160984242968667 0.02821810961185095 0.031666461858078636" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02821810961185095 0.031666461858078636 C 0.028197493020423042 0.03179295065358074 0.027941895996444685 0.033411543280432 0.027970710514716047 0.033184327404103875 C 0.027941895996444685 0.033411543280432 0.02784652859347422 0.03459714223095413 0.027872335392594615 0.03439305237401609 C 0.02784652859347422 0.03459714223095413 0.027599145800850683 0.035838210271699616 0.027661028925271298 0.03563340568736033 C 0.027599145800850683 0.035838210271699616 0.027085463647403586 0.03695214919431483 0.027129737899547257 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027129737899547257 0.03685070738608756 C 0.027100692622377444 0.0369208288881538 0.026682027794273446 0.0377913321901185 0.026781194573509505 0.037692165410882446 C 0.026682027794273446 0.0377913321901185 0.025799493544582067 0.03804070873692019 0.025939736548714558 0.03804070873692019 C 0.025799493544582067 0.03804070873692019 0.02499911174468353 0.03759299863164639 0.02509827852391959 0.037692165410882446 C 0.02499911174468353 0.03759299863164639 0.02472068992071203 0.03678058588402132 0.024749735197881845 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024749735197881845 0.03685070738608756 C 0.024721561002238737 0.03676084071351959 0.024373225492469397 0.03558681106648169 0.024411644850164546 0.0357723073152719 C 0.024373225492469397 0.03558681106648169 0.024292544841309573 0.03443349324816057 0.02428870290554006 0.03462475240060505 C 0.024292544841309573 0.03443349324816057 0.02450118949997847 0.033301902210268644 0.024457748079398715 0.033477197485938186 C 0.02450118949997847 0.033301902210268644 0.024839354275255337 0.03244154339312324 0.024809999952497136 0.032521209092570544" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27824694786340815,0.031709042434312724) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.024854626807520923 0.03269223293416107 C 0.0248668837343907 0.03264648946033839 0.025047453403780937 0.03206408122751342 0.025001709929958264 0.03214331124828899 C 0.025047453403780937 0.03206408122751342 0.025482778514168546 0.031695729211031615 0.02540354849339298 0.031741472684854284 C 0.025482778514168546 0.031695729211031615 0.026043957126910395 0.03159438956241692 0.02595247017926505 0.03159438956241692 C 0.026043957126910395 0.03159438956241692 0.02658062188591268 0.031787216158676954 0.026501391865137114 0.031741472684854284 C 0.02658062188591268 0.031787216158676954 0.02694897390239449 0.03222254126906455 0.026903230428571817 0.03214331124828898 C 0.02694897390239449 0.03222254126906455 0.02706257047787896 0.032737976407983746 0.02705031355100918 0.03269223293416107" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02705031355100918 0.03269223293416107 C 0.027082879348289454 0.032678200531123115 0.02753091943238097 0.032455428846935995 0.02744110311837249 0.03252384409770558 C 0.02753091943238097 0.032455428846935995 0.02818535983583914 0.03181686707719439 0.028128109319110937 0.03187124992492602" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028128109319110937 0.03187124992492602 C 0.028108307124277615 0.031992742160028204 0.02786280669394045 0.03354739714093357 0.027890482981111058 0.03332915674615216 C 0.02786280669394045 0.03354739714093357 0.027771206494122118 0.03468616256171218 0.02779599387306366 0.03449013466230291 C 0.027771206494122118 0.03468616256171218 0.02753359581657281 0.03587820593271215 0.02759303443381256 0.03568149153906343 C 0.02753359581657281 0.03587820593271215 0.02704020513555117 0.03694814204000624 0.02708273046618666 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02708273046618666 0.03685070738608756 C 0.02705483253555561 0.036918058948579184 0.026652705805491388 0.037754175629109675 0.026747955298614064 0.037658926135987 C 0.026652705805491388 0.037754175629109675 0.025805033423731305 0.037993701303559606 0.025939736548714558 0.037993701303559606 C 0.025805033423731305 0.037993701303559606 0.025036268305692357 0.03756367664286433 0.025131517798815034 0.037658926135987 C 0.025036268305692357 0.03756367664286433 0.02476884470061139 0.03678335582359594 0.02479674263124244 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02479674263124244 0.03685070738608756 C 0.024769681372675625 0.03676439062681937 0.024435105812213188 0.03563673749889878 0.024472007528440663 0.035814906274869274 C 0.024435105812213188 0.03563673749889878 0.024357612208135492 0.03452897804103696 0.024353922036512744 0.03471268207444158 C 0.024357612208135492 0.03452897804103696 0.024558014985497645 0.033442087112323826 0.02451628958791363 0.03361045787401387 C 0.024558014985497645 0.033442087112323826 0.02488282157582153 0.032615714189173334 0.024854626807520923 0.03269223293416107" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27825968149395863,0.027550567982386233) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.024897490812517548 0.03285650099196106 C 0.024909263566262118 0.03281256447684133 0.025082700372572108 0.03225316253402941 0.02503876385745238 0.032329262810524305 C 0.025082700372572108 0.03225316253402941 0.025500829270449187 0.03189936115890266 0.025424728993954298 0.03194329767402239 C 0.025500829270449187 0.03189936115890266 0.026039840205630497 0.03180202462908756 0.025951967175391038 0.03180202462908756 C 0.026039840205630497 0.03180202462908756 0.02655530563332268 0.031987234189142115 0.02647920535682779 0.03194329767402239 C 0.02655530563332268 0.031987234189142115 0.026909107008449444 0.0324053630870192 0.026865170493329715 0.032329262810524305 C 0.026909107008449444 0.0324053630870192 0.027018216292009112 0.032900437507080785 0.027006443538264542 0.03285650099196106" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027006443538264542 0.03285650099196106 C 0.02703772292142065 0.03284302289690791 0.02746806452611039 0.03262905113978957 0.027381796136137875 0.03269476385132326 C 0.02746806452611039 0.03262905113978957 0.028096653224751147 0.032015713837076284 0.02804166421793474 0.03206794845355682" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02804166421793474 0.03206794845355682 C 0.02802264424940172 0.03218464150238799 0.02778684157706373 0.03367788450223764 0.027813424595538525 0.03346826503953088 C 0.02778684157706373 0.03367788450223764 0.02769885976833863 0.03477166641136468 0.027722667996237224 0.03458338200603787 C 0.02769885976833863 0.03477166641136468 0.02747063518777386 0.03591662168512339 0.027527725860755404 0.03572767790345258 C 0.02747063518777386 0.03591662168512339 0.02699673442543395 0.036944293176307146 0.027037579920458677 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027037579920458677 0.03685070738608756 C 0.027010784013883415 0.03691539842715764 0.02662454209391018 0.03771848682657379 0.02671602904155552 0.03762699987892845 C 0.02662454209391018 0.03771848682657379 0.025810354466574394 0.03794855075783161 0.025939736548714558 0.03794855075783161 C 0.025810354466574394 0.03794855075783161 0.02507195710822822 0.03753551293128311 0.025163444055873566 0.03762699987892845 C 0.02507195710822822 0.03753551293128311 0.024815097270395162 0.036786016345017485 0.024841893176970425 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024841893176970425 0.03685070738608756 C 0.024815900892239517 0.03676780031144398 0.024494541735566453 0.03568469173738247 0.02452998576019951 0.035855822490364585 C 0.024494541735566453 0.03568469173738247 0.024420109283837033 0.03462069099362515 0.024416564881373726 0.034797138350302216 C 0.024420109283837033 0.03462069099362515 0.02461259575068784 0.03357673443037803 0.024572518589759187 0.03373845421023979 C 0.02461259575068784 0.03357673443037803 0.024924571831080745 0.03278300489043783 0.024897490812517548 0.03285650099196106" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2782719121206351,0.02355636158825973) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.024938661603588798 0.03301428013294182 C 0.02494996931001495 0.03297207919804235 0.02511655501560208 0.0324347747507754 0.02507435408070261 0.03250786891414819 C 0.02511655501560208 0.0324347747507754 0.02551816698575522 0.0320949492375689 0.025445072822382432 0.03213715017246837 C 0.02551816698575522 0.0320949492375689 0.02603588591097501 0.03200145769535457 0.02595148404117607 0.03200145769535457 C 0.02603588591097501 0.03200145769535457 0.02653098942334248 0.03217935110736784 0.026457895259969694 0.03213715017246837 C 0.02653098942334248 0.03217935110736784 0.026870814936548984 0.03258096307752098 0.026828614001649514 0.03250786891414819 C 0.026870814936548984 0.03258096307752098 0.02697561418518948 0.03305648106784129 0.026964306478763328 0.03301428013294182" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026964306478763328 0.03301428013294182 C 0.026994350263726007 0.033001334449599455 0.0274076925143473 0.03279581500483082 0.02732483189831548 0.032858931932833506 C 0.0274076925143473 0.03279581500483082 0.028011450702214342 0.03220670575224932 0.027958633871145198 0.03225687699690964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027958633871145198 0.03225687699690964 C 0.02794036522940917 0.03236896043692589 0.027713877234233884 0.033803217351795464 0.027739410170312884 0.033601878277104556 C 0.027713877234233884 0.033803217351795464 0.02762937088291703 0.034853792687948165 0.027652238638197175 0.03467294589320058 C 0.02762937088291703 0.034853792687948165 0.02741016162973374 0.03595351993848287 0.027464997106951168 0.035772039814075625 C 0.02741016162973374 0.03595351993848287 0.026954980895307772 0.03694059635042189 0.026994212911588034 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026994212911588034 0.03685070738608756 C 0.026968475496914307 0.03691284300165328 0.02659749090526386 0.037684207803115696 0.026685363935503314 0.037596334772876244 C 0.02659749090526386 0.037684207803115696 0.025815465317583098 0.03790518374896097 0.025939736548714558 0.03790518374896097 C 0.025815465317583098 0.03790518374896097 0.02510623613168632 0.03750846174263679 0.025194109161925778 0.037596334772876244 C 0.02510623613168632 0.03750846174263679 0.024859522771167333 0.03678857177052184 0.02488526018584106 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02488526018584106 0.03685070738608756 C 0.024860294648341594 0.03677107530670655 0.02455162982107544 0.035730751687537615 0.02458567373584744 0.035895122433515426 C 0.02455162982107544 0.035730751687537615 0.024480137600054238 0.034708781101160206 0.024476733208577038 0.03487825843435381 C 0.024480137600054238 0.034708781101160206 0.024665020466491484 0.03370606291007447 0.024626526433573836 0.033861394435192135 C 0.024665020466491484 0.03370606291007447 0.02496467286775671 0.03294368727442096 0.024938661603588798 0.03301428013294182" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27828365961309665,0.019719934335113987) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.02497820606607116 0.033165826682295584 C 0.024989067095478063 0.033125292768726514 0.025149072332523083 0.0326092129217355 0.025108538418954014 0.03267941971946674 C 0.025149072332523083 0.0326092129217355 0.025534819826631236 0.03228281119595168 0.0254646130289 0.03232334510952075 C 0.025534819826631236 0.03228281119595168 0.02603208781886698 0.032193012756637884 0.02595101999172884 0.032193012756637884 C 0.02603208781886698 0.032193012756637884 0.026507633752288925 0.03236387902308981 0.02643742695455769 0.03232334510952074 C 0.026507633752288925 0.03236387902308981 0.026834035478072744 0.03274962651719797 0.026793501564503674 0.03267941971946673 C 0.026834035478072744 0.03274962651719797 0.026934694946793444 0.033206360595864653 0.02692383391738654 0.033165826682295584" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02692383391738654 0.033165826682295584 C 0.026952690912755622 0.033153392379336614 0.027349705317792874 0.032955991363675226 0.02727011786181554 0.03301661504678795 C 0.027349705317792874 0.032955991363675226 0.02792961384972279 0.03239015310478919 0.02787888338911454 0.03243834248494294" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02787888338911454 0.03243834248494294 C 0.02786133639526437 0.032545998404911666 0.0276437951288745 0.03392359930313006 0.02766831946291251 0.03373021352456759 C 0.0276437951288745 0.03392359930313006 0.02756262694744736 0.03493267481235404 0.027584591380658427 0.034758971827692574 C 0.02756262694744736 0.03493267481235404 0.027352076898183326 0.03598896063703814 0.02740474626437971 0.035814649340505225 C 0.027352076898183326 0.03598896063703814 0.026914876713128658 0.03693704555655276 0.026952558986301816 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026952558986301816 0.03685070738608756 C 0.02692783825098253 0.03691038852056721 0.026571508292671447 0.03765128286964225 0.026655910162470386 0.037566880999843316 C 0.026571508292671447 0.03765128286964225 0.02582037427975525 0.037863529823674726 0.025939736548714558 0.037863529823674726 C 0.02582037427975525 0.037863529823674726 0.025139161065159763 0.03748247913004439 0.025223562934958702 0.03756688099984332 C 0.025139161065159763 0.03748247913004439 0.02490219337580799 0.03679102625160791 0.024926914111127275 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024926914111127275 0.03685070738608756 C 0.02490293476229011 0.03677422093310626 0.02460646281303064 0.035774992177541744 0.024639161925081317 0.035932869950311946 C 0.02460646281303064 0.035774992177541744 0.024537794677724198 0.03479339147326737 0.02453452476651913 0.03495617411284516 C 0.024537794677724198 0.03479339147326737 0.02471537430117147 0.03383028265616593 0.024678400859542135 0.033979478275378394 C 0.02471537430117147 0.03383028265616593 0.02500318983328191 0.03309802238287202 0.02497820606607116 0.033165826682295584" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2782949430561109,0.01603505363132201) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.02501618844319654 0.03331138683985675 C 0.02502662044021981 0.03327245409694149 0.02518030515039108 0.03277676043606632 0.025141372407475816 0.032844193924873574 C 0.02518030515039108 0.03277676043606632 0.025550814846986968 0.03246325223125442 0.02548338135817971 0.032502184974169686 C 0.025550814846986968 0.03246325223125442 0.026028439758993417 0.03237700100989039 0.025950574273162885 0.03237700100989039 C 0.026028439758993417 0.03237700100989039 0.02648520067695334 0.03254111771708495 0.026417767188146084 0.032502184974169686 C 0.02648520067695334 0.03254111771708495 0.02679870888176523 0.032911627413680825 0.026759776138849965 0.03284419392487357 C 0.02679870888176523 0.032911627413680825 0.026895392100152543 0.033350319582772014 0.02688496010312927 0.03331138683985675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02688496010312927 0.03331138683985675 C 0.02691267718946728 0.03329944371673327 0.027294008731476735 0.03310984043599255 0.02721756513918542 0.033168069362374944 C 0.027294008731476735 0.03310984043599255 0.027851009716578366 0.03256635392000906 0.027802283210625063 0.03261263972326797" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027802283210625063 0.03261263972326797 C 0.027785429358125963 0.03271604301908609 0.027576481406841026 0.03403922592662305 0.027600036980635866 0.03385347927308535 C 0.027576481406841026 0.03403922592662305 0.027498519530916615 0.03500844093508168 0.02751961632508698 0.034841599565720305 C 0.027498519530916615 0.03500844093508168 0.0272962866296986 0.0360230013571191 0.027346875450591494 0.035855575705421826 C 0.0272962866296986 0.0360230013571191 0.02687635672635396 0.03693363502614304 0.026912550474372233 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026912550474372233 0.03685070738608756 C 0.02688880625753953 0.03690803099639299 0.026546552045241662 0.03761965853689086 0.026627619872379802 0.037538590709752725 C 0.026546552045241662 0.03761965853689086 0.025825089328103682 0.03782352131174516 0.025939736548714558 0.03782352131174516 C 0.025825089328103682 0.03782352131174516 0.025170785397911156 0.03745752288261459 0.025251853225049296 0.037538590709752725 C 0.025170785397911156 0.03745752288261459 0.024943178406224155 0.03679338377578213 0.02496692262305686 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02496692262305686 0.03685070738608756 C 0.02494389050645746 0.03677724230097192 0.02465912979213762 0.0358174850797097 0.024690537223864075 0.035969126364699934 C 0.02465912979213762 0.0358174850797097 0.024593174185512066 0.03487465956645559 0.024590033442339423 0.035031011966204784 C 0.024593174185512066 0.03487465956645559 0.02476373905867391 0.033949595473847294 0.024728226141935816 0.03409289756770963 C 0.02476373905867391 0.033949595473847294 0.025040185301634935 0.033246260945869015 0.02501618844319654 0.03331138683985675" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27830578078055923,0.0124957330850912) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.025052670440460705 0.03345119708007395 C 0.025062690352737567 0.033413802258369325 0.025210304209487666 0.03293768948848604 0.02517290938778304 0.03300245921961843 C 0.025210304209487666 0.03293768948848604 0.02556617803204862 0.032636565484780625 0.025501408300916226 0.03267396030648525 C 0.02556617803204862 0.032636565484780625 0.026024935804780998 0.0325537213591629 0.025950146161371746 0.0325537213591629 C 0.026024935804780998 0.0325537213591629 0.026463653752959653 0.03271135512818987 0.026398884021827263 0.03267396030648525 C 0.026463653752959653 0.03271135512818987 0.026764777756665067 0.03306722895075082 0.026727382934960443 0.03300245921961843 C 0.026764777756665067 0.03306722895075082 0.026857641794559628 0.033488591901778574 0.026847621882282766 0.03345119708007395" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026847621882282766 0.03345119708007395 C 0.026874244088276256 0.03343972573420009 0.02724051227171327 0.033257612162255194 0.027167088354204647 0.03331354092958764 C 0.02724051227171327 0.033257612162255194 0.027775510603901404 0.032735594450626064 0.02772870889238627 0.032780051872084645" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02772870889238627 0.032780051872084645 C 0.02771252080076859 0.032879370530911355 0.02751182671145531 0.034150285067234804 0.027534451792974108 0.03397187577800515 C 0.02751182671145531 0.034150285067234804 0.027436944485553675 0.0350812141444293 0.02745720791416072 0.03492096334284044 C 0.027436944485553675 0.0350812141444293 0.02724270018839957 0.036055697400675386 0.02729129064968955 0.03589488539707146 C 0.02724270018839957 0.036055697400675386 0.026839358356096858 0.03693035921850557 0.02687412237868091 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02687412237868091 0.03685070738608756 C 0.02685131610590153 0.036905766599138703 0.026522581619497842 0.037589283428531836 0.02660044710532837 0.03751141794270131 C 0.026522581619497842 0.037589283428531836 0.025829618122612252 0.037785093216053826 0.025939736548714558 0.037785093216053826 C 0.025829618122612252 0.037785093216053826 0.025201160506270193 0.037433552456870786 0.025279025992100725 0.03751141794270131 C 0.025201160506270193 0.037433552456870786 0.024982544445968813 0.03679564817303642 0.025005350718748192 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025005350718748192 0.03685070738608756 C 0.0249832284168187 0.03678014431876416 0.024709716320235924 0.03585829942725622 0.024739883095594318 0.03600395057820677 C 0.024709716320235924 0.03585829942725622 0.02464636609198329 0.0349527174074267 0.02464334941444745 0.03510289357468099 C 0.02464636609198329 0.0349527174074267 0.024810193311525494 0.0340641951966046 0.02477608322602439 0.034201836571155185 C 0.024810193311525494 0.0340641951966046 0.025075719374997064 0.03338864378915051 0.025052670440460705 0.03345119708007395" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2783161903932164,0.009096222779077588) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.02508771132586895 0.0335854845361821 C 0.025097335431571048 0.03354956688472445 0.025239118245751802 0.033092261521477095 0.02520320059429415 0.0331544727186903 C 0.025239118245751802 0.033092261521477095 0.02558093434057395 0.03280303251816604 0.02551872314336075 0.03283895016962369 C 0.02558093434057395 0.03280303251816604 0.026021570263767856 0.03272346090119851 0.025949734960852556 0.03272346090119851 C 0.026021570263767856 0.03272346090119851 0.026442957975557548 0.03287486782108134 0.026380746778344347 0.03283895016962369 C 0.026442957975557548 0.03287486782108134 0.026732186978868613 0.0332166839159035 0.02669626932741096 0.0331544727186903 C 0.026732186978868613 0.0332166839159035 0.02682138270153825 0.033621402187639746 0.02681175859583615 0.0335854845361821" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02681175859583615 0.0335854845361821 C 0.026837329171448484 0.03357446633141295 0.02718912902910338 0.033399546609787036 0.02711860550318418 0.03345326607895231 C 0.02718912902910338 0.033399546609787036 0.02770299385717342 0.03289814964180267 0.027658040906866556 0.0329408509061988" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027658040906866556 0.0329408509061988 C 0.027642492277243958 0.03303624627936453 0.027449726005846723 0.03425695714967412 0.027471457351395365 0.03408559538418762 C 0.027449726005846723 0.03425695714967412 0.027377801777632653 0.03515111266646127 0.027397264760282862 0.03499719209203678 C 0.027377801777632653 0.03515111266646127 0.027191230518704736 0.03608710188511914 0.027237901559592843 0.03593264227728157 C 0.027191230518704736 0.03608710188511914 0.02680382149546163 0.036927212811821396 0.026837212269625568 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026837212269625568 0.03685070738608756 C 0.026815306890233523 0.03690359165010476 0.02649955807351176 0.037560108197703175 0.02657434771692101 0.037485318554293934 C 0.02649955807351176 0.037560108197703175 0.025833968020680147 0.03774818310699847 0.025939736548714558 0.03774818310699847 C 0.025833968020680147 0.03774818310699847 0.02523033573709883 0.03741052891088469 0.02530512538050808 0.037485318554293934 C 0.02523033573709883 0.03741052891088469 0.025020355448411476 0.03679782312207036 0.025042260827803524 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025042260827803524 0.03685070738608756 C 0.025021012401044852 0.03678293170104957 0.024758304579301293 0.03589750152644598 0.02478727970669948 0.03603739916563168 C 0.024758304579301293 0.03589750152644598 0.02469745681176509 0.03502769180756374 0.02469455929902527 0.03517193571585916 C 0.02469745681176509 0.03502769180756374 0.02485481252848093 0.034174268001113534 0.02482204985957729 0.03430647226608662 C 0.02485481252848093 0.034174268001113534 0.025109849781393252 0.03352540222535672 0.02508771132586895 0.0335854845361821" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2783261888053544,0.0058309999291721246) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.025121368026221794 0.03371446736919906 C 0.02513061196050045 0.03367996853680929 0.025266794069955436 0.03324072765002092 0.025232295237565667 0.0333004813805218 C 0.025266794069955436 0.03324072765002092 0.02559510774539992 0.032962923770798666 0.025535354014899037 0.032997422603188435 C 0.02559510774539992 0.032962923770798666 0.026018337668355814 0.032886495391844565 0.025949340003576276 0.032886495391844565 C 0.026018337668355814 0.032886495391844565 0.026423079722754397 0.033031921435578204 0.026363325992253512 0.032997422603188435 C 0.026423079722754397 0.033031921435578204 0.02670088360197666 0.033360235111022686 0.026666384769586892 0.0333004813805218 C 0.02670088360197666 0.033360235111022686 0.026786555915209405 0.03374896620158883 0.02677731198093075 0.03371446736919906" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02677731198093075 0.03371446736919906 C 0.026801872467665248 0.0337038844055547 0.027139775527343046 0.03353587436277242 0.027072037821744707 0.033587471805466736 C 0.027139775527343046 0.03353587436277242 0.02763334166697467 0.03305428357781738 0.027590164448110827 0.03309529805686733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027590164448110827 0.03309529805686733 C 0.02757523002045558 0.033186925122002275 0.02739007840231109 0.03435941547151291 0.027410951316247868 0.034194822838486655 C 0.02739007840231109 0.03435941547151291 0.027320995324959935 0.03521825005707594 0.027339689480869497 0.03507040965318236 C 0.027320995324959935 0.03521825005707594 0.02714179400390218 0.03611726582961838 0.027186621445333126 0.03596890768520961 C 0.02714179400390218 0.03611726582961838 0.026769688411895243 0.036924190694494055 0.026801760183698158 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026801760183698158 0.03685070738608756 C 0.026780720110602854 0.03690150261590755 0.026477444003639227 0.03753208544684273 0.026549279306554527 0.03746025014392744 C 0.026477444003639227 0.03753208544684273 0.02583814608907456 0.03771273102107104 0.025939736548714558 0.03771273102107104 C 0.02583814608907456 0.03771273102107104 0.02525835848795926 0.03738841484101215 0.025330193790874565 0.03746025014392744 C 0.02525835848795926 0.03738841484101215 0.025056672840635633 0.03679991215626757 0.025077712913730937 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025077712913730937 0.03685070738608756 C 0.025057303842326087 0.03678560897615994 0.024804973504957053 0.03593515506431352 0.024832804056872756 0.03606952646695611 C 0.024804973504957053 0.03593515506431352 0.024746529345934076 0.03509970456894659 0.024743746290742507 0.03523825055437652 C 0.024746529345934076 0.03509970456894659 0.0248976691971282 0.03427999270969876 0.024866200719171592 0.03440697464179688 C 0.0248976691971282 0.03427999270969876 0.02514263196847598 0.03365675842981591 0.025121368026221794 0.03371446736919906" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27833579226021615,0.0026947599122836216) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.025153695219597313 0.03383835512234618 C 0.025162573999984093 0.03380521906283347 0.02529337664375138 0.03338332906955503 0.02526024058423867 0.03344072240819367 C 0.02529337664375138 0.03338332906955503 0.02560872127238846 0.03311649899916981 0.025551327933749823 0.03314963505868252 C 0.02560872127238846 0.03311649899916981 0.026015232766927753 0.033043089694041156 0.025948960647902336 0.033043089694041156 C 0.026015232766927753 0.033043089694041156 0.026403986700693473 0.03318277111819523 0.026346593362054836 0.03314963505868252 C 0.026403986700693473 0.03318277111819523 0.026670816771078697 0.03349811574683231 0.026637680711565987 0.03344072240819367 C 0.026670816771078697 0.03349811574683231 0.026753104856594122 0.03387149118185889 0.026744226076207342 0.03383835512234618" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026744226076207342 0.03383835512234618 C 0.026767816374594855 0.0338281902069317 0.02709237158760927 0.03366681689685941 0.027027309656857477 0.03371637613737241 C 0.02709237158760927 0.03366681689685941 0.02756644087759316 0.03320424991109165 0.027524969245228875 0.033243644236190174" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027524969245228875 0.033243644236190174 C 0.027510624757334866 0.03333165184899816 0.027332786998410314 0.03445782648472244 0.027352835390500763 0.034299735589885985 C 0.027332786998410314 0.03445782648472244 0.027266432840780678 0.035282735386486574 0.0272843885401435 0.0351407349742276 C 0.027266432840780678 0.035282735386486574 0.027094310330307365 0.036146238237982006 0.027137366998146905 0.03600374053699368 C 0.027094310330307365 0.036146238237982006 0.02673690365339588 0.036921287956845385 0.026767708526069033 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026767708526069033 0.03685070738608756 C 0.02674749957794114 0.0368994961027392 0.026456203483754798 0.03750516965068677 0.026525201148534336 0.03743617198590724 C 0.026456203483754798 0.03750516965068677 0.02584215911541126 0.03767867936344197 0.025939736548714558 0.03767867936344197 C 0.02584215911541126 0.03767867936344197 0.02528527428411522 0.03736717432112771 0.025354271948894763 0.03743617198590724 C 0.02528527428411522 0.03736717432112771 0.025091555623232165 0.03680191866943592 0.025111764571360058 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025111764571360058 0.03685070738608756 C 0.025092161699093844 0.0367881804935489 0.024849798914711556 0.035971321212128225 0.024876530104165486 0.036100384675623626 C 0.024849798914711556 0.035971321212128225 0.024793663416858305 0.035168872682229284 0.024790990297912912 0.03530194582414276 C 0.024793663416858305 0.035168872682229284 0.02493883294165056 0.03438154108084548 0.024908607531510193 0.03450350697266186 C 0.02493883294165056 0.03438154108084548 0.02517411919360457 0.03378292580148654 0.025153695219597313 0.03383835512234618" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2783450163594039,-0.0003175923514577572) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.025184745424180092 0.0339573490614685 C 0.025193273474984033 0.03392552194257866 0.02531890915271723 0.03352029744781469 0.02528708203382739 0.03357542363479043 C 0.02531890915271723 0.03352029744781469 0.02562179703783389 0.03326400769886984 0.025566670850858154 0.03329583481775968 C 0.02562179703783389 0.03326400769886984 0.026012250515315888 0.03319349820811237 0.02594859627753621 0.03319349820811237 C 0.026012250515315888 0.03319349820811237 0.026385647891190012 0.03332766193664952 0.026330521704214276 0.03329583481775968 C 0.026385647891190012 0.03332766193664952 0.026641937640134873 0.033630549821766165 0.026610110521245036 0.03357542363479043 C 0.026641937640134873 0.033630549821766165 0.02672097518169628 0.03398917618035834 0.02671244713089234 0.0339573490614685" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02671244713089234 0.0339573490614685 C 0.026735105565312944 0.03394758568054272 0.027046840198302842 0.0337925869389649 0.026984348343939608 0.033840188490359156 C 0.027046840198302842 0.0337925869389649 0.02750218280319379 0.033348292274268956 0.02746234938325116 0.033386130444737434" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02746234938325116 0.033386130444737434 C 0.02744857153131794 0.033470661580824276 0.02727775871954643 0.03455235006608816 0.027297015160052517 0.03440050407777954 C 0.02727775871954643 0.03455235006608816 0.02721402568385149 0.035344673416414785 0.02723127209717808 0.03520828230444086 C 0.02721402568385149 0.035344673416414785 0.027048702356786882 0.03617406617827047 0.027090058200133424 0.036037197421466584 C 0.027048702356786882 0.03617406617827047 0.02670541395842674 0.03691849988313931 0.026735001977019564 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026735001977019564 0.03685070738608756 C 0.02671559132276062 0.03689756885085403 0.02643580200688684 0.03747931708231058 0.026502074125912257 0.037413044963285166 C 0.02643580200688684 0.03747931708231058 0.025846013619181606 0.0376459728143925 0.025939736548714558 0.0376459728143925 C 0.025846013619181606 0.0376459728143925 0.025311126852491414 0.03734677284425975 0.025377398971516835 0.037413044963285166 C 0.025311126852491414 0.03734677284425975 0.025125060466150588 0.03680384592132109 0.02514447112040953 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02514447112040953 0.03685070738608756 C 0.025125642600803574 0.03679065043085796 0.024892853631129936 0.03600605872477197 0.024918528885138055 0.03613002392333238 C 0.024892853631129936 0.03600605872477197 0.024838935597712893 0.03523530851670106 0.02483636807231208 0.03536312500336267 C 0.024838935597712893 0.03523530851670106 0.024978370635936813 0.034479078088235145 0.024949339189947812 0.034596226083392995 C 0.024978370635936813 0.034479078088235145 0.025204362610366116 0.03390410930964146 0.025184745424180092 0.0339573490614685" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27835387608822554,-0.0032109506760768167) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.025214569083581464 0.03407164250200759 C 0.025222760259322546 0.034041072617968134 0.025343433076513915 0.033651855301196326 0.025312863192474465 0.03370480389353415 C 0.025343433076513915 0.033651855301196326 0.025634356284392708 0.03340568950991431 0.025581407692054886 0.033436259393953754 C 0.025634356284392708 0.03340568950991431 0.02600938606860721 0.03333796528506074 0.025948246300528305 0.03333796528506074 C 0.02600938606860721 0.03333796528506074 0.026368033501339545 0.0334668292779932 0.026315084909001727 0.033436259393953754 C 0.026368033501339545 0.0334668292779932 0.026614199292621585 0.03375775248587197 0.026583629408582134 0.03370480389353415 C 0.026614199292621585 0.03375775248587197 0.026690114693216235 0.03410221238604704 0.02668192351747515 0.03407164250200759" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02668192351747515 0.03407164250200759 C 0.026703686898419274 0.03406226479415514 0.027003107389936814 0.033913388812867123 0.026943084088804636 0.0339591100077782 C 0.027003107389936814 0.033913388812867123 0.02744046305124935 0.03348664467601601 0.027402203131061294 0.03352298816307464" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027402203131061294 0.03352298816307464 C 0.02738896953183514 0.03360418015022378 0.02722490416775423 0.03464313977694277 0.027243399940347447 0.03449729200886432 C 0.02722490416775423 0.03464313977694277 0.0271636887144353 0.03540416477028479 0.027180253859942667 0.035273161380016065 C 0.0271636887144353 0.03540416477028479 0.02700489598943641 0.03620079485926167 0.027044618194259074 0.03606933269208905 C 0.02700489598943641 0.03620079485926167 0.0266751681693883 0.03691582194392077 0.02670358740207067 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02670358740207067 0.03685070738608756 C 0.02668494350747626 0.03689571772927282 0.026416206429158116 0.037454485742090336 0.02647986066693779 0.03739083150431067 C 0.026416206429158116 0.037454485742090336 0.025849715862344018 0.037614558239443555 0.025939736548714558 0.037614558239443555 C 0.025849715862344018 0.037614558239443555 0.02533595819271162 0.037327177266531 0.025399612430491297 0.03739083150431067 C 0.02533595819271162 0.037327177266531 0.025157241800764025 0.036805697042902305 0.02517588569535843 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02517588569535843 0.03685070738608756 C 0.025157800939933948 0.03679302280070344 0.02493420760014036 0.036039424036191224 0.02495886863026465 0.0361584923614781 C 0.02493420760014036 0.036039424036191224 0.02488241943687937 0.03529912000283957 0.02487995333386694 0.035421887482645076 C 0.02488241943687937 0.03529912000283957 0.025016346512223352 0.034572762188758904 0.02498846186641381 0.034685282603812026 C 0.025016346512223352 0.034572762188758904 0.025233411351678767 0.034020505826857214 0.025214569083581464 0.03407164250200759" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27836238584003925,-0.00599001556015679) rotate(0) scale(1,1) translate(-0.025939736548714558,-0.03685070738608756)"><path d="M 0.025206439729492672 0.03685070738608756 C 0.025207213397257133 0.036808465599849544 0.025217271078195123 0.03625932237875536 0.025215723742666202 0.036343805951231385 C 0.025217271078195123 0.03625932237875536 0.02522655509136865 0.03575242094389916 0.02522500775583973 0.035836904516375195 C 0.02522655509136865 0.03575242094389916 0.02523583910454218 0.03524551950904297 0.02523429176901326 0.035330003081519006 C 0.02523583910454218 0.03524551950904297 0.025244349449951246 0.03478085986042479 0.025243575782186785 0.03482310164666281" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025243575782186785 0.03482310164666281 C 0.025251439310898224 0.03479375455798493 0.025367285215401946 0.03442010593388402 0.025337938126724073 0.034470936582528325 C 0.025367285215401946 0.03442010593388402 0.02564657149496558 0.03418378677425325 0.025595740846321272 0.03421313386293113 C 0.02564657149496558 0.03418378677425325 0.026006600087811502 0.03411877151839384 0.025947905910455756 0.03411877151839384 C 0.026006600087811502 0.03411877151839384 0.026350901623234547 0.034242480951609006 0.02630007097459024 0.03421313386293113 C 0.026350901623234547 0.034242480951609006 0.026587220782865312 0.03452176723117263 0.02655787369418744 0.034470936582528325 C 0.026587220782865312 0.03452176723117263 0.026660099567436167 0.034852448735340685 0.026652236038724728 0.03482310164666281" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026652236038724728 0.03482310164666281 C 0.026652669316416636 0.034865343432900826 0.02665830192641147 0.03541448665399503 0.02665743537102765 0.035330003081519 C 0.02665830192641147 0.03541448665399503 0.026663501258714393 0.03592138808885121 0.026662634703330572 0.03583690451637518 C 0.026663501258714393 0.03592138808885121 0.02666870059101732 0.0364282895237074 0.026667834035633498 0.03634380595123137 C 0.02666870059101732 0.0364282895237074 0.026673466645628335 0.03689294917232558 0.026673033367936423 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026673033367936423 0.03685070738608756 C 0.02665513522912579 0.03689391731554542 0.02639714763394037 0.03743033460785038 0.02645825570220886 0.037369226539581885 C 0.02639714763394037 0.03743033460785038 0.02585331668979882 0.03758400420530944 0.02593973654871454 0.03758400420530944 C 0.02585331668979882 0.03758400420530944 0.025360109326951735 0.037308118471313385 0.025421217395220224 0.03736922653958188 C 0.025360109326951735 0.037308118471313385 0.025188541590682043 0.0368074974566297 0.025206439729492672 0.03685070738608756" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 80 KiB

View File

@@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.2780025635192015,0.11151864958480151) rotate(0) scale(1,1) translate(-0.03201710224106214,-0.04324024795580918)"><path d="M 0.026430002228471836 0.020155105163088282 C 0.026393845959420948 0.020055766630299246 0.025978327749700693 0.018759596409335406 0.025996126999861195 0.01896304276961986 C 0.025978327749700693 0.018759596409335406 0.026302719803880745 0.017528659498280745 0.026216411226545826 0.017713748839674814 C 0.026302719803880745 0.017528659498280745 0.027199120019113815 0.016624832889941488 0.027031829927880245 0.016741970672891023 C 0.027199120019113815 0.016624832889941488 0.028427338681633114 0.016290296194119893 0.02822389232134866 0.016308095444280392 C 0.028427338681633114 0.016290296194119893 0.029658275592687765 0.016614688248299942 0.029473186251293696 0.016528379670965022 C 0.029658275592687765 0.016614688248299942 0.030525945931976144 0.01741174993074397 0.030444964418077494 0.017343798372299435" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030444964418077494 0.017343798372299435 C 0.030567997569523313 0.017443329583729565 0.03220478574596877 0.019497408174236074 0.031921362235427325 0.018538172909460977 C 0.03220478574596877 0.019497408174236074 0.03399917499572095 0.030786071691505608 0.0338460465445749 0.02885462154960061 C 0.03399917499572095 0.030786071691505608 0.03372925645446825 0.04291437681283836 0.03375890364917995 0.041715574612320984 C 0.03372925645446825 0.04291437681283836 0.03346789492127231 0.043367304067766524 0.03349028020803444 0.04324024795580918" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03349028020803444 0.04324024795580918 C 0.03345432322164848 0.04332705580000424 0.032936031540821836 0.044404706916730916 0.03305879637140286 0.04428194208614989 C 0.032936031540821836 0.044404706916730916 0.03184348655267202 0.044713425922781484 0.03201710224106214 0.044713425922781484 C 0.03184348655267202 0.044713425922781484 0.030852643280140406 0.044159177255568866 0.03097540811072143 0.04428194208614989 C 0.030852643280140406 0.044159177255568866 0.03050796728770388 0.043153440111614115 0.030543924274089845 0.04324024795580918" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030543924274089845 0.04324024795580918 C 0.03052153898732772 0.04311319184385183 0.030173364350326908 0.040607129422689854 0.030275300832944343 0.041715574612321 C 0.030173364350326908 0.040607129422689854 0.028984180073888897 0.028285580900505144 0.029320686482680627 0.02993890568023543 C 0.028984180073888897 0.028285580900505144 0.025996333572926193 0.021060360545795305 0.02623722392744359 0.021875677255557568 C 0.025996333572926193 0.021060360545795305 0.026446067086890856 0.020011724155382507 0.026430002228471836 0.020155105163088282" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27442294460141403,0.0870278533966862) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0038045715345789285 0.00472709510552022 C 0.003822318593990913 0.00466086217810975 0.004083769174933216 0.003817581181185625 0.004017536247522746 0.003932299976594581 C 0.004083769174933216 0.003817581181185625 0.004714085458913525 0.003284236633202286 0.0045993666635045696 0.003350469560612756 C 0.004714085458913525 0.003284236633202286 0.0055266276472511495 0.0031375048476689404 0.00539416179243021 0.0031375048476689404 C 0.0055266276472511495 0.0031375048476689404 0.006303675716764805 0.0034167024880232258 0.00618895692135585 0.003350469560612756 C 0.006303675716764805 0.0034167024880232258 0.006837020264748144 0.004047018772003536 0.006770787337337674 0.003932299976594581 C 0.006837020264748144 0.004047018772003536 0.0070014991096934735 0.004793328032930691 0.006983752050281489 0.004727095105520221" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006983752050281489 0.004727095105520221 C 0.0070122179437086965 0.004762226268171412 0.0073530652516523385 0.005247768982655531 0.007325342771407981 0.005148669057334515 C 0.0073530652516523385 0.005247768982655531 0.0072959577245632744 0.006040946640977617 0.00731642181321378 0.0059162942093724 C 0.0072959577245632744 0.006040946640977617 0.007026252602189253 0.006760345184654379 0.007079773707601917 0.006644498236597109 C 0.007026252602189253 0.006760345184654379 0.006640368118316798 0.007361620865181522 0.006674168548261807 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006674168548261807 0.007306457586059644 C 0.006642926440026934 0.007381882707477404 0.006192596019790691 0.008318226272725392 0.006299263249443324 0.008211559043072759 C 0.006192596019790691 0.008318226272725392 0.00524331154959469 0.008586464341891243 0.005394161792430209 0.008586464341891243 C 0.00524331154959469 0.008586464341891243 0.004382393105764461 0.008104891813420126 0.004489060335417094 0.008211559043072759 C 0.004382393105764461 0.008104891813420126 0.004082912928363738 0.007231032464641884 0.004114155036598611 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004114155036598611 0.007306457586059644 C 0.004080354606653601 0.007251294306937766 0.003655028771845833 0.006528651288539838 0.003708549877258498 0.006644498236597108 C 0.003655028771845833 0.006528651288539838 0.003451437682996131 0.005791641777767183 0.003471901771646636 0.0059162942093723995 C 0.003451437682996131 0.005791641777767183 0.0034907032936967943 0.0050495691320135 0.0034629808134524365 0.005148669057334515 C 0.0034907032936967943 0.0050495691320135 0.0038330374280061363 0.00469196394286903 0.0038045715345789285 0.004727095105520221" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27442294460141403,0.08444849091614677) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0038045715345789285 0.00472709510552022 C 0.003822318593990913 0.00466086217810975 0.004083769174933216 0.003817581181185625 0.004017536247522746 0.003932299976594581 C 0.004083769174933216 0.003817581181185625 0.004714085458913525 0.003284236633202286 0.0045993666635045696 0.003350469560612756 C 0.004714085458913525 0.003284236633202286 0.0055266276472511495 0.0031375048476689404 0.00539416179243021 0.0031375048476689404 C 0.0055266276472511495 0.0031375048476689404 0.006303675716764805 0.0034167024880232258 0.00618895692135585 0.003350469560612756 C 0.006303675716764805 0.0034167024880232258 0.006837020264748144 0.004047018772003536 0.006770787337337674 0.003932299976594581 C 0.006837020264748144 0.004047018772003536 0.0070014991096934735 0.004793328032930691 0.006983752050281489 0.004727095105520221" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006983752050281489 0.004727095105520221 C 0.0070122179437086965 0.004762226268171412 0.0073530652516523385 0.005247768982655531 0.007325342771407981 0.005148669057334515 C 0.0073530652516523385 0.005247768982655531 0.0072959577245632744 0.006040946640977617 0.00731642181321378 0.0059162942093724 C 0.0072959577245632744 0.006040946640977617 0.007026252602189253 0.006760345184654379 0.007079773707601917 0.006644498236597109 C 0.007026252602189253 0.006760345184654379 0.006640368118316798 0.007361620865181522 0.006674168548261807 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006674168548261807 0.007306457586059644 C 0.006642926440026934 0.007381882707477404 0.006192596019790691 0.008318226272725392 0.006299263249443324 0.008211559043072759 C 0.006192596019790691 0.008318226272725392 0.00524331154959469 0.008586464341891243 0.005394161792430209 0.008586464341891243 C 0.00524331154959469 0.008586464341891243 0.004382393105764461 0.008104891813420126 0.004489060335417094 0.008211559043072759 C 0.004382393105764461 0.008104891813420126 0.004082912928363738 0.007231032464641884 0.004114155036598611 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004114155036598611 0.007306457586059644 C 0.004080354606653601 0.007251294306937766 0.003655028771845833 0.006528651288539838 0.003708549877258498 0.006644498236597108 C 0.003655028771845833 0.006528651288539838 0.003451437682996131 0.005791641777767183 0.003471901771646636 0.0059162942093723995 C 0.003451437682996131 0.005791641777767183 0.0034907032936967943 0.0050495691320135 0.0034629808134524365 0.005148669057334515 C 0.0034907032936967943 0.0050495691320135 0.0038330374280061363 0.00469196394286903 0.0038045715345789285 0.004727095105520221" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27442294460141403,0.08186912843560734) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0038045715345789285 0.00472709510552022 C 0.003822318593990913 0.00466086217810975 0.004083769174933216 0.003817581181185625 0.004017536247522746 0.003932299976594581 C 0.004083769174933216 0.003817581181185625 0.004714085458913525 0.003284236633202286 0.0045993666635045696 0.003350469560612756 C 0.004714085458913525 0.003284236633202286 0.0055266276472511495 0.0031375048476689404 0.00539416179243021 0.0031375048476689404 C 0.0055266276472511495 0.0031375048476689404 0.006303675716764805 0.0034167024880232258 0.00618895692135585 0.003350469560612756 C 0.006303675716764805 0.0034167024880232258 0.006837020264748144 0.004047018772003536 0.006770787337337674 0.003932299976594581 C 0.006837020264748144 0.004047018772003536 0.0070014991096934735 0.004793328032930691 0.006983752050281489 0.004727095105520221" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006983752050281489 0.004727095105520221 C 0.0070122179437086965 0.004762226268171412 0.0073530652516523385 0.005247768982655531 0.007325342771407981 0.005148669057334515 C 0.0073530652516523385 0.005247768982655531 0.0072959577245632744 0.006040946640977617 0.00731642181321378 0.0059162942093724 C 0.0072959577245632744 0.006040946640977617 0.007026252602189253 0.006760345184654379 0.007079773707601917 0.006644498236597109 C 0.007026252602189253 0.006760345184654379 0.006640368118316798 0.007361620865181522 0.006674168548261807 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006674168548261807 0.007306457586059644 C 0.006642926440026934 0.007381882707477404 0.006192596019790691 0.008318226272725392 0.006299263249443324 0.008211559043072759 C 0.006192596019790691 0.008318226272725392 0.00524331154959469 0.008586464341891243 0.005394161792430209 0.008586464341891243 C 0.00524331154959469 0.008586464341891243 0.004382393105764461 0.008104891813420126 0.004489060335417094 0.008211559043072759 C 0.004382393105764461 0.008104891813420126 0.004082912928363738 0.007231032464641884 0.004114155036598611 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004114155036598611 0.007306457586059644 C 0.004080354606653601 0.007251294306937766 0.003655028771845833 0.006528651288539838 0.003708549877258498 0.006644498236597108 C 0.003655028771845833 0.006528651288539838 0.003451437682996131 0.005791641777767183 0.003471901771646636 0.0059162942093723995 C 0.003451437682996131 0.005791641777767183 0.0034907032936967943 0.0050495691320135 0.0034629808134524365 0.005148669057334515 C 0.0034907032936967943 0.0050495691320135 0.0038330374280061363 0.00469196394286903 0.0038045715345789285 0.004727095105520221" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27442294460141403,0.07928976595506791) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0038045715345789285 0.00472709510552022 C 0.003822318593990913 0.00466086217810975 0.004083769174933216 0.003817581181185625 0.004017536247522746 0.003932299976594581 C 0.004083769174933216 0.003817581181185625 0.004714085458913525 0.003284236633202286 0.0045993666635045696 0.003350469560612756 C 0.004714085458913525 0.003284236633202286 0.0055266276472511495 0.0031375048476689404 0.00539416179243021 0.0031375048476689404 C 0.0055266276472511495 0.0031375048476689404 0.006303675716764805 0.0034167024880232258 0.00618895692135585 0.003350469560612756 C 0.006303675716764805 0.0034167024880232258 0.006837020264748144 0.004047018772003536 0.006770787337337674 0.003932299976594581 C 0.006837020264748144 0.004047018772003536 0.0070014991096934735 0.004793328032930691 0.006983752050281489 0.004727095105520221" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006983752050281489 0.004727095105520221 C 0.0070122179437086965 0.004762226268171412 0.0073530652516523385 0.005247768982655531 0.007325342771407981 0.005148669057334515 C 0.0073530652516523385 0.005247768982655531 0.0072959577245632744 0.006040946640977617 0.00731642181321378 0.0059162942093724 C 0.0072959577245632744 0.006040946640977617 0.007026252602189253 0.006760345184654379 0.007079773707601917 0.006644498236597109 C 0.007026252602189253 0.006760345184654379 0.006640368118316798 0.007361620865181522 0.006674168548261807 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006674168548261807 0.007306457586059644 C 0.006642926440026934 0.007381882707477404 0.006192596019790691 0.008318226272725392 0.006299263249443324 0.008211559043072759 C 0.006192596019790691 0.008318226272725392 0.00524331154959469 0.008586464341891243 0.005394161792430209 0.008586464341891243 C 0.00524331154959469 0.008586464341891243 0.004382393105764461 0.008104891813420126 0.004489060335417094 0.008211559043072759 C 0.004382393105764461 0.008104891813420126 0.004082912928363738 0.007231032464641884 0.004114155036598611 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004114155036598611 0.007306457586059644 C 0.004080354606653601 0.007251294306937766 0.003655028771845833 0.006528651288539838 0.003708549877258498 0.006644498236597108 C 0.003655028771845833 0.006528651288539838 0.003451437682996131 0.005791641777767183 0.003471901771646636 0.0059162942093723995 C 0.003451437682996131 0.005791641777767183 0.0034907032936967943 0.0050495691320135 0.0034629808134524365 0.005148669057334515 C 0.0034907032936967943 0.0050495691320135 0.0038330374280061363 0.00469196394286903 0.0038045715345789285 0.004727095105520221" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27442294460141403,0.07671040347452848) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0038045715345789285 0.00472709510552022 C 0.003822318593990913 0.00466086217810975 0.004083769174933216 0.003817581181185625 0.004017536247522746 0.003932299976594581 C 0.004083769174933216 0.003817581181185625 0.004714085458913525 0.003284236633202286 0.0045993666635045696 0.003350469560612756 C 0.004714085458913525 0.003284236633202286 0.0055266276472511495 0.0031375048476689404 0.00539416179243021 0.0031375048476689404 C 0.0055266276472511495 0.0031375048476689404 0.006303675716764805 0.0034167024880232258 0.00618895692135585 0.003350469560612756 C 0.006303675716764805 0.0034167024880232258 0.006837020264748144 0.004047018772003536 0.006770787337337674 0.003932299976594581 C 0.006837020264748144 0.004047018772003536 0.0070014991096934735 0.004793328032930691 0.006983752050281489 0.004727095105520221" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006983752050281489 0.004727095105520221 C 0.0070122179437086965 0.004762226268171412 0.0073530652516523385 0.005247768982655531 0.007325342771407981 0.005148669057334515 C 0.0073530652516523385 0.005247768982655531 0.0072959577245632744 0.006040946640977617 0.00731642181321378 0.0059162942093724 C 0.0072959577245632744 0.006040946640977617 0.007026252602189253 0.006760345184654379 0.007079773707601917 0.006644498236597109 C 0.007026252602189253 0.006760345184654379 0.006640368118316798 0.007361620865181522 0.006674168548261807 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006674168548261807 0.007306457586059644 C 0.006642926440026934 0.007381882707477404 0.006192596019790691 0.008318226272725392 0.006299263249443324 0.008211559043072759 C 0.006192596019790691 0.008318226272725392 0.00524331154959469 0.008586464341891243 0.005394161792430209 0.008586464341891243 C 0.00524331154959469 0.008586464341891243 0.004382393105764461 0.008104891813420126 0.004489060335417094 0.008211559043072759 C 0.004382393105764461 0.008104891813420126 0.004082912928363738 0.007231032464641884 0.004114155036598611 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004114155036598611 0.007306457586059644 C 0.004080354606653601 0.007251294306937766 0.003655028771845833 0.006528651288539838 0.003708549877258498 0.006644498236597108 C 0.003655028771845833 0.006528651288539838 0.003451437682996131 0.005791641777767183 0.003471901771646636 0.0059162942093723995 C 0.003451437682996131 0.005791641777767183 0.0034907032936967943 0.0050495691320135 0.0034629808134524365 0.005148669057334515 C 0.0034907032936967943 0.0050495691320135 0.0038330374280061363 0.00469196394286903 0.0038045715345789285 0.004727095105520221" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27442294460141403,0.07413104099398905) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0038045715345789285 0.00472709510552022 C 0.003822318593990913 0.00466086217810975 0.004083769174933216 0.003817581181185625 0.004017536247522746 0.003932299976594581 C 0.004083769174933216 0.003817581181185625 0.004714085458913525 0.003284236633202286 0.0045993666635045696 0.003350469560612756 C 0.004714085458913525 0.003284236633202286 0.0055266276472511495 0.0031375048476689404 0.00539416179243021 0.0031375048476689404 C 0.0055266276472511495 0.0031375048476689404 0.006303675716764805 0.0034167024880232258 0.00618895692135585 0.003350469560612756 C 0.006303675716764805 0.0034167024880232258 0.006837020264748144 0.004047018772003536 0.006770787337337674 0.003932299976594581 C 0.006837020264748144 0.004047018772003536 0.0070014991096934735 0.004793328032930691 0.006983752050281489 0.004727095105520221" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006983752050281489 0.004727095105520221 C 0.0070122179437086965 0.004762226268171412 0.0073530652516523385 0.005247768982655531 0.007325342771407981 0.005148669057334515 C 0.0073530652516523385 0.005247768982655531 0.0072959577245632744 0.006040946640977617 0.00731642181321378 0.0059162942093724 C 0.0072959577245632744 0.006040946640977617 0.007026252602189253 0.006760345184654379 0.007079773707601917 0.006644498236597109 C 0.007026252602189253 0.006760345184654379 0.006640368118316798 0.007361620865181522 0.006674168548261807 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006674168548261807 0.007306457586059644 C 0.006642926440026934 0.007381882707477404 0.006192596019790691 0.008318226272725392 0.006299263249443324 0.008211559043072759 C 0.006192596019790691 0.008318226272725392 0.00524331154959469 0.008586464341891243 0.005394161792430209 0.008586464341891243 C 0.00524331154959469 0.008586464341891243 0.004382393105764461 0.008104891813420126 0.004489060335417094 0.008211559043072759 C 0.004382393105764461 0.008104891813420126 0.004082912928363738 0.007231032464641884 0.004114155036598611 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004114155036598611 0.007306457586059644 C 0.004080354606653601 0.007251294306937766 0.003655028771845833 0.006528651288539838 0.003708549877258498 0.006644498236597108 C 0.003655028771845833 0.006528651288539838 0.003451437682996131 0.005791641777767183 0.003471901771646636 0.0059162942093723995 C 0.003451437682996131 0.005791641777767183 0.0034907032936967943 0.0050495691320135 0.0034629808134524365 0.005148669057334515 C 0.0034907032936967943 0.0050495691320135 0.0038330374280061363 0.00469196394286903 0.0038045715345789285 0.004727095105520221" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27442294460141403,0.07155167851344962) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0038045715345789285 0.00472709510552022 C 0.003822318593990913 0.00466086217810975 0.004083769174933216 0.003817581181185625 0.004017536247522746 0.003932299976594581 C 0.004083769174933216 0.003817581181185625 0.004714085458913525 0.003284236633202286 0.0045993666635045696 0.003350469560612756 C 0.004714085458913525 0.003284236633202286 0.0055266276472511495 0.0031375048476689404 0.00539416179243021 0.0031375048476689404 C 0.0055266276472511495 0.0031375048476689404 0.006303675716764805 0.0034167024880232258 0.00618895692135585 0.003350469560612756 C 0.006303675716764805 0.0034167024880232258 0.006837020264748144 0.004047018772003536 0.006770787337337674 0.003932299976594581 C 0.006837020264748144 0.004047018772003536 0.0070014991096934735 0.004793328032930691 0.006983752050281489 0.004727095105520221" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006983752050281489 0.004727095105520221 C 0.0070122179437086965 0.004762226268171412 0.0073530652516523385 0.005247768982655531 0.007325342771407981 0.005148669057334515 C 0.0073530652516523385 0.005247768982655531 0.0072959577245632744 0.006040946640977617 0.00731642181321378 0.0059162942093724 C 0.0072959577245632744 0.006040946640977617 0.007026252602189253 0.006760345184654379 0.007079773707601917 0.006644498236597109 C 0.007026252602189253 0.006760345184654379 0.006640368118316798 0.007361620865181522 0.006674168548261807 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006674168548261807 0.007306457586059644 C 0.006642926440026934 0.007381882707477404 0.006192596019790691 0.008318226272725392 0.006299263249443324 0.008211559043072759 C 0.006192596019790691 0.008318226272725392 0.00524331154959469 0.008586464341891243 0.005394161792430209 0.008586464341891243 C 0.00524331154959469 0.008586464341891243 0.004382393105764461 0.008104891813420126 0.004489060335417094 0.008211559043072759 C 0.004382393105764461 0.008104891813420126 0.004082912928363738 0.007231032464641884 0.004114155036598611 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004114155036598611 0.007306457586059644 C 0.004080354606653601 0.007251294306937766 0.003655028771845833 0.006528651288539838 0.003708549877258498 0.006644498236597108 C 0.003655028771845833 0.006528651288539838 0.003451437682996131 0.005791641777767183 0.003471901771646636 0.0059162942093723995 C 0.003451437682996131 0.005791641777767183 0.0034907032936967943 0.0050495691320135 0.0034629808134524365 0.005148669057334515 C 0.0034907032936967943 0.0050495691320135 0.0038330374280061363 0.00469196394286903 0.0038045715345789285 0.004727095105520221" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27442294460141403,0.0689723160329102) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0038045715345789285 0.004598126981493248 C 0.003822318593990913 0.004528582407712254 0.004083769174933216 0.003643137360941924 0.004017536247522746 0.003763592096121327 C 0.004083769174933216 0.003643137360941924 0.004714085458913525 0.003083125585559418 0.0045993666635045696 0.0031526701593404117 C 0.004714085458913525 0.003083125585559418 0.0055266276472511495 0.002929057210749406 0.00539416179243021 0.002929057210749406 C 0.0055266276472511495 0.002929057210749406 0.006303675716764805 0.0032222147331214053 0.00618895692135585 0.0031526701593404117 C 0.006303675716764805 0.0032222147331214053 0.006837020264748144 0.00388404683130073 0.006770787337337674 0.003763592096121327 C 0.006837020264748144 0.00388404683130073 0.0070014991096934735 0.004667671555274242 0.006983752050281489 0.004598126981493249" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006983752050281489 0.004598126981493249 C 0.007206830900947285 0.004654620319264396 0.010165814055982495 0.005417988381911634 0.009660698258271035 0.005276047034747015 C 0.010165814055982495 0.005417988381911634 0.013080031966112085 0.006625112133054542 0.013045141622819011 0.006301423147468677 C 0.013080031966112085 0.006625112133054542 0.009548467954908145 0.009244067731659984 0.010079382377787912 0.009160314861777404 C 0.009548467954908145 0.009244067731659984 0.006390400729134631 0.007151969479749831 0.006674168548261807 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006674168548261807 0.007306457586059644 C 0.006642926440026934 0.007385653963548291 0.006192596019790691 0.00836881470705868 0.006299263249443324 0.008256814115923414 C 0.006192596019790691 0.00836881470705868 0.00524331154959469 0.008650464679682822 0.005394161792430209 0.008650464679682822 C 0.00524331154959469 0.008650464679682822 0.004382393105764461 0.00814481352478815 0.004489060335417094 0.008256814115923414 C 0.004382393105764461 0.00814481352478815 0.004082912928363738 0.007227261208570997 0.004114155036598611 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004114155036598611 0.007306457586059644 C 0.004080354606653601 0.007248536142981672 0.003655028771845833 0.006489760973663846 0.003708549877258498 0.00661140026912398 C 0.003655028771845833 0.006489760973663846 0.003451437682996131 0.005715900987352561 0.003471901771646636 0.005846786040538038 C 0.003451437682996131 0.005715900987352561 0.0034907032936967943 0.004936724709311193 0.0034629808134524365 0.0050407796308982586 C 0.0034907032936967943 0.004936724709311193 0.0038330374280061363 0.004561239260709498 0.0038045715345789285 0.004598126981493249" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27442294460141403,0.0662639854283438) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0038045715345789285 0.004598126981493248 C 0.003822318593990913 0.004528582407712254 0.004083769174933216 0.003643137360941924 0.004017536247522746 0.003763592096121327 C 0.004083769174933216 0.003643137360941924 0.004714085458913525 0.003083125585559418 0.0045993666635045696 0.0031526701593404117 C 0.004714085458913525 0.003083125585559418 0.0055266276472511495 0.002929057210749406 0.00539416179243021 0.002929057210749406 C 0.0055266276472511495 0.002929057210749406 0.006303675716764805 0.0032222147331214053 0.00618895692135585 0.0031526701593404117 C 0.006303675716764805 0.0032222147331214053 0.006837020264748144 0.00388404683130073 0.006770787337337674 0.003763592096121327 C 0.006837020264748144 0.00388404683130073 0.0070014991096934735 0.004667671555274242 0.006983752050281489 0.004598126981493249" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006983752050281489 0.004598126981493249 C 0.007327427477003076 0.004531841726261396 0.011651781679673921 0.0038541418268020194 0.011107857170940528 0.0038027039187110106 C 0.011651781679673921 0.0038541418268020194 0.013528367044197397 0.00550453062811366 0.013510846155082214 0.005215381878585355 C 0.013528367044197397 0.00550453062811366 0.01074838470642101 0.007446745222006856 0.01131810784032271 0.007272488913050665 C 0.01074838470642101 0.007446745222006856 0.006287173607256732 0.007309288308810393 0.006674168548261807 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006674168548261807 0.007306457586059644 C 0.006642926440026934 0.007385653963548291 0.006192596019790691 0.00836881470705868 0.006299263249443324 0.008256814115923414 C 0.006192596019790691 0.00836881470705868 0.00524331154959469 0.008650464679682822 0.005394161792430209 0.008650464679682822 C 0.00524331154959469 0.008650464679682822 0.004382393105764461 0.00814481352478815 0.004489060335417094 0.008256814115923414 C 0.004382393105764461 0.00814481352478815 0.004082912928363738 0.007227261208570997 0.004114155036598611 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004114155036598611 0.007306457586059644 C 0.004080354606653601 0.007248536142981672 0.003655028771845833 0.006489760973663846 0.003708549877258498 0.00661140026912398 C 0.003655028771845833 0.006489760973663846 0.003451437682996131 0.005715900987352561 0.003471901771646636 0.005846786040538038 C 0.003451437682996131 0.005715900987352561 0.0034907032936967943 0.004936724709311193 0.0034629808134524365 0.0050407796308982586 C 0.0034907032936967943 0.004936724709311193 0.0038330374280061363 0.004561239260709498 0.0038045715345789285 0.004598126981493249" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27442294460141403,0.0635556548237774) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.004115424568075304 0.0072772546243472114 C 0.0041410360165299925 0.0070053343874177144 0.004575467471141235 0.003539810014895902 0.004422761949531561 0.004014211781193243 C 0.004575467471141235 0.003539810014895902 0.00628169259283894 0.0012940275233726008 0.005947890827391396 0.0015844334287791148 C 0.00628169259283894 0.0012940275233726008 0.008859090165272731 0.0005390171138117137 0.008428383134902082 0.0005293409163150763 C 0.008859090165272731 0.0005390171138117137 0.011482959035755138 0.0020131880401028073 0.011116375191839183 0.0017005477987387628 C 0.011482959035755138 0.0020131880401028073 0.012729721235877492 0.00461546593744225 0.01282738926189353 0.004281023812683609 C 0.012729721235877492 0.00461546593744225 0.009431590486844091 0.005965972776957119 0.009944358879646734 0.00571385329584245 C 0.009431590486844091 0.005965972776957119 0.006401652687313063 0.00743917461024441 0.006674168548261807 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006674168548261807 0.007306457586059644 C 0.006642926440026934 0.007385653963548291 0.006192596019790691 0.00836881470705868 0.006299263249443324 0.008256814115923414 C 0.006192596019790691 0.00836881470705868 0.00524331154959469 0.008650464679682822 0.005394161792430209 0.008650464679682822 C 0.00524331154959469 0.008650464679682822 0.004382498900054185 0.008142379944645447 0.004489060335417094 0.008256814115923414 C 0.004382498900054185 0.008142379944645447 0.004084288254130155 0.007195624666715861 0.004115424568075304 0.0072772546243472114" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 30 KiB

View File

@@ -0,0 +1,143 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.2780025635192015,0.11151864958480151) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09625218766527645 0.11854676982282339 C 0.0962616566737069 0.11851143100226363 0.09640115458700167 0.1180614953434173 0.09636581576644192 0.11812270397610636 C 0.09640115458700167 0.1180614953434173 0.09673746214468258 0.11777692740999496 0.09667625351199352 0.11781226623055471 C 0.09673746214468258 0.11777692740999496 0.09717099699983009 0.11769863812938927 0.09710031935871058 0.11769863812938927 C 0.09717099699983009 0.11769863812938927 0.09758559383811669 0.11784760505111447 0.09752438520542762 0.11781226623055471 C 0.09758559383811669 0.11784760505111447 0.09787016177153898 0.11818391260879542 0.09783482295097923 0.11812270397610636 C 0.09787016177153898 0.11818391260879542 0.09795792006057516 0.11858210864338314 0.0979484510521447 0.11854676982282339" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0979484510521447 0.11854676982282339 C 0.09794917225256429 0.11867618100311866 0.09795854785801891 0.12035852634695733 0.09795710545717974 0.12009970398636677 C 0.09795854785801891 0.12035852634695733 0.09796648106263434 0.1217820493302054 0.09796575986221476 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09796575986221476 0.12165263814991012 C 0.09794463639098452 0.12170363472063857 0.09764015816549321 0.12233671704061012 0.09771227820745189 0.12226459699865144 C 0.09764015816549321 0.12233671704061012 0.0969983262172537 0.12251807865341433 0.09710031935871058 0.12251807865341433 C 0.0969983262172537 0.12251807865341433 0.09641624046801058 0.12219247695669276 0.09648836050996926 0.12226459699865144 C 0.09641624046801058 0.12219247695669276 0.09621375538397614 0.12160164157918167 0.09623487885520637 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09623487885520637 0.12165263814991012 C 0.09623560005562595 0.12152322696961484 0.09624497566108058 0.1198408816257762 0.0962435332602414 0.12009970398636677 C 0.09624497566108058 0.1198408816257762 0.09625290886569604 0.11841735864252811 0.09625218766527645 0.11854676982282339" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192015,0.10841278125771478) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09626915029914514 0.11860888718936513 C 0.09627842992740698 0.11857425514521658 0.09641513788243583 0.11813331819954714 0.09638050583828728 0.11819330265958242 C 0.09641513788243583 0.11813331819954714 0.09674471928896312 0.1178544416247933 0.09668473482892785 0.11788907366894186 C 0.09674471928896312 0.1178544416247933 0.0971695834470077 0.1177777181297997 0.09710031935871058 0.1177777181297997 C 0.0971695834470077 0.1177777181297997 0.09757588834852857 0.11792370571309041 0.0975159038884933 0.11788907366894186 C 0.09757588834852857 0.11792370571309041 0.09785476492328243 0.11825328711961769 0.09782013287913387 0.11819330265958242 C 0.09785476492328243 0.11825328711961769 0.09794076804653785 0.11864351923351368 0.09793148841827601 0.11860888718936513" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09793148841827601 0.11860888718936513 C 0.09793219519468721 0.11873571014605451 0.09794138328803274 0.12038440858301637 0.09793996973521035 0.12013076266963763 C 0.09794138328803274 0.12038440858301637 0.0979491578285559 0.1217794611065995 0.0979484510521447 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0979484510521447 0.12165263814991012 C 0.09792775005033906 0.12170261478922399 0.09762936138935756 0.12232303546279613 0.09770003903047707 0.12225235782167662 C 0.09762936138935756 0.12232303546279613 0.09700036608008283 0.12250076984334424 0.09710031935871058 0.12250076984334424 C 0.09700036608008283 0.12250076984334424 0.09642992204582457 0.12218168018055711 0.09650059968694408 0.12225235782167662 C 0.09642992204582457 0.12218168018055711 0.09623148666347081 0.12160266151059625 0.09625218766527645 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09625218766527645 0.12165263814991012 C 0.09625289444168765 0.12152581519322074 0.0962620825350332 0.11987711675625888 0.0962606689822108 0.12013076266963763 C 0.0962620825350332 0.11987711675625888 0.09626985707555633 0.11848206423267575 0.09626915029914514 0.11860888718936513" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192015,0.10536903029716979) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09628577368033646 0.11866976220857603 C 0.09629486771603307 0.11863582280531045 0.09642884151196135 0.11820370459855445 0.09639490210869577 0.11826248936938902 C 0.09642884151196135 0.11820370459855445 0.09675183129035808 0.11793040555529567 0.09669304651952351 0.11796434495856126 C 0.09675183129035808 0.11793040555529567 0.09716819816524176 0.11785521653020195 0.09710031935871058 0.11785521653020195 C 0.09716819816524176 0.11785521653020195 0.0975663769687322 0.11799828436182684 0.09750759219789763 0.11796434495856126 C 0.0975663769687322 0.11799828436182684 0.09783967601199096 0.11832127414022353 0.09780573660872538 0.11826248936938896 C 0.09783967601199096 0.11832127414022353 0.09792395907278131 0.11870370161184161 0.0979148650370847 0.11866976220857603" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0979148650370847 0.11866976220857603 C 0.09791555767796767 0.11879404870613162 0.0979245620094463 0.12040977317435429 0.09792317672768036 0.12016120017924312 C 0.0979245620094463 0.12040977317435429 0.09793218105915898 0.1217769246474657 0.09793148841827601 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09793148841827601 0.12165263814991012 C 0.09791120143650649 0.12170161525643772 0.09761878054874462 0.12230962751653841 0.09768804463704174 0.1222403634282413 C 0.09761878054874462 0.12230962751653841 0.09700236514565538 0.12248380720947558 0.09710031935871058 0.12248380720947558 C 0.09700236514565538 0.12248380720947558 0.09644332999208229 0.12217109933994418 0.0965125940803794 0.1222403634282413 C 0.09644332999208229 0.12217109933994418 0.09624886331737562 0.12160366104338252 0.09626915029914514 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09626915029914514 0.12165263814991012 C 0.0962698429400281 0.12152835165235454 0.09627884727150673 0.11991262718413194 0.0962774619897408 0.12016120017924312 C 0.09627884727150673 0.11991262718413194 0.09628646632121943 0.11854547571102043 0.09628577368033646 0.11866976220857603" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192015,0.1023861543558357) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09630206459390393 0.11872941972740272 C 0.09631097674888661 0.11869615911220245 0.09644227106889633 0.11827268326958154 0.09640901045369606 0.11833029234499942 C 0.09644227106889633 0.11827268326958154 0.09675880105172514 0.11800485020718794 0.09670119197630726 0.11803811082238821 C 0.09675880105172514 0.11800485020718794 0.09716684058911113 0.11793116496259609 0.09710031935871058 0.11793116496259609 C 0.09716684058911113 0.11793116496259609 0.09755705581653178 0.11807137143758849 0.0974994467411139 0.11803811082238821 C 0.09755705581653178 0.11807137143758849 0.09782488887892536 0.1183879014204173 0.09779162826372509 0.11833029234499942 C 0.09782488887892536 0.1183879014204173 0.0979074862784999 0.118762680342603 0.09789857412351723 0.11872941972740272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09789857412351723 0.11872941972740272 C 0.09789925291158254 0.11885122049500721 0.0979080771564316 0.1204346304738654 0.09790671958030098 0.12019102893865646 C 0.0979080771564316 0.1204346304738654 0.09791554382515001 0.12177443891751459 0.0979148650370847 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0979148650370847 0.12165263814991012 C 0.09789498379495057 0.12170063571430717 0.09760841132494394 0.12229648772920586 0.09767629013147512 0.12222860892267468 C 0.09760841132494394 0.12229648772920586 0.09700432422991649 0.12246718382828425 0.09710031935871058 0.12246718382828425 C 0.09700432422991649 0.12246718382828425 0.09645646977941484 0.12216073011614349 0.09652434858594602 0.12222860892267468 C 0.09645646977941484 0.12216073011614349 0.09626589243820233 0.12160464058551307 0.09628577368033646 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09628577368033646 0.12165263814991012 C 0.09628645246840177 0.12153083738230565 0.09629527671325083 0.11994742740344752 0.09629391913712021 0.12019102893865646 C 0.09629527671325083 0.11994742740344752 0.09630274338196924 0.11860761895979824 0.09630206459390393 0.11872941972740272" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192015,0.0994629359333283) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09631802968920006 0.11878788409585292 C 0.09632676360108308 0.11875528869295665 0.0964554320346926 0.11834028236718809 0.09642283663179634 0.11839673926109762 C 0.0964554320346926 0.11834028236718809 0.09676563141786484 0.11807780596604239 0.09670917452395532 0.11811040136893866 C 0.09676563141786484 0.11807780596604239 0.09716551016450314 0.11800559442634237 0.0971003193587106 0.11800559442634237 C 0.09716551016450314 0.11800559442634237 0.09754792108737537 0.11814299677183493 0.09749146419346584 0.11811040136893866 C 0.09754792108737537 0.11814299677183493 0.0978103974885211 0.11845319615500714 0.09777780208562484 0.11839673926109762 C 0.0978103974885211 0.11845319615500714 0.09789134294010414 0.11882047949874919 0.09788260902822112 0.11878788409585292" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09788260902822112 0.11878788409585292 C 0.09788327424052512 0.1189072488481053 0.09789192200047718 0.1204589906273863 0.09789059157586917 0.12022026112288153 C 0.09789192200047718 0.1204589906273863 0.09789923933582123 0.1217720029021625 0.09789857412351723 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09789857412351723 0.12165263814991012 C 0.09787909050622577 0.12169967576301922 0.09759824948561927 0.1222836107376199 0.09766477071601982 0.12221708950721935 C 0.09759824948561927 0.1222836107376199 0.09700624413249237 0.12245089291471675 0.09710031935871058 0.12245089291471675 C 0.09700624413249237 0.12245089291471675 0.09646934677100076 0.1221505682768188 0.09653586800140132 0.12221708950721935 C 0.09646934677100076 0.1221505682768188 0.09628258097661248 0.12160560053680101 0.09630206459390393 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09630206459390393 0.12165263814991012 C 0.09630272980620794 0.12153327339765774 0.09631137756616003 0.11998153161837677 0.09631004714155202 0.12022026112288153 C 0.09631137756616003 0.11998153161837677 0.09631869490150406 0.11866851934360054 0.09631802968920006 0.11878788409585292" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192015,0.0965981818792711) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09633367548259028 0.11884517917693405 C 0.09634223471623564 0.1188132356820957 0.09646832978117299 0.11840652948284257 0.09643638628633465 0.1184618572388739 C 0.09646832978117299 0.11840652948284257 0.09677232517668177 0.11814930260971973 0.09671699742065044 0.11818124610455807 C 0.09677232517668177 0.11814930260971973 0.0971642063483873 0.11807853530081375 0.09710031935871061 0.11807853530081375 C 0.0971642063483873 0.11807853530081375 0.09753896905280209 0.11821318959939642 0.09748364129677076 0.11818124610455807 C 0.09753896905280209 0.11821318959939642 0.09779619592592491 0.1185171849949052 0.09776425243108657 0.11846185723887387 C 0.09779619592592491 0.1185171849949052 0.09787552246847625 0.11887712267177239 0.09786696323483089 0.11884517917693405" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09786696323483089 0.11884517917693405 C 0.09786761514288882 0.11896215663414139 0.09787608994764187 0.12048286357783679 0.09787478613152602 0.12024890866342211 C 0.09787608994764187 0.12048286357783679 0.09788326093627904 0.12176961560711745 0.09788260902822112 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09788260902822112 0.12165263814991012 C 0.0978635150832755 0.12169873501075704 0.09758829088308113 0.12227099128586576 0.09765348168887368 0.1222058004800732 C 0.09758829088308113 0.12227099128586576 0.09700812563701675 0.12243492781942067 0.0971003193587106 0.12243492781942067 C 0.09700812563701675 0.12243492781942067 0.09648196622275496 0.12214060967428066 0.0965471570285475 0.1222058004800732 C 0.09648196622275496 0.12214060967428066 0.09629893574425444 0.1216065412890632 0.09631802968920006 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09631802968920006 0.12165263814991012 C 0.09631868159725798 0.12153566069270279 0.09632715640201103 0.12001495374900743 0.09632585258589518 0.12024890866342211 C 0.09632715640201103 0.12001495374900743 0.0963343273906482 0.1187282017197267 0.09633367548259028 0.11884517917693405" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192015,0.09379072290629503) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09634900836011269 0.11890132835639358 C 0.09635739640908514 0.118870023731452 0.09648096957272373 0.11847145165618392 0.09644966494778215 0.11852567285709462 C 0.09648096957272373 0.11847145165618392 0.09677888506032234 0.11821936932052354 0.09672466385941164 0.11825067394546512 C 0.09677888506032234 0.11821936932052354 0.09716292860859375 0.11815001735779565 0.0971003193587106 0.11815001735779565 C 0.09716292860859375 0.11815001735779565 0.09753019605892027 0.1182819785704067 0.09747597485800956 0.11825067394546512 C 0.09753019605892027 0.1182819785704067 0.09778227839458063 0.11857989405800531 0.09775097376963905 0.11852567285709462 C 0.09778227839458063 0.11857989405800531 0.09786001840628096 0.11893263298133516 0.09785163035730851 0.11890132835639358" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09785163035730851 0.11890132835639358 C 0.09785226922720527 0.11901596626445678 0.09786057453586323 0.12050625906927824 0.09785929679606971 0.12027698325315186 C 0.09786057453586323 0.12050625906927824 0.09786760210472766 0.1217672760579733 0.09786696323483089 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09786696323483089 0.12165263814991012 C 0.09784825116878419 0.1216978130735401 0.09757853145259374 0.12225862422314662 0.09764241844227042 0.12219473723346994 C 0.09757853145259374 0.12225862422314662 0.09700996951145063 0.12241928202603039 0.09710031935871061 0.12241928202603039 C 0.09700996951145063 0.12241928202603039 0.0964943332854741 0.12213085024379325 0.0965582202751508 0.12219473723346994 C 0.0964943332854741 0.12213085024379325 0.09631496341654357 0.12160746322628013 0.09633367548259028 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09633367548259028 0.12165263814991012 C 0.09633431435248704 0.12153800024184694 0.09634261966114505 0.12004770743702549 0.0963413419213515 0.12027698325315186 C 0.09634261966114505 0.12004770743702549 0.09634964723000945 0.11878669044833039 0.09634900836011269 0.11890132835639358" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192015,0.0910394131127785) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09636403458008466 0.11895635455226394 C 0.09637225486807767 0.1189256760198212 0.09649335656844349 0.11853507538605847 0.09646267803600074 0.11858821216295096 C 0.09649335656844349 0.11853507538605847 0.09678531374629012 0.11828803469711129 0.09673217696939763 0.11831871322955403 C 0.09678531374629012 0.11828803469711129 0.0971616764235961 0.118220069773638 0.09710031935871061 0.118220069773638 C 0.0971616764235961 0.118220069773638 0.09752159852491607 0.11834939176199678 0.09746846174802358 0.11831871322955403 C 0.09752159852491607 0.11834939176199678 0.09776863921386324 0.11864134893984345 0.09773796068142049 0.11858821216295096 C 0.09776863921386324 0.11864134893984345 0.09784482442532957 0.11898703308470669 0.09783660413733657 0.11895635455226394" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09783660413733657 0.11895635455226394 C 0.0978372302298354 0.11906869970216587 0.0978453694323202 0.12052918665089091 0.09784411724732253 0.12030449635108706 C 0.0978453694323202 0.12052918665089091 0.09785225644980734 0.12176498329981204 0.09785163035730851 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09785163035730851 0.12165263814991012 C 0.09783329253258273 0.1216969095750675 0.09756896721071605 0.12224650450168187 0.09763157646059921 0.12218389525179871 C 0.09756896721071605 0.12224650450168187 0.09701177650839583 0.12240394914850802 0.09710031935871061 0.12240394914850802 C 0.09701177650839583 0.12240394914850802 0.09650645300693883 0.12212128600191555 0.09656906225682199 0.12218389525179871 C 0.09650645300693883 0.12212128600191555 0.09633067053538691 0.12160836672475274 0.09634900836011269 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09634900836011269 0.12165263814991012 C 0.09634963445261152 0.1215402930000082 0.09635777365509635 0.12007980605128321 0.09635652147009868 0.12030449635108706 C 0.09635777365509635 0.12007980605128321 0.0963646606725835 0.11884400940236202 0.09636403458008466 0.11895635455226394" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192015,0.08834312951513232) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.0963787602756572 0.11901028022421686 C 0.09638681615789034 0.11898021526242297 0.09650549582424885 0.1185974266413355 0.09647543086245496 0.11864950068269015 C 0.09650549582424885 0.1185974266413355 0.09679161385853854 0.11835532676616731 0.0967395398171839 0.1183853917279612 C 0.09679161385853854 0.11835532676616731 0.09716044928229839 0.11828872114116346 0.09710031935871061 0.11828872114116346 C 0.09716044928229839 0.11828872114116346 0.09751317294159194 0.11841545668975509 0.0974610989002373 0.1183853917279612 C 0.09751317294159194 0.11841545668975509 0.09775527281676015 0.11870157472404479 0.09772520785496626 0.11864950068269015 C 0.09775527281676015 0.11870157472404479 0.09782993432399717 0.11904034518601075 0.09782187844176403 0.11901028022421686" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09782187844176403 0.11901028022421686 C 0.09782249201241289 0.11912037847112075 0.09783046843084801 0.12055165568087131 0.0978292412895503 0.12033145918706353 C 0.09783046843084801 0.12055165568087131 0.09783721770798542 0.12176273639681401 0.09783660413733657 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09783660413733657 0.12165263814991012 C 0.0978186330691053 0.12169602414656436 0.09755959425367595 0.12223462717464645 0.09762095131856145 0.12217327010976095 C 0.09755959425367595 0.12223462717464645 0.09701354736540213 0.12238892292853609 0.09710031935871061 0.12238892292853609 C 0.09701354736540213 0.12238892292853609 0.09651833033397426 0.12211191304487545 0.09657968739885976 0.12217327010976095 C 0.09651833033397426 0.12211191304487545 0.0963460635118534 0.12160925215325588 0.09636403458008466 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09636403458008466 0.12165263814991012 C 0.09636464815073352 0.12154253990300623 0.09637262456916863 0.12011126269325575 0.09637139742787092 0.12033145918706353 C 0.09637262456916863 0.12011126269325575 0.09637937384630606 0.11890018197731297 0.0963787602756572 0.11901028022421686" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192015,0.08570077158943906) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09639319145731827 0.11906312738273073 C 0.09640108622190675 0.11903366372017271 0.09651739229493808 0.11865853087150699 0.09648792863238007 0.11870956343203454 C 0.09651739229493808 0.11865853087150699 0.09679778796854198 0.11842127299384214 0.09674675540801443 0.11845073665640016 C 0.09679778796854198 0.11842127299384214 0.09715924668382664 0.11835599948133835 0.09710031935871061 0.11835599948133835 C 0.09715924668382664 0.11835599948133835 0.09750491586993434 0.11848020031895817 0.0974538833094068 0.11845073665640016 C 0.09750491586993434 0.11848020031895817 0.09774217374759918 0.11876059599256208 0.09771271008504116 0.11870956343203454 C 0.09774217374759918 0.11876059599256208 0.09781534202469147 0.11909259104528874 0.09780744726010299 0.11906312738273073" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09780744726010299 0.11906312738273073 C 0.09780804855933886 0.11917102366469653 0.09781586544940526 0.12057367533025207 0.09781466285093351 0.12035788276632045 C 0.09781586544940526 0.12057367533025207 0.0978224797409999 0.12176053443187593 0.09782187844176403 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09782187844176403 0.12165263814991012 C 0.0978042667948974 0.12169515642663127 0.09755040875577664 0.12222298739415172 0.09761053867936442 0.12216285747056393 C 0.09755040875577664 0.12222298739415172 0.0970152828052683 0.12237419723296353 0.09710031935871061 0.12237419723296353 C 0.0970152828052683 0.12237419723296353 0.09652997011446901 0.12210272754697615 0.09659010003805679 0.12216285747056393 C 0.09652997011446901 0.12210272754697615 0.09636114862879057 0.12161011987318897 0.0963787602756572 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0963787602756572 0.12165263814991012 C 0.09637936157489307 0.12154474186794431 0.09638717846495946 0.12014209020238883 0.09638597586648771 0.12035788276632045 C 0.09638717846495946 0.12014209020238883 0.09639379275655414 0.11895523110076492 0.09639319145731827 0.11906312738273073" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920155,0.08311126082225967) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09640733401534611 0.1191149175980743 C 0.09641507088464282 0.11908604320876745 0.09652905083621352 0.11871841301707506 0.09650017644690667 0.11876842492639206 C 0.09652905083621352 0.11871841301707506 0.09680383859634535 0.11848590029696351 0.09675382668702835 0.11851477468627036 C 0.09680383859634535 0.11848590029696351 0.0971580681373243 0.11842193225470982 0.0971003193587106 0.11842193225470982 C 0.0971580681373243 0.11842193225470982 0.09749682393970985 0.11854364907557721 0.09744681203039285 0.11851477468627036 C 0.09749682393970985 0.11854364907557721 0.0977293366598214 0.11881843683570906 0.09770046227051454 0.11876842492639206 C 0.0977293366598214 0.11881843683570906 0.09780104157137184 0.11914379198738115 0.09779330470207513 0.1191149175980743" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09779330470207513 0.1191149175980743 C 0.09779389397532628 0.11922065595440079 0.09780155452759137 0.12059525458664525 0.09780037598108905 0.12038377787399226 C 0.09780155452759137 0.12059525458664525 0.09780803653335415 0.12175837650623661 0.09780744726010299 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09780744726010299 0.12165263814991012 C 0.09779018784617369 0.12169430606109685 0.09754140696783534 0.12221158040926688 0.09760033429295137 0.12215265308415085 C 0.09754140696783534 0.12221158040926688 0.09701698353633717 0.1223597660513025 0.09710031935871062 0.1223597660513025 C 0.09701698353633717 0.1223597660513025 0.09654137709935384 0.12209372575903482 0.09660030442446987 0.12215265308415085 C 0.09654137709935384 0.12209372575903482 0.09637593204338897 0.12161097023872339 0.09639319145731827 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09639319145731827 0.12165263814991012 C 0.09639378073056942 0.12154689979358363 0.09640144128283451 0.12017230116133928 0.09640026273633219 0.12038377787399226 C 0.09640144128283451 0.12017230116133928 0.09640792328859726 0.11900917924174781 0.09640733401534611 0.1191149175980743" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192016,0.08057354027042385) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09642119372221342 0.11916567200911105 C 0.0964287758541242 0.11913737510759033 0.09654047620666348 0.11877709751973177 0.09651217930514276 0.11882610919086242 C 0.09654047620666348 0.11877709751973177 0.09680976821159268 0.11854923505402244 0.09676075654046203 0.11857753195554316 C 0.09680976821159268 0.11854923505402244 0.09715691316175207 0.11848654637261383 0.09710031935871064 0.11848654637261383 C 0.09715691316175207 0.11848654637261383 0.0974888938480899 0.11860582885706387 0.09743988217695924 0.11857753195554316 C 0.0974888938480899 0.11860582885706387 0.09771675631379924 0.11887512086199305 0.09768845941227852 0.1188261091908624 C 0.09771675631379924 0.11887512086199305 0.09778702712711863 0.11919396891063176 0.09777944499520785 0.11916567200911105" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09777944499520785 0.11916567200911105 C 0.09778002248299399 0.11926929559831101 0.09778752982421378 0.12061640225791057 0.0977863748486415 0.12040915507951064 C 0.09778752982421378 0.12061640225791057 0.09779388218986126 0.12175626173911008 0.09779330470207513 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09779330470207513 0.12165263814991012 C 0.09777639047642442 0.12169347270287312 0.09753258521565285 0.12220040156407978 0.09759033399426656 0.12214265278546607 C 0.09753258521565285 0.12220040156407978 0.09701865025278461 0.12234562349327463 0.09710031935871061 0.12234562349327463 C 0.09701865025278461 0.12234562349327463 0.09655255594454094 0.12208490400685236 0.09661030472315466 0.12214265278546607 C 0.09655255594454094 0.12208490400685236 0.0963904197896954 0.12161180359694712 0.09640733401534611 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09640733401534611 0.12165263814991012 C 0.09640791150313224 0.12154901456071016 0.09641541884435205 0.12020190790111071 0.09641426386877977 0.12040915507951064 C 0.09641541884435205 0.12020190790111071 0.09642177120999955 0.11906204841991108 0.09642119372221342 0.11916567200911105" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920166,0.07808657412962478) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09643477623494336 0.11921541133192703 C 0.09644220672421591 0.11918768036843673 0.09655167306970441 0.11883460833233536 0.09652394210621411 0.1188826397700434 C 0.09655167306970441 0.11883460833233536 0.09681557923453502 0.11861130311594022 0.09676754779682697 0.11863903407943052 C 0.09681557923453502 0.11861130311594022 0.09715578128569122 0.11854986820815974 0.09710031935871061 0.11854986820815974 C 0.09715578128569122 0.11854986820815974 0.0974811223583023 0.1186667650429208 0.09743309092059425 0.1186390340794305 C 0.0974811223583023 0.1186667650429208 0.09770442757469744 0.11893067120775144 0.09767669661120713 0.1188826397700434 C 0.09770442757469744 0.11893067120775144 0.09777329297175047 0.11924314229541734 0.0977658624824779 0.11921541133192703" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0977658624824779 0.11921541133192703 C 0.09776642842050831 0.119316962449343 0.09777378561490371 0.12063712697575056 0.09777265373884288 0.12043402474091863 C 0.09777378561490371 0.12063712697575056 0.09778001093323826 0.12175418926732608 0.09777944499520785 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09777944499520785 0.12165263814991012 C 0.09776286905407015 0.12169265601181385 0.09752393989851403 0.12218944629579634 0.09758053370155546 0.1221328524927549 C 0.09752393989851403 0.12218944629579634 0.09702028363490317 0.12233176378640734 0.09710031935871064 0.12233176378640734 C 0.09702028363490317 0.12233176378640734 0.0965635112128244 0.12207625868971347 0.09662010501586583 0.1221328524927549 C 0.0965635112128244 0.12207625868971347 0.09640461778107572 0.12161262028800639 0.09642119372221342 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09642119372221342 0.12165263814991012 C 0.09642175966024383 0.12155108703249416 0.09642911685463922 0.1202309225060867 0.0964279849785784 0.12043402474091863 C 0.09642911685463922 0.1202309225060867 0.09643534217297377 0.11911386021451106 0.09643477623494336 0.11921541133192703" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192017,0.07564934731164169) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09644808709741869 0.1192641558682867 C 0.09645536897690579 0.1192369795240662 0.09656264599548454 0.11889096892868684 0.09653546965126404 0.11893803973764072 C 0.09656264599548454 0.11889096892868684 0.09682127403701855 0.11867212981661959 0.09677420322806467 0.1186993061608401 C 0.09682127403701855 0.11867212981661959 0.09715467204715161 0.11861192360699477 0.09710031935871062 0.11861192360699477 C 0.09715467204715161 0.11861192360699477 0.09747350629831049 0.1187264825050606 0.0974264354893566 0.1186993061608401 C 0.09747350629831049 0.1187264825050606 0.09769234541037769 0.11898511054659461 0.0976651690661572 0.11893803973764072 C 0.09769234541037769 0.11898511054659461 0.09775983349948966 0.1192913322125072 0.09775255162000256 0.1192641558682867" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09775255162000256 0.1192641558682867 C 0.09775310623927236 0.11936367596335434 0.09776031628977985 0.12065743719923372 0.09775920705124024 0.12045839700909844 C 0.09776031628977985 0.12065743719923372 0.0977664171017477 0.12175215824497776 0.0977658624824779 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0977658624824779 0.12165263814991012 C 0.09774961806016295 0.12169185565457577 0.09751546748771793 0.12217871013287862 0.09757092941469854 0.12212324820589801 C 0.09751546748771793 0.12217871013287862 0.0970218843493793 0.12231818127367741 0.09710031935871062 0.12231818127367741 C 0.0970218843493793 0.12231818127367741 0.0965742473757421 0.1220677862789174 0.09662970930272272 0.12212324820589801 C 0.0965742473757421 0.1220677862789174 0.09641853181262841 0.12161342064524447 0.09643477623494336 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09643477623494336 0.12165263814991012 C 0.09643533085421316 0.12155311805484248 0.09644254090472065 0.12025935681896316 0.09644143166618105 0.12045839700909844 C 0.09644254090472065 0.12025935681896316 0.09644864171668849 0.11916463577321906 0.09644808709741869 0.1192641558682867" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192018,0.07326086503001827) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09646113174264453 0.1193119255139192 C 0.0964682679845419 0.11928529269658311 0.09657339946274908 0.11894620231311133 0.09654676664541299 0.11899233170588613 C 0.09657339946274908 0.11894620231311133 0.0968268549434524 0.11873173998328543 0.0967807255506776 0.11875837280062151 C 0.0968268549434524 0.11873173998328543 0.09715358499338281 0.1186727378978531 0.09710031935871064 0.1186727378978531 C 0.09715358499338281 0.1186727378978531 0.09746604255951849 0.1187850056179576 0.09741991316674369 0.11875837280062151 C 0.09746604255951849 0.1187850056179576 0.09768050488934438 0.11903846109866094 0.09765387207200829 0.11899233170588613 C 0.09768050488934438 0.11903846109866094 0.09774664321667409 0.11933855833125528 0.09773950697477672 0.1193119255139192" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09773950697477672 0.1193119255139192 C 0.09774005050166112 0.11940945520708549 0.09774711635115844 0.12067734121824727 0.09774602929738962 0.1204822818319147 C 0.09774711635115844 0.12067734121824727 0.09775309514688697 0.1217501678430764 0.09775255162000256 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09775255162000256 0.12165263814991012 C 0.09773663208613391 0.12169107130448246 0.09750716452513779 0.12216818869321926 0.09756151721357878 0.12211383600477826 C 0.09750716452513779 0.12216818869321926 0.09702345304956593 0.12230487041120205 0.09710031935871062 0.12230487041120205 C 0.09702345304956593 0.12230487041120205 0.09658476881540147 0.12205948331633727 0.09663912150384246 0.12211383600477826 C 0.09658476881540147 0.12205948331633727 0.09643216756355004 0.12161420499533777 0.09644808709741869 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09644808709741869 0.12165263814991012 C 0.0964486306243031 0.12155510845674383 0.09645569647380045 0.12028722244558213 0.09645460942003163 0.1204822818319147 C 0.09645569647380045 0.12028722244558213 0.09646167526952894 0.11921439582075291 0.09646113174264453 0.1193119255139192" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920183,0.07092015239402735) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09647391549496587 0.11935873976663902 C 0.09648090901202529 0.11933263960564966 0.0965839378606683 0.11900033102984728 0.09655783769967893 0.1190455378347666 C 0.0965839378606683 0.11900033102984728 0.09683232423175757 0.11879015794661793 0.09678711742683827 0.11881625810760729 C 0.09683232423175757 0.11879015794661793 0.09715251968068936 0.11873233590289423 0.09710031935871064 0.11873233590289423 C 0.09715251968068936 0.11873233590289423 0.09745872809550234 0.11884235826859665 0.09741352129058303 0.11881625810760729 C 0.09745872809550234 0.11884235826859665 0.09766890117873171 0.11909074463968591 0.09764280101774235 0.1190455378347666 C 0.09766890117873171 0.11909074463968591 0.09773371673951481 0.11938483992762838 0.09772672322245539 0.11935873976663902" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09772672322245539 0.11935873976663902 C 0.09772725587880211 0.11945431886594199 0.09773418041130952 0.12069684715688055 0.09773311509861607 0.12050568895827463 C 0.09773418041130952 0.12069684715688055 0.09774003963112345 0.12174821724921307 0.09773950697477672 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09773950697477672 0.12165263814991012 C 0.09772390583158545 0.12169030264139102 0.09749902762180926 0.12215787768235309 0.09755229325648143 0.12210461204768092 C 0.09749902762180926 0.12215787768235309 0.09702499037574884 0.12229182576597622 0.09710031935871064 0.12229182576597622 C 0.09702499037574884 0.12229182576597622 0.09659507982626768 0.12205134641300874 0.09664834546093985 0.12210461204768092 C 0.09659507982626768 0.12205134641300874 0.09644553059945325 0.12161497365842922 0.09646113174264453 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09646113174264453 0.12165263814991012 C 0.09646166439899126 0.12155705905060717 0.09646858893149866 0.1203145307596687 0.09646752361880521 0.12050568895827463 C 0.09646858893149866 0.1203145307596687 0.09647444815131259 0.11926316066733605 0.09647391549496587 0.11935873976663902" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192019,0.06862625401075625) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09648644357224077 0.11940461773430441 C 0.09649329721895901 0.11937903957653484 0.09659426549062915 0.11905337717224858 0.09656868733285957 0.1190976798410695 C 0.09659426549062915 0.11905337717224858 0.09683768413429662 0.11884740755068376 0.0967933814654757 0.11887298570845334 C 0.09683768413429662 0.11884740755068376 0.0971514756742498 0.11879074194783454 0.09710031935871064 0.11879074194783454 C 0.0971514756742498 0.11879074194783454 0.09745155992076651 0.11889856386622291 0.09740725725194559 0.11887298570845334 C 0.09745155992076651 0.11889856386622291 0.09765752954233128 0.11914198250989037 0.09763195138456171 0.11909767984106945 C 0.09765752954233128 0.11914198250989037 0.09772104879189876 0.11943019589207399 0.09771419514518052 0.11940461773430441" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09771419514518052 0.11940461773430441 C 0.09771471714840031 0.11949828525162133 0.09772150319025753 0.12071596297674117 0.09772045918381796 0.12052862794210736 C 0.09772150319025753 0.12071596297674117 0.09772724522567518 0.12174630566722702 0.09772672322245539 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09772672322245539 0.12165263814991012 C 0.09771143410212794 0.1216895493515614 0.0974910534565473 0.12214777289170423 0.09754325377852602 0.1220955725697255 C 0.0974910534565473 0.12214777289170423 0.09702649695540808 0.12227904201365486 0.09710031935871064 0.12227904201365486 C 0.09702649695540808 0.12227904201365486 0.09660518461691653 0.12204337224774678 0.09665738493889527 0.1220955725697255 C 0.09660518461691653 0.12204337224774678 0.09645862637463842 0.12161572694825884 0.09647391549496587 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09647391549496587 0.12165263814991012 C 0.09647443749818566 0.12155897063259322 0.09648122354004293 0.12034129290747356 0.09648017953360336 0.12052862794210736 C 0.09648122354004293 0.12034129290747356 0.09648696557546056 0.1193109502169875 0.09648644357224077 0.11940461773430441" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920194,0.06637823359515055) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09649872108797017 0.11944957814261653 C 0.09650543766175404 0.11942451154800235 0.09660438656799078 0.11910536239180182 0.0965793199733766 0.11914877900724632 C 0.09660438656799078 0.11910536239180182 0.09684293683878491 0.11890351216266831 0.0967995202233404 0.1189285787572825 C 0.09684293683878491 0.11890351216266831 0.09715045254793901 0.11884797987187606 0.09710031935871064 0.11884797987187606 C 0.09715045254793901 0.11884797987187606 0.09744453510952537 0.11895364535189668 0.09740111849408087 0.1189285787572825 C 0.09744453510952537 0.11895364535189668 0.09764638533865888 0.11919219562269083 0.09762131874404469 0.11914877900724632 C 0.09764638533865888 0.11919219562269083 0.097708634203235 0.11947464473723071 0.09770191762945113 0.11944957814261653" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09770191762945113 0.11944957814261653 C 0.09770242919260652 0.1195413723095871 0.09770907951362662 0.12073469648020455 0.09770805638731583 0.12055110814626341 C 0.09770907951362662 0.12073469648020455 0.09771470670833592 0.12174443231688067 0.09771419514518052 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09771419514518052 0.12165263814991012 C 0.09769921180725963 0.12168881112752837 0.09748323877459054 0.12213787019686835 0.0975343950901297 0.12208671388132919 C 0.09748323877459054 0.12213787019686835 0.09702797340347412 0.12226651393638 0.09710031935871064 0.12226651393638 C 0.09702797340347412 0.12226651393638 0.0966150873117524 0.12203555756579003 0.09666624362729156 0.12208671388132919 C 0.0966150873117524 0.12203555756579003 0.09647146023431988 0.12161646517229187 0.09648644357224077 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09648644357224077 0.12165263814991012 C 0.09648695513539617 0.12156084398293956 0.09649360545641628 0.12036751981232227 0.09649258233010549 0.12055110814626341 C 0.09649360545641628 0.12036751981232227 0.09649923265112556 0.11935778397564596 0.09649872108797017 0.11944957814261653" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.278002563519202,0.06417517358785696) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.096510753053385 0.11949363934276241 C 0.09651733529569319 0.11946907408004051 0.09661430522380521 0.11915630790696398 0.0965897399610833 0.1191988561900996 C 0.09661430522380521 0.11915630790696398 0.09684808448918344 0.11895849468241318 0.09680553620604783 0.11898305994513508 C 0.09684808448918344 0.11895849468241318 0.09714944988415446 0.11890407303743675 0.09710031935871065 0.11890407303743675 C 0.09714944988415446 0.11890407303743675 0.09743765079450911 0.11900762520785699 0.0973951025113735 0.11898305994513508 C 0.09743765079450911 0.11900762520785699 0.09763546401905993 0.11924140447323521 0.09761089875633802 0.1191988561900996 C 0.09763546401905993 0.11924140447323521 0.09769646790634452 0.11951820460548432 0.09768988566403633 0.11949363934276241" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09768988566403633 0.11949363934276241 C 0.09769038699592861 0.11958359762639358 0.09769690431052828 0.12075305531359869 0.09769590164674372 0.12057313874633638 C 0.09769690431052828 0.12075305531359869 0.0977024189613434 0.12174259643354127 0.09770191762945113 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09770191762945113 0.12165263814991012 C 0.09768723395828864 0.12168808766797601 0.09747558038627294 0.12212816555592919 0.09752571357550131 0.12207803236670081 C 0.09747558038627294 0.12212816555592919 0.09702942032257886 0.12225423642065059 0.09710031935871064 0.12225423642065059 C 0.09702942032257886 0.12225423642065059 0.09662479195269158 0.12202789917747243 0.09667492514191996 0.12207803236670081 C 0.09662479195269158 0.12202789917747243 0.09648403741680768 0.12161718863184423 0.09649872108797017 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09649872108797017 0.12165263814991012 C 0.09649922241986246 0.12156267986627897 0.09650573973446216 0.12039322217907407 0.0965047370706776 0.12057313874633638 C 0.09650573973446216 0.12039322217907407 0.09651125438527727 0.11940368105913125 0.096510753053385 0.11949363934276241" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920205,0.062016174780709254) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09652254437949151 0.11953681931890542 C 0.09652899497695354 0.11951274536143795 0.09662402550650333 0.1192062345118229 0.09659995154903586 0.1192479318292958 C 0.09662402550650333 0.1192062345118229 0.09685312918657399 0.11901237755176312 0.09681143186910109 0.11903645150923059 C 0.09685312918657399 0.11901237755176312 0.09714846727364558 0.11895904433968624 0.09710031935871065 0.11895904433968624 C 0.09714846727364558 0.11895904433968624 0.09743090416579314 0.11906052546669806 0.09738920684832024 0.11903645150923059 C 0.09743090416579314 0.11906052546669806 0.09762476112585293 0.1192896291467687 0.09760068716838546 0.1192479318292958 C 0.09762476112585293 0.1192896291467687 0.09768454493539185 0.11956089327637288 0.09767809433792982 0.11953681931890542" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09767809433792982 0.11953681931890542 C 0.09767858564318425 0.11962497843686395 0.09768497261149192 0.12077104697032494 0.09768399000098305 0.12059472873440788 C 0.09768497261149192 0.12077104697032494 0.09769037696929077 0.12174079726786864 0.09768988566403633 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09768988566403633 0.12165263814991012 C 0.0976754956662971 0.1216873786776147 0.09746807516572173 0.1221186550078088 0.09751720569116554 0.122069524482365 C 0.09746807516572173 0.1221186550078088 0.0970308383033015 0.12224220445523579 0.09710031935871065 0.12224220445523579 C 0.0970308383033015 0.12224220445523579 0.09663430250081198 0.12202039395692119 0.09668343302625579 0.122069524482365 C 0.09663430250081198 0.12202039395692119 0.09649636305564577 0.12161789762220554 0.096510753053385 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.096510753053385 0.12165263814991012 C 0.09651124435863943 0.1215644790319516 0.09651763132694713 0.12041841049849082 0.09651664871643825 0.12059472873440788 C 0.09651763132694713 0.12041841049849082 0.09652303568474595 0.11944866020094688 0.09652254437949151 0.11953681931890542" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192021,0.05990035594970455) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09653409987907588 0.11957913569552547 C 0.09654042146458866 0.11955554321720736 0.09663355138354744 0.11925516258458466 0.09660995890522933 0.1192960259557081 C 0.09663355138354744 0.11925516258458466 0.09685807299001671 0.11906518276372609 0.09681720961889327 0.1190887752420442 C 0.09685807299001671 0.11906518276372609 0.09714750431534687 0.11901291621589072 0.09710031935871064 0.11901291621589072 C 0.09714750431534687 0.11901291621589072 0.09742429246965148 0.11911236772036228 0.09738342909852804 0.11908877524204417 C 0.09742429246965148 0.11911236772036228 0.09761427229051009 0.11933688932683154 0.09759067981219198 0.1192960259557081 C 0.09761427229051009 0.11933688932683154 0.09767286042385823 0.11960272817384358 0.09766653883834543 0.11957913569552547" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09766653883834543 0.11957913569552547 C 0.09766702031749477 0.11966553163112484 0.0976732795464363 0.12078867879391662 0.0976723165881376 0.12061588692271791 C 0.0976732795464363 0.12078867879391662 0.09767857581707917 0.12173903408550947 0.09767809433792982 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09767809433792982 0.12165263814991012 C 0.09766399214014537 0.12168668386706061 0.0974607200495815 0.12210933467065085 0.09750886796451644 0.12206118675571592 C 0.0974607200495815 0.12210933467065085 0.09703222792440969 0.12223041312912927 0.09710031935871065 0.12223041312912927 C 0.09703222792440969 0.12223041312912927 0.09664362283796996 0.12201303884078099 0.09669177075290489 0.12206118675571592 C 0.09664362283796996 0.12201303884078099 0.09650844218170707 0.12161859243275963 0.09652254437949151 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09652254437949151 0.12165263814991012 C 0.09652302585864087 0.12156624221431077 0.0965292850875824 0.12044309505151919 0.09652832212928371 0.12061588692271791 C 0.0965292850875824 0.12044309505151919 0.09653458135822522 0.11949273975992611 0.09653409987907588 0.11957913569552547" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920216,0.05782685349531991) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09654542426866858 0.1196206057446132 C 0.0965516194224711 0.11959748511586145 0.09664288674305072 0.1193031120958912 0.09661976611429897 0.11934315819959218 C 0.09664288674305072 0.1193031120958912 0.09686291791739057 0.11911693187144973 0.0968228718136896 0.11914005250020149 C 0.09686291791739057 0.11911693187144973 0.09714656061621416 0.11906571065457111 0.09710031935871065 0.11906571065457111 C 0.09714656061621416 0.11906571065457111 0.09741781300743267 0.11916317312895325 0.09737776690373169 0.11914005250020149 C 0.09741781300743267 0.11916317312895325 0.0976039932318741 0.11938320430329313 0.09758087260312236 0.11934315819959215 C 0.0976039932318741 0.11938320430329313 0.09766140960255526 0.11964372637336496 0.09765521444875273 0.1196206057446132" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09765521444875273 0.1196206057446132 C 0.0976556862983191 0.11970527376150059 0.0976618203426818 0.12080595798103654 0.09766087664354907 0.1206366219472618 C 0.0976618203426818 0.12080595798103654 0.0976670106879118 0.12173730616679748 0.09766653883834543 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09766653883834543 0.12165263814991012 C 0.09765271868451668 0.12168600295271759 0.09745351203576409 0.12210020074023602 0.09750069699240033 0.12205301578359978 C 0.09745351203576409 0.12210020074023602 0.0970335897530957 0.12221885762954487 0.09710031935871065 0.12221885762954487 C 0.0970335897530957 0.12221885762954487 0.09665275676838475 0.12200583082696355 0.09669994172502099 0.12205301578359978 C 0.09665275676838475 0.12200583082696355 0.09652027972524713 0.12161927334710265 0.09653409987907588 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09653409987907588 0.12165263814991012 C 0.09653457172864224 0.12156797013302276 0.09654070577300497 0.12046728591348706 0.09653976207387224 0.1206366219472618 C 0.09654070577300497 0.12046728591348706 0.09654589611823494 0.1195359377277258 0.09654542426866858 0.1196206057446132" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192022,0.055794821090022984) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09655652217046942 0.11966124639271916 C 0.0965625934211959 0.11963858817654244 0.09665203539536392 0.11935010261697157 0.0966293771791872 0.11938934779859853 C 0.09665203539536392 0.11935010261697157 0.096867665946217 0.11916764599701896 0.09682842076459004 0.11919030421319568 C 0.096867665946217 0.11916764599701896 0.09714563579106408 0.1191174492044779 0.09710031935871065 0.1191174492044779 C 0.09714563579106408 0.1191174492044779 0.09741146313445823 0.1192129624293724 0.09737221795283127 0.11919030421319568 C 0.09741146313445823 0.1192129624293724 0.09759391975441084 0.11942859298022548 0.09757126153823412 0.11938934779859853 C 0.09759391975441084 0.11942859298022548 0.09765018779767838 0.11968390460889589 0.0976441165469519 0.11966124639271916" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0976441165469519 0.11966124639271916 C 0.09764457895952694 0.1197442210492688 0.09765059032300238 0.120822891584414 0.09764966549785231 0.12065694227131477 C 0.09765059032300238 0.120822891584414 0.09765567686132777 0.12173561280645973 0.09765521444875273 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09765521444875273 0.12165263814991012 C 0.09764167069800055 0.12168533565666144 0.09744644818222302 0.12209124948842949 0.09749268943972653 0.12204500823092598 C 0.09744644818222302 0.12209124948842949 0.09703492434520801 0.12220753323995218 0.09710031935871065 0.12220753323995218 C 0.09703492434520801 0.12220753323995218 0.09666170802019129 0.12199876697342248 0.0967079492776948 0.12204500823092598 C 0.09666170802019129 0.12199876697342248 0.09653188051791639 0.1216199406431588 0.09654542426866858 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09654542426866858 0.12165263814991012 C 0.09654588668124361 0.12156966349336051 0.09655189804471909 0.12049099295821553 0.09655097321956901 0.12065694227131477 C 0.09655189804471909 0.12049099295821553 0.09655698458304446 0.11957827173616953 0.09655652217046942 0.11966124639271916" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2780025635192023,0.053803429332832026) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09656739811423425 0.11970107422786297 C 0.0965733479399462 0.11967886917600978 0.09666100107463087 0.11939615332763036 0.09663879602277768 0.11943461360562477 C 0.09666100107463087 0.11939615332763036 0.09687231901446686 0.11921734584007682 0.09683385873647245 0.11923955089193 C 0.09687231901446686 0.11921734584007682 0.09714472946241702 0.11916815298338657 0.09710031935871065 0.11916815298338657 C 0.09714472946241702 0.11916815298338657 0.09740524025894326 0.11926175594378319 0.09736677998094885 0.11923955089193 C 0.09740524025894326 0.11926175594378319 0.09758404774649683 0.11947307388361915 0.09756184269464364 0.11943461360562474 C 0.09758404774649683 0.11947307388361915 0.09763919042889903 0.11972327927971615 0.09763324060318708 0.11970107422786297" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09763324060318708 0.11970107422786297 C 0.09763369376751062 0.11978238939128161 0.09763958490371653 0.12083948651572392 0.09763867857506947 0.12067685618888666 C 0.09763958490371653 0.12083948651572392 0.09764456971127544 0.12173395331332874 0.0976441165469519 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0976441165469519 0.12165263814991012 C 0.09763084367121476 0.12168468170652641 0.09743952560575278 0.12208247726165912 0.09748484203810621 0.12203716082930569 C 0.09743952560575278 0.12208247726165912 0.09703623224547805 0.12219643533815139 0.09710031935871065 0.12219643533815139 C 0.09703623224547805 0.12219643533815139 0.09667048024696166 0.12199184439695225 0.0967157966793151 0.12203716082930569 C 0.09667048024696166 0.12199184439695225 0.09654324929473228 0.12162059459329383 0.09655652217046942 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09655652217046942 0.12165263814991012 C 0.09655697533479296 0.1215713229864915 0.09656286647099892 0.12051422586204939 0.09656196014235185 0.12067685618888666 C 0.09656286647099892 0.12051422586204939 0.09656785127855778 0.11961975906444433 0.09656739811423425 0.11970107422786297" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920233,0.051851865410784875) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09657805653912377 0.11974010550630393 C 0.09658388736832148 0.11971834455548781 0.09666978744031245 0.11944128302407599 0.09664802648949633 0.11947897409651051 C 0.09666978744031245 0.11944128302407599 0.09687687902135174 0.11926605168627347 0.09683918794891722 0.1192878126370896 C 0.09687687902135174 0.11926605168627347 0.0971438412603429 0.11921784268671703 0.09710031935871065 0.11921784268671703 C 0.0971438412603429 0.11921784268671703 0.09739914184093865 0.11930957358790568 0.09736145076850412 0.11928781263708957 C 0.09739914184093865 0.11930957358790568 0.09757437317874113 0.11951666516894499 0.09755261222792501 0.11947897409651045 C 0.09757437317874113 0.11951666516894499 0.09762841300749528 0.11976186645712006 0.09762258217829757 0.11974010550630393" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09762258217829757 0.11974010550630393 C 0.09762302627933463 0.1198197943664542 0.09762879959281644 0.12085574954840765 0.09762791139074231 0.12069637182810714 C 0.09762879959281644 0.12085574954840765 0.09763368470422415 0.12173232701006037 0.09763324060318708 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09763324060318708 0.12165263814991012 C 0.09762023318496468 0.1216840408353941 0.09743274148081195 0.12207388047942414 0.09747715158451832 0.12202947037571776 C 0.09743274148081195 0.12207388047942414 0.09703751398774271 0.12218555939438652 0.09710031935871065 0.12218555939438652 C 0.09703751398774271 0.12218555939438652 0.09667907702919663 0.12198506027201139 0.096723487132903 0.12202947037571776 C 0.09667907702919663 0.12198506027201139 0.09655439069601185 0.12162123546442614 0.09656739811423425 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09656739811423425 0.12165263814991012 C 0.09656784221527132 0.12157294928975987 0.09657361552875315 0.12053699410780662 0.09657272732667903 0.12069637182810714 C 0.09657361552875315 0.12053699410780662 0.09657850064016082 0.11966041664615366 0.09657805653912377 0.11974010550630393" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920244,0.049939332767178685) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09647185186049079 0.12066292518633986 C 0.09647886841709984 0.12064271854666697 0.09658223668555857 0.12038544658370141 0.0965560505397994 0.1204204455102651 C 0.09658223668555857 0.12038544658370141 0.09683144134450997 0.12022273142790278 0.0967860856096007 0.12024293806757566 C 0.09683144134450997 0.12022273142790278 0.0971526916502289 0.12017796583419055 0.09710031935871058 0.12017796583419055 C 0.0971526916502289 0.12017796583419055 0.09745990884272974 0.12026314470724854 0.09741455310782048 0.12024293806757566 C 0.09745990884272974 0.12026314470724854 0.0976707743233809 0.12045544443682878 0.09764458817762174 0.1204204455102651 C 0.0976707743233809 0.12045544443682878 0.09773580341353942 0.12068313182601276 0.09772878685693037 0.12066292518633986" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09772878685693037 0.12066292518633986 C 0.09772932126806831 0.12070416322648862 0.09773626861286153 0.12124025774842251 0.09773519979058565 0.12115778166812499 C 0.09773626861286153 0.12124025774842251 0.09774214713537889 0.12169387619005888 0.09774161272424095 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09774161272424095 0.12165263814991012 C 0.0977259601844048 0.12168179784774215 0.09750034113241285 0.12204379256404323 0.09755378224620705 0.12200255452389447 C 0.09750034113241285 0.12204379256404323 0.0970247422107945 0.12214749463169519 0.09710031935871058 0.12214749463169519 C 0.0970247422107945 0.12214749463169519 0.09659341535741989 0.12196131648374571 0.09664685647121408 0.12200255452389447 C 0.09659341535741989 0.12196131648374571 0.09644337345334404 0.12162347845207809 0.0964590259931802 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0964590259931802 0.12165263814991012 C 0.09645956040431813 0.12161140010976136 0.09646650774911136 0.12107530558782748 0.09646543892683548 0.12115778166812499 C 0.09646650774911136 0.12107530558782748 0.09647238627162873 0.1206216871461911 0.09647185186049079 0.12066292518633986" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920244,0.04894961980360843) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09633641318670258 0.12056147960757399 C 0.09634494185511436 0.12053920178733463 0.09647058663147762 0.12025555944816514 0.09643875720764394 0.1202941457647016 C 0.09647058663147762 0.12025555944816514 0.09677349645196215 0.12007616598889709 0.0967183662727066 0.12009844380913645 C 0.09677349645196215 0.12007616598889709 0.09716397820637791 0.12002681192182918 0.09710031935871058 0.12002681192182918 C 0.09716397820637791 0.12002681192182918 0.09753740262397016 0.12012072162937582 0.09748227244471461 0.12009844380913645 C 0.09753740262397016 0.12012072162937582 0.09779371093361093 0.12033273208123806 0.09776188150977727 0.1202941457647016 C 0.09779371093361093 0.12033273208123806 0.09787275419913037 0.12058375742781335 0.0978642255307186 0.12056147960757399" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0978642255307186 0.12056147960757399 C 0.09786487511079683 0.120606944546838 0.09787331965181392 0.12119798875727014 0.09787202049165744 0.12110705887874212 C 0.09787331965181392 0.12119798875727014 0.09788046503267456 0.12169810308917411 0.09787981545259632 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09787981545259632 0.12165263814991012 C 0.0978607896925971 0.12168478671676994 0.09758654832478178 0.12208388589149195 0.0976515063326056 0.12203842095222794 C 0.09758654832478178 0.12208388589149195 0.09700845486306141 0.1221982174210782 0.09710031935871058 0.1221982174210782 C 0.09700845486306141 0.1221982174210782 0.09648417437699178 0.12199295601296394 0.09654913238481559 0.12203842095222794 C 0.09648417437699178 0.12199295601296394 0.09630179750482566 0.1216204895830503 0.09632082326482488 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09632082326482488 0.12165263814991012 C 0.09632147284490312 0.12160717321064612 0.0963299173859202 0.1210161290002141 0.09632861822576372 0.12110705887874212 C 0.0963299173859202 0.1210161290002141 0.09633706276678082 0.12051601466830998 0.09633641318670258 0.12056147960757399" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920244,0.0478584612612723) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09612757078810275 0.12044963585698454 C 0.09613843108784995 0.12042507456017064 0.09629842557551122 0.12011235888123631 0.09625789438506922 0.12015490029521775 C 0.09629842557551122 0.12011235888123631 0.09668414715454349 0.11991457759239331 0.0966139450734067 0.11993913888920721 C 0.09668414715454349 0.11991457759239331 0.09718138173959456 0.11986016473345093 0.09710031935871058 0.11986016473345093 C 0.09718138173959456 0.11986016473345093 0.09765689572515134 0.11996370018602111 0.09758669364401455 0.11993913888920721 C 0.09765689572515134 0.11996370018602111 0.09798327552279401 0.12019744170919919 0.09794274433235202 0.12015490029521775 C 0.09798327552279401 0.12019744170919919 0.09808392822906566 0.12047419715379844 0.09807306792931846 0.12044963585698454" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09807306792931846 0.12044963585698454 C 0.09807389509647033 0.12049976095252311 0.09808464826944474 0.12115138719452458 0.09808299393514099 0.12105113700344744 C 0.09808464826944474 0.12115138719452458 0.09809374710811541 0.12170276324544868 0.09809291994096353 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09809291994096353 0.12165263814991012 C 0.09806869277600251 0.12168808194487307 0.09771947724624364 0.12212808878500421 0.09780219396143137 0.12207796368946564 C 0.09771947724624364 0.12212808878500421 0.09698334025825713 0.12225413929637305 0.09710031935871058 0.12225413929637305 C 0.09698334025825713 0.12225413929637305 0.09631572804080213 0.12202783859392706 0.09639844475598987 0.12207796368946564 C 0.09631572804080213 0.12202783859392706 0.09608349161149671 0.12161719435494717 0.09610771877645773 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09610771877645773 0.12165263814991012 C 0.0961085459436096 0.12160251305437156 0.096119299116584 0.1209508868123703 0.09611764478228024 0.12105113700344744 C 0.096119299116584 0.1209508868123703 0.09612839795525462 0.12039951076144596 0.09612757078810275 0.12044963585698454" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920244,0.04665545896834672) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09586163348825572 0.12032632812195981 C 0.09587546285820006 0.12029924929222248 0.09607919783885681 0.1199544802561972 0.09602758592758785 0.12000138216511175 C 0.09607919783885681 0.1199544802561972 0.09657037087607674 0.119736426385248 0.09648097642348318 0.1197635052149853 C 0.09657037087607674 0.119736426385248 0.09720354318124849 0.11967643620826413 0.09710031935871058 0.11967643620826413 C 0.09720354318124849 0.11967643620826413 0.09780905674653169 0.1197905840447226 0.09771966229393812 0.1197635052149853 C 0.09780905674653169 0.1197905840447226 0.0982246647011024 0.12004828407402629 0.09817305278983345 0.12000138216511175 C 0.0982246647011024 0.12004828407402629 0.09835283459910989 0.12035340695169715 0.09833900522916554 0.12032632812195981" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09833900522916554 0.12032632812195981 C 0.09834005853347715 0.1203815910397911 0.09835375148952809 0.12110000897159766 0.09835164488090486 0.12098948313593513 C 0.09835375148952809 0.12110000897159766 0.09836533783695581 0.12170790106774138 0.0983642845326442 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0983642845326442 0.12165263814991012 C 0.09833343396362242 0.12169171493385678 0.09788874727322158 0.12217682247510125 0.09799407770438272 0.12212155955726997 C 0.09788874727322158 0.12217682247510125 0.0969513596344319 0.1223157931638856 0.09710031935871058 0.1223157931638856 C 0.0969513596344319 0.1223157931638856 0.09610123058187743 0.12206629663943869 0.09620656101303855 0.12212155955726997 C 0.09610123058187743 0.12206629663943869 0.09580550361575527 0.12161356136596346 0.09583635418477705 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09583635418477705 0.12165263814991012 C 0.09583740748908867 0.12159737523207886 0.09585110044513964 0.12087895730027261 0.09584899383651642 0.12098948313593513 C 0.09585110044513964 0.12087895730027261 0.09586268679256732 0.12027106520412853 0.09586163348825572 0.12032632812195981" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920244,0.04532914894039641) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.0956581917208922 0.12019038134409493 C 0.0956742924265562 0.12016052693430952 0.09591148884043604 0.11978041907209169 0.09585140018886026 0.11983212842666996 C 0.09591148884043604 0.11978041907209169 0.09648333213728899 0.11954001467937027 0.09637925553980146 0.11956986908915565 C 0.09648333213728899 0.11954001467937027 0.09722049666186211 0.11947387550924543 0.09710031935871058 0.11947387550924543 C 0.09722049666186211 0.11947387550924543 0.09792545977510744 0.11959972349894103 0.0978213831776199 0.11956986908915565 C 0.09792545977510744 0.11959972349894103 0.09840932718013681 0.11988383778124823 0.09834923852856105 0.11983212842666996 C 0.09840932718013681 0.11988383778124823 0.09855854770219305 0.12022023575388034 0.09854244699652905 0.12019038134409493" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09854244699652905 0.12019038134409493 C 0.0985436732955408 0.12025130871100391 0.09855961518269356 0.12104336448082059 0.09855716258467005 0.12092150974700266 C 0.09855961518269356 0.12104336448082059 0.09857310447182283 0.12171356551681907 0.09857187817281107 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09857187817281107 0.12165263814991012 C 0.09853596070633314 0.1216957203042113 0.09801823867390085 0.1222305513684334 0.09814086857507588 0.1221696240015244 C 0.09801823867390085 0.1222305513684334 0.09692689448931636 0.12238376655281819 0.09710031935871058 0.12238376655281819 C 0.09692689448931636 0.12238376655281819 0.09593714024117034 0.12210869663461539 0.09605977014234537 0.1221696240015244 C 0.09593714024117034 0.12210869663461539 0.09559284307813229 0.12160955599560894 0.09562876054461023 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09562876054461023 0.12165263814991012 C 0.09562998684362198 0.12159171078300117 0.09564592873077471 0.12079965501318474 0.09564347613275122 0.12092150974700266 C 0.09564592873077471 0.12079965501318474 0.09565941801990395 0.12012945397718595 0.0956581917208922 0.12019038134409493" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920244,0.043866892134581226) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09545696139896127 0.12004050002149899 C 0.09547530875055253 0.12000758553471058 0.09574560286637923 0.1195885166166156 0.09567712961805634 0.11964552618003815 C 0.09574560286637923 0.1195885166166156 0.0963972395238905 0.11932347077363997 0.09627864037883598 0.11935638526042838 C 0.0963972395238905 0.11932347077363997 0.09723726585535636 0.11925055233857729 0.09710031935871058 0.11925055233857729 C 0.09723726585535636 0.11925055233857729 0.09804059748363991 0.11938929974721679 0.09792199833858538 0.11935638526042838 C 0.09804059748363991 0.11938929974721679 0.09859198234768794 0.11970253574346071 0.09852350909936505 0.11964552618003815 C 0.09859198234768794 0.11970253574346071 0.09876202467005132 0.1200734145082874 0.09874367731846007 0.12004050002149899" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09874367731846007 0.12004050002149899 C 0.09874507473169114 0.12010767244351614 0.09876324110369517 0.12098091392973898 0.098760446277233 0.12084656908570471 C 0.09876324110369517 0.12098091392973898 0.09877861264923708 0.12171981057192724 0.098777215236006 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.098777215236006 0.12165263814991012 C 0.09873628595007966 0.12170013622502719 0.09814632248178204 0.12228978747333215 0.09828606380489 0.12222261505131496 C 0.09814632248178204 0.12228978747333215 0.09690269528434736 0.12245870721411634 0.09710031935871058 0.12245870721411634 C 0.09690269528434736 0.12245870721411634 0.0957748335894235 0.12215544262929777 0.09591457491253143 0.12222261505131496 C 0.0957748335894235 0.12215544262929777 0.0953824941954891 0.12160514007479305 0.09542342348141543 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09542342348141543 0.12165263814991012 C 0.0954248208946465 0.121585465727893 0.09544298726665049 0.12071222424167044 0.09544019244018834 0.12084656908570471 C 0.09544298726665049 0.12071222424167044 0.09545835881219235 0.11997332759948184 0.09545696139896127 0.12004050002149899" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920244,0.0422547540061701) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09533680173540111 0.11987525586333689 C 0.09535649061552628 0.11983896764165268 0.09564654819787435 0.11937694415945302 0.09557306829690312 0.11943979720312636 C 0.09564654819787435 0.11937694415945302 0.09634583146887324 0.11908473111757245 0.09621856054705595 0.11912101933925667 C 0.09634583146887324 0.11908473111757245 0.09724727916065305 0.11900433854291567 0.09710031935871058 0.11900433854291567 C 0.09724727916065305 0.11900433854291567 0.0981093490921829 0.1191573075609409 0.09798207817036558 0.11912101933925667 C 0.0981093490921829 0.1191573075609409 0.09870105032148958 0.11950265024679971 0.09862757042051835 0.11943979720312636 C 0.09870105032148958 0.11950265024679971 0.09888352586214545 0.1199115440850211 0.0988638369820203 0.11987525586333689" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0988638369820203 0.11987525586333689 C 0.09886533657183603 0.11994931345861079 0.09888483123944064 0.12091206219717146 0.09888183205980916 0.12076394700662368 C 0.09888483123944064 0.12091206219717146 0.09890132672741374 0.121726695745184 0.098899827137598 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.098899827137598 0.12165263814991012 C 0.09885590516879482 0.1217050047777267 0.09822280453038594 0.12235509527898296 0.0983727635119599 0.12228103768370902 C 0.09822280453038594 0.12235509527898296 0.09688824533316906 0.12254132929319747 0.09710031935871058 0.12254132929319747 C 0.09688824533316906 0.12254132929319747 0.09567791622388765 0.12220698008843507 0.09582787520546157 0.12228103768370902 C 0.09567791622388765 0.12220698008843507 0.09525688961102025 0.12160027152209354 0.09530081157982342 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09530081157982342 0.12165263814991012 C 0.09530231116963916 0.12157858055463625 0.09532180583724376 0.12061583181607591 0.09531880665761228 0.12076394700662368 C 0.09532180583724376 0.12061583181607591 0.09533830132521685 0.11980119826806299 0.09533680173540111 0.11987525586333689" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920244,0.040477371719596866) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09548696526102589 0.11999789524111051 C 0.0955049776330084 0.11996411090672252 0.0957703368122195 0.11953396704479458 0.09570311372481596 0.11959248322845448 C 0.0957703368122195 0.11953396704479458 0.09641007611269288 0.11926191670280374 0.09629364230986832 0.11929570103719175 C 0.09641007611269288 0.11926191670280374 0.09723476553351765 0.11918707121579836 0.09710031935871058 0.11918707121579836 C 0.09723476553351765 0.11918707121579836 0.09802343021037768 0.11932948537157977 0.09790699640755311 0.11929570103719175 C 0.09802343021037768 0.11932948537157977 0.09856474808000895 0.11965099941211438 0.09849752499260542 0.11959248322845448 C 0.09856474808000895 0.11965099941211438 0.09873168582837802 0.12003167957549851 0.0987136734563955 0.11999789524111051" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0987136734563955 0.11999789524111051 C 0.09871504535613843 0.12006684286231051 0.09873288005279639 0.12096316193791043 0.09873013625331054 0.12082526669551047 C 0.09873288005279639 0.12096316193791043 0.09874797094996868 0.12172158577111009 0.09874659905022574 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09874659905022574 0.12165263814991012 C 0.09870641703706616 0.12170139148040734 0.09812722491801781 0.12230662573707696 0.09826441489231075 0.12223767811587691 C 0.09812722491801781 0.12230662573707696 0.09690630343644391 0.12248000960431063 0.09710031935871058 0.12248000960431063 C 0.09690630343644391 0.12248000960431063 0.0957990338508178 0.12216873049467686 0.0959362238251107 0.12223767811587691 C 0.0957990338508178 0.12216873049467686 0.09541385765403612 0.1216038848194129 0.0954540396671957 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0954540396671957 0.12165263814991012 C 0.09545541156693862 0.12158369052871015 0.09547324626359667 0.12068737145311051 0.09547050246411082 0.12082526669551047 C 0.09547324626359667 0.12068737145311051 0.09548833716076881 0.11992894761991052 0.09548696526102589 0.11999789524111051" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920244,0.03882262881079726) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.0957209016051902 0.12037936064176169 C 0.09573630218323524 0.12035336455930366 0.09596318428146076 0.12002238111665026 0.09590570854173075 0.12006740765226531 C 0.09596318428146076 0.12002238111665026 0.09651016138336542 0.11981304613192302 0.09641061048195043 0.11983904221438108 C 0.09651016138336542 0.11981304613192302 0.09721527083817062 0.11975545466276868 0.09710031935871058 0.11975545466276868 C 0.09721527083817062 0.11975545466276868 0.09788957913688602 0.11986503829683913 0.097790028235471 0.11983904221438108 C 0.09788957913688602 0.11986503829683913 0.09835240591542073 0.12011243418788037 0.09829493017569071 0.12006740765226531 C 0.09835240591542073 0.12011243418788037 0.09849513769027615 0.12040535672421972 0.09847973711223112 0.12037936064176169" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09847973711223112 0.12037936064176169 C 0.09848091008651133 0.12043241387126788 0.09849615875215402 0.12112210585484841 0.09849381280359361 0.12101599939583604 C 0.09849615875215402 0.12112210585484841 0.09850906146923623 0.1217056913794163 0.09850788849495602 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09850788849495602 0.12165263814991012 C 0.09847353287370458 0.12169015244825782 0.09797832361191829 0.12215586295958879 0.09809562103993874 0.12210280973008256 C 0.09797832361191829 0.12215586295958879 0.09693443574517258 0.12228927690398489 0.09710031935871058 0.12228927690398489 C 0.09693443574517258 0.12228927690398489 0.09598772024946227 0.12204975650057633 0.09610501767748271 0.12210280973008256 C 0.09598772024946227 0.12204975650057633 0.09565839460121389 0.12161512385156242 0.09569275022246534 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09569275022246534 0.12165263814991012 C 0.09569392319674555 0.12159958492040394 0.09570917186238817 0.12090989293682368 0.09570682591382776 0.12101599939583604 C 0.09570917186238817 0.12090989293682368 0.0957220745794704 0.1203263074122555 0.0957209016051902 0.12037936064176169" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27800256351920244,0.03754935130264883) rotate(0) scale(1,1) translate(-0.09710031935871058,-0.12165263814991012)"><path d="M 0.09626552941698104 0.1206059297047534 C 0.0963350952454585 0.12054063148831566 0.09723945101566557 0.11982235110750064 0.09710031935871064 0.11982235110750064 C 0.09723945101566557 0.11982235110750064 0.09800467512891768 0.12067122792119113 0.09793510930044022 0.1206059297047534" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09793510930044022 0.1206059297047534 C 0.0979524782630848 0.12064669584806054 0.0981692458596073 0.12118234912820207 0.09814353685217515 0.12109512342443901 C 0.0981692458596073 0.12118234912820207 0.09825195743441355 0.12169909771036605 0.09824361738962598 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09824361738962598 0.12165263814991012 C 0.09821571203626449 0.12167794154414564 0.09781347831337853 0.12199206328403842 0.09790875314928814 0.12195627888073646 C 0.09781347831337853 0.12199206328403842 0.09696558039361433 0.12208205098953356 0.09710031935871058 0.12208205098953356 C 0.09696558039361433 0.12208205098953356 0.09619661073222364 0.1219204944774345 0.09629188556813324 0.12195627888073646 C 0.09619661073222364 0.1219204944774345 0.09592911597443386 0.1216273347556746 0.09595702132779535 0.12165263814991012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09595702132779535 0.12165263814991012 C 0.09596536137258292 0.12160617858945419 0.0960828108726783 0.12100789772067595 0.09605710186524616 0.12109512342443901 C 0.0960828108726783 0.12100789772067595 0.09628289837962561 0.12056516356144625 0.09626552941698104 0.1206059297047534" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 77 KiB

View File

@@ -0,0 +1,607 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g id="節1">
<g transform="translate(0.2780025635192015,0.11151864958480151) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.004029675298137396 0.005092361688580299 C 0.004044909175396935 0.005035508084651432 0.004269335429180731 0.0043116451108356985 0.004212481825251864 0.004410118441433894 C 0.004269335429180731 0.0043116451108356985 0.004810391875881999 0.0038538281174730856 0.004711918545283803 0.003910681721401953 C 0.004810391875881999 0.0038538281174730856 0.0055078690002879445 0.0037278751942874866 0.00539416179243021 0.0037278751942874866 C 0.0055078690002879445 0.0037278751942874866 0.006174878370174812 0.00396753532533082 0.006076405039576616 0.003910681721401953 C 0.006174878370174812 0.00396753532533082 0.0066326953635374225 0.0045085917720320895 0.0065758417596085555 0.004410118441433894 C 0.0066326953635374225 0.0045085917720320895 0.00677388216398256 0.0051492152925091675 0.006758648286723021 0.0050923616885803005" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006758648286723021 0.0050923616885803005 C 0.006783083091187605 0.005122517885581125 0.007075662607203157 0.005539302319836152 0.007051865940298027 0.005454236052590192 C 0.007075662607203157 0.005539302319836152 0.0070266421448226075 0.00622015714831142 0.007044208289584572 0.00611315689553182 C 0.0070266421448226075 0.00622015714831142 0.00679513028501894 0.006837680810156041 0.0068410722031544465 0.006738239085945389 C 0.00679513028501894 0.006837680810156041 0.0064638913610254945 0.007353809127735832 0.006492905271958491 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006492905271958491 0.007306457586059644 C 0.006466087395761046 0.007371201666489557 0.006079528800961803 0.008174948507845954 0.0061710907575891595 0.008083386551218597 C 0.006079528800961803 0.008174948507845954 0.005264673631570384 0.008405201065587928 0.005394161792430209 0.008405201065587928 C 0.005264673631570384 0.008405201065587928 0.004525670870643902 0.007991824594591239 0.004617232827271259 0.008083386551218597 C 0.004525670870643902 0.007991824594591239 0.004268600436704482 0.007241713505629731 0.004295418312901926 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004295418312901926 0.007306457586059644 C 0.00426640440196893 0.0072591060443834565 0.0039013094635704636 0.006638797361734737 0.00394725138170597 0.006738239085945389 C 0.0039013094635704636 0.006638797361734737 0.0037265491505138796 0.006006156642752219 0.0037441152952758447 0.006113156895531819 C 0.0037265491505138796 0.006006156642752219 0.003760254311467519 0.005369169785344232 0.00373645764456239 0.005454236052590192 C 0.003760254311467519 0.005369169785344232 0.0040541101026019795 0.005062205491579476 0.004029675298137396 0.0050923616885803005" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27677094853229095,0.11041160163606184) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003013567118598907 0.0027217736172392227 C 0.0030283881190346024 0.002755783964944942 0.003199410357150845 0.0032334411024995307 0.003191419123827249 0.003129897789707853 C 0.003199410357150845 0.0032334411024995307 0.0031026321513699636 0.004033826335825316 0.0031094619184820625 0.003964293370739357" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031094619184820625 0.003964293370739357 C 0.0029569577115142786 0.003774509602122072 0.0009505615967210172 0.001177092422035229 0.0012794114348686537 0.0016868881473319302 C 0.0009505615967210172 0.001177092422035229 -0.0010130817704694288 -0.00247326728950047 -0.0008367361392895762 -0.0021532553328210548" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0008367361392895762 -0.0021532553328210548 C -0.000654778003910384 -0.0018702924703112602 0.0016676200900847698 0.0016485514298015048 0.0013467614852607297 0.0012422990172964814 C 0.0016676200900847698 0.0016485514298015048 0.003152467588043753 0.0028450631672344534 0.003013567118598905 0.002721773617239225" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27923417850611204,0.11041160163606184) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0033546099577166544 0.002721773617239225 C 0.0034935104271615045 0.0025984840672439963 0.005342274195878901 0.000836046604791458 0.005021415591054855 0.0012422990172964814 C 0.005342274195878901 0.000836046604791458 0.007386871350984402 -0.0024362181953308496 0.007204913215605206 -0.0021532553328210548" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007204913215605206 -0.0021532553328210548 C 0.00702856758442535 -0.0018332433761416393 0.004759915803299293 0.0021966838726286313 0.005088765641446936 0.0016868881473319302 C 0.004759915803299293 0.0021966838726286313 0.0031062109508657137 0.004154077139356643 0.0032587151578335 0.003964293370739357" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032587151578335 0.003964293370739357 C 0.0032518853907214035 0.0038947604056533986 0.0031847491858119394 0.003026354476916175 0.003176757952488343 0.003129897789707853 C 0.0031847491858119394 0.003026354476916175 0.003369430958152347 0.0026877632695335033 0.0033546099577166544 0.0027217736172392227" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節2">
<g transform="translate(0.2780025635192015,0.10930455368732217) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0038932266487081146 0.004870952098832365 C 0.0039099839136936074 0.004808413134510611 0.004156852792855783 0.004012163863313304 0.004094313828534029 0.004120484526971319 C 0.004156852792855783 0.004012163863313304 0.0047520148842271764 0.003508565170614431 0.004643694220569161 0.003571104134936185 C 0.0047520148842271764 0.003508565170614431 0.005519239721073718 0.0033700169551102704 0.00539416179243021 0.0033700169551102704 C 0.005519239721073718 0.0033700169551102704 0.006252950027949272 0.003633643099257939 0.006144629364291257 0.003571104134936185 C 0.006252950027949272 0.003633643099257939 0.006756548720648144 0.004228805190629334 0.00669400975632639 0.004120484526971319 C 0.006756548720648144 0.004228805190629334 0.006911854201137795 0.004933491063154121 0.006895096936152302 0.004870952098832366" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006895096936152302 0.004870952098832366 C 0.006921975221063344 0.004904123915533273 0.007243812688680451 0.005362586793213804 0.007217636355084808 0.005269013899243248 C 0.007243812688680451 0.005362586793213804 0.007189890180061847 0.006111527104536596 0.007209212939300009 0.005993826826479036 C 0.007189890180061847 0.006111527104536596 0.006935227134277814 0.006790803132565681 0.006985763244226871 0.006681417235933964 C 0.006935227134277814 0.006790803132565681 0.006570864317885023 0.007358544281903451 0.006602779619911319 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006602779619911319 0.007306457586059644 C 0.0065732799560941305 0.007377676074532548 0.006148065501814961 0.008261797600024585 0.006248783654105054 0.008161079447734492 C 0.006148065501814961 0.008261797600024585 0.0052517248154844015 0.008515075413540758 0.005394161792430209 0.008515075413540758 C 0.0052517248154844015 0.008515075413540758 0.004438821778465272 0.008060361295444398 0.004539539930755365 0.008161079447734492 C 0.004438821778465272 0.008060361295444398 0.004156044301131909 0.00723523909758674 0.004185543964949098 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004185543964949098 0.007306457586059644 C 0.004153628662922802 0.007254370890215837 0.003752024230684489 0.006572031339302246 0.0038025603406335465 0.006681417235933964 C 0.003752024230684489 0.006572031339302246 0.003559787886322244 0.0058761265484214755 0.0035791106455604054 0.005993826826479035 C 0.003559787886322244 0.0058761265484214755 0.0035968635633712486 0.005175441005272692 0.003570687229775606 0.005269013899243248 C 0.0035968635633712486 0.005175441005272692 0.003920104933619157 0.0048377802821314595 0.0038932266487081146 0.004870952098832366" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27664778703359993,0.10808680094370852) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0029965149766430165 0.002675542125147364 C 0.0030128180771222812 0.0027129535076236555 0.003200942539050148 0.003238376358933703 0.003192152182394192 0.0031244787148628573 C 0.003200942539050148 0.003238376358933703 0.0030944865126911777 0.004118800115592066 0.0031019992565144866 0.004042313853997511" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031019992565144866 0.004042313853997511 C 0.002934244628849924 0.003833551708518497 0.0007272089025773365 0.0009763928104229715 0.0010889437245397366 0.0015371681082493426 C 0.0007272089025773365 0.0009763928104229715 -0.0014327988013321535 -0.0030390028722662994 -0.0012388186070343159 -0.0026869897199189425" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0012388186070343159 -0.0026869897199189425 C -0.0010386646581172043 -0.0023757305711581684 0.001515973245277466 0.001494997718965873 0.0011630287799710218 0.0010481200652103474 C 0.001515973245277466 0.001494997718965873 0.0031493054930323474 0.002811160630142116 0.0029965149766430148 0.0026755421251473646" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2793573400048031,0.10808680094370852) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0033716620996725372 0.0026755421251473646 C 0.0035244526160618725 0.002539923620152613 0.0055580927616510085 0.0006012424114548217 0.005205148296344558 0.0010481200652103474 C 0.0055580927616510085 0.0006012424114548217 0.007807149632267059 -0.0029982488686797165 0.0076069956833499435 -0.0026869897199189425" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0076069956833499435 -0.0026869897199189425 C 0.007413015489052102 -0.0023349765675715855 0.004917498529813442 0.0020979434060757135 0.005279233351775848 0.0015371681082493426 C 0.004917498529813442 0.0020979434060757135 0.003098423192136503 0.004251075999476525 0.003266177819801068 0.004042313853997511" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003266177819801068 0.004042313853997511 C 0.003258665075977762 0.0039658275924029564 0.0031848152505773515 0.0030105810707920116 0.0031760248939213956 0.0031244787148628573 C 0.0031848152505773515 0.0030105810707920116 0.003387965200151799 0.002638130742671073 0.0033716620996725372 0.002675542125147364" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節3">
<g transform="translate(0.2780025635192015,0.1068690482000949) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0037431331343359053 0.004627401550109636 C 0.0037615661258199474 0.0045586086893557075 0.004033121892898339 0.003682734491038669 0.00396432903214441 0.0038018872210624855 C 0.004033121892898339 0.003682734491038669 0.004687800193406873 0.0031287759290699094 0.004568647463383056 0.0031975687898238387 C 0.004687800193406873 0.0031287759290699094 0.005531747513938068 0.002976372892015333 0.00539416179243021 0.002976372892015333 C 0.005531747513938068 0.002976372892015333 0.006338828851501179 0.003266361650577768 0.006219676121477362 0.0031975687898238387 C 0.006338828851501179 0.003266361650577768 0.006892787413469938 0.003921039951086302 0.006823994552716009 0.0038018872210624855 C 0.006892787413469938 0.003921039951086302 0.007063623442008553 0.004696194410863569 0.007045190450524511 0.004627401550109639" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007045190450524511 0.004627401550109639 C 0.007074756563926657 0.004663890548480636 0.007428777778305477 0.005168199713929219 0.00739998381135027 0.0050652695305616075 C 0.007428777778305477 0.005168199713929219 0.007369463018825011 0.0059920340563842924 0.007390718053986989 0.005862563750520976 C 0.007369463018825011 0.0059920340563842924 0.007089333668462574 0.006739237687216284 0.0071449233894065375 0.0066189132009213955 C 0.007089333668462574 0.006739237687216284 0.006688534570430504 0.0073637529514878316 0.00672364140265943 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00672364140265943 0.007306457586059644 C 0.006691191772460523 0.007384797923379838 0.0062234558727534365 0.008357331601421079 0.006334245840272538 0.008246541633901977 C 0.0062234558727534365 0.008357331601421079 0.005237481117789821 0.008635937196288867 0.005394161792430209 0.008635937196288867 C 0.005237481117789821 0.008635937196288867 0.004343287777068777 0.008135751666382876 0.004454077744587878 0.008246541633901977 C 0.004343287777068777 0.008135751666382876 0.0040322325520020805 0.00722811724873945 0.004064682182200988 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004064682182200988 0.007306457586059644 C 0.004029575349972062 0.007249162220631457 0.003587810474509917 0.006498588714626505 0.0036434001954538803 0.006618913200921394 C 0.003587810474509917 0.006498588714626505 0.003376350495711447 0.00573309344465766 0.003397605530873425 0.0058625637505209756 C 0.003376350495711447 0.00573309344465766 0.0034171337404653532 0.004962339347193996 0.0033883397735101463 0.0050652695305616075 C 0.0034171337404653532 0.004962339347193996 0.003772699247738052 0.004590912551738642 0.0037431331343359053 0.004627401550109639" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27651230938503973,0.10552952018211989) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0029777576204915355 0.002624687483846318 C 0.0029956910310187266 0.0026658400045702383 0.0032026279391393804 0.003243805141011291 0.003192958546817829 0.0031185177325333607 C 0.0032026279391393804 0.003243805141011291 0.003085526310144514 0.004212271273335489 0.003093790328350154 0.004128136385581479" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003093790328350154 0.004128136385581479 C 0.0029092602379191352 0.003898498025554564 0.0004815209390192882 0.0007556232376494869 0.0008794292431779285 0.001372476065258495 C 0.0004815209390192882 0.0007556232376494869 -0.0018944875352811508 -0.003661312013308712 -0.0016811093215535293 -0.0032740975457266194" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0016811093215535293 -0.0032740975457266194 C -0.0014609399777447067 -0.002931712482089768 0.0013491617159894307 0.0013260886370466795 0.0009609228041523421 0.0008345232179156014 C 0.0013491617159894307 0.0013260886370466795 0.0031458271885198 0.0027738678393405456 0.002977757620491534 0.002624687483846319" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27949281765336326,0.10552952018211989) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0033904194558240096 0.002624687483846319 C 0.0035584890238522784 0.0024755071283520925 0.00579549318400033 0.0003429577987845232 0.005407254272163234 0.0008345232179156014 C 0.00579549318400033 0.0003429577987845232 0.008269455741677988 -0.003616482609363471 0.00804928639786916 -0.0032740975457266194" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00804928639786916 -0.0032740975457266194 C 0.007835908184141534 -0.0028868830781445267 0.005090839528979003 0.0019893288928675033 0.00548874783313765 0.001372476065258495 C 0.005090839528979003 0.0019893288928675033 0.003089856657534371 0.0043577747456083945 0.0032743867479653925 0.004128136385581479" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032743867479653925 0.004128136385581479 C 0.003266122729759756 0.0040440014978274695 0.003184887921819305 0.0029932303240554304 0.0031752185294977534 0.0031185177325333607 C 0.003184887921819305 0.0029932303240554304 0.0034083528663511977 0.002583534963122398 0.0033904194558240096 0.002624687483846318" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節4">
<g transform="translate(0.2780025635192015,0.10418999216414489) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.003578030268526473 0.0043594959465146355 C 0.0035983065591589196 0.004283823799685314 0.003897017902945153 0.0033203621815365717 0.003821345756115831 0.0034514301845627697 C 0.003897017902945153 0.0033203621815365717 0.004617164033504539 0.002711007763370936 0.004486096030478341 0.0027866799102002583 C 0.004617164033504539 0.002711007763370936 0.005545506086088854 0.0025433644226109027 0.00539416179243021 0.0025433644226109027 C 0.005545506086088854 0.0025433644226109027 0.006433295557408276 0.0028623520570295806 0.006302227554382078 0.0027866799102002583 C 0.006433295557408276 0.0028623520570295806 0.00704264997557391 0.003582498187588968 0.006966977828744588 0.0034514301845627697 C 0.00704264997557391 0.003582498187588968 0.007230569606966389 0.004435168093343962 0.007210293316333942 0.004359495946514639" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007210293316333942 0.004359495946514639 C 0.007242816041076303 0.004399633844722736 0.007632239376893001 0.004954373926716178 0.007600566013242274 0.004841150725011806 C 0.007632239376893001 0.004954373926716178 0.0075669931414644905 0.005860591703416757 0.007590373680142666 0.00571817436696711 C 0.0075669931414644905 0.005860591703416757 0.00725885085606581 0.006682515697331948 0.00731999954910417 0.006550158762407571 C 0.00725885085606581 0.006682515697331948 0.006817971848230534 0.00736948248803065 0.006856589363682352 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006856589363682352 0.007306457586059644 C 0.006820894770463554 0.007392631957111858 0.0063063852807857595 0.008462419002957224 0.006428254245056771 0.008340550038686211 C 0.0063063852807857595 0.008462419002957224 0.005221813050325781 0.00876888515731179 0.005394161792430209 0.00876888515731179 C 0.005221813050325781 0.00876888515731179 0.004238200375532634 0.008218681074415198 0.0043600693398036456 0.008340550038686211 C 0.004238200375532634 0.008218681074415198 0.003896039627959266 0.00722028321500743 0.003931734221178065 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003931734221178065 0.007306457586059644 C 0.0038931167057262464 0.0072434326840886375 0.003407175342717887 0.006417801827483192 0.003468324035756247 0.00655015876240757 C 0.003407175342717887 0.006417801827483192 0.0031745693660395714 0.005575757030517462 0.003197949904717747 0.005718174366967109 C 0.0031745693660395714 0.005575757030517462 0.003219430935268867 0.004727927523307433 0.00318775757161814 0.004841150725011806 C 0.003219430935268867 0.004727927523307433 0.0036105529932688343 0.004319358048306542 0.003578030268526473 0.004359495946514639" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2763632839716236,0.10271651134437239) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0029571245287249074 0.002568747378415169 C 0.0029768512803048175 0.002614015151211481 0.0032044818792375364 0.0032497768012966378 0.00319384554768383 0.0031119606519709147 C 0.0032044818792375364 0.0032497768012966378 0.0030756700873431834 0.004315089546853258 0.003084760507369387 0.004222541170323847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003084760507369387 0.004222541170323847 C 0.0028817774078952665 0.00396993897429424 0.00021126417910543525 0.0005127767075986537 0.0006489633136799396 0.0011913148179685628 C 0.00021126417910543525 0.0005127767075986537 -0.0024023451426250482 -0.004345852068455365 -0.0021676291075246644 -0.0039199161541150634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0021676291075246644 -0.0039199161541150634 C -0.0019254428293349595 -0.0035432925841145267 0.0011656690337725924 0.0011402886469355656 0.0007386062307517948 0.0005995666858913796 C 0.0011656690337725924 0.0011402886469355656 0.003142001053555999 0.002732845769458819 0.0029571245287249065 0.0025687473784151696" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27964184306677947,0.10271651134437239) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0034110525475906294 0.0025687473784151696 C 0.003595929072421725 0.00240464898737152 0.006056633648584581 5.8844724847193506E-05 0.005629570845563776 0.0005995666858913796 C 0.006056633648584581 5.8844724847193506E-05 0.008777992462030003 -0.0042965397241156 0.008535806183840294 -0.0039199161541150634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008535806183840294 -0.0039199161541150634 C 0.008301090148739906 -0.003493980239774761 0.005281514628061125 0.001869852928338472 0.005719213762635637 0.0011913148179685628 C 0.005281514628061125 0.001869852928338472 0.003080433469472027 0.004475143366353454 0.0032834165689461505 0.004222541170323847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032834165689461505 0.004222541170323847 C 0.0032743261489199503 0.004129992793794435 0.0031849678601854545 0.0029741445026451917 0.003174331528631748 0.0031119606519709147 C 0.0031849678601854545 0.0029741445026451917 0.003430779299170536 0.002523479605618857 0.0034110525475906294 0.002568747378415169" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節5">
<g transform="translate(0.2780025635192015,0.10124303052459988) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.003578030268526473 0.0043594959465146355 C 0.0035983065591589196 0.004283823799685314 0.003897017902945153 0.0033203621815365717 0.003821345756115831 0.0034514301845627697 C 0.003897017902945153 0.0033203621815365717 0.004617164033504539 0.002711007763370936 0.004486096030478341 0.0027866799102002583 C 0.004617164033504539 0.002711007763370936 0.005545506086088854 0.0025433644226109027 0.00539416179243021 0.0025433644226109027 C 0.005545506086088854 0.0025433644226109027 0.006433295557408276 0.0028623520570295806 0.006302227554382078 0.0027866799102002583 C 0.006433295557408276 0.0028623520570295806 0.00704264997557391 0.003582498187588968 0.006966977828744588 0.0034514301845627697 C 0.00704264997557391 0.003582498187588968 0.007230569606966389 0.004435168093343962 0.007210293316333942 0.004359495946514639" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007210293316333942 0.004359495946514639 C 0.007242816041076303 0.004399633844722736 0.007632239376893001 0.004954373926716178 0.007600566013242274 0.004841150725011806 C 0.007632239376893001 0.004954373926716178 0.0075669931414644905 0.005860591703416757 0.007590373680142666 0.00571817436696711 C 0.0075669931414644905 0.005860591703416757 0.00725885085606581 0.006682515697331948 0.00731999954910417 0.006550158762407571 C 0.00725885085606581 0.006682515697331948 0.006817971848230534 0.00736948248803065 0.006856589363682352 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006856589363682352 0.007306457586059644 C 0.006820894770463554 0.007392631957111858 0.0063063852807857595 0.008462419002957224 0.006428254245056771 0.008340550038686211 C 0.0063063852807857595 0.008462419002957224 0.005221813050325781 0.00876888515731179 0.005394161792430209 0.00876888515731179 C 0.005221813050325781 0.00876888515731179 0.004238200375532634 0.008218681074415198 0.0043600693398036456 0.008340550038686211 C 0.004238200375532634 0.008218681074415198 0.003896039627959266 0.00722028321500743 0.003931734221178065 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003931734221178065 0.007306457586059644 C 0.0038931167057262464 0.0072434326840886375 0.003407175342717887 0.006417801827483192 0.003468324035756247 0.00655015876240757 C 0.003407175342717887 0.006417801827483192 0.0031745693660395714 0.005575757030517462 0.003197949904717747 0.005718174366967109 C 0.0031745693660395714 0.005575757030517462 0.003219430935268867 0.004727927523307433 0.00318775757161814 0.004841150725011806 C 0.003219430935268867 0.004727927523307433 0.0036105529932688343 0.004319358048306542 0.003578030268526473 0.004359495946514639" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2763632839716236,0.09976954970482738) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0029571245287249074 0.002568747378415169 C 0.0029768512803048175 0.002614015151211481 0.0032044818792375364 0.0032497768012966378 0.00319384554768383 0.0031119606519709147 C 0.0032044818792375364 0.0032497768012966378 0.0030756700873431834 0.004315089546853258 0.003084760507369387 0.004222541170323847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003084760507369387 0.004222541170323847 C 0.0028817774078952665 0.00396993897429424 0.00021126417910543525 0.0005127767075986537 0.0006489633136799396 0.0011913148179685628 C 0.00021126417910543525 0.0005127767075986537 -0.0024023451426250482 -0.004345852068455365 -0.0021676291075246644 -0.0039199161541150634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0021676291075246644 -0.0039199161541150634 C -0.0019254428293349595 -0.0035432925841145267 0.0011656690337725924 0.0011402886469355656 0.0007386062307517948 0.0005995666858913796 C 0.0011656690337725924 0.0011402886469355656 0.003142001053555999 0.002732845769458819 0.0029571245287249065 0.0025687473784151696" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27964184306677947,0.09976954970482738) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0034110525475906294 0.0025687473784151696 C 0.003595929072421725 0.00240464898737152 0.006056633648584581 5.8844724847193506E-05 0.005629570845563776 0.0005995666858913796 C 0.006056633648584581 5.8844724847193506E-05 0.008777992462030003 -0.0042965397241156 0.008535806183840294 -0.0039199161541150634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008535806183840294 -0.0039199161541150634 C 0.008301090148739906 -0.003493980239774761 0.005281514628061125 0.001869852928338472 0.005719213762635637 0.0011913148179685628 C 0.005281514628061125 0.001869852928338472 0.003080433469472027 0.004475143366353454 0.0032834165689461505 0.004222541170323847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032834165689461505 0.004222541170323847 C 0.0032743261489199503 0.004129992793794435 0.0031849678601854545 0.0029741445026451917 0.003174331528631748 0.0031119606519709147 C 0.0031849678601854545 0.0029741445026451917 0.003430779299170536 0.002523479605618857 0.0034110525475906294 0.002568747378415169" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節6">
<g transform="translate(0.2780025635192015,0.09829606888505486) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.003578030268526473 0.0043594959465146355 C 0.0035983065591589196 0.004283823799685314 0.003897017902945153 0.0033203621815365717 0.003821345756115831 0.0034514301845627697 C 0.003897017902945153 0.0033203621815365717 0.004617164033504539 0.002711007763370936 0.004486096030478341 0.0027866799102002583 C 0.004617164033504539 0.002711007763370936 0.005545506086088854 0.0025433644226109027 0.00539416179243021 0.0025433644226109027 C 0.005545506086088854 0.0025433644226109027 0.006433295557408276 0.0028623520570295806 0.006302227554382078 0.0027866799102002583 C 0.006433295557408276 0.0028623520570295806 0.00704264997557391 0.003582498187588968 0.006966977828744588 0.0034514301845627697 C 0.00704264997557391 0.003582498187588968 0.007230569606966389 0.004435168093343962 0.007210293316333942 0.004359495946514639" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007210293316333942 0.004359495946514639 C 0.007242816041076303 0.004399633844722736 0.007632239376893001 0.004954373926716178 0.007600566013242274 0.004841150725011806 C 0.007632239376893001 0.004954373926716178 0.0075669931414644905 0.005860591703416757 0.007590373680142666 0.00571817436696711 C 0.0075669931414644905 0.005860591703416757 0.00725885085606581 0.006682515697331948 0.00731999954910417 0.006550158762407571 C 0.00725885085606581 0.006682515697331948 0.006817971848230534 0.00736948248803065 0.006856589363682352 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006856589363682352 0.007306457586059644 C 0.006820894770463554 0.007392631957111858 0.0063063852807857595 0.008462419002957224 0.006428254245056771 0.008340550038686211 C 0.0063063852807857595 0.008462419002957224 0.005221813050325781 0.00876888515731179 0.005394161792430209 0.00876888515731179 C 0.005221813050325781 0.00876888515731179 0.004238200375532634 0.008218681074415198 0.0043600693398036456 0.008340550038686211 C 0.004238200375532634 0.008218681074415198 0.003896039627959266 0.00722028321500743 0.003931734221178065 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003931734221178065 0.007306457586059644 C 0.0038931167057262464 0.0072434326840886375 0.003407175342717887 0.006417801827483192 0.003468324035756247 0.00655015876240757 C 0.003407175342717887 0.006417801827483192 0.0031745693660395714 0.005575757030517462 0.003197949904717747 0.005718174366967109 C 0.0031745693660395714 0.005575757030517462 0.003219430935268867 0.004727927523307433 0.00318775757161814 0.004841150725011806 C 0.003219430935268867 0.004727927523307433 0.0036105529932688343 0.004319358048306542 0.003578030268526473 0.004359495946514639" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2763632839716236,0.09682258806528236) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0029571245287249074 0.002568747378415169 C 0.0029768512803048175 0.002614015151211481 0.0032044818792375364 0.0032497768012966378 0.00319384554768383 0.0031119606519709147 C 0.0032044818792375364 0.0032497768012966378 0.0030756700873431834 0.004315089546853258 0.003084760507369387 0.004222541170323847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003084760507369387 0.004222541170323847 C 0.0028817774078952665 0.00396993897429424 0.00021126417910543525 0.0005127767075986537 0.0006489633136799396 0.0011913148179685628 C 0.00021126417910543525 0.0005127767075986537 -0.0024023451426250482 -0.004345852068455365 -0.0021676291075246644 -0.0039199161541150634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0021676291075246644 -0.0039199161541150634 C -0.0019254428293349595 -0.0035432925841145267 0.0011656690337725924 0.0011402886469355656 0.0007386062307517948 0.0005995666858913796 C 0.0011656690337725924 0.0011402886469355656 0.003142001053555999 0.002732845769458819 0.0029571245287249065 0.0025687473784151696" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27964184306677947,0.09682258806528236) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0034110525475906294 0.0025687473784151696 C 0.003595929072421725 0.00240464898737152 0.006056633648584581 5.8844724847193506E-05 0.005629570845563776 0.0005995666858913796 C 0.006056633648584581 5.8844724847193506E-05 0.008777992462030003 -0.0042965397241156 0.008535806183840294 -0.0039199161541150634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008535806183840294 -0.0039199161541150634 C 0.008301090148739906 -0.003493980239774761 0.005281514628061125 0.001869852928338472 0.005719213762635637 0.0011913148179685628 C 0.005281514628061125 0.001869852928338472 0.003080433469472027 0.004475143366353454 0.0032834165689461505 0.004222541170323847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032834165689461505 0.004222541170323847 C 0.0032743261489199503 0.004129992793794435 0.0031849678601854545 0.0029741445026451917 0.003174331528631748 0.0031119606519709147 C 0.0031849678601854545 0.0029741445026451917 0.003430779299170536 0.002523479605618857 0.0034110525475906294 0.002568747378415169" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節7">
<g transform="translate(0.2780025635192015,0.09534910724550985) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.003668836844721659 0.004506844028491886 C 0.003688099320822483 0.00443495548900403 0.003971875097419406 0.0035196669517627253 0.0038999865579315493 0.0036441815546376134 C 0.003971875097419406 0.0035196669517627253 0.004656013921450823 0.002940780254505373 0.004531499318575935 0.0030126687939932293 C 0.004656013921450823 0.002940780254505373 0.005537938871405922 0.00278151908078334 0.00539416179243021 0.00278151908078334 C 0.005537938871405922 0.00278151908078334 0.006381338869159372 0.0030845573334810856 0.006256824266284484 0.0030126687939932293 C 0.006381338869159372 0.0030845573334810856 0.006960225566416725 0.0037686961575125015 0.0068883370269288684 0.0036441815546376134 C 0.006960225566416725 0.0037686961575125015 0.007138749216239578 0.004578732567979744 0.0071194867401387545 0.004506844028491888" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0071194867401387545 0.004506844028491888 C 0.007150383328643997 0.00454497503178958 0.007520335497669862 0.0050719781096833505 0.007490245802201672 0.004964416068064197 C 0.007520335497669862 0.0050719781096833505 0.007458351574012773 0.0059328849975489005 0.00748056308575704 0.005797588527921735 C 0.007458351574012773 0.0059328849975489005 0.00716561640288403 0.006713712791768335 0.007223707661270471 0.006587973703590176 C 0.00716561640288403 0.006713712791768335 0.006746781345440517 0.0073663312429321 0.006783467985119744 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006783467985119744 0.007306457586059644 C 0.006749558121561886 0.0073883232385592475 0.0062607741063679815 0.00840462093211234 0.006376549622425442 0.00828884541605488 C 0.0062607741063679815 0.00840462093211234 0.005230430487431003 0.008695763778749184 0.005394161792430209 0.008695763778749184 C 0.005230430487431003 0.008695763778749184 0.004295998446377511 0.008173069899997418 0.004411773962434973 0.00828884541605488 C 0.004295998446377511 0.008173069899997418 0.0039709457361828135 0.007224591933560041 0.004004855599740672 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004004855599740672 0.007306457586059644 C 0.003968168960061445 0.007246583929187188 0.0035065246652035017 0.0064622346154120155 0.0035646159235899434 0.006587973703590174 C 0.0035065246652035017 0.0064622346154120155 0.003285548987359103 0.00566229205829457 0.0033077604991033696 0.005797588527921734 C 0.003285548987359103 0.00566229205829457 0.0033281674781269342 0.004856854026445043 0.0032980777826587433 0.004964416068064197 C 0.0033281674781269342 0.004856854026445043 0.003699733433226902 0.004468713025194196 0.003668836844721659 0.004506844028491888" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2764452479490025,0.09394930046672598) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0029684727291965527 0.0025995144364023013 C 0.0029872131431974676 0.002642518820558798 0.0032034622121835505 0.003246492388139698 0.003193357697207529 0.003115567046280261 C 0.0032034622121835505 0.003246492388139698 0.0030810910098839172 0.004258539496418487 0.0030897269089088103 0.004170618538715546" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0030897269089088103 0.004170618538715546 C 0.0028968929644083955 0.003930646452487419 0.0003599053970580541 0.0006463422991266106 0.0007757195749038333 0.0012909535039780243 C 0.0003599053970580541 0.0006463422991266106 -0.0021230234585859044 -0.003969355038124706 -0.0019000432252405401 -0.003564715919501419" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0019000432252405401 -0.003564715919501419 C -0.0016699662609603204 -0.003206923528000909 0.0012665900089918536 0.0012424786414966767 0.0008608803461220961 0.0007287927785047 C 0.0012665900089918536 0.0012424786414966767 0.0031441054277860894 0.0027554079078937685 0.0029684727291965514 0.0025995144364023017" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27955987908940055,0.09394930046672598) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0033997043471189884 0.0025995144364023017 C 0.0035753370457085295 0.002443620964910835 0.005913006393063244 0.0002151069155127232 0.005507296730193479 0.0007287927785047 C 0.005913006393063244 0.0002151069155127232 0.008498297265836393 -0.003922508311001929 0.008268220301556169 -0.003564715919501419" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008268220301556169 -0.003564715919501419 C 0.0080452400682108 -0.003160076800878132 0.005176643323565958 0.0019355647088294381 0.005592457501411744 0.0012909535039780243 C 0.005176643323565958 0.0019355647088294381 0.003085616222906316 0.004410590624943673 0.0032784501674067335 0.004170618538715546" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032784501674067335 0.004170618538715546 C 0.003269814268381843 0.004082697581012606 0.003184923894084072 0.002984641704420824 0.0031748193791080507 0.003115567046280261 C 0.003184923894084072 0.002984641704420824 0.0034184447611199 0.0025565100522458046 0.0033997043471189884 0.0025995144364023013" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節8">
<g transform="translate(0.2780025635192015,0.09254949368794209) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0037551030921070877 0.004646824706370273 C 0.0037734024444028708 0.00457853059385681 0.004042989432169946 0.003709006483477573 0.003974695319656482 0.0038272953562087167 C 0.004042989432169946 0.003709006483477573 0.004692921314999792 0.0031590641210830855 0.004574632442268648 0.003227358233596549 C 0.004692921314999792 0.0031590641210830855 0.0055307500174571365 0.003007766006047156 0.00539416179243021 0.003007766006047156 C 0.0055307500174571365 0.003007766006047156 0.006331980015322912 0.0032956523461100122 0.006213691142591769 0.003227358233596549 C 0.006331980015322912 0.0032956523461100122 0.0068819223777173985 0.00394558422893986 0.006813628265203936 0.0038272953562087167 C 0.0068819223777173985 0.00394558422893986 0.00705151984504911 0.004715118818883739 0.0070332204927533275 0.004646824706370276" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0070332204927533275 0.004646824706370276 C 0.007062572251833308 0.004683049159503084 0.007414026812407876 0.005183702083502165 0.007385441601713095 0.005081518143963969 C 0.007414026812407876 0.005183702083502165 0.007355142084933649 0.006001563626974439 0.007376243021090702 0.005873031980828633 C 0.007355142084933649 0.006001563626974439 0.0070770436723613375 0.006743350031482901 0.007132230367828457 0.00662389789771365 C 0.0070770436723613375 0.006743350031482901 0.006679150367790001 0.007363337560088477 0.006714002675485267 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006714002675485267 0.007306457586059644 C 0.006681788305105301 0.007384229955934267 0.006217443490671092 0.008349712764809707 0.00632743023092568 0.00823972602455512 C 0.006217443490671092 0.008349712764809707 0.005238617052680963 0.008626298469114705 0.005394161792430209 0.008626298469114705 C 0.005238617052680963 0.008626298469114705 0.004350906613680145 0.008129739284300531 0.004460893353934733 0.00823972602455512 C 0.004350906613680145 0.008129739284300531 0.004042106538995183 0.007228685216185022 0.004074320909375148 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004074320909375148 0.007306457586059644 C 0.004039468601679882 0.0072495776120308116 0.0036009065215648374 0.006504445763944399 0.0036560932170319575 0.00662389789771365 C 0.0036009065215648374 0.006504445763944399 0.003390979627612656 0.0057445003346828245 0.0034120805637697094 0.005873031980828631 C 0.003390979627612656 0.0057445003346828245 0.0034314671938420974 0.004979334204425773 0.003402881983147316 0.005081518143963969 C 0.0034314671938420974 0.004979334204425773 0.0037844548511870688 0.004610600253237469 0.0037551030921070877 0.004646824706370276" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2765231137275124,0.0912196772480974) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0029792535196446162 0.002628743141490077 C 0.0029970569129454854 0.0026695973064387486 0.003202493528482264 0.0032433721956406036 0.0031928942392550437 0.0031189931208741384 C 0.003202493528482264 0.0032433721956406036 0.0030862408862976113 0.004204816948505451 0.00309444499037126 0.0041212920386876585" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00309444499037126 0.0041212920386876585 C 0.0029112527430958657 0.003893318556770938 0.0005011145541130425 0.000773229611078173 0.0008961380230665327 0.001385610255687016 C 0.0005011145541130425 0.000773229611078173 -0.001857667858748718 -0.00361168285931058 -0.0016458366370706219 -0.0032272756966184573" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0016458366370706219 -0.0032272756966184573 C -0.0014272635210044132 -0.002887372924692973 0.0013624649354501517 0.0013395591363297341 0.000977040755723882 0.0008515575664873561 C 0.0013624649354501517 0.0013395591363297341 0.003146104583304676 0.0027768419394069706 0.002979253519644615 0.0026287431414900773" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2794820133108906,0.0912196772480974) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0033889235566709293 0.0026287431414900773 C 0.003555774620330993 0.002480644343573184 0.005776560500317972 0.0003635559966449782 0.005391136320591695 0.0008515575664873561 C 0.005776560500317972 0.0003635559966449782 0.008232586829452467 -0.0035671784685439418 0.008014013713386253 -0.0032272756966184573" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008014013713386253 -0.0032272756966184573 C 0.007802182491708153 -0.0028428685339263347 0.005077015584295551 0.001997990900295859 0.005472039053249048 0.001385610255687016 C 0.005077015584295551 0.001997990900295859 0.0030905398386688915 0.004349265520604379 0.0032737320859442883 0.0041212920386876585" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032737320859442883 0.0041212920386876585 C 0.0032655279818706424 0.0040377671288698656 0.003184882126287759 0.0029946140461076733 0.0031752828370605387 0.0031189931208741384 C 0.003184882126287759 0.0029946140461076733 0.0034067269499717953 0.002587888976541405 0.0033889235566709293 0.002628743141490077" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節9">
<g transform="translate(0.2780025635192015,0.08988986080825272) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.003837056027123243 0.004779806350354742 C 0.0038544404118042368 0.004714926943466952 0.004110548050182958 0.003888879038606674 0.004045668643295168 0.00400125346770126 C 0.004110548050182958 0.003888879038606674 0.004727983338871313 0.003366433794331914 0.0046156089097767255 0.003431313201219704 C 0.004727983338871313 0.003366433794331914 0.00552392060620579 0.0032227005850477795 0.00539416179243021 0.0032227005850477795 C 0.00552392060620579 0.0032227005850477795 0.006285089104178277 0.0034961926081074944 0.0061727146750836905 0.003431313201219704 C 0.006285089104178277 0.0034961926081074944 0.006807534348453038 0.004113627896795847 0.0067426549415652475 0.00400125346770126 C 0.006807534348453038 0.004113627896795847 0.006968651942418164 0.004844685757242535 0.00695126755773717 0.0047798063503547445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00695126755773717 0.0047798063503547445 C 0.0069791517288631515 0.004814219580830912 0.007313033561408991 0.00528983985863004 0.0072858776112489495 0.005192765116068753 C 0.007313033561408991 0.00528983985863004 0.007257093070308475 0.0060668083249286985 0.007277138959657676 0.005944703261090182 C 0.007257093070308475 0.0060668083249286985 0.00699289957836478 0.006771505409211735 0.007045326939058544 0.006658025882130947 C 0.00699289957836478 0.006771505409211735 0.006614900939022011 0.007360493561387036 0.006648010631332513 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006648010631332513 0.007306457586059644 C 0.0066174069794715466 0.007380341337440536 0.006176279405759048 0.008297550005872205 0.006280766809000906 0.008193062602630346 C 0.006176279405759048 0.008297550005872205 0.005246394289668425 0.008560306424961953 0.005394161792430209 0.008560306424961953 C 0.005246394289668425 0.008560306424961953 0.004403069372617648 0.008088575199388487 0.004507556775859506 0.008193062602630346 C 0.004403069372617648 0.008088575199388487 0.004109709301666934 0.007232573834678752 0.004140312953527901 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004140312953527901 0.007306457586059644 C 0.004107203261217398 0.007252421610732252 0.003690569285108104 0.006544546355050159 0.003742996645801868 0.006658025882130947 C 0.003690569285108104 0.006544546355050159 0.003491138735853535 0.005822598197251665 0.0035111846252027356 0.005944703261090181 C 0.003491138735853535 0.005822598197251665 0.0035296019237715036 0.005095690373507466 0.0035024459736114613 0.005192765116068753 C 0.0035296019237715036 0.005095690373507466 0.003864940198249225 0.004745393119878577 0.003837056027123243 0.0047798063503547445" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2765970862170969,0.08862653519040026) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.002989495270570276 0.002656510411323464 C 0.0030064084942061013 0.002695321868024702 0.003201573278966042 0.003240408012766463 0.003192453954200183 0.003122247891738321 C 0.003201573278966042 0.003240408012766463 0.0030911332688906214 0.004153780527988071 0.0030989271677605876 0.004074431863661167" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0030989271677605876 0.004074431863661167 C 0.0029248945328489632 0.0038578570558402826 0.0006352632533152811 0.0008937725574321545 0.0010105355488210968 0.0014755341698105553 C 0.0006352632533152811 0.0008937725574321545 -0.0016055800389033908 -0.0032718942894371596 -0.0014043403783091995 -0.002906707484879643" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0014043403783091995 -0.002906707484879643 C -0.0011966959180463013 -0.002583799851550433 0.0014535461155855344 0.001431785606421138 0.0010873931448455783 0.000968184115070879 C 0.0014535461155855344 0.001431785606421138 0.0031480037810473326 0.0027972042693445148 0.0029894952705702745 0.0026565104113234657" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27940804082130616,0.08862653519040026) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0033786818057452745 0.0026565104113234657 C 0.003537190316222335 0.0025158165533024166 0.005646936902209966 0.00050458262372062 0.005280783931470003 0.000968184115070879 C 0.005646936902209966 0.00050458262372062 0.007980161914887731 -0.003229615118208853 0.00777251745462483 -0.002906707484879643" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00777251745462483 -0.002906707484879643 C 0.007571277794030634 -0.0025415206803221266 0.004982369231988663 0.002057295782188956 0.005357641527494485 0.0014755341698105553 C 0.004982369231988663 0.002057295782188956 0.0030952172736433375 0.004291006671482051 0.0032692499085549644 0.004074431863661167" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032692499085549644 0.004074431863661167 C 0.003261456009685001 0.003995083199334263 0.003184842446881262 0.003004087770710179 0.0031757231221154025 0.003122247891738321 C 0.003184842446881262 0.003004087770710179 0.003395595029381097 0.002617698954622226 0.0033786818057452745 0.002656510411323464" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節10">
<g transform="translate(0.2780025635192015,0.08736320957254781) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0039149113153885895 0.004906138912139987 C 0.003931426480835534 0.004844503475596586 0.004174728737295321 0.004059757965979323 0.00411309330075192 0.0041665136736191806 C 0.004174728737295321 0.004059757965979323 0.0047612922615492565 0.0035634349839183026 0.004654536553909399 0.003625070420461703 C 0.0047612922615492565 0.0035634349839183026 0.005517432665517011 0.0034268884350983743 0.00539416179243021 0.0034268884350983743 C 0.005517432665517011 0.0034268884350983743 0.0062405427385908725 0.0036867058570051034 0.006133787030951015 0.003625070420461703 C 0.0062405427385908725 0.0036867058570051034 0.006736865720651896 0.004273269381259038 0.006675230284108495 0.0041665136736191806 C 0.006736865720651896 0.004273269381259038 0.006889927434918765 0.004967774348683391 0.006873412269471821 0.00490613891213999" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006873412269471821 0.00490613891213999 C 0.006899902232041504 0.004938831481092349 0.007217089972960053 0.005390670745001519 0.007191291820308013 0.005298449739568297 C 0.007217089972960053 0.005390670745001519 0.007163946506414561 0.006128790787985247 0.007182990101296302 0.006012790977338656 C 0.007163946506414561 0.006128790787985247 0.006912962689068051 0.006798253018054132 0.006962768681727126 0.006690447467327383 C 0.006912962689068051 0.006798253018054132 0.006553863981692422 0.007357791762620666 0.006585318189387399 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006585318189387399 0.007306457586059644 C 0.00655624472011948 0.007376647149871491 0.006137173525092605 0.008247995384881577 0.006236436558172371 0.00814873235180181 C 0.006137173525092605 0.008247995384881577 0.005253782664806515 0.008497613983016837 0.005394161792430209 0.008497613983016837 C 0.005253782664806515 0.008497613983016837 0.004452623993608276 0.008049469318722044 0.004551887026688042 0.00814873235180181 C 0.004452623993608276 0.008049469318722044 0.004173931926205096 0.007236268022247797 0.004203005395473015 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004203005395473015 0.007306457586059644 C 0.004171551187778037 0.007255123409498622 0.0037757489104742106 0.006582641916600634 0.003825554903133286 0.006690447467327383 C 0.0037757489104742106 0.006582641916600634 0.0035862898886823676 0.005896791166692063 0.0036053334835641085 0.006012790977338653 C 0.0035862898886823676 0.005896791166692063 0.0036228299172044367 0.005206228734135075 0.0035970317645523968 0.005298449739568297 C 0.0036228299172044367 0.005206228734135075 0.0039414012779582725 0.004873446343187631 0.0039149113153885895 0.00490613891213999" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2766673600822021,0.08616305023558798) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0029992249339496533 0.002682889317665182 C 0.0030152924964036874 0.0027197602015313583 0.003200699041925631 0.0032375920390360327 0.0031920356833980645 0.003125339924059298 C 0.003200699041925631 0.0032375920390360327 0.003095781032353981 0.004105295928496557 0.0031031852362804493 0.004029914697385999" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031031852362804493 0.004029914697385999 C 0.0029378542331144064 0.0038241686299561586 0.0007627045175574081 0.0010082883564684387 0.001119213198287933 0.0015609618882279194 C 0.0007627045175574081 0.0010082883564684387 -0.00136609661005033 -0.00294909514805741 -0.0011749189324858481 -0.0026021676837277696" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0011749189324858481 -0.0026021676837277696 C -0.000977656695236095 -0.00229540543206502 0.001540073236714149 0.0015194007530079728 0.0011922279145111906 0.0010789793362252268 C 0.001540073236714149 0.0015194007530079728 0.0031498080189028567 0.002816548482785179 0.0029992249339496515 0.0026828893176651827" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27933776695620094,0.08616305023558798) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0033689521423659018 0.0026828893176651827 C 0.003519535227319109 0.0025492301525451865 0.005523794484007355 0.0006385579194424808 0.005175949161804391 0.0010789793362252268 C 0.005523794484007355 0.0006385579194424808 0.007740358246051234 -0.002908929935390519 0.007543096008801477 -0.0026021676837277696" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007543096008801477 -0.0026021676837277696 C 0.007351918331236992 -0.002255240219398129 0.004892455197297119 0.0021136354199874 0.00524896387802765 0.0015609618882279194 C 0.004892455197297119 0.0021136354199874 0.003099660836869061 0.004235660764815839 0.0032649918400351067 0.004029914697385999" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032649918400351067 0.004029914697385999 C 0.003257587636108641 0.003954533466275441 0.0031848047514450887 0.003013087809082563 0.0031761413929175227 0.003125339924059298 C 0.0031848047514450887 0.003013087809082563 0.0033850197048199333 0.0026460184337990054 0.0033689521423659018 0.002682889317665182" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節11">
<g transform="translate(0.2780025635192015,0.08496289089862816) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.00398887383924067 0.00502615484583597 C 0.004004563246415268 0.00496760118111974 0.004235700390052064 0.00422209294698334 0.004177146725335834 0.004323510869241204 C 0.004235700390052064 0.00422209294698334 0.004792935738093303 0.0037505861140253696 0.004691517815835438 0.0038091397787416003 C 0.004792935738093303 0.0037505861140253696 0.005511269121862671 0.003620866892646437 0.00539416179243021 0.003620866892646437 C 0.005511269121862671 0.003620866892646437 0.00619822369128284 0.003867693443457831 0.006096805769024976 0.0038091397787416003 C 0.00619822369128284 0.003867693443457831 0.006669730524240811 0.004424928791499068 0.006611176859524581 0.004323510869241204 C 0.006669730524240811 0.004424928791499068 0.006815139152794337 0.005084708510552204 0.00679944974561974 0.005026154845835973" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00679944974561974 0.005026154845835973 C 0.006824615210060939 0.005057212786340714 0.00712594356393356 0.005486460087054426 0.007101435318914121 0.005398850131892865 C 0.00712594356393356 0.005486460087054426 0.007075457270715342 0.006187674127888967 0.007093548685852996 0.006077474307774706 C 0.007075457270715342 0.006187674127888967 0.006837022644236157 0.006823663246454406 0.006884338337262279 0.006721247973263995 C 0.006837022644236157 0.006823663246454406 0.006495878872229309 0.007355225053792614 0.006525760369539537 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006525760369539537 0.007306457586059644 C 0.006498140573735014 0.0073731376716808985 0.006100022938459484 0.008200918494940479 0.006194322819885261 0.008106618613514702 C 0.006100022938459484 0.008200918494940479 0.005260801621187699 0.008438056163168976 0.005394161792430209 0.008438056163168976 C 0.005260801621187699 0.008438056163168976 0.004499700883549371 0.008012318732088925 0.004594000764975149 0.008106618613514702 C 0.004499700883549371 0.008012318732088925 0.004234943419516352 0.00723977750043839 0.0042625632153208744 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0042625632153208744 0.007306457586059644 C 0.004232681718010646 0.007257690118326674 0.00385666955457201 0.006618832700073583 0.0039039852475981317 0.006721247973263995 C 0.00385666955457201 0.006618832700073583 0.0036766834838697594 0.005967274487660445 0.0036947748990074133 0.006077474307774705 C 0.0036766834838697594 0.005967274487660445 0.003711396510965725 0.005311240176731304 0.003686888265946287 0.005398850131892865 C 0.003711396510965725 0.005311240176731304 0.004014039303681869 0.004995096905331232 0.00398887383924067 0.005026154845835973" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2767341202540521,0.08382273952851632) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003008468114160061 0.002707949278689815 C 0.0030237322984913934 0.0027429766183626825 0.00319986851673724 0.0032349168639921213 0.003191638326136052 0.0031282773547642233 C 0.00319986851673724 0.0032349168639921213 0.003100196407644173 0.004059235558979622 0.003107230401374318 0.003987623389424591" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003107230401374318 0.003987623389424591 C 0.002950165948366577 0.0037921646253662425 0.0008837737185874287 0.001117078365552908 0.0012224569652814273 0.0016421182207244146 C 0.0008837737185874287 0.001117078365552908 -0.0011385873526399226 -0.0026424359637466487 -0.0009569685589536649 -0.00231285487263349" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0009569685589536649 -0.00231285487263349 C -0.0007695694335663993 -0.0020214307335538776 0.0016222740017863332 0.001602635142265465 0.0012918209456935228 0.0011842347963218563 C 0.0016222740017863332 0.001602635142265465 0.003151522044865605 0.0028349254855538114 0.00300846811416006 0.002707949278689815" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27927100678435096,0.08382273952851632) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003359708962155497 0.002707949278689815 C 0.003502762892861044 0.0025809730718258186 0.005406809186714878 0.0007658344503782475 0.0050763561306220615 0.0011842347963218563 C 0.005406809186714878 0.0007658344503782475 0.007512544760656563 -0.002604279011713102 0.007325145635269294 -0.00231285487263349" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007325145635269294 -0.00231285487263349 C 0.007143526841583032 -0.001983273781520331 0.004807036864340155 0.0021671580758959213 0.005145720111034159 0.0016421182207244146 C 0.004807036864340155 0.0021671580758959213 0.0031038822219335003 0.0041830821534829385 0.0032609466749412433 0.003987623389424591" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032609466749412433 0.003987623389424591 C 0.0032539126812111013 0.00391601121986956 0.0031847689407807256 0.003021637845536325 0.003176538750179538 0.0031282773547642233 C 0.0031847689407807256 0.003021637845536325 0.003374973146486827 0.0026729219390169475 0.003359708962155497 0.002707949278689815" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節12">
<g transform="translate(0.2780025635192015,0.08268258815840449) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.004059138236900147 0.005140169982847153 C 0.004074043173716015 0.005084544001366734 0.004293623460170972 0.004376311178937155 0.004237997478690553 0.004472658205082126 C 0.004293623460170972 0.004376311178937155 0.004822997040810149 0.003928379687627083 0.004726650014665178 0.003984005669107502 C 0.004822997040810149 0.003928379687627083 0.005505413755391048 0.003805146427317098 0.00539416179243021 0.003805146427317098 C 0.005505413755391048 0.003805146427317098 0.0061580205963402065 0.0040396316505879205 0.006061673570195236 0.003984005669107502 C 0.0061580205963402065 0.0040396316505879205 0.006605952087650281 0.0045690052312270975 0.006550326106169862 0.004472658205082126 C 0.006605952087650281 0.0045690052312270975 0.006744090284776131 0.005195795964327577 0.006729185347960264 0.005140169982847157" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006729185347960264 0.005140169982847157 C 0.006753092539179403 0.005169675026326661 0.007039354475358393 0.005577459962004687 0.007016071642589926 0.005494230504601204 C 0.007039354475358393 0.005577459962004687 0.006991392496801086 0.0062436133007975 0.007008579341181857 0.006138923471688952 C 0.006991392496801086 0.0062436133007975 0.0067648796016458596 0.006847802963434669 0.006809829510020675 0.006750508453903778 C 0.0067648796016458596 0.006847802963434669 0.006440793018239354 0.007352786680405966 0.0064691804406840706 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0064691804406840706 0.007306457586059644 C 0.006442941634669774 0.007369803667399836 0.006064729881158019 0.008156195449496436 0.006154314768512508 0.008066610562141948 C 0.006064729881158019 0.008156195449496436 0.005267469629749825 0.008381476234313507 0.005394161792430209 0.008381476234313507 C 0.005267469629749825 0.008381476234313507 0.004544423928993412 0.007977025674787459 0.004634008816347901 0.008066610562141948 C 0.004544423928993412 0.007977025674787459 0.004292904338162044 0.007243111504719452 0.00431914314417634 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00431914314417634 0.007306457586059644 C 0.0042907557217316235 0.007260128491713322 0.00393354416646492 0.006653213944372887 0.003978494074839735 0.006750508453903778 C 0.00393354416646492 0.006653213944372887 0.003762557399297782 0.006034233642580402 0.003779744243678553 0.00613892347168895 C 0.003762557399297782 0.006034233642580402 0.003795534775038949 0.005411001047197721 0.003772251942270483 0.005494230504601204 C 0.003795534775038949 0.005411001047197721 0.004083045428119286 0.005110664939367653 0.004059138236900147 0.005140169982847157" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27679754241730953,0.08159944435679824) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0030172491353599494 0.0027317562416632143 C 0.0030317501104747155 0.0027650322143524383 0.003199079517808269 0.003232375447700406 0.0031912608367371405 0.003131067913933903 C 0.003199079517808269 0.003232375447700406 0.003104391014169855 0.00401547820793853 0.0031110733082134923 0.0039474466468612515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031110733082134923 0.0039474466468612515 C 0.0029618620778561386 0.003761760821005821 0.0009987894595659486 0.001220428874183154 0.001320538543925247 0.0017192167365960853 C 0.0009987894595659486 0.001220428874183154 -0.0009224535581000352 -0.0023511097386514253 -0.0007499157040980905 -0.0020380077020939243" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0007499157040980905 -0.0020380077020939243 C -0.0005718865349801883 -0.0017611547699682927 0.0017003647286049062 0.0016817078120600838 0.0013864343253167364 0.0012842274834136557 C 0.0017003647286049062 0.0016817078120600838 0.0031531503695302163 0.002852383638184011 0.0030172491353599486 0.0027317562416632143" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27920758462109346,0.08159944435679824) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0033509279409556125 0.0027317562416632143 C 0.0034868291751258824 0.0026111288451424177 0.005295673154287025 0.0008867471547672275 0.004981742750998849 0.0012842274834136557 C 0.005295673154287025 0.0008867471547672275 0.007296121949531625 -0.002314860634219556 0.007118092780413719 -0.0020380077020939243" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007118092780413719 -0.0020380077020939243 C 0.0069455549264117716 -0.0017249056655364236 0.004725889448031038 0.002218004599009017 0.005047638532390342 0.0017192167365960853 C 0.004725889448031038 0.002218004599009017 0.003107892537744716 0.004133132472716682 0.003257103768102072 0.0039474466468612515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003257103768102072 0.0039474466468612515 C 0.003250421474058437 0.0038794150857839726 0.00318473492064958 0.0030297603801674 0.0031769162395784514 0.003131067913933903 C 0.00318473492064958 0.0030297603801674 0.003365428916070376 0.0026984802689739903 0.0033509279409556125 0.0027317562416632143" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節13">
<g transform="translate(0.2780025635192015,0.08051630055519199) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0041258894146766496 0.005248484363007779 C 0.004140049104651723 0.005195639680601381 0.004348650376783931 0.00452281849929328 0.004295805694377533 0.004614348174131003 C 0.004348650376783931 0.00452281849929328 0.004851555278391151 0.004097283582548709 0.004760025603553428 0.004150128264955108 C 0.004851555278391151 0.004097283582548709 0.005499851157243006 0.003980211985254224 0.00539416179243021 0.003980211985254224 C 0.005499851157243006 0.003980211985254224 0.006119827656144708 0.004202972947361506 0.0060282979813069855 0.004150128264955108 C 0.006119827656144708 0.004202972947361506 0.006545362572889276 0.004705877848968726 0.006492517890482878 0.004614348174131003 C 0.006545362572889276 0.004705877848968726 0.006676593860158834 0.005301329045414181 0.00666243417018376 0.005248484363007782" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00666243417018376 0.005248484363007782 C 0.006685146001841942 0.005276514154313311 0.006957094841211982 0.005663909843207434 0.006934976150081939 0.005584841858674126 C 0.006957094841211982 0.005663909843207434 0.006911530961582541 0.006296755515060606 0.006927858463744273 0.006197300177407486 C 0.006911530961582541 0.006296755515060606 0.0066963437111850765 0.006870735694565918 0.006739046124141152 0.006778305910511572 C 0.0066963437111850765 0.006870735694565918 0.006388461456948896 0.0073504702256886505 0.0064154295082713775 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0064154295082713775 0.007306457586059644 C 0.006390502642557795 0.007366636363332827 0.006031201476721629 0.008113708556324598 0.006116307119708393 0.008028602913337833 C 0.006031201476721629 0.008113708556324598 0.0052738042378838446 0.008327725301900814 0.005394161792430209 0.008327725301900814 C 0.0052738042378838446 0.008327725301900814 0.004586910822165251 0.007943497270351069 0.004672016465152016 0.008028602913337833 C 0.004586910822165251 0.007943497270351069 0.004347967210875451 0.0072462788087864615 0.004372894076589033 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004372894076589033 0.007306457586059644 C 0.004345926025266552 0.007262444946430638 0.004006575047763182 0.006685876126457225 0.0040492774607192574 0.006778305910511572 C 0.004006575047763182 0.006685876126457225 0.0038441376189544034 0.006097844839754364 0.0038604651211161358 0.006197300177407485 C 0.0038441376189544034 0.006097844839754364 0.0038754661259085103 0.005505773874140817 0.0038533474347784676 0.005584841858674126 C 0.0038754661259085103 0.005505773874140817 0.004148601246334831 0.0052204545717022535 0.0041258894146766496 0.005248484363007782" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27685779347240413,0.07948731394366605) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003025591105499842 0.002754372856487946 C 0.00303936703185887 0.0027859850305427085 0.0031983299688257464 0.003229961102223277 0.003190902221808174 0.0031337189451450995 C 0.0031983299688257464 0.003229961102223277 0.003108375890369253 0.003973908724449494 0.0031147240697107087 0.003909278741426079" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031147240697107087 0.003909278741426079 C 0.002972973400871223 0.00373287720686342 0.0011080544134955419 0.0013186118573818874 0.0014137160436368756 0.0017924603266741721 C 0.0011080544134955419 0.0013186118573818874 -0.0007171264532871424 -0.002074349824810963 -0.0005532154919852949 -0.001776902890081337" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0005532154919852949 -0.001776902890081337 C -0.0003840877813232877 -0.001513892604561987 0.0017745509190825526 0.00175682684836497 0.0014763170359587913 0.001379220536150863 C 0.0017745509190825526 0.00175682684836497 0.003154697277961595 0.0028689688831827027 0.003025591105499841 0.002754372856487946" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27914733356599886,0.07948731394366605) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0033425859708157237 0.002754372856487946 C 0.00347169214327748 0.002639776829793189 0.005190093923480564 0.0010016142239367561 0.004891860040356797 0.001379220536150863 C 0.005190093923480564 0.0010016142239367561 0.0070905202789629355 -0.002039913175600687 0.006921392568300925 -0.001776902890081337" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006921392568300925 -0.001776902890081337 C 0.006757481606999074 -0.0014794559553517113 0.004648799402537377 0.0022663087959664567 0.004954461032678716 0.0017924603266741721 C 0.004648799402537377 0.0022663087959664567 0.0031117023377653704 0.0040856802759887375 0.0032534530066048585 0.003909278741426079" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032534530066048585 0.003909278741426079 C 0.003247104827263405 0.003844648758402664 0.0031847026015249915 0.003037476788066922 0.0031772748545074196 0.0031337189451450995 C 0.0031847026015249915 0.003037476788066922 0.003356361897174749 0.002722760682433183 0.0033425859708157237 0.002754372856487946" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節14">
<g transform="translate(0.2780025635192015,0.07845832733214013) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.004189303033564325 0.005351383024160372 C 0.004202754739040645 0.0053011805758742935 0.004400925947566244 0.004662000453631599 0.004350723499280166 0.004748953644727435 C 0.004400925947566244 0.004662000453631599 0.004878685604093104 0.004257742282724257 0.004791732412997267 0.004307944731010336 C 0.004878685604093104 0.004257742282724257 0.005494566689002367 0.004146524265294496 0.00539416179243021 0.004146524265294496 C 0.005494566689002367 0.004146524265294496 0.006083544362958981 0.004358147179296414 0.005996591171863145 0.004307944731010336 C 0.006083544362958981 0.004358147179296414 0.006487802533866322 0.004835906835823272 0.006437600085580243 0.004748953644727435 C 0.006487802533866322 0.004835906835823272 0.006612472256772401 0.005401585472446453 0.006599020551296081 0.005351383024160375" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006599020551296081 0.005351383024160375 C 0.006620596791371354 0.005378011325900627 0.0068789481887728925 0.005746037230350045 0.006857935432199352 0.005670922645043402 C 0.0068789481887728925 0.005746037230350045 0.006835662503124925 0.006347240618610559 0.00685117363017857 0.0062527580478400945 C 0.006835662503124925 0.006347240618610559 0.006631234615247334 0.006892521789140606 0.006671801907555604 0.0068047134942889765 C 0.006631234615247334 0.006892521789140606 0.006338746473722962 0.0073482695937072 0.006364366122479319 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006364366122479319 0.007306457586059644 C 0.006340685600051416 0.0073636274244691675 0.005999349492507057 0.008073346007811349 0.006080199853344483 0.007992495646973923 C 0.005999349492507057 0.008073346007811349 0.005279822115611162 0.008276661916108756 0.005394161792430209 0.008276661916108756 C 0.005279822115611162 0.008276661916108756 0.004627273370678498 0.007911645286136497 0.004708123731515924 0.007992495646973923 C 0.004627273370678498 0.007911645286136497 0.004400276939953189 0.007249287747650121 0.004423957462381092 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004423957462381092 0.007306457586059644 C 0.004398337813624735 0.007264645578412088 0.0040759543849965335 0.006716905199437347 0.004116521677304805 0.0068047134942889765 C 0.0040759543849965335 0.006716905199437347 0.003921638827628193 0.006158275477069626 0.003937149954681839 0.006252758047840091 C 0.003921638827628193 0.006158275477069626 0.003951400909234595 0.005595808059736759 0.003930388152661054 0.005670922645043402 C 0.003951400909234595 0.005595808059736759 0.004210879273639598 0.005324754722420122 0.004189303033564325 0.005351383024160375" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27691503197474404,0.07748079005119049) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0030335159771327416 0.0027758586405714387 C 0.0030466031071738177 0.0028058902059234633 0.00319761789729235 0.003227667474020004 0.0031905615376256564 0.003136237424795735 C 0.00319761789729235 0.003227667474020004 0.0031121615227586805 0.0039344177151349104 0.0031181922931330635 0.0038730192312626662" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031181922931330635 0.0038730192312626662 C 0.0029835291577355516 0.0037054377734281403 0.001211856119728655 0.001411885691420684 0.001502234668362922 0.0018620417372483544 C 0.001211856119728655 0.001411885691420684 -0.0005220657037148945 -0.001811427906662524 -0.0003663502904781393 -0.0015288533186693795" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0003663502904781393 -0.0015288533186693795 C -0.0002056789653492326 -0.001278993547425997 0.0018450278000363147 0.0018281899328546113 0.0015617056110687414 0.0014694639362512099 C 0.0018450278000363147 0.0018281899328546113 0.0031561668409714064 0.002884724865931458 0.00303351597713274 0.0027758586405714387" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.279090095063659,0.07748079005119049) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0033346610991828274 0.0027758586405714387 C 0.0034573119630214957 0.0026669924152114195 0.005089793654214428 0.0011107379396478084 0.004806471465246849 0.0014694639362512099 C 0.005089793654214428 0.0011107379396478084 0.006895198691922679 -0.0017787130899127618 0.006734527366793769 -0.0015288533186693795" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006734527366793769 -0.0015288533186693795 C 0.006578811953557011 -0.001246278730676235 0.004575563859318399 0.002312197783076025 0.004865942407952671 0.0018620417372483544 C 0.004575563859318399 0.002312197783076025 0.0031153216477849926 0.004040600689097193 0.0032499847831825063 0.0038730192312626662" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032499847831825063 0.0038730192312626662 C 0.003243954012808126 0.003811620747390422 0.003184671898356633 0.0030448073755714664 0.00317761553868994 0.003136237424795735 C 0.003184671898356633 0.0030448073755714664 0.0033477482292239014 0.002745827075219414 0.0033346610991828274 0.0027758586405714387" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節15">
<g transform="translate(0.2780025635192015,0.07650325277024085) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0042495459715076195 0.0054491367522553355 C 0.004262325091710124 0.005401444426383561 0.004450587739809441 0.004794223310253 0.004402895413937667 0.004876828841794045 C 0.004450587739809441 0.004794223310253 0.004904459413509959 0.004410178047891025 0.004821853881968914 0.004457870373762799 C 0.004904459413509959 0.004410178047891025 0.005489546444173758 0.004304520931332751 0.00539416179243021 0.004304520931332751 C 0.005489546444173758 0.004304520931332751 0.006049075234432543 0.004505562699634574 0.005966469702891499 0.004457870373762799 C 0.006049075234432543 0.004505562699634574 0.006433120496794516 0.00495943437333509 0.0063854281709227415 0.004876828841794045 C 0.006433120496794516 0.00495943437333509 0.00655155673355529 0.0054968290781271115 0.006538777613352787 0.005449136752255337" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006538777613352787 0.005449136752255337 C 0.006559275041424296 0.005474433638908577 0.006804708868955757 0.005824058248135527 0.006784746750210893 0.005752699392094216 C 0.006804708868955757 0.005824058248135527 0.006763587467590187 0.006395201466983012 0.00677832303829115 0.006305443024751071 C 0.006763587467590187 0.006395201466983012 0.006569380974106476 0.006913218578986556 0.0066079199017993326 0.006829800698877508 C 0.006569380974106476 0.006913218578986556 0.0062915172396583235 0.007346178993324822 0.0063158559059768625 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0063158559059768625 0.007306457586059644 C 0.006293359409670355 0.007360768932548691 0.0059690901075032145 0.008035001586723763 0.006045897950298769 0.007958193743928208 C 0.0059690901075032145 0.008035001586723763 0.005285539099452115 0.008228151699606305 0.005394161792430209 0.008228151699606305 C 0.005285539099452115 0.008228151699606305 0.004665617791766083 0.007881385901132652 0.004742425634561638 0.007958193743928208 C 0.004665617791766083 0.007881385901132652 0.00444997118257704 0.007252146239570597 0.004472467678883547 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004472467678883547 0.007306457586059644 C 0.004448129012565008 0.007266736178794466 0.004141864755368216 0.006746382818768461 0.004180403683061074 0.006829800698877508 C 0.004141864755368216 0.006746382818768461 0.0039952649758682925 0.006215684582519129 0.0040100005465692565 0.00630544302475107 C 0.0039952649758682925 0.006215684582519129 0.004023538953394374 0.005681340536052904 0.00400357683464951 0.005752699392094216 C 0.004023538953394374 0.005681340536052904 0.004270043399579129 0.0054238398656020976 0.0042495459715076195 0.005449136752255337" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2769694085519669,0.07557459235333869) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0030410446051839946 0.0027962701354507583 C 0.003053477378723017 0.002824800122535182 0.0031969414293356226 0.0032254885272268944 0.0031902378876522636 0.003138629980463839 C 0.0031969414293356226 0.0032254885272268944 0.0031157578735286377 0.003896901256286055 0.003121487105384301 0.003838572696607423" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003121487105384301 0.003838572696607423 C 0.002993557126756665 0.0036793703116646233 0.0013104677406501138 0.00150049583375754 0.0015863273618526674 0.0019281440772938268 C 0.0013104677406501138 0.00150049583375754 -0.00033675799162125833 -0.001561652084421506 -0.000188828349046341 -0.001293206225828019" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.000188828349046341 -0.001293206225828019 C -3.6190590173879565E-05 -0.0010558394431468057 0.001911980836942391 0.0018959848631197717 0.0016428247574231964 0.0015551951663465402 C 0.001911980836942391 0.0018959848631197717 0.003157562925830727 0.0028996930495427766 0.0030410446051839938 0.0027962701354507583" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27903571848643616,0.07557459235333869) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003327132471131577 0.0027962701354507583 C 0.003443650791778312 0.00269284722135874 0.004994508398411597 0.0012144054695733086 0.004725352318892397 0.0015551951663465402 C 0.004994508398411597 0.0012144054695733086 0.006709643184234435 -0.001530573008509232 0.006557005425361971 -0.001293206225828019" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006557005425361971 -0.001293206225828019 C 0.006409075782787051 -0.0010247603672345318 0.004505990093260368 0.0023557923208301136 0.004781849714462926 0.0019281440772938268 C 0.004505990093260368 0.0023557923208301136 0.0031187599923036347 0.003997775081550223 0.0032466899709312725 0.003838572696607423" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032466899709312725 0.003838572696607423 C 0.003240960739075611 0.003780244136928791 0.003184642730346692 0.0030517714337007836 0.0031779391886633335 0.003138629980463839 C 0.003184642730346692 0.0030517714337007836 0.0033395652446705972 0.0027677401483663347 0.003327132471131577 0.0027962701354507583" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節16">
<g transform="translate(0.2780025635192015,0.07464593193643654) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0043067767625537485 0.005542002793945551 C 0.004318916926746127 0.005496695084367365 0.0044977664424404795 0.0049198350240433324 0.004452458732862294 0.004998310279007325 C 0.0044977664424404795 0.0049198350240433324 0.004928944532455972 0.004554992024799456 0.004850469277491979 0.0046002997343776416 C 0.004928944532455972 0.004554992024799456 0.005484777211586581 0.004454617764069098 0.00539416179243021 0.004454617764069098 C 0.005484777211586581 0.004454617764069098 0.006016329562332425 0.004645607443955827 0.005937854307368433 0.0046002997343776416 C 0.006016329562332425 0.004645607443955827 0.0063811725615763 0.005076785533971317 0.006335864851998115 0.004998310279007325 C 0.0063811725615763 0.005076785533971317 0.0064936869864990355 0.005587310503523739 0.006481546822306657 0.005542002793945553" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006481546822306657 0.005542002793945553 C 0.006501019378974591 0.005566034836266131 0.006734181515129479 0.005898178215031732 0.0067152175023218585 0.005830387301792486 C 0.006734181515129479 0.005898178215031732 0.006695116183832187 0.006440764272936845 0.006709114975998103 0.0063554937528165 C 0.006695116183832187 0.006440764272936845 0.00651062001502266 0.006932880529340211 0.006547231996330874 0.006853633543236616 C 0.00651062001502266 0.006932880529340211 0.006246649467296916 0.007344192922961563 0.006269771200299528 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006269771200299528 0.007306457586059644 C 0.006248399528808346 0.007358053365224239 0.005940343691749563 0.007998574386690554 0.00601331114240534 0.007925606936034777 C 0.005940343691749563 0.007998574386690554 0.00529097023410102 0.008182066993928969 0.005394161792430209 0.008182066993928969 C 0.00529097023410102 0.008182066993928969 0.00470204499179929 0.007852639485379 0.004775012442455068 0.007925606936034777 C 0.00470204499179929 0.007852639485379 0.004497180713069698 0.0072548618068950495 0.00451855238456088 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00451855238456088 0.007306457586059644 C 0.004495430651558267 0.007268722249157725 0.0042044796072213154 0.006774386557133021 0.0042410915885295304 0.006853633543236616 C 0.0042044796072213154 0.006774386557133021 0.004065209816696387 0.006270223232696154 0.0040792086088623026 0.006355493752816499 C 0.004065209816696387 0.006270223232696154 0.004092070095346164 0.005762596388553241 0.004073106082538544 0.005830387301792486 C 0.004092070095346164 0.005762596388553241 0.004326249319221682 0.0055179707516249754 0.0043067767625537485 0.005542002793945553" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27702106630032863,0.07376370454037949) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0030481968018326866 0.0028156610555861114 C 0.003060007936694758 0.0028427645433163136 0.0031962987847767325 0.003223418527773441 0.0031899304201775417 0.003140902908348538 C 0.0031962987847767325 0.003223418527773441 0.0031191744067600967 0.0038612606203796444 0.003124617177022977 0.0038058484886849438" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003124617177022977 0.0038058484886849438 C 0.0030030836973267225 0.003654606222989284 0.001404148780525499 0.0015846754689775539 0.001666215420667925 0.0019909413003370265 C 0.001404148780525499 0.0015846754689775539 -0.0001607156651323053 -0.0013243650532925402 -2.018250468613375E-05 -0.0010693414876287275" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -2.018250468613375E-05 -0.0010693414876287275 C 0.00012482336624270466 -0.0008438430440815748 0.001975586222003162 0.001960390046871674 0.0017198879464599272 0.001636639834937104 C 0.001975586222003162 0.001960390046871674 0.0031588892064470806 0.0029139128239735286 0.003048196801832684 0.0028156610555861114" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2789840607380744,0.07376370454037949) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0033199802744828897 0.0028156610555861114 C 0.003430672679097288 0.002717409287198694 0.004903987405398906 0.001312889623002534 0.004648289129855667 0.001636639834937104 C 0.004903987405398906 0.001312889623002534 0.006533365451930602 -0.00129483993117588 0.00638835958100176 -0.0010693414876287275" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00638835958100176 -0.0010693414876287275 C 0.006247826420555587 -0.0008143179219649146 0.004439895015505244 0.002397207131696499 0.004701961655647674 0.0019909413003370265 C 0.004439895015505244 0.002397207131696499 0.003122026419596343 0.003957090754380604 0.003243559899292599 0.0038058484886849438" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003243559899292599 0.0038058484886849438 C 0.0032381171290297205 0.003750436356990243 0.003184615020737248 0.003058387288923635 0.003178246656138057 0.003140902908348538 C 0.003184615020737248 0.003058387288923635 0.003331791409344959 0.002788557567855909 0.0033199802744828897 0.0028156610555861114" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節17">
<g transform="translate(0.2780025635192015,0.07288147714432244) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.00436114601404757 0.005630225533551254 C 0.00437267917003033 0.005587183209451978 0.004542586209939963 0.005039166152144149 0.004499543885840687 0.0051137176443599415 C 0.004542586209939963 0.005039166152144149 0.0049522053954546815 0.004692565302862468 0.004877653903238888 0.004735607626961744 C 0.0049522053954546815 0.004692565302862468 0.005480246440628763 0.004597209755168624 0.00539416179243021 0.004597209755168624 C 0.005480246440628763 0.004597209755168624 0.005985221173837315 0.00477864995106102 0.005910669681621523 0.004735607626961744 C 0.005985221173837315 0.00477864995106102 0.006331822023118993 0.005188269136575735 0.006288779699019717 0.0051137176443599415 C 0.006331822023118993 0.005188269136575735 0.006438710726795594 0.005673267857650535 0.006427177570812834 0.005630225533551259" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006427177570812834 0.005630225533551259 C 0.00644567649964737 0.0056530559737558075 0.006667180528994514 0.005968592183583126 0.0066491647168272746 0.005904190816005843 C 0.006667180528994514 0.005968592183583126 0.00663006846426209 0.006484048938592985 0.006643367316819709 0.0064030419444786576 C 0.00663006846426209 0.006484048938592985 0.0064547971038930365 0.006951559382176181 0.00648957848613584 0.0068762747453777655 C 0.0064547971038930365 0.006951559382176181 0.006204025083553581 0.007342306156116468 0.0062259907299060625 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0062259907299060625 0.007306457586059644 C 0.006205687641989439 0.007355473576266009 0.005913034596783594 0.007963968546659012 0.005982353674906582 0.007894649468536023 C 0.005913034596783594 0.007963968546659012 0.005296129812017479 0.008138286523535505 0.005394161792430209 0.008138286523535505 C 0.005296129812017479 0.008138286523535505 0.004736650831830835 0.007825330390413034 0.0048059699099538234 0.007894649468536023 C 0.004736650831830835 0.007825330390413034 0.004542029767037724 0.007257441595853279 0.004562332854954347 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004562332854954347 0.007306457586059644 C 0.004540367208601865 0.0072706090160028205 0.004263963716481758 0.006800990108579349 0.004298745098724563 0.0068762747453777655 C 0.004263963716481758 0.006800990108579349 0.004131657415483079 0.006322034950364326 0.004144956268040698 0.006403041944478653 C 0.004131657415483079 0.006322034950364326 0.004157174680200367 0.00583978944842856 0.004139158868033128 0.005904190816005843 C 0.004157174680200367 0.00583978944842856 0.004379644942882107 0.00560739509334671 0.00436114601404757 0.005630225533551259" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27707014116127227,0.07204336111806825) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003054991388648942 0.0028340824297146965 C 0.0030662119667679098 0.0028598307430583885 0.0031956882724457876 0.003221452028292659 0.0031896383260765562 0.0031430621898390016 C 0.0031956882724457876 0.003221452028292659 0.003122420113329983 0.0038274020162685518 0.0031275907450797192 0.0037747604911585863" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031275907450797192 0.0037747604911585863 C 0.0030121339393682778 0.0036310803387477096 0.0014931457684071144 0.0016646461224365681 0.001742109076542419 0.002050598662228067 C 0.0014931457684071144 0.0016646461224365681 6.524545032201521E-06 -0.001098942373720022 0.0001400310474560644 -0.0008566699863393998" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0001400310474560644 -0.0008566699863393998 C 0.00027778662483846084 -0.0006424464649696049 0.0020360113378108946 0.002021574971435981 0.0017930979760448214 0.0017140122700981396 C 0.0020360113378108946 0.002021574971435981 0.0031601491730326183 0.002927421609682743 0.0030549913886489415 0.0028340824297146965" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2789349858771308,0.07204336111806825) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0033131856876666356 0.0028340824297146965 C 0.003418343472050314 0.00274074324974665 0.004817992462036853 0.0014064495687602981 0.004575079100270776 0.0017140122700981396 C 0.004817992462036853 0.0014064495687602981 0.006365901606241966 -0.0010708935077091948 0.006228146028859566 -0.0008566699863393998" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006228146028859566 -0.0008566699863393998 C 0.006094639526435701 -0.0006143975989587776 0.004377104691637873 0.002436551202019566 0.004626067999773182 0.002050598662228067 C 0.004377104691637873 0.002436551202019566 0.0031251295255244156 0.003918440643569463 0.003240586331235859 0.0037747604911585863" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003240586331235859 0.0037747604911585863 C 0.0032354156994861246 0.003722118966048621 0.003184588696608276 0.003064672351385344 0.003178538750239045 0.0031430621898390016 C 0.003184588696608276 0.003064672351385344 0.0033244062657856017 0.0028083341163710044 0.0033131856876666356 0.0028340824297146965" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節18">
<g transform="translate(0.2780025635192015,0.07120524509181406) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.004412796802966703 0.005714037136176673 C 0.004423753301150324 0.005673146928282361 0.004585164989064476 0.005152530723839924 0.004544274781170163 0.005223354641444927 C 0.004585164989064476 0.005152530723839924 0.004974303215303458 0.004823259917022326 0.004903479297698454 0.004864150124916639 C 0.004974303215303458 0.004823259917022326 0.005475942208218835 0.004732672146713177 0.00539416179243021 0.004732672146713177 C 0.005475942208218835 0.004732672146713177 0.005955668204766956 0.004905040332810952 0.005884844287161953 0.004864150124916639 C 0.005955668204766956 0.004905040332810952 0.0062849390115845526 0.0052941785590499306 0.0062440488036902405 0.005223354641444927 C 0.0062849390115845526 0.0052941785590499306 0.006386483280077324 0.00575492734407099 0.006375526781893703 0.0057140371361766775" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006375526781893703 0.0057140371361766775 C 0.006393100764286513 0.005735726054370999 0.006603529592166298 0.006035485453706953 0.00658641457060742 0.005974304154508534 C 0.006603529592166298 0.006035485453706953 0.006568273130670493 0.006525169370966316 0.006580907040600232 0.0064482127265577055 C 0.006568273130670493 0.006525169370966316 0.006401765338319894 0.006969304292370355 0.006434807651450557 0.00689778388741186 C 0.006401765338319894 0.006969304292370355 0.006163531918997411 0.007340513727613626 0.006184399283032269 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006184399283032269 0.007306457586059644 C 0.006165111349511476 0.007353022776755691 0.005887090956565925 0.007931092998629041 0.005952944080782763 0.007865239874412204 C 0.005887090956565925 0.007931092998629041 0.005301031411038115 0.008096695076661706 0.005394161792430209 0.008096695076661706 C 0.005301031411038115 0.008096695076661706 0.004769526379860804 0.007799386750195365 0.004835379504077643 0.007865239874412204 C 0.004769526379860804 0.007799386750195365 0.004584636368307349 0.007259892395363597 0.00460392430182814 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00460392430182814 0.007306457586059644 C 0.0045830569377932825 0.007272401444505662 0.004320473620279181 0.006826263482453365 0.004353515933409846 0.00689778388741186 C 0.004320473620279181 0.006826263482453365 0.004194782634330433 0.0063712560821490944 0.004207416544260172 0.006448212726557705 C 0.004194782634330433 0.0063712560821490944 0.004219024035811858 0.005913122855310115 0.00420190901425298 0.005974304154508534 C 0.004219024035811858 0.005913122855310115 0.004430370785359513 0.005692348217982356 0.004412796802966703 0.0057140371361766775" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2771167622791687,0.07040903486687257) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0030614462461243863 0.0028515827351368516 C 0.0030721057953374056 0.002876043632813359 0.0031951082857313885 0.003219583853785917 0.003189360836680619 0.0031451135072549418 C 0.0031951082857313885 0.003219583853785917 0.0031255035345713737 0.0037952363423630164 0.0031304156347336234 0.003745226893508549" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031304156347336234 0.003745226893508549 C 0.0030207316693077538 0.0036087307487182164 0.0015776929068946498 0.0017406182432226306 0.0018142080496231891 0.0021072731560245546 C 0.0015776929068946498 0.0017406182432226306 0.00016540274468848195 -0.0008847908281261297 0.00029223392199115175 -0.0006546320601145386" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00029223392199115175 -0.0006546320601145386 C 0.0004231017205044284 -0.0004511197148132335 0.002093415197828241 0.0020797006497720724 0.0018626475041504716 0.0017875160835011234 C 0.002093415197828241 0.0020797006497720724 0.003161346141288877 0.002940254956106496 0.0030614462461243845 0.0028515827351368516" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2788883647592343,0.07040903486687257) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0033067308301911943 0.0028515827351368516 C 0.0034066307253556886 0.0027629105141672074 0.0047362972658429 0.0014953315172301742 0.004505529572165126 0.0017875160835011234 C 0.0047362972658429 0.0014953315172301742 0.006206810952837758 -0.0008581444054158437 0.006075943154324478 -0.0006546320601145386" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006075943154324478 -0.0006546320601145386 C 0.0059491119770218055 -0.0004244732921029475 0.004317453883963869 0.0024739280688264786 0.004553969026692412 0.0021072731560245546 C 0.004317453883963869 0.0024739280688264786 0.0031280774761560876 0.003881723038298882 0.0032377614415819585 0.003745226893508549" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032377614415819585 0.003745226893508549 C 0.0032328493414197105 0.003695217444654082 0.003184563688685754 0.0030706431607239668 0.0031788162396349843 0.0031451135072549418 C 0.003184563688685754 0.0030706431607239668 0.003317390379404212 0.0028271218374603443 0.0033067308301911943 0.0028515827351368516" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節19">
<g transform="translate(0.2780025635192015,0.06961282464193108) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.004461865052439878 0.005793658158670821 C 0.004472273725714318 0.005754812461171225 0.004625614829232762 0.005260227066950909 0.004586769131733165 0.005327509788675662 C 0.004625614829232762 0.005260227066950909 0.004995296144159795 0.004947419800474191 0.004928013422435041 0.004986265497973788 C 0.004995296144159795 0.004947419800474191 0.005471853187429403 0.004861361418680498 0.00539416179243021 0.004861361418680498 C 0.005471853187429403 0.004861361418680498 0.005927592884150119 0.005025111195473385 0.005860310162425367 0.004986265497973788 C 0.005927592884150119 0.005025111195473385 0.006240400150626836 0.005394792510400415 0.0062015544531272395 0.005327509788675662 C 0.006240400150626836 0.005394792510400415 0.006336867205694968 0.005832503856170421 0.006326458532420528 0.005793658158670824" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006326458532420528 0.005793658158670824 C 0.006343153815693697 0.005814262630955429 0.006543061202179493 0.006099034060324589 0.006526801931698559 0.0060409118260860905 C 0.006543061202179493 0.006099034060324589 0.006509567563758478 0.006564233781720983 0.00652156977819173 0.006491124969532803 C 0.006509567563758478 0.006564233781720983 0.0063513851610254085 0.006986161957054818 0.006382775358499539 0.0069182175723442475 C 0.0063513851610254085 0.006986161957054818 0.00612506341266905 0.007338810920535927 0.006144887408502164 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006144887408502164 0.007306457586059644 C 0.006126563871657412 0.007350694517220889 0.0058624444983591375 0.007899861228000574 0.005925004966365134 0.007837300759994578 C 0.0058624444983591375 0.007899861228000574 0.00530568793010772 0.008057183202131606 0.005394161792430209 0.008057183202131606 C 0.00530568793010772 0.008057183202131606 0.004800758150489272 0.007774740291988581 0.004863318618495269 0.007837300759994578 C 0.004800758150489272 0.007774740291988581 0.004625112639513489 0.007262220654898399 0.004643436176358241 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004643436176358241 0.007306457586059644 C 0.004623612180525126 0.007274104251583361 0.004374158028886733 0.006850273187633677 0.004405548226360864 0.0069182175723442475 C 0.004374158028886733 0.006850273187633677 0.004254751592235423 0.006418016157344622 0.004266753806668675 0.006491124969532802 C 0.004254751592235423 0.006418016157344622 0.004277780923642775 0.005982789591847592 0.004261521653161841 0.0060409118260860905 C 0.004277780923642775 0.005982789591847592 0.004478560335713047 0.005773053686386219 0.004461865052439878 0.005793658158670824" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2771610523411704,0.06885642492823667) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0030675783607260576 0.0028682080252879 C 0.0030777049324784258 0.002891445878080582 0.0031945572983527095 0.003217809088004513 0.003189097221754478 0.0031470622588000868 C 0.0031945572983527095 0.003217809088004513 0.0031284327847506963 0.0037646789521527555 0.0031330992799048336 0.0037171699757410116" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031330992799048336 0.0037171699757410116 C 0.0030288995127502574 0.0035874986381901953 0.0016580126884578074 0.0018127917579693889 0.0018827020740499198 0.0021611139251312165 C 0.0016580126884578074 0.0018127917579693889 0.00031633703436194914 -0.0006813468598119323 0.00043682665279948533 -0.00046269603020092083" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00043682665279948533 -0.00046269603020092083 C 0.0005611510613870981 -0.0002693593021646808 0.0021479488648447195 0.0021349200441913613 0.0019287195558508386 0.0018573447062339597 C 0.0021479488648447195 0.0021349200441913613 0.003162483261132325 0.0029524466352090616 0.003067578360726057 0.0028682080252879" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27884407469723266,0.06885642492823667) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0033005987155895256 0.0028682080252879 C 0.0033955036159957954 0.0027839694153667383 0.004658686829458646 0.0015797693682765579 0.0044394575204647615 0.0018573447062339597 C 0.004658686829458646 0.0015797693682765579 0.00605567483210376 -0.0006560327582371609 0.005931350423516144 -0.00046269603020092083" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005931350423516144 -0.00046269603020092083 C 0.0058108608050786055 -0.00024404520058990937 0.004260785616673566 0.002509436092293044 0.0044854750022656825 0.0021611139251312165 C 0.004260785616673566 0.002509436092293044 0.0031308780292561723 0.003846841313291828 0.00323507779641075 0.0037171699757410116" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00323507779641075 0.0037171699757410116 C 0.0032304113012566146 0.0036696609993292677 0.003184539931159357 0.0030763154295956607 0.003179079854561126 0.0031470622588000868 C 0.003184539931159357 0.0030763154295956607 0.003310725287341892 0.002844970172495218 0.0033005987155895256 0.0028682080252879" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節20">
<g transform="translate(0.2780025635192015,0.06810002521454225) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0045084798894393955 0.0058692981300402635 C 0.004518368129050114 0.005832394717415646 0.004664042177392634 0.005362538592906345 0.0046271387647680165 0.00542645717854486 C 0.004664042177392634 0.005362538592906345 0.005015239426573317 0.005065371689753463 0.0049513208409348005 0.00510227510237808 C 0.005015239426573317 0.005065371689753463 0.005467968617679443 0.004983616227049456 0.00539416179243021 0.004983616227049456 C 0.005467968617679443 0.004983616227049456 0.0059009213295641225 0.005139178515002697 0.005837002743925608 0.00510227510237808 C 0.0059009213295641225 0.005139178515002697 0.006198088232717004 0.005490375764183376 0.0061611848200923865 0.00542645717854486 C 0.006198088232717004 0.005490375764183376 0.006289731935031731 0.005906201542664883 0.006279843695421012 0.005869298130040266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006279843695421012 0.005869298130040266 C 0.006295704214530523 0.005888872378710641 0.006485616231692028 0.00615940523661134 0.006470169924735141 0.006104189114084766 C 0.006485616231692028 0.00615940523661134 0.006453797275192064 0.006601344971937916 0.006465199378903654 0.006531891600359145 C 0.006453797275192064 0.006601344971937916 0.006303523992595648 0.007002176738505061 0.0063333446801960725 0.006937629573030019 C 0.006303523992595648 0.007002176738505061 0.006088518331657105 0.0073371932538121125 0.006107351127698564 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006107351127698564 0.007306457586059644 C 0.0060899437676960495 0.007348482670662826 0.005839030363062691 0.007870191045903526 0.005898462807668387 0.0078107586012978285 C 0.005839030363062691 0.007870191045903526 0.005310111623223845 0.008019646921328007 0.005394161792430209 0.008019646921328007 C 0.005310111623223845 0.008019646921328007 0.00483042833258632 0.007751326156692132 0.0048898607771920176 0.0078107586012978285 C 0.00483042833258632 0.007751326156692132 0.0046635650971593254 0.007264432501456462 0.00468097245716184 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00468097245716184 0.007306457586059644 C 0.004662139661120381 0.007275721918307176 0.004425158217063904 0.006873082407554978 0.004454978904664329 0.006937629573030019 C 0.004425158217063904 0.006873082407554978 0.004311722102245162 0.006462438228780372 0.004323124205956751 0.006531891600359143 C 0.004311722102245162 0.006462438228780372 0.004333599967082146 0.006048972991558193 0.004318153660125259 0.006104189114084766 C 0.004333599967082146 0.006048972991558193 0.0045243404085489065 0.005849723881369891 0.0045084798894393955 0.005869298130040266" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2772031279000719,0.06738144548653256) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003073403869597646 0.0028840020509313963 C 0.003083024112762396 0.0029060780110844444 0.003194033860342965 0.0032161230605121773 0.003188846787574645 0.0031489135727679725 C 0.003194033860342965 0.0032161230605121773 0.003131215572421052 0.0037356494314530093 0.0031356487428174824 0.0036905159038618527" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031356487428174824 0.0036905159038618527 C 0.0030366589640206353 0.003567328133188577 0.0017343164809428089 0.0018813565969788113 0.0019477713972553155 0.0022122626557825476 C 0.0017343164809428089 0.0018813565969788113 0.000459724609551743 -0.00048807508991344467 0.0005741897470674024 -0.0002803568017829837" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0005741897470674024 -0.0002803568017829837 C 0.0006922979352256346 -9.668691014855571E-05 0.002199755848510375 0.002187378468889684 0.001991488004966188 0.0019236818978301522 C 0.002199755848510375 0.002187378468889684 0.0031635635249836007 0.0029640287303565 0.003073403869597646 0.0028840020509313963" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2788019991383311,0.06738144548653256) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.00329477320671794 0.0028840020509313963 C 0.0033849328621038963 0.0028039753715062925 0.004584956914893605 0.0016599853267706207 0.004376689071349414 0.0019236818978301522 C 0.004584956914893605 0.0016599853267706207 0.0059120955174064614 -0.0004640266934174117 0.005793987329248227 -0.0002803568017829837" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005793987329248227 -0.0002803568017829837 C 0.005679522191732566 -7.263851365252276E-05 0.004206950762747779 0.002543168714586284 0.004420405679060289 0.0022122626557825476 C 0.004206950762747779 0.002543168714586284 0.0031335385547012545 0.003813703674535128 0.0032325283334981034 0.0036905159038618527" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032325283334981034 0.0036905159038618527 C 0.003228095163101675 0.003645382376270696 0.0031845173615092795 0.0030817040850237678 0.0031793302887409597 0.0031489135727679725 C 0.0031845173615092795 0.0030817040850237678 0.0033043934498826885 0.0028619260907783483 0.00329477320671794 0.0028840020509313963" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節21">
<g transform="translate(0.2780025635192015,0.06666286575852287) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.004552763984588934 0.0059411561028412324 C 0.0045621578122191165 0.005906097860847846 0.004700548158144511 0.005459734542564009 0.004665489916151125 0.005520457198920599 C 0.004700548158144511 0.005459734542564009 0.005034185544866161 0.005177425984568773 0.00497346288850957 0.0052124842265621595 C 0.005034185544866161 0.005177425984568773 0.005464278276416982 0.005099758294999965 0.00539416179243021 0.005099758294999965 C 0.005464278276416982 0.005099758294999965 0.005875583352707427 0.005247542468555546 0.005814860696350838 0.0052124842265621595 C 0.005875583352707427 0.005247542468555546 0.006157891910702663 0.005581179855277189 0.006122833668709277 0.005520457198920599 C 0.006157891910702663 0.005581179855277189 0.006244953427901653 0.0059762143448346215 0.00623555960027147 0.005941156102841235" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00623555960027147 0.005941156102841235 C 0.006250627093425505 0.005959751639078092 0.006431043509728936 0.006216757854083756 0.006416369518119893 0.006164302537683511 C 0.006431043509728936 0.006216757854083756 0.006400815501053971 0.006636600602644004 0.00641164749957998 0.006570619899644171 C 0.006400815501053971 0.006636600602644004 0.006258055882587376 0.007017390780882789 0.006286385535807779 0.0069560709736815 C 0.006258055882587376 0.007017390780882789 0.006053800504695762 0.00733565647042449 0.006071691660935148 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006071691660935148 0.007306457586059644 C 0.006055154668932759 0.007346381416432667 0.005816786934531066 0.007842004372911332 0.0058732477569064774 0.00778554355053592 C 0.005816786934531066 0.007842004372911332 0.005314314131684163 0.007983987454564589 0.005394161792430209 0.007983987454564589 C 0.005314314131684163 0.007983987454564589 0.004858615005578513 0.0077290827281605076 0.0049150758279539256 0.00778554355053592 C 0.004858615005578513 0.0077290827281605076 0.004700094931922869 0.007266533755686621 0.004716631923925258 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004716631923925258 0.007306457586059644 C 0.004698740767685872 0.007277258701694799 0.00447360839583222 0.00689475116648021 0.004501938049052623 0.0069560709736815 C 0.00447360839583222 0.00689475116648021 0.004365844086754414 0.006504639196644337 0.004376676085280424 0.006570619899644169 C 0.004365844086754414 0.006504639196644337 0.004386628058349549 0.006111847221283267 0.004371954066740506 0.006164302537683511 C 0.004386628058349549 0.006111847221283267 0.00456783147774297 0.005922560566604378 0.004552763984588934 0.005941156102841235" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2772430996810284,0.06598021501691366) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0030789381030256542 0.002899006375292717 C 0.0030880773340321668 0.0029199785374381124 0.003193536594233707 0.003214521334394459 0.003188608875103803 0.003150672321037464 C 0.003193536594233707 0.003214521334394459 0.0031338592207078905 0.0037080713867882497 0.0031380707325844993 0.003665194535576651" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031380707325844993 0.003665194535576651 C 0.0030440304427274945 0.0035481661534370393 0.001806805083803558 0.0019464931940377619 0.0020095872543004394 0.0022608539499013114 C 0.001806805083803558 0.0019464931940377619 0.0005959428059820464 -0.00030446690850988156 0.0007046846866219229 -0.00010713453478594366" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0007046846866219229 -0.00010713453478594366 C 0.0008168874653722434 6.735186226676285E-05 0.0022489724829927466 0.0022372139723530896 0.002051118031625769 0.0019867022298465345 C 0.0022489724829927466 0.0022372139723530896 0.0031645897756423097 0.0029750317207465657 0.003078938103025653 0.002899006375292717" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2787620273573746,0.06598021501691366) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003289238973289934 0.002899006375292717 C 0.0033748906459065927 0.0028229810298388684 0.004514913496056818 0.0017361904873399794 0.004317059044689837 0.0019867022298465345 C 0.004514913496056818 0.0017361904873399794 0.00577569516844403 -0.0002816209318386502 0.005663492389693708 -0.00010713453478594366" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005663492389693708 -0.00010713453478594366 C 0.005554750509053829 9.019783893799427E-05 0.0041558076515182795 0.0025752147057648608 0.004358589822015165 0.0022608539499013114 C 0.0041558076515182795 0.0025752147057648608 0.0031360660538740834 0.0037822229177162624 0.0032301063437310895 0.003665194535576651" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032301063437310895 0.003665194535576651 C 0.0032258948318544824 0.003622317684365052 0.0031844959203417072 0.0030868233076804695 0.0031795682012118035 0.003150672321037464 C 0.0031844959203417072 0.0030868233076804695 0.003298378204296445 0.0028780342131473216 0.003289238973289934 0.002899006375292717" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節22">
<g transform="translate(0.2780025635192015,0.06529756427530446) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.004594833874980998 0.006009421177002153 C 0.004603758011229671 0.005976115847108437 0.004735228839858795 0.005552070694738792 0.004701923509965078 0.005609757218277552 C 0.004735228839858795 0.005552070694738792 0.005052184357244361 0.005283877564643316 0.0049944978337056 0.005317182894537033 C 0.005052184357244361 0.005283877564643316 0.0054607724522176436 0.0052100932595529476 0.00539416179243021 0.0052100932595529476 C 0.0054607724522176436 0.0052100932595529476 0.0058515122746935645 0.0053504882244307505 0.005793825751154805 0.005317182894537033 C 0.0058515122746935645 0.0053504882244307505 0.006119705404789039 0.005667443741816313 0.006086400074895322 0.005609757218277552 C 0.006119705404789039 0.005667443741816313 0.00620241384612808 0.006042726506895873 0.006193489709879407 0.006009421177002156" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006193489709879407 0.006009421177002156 C 0.00620780382837574 0.006027086936427169 0.006379199423863998 0.00627124284068255 0.006365259131835408 0.006221410290102318 C 0.006379199423863998 0.00627124284068255 0.006350482815622783 0.006670093451814784 0.006360773214222492 0.006607411783964943 C 0.006350482815622783 0.006670093451814784 0.006214861178079517 0.007031844121141633 0.006241774348638899 0.006973590304300408 C 0.006214861178079517 0.007031844121141633 0.0060208185690824815 0.007334196526206247 0.0060378151675098985 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0060378151675098985 0.007306457586059644 C 0.006022105025107629 0.007344385224914016 0.005795655677426023 0.00781522703356875 0.005849293458682663 0.007761589252312108 C 0.005795655677426023 0.00781522703356875 0.005318306514721465 0.007950110961139343 0.005394161792430209 0.007950110961139343 C 0.005318306514721465 0.007950110961139343 0.004885392344921096 0.0077079514710554665 0.004939030126177738 0.007761589252312108 C 0.004885392344921096 0.0077079514710554665 0.004734798274948233 0.007268529947205272 0.004750508417350503 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004750508417350503 0.007306457586059644 C 0.004733511818923086 0.007278718645913041 0.004519636065662118 0.006915336487459183 0.0045465492362215 0.006973590304300408 C 0.004519636065662118 0.006915336487459183 0.004417259972038205 0.0065447301161151005 0.004427550370637914 0.006607411783964941 C 0.004417259972038205 0.0065447301161151005 0.004437004745053582 0.006171577739522086 0.004423064453024992 0.006221410290102318 C 0.004437004745053582 0.006171577739522086 0.004609147993477332 0.005991755417577143 0.004594833874980998 0.006009421177002156" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2772810728729371,0.06464904607077572) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003084195624782262 0.002913260483435972 C 0.003092877894238449 0.0029331840374740977 0.0031930641914299125 0.0032129996945826273 0.003188382858256504 0.0031523431318934824 C 0.0031930641914299125 0.0032129996945826273 0.0031363706865803866 0.00368187224435673 0.003140371622863165 0.003641139235705711" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003140371622863165 0.003641139235705711 C 0.0030510333474990103 0.0035299622726730796 0.0018756692565212723 0.002008372961243765 0.0020683123184933095 0.0023070156793141374 C 0.0018756692565212723 0.002008372961243765 0.0007253500925908349 -0.00013003913617649595 0.0008286548791987176 5.742661886124509E-05" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0008286548791987176 5.742661886124509E-05 C 0.0009352475190115221 0.00022318869606131634 0.0022957282857510005 0.002284557700643327 0.002107766556952372 0.0020465715452621 C 0.0022957282857510005 0.002284557700643327 0.0031655647137680864 0.002985484561617128 0.003084195624782262 0.002913260483435972" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.278724054165466,0.06464904607077572) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032839814515333277 0.002913260483435972 C 0.0033653505405191533 0.0028410364052548157 0.004448372248161868 0.0018085853898808725 0.004260410519363236 0.0020465715452621 C 0.004448372248161868 0.0018085853898808725 0.005646114836929719 -0.00010833545833882616 0.005539522197116913 5.742661886124509E-05" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005539522197116913 5.742661886124509E-05 C 0.005436217410509028 0.0002448923738989861 0.004107221695850256 0.0026056583973845097 0.004299864757822297 0.0023070156793141374 C 0.004107221695850256 0.0026056583973845097 0.00313846717808827 0.003752316198738342 0.003227805453452426 0.003641139235705711" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003227805453452426 0.003641139235705711 C 0.0032238045171696494 0.003600406227054692 0.003184475551232512 0.0030916865692043375 0.0031797942180591034 0.0031523431318934824 C 0.003184475551232512 0.0030916865692043375 0.0032926637209895132 0.002893336929397846 0.0032839814515333277 0.002913260483435972" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節23">
<g transform="translate(0.2780025635192015,0.06400052786624696) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.004634800270853457 0.006074272997455027 C 0.004643278200289697 0.006042632934055996 0.004768175487487365 0.005639790039304834 0.004736535424088334 0.005694592236666656 C 0.004768175487487365 0.005639790039304834 0.005069283229003653 0.005385006565714133 0.00501448103164183 0.005416646629113164 C 0.005069283229003653 0.005385006565714133 0.005457441919228272 0.0053149114758782815 0.00539416179243021 0.0053149114758782815 C 0.005457441919228272 0.0053149114758782815 0.005828644750580396 0.005448286692512195 0.005773842553218575 0.005416646629113164 C 0.005828644750580396 0.005448286692512195 0.006083428224171098 0.005749394434028478 0.0060517881607720665 0.005694592236666656 C 0.006083428224171098 0.005749394434028478 0.006162001243443185 0.006105913060854062 0.006153523314006946 0.006074272997455031" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006153523314006946 0.006074272997455031 C 0.0061671217265784626 0.0060910554689087935 0.006329947542292308 0.0063230035779514035 0.006316704264865147 0.006275662654900183 C 0.006329947542292308 0.0063230035779514035 0.0063026667644631535 0.006701911658527026 0.006312442643132877 0.006642364074069677 C 0.0063026667644631535 0.006701911658527026 0.006173826208797051 0.007045574794387534 0.006199393720828465 0.00699023366838837 C 0.006173826208797051 0.007045574794387534 0.005989485730249867 0.007332809579198917 0.006005632498755913 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006005632498755913 0.007306457586059644 C 0.0059907078634737565 0.007342488842971297 0.005775580983176231 0.007789788561193295 0.00582653687537004 0.007738832668999485 C 0.005775580983176231 0.007789788561193295 0.005322099278606903 0.007917928292385355 0.005394161792430209 0.007917928292385355 C 0.005322099278606903 0.007917928292385355 0.004910830817296551 0.007687876776805676 0.004961786709490362 0.007738832668999485 C 0.004910830817296551 0.007687876776805676 0.004767766450822331 0.007270426329147991 0.004782691086104488 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004782691086104488 0.007306457586059644 C 0.004766544317598442 0.007280105592920371 0.004563362352000521 0.006934892542389206 0.004588929864031935 0.00699023366838837 C 0.004563362352000521 0.006934892542389206 0.0044661050630578035 0.006582816489612328 0.004475880941727527 0.006642364074069677 C 0.0044661050630578035 0.006582816489612328 0.004484862597422413 0.006228321731848963 0.004471619319995252 0.006275662654900183 C 0.004484862597422413 0.006228321731848963 0.004648398683424974 0.006057490526001269 0.004634800270853457 0.006074272997455031" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27731714740525026,0.06338443557194466) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0030891902704510395 0.0029268018861720643 C 0.003097438426434417 0.002945729262508284 0.003192615408766308 0.003211554136761387 0.00318816814225157 0.0031539304022066995 C 0.003192615408766308 0.003211554136761387 0.0031387565791592574 0.0036569830590467826 0.0031425574686278967 0.0036182867008283147" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031425574686278967 0.0036182867008283147 C 0.0030576861070319497 0.003512668585947315 0.0019410902206030995 0.0020671587400894675 0.0021241011294765347 0.002350869322256321 C 0.0019410902206030995 0.0020671587400894675 0.0008482870148691845 3.5667247540219384E-05 0.000946426562146673 0.00021375971482607333" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.000946426562146673 0.00021375971482607333 C 0.0010476895699688372 0.00037123368816614094 0.002340146298371341 0.0023295342425190503 0.002161582656012644 0.0021034473949068846 C 0.002340146298371341 0.0023295342425190503 0.0031664909049875724 0.0029954147604441626 0.0030891902704510395 0.0029268018861720643" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2786879796331527,0.06338443557194466) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003278986805864553 0.0029268018861720643 C 0.003356287440401087 0.002858189011899966 0.004385158062661663 0.0018773605472947187 0.004206594420302963 0.0021034473949068846 C 0.004385158062661663 0.0018773605472947187 0.005523013521991123 5.628574148600573E-05 0.005421750514168957 0.00021375971482607333" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005421750514168957 0.00021375971482607333 C 0.0053236109668914665 0.00039185218211192725 0.004061065037965634 0.002634579904423174 0.004244075946839072 0.002350869322256321 C 0.004061065037965634 0.002634579904423174 0.0031407482460917477 0.0037239048157093144 0.0032256196076876956 0.0036182867008283147" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032256196076876956 0.0036182867008283147 C 0.0032218187182190576 0.003579590342609847 0.003184456200578777 0.003096306667652012 0.003180008934064039 0.0031539304022066995 C 0.003184456200578777 0.003096306667652012 0.003287234961847929 0.0029078745098358445 0.003278986805864553 0.0029268018861720643" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節24">
<g transform="translate(0.2780025635192015,0.06276834327764234) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0046727683469322935 0.0061358822268852585 C 0.004680822379896721 0.0061058241666561795 0.004799474802734506 0.005723123416642576 0.004769416742505426 0.005775185504136307 C 0.004799474802734506 0.005723123416642576 0.005085527157174981 0.005481079116731407 0.005033465069681249 0.005511137176960487 C 0.005085527157174981 0.005481079116731407 0.005454277912888369 0.005414488781387351 0.00539416179243021 0.005414488781387351 C 0.005454277912888369 0.005414488781387351 0.005806920602672886 0.005541195237189567 0.005754858515179155 0.005511137176960487 C 0.005806920602672886 0.005541195237189567 0.006048964902584054 0.005827247591630038 0.006018906842354975 0.005775185504136307 C 0.006048964902584054 0.005827247591630038 0.006123609270892535 0.006165940287114341 0.006115555237928108 0.006135882226885261" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006115555237928108 0.006135882226885261 C 0.006128473729871049 0.006151825574766336 0.006283158254799202 0.006372176278356815 0.006270577141243399 0.0063272024014581554 C 0.006283158254799202 0.006372176278356815 0.006257241515861506 0.006732138954903657 0.006266528600597743 0.006675568749669176 C 0.006257241515861506 0.006732138954903657 0.006134842987978708 0.007058618933971137 0.0061591321244085515 0.007006044864271932 C 0.006134842987978708 0.007058618933971137 0.005959719533358882 0.0073314919795419535 0.005975058963439626 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005975058963439626 0.007306457586059644 C 0.005960880559921578 0.0073406872801257145 0.0057565100236389305 0.007765622012436612 0.005804918121223048 0.007717213914852493 C 0.0057565100236389305 0.007765622012436612 0.005325702404298068 0.007887354757069072 0.005394161792430209 0.007887354757069072 C 0.005325702404298068 0.007887354757069072 0.004934997366053235 0.0076688058172683735 0.004983405463637354 0.007717213914852493 C 0.004934997366053235 0.0076688058172683735 0.004799086217902725 0.007272227891993574 0.004813264621420773 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004813264621420773 0.007306457586059644 C 0.004797925191340029 0.007281423192577335 0.0046049023240220055 0.006953470794572726 0.004629191460451848 0.007006044864271932 C 0.0046049023240220055 0.006953470794572726 0.004512507899526423 0.006618998544434692 0.00452179498426266 0.006675568749669173 C 0.004512507899526423 0.006618998544434692 0.004530327557172803 0.0062822285245594965 0.004517746443617 0.0063272024014581554 C 0.004530327557172803 0.0062822285245594965 0.004685686838875235 0.006119938879004186 0.0046727683469322935 0.006135882226885261" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27735141821094783,0.06218305559805515) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0030939351838363788 0.002939666218771352 C 0.0031017709320205872 0.0029576472262907603 0.003192189065235883 0.0032101808568312084 0.0031879641620468817 0.0031554383090042553 C 0.003192189065235883 0.0032101808568312084 0.0031410231771091856 0.0036333383330023343 0.003144634022104393 0.0035965767926947898" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003144634022104393 0.0035965767926947898 C 0.003064006228588243 0.0034962395835578404 0.002003240136480835 0.002123005229992885 0.0021771004999105985 0.0023925302830513956 C 0.002003240136480835 0.002123005229992885 0.0009650770910336161 0.00019308831207110011 0.0010583096609472302 0.0003622761559926613" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0010583096609472302 0.0003622761559926613 C 0.0011545095183782862 0.0005118764306657255 0.002382343410360664 0.00237226195730099 0.002212707950119902 0.002157479452069432 C 0.002382343410360664 0.00237226195730099 0.0031673707866460847 0.003004848449329845 0.0030939351838363783 0.002939666218771352" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27865370882745516,0.06218305559805515) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032742418924792153 0.002939666218771352 C 0.003347677495288923 0.0028744839882128585 0.004325104586436471 0.0019426969468378746 0.004155469126195706 0.002157479452069432 C 0.004325104586436471 0.0019426969468378746 0.005406067272799457 0.0002126758813195971 0.0053098674153684 0.0003622761559926613" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0053098674153684 0.0003622761559926613 C 0.005216634845454784 0.0005314639999142225 0.004017216212975245 0.0026620553361099064 0.004191076576405012 0.0023925302830513956 C 0.004017216212975245 0.0026620553361099064 0.00314291526069505 0.003696914001831739 0.0032235430542112012 0.0035965767926947898" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032235430542112012 0.0035965767926947898 C 0.0032199322092159952 0.0035598152523872452 0.003184437817457729 0.0031006957611773023 0.003180212914268728 0.0031554383090042553 C 0.003184437817457729 0.0031006957611773023 0.0032820776406634225 0.0029216852112519433 0.0032742418924792153 0.002939666218771352" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節25">
<g transform="translate(0.2780025635192015,0.06159776791846796) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.00470883801920719 0.006194410994843979 C 0.004716489350523396 0.006165855837626353 0.004829209152219291 0.005802290125113428 0.0048006539950016655 0.005851749108232472 C 0.004829209152219291 0.005802290125113428 0.005100958888937742 0.0055723480401978194 0.005051499905818697 0.005600903197415445 C 0.005100958888937742 0.0055723480401978194 0.005451272106865461 0.005509087221620964 0.00539416179243021 0.005509087221620964 C 0.005451272106865461 0.005509087221620964 0.005786282662160753 0.005629458354633071 0.0057368236790417085 0.005600903197415445 C 0.005786282662160753 0.005629458354633071 0.0060162247470763605 0.005901208091351517 0.005987669589858735 0.005851749108232472 C 0.0060162247470763605 0.005901208091351517 0.00608713689696942 0.006222966152061606 0.006079485565653213 0.006194410994843981" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006079485565653213 0.006194410994843981 C 0.006091758132999008 0.0062095571753310016 0.006238708431680754 0.006418890343741957 0.0062267563738027405 0.0063761651606882306 C 0.006238708431680754 0.006418890343741957 0.006214087529689941 0.0067608548864614565 0.0062229102601893665 0.0067071131914887 C 0.006214087529689941 0.0067608548864614565 0.006097808928201283 0.007071010866575563 0.006120883607809634 0.007021065500361317 C 0.006097808928201283 0.007071010866575563 0.005931441646312447 0.007330240259867838 0.005946014104889154 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005946014104889154 0.007306457586059644 C 0.005932544621547008 0.007338975795422411 0.005738392612078493 0.007742663791117759 0.0057843803047834055 0.007696676098412847 C 0.005738392612078493 0.007742663791117759 0.0053291253737046745 0.007858309898518597 0.005394161792430209 0.007858309898518597 C 0.0053291253737046745 0.007858309898518597 0.004957955587372082 0.007650688405707934 0.005003943280076997 0.007696676098412847 C 0.004957955587372082 0.007650688405707934 0.004828839996629097 0.007273939376696877 0.004842309479971243 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004842309479971243 0.007306457586059644 C 0.004827737021394537 0.00728267491225145 0.0046443652974424154 0.006971120134147072 0.004667439977050766 0.007021065500361317 C 0.0046443652974424154 0.006971120134147072 0.004556590594171612 0.006653371496515939 0.004565413324671038 0.006707113191488697 C 0.004556590594171612 0.006653371496515939 0.0045735192689356705 0.006333439977634504 0.004561567211057658 0.0063761651606882306 C 0.0045735192689356705 0.006333439977634504 0.004721110586552984 0.00617926481435696 0.00470883801920719 0.006194410994843981" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2773839754763605,0.061041744622860133) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003098442851552451 0.0029518873347406764 C 0.003105886812327449 0.0029689692918841147 0.003191784038881981 0.0032088762408975396 0.00318777038085243 0.003156870820461934 C 0.003191784038881981 0.0032088762408975396 0.0031431764451616173 0.0036108758432601092 0.0031466067479070645 0.003575952379967942" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031466067479070645 0.003575952379967942 C 0.0030700103440667223 0.00348063203128784 0.002062282556564684 0.002176059395401132 0.0022274499018229595 0.0024321081958067173 C 0.002062282556564684 0.002176059395401132 0.001076027663389826 0.0003426383233754354 0.0011645986048077592 0.0005033667751009187" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0011645986048077592 0.0005033667751009187 C 0.0012559884693672625 0.0006454870360403297 0.002422430666750522 0.0024128532863438314 0.002261276979521798 0.002208809906373852 C 0.002422430666750522 0.0024128532863438314 0.003168206674221671 0.003013810453771245 0.00309844285155245 0.0029518873347406764" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2786211515620425,0.061041744622860133) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003269734224763146 0.0029518873347406764 C 0.003339498047432368 0.002889964215710108 0.004268053784022539 0.002004766526403872 0.004106900096793812 0.002208809906373852 C 0.004268053784022539 0.002004766526403872 0.005294968336067373 0.0003612465141615076 0.005203578471507869 0.0005033667751009187" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005203578471507869 0.0005033667751009187 C 0.005115007530089934 0.0006640952268264019 0.003975559829234372 0.0026881569962123025 0.004140727174492651 0.0024321081958067173 C 0.003975559829234372 0.0026881569962123025 0.003144973924568189 0.003671272728648044 0.003221570328408532 0.003575952379967942" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003221570328408532 0.003575952379967942 C 0.003218140025663086 0.0035410289166757747 0.0031844203534927337 0.0031048654000263285 0.0031804066954631825 0.003156870820461934 C 0.0031844203534927337 0.0031048654000263285 0.003277178185538143 0.002934805377597238 0.003269734224763146 0.0029518873347406764" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節26">
<g transform="translate(0.2780025635192015,0.0604857213272523) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0047431042078683395 0.0062500133244047604 C 0.004750372972618736 0.0062228859250480165 0.004857456784229838 0.005877498498160738 0.004830329384873094 0.00592448453212383 C 0.004857456784229838 0.005877498498160738 0.005115619034112364 0.00565905351749091 0.005068633000149271 0.005686180916847655 C 0.005115619034112364 0.00565905351749091 0.005448416591143698 0.005598955739842898 0.00539416179243021 0.005598955739842898 C 0.005448416591143698 0.005598955739842898 0.005766676618674224 0.0057133083162044 0.005719690584711132 0.005686180916847655 C 0.005766676618674224 0.0057133083162044 0.005985121599344052 0.0059714705660869226 0.005957994199987308 0.00592448453212383 C 0.005985121599344052 0.0059714705660869226 0.00605248814174246 0.00627714072376151 0.0060452193769920635 0.006250013324404766" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0060452193769920635 0.006250013324404766 C 0.006056878315970567 0.006264402195867436 0.006196481099718225 0.00646326870585784 0.006185126644734113 0.0064226797819568 C 0.006196481099718225 0.00646326870585784 0.006173091242826954 0.006788135021441368 0.006181472836801409 0.006737080411217248 C 0.006173091242826954 0.006788135021441368 0.006062626571412728 0.007082783202549766 0.006084547517040661 0.007035335104646233 C 0.006062626571412728 0.007082783202549766 0.005904577653618336 0.007329051126177428 0.0059184214892662075 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0059184214892662075 0.007306457586059644 C 0.005905625480091169 0.007337349884954273 0.005721181071096078 0.007720853480864856 0.0057648693791657445 0.007677165172795189 C 0.005721181071096078 0.007720853480864856 0.005332377194640952 0.00783071728289565 0.005394161792430209 0.00783071728289565 C 0.005332377194640952 0.00783071728289565 0.004979765897624988 0.007633476864725522 0.005023454205694656 0.007677165172795189 C 0.004979765897624988 0.007633476864725522 0.004857106086419155 0.007275565287165015 0.004869902095594193 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004869902095594193 0.007306457586059644 C 0.004856058259946321 0.00728386404594186 0.004681855122191805 0.006987887006742699 0.0047037760678197375 0.007035335104646233 C 0.004681855122191805 0.006987887006742699 0.004598469154084542 0.006686025800993125 0.004606850748058997 0.006737080411217245 C 0.004598469154084542 0.006686025800993125 0.004614551395110397 0.00638209085805576 0.004603196940126285 0.0064226797819568 C 0.004614551395110397 0.00638209085805576 0.004754763146846844 0.006235624452942096 0.0047431042078683395 0.006250013324404766" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27741490487850257,0.05995749919642485) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003102725135882719 0.0029634973949115326 C 0.003109796898618967 0.002979725254197799 0.003191399263845773 0.003207636855760554 0.0031875862887176996 0.0031582317063467286 C 0.003191399263845773 0.003207636855760554 0.003145222049811427 0.0035895364780049945 0.003148480837419602 0.0035563591878774357" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003148480837419602 0.0035563591878774357 C 0.003075714253771277 0.0034658048566313386 0.0021183728556443404 0.0022264608525389656 0.002275281833639702 0.0024697072129242718 C 0.0021183728556443404 0.0022264608525389656 0.0011814307071282256 0.0004847108341145541 0.0012655731014752623 0.0006374028632537631" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0012655731014752623 0.0006374028632537631 C 0.0013523934728067904 0.0007724171111462037 0.002460513560320887 0.0024514150489345315 0.002307417557453599 0.0022575738379630506 C 0.002460513560320887 0.0024514150489345315 0.0031690007674184785 0.003022324357990573 0.0031027251358827185 0.0029634973949115326" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2785902221599004,0.05995749919642485) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032654519404328795 0.0029634973949115326 C 0.0033317275719686405 0.0029046704318324923 0.004213855521729302 0.0020637326269915698 0.004060759518862011 0.0022575738379630506 C 0.004213855521729302 0.0020637326269915698 0.005189424346171898 0.0005023886153613224 0.005102603974840369 0.0006374028632537631" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005102603974840369 0.0006374028632537631 C 0.005018461580493331 0.0007900948923929721 0.003935986264680546 0.002712953573309578 0.004092895242675911 0.0024697072129242718 C 0.003935986264680546 0.002712953573309578 0.003146929655247671 0.0036469135191235327 0.003219696238895997 0.0035563591878774357" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003219696238895997 0.0035563591878774357 C 0.0032164374512878235 0.003523181897749877 0.0031844037627259876 0.0031088265569329033 0.003180590787597914 0.0031582317063467286 C 0.0031844037627259876 0.0031088265569329033 0.0032725237031691265 0.002947269535625266 0.0032654519404328795 0.0029634973949115326" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節27">
<g transform="translate(0.2780025635192015,0.05942927706559742) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0047756570870964325 0.0063028355374875064 C 0.004782562413609309 0.006277064508098599 0.004884292034639856 0.005948946452555686 0.004858521005250949 0.0059935831848206235 C 0.004884292034639856 0.005948946452555686 0.005129546172028257 0.0057414237209193475 0.005084909439763318 0.0057671947503082546 C 0.005129546172028257 0.0057414237209193475 0.005445703851208024 0.005684330832153737 0.00539416179243021 0.005684330832153737 C 0.005445703851208024 0.005684330832153737 0.0057480508773620235 0.005792965779697162 0.005703414145097087 0.0057671947503082546 C 0.0057480508773620235 0.005792965779697162 0.00595557360899836 0.006038219917085561 0.005929802579609453 0.0059935831848206235 C 0.00595557360899836 0.006038219917085561 0.006019571824276846 0.006328606566876415 0.00601266649776397 0.006302835537487508" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00601266649776397 0.006302835537487508 C 0.006023742489793549 0.0063165049653770445 0.006156365134353824 0.006505428149867931 0.006145578402118917 0.006466868672161943 C 0.006156365134353824 0.006505428149867931 0.006134144770307116 0.006814051149672281 0.006142107284582848 0.006765549269959368 C 0.006134144770307116 0.006814051149672281 0.0060292033324636 0.0070939669217252605 0.006050028230810137 0.007048891228716904 C 0.0060292033324636 0.0070939669217252605 0.005879056860558929 0.007327921449171539 0.005892208504424407 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005892208504424407 0.007306457586059644 C 0.0058800522957081205 0.0073358052700095416 0.005704830107162784 0.007700133686124596 0.005746333999828967 0.007658629793458412 C 0.005704830107162784 0.007700133686124596 0.005335466424530415 0.007804504298053851 0.005394161792430209 0.007804504298053851 C 0.005335466424530415 0.007804504298053851 0.005000485692365249 0.007617125900792228 0.005041989585031434 0.007658629793458412 C 0.005000485692365249 0.007617125900792228 0.004883958871719705 0.007277109902109747 0.0048961150804359916 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0048961150804359916 0.007306457586059644 C 0.004882963436570514 0.007284993722947749 0.004717470455703723 0.007003815535708547 0.004738295354050259 0.007048891228716904 C 0.004717470455703723 0.007003815535708547 0.004638253786001824 0.006717047390246453 0.004646216300277555 0.006765549269959366 C 0.004638253786001824 0.006717047390246453 0.004653531914976389 0.006428309194455955 0.004642745182741482 0.006466868672161943 C 0.004653531914976389 0.006428309194455955 0.004786733079126012 0.006289166109597972 0.0047756570870964325 0.006302835537487508" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27744428781053754,0.05892746604131134) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003106793305996473 0.002974526952073848 C 0.003113511480595909 0.0029899434183958008 0.0031910337275613742 0.0032064594398804164 0.0031874114011897045 0.0031595245479372823 C 0.0031910337275613742 0.0032064594398804164 0.003147165374228746 0.0035692640810126366 0.003150261222456512 0.0035377456553914556" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003150261222456512 0.0035377456553914556 C 0.0030811329679906034 0.0034517190407076636 0.0021716586397700142 0.002274342236819909 0.0023207221688656076 0.00250542627918595 C 0.0021716586397700142 0.002274342236819909 0.001281563598679705 0.0006196797193167177 0.00136149887330939 0.0007647371469989663" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00136149887330939 0.0007647371469989663 C 0.0014439782260743416 0.0008930006824967849 0.0024966923092127336 0.002488048723395696 0.00235125110648881 0.002303899572972789 C 0.0024966923092127336 0.002488048723395696 0.0031697551559554445 0.003030412566998936 0.0031067933059964726 0.002974526952073848" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2785608392278655,0.05892746604131134) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032613837703191254 0.002974526952073848 C 0.0033243456202780982 0.00291864133714876 0.004162367172550728 0.002119750422549882 0.0040169259698268015 0.002303899572972789 C 0.004162367172550728 0.002119750422549882 0.005089157555771197 0.0006364736115011477 0.005006678203006243 0.0007647371469989663" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005006678203006243 0.0007647371469989663 C 0.004926742928376557 0.000909794574681215 0.0038983913783544066 0.0027365103215519905 0.004047454907450003 0.00250542627918595 C 0.0038983913783544066 0.0027365103215519905 0.0031487875993931776 0.0036237722700752477 0.003217915853859087 0.0035377456553914556" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003217915853859087 0.0035377456553914556 C 0.0032148200056313224 0.0035062272297702746 0.003184388001497578 0.003112589655994148 0.003180765675125908 0.0031595245479372823 C 0.003184388001497578 0.003112589655994148 0.0032681019449185603 0.0029591104857518953 0.0032613837703191254 0.002974526952073848" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節28">
<g transform="translate(0.2780025635192015,0.05842565501702528) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.004806582322363121 0.006353016639916113 C 0.004813142382550354 0.006328534161996651 0.004909785522529374 0.0060168220092308815 0.004885303044609912 0.0060592269048825725 C 0.004909785522529374 0.0060168220092308815 0.005142776953048352 0.005819675414176363 0.005100372057396661 0.005844157892095825 C 0.005142776953048352 0.005819675414176363 0.005443126748269133 0.0057654371698490315 0.00539416179243021 0.0057654371698490315 C 0.005443126748269133 0.0057654371698490315 0.005730356423115431 0.005868640370015287 0.005687951527463741 0.005844157892095825 C 0.005730356423115431 0.005868640370015287 0.005927503018169952 0.006101631800534264 0.00590302054025049 0.0060592269048825725 C 0.005927503018169952 0.006101631800534264 0.005988301322684514 0.006377499117835576 0.005981741262497281 0.006353016639916114" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005981741262497281 0.006353016639916114 C 0.0059922634549253815 0.006366002596411174 0.006118254967257642 0.006545479621677518 0.006108007571634481 0.00650884811785683 C 0.006118254967257642 0.006545479621677518 0.00609714562141327 0.006838671471491646 0.006104710009975214 0.006792594685764379 C 0.00609714562141327 0.006838671471491646 0.005997451255461932 0.007104591454941977 0.006017234908891142 0.007061769546584038 C 0.005997451255461932 0.007104591454941977 0.0058548121071524935 0.007326848256015945 0.005867306168824697 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005867306168824697 0.007306457586059644 C 0.005855757770544225 0.007334337885812047 0.005689296691426154 0.0076804498811213475 0.005728725389459028 0.007641021183088473 C 0.005689296691426154 0.0076804498811213475 0.005338401192925404 0.0077796019624541395 0.005394161792430209 0.0077796019624541395 C 0.005338401192925404 0.0077796019624541395 0.005020169497368497 0.007601592485055598 0.005059598195401372 0.007641021183088473 C 0.005020169497368497 0.007601592485055598 0.004909469017755229 0.007278577286307241 0.004921017416035702 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004921017416035702 0.007306457586059644 C 0.004908523354363498 0.007286066916103343 0.004751305022540047 0.0070189476382261 0.004771088675969257 0.007061769546584038 C 0.004751305022540047 0.0070189476382261 0.004676049186323244 0.006746517900037112 0.004683613574885189 0.006792594685764379 C 0.004676049186323244 0.006746517900037112 0.004690563408849078 0.006472216614036141 0.004680316013225917 0.00650884811785683 C 0.004690563408849078 0.006472216614036141 0.004817104514791221 0.006340030683421055 0.004806582322363121 0.006353016639916114" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27747220159597075,0.05794893454395351) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0031106580676045405 0.002985005031378046 C 0.0031170403334740047 0.0029996506743839016 0.0031906864680911963 0.0032053408947942865 0.00318724525803811 0.003160752747448309 C 0.0031906864680911963 0.0032053408947942865 0.0031490115324252 0.003550005303869895 0.003151952588241578 0.003520062799529773" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003151952588241578 0.003520062799529773 C 0.0030862807464989645 0.0034383375155801706 0.0022222801346894047 0.0023198295518868034 0.0023638904873302187 0.0025393593921345424 C 0.0022222801346894047 0.0023198295518868034 0.0013766898456536107 0.0007479001602587718 0.0014526283565518114 0.000885704716556908" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0014526283565518114 0.000885704716556908 C 0.0015309837416785153 0.0010075550752798356 0.0025310621206599874 0.0025228507141338012 0.00239289297807226 0.0023479090212320396 C 0.0025310621206599874 0.0025228507141338012 0.003170471825065564 0.00303809636555688 0.0031106580676045405 0.002985005031378046" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2785329254424323,0.05794893454395351) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003257519008711061 0.002985005031378046 C 0.003317332766172085 0.0029319136971992124 0.0041134532408310795 0.002172967328330278 0.00397528409824335 0.0023479090212320396 C 0.0041134532408310795 0.002172967328330278 0.004993904104890523 0.0007638543578339803 0.004915548719763818 0.000885704716556908" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004915548719763818 0.000885704716556908 C 0.004839610208865615 0.0010235092728550443 0.0038626762363445774 0.0027588892323822814 0.004004286588985394 0.0025393593921345424 C 0.0038626762363445774 0.0027588892323822814 0.003150552646331409 0.0036017880834793756 0.003216224488074023 0.003520062799529773" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003216224488074023 0.003520062799529773 C 0.0032132834322576467 0.003490120295189651 0.0031843730283305904 0.003116164600102332 0.003180931818277504 0.003160752747448309 C 0.0031843730283305904 0.003116164600102332 0.003263901274580524 0.002970359388372191 0.003257519008711061 0.002985005031378046" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節29">
<g transform="translate(0.2780025635192015,0.057472214070881746) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.004835961295866475 0.006400688687223289 C 0.004842193353044346 0.006377430333199801 0.004934004336024414 0.00608130378807232 0.004910745982000925 0.006121588438941426 C 0.004934004336024414 0.00608130378807232 0.005155346195017445 0.005894014522770527 0.005115061544148338 0.005917272876794015 C 0.005155346195017445 0.005894014522770527 0.005440678500477187 0.005842488190659563 0.00539416179243021 0.005842488190659563 C 0.005440678500477187 0.005842488190659563 0.005713546691581169 0.005940531230817504 0.005673262040712064 0.005917272876794015 C 0.005713546691581169 0.005940531230817504 0.005900835956882963 0.006161873089810532 0.005877577602859474 0.006121588438941426 C 0.005900835956882963 0.006161873089810532 0.005958594346171798 0.006423947041246781 0.005952362288993927 0.006400688687223292" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005952362288993927 0.006400688687223292 C 0.005962358371800622 0.006413025345893599 0.006082050308516269 0.006583528519896623 0.006072315282674266 0.006548728591266969 C 0.006082050308516269 0.006583528519896623 0.006061996429964115 0.006862060777220047 0.0060691825990979624 0.006818287830779143 C 0.006061996429964115 0.006862060777220047 0.005967286782310345 0.0071146847614978635 0.005986081253068094 0.007074003948557821 C 0.005967286782310345 0.0071146847614978635 0.005831779591416379 0.007325828722518129 0.005843648950004972 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005843648950004972 0.007306457586059644 C 0.005832677971638524 0.007332943870824426 0.005674539946476355 0.007661750266368261 0.0057119972096075855 0.0076242930032370294 C 0.005674539946476355 0.007661750266368261 0.005341189222900645 0.007755944743634417 0.005394161792430209 0.007755944743634417 C 0.005341189222900645 0.007755944743634417 0.0050388691121215825 0.007586835740105798 0.005076326375252814 0.0076242930032370294 C 0.0050388691121215825 0.007586835740105798 0.004933703656488977 0.007279971301294862 0.0049446746348554265 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0049446746348554265 0.007306457586059644 C 0.004932805276266833 0.007287086449601159 0.004783447861034556 0.007033323135617779 0.0048022423317923045 0.007074003948557821 C 0.004783447861034556 0.007033323135617779 0.004711954816628591 0.006774514884338239 0.004719140985762439 0.006818287830779143 C 0.004711954816628591 0.006774514884338239 0.004725743328028136 0.006513928662637314 0.004716008302186133 0.006548728591266969 C 0.004725743328028136 0.006513928662637314 0.004845957378673171 0.006388352028552985 0.004835961295866475 0.006400688687223292" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27749871969213225,0.05701932962146357) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0031143295911322047 0.0029949592067170347 C 0.0031203927437081958 0.003008872567572597 0.0031903565715945274 0.003204278276962463 0.0031870874220440953 0.0031619195369837847 C 0.0031903565715945274 0.003204278276962463 0.0031507653827118312 0.0035317094655842912 0.00315355938573739 0.0035032640864611753" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00315355938573739 0.0035032640864611753 C 0.0030911711360819077 0.003425625066709053 0.002270370554862825 0.0023630425012003548 0.002404900389871598 0.0025715958494357065 C 0.002270370554862825 0.0023630425012003548 0.0014670597802788213 0.000869709579153725 0.0015392013656321119 0.0010006239076369543" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0015392013656321119 0.0010006239076369543 C 0.0016136389815024808 0.0011163817484237356 0.002563713441534879 0.0025559126053350026 0.002432452756076538 0.002389717997078329 C 0.002563713441534879 0.0025559126053350026 0.0031711526607201765 0.0030453959741869267 0.0031143295911322043 0.0029949592067170347" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27850640734627075,0.05701932962146357) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032538474851833976 0.0029949592067170347 C 0.0033106705547713707 0.0029445224392471428 0.004066985005697419 0.0022235233888216557 0.0039357243202390755 0.002389717997078329 C 0.004066985005697419 0.0022235233888216557 0.00490341332655389 0.0008848660668501731 0.00482897571068352 0.0010006239076369543" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00482897571068352 0.0010006239076369543 C 0.004756834125330228 0.0011315382361201836 0.0038287468514352396 0.0027801491976710583 0.003963276686444015 0.0025715958494357065 C 0.0038287468514352396 0.0027801491976710583 0.0031522294409227296 0.0035809031062132976 0.003214617690578213 0.0035032640864611753" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003214617690578213 0.0035032640864611753 C 0.0032118236875526554 0.0034748187073380594 0.0031843588038219526 0.0031195607970051064 0.0031810896542715204 0.0031619195369837847 C 0.0031843588038219526 0.0031195607970051064 0.0032599106377593874 0.0029810458458614723 0.0032538474851833976 0.0029949592067170347" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節30">
<g transform="translate(0.2780025635192015,0.0565664451720454) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.004863871320694661 0.006445977132165107 C 0.004869791775013638 0.006423881695842793 0.004957012208844703 0.006142561477971686 0.004934916772522389 0.006180831896297337 C 0.004957012208844703 0.006142561477971686 0.005167286974888083 0.005964636675934983 0.005129016556562431 0.005986732112257297 C 0.005167286974888083 0.005964636675934983 0.005438352665074838 0.005915686660429565 0.00539416179243021 0.005915686660429565 C 0.005438352665074838 0.005915686660429565 0.0056975774466236214 0.006008827548579611 0.005659307028297971 0.005986732112257297 C 0.0056975774466236214 0.006008827548579611 0.005875502248660325 0.006219102314622988 0.005853406812338011 0.006180831896297337 C 0.005875502248660325 0.006219102314622988 0.005930372718484719 0.0064680725684874265 0.0059244522641657416 0.006445977132165112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0059244522641657416 0.006445977132165112 C 0.005933948542832102 0.0064576969579019025 0.006047655882711966 0.006619674973204775 0.006038407608162063 0.006586615041006604 C 0.006047655882711966 0.006619674973204775 0.006028604698087419 0.006884280617662029 0.0060354315587645745 0.00684269631854317 C 0.006028604698087419 0.006884280617662029 0.005938630532816336 0.007124273402725953 0.0059564852800361974 0.007085626630432914 C 0.005938630532816336 0.007124273402725953 0.005809898701467069 0.007324860165695205 0.005821174592126233 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005821174592126233 0.007306457586059644 C 0.005810752162678106 0.007331619556586187 0.005660521038774047 0.007643985632352829 0.005696105438748716 0.007608401232378159 C 0.005660521038774047 0.007643985632352829 0.005343837851377123 0.007733470385755677 0.005394161792430209 0.007733470385755677 C 0.005343837851377123 0.007733470385755677 0.005056633746137011 0.0075728168324034895 0.005092218146111682 0.007608401232378159 C 0.005056633746137011 0.0075728168324034895 0.004956726563286038 0.007281295615533101 0.004967148992734165 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004967148992734165 0.007306457586059644 C 0.004955873102075002 0.007288055006424083 0.004813983557604338 0.0070469798581398735 0.0048318383048241995 0.007085626630432914 C 0.004813983557604338 0.0070469798581398735 0.004746065165418672 0.006801112019424307 0.004752892026095827 0.006842696318543166 C 0.004746065165418672 0.006801112019424307 0.004759164251248236 0.006553555108808433 0.004749915976698334 0.006586615041006604 C 0.004759164251248236 0.006553555108808433 0.004873367599361021 0.006434257306428321 0.004863871320694661 0.006445977132165112" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27752391188348574,0.05613620494509813) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003117817538483485 0.003004415673289075 C 0.003123577533430676 0.0030176333661018594 0.0031900431699226923 0.0032032687900222312 0.003186937477849782 0.003163027987042487 C 0.0031900431699226923 0.0032032687900222312 0.003152431540484131 0.003514328419212967 0.0031550858433584115 0.003487305309046007" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031550858433584115 0.003487305309046007 C 0.003095817006185703 0.0034135482402814906 0.002316056454027575 0.002404094803048228 0.0024438597972859097 0.002602220483871812 C 0.002316056454027575 0.002404094803048228 0.0015529112181727712 0.0009854285271039297 0.0016214457242583972 0.0011097971391629976" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0016214457242583972 0.0011097971391629976 C 0.0016921614593352475 0.0012197670879104396 0.002594732196366026 0.002587321401976143 0.0024700345451806023 0.002429436524132303 C 0.002594732196366026 0.002587321401976143 0.0031717994545920575 0.0030523306023854725 0.003117817538483484 0.003004415673289075" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2784812151549173,0.05613620494509813) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032503595378321195 0.003004415673289075 C 0.0033043414539406938 0.0029565007441926775 0.004022840182320439 0.0022715516462884634 0.003898142531135013 0.002429436524132303 C 0.004022840182320439 0.0022715516462884634 0.004817447087134084 0.0009998271904155555 0.004746731352057232 0.0011097971391629976" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004746731352057232 0.0011097971391629976 C 0.004678196845971605 0.0012341657512220654 0.0037965139357713693 0.002800346164695396 0.003924317279029706 0.002602220483871812 C 0.0037965139357713693 0.002800346164695396 0.0031538223957844847 0.0035610623778105236 0.003213091232957194 0.003487305309046007" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003213091232957194 0.003487305309046007 C 0.003210436930082914 0.003460282198879047 0.0031843452905387453 0.0031227871840627426 0.003181239598465835 0.003163027987042487 C 0.0031843452905387453 0.0031227871840627426 0.00325611953277931 0.0029911979804762906 0.0032503595378321195 0.003004415673289075" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節31">
<g transform="translate(0.2780025635192015,0.05570596471815086) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.004890385844281438 0.006489001154859834 C 0.004896010275884466 0.006468010490353635 0.004978869688023979 0.006200756283376084 0.004957879023517781 0.0062371131807854524 C 0.004978869688023979 0.006200756283376084 0.0051786307157651885 0.006031727721441216 0.005142273818355819 0.006052718385947415 C 0.0051786307157651885 0.006031727721441216 0.005436143121442607 0.00598522520671107 0.00539416179243021 0.00598522520671107 C 0.005436143121442607 0.00598522520671107 0.005682406663913951 0.0060737090504536136 0.005646049766504583 0.006052718385947415 C 0.005682406663913951 0.0060737090504536136 0.005851435225848821 0.006273470078194821 0.005830444561342622 0.0062371131807854524 C 0.005851435225848821 0.006273470078194821 0.005903562172181992 0.0065099918193660365 0.005897937740578963 0.006489001154859838" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005897937740578963 0.006489001154859838 C 0.005906959205312006 0.00650013498930979 0.0060149811781978774 0.006654014103847518 0.006006195317375469 0.0066226071682592555 C 0.0060149811781978774 0.006654014103847518 0.005996882552804559 0.006905389466081908 0.006003368070447857 0.006865884381918992 C 0.005996882552804559 0.006905389466081908 0.00591140709579703 0.007133382611892637 0.005928369105655898 0.007096668178214249 C 0.00591140709579703 0.007133382611892637 0.005789111856015226 0.007323940036713427 0.005799823952141432 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005799823952141432 0.007306457586059644 C 0.0057899226441657115 0.00733036145805986 0.005647203076456856 0.007627109230038168 0.005681008256432791 0.0075933040500622325 C 0.005647203076456856 0.007627109230038168 0.005346354048429777 0.0077121197457708755 0.005394161792430209 0.0077121197457708755 C 0.005346354048429777 0.0077121197457708755 0.005073510148451673 0.007559498870086297 0.005107315328427609 0.0075933040500622325 C 0.005073510148451673 0.007559498870086297 0.004978598324743247 0.0072825537140594285 0.004988499632718967 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004988499632718967 0.007306457586059644 C 0.0049777875365927616 0.0072889751354058615 0.004842992469345632 0.007059953744535862 0.0048599544792045 0.007096668178214249 C 0.004842992469345632 0.007059953744535862 0.0047784699967692475 0.006826379297756076 0.004784955514412545 0.006865884381918992 C 0.0047784699967692475 0.006826379297756076 0.0047909141283073355 0.006591200232670993 0.0047821282674849275 0.0066226071682592555 C 0.0047909141283073355 0.006591200232670993 0.00489940730901448 0.006477867320409886 0.004890385844281438 0.006489001154859838" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27754784446527153,0.05529723650255096) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003121131088467201 0.0030133993165325124 C 0.003126603083667033 0.0030259561247046574 0.003189745438334448 0.0032023097774290105 0.003186795030865183 0.003164081014598253 C 0.003189745438334448 0.0032023097774290105 0.0031540143903678146 0.003497816425160209 0.003156535978098381 0.0034721444705015972" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003156535978098381 0.0034721444705015972 C 0.003100230582784308 0.0034020752551753067 0.002359458058234087 0.0024430944898037074 0.0024808712343295045 0.0026313138865861124 C 0.002359458058234087 0.0024430944898037074 0.0016344700841720236 0.001095361527656624 0.0016995778649533683 0.0012135117091127384" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0016995778649533683 0.0012135117091127384 C 0.0017667578132763762 0.0013179831604228085 0.0026242000134556157 0.0026171597587852265 0.0025057372448294628 0.0024671691248335788 C 0.0026242000134556157 0.0026171597587852265 0.003172413908770346 0.00305891849917409 0.003121131088467201 0.0030133993165325124" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2784572825731315,0.05529723650255096) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032470459878484043 0.0030133993165325124 C 0.0032983288081515497 0.002967880133890935 0.003980902600112307 0.002317178490881931 0.003862439831486152 0.0024671691248335788 C 0.003980902600112307 0.002317178490881931 0.004735779159685271 0.0011090402578026683 0.004668599211362262 0.0012135117091127384" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004668599211362262 0.0012135117091127384 C 0.004603491430580916 0.0013316618905688529 0.003765892665890691 0.0028195332833685174 0.003887305841986111 0.0026313138865861124 C 0.003765892665890691 0.0028195332833685174 0.00315533570290315 0.0035422136858278878 0.003211641098217224 0.0034721444705015972" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003211641098217224 0.0034721444705015972 C 0.0032091195104866584 0.0034464725158429854 0.0031843324529196985 0.003125852251767496 0.0031813820454504333 0.003164081014598253 C 0.0031843324529196985 0.003125852251767496 0.003252517983048235 0.0030008425083603673 0.0032470459878484043 0.0030133993165325124" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節32">
<g transform="translate(0.2780025635192015,0.05488850828695106) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0049155746416888755 0.006529873976419825 C 0.004920917851711753 0.006509932845138936 0.004999634293244288 0.006256041348510263 0.0049796931619634 0.006290580401049162 C 0.004999634293244288 0.006256041348510263 0.005189407269598439 0.006095464214672136 0.005154868217059538 0.006115405345953025 C 0.005189407269598439 0.006095464214672136 0.0054340440549919865 0.006051286825678499 0.00539416179243021 0.006051286825678499 C 0.0054340440549919865 0.006051286825678499 0.005667994420339763 0.006135346477233914 0.0056334553678008634 0.006115405345953025 C 0.005667994420339763 0.006135346477233914 0.005828571554177889 0.006325119453588063 0.005808630422897 0.006290580401049162 C 0.005828571554177889 0.006325119453588063 0.005878092153194403 0.006549815107700717 0.005872748943171526 0.006529873976419828" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005872748943171526 0.006529873976419828 C 0.005881319334667916 0.006540451119147282 0.005983940208909495 0.006686636277958125 0.005975593641128207 0.0066567996891492755 C 0.005983940208909495 0.006686636277958125 0.005966746514785841 0.006925442872080794 0.005972907756546974 0.006887913042126024 C 0.005966746514785841 0.006925442872080794 0.005885544830628689 0.007142036360600985 0.005901658739994614 0.007107157648606517 C 0.005885544830628689 0.007142036360600985 0.005769364352835974 0.007323065914180738 0.005779540844155869 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005779540844155869 0.007306457586059644 C 0.005770134601578935 0.007329166264459849 0.005634551012255522 0.007611076647839243 0.00566666593323266 0.007578961726862104 C 0.005634551012255522 0.007611076647839243 0.005348744435629799 0.007691836637785315 0.005394161792430209 0.007691836637785315 C 0.005348744435629799 0.007691836637785315 0.005089542730650598 0.007546846805884965 0.005121657651627738 0.007578961726862104 C 0.005089542730650598 0.007546846805884965 0.004999376498127592 0.007283748907659439 0.005008782740704526 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005008782740704526 0.007306457586059644 C 0.004998606249384631 0.00728984925793855 0.004870550935499861 0.007072278936612048 0.004886664844865786 0.007107157648606517 C 0.004870550935499861 0.007072278936612048 0.004809254586552295 0.006850383212171252 0.004815415828313428 0.006887913042126022 C 0.004809254586552295 0.006850383212171252 0.004821076511513477 0.006626963100340426 0.00481272994373219 0.0066567996891492755 C 0.004821076511513477 0.006626963100340426 0.004924145033185266 0.006519296833692374 0.0049155746416888755 0.006529873976419828" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.277570580417968,0.054500216482131145) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003124278960951732 0.0030219337776137773 C 0.0031294773563915724 0.003033862745377315 0.003189462593325616 0.003201398715465451 0.0031866597062298143 0.003165081390776232 C 0.003189462593325616 0.003201398715465451 0.0031555180977573143 0.0034821300308100905 0.0031579136061013527 0.003457741673884409" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031579136061013527 0.003457741673884409 C 0.0031044234805529835 0.003391175919324433 0.002400689582230273 0.0024801441922214134 0.00251603209952092 0.002658952619164698 C 0.002400689582230273 0.0024801441922214134 0.0017119510068713132 0.001199797878181684 0.0017738033986135905 0.0013120405505649927" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0017738033986135905 0.0013120405505649927 C 0.0018376243495204481 0.0014112884293095592 0.0026521944396907257 0.002645506197753856 0.0025396548094958806 0.0025030150954997907 C 0.0026521944396907257 0.002645506197753856 0.0031729976402397196 0.003065177001123276 0.003124278960951732 0.0030219337776137773" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.278434546620435,0.054500216482131145) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032438981153638745 0.0030219337776137773 C 0.003292616794651863 0.0029786905541042785 0.003941061897014583 0.0023605239932457255 0.0038285222668197364 0.0025030150954997907 C 0.003941061897014583 0.0023605239932457255 0.004658194628608898 0.0012127926718204262 0.004594373677702039 0.0013120405505649927" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004594373677702039 0.0013120405505649927 C 0.0045325212859597605 0.0014242832229483015 0.0037368024595040477 0.0028377610461079823 0.0038521449767946964 0.002658952619164698 C 0.0037368024595040477 0.0028377610461079823 0.003156773344665884 0.003524307428444385 0.003210263470214254 0.003457741673884409" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003210263470214254 0.003457741673884409 C 0.0032078679618702164 0.0034333533169587276 0.003184320257181605 0.0031287640660870126 0.003181517370085803 0.003165081390776232 C 0.003184320257181605 0.0031287640660870126 0.003249096510803714 0.0030100048098502395 0.0032438981153638745 0.0030219337776137773" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節33">
<g transform="translate(0.2780025635192015,0.05411192467731124) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.00493950399922594 0.006568703156901815 C 0.004944580048747674 0.006549759082184971 0.005019360668203585 0.006308562160387731 0.00500041659348674 0.006341374260299686 C 0.005019360668203585 0.006308562160387731 0.005199644995740027 0.006156013883241512 0.005166832895828071 0.006174957957958356 C 0.005199644995740027 0.006156013883241512 0.005432049941863898 0.0061140453636975576 0.00539416179243021 0.0061140453636975576 C 0.005432049941863898 0.0061140453636975576 0.005654302788944283 0.0061939020326752 0.005621490689032329 0.006174957957958356 C 0.005654302788944283 0.0061939020326752 0.005806851066090504 0.0063741863602116405 0.005787906991373659 0.006341374260299686 C 0.005806851066090504 0.0063741863602116405 0.005853895635156194 0.006587647231618662 0.00584881958563446 0.0065687031569018174" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00584881958563446 0.0065687031569018174 C 0.00585696145755603 0.006578751442492899 0.005954451288085528 0.006717627343363202 0.0059465220486933056 0.006689282583994795 C 0.005954451288085528 0.006717627343363202 0.005938117278668057 0.0069444936077797375 0.005943970458341133 0.006908840269322706 C 0.005938117278668057 0.0069444936077797375 0.005860975678718763 0.007150257421873919 0.005876283892616392 0.007117122645479174 C 0.005860975678718763 0.007150257421873919 0.005750604224815686 0.007322235497774683 0.005760271891569586 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005760271891569586 0.007306457586059644 C 0.005751335961121499 0.007328030830539839 0.005622531551264255 0.007595845694750264 0.0056530407261925365 0.007565336519821981 C 0.005622531551264255 0.007595845694750264 0.005351015303469819 0.007672567685199031 0.005394161792430209 0.007672567685199031 C 0.005351015303469819 0.007672567685199031 0.005104773683739579 0.007534827344893699 0.005135282858667862 0.007565336519821981 C 0.005104773683739579 0.007534827344893699 0.005019115762842722 0.007284884341579449 0.00502805169329081 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00502805169329081 0.007306457586059644 C 0.00501838402653691 0.007290679674344605 0.004896731478346378 0.0070839878690844285 0.004912039692244006 0.007117122645479174 C 0.004896731478346378 0.0070839878690844285 0.0048384999468461904 0.006873186930865673 0.0048443531265192664 0.006908840269322704 C 0.0048384999468461904 0.006873186930865673 0.004849730775559314 0.006660937824626388 0.004841801536167091 0.006689282583994795 C 0.004849730775559314 0.006660937824626388 0.004947645871147511 0.006558654871310736 0.00493950399922594 0.0065687031569018174" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2775921795730297,0.05374304746273232) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003127269439812037 0.00303004151564098 C 0.003132207915479885 0.003041374035016341 0.0031891938905672258 0.0032005332066000697 0.003186531147826214 0.0031660317481453115 C 0.0031891938905672258 0.0032005332066000697 0.0031569466197773387 0.003467227956177478 0.0031592223527041755 0.0034440590170980805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031592223527041755 0.0034440590170980805 C 0.0031084067334332245 0.003380821550266103 0.0024398595300266506 0.002515341409518233 0.002549434921452765 0.0026852094151143535 C 0.0024398595300266506 0.002515341409518233 0.0017855578834356375 0.0012990124111804907 0.001844317655590801 0.001405642949944634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.001844317655590801 0.001405642949944634 C 0.0019049475589523158 0.0014999284347519723 0.0026787891446140803 0.002672435314774055 0.0025718764959289774 0.0025370687676326926 C 0.0026787891446140803 0.002672435314774055 0.003173552185135624 0.0030711225779750037 0.0031272694398120355 0.00303004151564098" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2784129474653733,0.05374304746273232) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003240907636503571 0.00303004151564098 C 0.00328719038182716 0.002988960453306956 0.0039032132290717433 0.0024017022204913304 0.0037963005803866388 0.0025370687676326926 C 0.0039032132290717433 0.0024017022204913304 0.0045844893240863435 0.0013113574651372956 0.004523859420724828 0.001405642949944634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004523859420724828 0.001405642949944634 C 0.004465099648569663 0.0015122734887087772 0.0037091667634367364 0.002855077420710474 0.0038187421548628525 0.0026852094151143535 C 0.0037091667634367364 0.002855077420710474 0.0031581391043404806 0.003507296483930058 0.0032089547236114325 0.0034440590170980805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032089547236114325 0.0034440590170980805 C 0.0032066789906845966 0.003420890078018683 0.0031843086712304144 0.0031315302896905532 0.003181645928489403 0.0031660317481453115 C 0.0031843086712304144 0.0031315302896905532 0.0032458461121714186 0.0030187089962656188 0.003240907636503571 0.00303004151564098" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節34">
<g transform="translate(0.2780025635192015,0.05337417024815341) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.004962236888886154 0.006605590878359708 C 0.004967059135931801 0.006587594007378706 0.005038100724414914 0.006358456931671328 0.005020103853433912 0.006389628426587685 C 0.005038100724414914 0.006358456931671328 0.005209370835574534 0.006213536068382419 0.005178199340658176 0.006231532939363421 C 0.005209370835574534 0.006213536068382419 0.0054301555343922135 0.006173665974815661 0.00539416179243021 0.006173665974815661 C 0.0054301555343922135 0.006173665974815661 0.005641295739118578 0.006249529810344423 0.005610124244202222 0.006231532939363421 C 0.005641295739118578 0.006249529810344423 0.005786216602407487 0.006420799921504042 0.005768219731426485 0.006389628426587685 C 0.005786216602407487 0.006420799921504042 0.005830908943019892 0.006623587749340711 0.0058260866959742455 0.006605590878359709" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0058260866959742455 0.006605590878359709 C 0.005833821474299738 0.006615136749671236 0.005926436813302762 0.006747068855498024 0.00591890403588015 0.006720141334098037 C 0.005926436813302762 0.006747068855498024 0.005910919504356165 0.0069625918066937315 0.005916480025045587 0.006928721135159552 C 0.005910919504356165 0.0069625918066937315 0.005837634984404334 0.007158067430083207 0.005852177787607081 0.007126589392508199 C 0.005837634984404334 0.007158067430083207 0.00573278210319641 0.007321446602188931 0.0057419663866126154 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0057419663866126154 0.007306457586059644 C 0.005733477252686932 0.0073269521683158294 0.00561111306332255 0.007581376289315733 0.0056400967795044174 0.007552392573133865 C 0.00561111306332255 0.007581376289315733 0.005353172627917839 0.007654262180242061 0.005394161792430209 0.007654262180242061 C 0.005353172627917839 0.007654262180242061 0.005119243089174109 0.007523408856951997 0.005148226805355978 0.007552392573133865 C 0.005119243089174109 0.007523408856951997 0.005037868064322097 0.007285963003803459 0.005046357198247781 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005046357198247781 0.007306457586059644 C 0.005037172914831575 0.007291468569930357 0.004921602994050568 0.007095111354933191 0.004936145797253316 0.007126589392508199 C 0.004921602994050568 0.007095111354933191 0.004866283039125391 0.006894850463625369 0.004871843559814813 0.006928721135159549 C 0.004866283039125391 0.006894850463625369 0.004876952326402858 0.00669321381269805 0.0048694195489802465 0.006720141334098037 C 0.004876952326402858 0.00669321381269805 0.004969971667211646 0.006596045007048182 0.004962236888886154 0.006605590878359709" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2776126987703383,0.05302373689430344) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003130110394729326 0.003037743866766822 C 0.0031348019466137817 0.0030485097601734147 0.0031889386229467568 0.0031997109731779568 0.003186409017342796 0.0031669345876459364 C 0.0031889386229467568 0.0031997109731779568 0.0031583037156963636 0.003453070985276494 0.003160465661976858 0.0034310604931510665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003160465661976858 0.0034310604931510665 C 0.0031121908236694546 0.0033709848996606884 0.002477070980433209 0.002548778765950213 0.0025811676022880177 0.0027101533712665274 C 0.002477070980433209 0.002548778765950213 0.001855484416171747 0.0013932662175293576 0.0019113061997191524 0.0014945652293552937" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0019113061997191524 0.0014945652293552937 C 0.0019689046079125914 0.001584136439922265 0.002704054114291267 0.0026980179759432442 0.002602487098040419 0.00256941975615895 C 0.002704054114291267 0.0026980179759432442 0.0031740790027867346 0.0030767708759841445 0.003130110394729326 0.003037743866766822" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27839242826806476,0.05302373689430344) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032380666815862843 0.003037743866766822 C 0.0032820352896436936 0.002998716857549499 0.0038672569945260474 0.0024408215363746558 0.003765689978275198 0.00256941975615895 C 0.0038672569945260474 0.0024408215363746558 0.0045144692847899175 0.0014049940187883224 0.004456870876596478 0.0014945652293552937" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004456870876596478 0.0014945652293552937 C 0.004401049093049071 0.0015958642411812297 0.00368291285217279 0.002871527976582842 0.0037870094740276 0.0027101533712665274 C 0.00368291285217279 0.002871527976582842 0.0031594365760313475 0.0034911360866414446 0.0032077114143387515 0.0034310604931510665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032077114143387515 0.0034310604931510665 C 0.0032055494680582573 0.003409050001025639 0.0031842976645767847 0.003134158202113916 0.0031817680589728238 0.0031669345876459364 C 0.0031842976645767847 0.003134158202113916 0.0032427582334707394 0.003026977973360229 0.0032380666815862843 0.003037743866766822" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節35">
<g transform="translate(0.2780025635192015,0.05267330354045348) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.004983833134063354 0.006640634213744704 C 0.004988414268756718 0.006623537186312752 0.005055903777815679 0.006405856964390742 0.005038806750383726 0.006435469884561282 C 0.005055903777815679 0.006405856964390742 0.005218610383417319 0.00626818214426628 0.0051889974632467785 0.0062852791716982315 C 0.005218610383417319 0.00626818214426628 0.0054283558472941135 0.00623030555537786 0.00539416179243021 0.00623030555537786 C 0.0054283558472941135 0.00623030555537786 0.005628939041784159 0.006302376199130183 0.00559932612161362 0.0062852791716982315 C 0.005628939041784159 0.006302376199130183 0.005766613861908624 0.006465082804731822 0.0057495168344766714 0.006435469884561282 C 0.005766613861908624 0.006465082804731822 0.005809071585490408 0.006657731241176659 0.005804490450797044 0.006640634213744706" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005804490450797044 0.006640634213744706 C 0.005811838490206261 0.006649702791490657 0.005899823062259134 0.006775038292026102 0.005892666923707652 0.006749457146696114 C 0.005899823062259134 0.006775038292026102 0.005885081618759865 0.006979785095662027 0.005890364113414816 0.006947607957704556 C 0.005885081618759865 0.006979785095662027 0.005815461324805628 0.007165486937882026 0.005829276987848238 0.007135582802185769 C 0.005815461324805628 0.007165486937882026 0.0057158510876581005 0.007320697151382467 0.005724576156903496 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005724576156903496 0.007306457586059644 C 0.005716511479674097 0.00732592743920302 0.005600265499777935 0.007567630354152928 0.005627800030150709 0.007540095823780154 C 0.005600265499777935 0.007567630354152928 0.005355222086143458 0.007636871950532939 0.005394161792430209 0.007636871950532939 C 0.005355222086143458 0.007636871950532939 0.005132989024336914 0.007512561293407379 0.005160523554709689 0.007540095823780154 C 0.005132989024336914 0.007512561293407379 0.0050556827507275024 0.0072869877329162685 0.005063747427956901 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005063747427956901 0.007306457586059644 C 0.005055022358711506 0.007292218020736822 0.00494523093396955 0.007105678666489511 0.00495904659701216 0.007135582802185769 C 0.00494523093396955 0.007105678666489511 0.004892676976790631 0.006915430819747081 0.0048979594714455826 0.0069476079577045526 C 0.004892676976790631 0.006915430819747081 0.004902812799704224 0.006723876001366127 0.004895656661152743 0.006749457146696114 C 0.004902812799704224 0.006723876001366127 0.004991181173472572 0.006631565635998755 0.004983833134063354 0.006640634213744706" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27763219200778144,0.052340391854296) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.00313280930190075 0.0030450611003363707 C 0.003137266276190983 0.0030552886990726337 0.003188696118707309 0.0031989298514269494 0.0031862929933835463 0.00316779228517153 C 0.003188696118707309 0.0031989298514269494 0.0031595929568194354 0.0034396218629205617 0.0031616468057859056 0.0034187118954014054" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031616468057859056 0.0034187118954014054 C 0.0031157857093938725 0.003361640081585546 0.0025124218583194385 0.0025805442545605932 0.002611313649081507 0.002733850129611092 C 0.0025124218583194385 0.0025805442545605932 0.0019219146222710507 0.0014828073335607815 0.001974945316641086 0.0015790413947954207" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.001974945316641086 0.0015790413947954207 C 0.002029663804424853 0.0016641340448340434 0.002728055835484594 0.0027223215040539715 0.0026315671700462887 0.0026001531952588924 C 0.002728055835484594 0.0027223215040539715 0.0031745794795552873 0.0030821367590928273 0.003132809301900749 0.0030450611003363707" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2783729350306216,0.052340391854296) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032353677744148606 0.0030450611003363707 C 0.0032771379520693997 0.003007985441579914 0.0038330985717076375 0.0024779848864638133 0.0037366099062693305 0.0026001531952588924 C 0.0038330985717076375 0.0024779848864638133 0.0044479502474583125 0.001493948744756798 0.004393231759674545 0.0015790413947954207" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004393231759674545 0.0015790413947954207 C 0.0043402010653045085 0.00167527545603006 0.0036579716364720403 0.002887156004661591 0.00375686342723411 0.002733850129611092 C 0.0036579716364720403 0.002887156004661591 0.0031606691741376714 0.003475783709217265 0.003206530270529705 0.0034187118954014054" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003206530270529705 0.0034187118954014054 C 0.0032044764215632356 0.003397801927882249 0.0031842872082558367 0.0031366547189161107 0.003181884082932074 0.00316779228517153 C 0.0031842872082558367 0.0031366547189161107 0.003239824748705093 0.0030348335016001076 0.0032353677744148606 0.0030450611003363707" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節36">
<g transform="translate(0.2780025635192015,0.05200748016813854) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.005004349566981698 0.00667392538236045 C 0.005008701644940394 0.006657683206300096 0.005072816678546403 0.006450886995474187 0.005056574502486049 0.0064790192696362 C 0.005072816678546403 0.006450886995474187 0.005227387953867962 0.006320095916355947 0.0051992556797059485 0.0063363380924163016 C 0.005227387953867962 0.006320095916355947 0.005426646144550918 0.00628411315691195 0.00539416179243021 0.00628411315691195 C 0.005426646144550918 0.00628411315691195 0.005617200179316462 0.006352580268476656 0.00558906790515445 0.0063363380924163016 C 0.005617200179316462 0.006352580268476656 0.005747991258434701 0.006507151543798212 0.0057317490823743465 0.0064790192696362 C 0.005747991258434701 0.006507151543798212 0.005788326095837397 0.0066901675584208065 0.005783974017878701 0.006673925382360452" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005783974017878701 0.006673925382360452 C 0.0057909546553174575 0.006682540531219105 0.005874539998767686 0.006801609256727778 0.0058677416671437796 0.00677730716866429 C 0.005874539998767686 0.006801609256727778 0.005860535627443384 0.006996118720181909 0.005865553997365588 0.0069655504391223115 C 0.005860535627443384 0.006996118720181909 0.005794396348186856 0.007172535470290905 0.005807521228077336 0.007144126541379461 C 0.005794396348186856 0.007172535470290905 0.005699766622896705 0.007319985173116326 0.00570805543867983 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00570805543867983 0.007306457586059644 C 0.005700393995311901 0.007324953946545851 0.005589960314410547 0.00755457171574826 0.005616118118264682 0.007528413911894124 C 0.005589960314410547 0.00755457171574826 0.005357169071457795 0.007620351232309275 0.005394161792430209 0.007620351232309275 C 0.005357169071457795 0.007620351232309275 0.005146047662741577 0.007502256108039988 0.0051722054665957135 0.007528413911894124 C 0.005146047662741577 0.007502256108039988 0.005072606702812636 0.0072879612255734375 0.005080268146180565 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005080268146180565 0.007306457586059644 C 0.005071979330397439 0.007292929999002962 0.004967677476892583 0.007115717612468016 0.004980802356783062 0.007144126541379461 C 0.004967677476892583 0.007115717612468016 0.00491775121757261 0.006934982158062711 0.004922769587494814 0.006965550439122308 C 0.00491775121757261 0.006934982158062711 0.004927380249340522 0.0067530050806008015 0.004920581917716615 0.00677730716866429 C 0.004927380249340522 0.0067530050806008015 0.005011330204420454 0.006665310233501799 0.005004349566981698 0.006673925382360452" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27765071058335244,0.05169121406628894) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003135373263713603 0.003052012472227444 C 0.0031396073892893243 0.0030617286910268942 0.003188465739679834 0.003198187785763494 0.0031861827706222592 0.0031686070978208455 C 0.003188465739679834 0.003198187785763494 0.003160817735886355 0.003426845196682424 0.0031627688924045017 0.0034069807275392255" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031627688924045017 0.0034069807275392255 C 0.00311920085083207 0.003352762504414159 0.002546005192311358 0.0026107214687404543 0.002639952393535323 0.002756362050038428 C 0.002546005192311358 0.0026107214687404543 0.001985023318065389 0.0015678713937906327 0.0020354024777169224 0.00165929375196354" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0020354024777169224 0.00165929375196354 C 0.002087385041111501 0.0017401317695002318 0.0027508574706182542 0.002745409855759165 0.0026591932384518644 0.0026293499624038394 C 0.0027508574706182542 0.002745409855759165 0.0031750549324854145 0.0030872343480460775 0.003135373263713603 0.003052012472227444" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2783544164550506,0.05169121406628894) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032328038126020076 0.003052012472227444 C 0.0032724854813738196 0.0030167905964088105 0.0038006480700301455 0.002513290069048514 0.003708983837863754 0.0026293499624038394 C 0.0038006480700301455 0.002513290069048514 0.004384757161993284 0.0015784557344268484 0.004332774598598705 0.00165929375196354" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004332774598598705 0.00165929375196354 C 0.004282395438947171 0.0017507161101364475 0.0036342774815563304 0.0029020026313364014 0.0037282246827802963 0.002756362050038428 C 0.0036342774815563304 0.0029020026313364014 0.003161840142338679 0.003461198950664292 0.003205408183911111 0.0034069807275392255" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003205408183911111 0.0034069807275392255 C 0.0032034570273929653 0.003387116258396027 0.0031842772747509357 0.003139026409878197 0.003181994305693361 0.0031686070978208455 C 0.0031842772747509357 0.003139026409878197 0.003237037938177728 0.0030422962534279938 0.0032328038126020076 0.003052012472227444" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節37">
<g transform="translate(0.2780025635192015,0.051374947964439345) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.005023840178254123 0.006705551992545409 C 0.0050279746523148846 0.006690121925288073 0.005088883934240594 0.006493665525003462 0.005073453866983258 0.006520391185457373 C 0.005088883934240594 0.006493665525003462 0.005235726645796074 0.0063694139998411335 0.005209000985342161 0.00638484406709847 C 0.005235726645796074 0.0063694139998411335 0.005425021926944882 0.006335230378369334 0.00539416179243021 0.006335230378369334 C 0.005425021926944882 0.006335230378369334 0.005606048259972149 0.006400274134355806 0.005579322599518237 0.00638484406709847 C 0.005606048259972149 0.006400274134355806 0.005730299785134476 0.006547116845911285 0.00571486971787714 0.006520391185457373 C 0.005730299785134476 0.006547116845911285 0.005768617880667038 0.006720982059802748 0.005764483406606276 0.006705551992545412" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005764483406606276 0.006705551992545412 C 0.005771115012173095 0.0067137363839611325 0.005850521088450811 0.006826851673194372 0.005844062673408099 0.006803764689534058 C 0.005850521088450811 0.006826851673194372 0.005837216935692722 0.007011635663475794 0.005841984387118816 0.006982595796469176 C 0.005837216935692722 0.007011635663475794 0.005774384620399024 0.007179231576079346 0.00578685325629498 0.007152243093613474 C 0.005774384620399024 0.007179231576079346 0.005684486381373379 0.007319308793763492 0.005692360756367349 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005692360756367349 0.007306457586059644 C 0.005685082385167816 0.007324029128521541 0.00558017038831153 0.00754216600926383 0.005605020301972958 0.007517316095602401 C 0.00558017038831153 0.00754216600926383 0.0053590187075064155 0.007604656549996794 0.005394161792430209 0.007604656549996794 C 0.0053590187075064155 0.007604656549996794 0.005158453369226009 0.0074924661819409715 0.0051833032828874385 0.007517316095602401 C 0.005158453369226009 0.0074924661819409715 0.005088684457293516 0.0072888860435977474 0.005095962828493048 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005095962828493048 0.007306457586059644 C 0.00508808845349908 0.007293606378355797 0.0049890016926694624 0.007125254611147601 0.005001470328565418 0.007152243093613474 C 0.0049890016926694624 0.007125254611147601 0.004941571746315488 0.006953555929462557 0.004946339197741582 0.006982595796469176 C 0.004941571746315488 0.006953555929462557 0.0049507193264950065 0.006780677705873744 0.0049442609114522945 0.006803764689534058 C 0.0049507193264950065 0.006780677705873744 0.005030471783820942 0.006697367601129691 0.005023840178254123 0.006705551992545412" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2776683032301449,0.05107449516768223) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0031378090274358146 0.003058616275523963 C 0.0031418314467327496 0.0030678466833834405 0.003188246879603733 0.003197482823383209 0.003186078058999037 0.003169381169837693 C 0.003188246879603733 0.003197482823383209 0.003161981275999928 0.0034147073637561926 0.003163834874692167 0.003395836118070154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003163834874692167 0.003395836118070154 C 0.003122445235198357 0.0033443288061013408 0.0025779093596036812 0.002639389822211321 0.002667159200766448 0.002777748374444396 C 0.0025779093596036812 0.002639389822211321 0.0020449765790700107 0.0016486822510089925 0.0020928367807389672 0.0017355334912732543" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0020928367807389672 0.0017355334912732543 C 0.002142220215963817 0.0018123296079331113 0.0027725190239952335 0.002767343789879098 0.002685438003437163 0.002657086891191539 C 0.0027725190239952335 0.002767343789879098 0.003175506612769034 0.003092077057551665 0.0031378090274358133 0.003058616275523963" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27833682380825814,0.05107449516768223) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003230368048879799 0.003058616275523963 C 0.0032680656342130203 0.003025155493496261 0.0037698200934365286 0.0025468299925039796 0.0036827390728784567 0.002657086891191539 C 0.0037698200934365286 0.0025468299925039796 0.004324723730801513 0.0016587373746133973 0.004275340295576663 0.0017355334912732543" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004275340295576663 0.0017355334912732543 C 0.004227480093907705 0.0018223847315375161 0.0036117680343864043 0.002916106926677471 0.0037010178755491722 0.002777748374444396 C 0.0036117680343864043 0.002916106926677471 0.0031629525621296355 0.0034473434300389674 0.003204342201623446 0.003395836118070154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003204342201623446 0.003395836118070154 C 0.0032024886029312074 0.0033769648723841156 0.0031842678379212803 0.0031412795162921773 0.0031820990173165842 0.003169381169837693 C 0.0031842678379212803 0.0031412795162921773 0.0032343904681767337 0.0030493858676644858 0.003230368048879799 0.003058616275523963" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節38">
<g transform="translate(0.2780025635192015,0.050774042370925115) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.005042356258962926 0.00673559727222112 C 0.005046284009320649 0.006720938708326651 0.005104147827150075 0.006534305128056269 0.005089489263255605 0.006559694505487486 C 0.005104147827150075 0.006534305128056269 0.00524364840312778 0.006416266179152059 0.005218259025696563 0.006430924743046529 C 0.00524364840312778 0.006416266179152059 0.005423478920219149 0.006383791738753849 0.00539416179243021 0.006383791738753849 C 0.005423478920219149 0.006383791738753849 0.005595453936595051 0.006445583306940999 0.0055700645591638355 0.006430924743046529 C 0.005595453936595051 0.006445583306940999 0.005713492885499264 0.006585083882918702 0.005698834321604794 0.006559694505487486 C 0.005713492885499264 0.006585083882918702 0.005749895076255198 0.006750255836115592 0.005745967325897474 0.006735597272221122" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005745967325897474 0.006735597272221122 C 0.005752267351185952 0.006743372444066057 0.00582770312364978 0.006850831968837638 0.005821567629359204 0.006828899334360339 C 0.00582770312364978 0.006850831968837638 0.0058150641785295965 0.007026376759604986 0.005819593257384385 0.0069987888859486995 C 0.0058150641785295965 0.007026376759604986 0.005755373479000582 0.007185592876578357 0.005767218683101739 0.007159953818235778 C 0.005755373479000582 0.007185592876578357 0.0056699701519262215 0.0073186662333783 0.005677450808170492 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005677450808170492 0.007306457586059644 C 0.005670536355530936 0.007323150551398446 0.005570869958517462 0.00753038058810362 0.0055944773764958185 0.007506773170125262 C 0.005570869958517462 0.00753038058810362 0.005360775861752605 0.007589746601799934 0.005394161792430209 0.007589746601799934 C 0.005360775861752605 0.007589746601799934 0.005170238790386218 0.007483165752146905 0.005193846208364577 0.007506773170125262 C 0.005170238790386218 0.007483165752146905 0.0051039583240503495 0.007289764620720843 0.005110872776689906 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005110872776689906 0.007306457586059644 C 0.005103392120445635 0.007294248938740988 0.0050092596976575015 0.007134314759893199 0.005021104901758659 0.007159953818235778 C 0.0050092596976575015 0.007134314759893199 0.004964201248621225 0.006971201012292413 0.004968730327476014 0.0069987888859486995 C 0.004964201248621225 0.006971201012292413 0.004972891449791766 0.006806966699883041 0.004966755955501189 0.006828899334360339 C 0.004972891449791766 0.006806966699883041 0.005048656284251404 0.006727822100376187 0.005042356258962926 0.006735597272221122" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27768501624459774,0.05048861221400584) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0031401230029719147 0.0030648898886556555 C 0.003143944301304003 0.003073658776122159 0.0031880389625314376 0.003196813109121941 0.0031859785829569764 0.0031701165382537005 C 0.0031880389625314376 0.003196813109121941 0.0031630866391078225 0.0034031764224762753 0.0031648475578654497 0.0033852487390745385" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031648475578654497 0.0033852487390745385 C 0.00312552740034633 0.003336316792704166 0.002608218318531388 0.0026666247580086457 0.0026930056676360164 0.002798065382630067 C 0.002608218318531388 0.0026666247580086457 0.0021019321770244007 0.0017254525653664342 0.0021473993686099094 0.0018079612436174828" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0021473993686099094 0.0018079612436174828 C 0.0021943136320735166 0.001880917554444347 0.0027930974997033625 0.002788181027293034 0.0027103705301731954 0.002683436973539853 C 0.0027930974997033625 0.002788181027293034 0.003175935709038474 0.0030966776315819724 0.0031401230029719143 0.0030648898886556555" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2783201107938053,0.05048861221400584) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032280540733436993 0.0030648898886556555 C 0.00326386677941026 0.0030331021457293385 0.0037405335156725943 0.002578692919786672 0.003657806546142426 0.002683436973539853 C 0.0037405335156725943 0.002578692919786672 0.004267691971169329 0.0017350049327906187 0.004220777707705721 0.0018079612436174828" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004220777707705721 0.0018079612436174828 C 0.004175310516120211 0.0018904699218685315 0.003590384059574974 0.0029295060072514886 0.0036751714086796037 0.002798065382630067 C 0.003590384059574974 0.0029295060072514886 0.0031640093609310443 0.003434180685444911 0.0032033295184501643 0.0033852487390745385" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032033295184501643 0.0033852487390745385 C 0.003201568599692538 0.003367321055672802 0.0031842588729331066 0.00314341996738546 0.0031821984933586454 0.0031701165382537005 C 0.0031842588729331066 0.00314341996738546 0.0032318753716757873 0.003056121001189152 0.0032280540733436993 0.0030648898886556555" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節39">
<g transform="translate(0.2780025635192015,0.05020318205708659) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.00505994653563629 0.006764140287913047 C 0.005063677898476127 0.006750214652213301 0.00511864852541408 0.0065729127509564405 0.005104722889714334 0.0065970326595160955 C 0.00511864852541408 0.0065729127509564405 0.005251174072592901 0.006460775749497437 0.0052270541640332445 0.006474701385197184 C 0.005251174072592901 0.006460775749497437 0.005422013063829702 0.006429925031119137 0.00539416179243021 0.006429925031119137 C 0.005422013063829702 0.006429925031119137 0.005585389329386807 0.006488627020896931 0.005561269420827153 0.006474701385197184 C 0.005585389329386807 0.006488627020896931 0.00569752633084581 0.0066211525680757504 0.0056836006951460636 0.0065970326595160955 C 0.00569752633084581 0.0066211525680757504 0.005732108412063945 0.0067780659236127945 0.005728377049224108 0.0067641402879130485" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005728377049224108 0.0067641402879130485 C 0.005734362073248162 0.0067715267011657365 0.005806026057088802 0.006873613249698737 0.005800197337512755 0.0068527772469453045 C 0.005806026057088802 0.006873613249698737 0.005794019059224626 0.007040380800927717 0.005798321684136676 0.007014172320954245 C 0.005794019059224626 0.007040380800927717 0.005737312894672064 0.0071916361120524215 0.005748565838568164 0.007167279006626972 C 0.005737312894672064 0.0071916361120524215 0.0056561797339514195 0.007318055801012367 0.005663286357383477 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005663286357383477 0.007306457586059644 C 0.005656717627375899 0.007322315903131506 0.0055620345502130995 0.007519184438001423 0.005584461597292538 0.007496757390921984 C 0.0055620345502130995 0.007519184438001423 0.005362445158286486 0.00757558215101292 0.005394161792430209 0.00757558215101292 C 0.005362445158286486 0.00757558215101292 0.0051814349404884176 0.007474330343842544 0.005203861987567859 0.007496757390921984 C 0.0051814349404884176 0.007474330343842544 0.00511846849746934 0.007290599268987783 0.005125037227476918 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005125037227476918 0.007306457586059644 C 0.005117930604044862 0.007294859371106921 0.005028504802396134 0.007142921901201522 0.005039757746292234 0.007167279006626972 C 0.005028504802396134 0.007142921901201522 0.004985699275811672 0.006987963840980773 0.004990001900723721 0.007014172320954245 C 0.004985699275811672 0.006987963840980773 0.004993954966923687 0.006831941244191872 0.00498812624734764 0.0068527772469453045 C 0.004993954966923687 0.006831941244191872 0.005065931559660344 0.0067567538746603605 0.00505994653563629 0.0067641402879130485" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2777008936083279,0.049932023408013296) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0031423212797312083 0.0030708498211307646 C 0.0031459515131466924 0.003079180264223943 0.003187841441312757 0.003196176880573735 0.0031858840807170185 0.0031708151382489067 C 0.003187841441312757 0.003196176880573735 0.003164136734060322 0.0033922220282603514 0.0031658096068800682 0.0033751907290287017" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031658096068800682 0.0033751907290287017 C 0.0031284554572369046 0.0033287053799768477 0.0026370118295127097 0.002692497947016105 0.0027175598111621067 0.0028173665404064552 C 0.0026370118295127097 0.002692497947016105 0.002156039995081071 0.0017983843640060027 0.0021992338270873046 0.001876767608344499" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0021992338270873046 0.001876767608344499 C 0.0022438023773777315 0.00194607610363002 0.002812647051626085 0.0028079764028362732 0.0027340564305724266 0.0027084695517707513 C 0.002812647051626085 0.0028079764028362732 0.00317634335049444 0.003101048176910766 0.0031423212797312083 0.0030708498211307646" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2783042334300751,0.049932023408013296) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032258557965844045 0.0030708498211307646 C 0.003259877867347637 0.0030406514653507632 0.0037127112667968538 0.0026089627007052293 0.0036341206457431935 0.0027084695517707513 C 0.0037127112667968538 0.0026089627007052293 0.004213511799518753 0.001807459113058978 0.004168943249228325 0.001876767608344499" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004168943249228325 0.001876767608344499 C 0.004125749417222091 0.0019551508526829955 0.0035700692835041155 0.0029422351337968053 0.003650617265153514 0.0028173665404064552 C 0.0035700692835041155 0.0029422351337968053 0.0031650133197923826 0.0034216760780805557 0.0032023674694355467 0.0033751907290287017" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032023674694355467 0.0033751907290287017 C 0.0032006945966158015 0.003358159429797052 0.0031842503561943427 0.0031454533959240786 0.0031822929955986046 0.0031708151382489067 C 0.0031842503561943427 0.0031454533959240786 0.0032294860299998877 0.003062519378037586 0.0032258557965844045 0.0030708498211307646" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節40">
<g transform="translate(0.2780025635192015,0.04966086475894) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.005076657298475987 0.006791256152820376 C 0.005080202093173832 0.006778026798905617 0.005132424188764887 0.0066095899927116 0.005119194834850129 0.0066325039058432725 C 0.005132424188764887 0.0066095899927116 0.005258323458584766 0.006503059841325549 0.005235409545453093 0.006516289195240309 C 0.005258323458584766 0.006503059841325549 0.005420620500259727 0.006473751658866164 0.00539416179243021 0.006473751658866164 C 0.005420620500259727 0.006473751658866164 0.005575827952538977 0.006529518549155068 0.005552914039407305 0.006516289195240309 C 0.005575827952538977 0.006529518549155068 0.0056823581039250285 0.0066554178189749446 0.00566912875001027 0.0066325039058432725 C 0.0056823581039250285 0.0066554178189749446 0.0057152110810822585 0.006804485506735136 0.005711666286384413 0.006791256152820378" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005711666286384413 0.006791256152820378 C 0.005717352059207264 0.006798273245410431 0.00578543284385587 0.006895255466516783 0.005779895560258625 0.006875461263901021 C 0.00578543284385587 0.006895255466516783 0.005774026195884905 0.0070536846401843155 0.005778113689551352 0.007028786584209517 C 0.005774026195884905 0.0070536846401843155 0.005720155339559969 0.0071973771857527825 0.005730845636261264 0.0071742379355986055 C 0.005720155339559969 0.0071973771857527825 0.005643078836875358 0.00731747589026473 0.005649830129135813 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005649830129135813 0.007306457586059644 C 0.005643589835628614 0.007321522987277913 0.0055536409123239545 0.007508548095404333 0.005574946607049422 0.007487242400678865 C 0.0055536409123239545 0.007508548095404333 0.005364030989993672 0.0075621259227652594 0.005394161792430209 0.0075621259227652594 C 0.005364030989993672 0.0075621259227652594 0.005192071283085507 0.007465936705953397 0.005213376977810976 0.007487242400678865 C 0.005192071283085507 0.007465936705953397 0.005132253162217384 0.0072913921848413756 0.005138493455724584 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005138493455724584 0.007306457586059644 C 0.005131742163464129 0.007295439281854558 0.005046787651897837 0.0071510986854444285 0.005057477948599132 0.0071742379355986055 C 0.005046787651897837 0.0071510986854444285 0.0050061224016426 0.007003888528234716 0.005010209895309047 0.0070287865842095145 C 0.0050061224016426 0.007003888528234716 0.005013965308199014 0.00685566706128526 0.005008428024601768 0.006875461263901021 C 0.005013965308199014 0.00685566706128526 0.005082343071298839 0.006784239060230324 0.005076657298475987 0.006791256152820378" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2777159771038716,0.04940326404232037) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0031444096426525396 0.0030765117569821164 C 0.0031478583643972497 0.0030844256779206363 0.00318765379615501 0.0031955724634529395 0.0031857943035890584 0.0031714788082443527 C 0.00318765379615501 0.0031955724634529395 0.003165134324265197 0.003381815353755224 0.003166723553443956 0.0033656356194851572" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003166723553443956 0.0033656356194851572 C 0.0031312371112829506 0.003321474537885896 0.0026643656649449642 0.0027170774765731915 0.0027408862475118913 0.0028357026402940242 C 0.0026643656649449642 0.0027170774765731915 0.0022074424222349094 0.001867669572713593 0.002248476562640831 0.0019421336548351648" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.002248476562640831 0.0019421336548351648 C 0.0022908166854167366 0.0020079767253564098 0.0028312191259526717 0.0028267820096023505 0.002756558035951696 0.0027322505010901046 C 0.0028312191259526717 0.0028267820096023505 0.00317673060987761 0.0031052001949731173 0.0031444096426525396 0.0030765117569821164" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2782891499345314,0.04940326404232037) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032237674336630757 0.0030765117569821164 C 0.0032560884008881463 0.0030478233189911155 0.0036862801303649026 0.0026377189925778587 0.0036116190403639257 0.0027322505010901046 C 0.0036862801303649026 0.0026377189925778587 0.004162040636450706 0.0018762905843139198 0.0041197005136748 0.0019421336548351648" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0041197005136748 0.0019421336548351648 C 0.0040786663732688775 0.0020165977369567363 0.0035507702462368013 0.002954327804014857 0.0036272908288037297 0.0028357026402940242 C 0.0035507702462368013 0.002954327804014857 0.0031659670807106543 0.0034097967010844185 0.00320145352287166 0.0033656356194851572" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00320145352287166 0.0033656356194851572 C 0.003199864293692902 0.0033494558852150903 0.0031842422652925166 0.003147385153035766 0.003182382772726565 0.0031714788082443527 C 0.0031842422652925166 0.003147385153035766 0.003227216155407785 0.0030685978360435965 0.0032237674336630757 0.0030765117569821164" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節41">
<g transform="translate(0.2780025635192015,0.049145663325700736) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.005092532523173697 0.0068170162244823385 C 0.00509590007813665 0.006804448338263318 0.005145511068948152 0.006644433372379001 0.005132943182729131 0.006666201589854089 C 0.005145511068948152 0.006644433372379001 0.005265115375277039 0.006543229728562255 0.005243347157801949 0.006555797614781276 C 0.005265115375277039 0.006543229728562255 0.005419297564868251 0.006515386955225839 0.00539416179243021 0.006515386955225839 C 0.005419297564868251 0.006515386955225839 0.005566744644533538 0.006568365501000296 0.00554497642705845 0.006555797614781276 C 0.005566744644533538 0.006568365501000296 0.005667948288350285 0.006687969807329178 0.005655380402131265 0.006666201589854089 C 0.005667948288350285 0.006687969807329178 0.005699158616649655 0.006829584110701362 0.005695791061686702 0.006817016224482341" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005695791061686702 0.006817016224482341 C 0.00570119254586841 0.006823682462442892 0.0057658692912845875 0.006915815572493924 0.005760608871867205 0.006897011080008951 C 0.0057658692912845875 0.006915815572493924 0.005755032975712169 0.0070663232874780815 0.0057589160946952935 0.007042670134302023 C 0.005755032975712169 0.0070663232874780815 0.005703855662203481 0.007202831205768127 0.005714011444069711 0.007180848918121659 C 0.005703855662203481 0.007202831205768127 0.005630632984653101 0.007316924975054476 0.0056370467123005325 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0056370467123005325 0.007306457586059644 C 0.005631118433468693 0.007320769717216999 0.005545666956329267 0.007498443569937097 0.005565907366318461 0.007478203159947903 C 0.005545666956329267 0.007498443569937097 0.0053655375301154985 0.0075493425059299755 0.005394161792430209 0.0075493425059299755 C 0.0053655375301154985 0.0075493425059299755 0.00520217580855274 0.007457962749958709 0.005222416218541936 0.007478203159947903 C 0.00520217580855274 0.007457962749958709 0.005145348593728024 0.007292145454902289 0.0051512768725598635 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0051512768725598635 0.007306457586059644 C 0.005144863144912432 0.007295990197064812 0.005064156358924455 0.00715886663047519 0.005074312140790685 0.007180848918121659 C 0.005064156358924455 0.00715886663047519 0.005025524371181979 0.007019016981125964 0.0050294074901651034 0.007042670134302023 C 0.005025524371181979 0.007019016981125964 0.005032975132410572 0.006878206587523977 0.00502771471299319 0.006897011080008951 C 0.005032975132410572 0.006878206587523977 0.005097934007355406 0.00681034998652179 0.005092532523173697 0.006817016224482341" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2777303064246381,0.048900942644912085) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0031463935874278034 0.0030818905960409006 C 0.0031496698730852776 0.0030894088209324944 0.0031874755332551505 0.0031949982671881836 0.0031857090153174965 0.003172109294740026 C 0.0031874755332551505 0.0031949982671881836 0.0031660820349598286 0.003371929012975355 0.0031675918026796493 0.003356558265418791" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031675918026796493 0.003356558265418791 C 0.0031338796826266943 0.003314605237899493 0.002690351808605607 0.002740428029652422 0.002763046362044188 0.002853121935187213 C 0.002690351808605607 0.002740428029652422 0.002256274728031054 0.0019334905209858057 0.0022952571614166797 0.0020042313990012986" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0022952571614166797 0.0020042313990012986 C 0.00233548027805379 0.0020667823159964812 0.0028488625965629286 0.002844647336030124 0.0027779345610620017 0.0027548424029434906 C 0.0028488625965629286 0.002844647336030124 0.0031770985062916203 0.003109144612132351 0.0031463935874278034 0.0030818905960409006" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2782748206137649,0.048900942644912085) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003221783488887813 0.0030818905960409006 C 0.00325248840775163 0.00305463657994945 0.003661170550754548 0.0026650374698568573 0.0035902425152536197 0.0027548424029434906 C 0.003661170550754548 0.0026650374698568573 0.004113143031536062 0.001941680482006116 0.00407291991489895 0.0020042313990012986" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00407291991489895 0.0020042313990012986 C 0.004033937481513324 0.0020749722770167915 0.0035324361608328526 0.002965815840722004 0.0036051307142714343 0.002853121935187213 C 0.0035324361608328526 0.002965815840722004 0.0031668731535830124 0.003398511292938089 0.0032005852736359678 0.003356558265418791" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0032005852736359678 0.003356558265418791 C 0.0031990755059161475 0.0033411875178622273 0.0031842345789357806 0.0031492203222918684 0.0031824680609981266 0.003172109294740026 C 0.0031842345789357806 0.0031492203222918684 0.0032250597745452866 0.0030743723711493067 0.003221783488887813 0.0030818905960409006" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節42">
<g transform="translate(0.2780025635192015,0.04865622196412343) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.005107613986636521 0.006841488292561203 C 0.005110813163851326 0.006829548800653134 0.005157943605122254 0.006677534583063034 0.005146004113214185 0.0066982143896643686 C 0.005157943605122254 0.006677534583063034 0.005271567696134695 0.006581391121437123 0.005250887889533359 0.006593330613345193 C 0.005271567696134695 0.006581391121437123 0.005418040776246349 0.00655494048676753 0.00539416179243021 0.00655494048676753 C 0.005418040776246349 0.00655494048676753 0.005558115501928371 0.006605270105253263 0.0055374356953270375 0.006593330613345193 C 0.005558115501928371 0.006605270105253263 0.005654258963554281 0.006718894196265703 0.0056423194716462115 0.0066982143896643686 C 0.005654258963554281 0.006718894196265703 0.005683908775438682 0.006853427784469275 0.005680709598223877 0.006841488292561205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005680709598223877 0.006841488292561205 C 0.0056858410081964995 0.006847821218623728 0.0057472839163418684 0.0069353476731722095 0.005742286517895355 0.006917483405311484 C 0.0057472839163418684 0.0069353476731722095 0.005736989416548072 0.00707833000240716 0.00574067837958204 0.0070558595068899044 C 0.005736989416548072 0.00707833000240716 0.005688370968714816 0.007208012524782703 0.005698018961487734 0.007187129351518558 C 0.005688370968714816 0.007208012524782703 0.005618809425041957 0.007316401605604735 0.005624902466307017 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005624902466307017 0.007306457586059644 C 0.005619270601416769 0.0073200541106591315 0.005538091698134313 0.007488844270743225 0.005557320087624047 0.007469615881253491 C 0.005538091698134313 0.007488844270743225 0.005366968743231234 0.007537198259936458 0.005394161792430209 0.007537198259936458 C 0.005366968743231234 0.007537198259936458 0.005211775107746615 0.007450387491763757 0.005231003497236351 0.007469615881253491 C 0.005211775107746615 0.007450387491763757 0.0051577892536631325 0.007292861061460157 0.00516342111855338 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00516342111855338 0.007306457586059644 C 0.00515732807728832 0.007296513566514553 0.005080656630599742 0.007166246178254412 0.00509030462337266 0.007187129351518558 C 0.005080656630599742 0.007166246178254412 0.005043956242244391 0.007033389011372646 0.005047645205278359 0.007055859506889902 C 0.005043956242244391 0.007033389011372646 0.005051034465411553 0.00689961913745076 0.00504603706696504 0.006917483405311484 C 0.005051034465411553 0.00689961913745076 0.005112745396609145 0.006835155366498682 0.005107613986636521 0.006841488292561205" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27774391927936626,0.04842373731737421) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003148278334964305 0.0030870004931467464 C 0.003151390806338906 0.0030941428067937605 0.003187306183500284 0.003194452780736665 0.003185627991459513 0.0031727082569109155 C 0.003187306183500284 0.003194452780736665 0.0031669823601197266 0.0033625369892344775 0.0031684166394535564 0.003347934779055742" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031684166394535564 0.003347934779055742 C 0.003136390125403249 0.003308079402912409 0.002715038645083218 0.002762611055077692 0.0027840984708498696 0.0028696702653357433 C 0.002715038645083218 0.002762611055077692 0.0023026654185373924 0.001996020421844405 0.0023396987302537367 0.0020632242559591235" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0023396987302537367 0.0020632242559591235 C 0.0023779106910589913 0.002122647627104547 0.002865623893642673 0.002861619396136509 0.0027982422599167928 0.002776304709704207 C 0.002865623893642673 0.002861619396136509 0.00317744800788493 0.0031128918084336247 0.003148278334964304 0.0030870004931467464" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27826120775903673,0.04842373731737421) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032198987413513134 0.0030870004931467464 C 0.0032490684142719396 0.003061109177859868 0.0036373164501247116 0.002690990023271905 0.00356993481639883 0.002776304709704207 C 0.0036373164501247116 0.002690990023271905 0.004066690306867149 0.0020038008848136998 0.004028478346061894 0.0020632242559591235" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004028478346061894 0.0020632242559591235 C 0.003991445034345549 0.002130428090073842 0.0035150187796991013 0.002976729475593795 0.003584078605465754 0.0028696702653357433 C 0.0035150187796991013 0.002976729475593795 0.003167733922811753 0.0033877901551990753 0.0031997604368620607 0.003347934779055742" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031997604368620607 0.003347934779055742 C 0.0031983261575282314 0.0033333325688770067 0.0031842272768968826 0.003150963733085166 0.0031825490848561115 0.0031727082569109155 C 0.0031842272768968826 0.003150963733085166 0.0032230112127259137 0.0030798581794997323 0.0032198987413513134 0.0030870004931467464" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節43">
<g transform="translate(0.2780025635192015,0.04819125267062499) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.0051219413769262034 0.006864736757236123 C 0.005124980595280269 0.0068533942399234575 0.005169754514487653 0.006708980733212865 0.005158411997174987 0.006728626549484132 C 0.005169754514487653 0.006708980733212865 0.005277697400949471 0.00661764444466825 0.005258051584678202 0.006628986961980917 C 0.005277697400949471 0.00661764444466825 0.0054168468270555424 0.006592516341732135 0.00539416179243021 0.006592516341732135 C 0.0054168468270555424 0.006592516341732135 0.005549917816453462 0.0066403294792935835 0.005530272000182195 0.006628986961980917 C 0.005549917816453462 0.0066403294792935835 0.005641254104998078 0.0067482723657554 0.005629911587685411 0.006728626549484132 C 0.005641254104998078 0.0067482723657554 0.005669421426288259 0.006876079274548796 0.0056663822079341935 0.0068647367572361295" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0056663822079341935 0.0068647367572361295 C 0.005671257047408186 0.006870753036995527 0.0057296278101462835 0.00695390316881658 0.005724880281622096 0.006936932114348891 C 0.0057296278101462835 0.00695390316881658 0.005719848035342176 0.007089736381589786 0.005723352550224446 0.007068389410848392 C 0.005719848035342176 0.007089736381589786 0.005673660509900585 0.00721293477784655 0.005682826103034858 0.007193095763245613 C 0.005673660509900585 0.00721293477784655 0.005607577043411369 0.00731590440462748 0.005613365432613176 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005613365432613176 0.007306457586059644 C 0.005608015160967441 0.007319374284429157 0.0055308952028491065 0.0074797249365090475 0.005549162172864354 0.007461457966493799 C 0.0055308952028491065 0.0074797249365090475 0.005368328395691183 0.007525661226242621 0.005394161792430209 0.007525661226242621 C 0.005368328395691183 0.007525661226242621 0.005220894441980793 0.007443190996478551 0.005239161411996042 0.007461457966493799 C 0.005220894441980793 0.007443190996478551 0.0051696078806014855 0.007293540887690131 0.00517495815224722 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00517495815224722 0.007306457586059644 C 0.005169169763045414 0.007297010767491808 0.0050963318886912655 0.007173256748644675 0.005105497481825538 0.007193095763245613 C 0.0050963318886912655 0.007173256748644675 0.005061466519753681 0.007047042440106997 0.005064971034635951 0.0070683894108483905 C 0.005061466519753681 0.007047042440106997 0.005068190831762486 0.006919961059881203 0.005063443303238299 0.006936932114348891 C 0.005068190831762486 0.006919961059881203 0.005126816216400196 0.006858720477476732 0.0051219413769262034 0.0068647367572361295" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27775685149135804,0.047970392256213225) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0031500688451239793 0.0030918548953973004 C 0.00315302569292985 0.0030986400933619637 0.00318714530123316 0.003193934568607723 0.0031855510187944274 0.0031732772709732607 C 0.00318714530123316 0.003193934568607723 0.0031678376690216317 0.0033536145666806447 0.0031692002343887697 0.003339742467010846" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031692002343887697 0.003339742467010846 C 0.003138775046040978 0.0033018798596746793 0.002738491139736947 0.0027836849292316975 0.002804097974215266 0.0028853911789768465 C 0.002738491139736947 0.0027836849292316975 0.0023467365745184136 0.0020554238276600766 0.0023819182206489408 0.002119267470069059" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0023819182206489408 0.002119267470069059 C 0.0024182195834139327 0.002175719672657211 0.00288154712586843 0.002877742853237574 0.002817534573828844 0.002796693901126887 C 0.00288154712586843 0.002877742853237574 0.003177780034398574 0.0031164516449198347 0.0031500688451239793 0.0030918548953973004" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.278248275547045,0.047970392256213225) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003218108231191638 0.0030918548953973004 C 0.003245819420466233 0.003067258145874766 0.0036146550545263665 0.0027156449490162 0.003550642502486779 0.002796693901126887 C 0.0036146550545263665 0.0027156449490162 0.00402256021843168 0.0020628152674809067 0.003986258855666688 0.002119267470069059" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003986258855666688 0.002119267470069059 C 0.00395107720953616 0.0021831111124780414 0.0034984722676220364 0.0029870974287219956 0.0035640791021003563 0.0028853911789768465 C 0.0034984722676220364 0.0029870974287219956 0.0031685516535790562 0.0033776050743470126 0.0031989768419268486 0.003339742467010846" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031989768419268486 0.003339742467010846 C 0.003197614276559711 0.003325870367341047 0.0031842203399599293 0.0031526199733387986 0.003182626057521197 0.0031732772709732607 C 0.0031842203399599293 0.0031526199733387986 0.0032210650789975077 0.003085069697432637 0.003218108231191638 0.0030918548953973004" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節44">
<g transform="translate(0.2780025635192015,0.047749531841801474) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.005135552397701405 0.006886822798677301 C 0.005138439655137767 0.006876047407230268 0.0051809748783847795 0.006738854575855202 0.0051701994869377465 0.006757518101312906 C 0.0051809748783847795 0.006738854575855202 0.005283520620523507 0.006652085101737819 0.005264857095065801 0.006662860493184852 C 0.005283520620523507 0.006652085101737819 0.005415712575324276 0.006628213403948511 0.00539416179243021 0.006628213403948511 C 0.005415712575324276 0.006628213403948511 0.005542130015252299 0.006673635884631885 0.005523466489794595 0.006662860493184852 C 0.005542130015252299 0.006673635884631885 0.005628899489369683 0.00677618162677061 0.00561812409792265 0.006757518101312906 C 0.005628899489369683 0.00677618162677061 0.005655658444595356 0.006897598190124336 0.005652771187158994 0.006886822798677303" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005652771187158994 0.006886822798677303 C 0.005657402284659286 0.00689253826444873 0.00571285450926048 0.0069715308896787336 0.005708344357162502 0.00695540838793443 C 0.00571285450926048 0.0069715308896787336 0.005703563723196577 0.007100572441813275 0.005706893012334734 0.007080292819608951 C 0.005703563723196577 0.007100572441813275 0.005659685574027066 0.007217610918257203 0.005668392887504625 0.007198763854386312 C 0.005659685574027066 0.007217610918257203 0.005596906280862311 0.007315432063699089 0.0056024052506040275 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0056024052506040275 0.007306457586059644 C 0.005597322492540579 0.007318728449510681 0.00552405853232816 0.007471061568986576 0.005541412153842645 0.007453707947472091 C 0.00552405853232816 0.007471061568986576 0.005369620065528134 0.007514701044233468 0.005394161792430209 0.007514701044233468 C 0.005369620065528134 0.007514701044233468 0.005229557809503263 0.007436354325957606 0.00524691143101775 0.007453707947472091 C 0.005229557809503263 0.007436354325957606 0.0051808355761929215 0.007294186722608607 0.005185918334256369 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005185918334256369 0.007306457586059644 C 0.005180419364514653 0.0072974831084201995 0.005111223383878213 0.007179916790515421 0.005119930697355772 0.007198763854386312 C 0.005111223383878213 0.007179916790515421 0.005078101283387507 0.007060013197404628 0.005081430572525664 0.007080292819608951 C 0.005078101283387507 0.007060013197404628 0.00508448937979587 0.006939285886190126 0.005079979227697892 0.00695540838793443 C 0.00508448937979587 0.006939285886190126 0.005140183495201697 0.006881107332905876 0.005135552397701405 0.006886822798677303" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2777691370927502,0.047539714448110296) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0031517698297756714 0.003096466577535326 C 0.0031545788351912485 0.003102912515601756 0.0031869924630793926 0.003193442267085227 0.003185477894762597 0.003173817834332488 C 0.0031869924630793926 0.003193442267085227 0.0031686502124784405 0.0033451382652545034 0.003169944649577222 0.0033319597705681945" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003169944649577222 0.0033319597705681945 C 0.0031410407206468195 0.003295990293598836 0.0027607710096579914 0.0028037051096780037 0.0028230975024123943 0.0029003260469358952 C 0.0027607710096579914 0.0028037051096780037 0.002388604172700384 0.0021118570631849646 0.0024220267365243848 0.0021725085234734977" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0024220267365243848 0.0021725085234734977 C 0.0024565130311511273 0.0022261381159322424 0.0028966741964829 0.002893060137483586 0.0028358622720452927 0.0028160636329784337 C 0.0028966741964829 0.002893060137483586 0.003178095459586536 0.0031198334895817335 0.0031517698297756714 0.003096466577535326" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2782359899456528,0.047539714448110296) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003216407246539947 0.003096466577535326 C 0.003242732876350812 0.0030730996654889185 0.003593126728707939 0.0027390671284732815 0.003532314804270331 0.0028160636329784337 C 0.003593126728707939 0.0027390671284732815 0.003980636634417988 0.002118878931014753 0.003946150339791245 0.0021725085234734977" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003946150339791245 0.0021725085234734977 C 0.003912727775967244 0.002233159983762031 0.003482753081148825 0.0029969469841937867 0.0035450795739032292 0.0029003260469358952 C 0.003482753081148825 0.0029969469841937867 0.003169328497807993 0.003367929247537553 0.003198232426738396 0.0033319597705681945" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003198232426738396 0.0033319597705681945 C 0.0031969379896396154 0.0033187812758818857 0.0031842137498698238 0.0031541934015797486 0.003182699181553028 0.003173817834332488 C 0.0031842137498698238 0.0031541934015797486 0.0032192162519555237 0.003090020639468896 0.003216407246539947 0.003096466577535326" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節45">
<g transform="translate(0.2780025635192015,0.04732989705441913) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.005148482867437844 0.006907804538046418 C 0.005151225762002388 0.006897567916171737 0.005191634224087051 0.006767234726365423 0.005181397602212369 0.006784965075550242 C 0.005191634224087051 0.006767234726365423 0.005289052679118842 0.006684803725953911 0.005271322329934022 0.0066950403478285925 C 0.005289052679118842 0.006684803725953911 0.0054146350361795725 0.0066621256130540655 0.00539416179243021 0.0066621256130540655 C 0.0054146350361795725 0.0066621256130540655 0.005534731604111192 0.006705276969703274 0.005517001254926374 0.0066950403478285925 C 0.005534731604111192 0.006705276969703274 0.005617162604522709 0.006802695424735061 0.005606925982648028 0.006784965075550242 C 0.005617162604522709 0.006802695424735061 0.005642583611987099 0.006918041159921102 0.005639840717422555 0.006907804538046421" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005639840717422555 0.006907804538046421 C 0.005644240260047832 0.006913234230529277 0.005696919873418965 0.006988277224497779 0.005692635228925886 0.00697296084784069 C 0.005696919873418965 0.006988277224497779 0.005688093626658257 0.007110866699025595 0.005691256451339506 0.007091601057931487 C 0.005688093626658257 0.007110866699025595 0.005646409384947222 0.007222053251647325 0.005654681332750903 0.007204148540969979 C 0.005646409384947222 0.007222053251647325 0.0055867690564407055 0.007314983339817116 0.005591993077695336 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005591993077695336 0.007306457586059644 C 0.0055871644575350606 0.007318114906338129 0.005517563695333263 0.0074628313698402275 0.005534049635772024 0.007446345429401466 C 0.005517563695333263 0.0074628313698402275 0.005370847151873238 0.007504288871324781 0.005394161792430209 0.007504288871324781 C 0.005370847151873238 0.007504288871324781 0.005237788008649612 0.007429859488962704 0.005254273949088374 0.007446345429401466 C 0.005237788008649612 0.007429859488962704 0.005191501887004785 0.007294800265781159 0.005196330507165061 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005196330507165061 0.007306457586059644 C 0.00519110648591043 0.007297931832302172 0.005125370304305813 0.007186243830292633 0.005133642252109494 0.007204148540969979 C 0.005125370304305813 0.007186243830292633 0.00509390430883964 0.00707233541683738 0.005097067133520889 0.007091601057931487 C 0.00509390430883964 0.00707233541683738 0.005099973000427588 0.0069576444711836015 0.0050956883559345086 0.00697296084784069 C 0.005099973000427588 0.0069576444711836015 0.005152882410063122 0.006902374845563565 0.005148482867437844 0.006907804538046421" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27778080841407277,0.047130570530412516) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003153385765194778 0.003100847675566451 C 0.003156054320339576 0.0031069713167295597 0.0031868472668333137 0.0031929745806388563 0.0031854084269323573 0.0031743313695237543 C 0.0031868472668333137 0.0031929745806388563 0.00316942212876241 0.003337085778899669 0.003170651844006252 0.0033245662089476757" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003170651844006252 0.0033245662089476757 C 0.0031431931115223698 0.0032903952058267855 0.0027819368860829818 0.0028227242811019945 0.0028411470541996648 0.0029145141714969915 C 0.0027819368860829818 0.0028227242811019945 0.002428378390973255 0.0021654686369336077 0.002460129826606056 0.002223087524207714" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.002460129826606056 0.002223087524207714 C 0.0024928918065014612 0.0022740356370435214 0.0029110449135666453 0.002907611557517297 0.0028532735853509183 0.002834464878237402 C 0.0029110449135666453 0.002907611557517297 0.0031783951135150998 0.0031230462420105388 0.003153385765194778 0.003100847675566451" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2782243186243303,0.047130570530412516) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032147913111208403 0.003100847675566451 C 0.0032398006594411624 0.0030786491091223636 0.003572674819180433 0.002761318198957507 0.0035149034909647053 0.002834464878237402 C 0.003572674819180433 0.002761318198957507 0.003940809229604978 0.0021721394113719066 0.003908047249709573 0.002223087524207714" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003908047249709573 0.002223087524207714 C 0.003876295814076772 0.0022807064114818204 0.0034678198539992745 0.0030063040618919885 0.0035270300221159584 0.0029145141714969915 C 0.0034678198539992745 0.0030063040618919885 0.003170066499825484 0.003358737212068566 0.0031975252323093667 0.0033245662089476757" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031975252323093667 0.0033245662089476757 C 0.003196295517065525 0.0033120466389956822 0.0031842074892842235 0.0031556881584086523 0.0031827686493832675 0.0031743313695237543 C 0.0031842074892842235 0.0031556881584086523 0.003217459866265638 0.0030947240344033427 0.0032147913111208403 0.003100847675566451" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節46">
<g transform="translate(0.2780025635192015,0.04693124400640591) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.005160766813687461 0.00692773719044708 C 0.005163372563523777 0.006918012399666132 0.005201760602504208 0.006794195869350133 0.00519203581172326 0.006811039701075711 C 0.005201760602504208 0.006794195869350133 0.0052943081347844095 0.006715886418959197 0.005277464303058831 0.006725611209740144 C 0.0052943081347844095 0.006715886418959197 0.005413611373992104 0.006694342211704346 0.00539416179243021 0.006694342211704346 C 0.005413611373992104 0.006694342211704346 0.005527703113527142 0.006735336000521091 0.005510859281801565 0.006725611209740144 C 0.005527703113527142 0.006735336000521091 0.005606012563918082 0.006827883532801289 0.005596287773137134 0.006811039701075711 C 0.005606012563918082 0.006827883532801289 0.0056301625210092516 0.006937461981228032 0.005627556771172935 0.006927737190447084" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005627556771172935 0.006927737190447084 C 0.005631736336666949 0.006932895398305797 0.005681781969369527 0.0070041862425758725 0.005677711557101102 0.006989635684751638 C 0.005681781969369527 0.0070041862425758725 0.0056733970349468555 0.007120646243377295 0.0056764017183940415 0.007102343884337893 C 0.0056733970349468555 0.007120646243377295 0.0056337970053213695 0.007226273468367943 0.005641655355734867 0.007209263993224463 C 0.0056337970053213695 0.007226273468367943 0.005577138693240179 0.007314557052129243 0.005582101513432078 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005582101513432078 0.007306457586059644 C 0.005577514324279816 0.007317532040324206 0.00551139360018811 0.0074550126806512025 0.005527055243604933 0.007439351037234379 C 0.00551139360018811 0.0074550126806512025 0.005372012883901087 0.007494397307061524 0.005394161792430209 0.007494397307061524 C 0.005372012883901087 0.007494397307061524 0.00524560669783864 0.007423689393817556 0.005261268341255464 0.007439351037234379 C 0.00524560669783864 0.007423689393817556 0.005201634882276054 0.0072953831317950826 0.005206222071428316 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005206222071428316 0.007306457586059644 C 0.005201259251236418 0.007298358119990045 0.005138809878712031 0.007192254518080984 0.0051466682291255285 0.007209263993224463 C 0.005138809878712031 0.007192254518080984 0.005108917183019169 0.0070840415252984915 0.0051119218664663554 0.007102343884337893 C 0.005108917183019169 0.0070840415252984915 0.005114682440027717 0.006975085126927404 0.005110612027759292 0.006989635684751638 C 0.005114682440027717 0.006975085126927404 0.005164946379181475 0.006922578982588371 0.005160766813687461 0.006927737190447084" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2777918961693292,0.04674188380859963) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0031549209038429313 0.0031050097186960187 C 0.00315745603123049 0.003110827177800972 0.0031867093303995396 0.003192530278514804 0.0031853424324936315 0.0031748192279554568 C 0.0031867093303995396 0.003192530278514804 0.0031701554492321797 0.0033294359168625767 0.0031713236787138297 0.0033175423254081828" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031713236787138297 0.0033175423254081828 C 0.0031452378828541417 0.003285079872443337 0.002802044468686724 0.0028407924939547846 0.002858294128397573 0.0029279928898300316 C 0.002802044468686724 0.0028407924939547846 0.0024661638983324847 0.0022163996319948176 0.002496327762183645 0.002271137574905219" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.002496327762183645 0.002271137574905219 C 0.0025274516430842803 0.002319538282099236 0.0029246970947962043 0.0029214354065493233 0.002869814332991264 0.0028519460612334234 C 0.0029246970947962043 0.0029214354065493233 0.003178679784747237 0.0031260983568179015 0.0031549209038429313 0.0031050097186960187" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2782132308690738,0.04674188380859963) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032132561724726887 0.0031050097186960187 C 0.003237015053376995 0.003083921080574136 0.0035532455051293012 0.0027824567159175236 0.0034983627433243596 0.0028519460612334234 C 0.0035532455051293012 0.0027824567159175236 0.0039029731950326217 0.002222736867711202 0.003871849314131986 0.002271137574905219" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003871849314131986 0.002271137574905219 C 0.003841685450280825 0.00232587551781562 0.0034536332882072023 0.0030151932857052787 0.003509882947918052 0.0029279928898300316 C 0.0034536332882072023 0.0030151932857052787 0.003170767601742101 0.0033500047783730285 0.0031968533976017895 0.0033175423254081828" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031968533976017895 0.0033175423254081828 C 0.00319568516812014 0.003305648733953789 0.003184201541727903 0.0031571081773961096 0.003182834643821995 0.0031748192279554568 C 0.003184201541727903 0.0031571081773961096 0.0032157912998602464 0.0030991922595910654 0.0032132561724726887 0.0031050097186960187" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節47">
<g transform="translate(0.2780025635192015,0.04655252361079335) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.005172436562624599 0.006946673210227707 C 0.005174912024969099 0.006937434658985807 0.005211380662000507 0.0068198089551856095 0.005202142110758607 0.006835810595324909 C 0.005211380662000507 0.0068198089551856095 0.005299300817666698 0.006745414977314218 0.005283299177527398 0.006754653528556118 C 0.005299300817666698 0.006745414977314218 0.005412638894914009 0.006724947980422111 0.00539416179243021 0.006724947980422111 C 0.005412638894914009 0.006724947980422111 0.005521026047472294 0.0067638920797980185 0.005505024407332996 0.006754653528556118 C 0.005521026047472294 0.0067638920797980185 0.005595420025343688 0.006851812235464208 0.005586181474101788 0.006835810595324909 C 0.005595420025343688 0.006851812235464208 0.005618362484580301 0.00695591176146961 0.0056158870222358 0.00694667321022771" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0056158870222358 0.00694667321022771 C 0.005619857609455113 0.006951573507693487 0.005667400960522561 0.00701929980975006 0.005663534068867557 0.007005476779817037 C 0.005667400960522561 0.00701929980975006 0.005659435272821024 0.007129936810511415 0.00566228972209585 0.007112549569423983 C 0.005659435272821024 0.007129936810511415 0.005621815244676811 0.007230282674252527 0.005629280677569634 0.007214123672866222 C 0.005621815244676811 0.007230282674252527 0.005567989848199683 0.007314152078825763 0.0055727045273819865 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0055727045273819865 0.007306457586059644 C 0.005568346697687337 0.0073169783176109775 0.005505532009800213 0.007447584925921622 0.005520410571046195 0.007432706364675639 C 0.005505532009800213 0.007447584925921622 0.005373120329327543 0.007485000321011431 0.005394161792430209 0.007485000321011431 C 0.005373120329327543 0.007485000321011431 0.0052530344525682175 0.007417827803429657 0.005267913013814201 0.007432706364675639 C 0.0052530344525682175 0.007417827803429657 0.005211261227783759 0.007295936854508311 0.005215619057478409 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005215619057478409 0.007306457586059644 C 0.005210904378296105 0.0072987630932935255 0.005151577474397939 0.007197964671479917 0.005159042907290762 0.007214123672866222 C 0.005151577474397939 0.007197964671479917 0.005123179413489719 0.007095162328336549 0.005126033862764547 0.007112549569423981 C 0.005123179413489719 0.007095162328336549 0.0051286564076478405 0.006991653749884015 0.005124789515992836 0.007005476779817037 C 0.0051286564076478405 0.006991653749884015 0.0051764071498439125 0.006941772912761933 0.005172436562624599 0.00694667321022771" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2778024295368228,0.04637263142287738) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0031563792855586748 0.003108963659669109 C 0.003158787656576855 0.0031144902458188147 0.003186578290787454 0.003192108191496956 0.003185279737776841 0.003175282693465576 C 0.003186578290787454 0.003192108191496956 0.0031708521036784617 0.0033221685479273397 0.003171961921686029 0.0033108696360456655" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003171961921686029 0.0033108696360456655 C 0.0031471804156193253 0.0032800303057290616 0.002821146672160278 0.0028579572961649367 0.0028745838488855842 0.0029407976722464215 C 0.002821146672160278 0.0028579572961649367 0.002502060130323751 0.0022647840773029684 0.0025307158009823536 0.0023167851230678493" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0025307158009823536 0.0023167851230678493 C 0.0025602834878379567 0.0023627657949021655 0.0029376666669642844 0.002934568063129748 0.002885528043249591 0.0028685531850796433 C 0.0029376666669642844 0.002934568063129748 0.003178950222417765 0.0031289978658848978 0.0031563792855586748 0.003108963659669109" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2782026975015802,0.04637263142287738) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032117977907569453 0.003108963659669109 C 0.003234368727616036 0.0030889294534533203 0.0035347876567807276 0.0028025383070295383 0.0034826490330660334 0.0028685531850796433 C 0.0035347876567807276 0.0028025383070295383 0.003867028962188879 0.002270804451233533 0.0038374612753332756 0.0023167851230678493" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0038374612753332756 0.0023167851230678493 C 0.0038088056046746725 0.0023687861688327302 0.003440156050704733 0.0030236380483279063 0.00349359322743004 0.0029407976722464215 C 0.003440156050704733 0.0030236380483279063 0.003171433648562888 0.0033417089663622694 0.0031962151546295918 0.0033108696360456655" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031962151546295918 0.0033108696360456655 C 0.0031951053366220247 0.0032995707241639913 0.0031841958915493993 0.003158457195434196 0.0031828973385387865 0.003175282693465576 C 0.0031841958915493993 0.003158457195434196 0.0032142061617751252 0.0031034370735194034 0.0032117977907569453 0.003108963659669109" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節48">
<g transform="translate(0.2780025635192015,0.04619273923496142) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.005183522824114877 0.0069646624290193035 C 0.0051858745133421535 0.006955885805339498 0.005220519718521992 0.0068441413867293115 0.005211743094842187 0.0068593429448616456 C 0.005220519718521992 0.0068441413867293115 0.005304043866404874 0.006773467107751489 0.005288842308272539 0.006782243731431294 C 0.005304043866404874 0.006773467107751489 0.005411715039789819 0.006754023460703988 0.00539416179243021 0.006754023460703988 C 0.005411715039789819 0.006754023460703988 0.005514682834720188 0.006791020355111099 0.005499481276587855 0.006782243731431294 C 0.005514682834720188 0.006791020355111099 0.005585357113698012 0.00687454450299398 0.005576580490018207 0.0068593429448616456 C 0.005585357113698012 0.00687454450299398 0.005607152449972796 0.006973439052699113 0.00560480076074552 0.006964662429019308" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00560480076074552 0.006964662429019308 C 0.005608572818603867 0.0069693177116117964 0.005653739002117943 0.007033657698565539 0.005650065455045689 0.007020525820129167 C 0.005653739002117943 0.007033657698565539 0.0056461715988014825 0.007138762849288825 0.005648883325612568 0.007122244970255764 C 0.0056461715988014825 0.007138762849288825 0.005610432572064482 0.007234091419842882 0.005617524733312663 0.007218740368525892 C 0.005610432572064482 0.007234091419842882 0.005559298445411209 0.007313767354187457 0.005563777390634397 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005563777390634397 0.007306457586059644 C 0.00555963745242448 0.00731645228103341 0.005499963498931711 0.007440528558928525 0.0055140981321153935 0.007426393925744842 C 0.005499963498931711 0.007440528558928525 0.0053741724024826765 0.00747607318426384 0.005394161792430209 0.00747607318426384 C 0.0053741724024826765 0.00747607318426384 0.005260090819561317 0.0074122592925611585 0.005274225452745001 0.007426393925744842 C 0.005260090819561317 0.0074122592925611585 0.005220406256016082 0.007296462891085878 0.005224546194225999 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005224546194225999 0.007306457586059644 C 0.00522006724900281 0.007299147817931831 0.0051637066902995524 0.007203389317208902 0.005170798851547733 0.007218740368525892 C 0.0051637066902995524 0.007203389317208902 0.005136728532436742 0.007105727091222702 0.005139440259247828 0.007122244970255763 C 0.005136728532436742 0.007105727091222702 0.005141931676886959 0.0070073939416927964 0.005138258129814705 0.007020525820129167 C 0.005141931676886959 0.0070073939416927964 0.005187294881973225 0.006960007146426819 0.005183522824114877 0.006964662429019308" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27781243623594176,0.04602184165644124) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003157764748188632 0.003112719903593544 C 0.0031600527006559035 0.0031179701604357644 0.0031864538031559707 0.0031917072088299982 0.0031852201777958886 0.0031757229857001875 C 0.0031864538031559707 0.0031917072088299982 0.0031715139254024295 0.003315264547438864 0.003172568252509619 0.0033045305811512733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003172568252509619 0.0033045305811512733 C 0.00314902582174625 0.0032752332173505 0.002839293765460156 0.0028742638582645807 0.002890059083349197 0.002952962215541991 C 0.002839293765460156 0.0028742638582645807 0.0025361615507154536 0.0023107493003457122 0.0025633844378411264 0.002360150293822349" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0025633844378411264 0.002360150293822349 C 0.0025914737403539495 0.002403831932064949 0.0029499877605239614 0.0029470440868811514 0.0029004560679950025 0.002884329952733552 C 0.0029499877605239614 0.0029470440868811514 0.003179207138204768 0.0031317523994985434 0.003157764748188632 0.003112719903593544" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2781926908024613,0.04602184165644124) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032104123281269884 0.003112719903593544 C 0.0032318547181431245 0.0030936874076885447 0.003517252700849582 0.0028216158185859525 0.003467721008320623 0.002884329952733552 C 0.003517252700849582 0.0028216158185859525 0.003832881940987325 0.002316468655579749 0.003804792638474502 0.002360150293822349" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003804792638474502 0.002360150293822349 C 0.0037775697513488292 0.0024095512872989856 0.003427352675077387 0.003031660572819401 0.003478117992966429 0.002952962215541991 C 0.003427352675077387 0.003031660572819401 0.0031720663930426335 0.003333827944952047 0.0031956088238060025 0.0033045305811512733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031956088238060025 0.0033045305811512733 C 0.0031945544966988136 0.003293796614863683 0.0031841905238798192 0.0031597387625703767 0.003182956898519737 0.0031757229857001875 C 0.0031841905238798192 0.0031597387625703767 0.0032127002805942594 0.003107469646751324 0.0032104123281269884 0.003112719903593544" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節49">
<g transform="translate(0.2780025635192015,0.045850944077921084) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.005194054772530643 0.006981752186871319 C 0.005196288877296555 0.006973414394375504 0.005229201822217403 0.006867257196695827 0.005220864029721588 0.006881698676921544 C 0.005229201822217403 0.006867257196695827 0.00530854976270614 0.006800116631666898 0.0052941082824804215 0.006808454424162712 C 0.00530854976270614 0.006800116631666898 0.005410837377421839 0.00678164516697177 0.00539416179243021 0.00678164516697177 C 0.005410837377421839 0.00678164516697177 0.005508656782605689 0.0068167922166585265 0.005494215302379973 0.006808454424162712 C 0.005508656782605689 0.0068167922166585265 0.005575797347634624 0.006896140157147262 0.0055674595551388085 0.006881698676921544 C 0.005575797347634624 0.006896140157147262 0.0055965029170956665 0.006990089979367139 0.005594268812329754 0.006981752186871324" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005594268812329754 0.006981752186871324 C 0.005597852267295185 0.006986174705334188 0.005640760141633556 0.007047297692940246 0.005637270271914915 0.007034822408425693 C 0.005640760141633556 0.007047297692940246 0.005633571108482919 0.007147147586127367 0.005636147248953451 0.00713145560104596 C 0.005633571108482919 0.007147147586127367 0.005599619033082767 0.007237709728153719 0.005606356586268539 0.007223126229402578 C 0.005599619033082767 0.007237709728153719 0.005551041612762157 0.007313401865781066 0.005555296610724186 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005555296610724186 0.007306457586059644 C 0.005551363669424765 0.007315952546284722 0.005494673413606636 0.007433825010285078 0.005508101315131134 0.007420397108760579 C 0.005494673413606636 0.007433825010285078 0.005375171871980053 0.0074675924043536325 0.005394161792430209 0.0074675924043536325 C 0.005375171871980053 0.0074675924043536325 0.005266794368204762 0.00740696920723608 0.005280222269729262 0.007420397108760579 C 0.005266794368204762 0.00740696920723608 0.005229094032836789 0.007296962625834566 0.00523302697413621 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00523302697413621 0.007306457586059644 C 0.005228771976174181 0.007299513306338222 0.005175229445406085 0.007208542730651438 0.005181966998591857 0.007223126229402578 C 0.005175229445406085 0.007208542730651438 0.005149600195436415 0.007115763615964551 0.005152176335906947 0.007131455601045958 C 0.005149600195436415 0.007115763615964551 0.005154543182664121 0.00702234712391114 0.0051510533129454795 0.007034822408425693 C 0.005154543182664121 0.00702234712391114 0.005197638227496073 0.00697732966840846 0.005194054772530643 0.006981752186871324" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27782194260010473,0.045688591378326926) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003159080937687091 0.003116288335321758 C 0.003161254492530999 0.003121276079321867 0.0031863355399060636 0.0031913262752963894 0.0031851635958139854 0.003176141263323069 C 0.0031863355399060636 0.0031913262752963894 0.0031721426560401985 0.0033087057469748126 0.0031731442667920283 0.0032985084790016017" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031731442667920283 0.0032985084790016017 C 0.0031507789575668283 0.003270675983390867 0.0028565335040950392 0.002889755092259241 0.002904760556089628 0.002964518531672781 C 0.0028565335040950392 0.002889755092259241 0.002568557900087572 0.0023544162622363167 0.002594419642856961 0.002401347206039122" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.002594419642856961 0.002401347206039122 C 0.002621104480244143 0.0024428447623695924 0.0029616927994056542 0.002958896309444986 0.0029146376915031432 0.0028993178820047663 C 0.0029616927994056542 0.002958896309444986 0.00317945120820242 0.003134369206431507 0.003159080937687091 0.003116288335321758" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.27818318443829826,0.045688591378326926) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032090961386285312 0.003116288335321758 C 0.0032294664091438606 0.0030982074642120086 0.003500594492714993 0.0028397394545645466 0.0034535393848124816 0.0028993178820047663 C 0.003500594492714993 0.0028397394545645466 0.003800442270845851 0.0023598496497086513 0.003773757433458669 0.002401347206039122" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003773757433458669 0.002401347206039122 C 0.00374789569068928 0.002448278149841927 0.003415189468231408 0.003039281971086321 0.0034634165202259977 0.002964518531672781 C 0.003415189468231408 0.003039281971086321 0.0031726675002983927 0.0033263409746123367 0.003195032809523593 0.0032985084790016017" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003195032809523593 0.0032985084790016017 C 0.0031940311987717638 0.003288311211028391 0.0031841854245937195 0.0031609562513497487 0.0031830134805016412 0.003176141263323069 C 0.0031841854245937195 0.0031609562513497487 0.003211269693472439 0.0031113005913216488 0.0032090961386285312 0.003116288335321758" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="節50">
<g transform="translate(0.2780025635192015,0.04552623867873277) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.005204060123525621 0.006997987456830737 C 0.005206182523053237 0.006990066553959713 0.005237449820728042 0.006889217216164017 0.005229528917857018 0.006902936622378448 C 0.005237449820728042 0.006889217216164017 0.005312830364192342 0.0068254336793865346 0.00529911095797791 0.006833354582257558 C 0.005312830364192342 0.0068254336793865346 0.005410003598172257 0.006807885787926163 0.00539416179243021 0.006807885787926163 C 0.005410003598172257 0.006807885787926163 0.0055029320330969135 0.006841275485128581 0.005489212626882483 0.006833354582257558 C 0.0055029320330969135 0.006841275485128581 0.005566715569874404 0.00691665602859288 0.005558794667003379 0.006902936622378448 C 0.005566715569874404 0.00691665602859288 0.005586385860862391 0.007005908359701763 0.005584263461334775 0.006997987456830739" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005584263461334775 0.006997987456830739 C 0.005587667743551934 0.00700218884937046 0.005628430224173388 0.007060255687596214 0.005625114847940679 0.007048404167307389 C 0.005628430224173388 0.007060255687596214 0.005621600642680284 0.007155113086123981 0.0056240479761272884 0.007140205700296644 C 0.005621600642680284 0.007155113086123981 0.005589346171050138 0.007241147121049017 0.005595746846576622 0.007227292797235434 C 0.005589346171050138 0.007241147121049017 0.0055431976217455575 0.007313054651794995 0.0055472398698094855 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0055472398698094855 0.007306457586059644 C 0.0055435035755750355 0.007315477798273468 0.005489647832547814 0.007427456639073808 0.005502404338996087 0.007414700132625534 C 0.005489647832547814 0.007427456639073808 0.005376121368002561 0.00745953566343893 0.005394161792430209 0.00745953566343893 C 0.005376121368002561 0.00745953566343893 0.005273162739416034 0.00740194362617726 0.005285919245864309 0.007414700132625534 C 0.005273162739416034 0.00740194362617726 0.00523734742081646 0.00729743737384582 0.00524108371505091 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00524108371505091 0.007306457586059644 C 0.005237041466986982 0.007299860520324293 0.005186176062757292 0.00721343847342185 0.005192576738283775 0.007227292797235434 C 0.005186176062757292 0.00721343847342185 0.005161828275286104 0.007125298314469305 0.005164275608733109 0.007140205700296642 C 0.005161828275286104 0.007125298314469305 0.0051665241131524245 0.0070365526470185635 0.005163208736919715 0.007048404167307389 C 0.0051665241131524245 0.0070365526470185635 0.00520746440574278 0.006993786064291018 0.005204060123525621 0.006997987456830739" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2778309736460596,0.04537200361411832) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.003160331317710628 0.0031196783454635604 C 0.0031623961948123403 0.0031244167022636644 0.0031862231898186506 0.003190964388439461 0.0031851098429311765 0.0031765386270648063 C 0.0031862231898186506 0.003190964388439461 0.0031727399501460794 0.0033024748865339627 0.0031736914803603177 0.003292787481959412" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031736914803603177 0.003292787481959412 C 0.0031524444365963774 0.003266346611129214 0.002872911255798177 0.00290447176455417 0.0029187269551930366 0.0029754970319970328 C 0.002872911255798177 0.00290447176455417 0.002599334431991084 0.002395899876032393 0.0026239030876220033 0.0024404842726450573" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0026239030876220033 0.0024404842726450573 C 0.0026492536831398262 0.002479906951159004 0.0029728125863432626 0.0029701559208806273 0.002928110233835877 0.0029135564148124187 C 0.0029728125863432626 0.0029701559208806273 0.0031796830747001905 0.0031368551730178223 0.003160331317710628 0.0031196783454635604" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2781741533923434,0.04537200361411832) rotate(0) scale(1,1) translate(-0.003184088538157816,-0.003184088538157816)"><path d="M 0.0032078457586049948 0.0031196783454635604 C 0.0032271975155945577 0.0031025015179092985 0.003484769194987134 0.00285695690874421 0.003440066842479748 0.0029135564148124187 C 0.003484769194987134 0.00285695690874421 0.0037696245842114497 0.0024010615941311105 0.0037442739886936263 0.0024404842726450573" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0037442739886936263 0.0024404842726450573 C 0.0037197053330627066 0.0024850686692577217 0.0034036344217277283 0.0030465222994398955 0.0034494501211225883 0.0029754970319970328 C 0.0034036344217277283 0.0030465222994398955 0.0031732385521913643 0.0033192283527896105 0.0031944855959553046 0.003292787481959412" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0031944855959553046 0.003292787481959412 C 0.0031935340657410667 0.0032831000773848617 0.0031841805802719247 0.003162112865690152 0.0031830672333844506 0.0031765386270648063 C 0.0031841805802719247 0.003162112865690152 0.0032099106357067067 0.0031149399886634564 0.0032078457586049948 0.0031196783454635604" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.2780025635192015,0.045217768549503864) rotate(0) scale(1,1) translate(-0.005394161792430209,-0.007306457586059644)"><path d="M 0.005291807299463852 0.00609070095450449 C 0.005300336840544381 0.006046293798183773 0.005411220874591258 0.00555781507865588 0.0053941617924302 0.005557815078655879 C 0.005411220874591258 0.00555781507865588 0.0055050458264770735 0.0061351081108252225 0.005496516285396545 0.006090700954504504" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005496516285396545 0.006090700954504504 C 0.0054996148902940935 0.006139332413392678 0.005537288684212465 0.006775591513792177 0.005533699544167134 0.006674278461162583 C 0.005537288684212465 0.006775591513792177 0.005540076501088305 0.007359139179801066 0.0055395859659405225 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0055395859659405225 0.007306457586059644 C 0.005536036486417795 0.0073150267876627775 0.005484873530541936 0.007421406686423104 0.005496992211667797 0.0074092880052972435 C 0.005484873530541936 0.007421406686423104 0.005377023389223931 0.007451881759569968 0.005394161792430198 0.007451881759569968 C 0.005377023389223931 0.007451881759569968 0.005279212692066737 0.007397169324171383 0.005291331373192598 0.0074092880052972435 C 0.005279212692066737 0.007397169324171383 0.005245188139397146 0.007297888384456511 0.0052487376189198735 0.007306457586059644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0052487376189198735 0.007306457586059644 C 0.005249228154067656 0.007253775992318222 0.0052582131807385945 0.006572965408532988 0.005254624040693263 0.006674278461162583 C 0.0052582131807385945 0.006572965408532988 0.005294905904361401 0.006042069495616331 0.005291807299463852 0.006090700954504504" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 266 KiB

View File

@@ -0,0 +1,93 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g id="櫛状板1">
<g transform="translate(0.32730199068532456,0.3015323647517103) rotate(0) scale(1,1) translate(-0.13903507479839222,-0.08257849087715632)"><path d="M 0.14010556167800917 0.10291860195784062 C 0.14003299922022497 0.10266814927575119 0.13907475721751383 0.09842294435915996 0.13923481218459868 0.09991316977276744 C 0.13907475721751383 0.09842294435915996 0.13813864077671598 0.08352134055530078 0.13818490207299086 0.08503589699455084 C 0.13813864077671598 0.08352134055530078 0.13872090784232577 0.08146370879403467 0.1386796766293 0.08173849250176668" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1386796766293 0.08173849250176668 C 0.13879381905795934 0.0816816556543018 0.14039994869602887 0.08099548674964735 0.14004938577321216 0.08105645033218811 C 0.14039994869602887 0.08099548674964735 0.14323890867080444 0.08105562148688214 0.14288643170310056 0.08100692951127754 C 0.14323890867080444 0.08105562148688214 0.14439516585920525 0.08169357275012373 0.14427910938565874 0.08164075403944325" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14427910938565874 0.08164075403944325 C 0.144342115586595 0.08190778285037159 0.14520765619910742 0.08634104386302936 0.14503518379689379 0.08484509977058328 C 0.14520765619910742 0.08634104386302936 0.1464045957653453 0.10109006345920742 0.14634877821222247 0.09959208314879625 C 0.1464045957653453 0.10109006345920742 0.14565134578621333 0.10308992852441062 0.14570499443436788 0.10282086349551721" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14570499443436788 0.10282086349551721 C 0.14559085200570854 0.10287770034298209 0.14398472236763898 0.10356386924763658 0.1443352852904557 0.10350290566509582 C 0.14398472236763898 0.10356386924763658 0.14114576239286342 0.10350373451040173 0.1414982393605673 0.10355242648600634 C 0.14114576239286342 0.10350373451040173 0.13998950520446266 0.10286578324716014 0.14010556167800917 0.10291860195784062" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33306310118692295,0.31082170390020525) rotate(0) scale(1,1) translate(-0.09302983305593387,-0.07784794651101833)"><path d="M 0.09392116663919543 0.08880128501776366 C 0.09391236486051507 0.08806728527047905 0.09364307289281751 0.0784973439579023 0.09381554529503115 0.07999328805034839 C 0.09364307289281751 0.0784973439579023 0.09172818890568486 0.06981070783522512 0.0918514978126317 0.07084995590841062 C 0.09172818890568486 0.06981070783522512 0.09237620012825547 0.06724500744409852 0.09233583841166902 0.06752231117212253" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09233583841166902 0.06752231117212253 C 0.09255681539997673 0.06764590926939677 0.09552626579539242 0.06958883196970256 0.09498756227136158 0.06900548833941353 C 0.09552626579539242 0.06958883196970256 0.09915836664966045 0.07513047491452335 0.09880028070003902 0.07452243473559086 C 0.09915836664966045 0.07513047491452335 0.09932495308071701 0.07645026513252103 0.0992845936668187 0.07630197048660332" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0992845936668187 0.07630197048660332 C 0.09921807892827512 0.07667766586704329 0.0983565650401899 0.08155407404556254 0.09848641680429578 0.08081031505188299 C 0.0983565650401899 0.08155407404556254 0.0976067914305736 0.08589859586254095 0.0977263724975482 0.08522707841075797 C 0.0976067914305736 0.08589859586254095 0.09699519995918836 0.08917197831182212 0.09705144400060066 0.08886852447327873" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09705144400060066 0.08886852447327873 C 0.09703534948676297 0.08889777072721611 0.09672636927857353 0.08925074787465179 0.09685830983454834 0.08921947952052724 C 0.09672636927857353 0.08925074787465179 0.09522339539595696 0.08920889518087642 0.09546815732890304 0.08924374472277338 C 0.09522339539595696 0.08920889518087642 0.09379225074838647 0.08876441337567952 0.09392116663919543 0.08880128501776366" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33095418370708585,0.3206148828835091) rotate(0) scale(1,1) translate(-0.13247665940288703,-0.095)"><path d="M 0.12923728157033312 0.10377956571932787 C 0.12921326776520944 0.10357679115280807 0.12892721215089895 0.10076939812029556 0.12894911590884897 0.10134627092109029 C 0.12892721215089895 0.10076939812029556 0.129031409560071 0.0963383205616603 0.12897443647493267 0.09685709210979111 C 0.129031409560071 0.0963383205616603 0.12968765596847373 0.09497633902966479 0.12963279293050903 0.09512101234352066" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.12963279293050903 0.09512101234352066 C 0.12975210884098418 0.0950964795585639 0.13146510004939227 0.09486140824770714 0.13106458385621078 0.09482661892403962 C 0.13146510004939227 0.09486140824770714 0.13480716920720412 0.0956683318258146 0.13443898724868691 0.0955384842275308 C 0.13480716920720412 0.0956683318258146 0.13556974903422817 0.09645531559310479 0.1354827673584173 0.09638479010344525" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1354827673584173 0.09638479010344525 C 0.1354621353218219 0.09668711211588485 0.13522722937061568 0.10057659081624169 0.13523518291927267 0.10001265425272048 C 0.13522722937061568 0.10057659081624169 0.13534993015983113 0.10355773114408993 0.1353873247745336 0.10315202886569984 C 0.13534993015983113 0.10355773114408993 0.13473637444020195 0.1050251693207101 0.13478644754284286 0.10488108159340162" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13478644754284286 0.10488108159340162 C 0.134622093278196 0.10489595185458654 0.132438030770432 0.10504838782741151 0.13281419636708033 0.10505952472762065 C 0.132438030770432 0.10504838782741151 0.12997438415000082 0.1046407755402009 0.1302724603830631 0.10474743879089198 C 0.12997438415000082 0.1046407755402009 0.12915101666927228 0.10369890963003085 0.12923728157033312 0.10377956571932787" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33400856534918627,0.32340327013682474) rotate(0) scale(1,1) translate(-0.09500000000000003,-0.0879837329636765)"><path d="M 0.09470414187428526 0.09020799996308132 C 0.09468006574367634 0.09013715085185779 0.09441279892768531 0.0890529175156499 0.09441522830697817 0.08935781062839898 C 0.09441279892768531 0.0890529175156499 0.09476493436272768 0.0862717798867687 0.09467498932277091 0.08654928261009233 C 0.09476493436272768 0.0862717798867687 0.0955628670751 0.08598431922671743 0.0954945687864593 0.0860277779485155" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0954945687864593 0.0860277779485155 C 0.0955545298428967 0.08603637438401554 0.09637711028610253 0.08616266525822625 0.09621410146370794 0.08613093517451603 C 0.09637711028610253 0.08616266525822625 0.09757549748644655 0.08644617465615584 0.09745067465519436 0.08640853895303802 C 0.09757549748644655 0.08644617465615584 0.09773375050402919 0.0865970656668376 0.0977119754387342 0.08658256361192994" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0977119754387342 0.08658256361192994 C 0.09773186447551134 0.08663199404439761 0.09792772125371457 0.08745388140446457 0.09795064388005992 0.08717572880154197 C 0.09792772125371457 0.08745388140446457 0.09736183013602152 0.09020845210282602 0.09743690392258997 0.08992039484700126 C 0.09736183013602152 0.09020845210282602 0.09701749631779272 0.0906917509568089 0.09704975844123866 0.09063241587143908" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09704975844123866 0.09063241587143908 C 0.09702454435809024 0.09062306256234266 0.09661928224724366 0.09049271528661919 0.09674718944345775 0.09052017616228204 C 0.09661928224724366 0.09049271528661919 0.09534461812257175 0.09027687068021817 0.09551487208666946 0.0903028853634849 C 0.09534461812257175 0.09027687068021817 0.09463658102325324 0.09020009284638102 0.09470414187428526 0.09020799996308132" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33323037024250024,0.32772278646189057) rotate(0) scale(1,1) translate(-0.09500000000000003,-0.0879837329636765)"><path d="M 0.09502551285529375 0.09018029880755506 C 0.09499443794120167 0.09012393245634369 0.0946480364629902 0.08920104680230992 0.09465261388618883 0.08950390259301867 C 0.0946480364629902 0.08920104680230992 0.09503972736814217 0.08624474440613313 0.09497058377691031 0.08654602931905006 C 0.09503972736814217 0.08624474440613313 0.09552498308130968 0.08583368816459595 0.09548233698097126 0.0858884836380155" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09548233698097126 0.0858884836380155 C 0.09554989783200328 0.0858963907547158 0.09646332115745315 0.08600938372168582 0.09629306719335545 0.08598336903841909 C 0.09646332115745315 0.08600938372168582 0.09765329174635784 0.08622812071287905 0.09752538455014374 0.0862006598372162 C 0.09765329174635784 0.08622812071287905 0.09785316763107307 0.08632225285546968 0.09782795354792466 0.08631289954637326" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09782795354792466 0.08631289954637326 C 0.09783762955563208 0.08637383606893399 0.09791147817163572 0.08734476242548762 0.09794406564041361 0.08704413781710196 C 0.09791147817163572 0.08734476242548762 0.09735954176307421 0.09021098552691706 0.09743690392258997 0.08992039484700126 C 0.09735954176307421 0.09021098552691706 0.09698062104319395 0.09058212857018236 0.09701571972622441 0.0905312259760915" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09701571972622441 0.0905312259760915 C 0.09699355361840119 0.09053301646984427 0.09662486721145672 0.09053639482831093 0.09674972643234564 0.0905527119011246 C 0.09662486721145672 0.09053639482831093 0.09537372461080304 0.09030438667786336 0.09551740907555736 0.09033542110232749 C 0.09537372461080304 0.09030438667786336 0.0949845215036051 0.09016737194965738 0.09502551285529375 0.09018029880755508" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.331745115325102,0.3292958267866192) rotate(0) scale(1,1) translate(-0.13247665940288703,-0.095)"><path d="M 0.12893578337720363 0.10565176874256973 C 0.12889877107992428 0.10533627645057204 0.12844170663535284 0.10115008681077875 0.12849163580985157 0.10186586123859749 C 0.12844170663535284 0.10115008681077875 0.12839803342883555 0.09651313091779758 0.12833663328321882 0.09706247560874486 C 0.12839803342883555 0.09651313091779758 0.12930275458008858 0.09512466239210386 0.12922843755725244 0.09527372494723009" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.12922843755725244 0.09527372494723009 C 0.12936013151733305 0.09525071199565899 0.13120883375337455 0.09501946290146548 0.1308087650782198 0.09499756952837678 C 0.13120883375337455 0.09501946290146548 0.13443666242589897 0.09561181123462764 0.13402926165910928 0.09553644542429454 C 0.13443666242589897 0.09561181123462764 0.13583660033141176 0.09593241873804725 0.1356975742796962 0.09590195925237396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1356975742796962 0.09590195925237396 C 0.1357265860601732 0.09603714755324436 0.13590574161988792 0.09861567090775962 0.1360457156454202 0.09752421886281869 C 0.13590574161988792 0.09861567090775962 0.1337964939576067 0.11012358913356698 0.1340178859733089 0.1089993837916651 C 0.1337964939576067 0.11012358913356698 0.13333660524730095 0.11118262456347261 0.13338901145699386 0.11101468296564126" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13338901145699386 0.11101468296564126 C 0.1332663238037897 0.11098172251591645 0.13163316538179173 0.11039760175340176 0.13191675961854385 0.11061915756894344 C 0.13163316538179173 0.11039760175340176 0.12973746592919017 0.10794206411027646 0.12998588061596852 0.10835601317914094 C 0.12973746592919017 0.10794206411027646 0.12884827527397322 0.10542641503952213 0.12893578337720363 0.10565176874256973" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3390686270500283,0.31067785861404296) rotate(0) scale(1,1) translate(-0.08683541815417418,-0.05817999253876105)"><path d="M 0.08969910597452671 0.05656926381704944 C 0.08991170708203858 0.05661708316382009 0.0926149932087717 0.05728480045239871 0.09225031926466908 0.057143095978297254 C 0.0926149932087717 0.05728480045239871 0.09419987156382303 0.05841332052475742 0.09407519330375824 0.05826971750626693 C 0.09419987156382303 0.05841332052475742 0.09371906380892057 0.05891605009134281 0.09374645838544655 0.05886633220018313" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09374645838544655 0.05886633220018313 C 0.09356599116541399 0.058877091493778774 0.09107979971752185 0.059000607188296604 0.09158085174505581 0.0589954437233309 C 0.09107979971752185 0.059000607188296604 0.08731184443974778 0.05890701856299897 0.08773383405503901 0.05892829377977165 C 0.08731184443974778 0.05890701856299897 0.0864155715537712 0.05872446173391605 0.08651697636156104 0.05874014112205879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08651697636156104 0.05874014112205879 C 0.0864917829420711 0.05868281074767569 0.08629426577583502 0.05791213948363714 0.08621465532768173 0.05805217662946158 C 0.08629426577583502 0.05791213948363714 0.08776267262663755 0.05693611930446452 0.08747230173940046 0.057059695372165535 C 0.08776267262663755 0.05693611930446452 0.08988467299412056 0.05652839452078976 0.08969910597452671 0.05656926381704944" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33857403938359487,0.3134828046548944) rotate(0) scale(1,1) translate(-0.08683541815417418,-0.05817999253876105)"><path d="M 0.08969910597452671 0.05656926381704944 C 0.08991170708203858 0.05661708316382009 0.0926149932087717 0.05728480045239871 0.09225031926466908 0.057143095978297254 C 0.0926149932087717 0.05728480045239871 0.09419987156382303 0.05841332052475742 0.09407519330375824 0.05826971750626693 C 0.09419987156382303 0.05841332052475742 0.09371906380892057 0.05891605009134281 0.09374645838544655 0.05886633220018313" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09374645838544655 0.05886633220018313 C 0.09356599116541399 0.058877091493778774 0.09107979971752185 0.059000607188296604 0.09158085174505581 0.0589954437233309 C 0.09107979971752185 0.059000607188296604 0.08731184443974778 0.05890701856299897 0.08773383405503901 0.05892829377977165 C 0.08731184443974778 0.05890701856299897 0.0864155715537712 0.05872446173391605 0.08651697636156104 0.05874014112205879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08651697636156104 0.05874014112205879 C 0.0864917829420711 0.05868281074767569 0.08629426577583502 0.05791213948363714 0.08621465532768173 0.05805217662946158 C 0.08629426577583502 0.05791213948363714 0.08776267262663755 0.05693611930446452 0.08747230173940046 0.057059695372165535 C 0.08776267262663755 0.05693611930446452 0.08988467299412056 0.05652839452078976 0.08969910597452671 0.05656926381704944" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33807945171716136,0.3162877506957459) rotate(0) scale(1,1) translate(-0.08683541815417418,-0.05817999253876105)"><path d="M 0.08969910597452671 0.05656926381704944 C 0.08991170708203858 0.05661708316382009 0.0926149932087717 0.05728480045239871 0.09225031926466908 0.057143095978297254 C 0.0926149932087717 0.05728480045239871 0.09419987156382303 0.05841332052475742 0.09407519330375824 0.05826971750626693 C 0.09419987156382303 0.05841332052475742 0.09371906380892057 0.05891605009134281 0.09374645838544655 0.05886633220018313" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09374645838544655 0.05886633220018313 C 0.09356599116541399 0.058877091493778774 0.09107979971752185 0.059000607188296604 0.09158085174505581 0.0589954437233309 C 0.09107979971752185 0.059000607188296604 0.08731184443974778 0.05890701856299897 0.08773383405503901 0.05892829377977165 C 0.08731184443974778 0.05890701856299897 0.0864155715537712 0.05872446173391605 0.08651697636156104 0.05874014112205879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08651697636156104 0.05874014112205879 C 0.0864917829420711 0.05868281074767569 0.08629426577583502 0.05791213948363714 0.08621465532768173 0.05805217662946158 C 0.08629426577583502 0.05791213948363714 0.08776267262663755 0.05693611930446452 0.08747230173940046 0.057059695372165535 C 0.08776267262663755 0.05693611930446452 0.08988467299412056 0.05652839452078976 0.08969910597452671 0.05656926381704944" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3375848640507278,0.31909269673659735) rotate(0) scale(1,1) translate(-0.08683541815417418,-0.05817999253876105)"><path d="M 0.08969910597452671 0.05656926381704944 C 0.08991170708203858 0.05661708316382009 0.0926149932087717 0.05728480045239871 0.09225031926466908 0.057143095978297254 C 0.0926149932087717 0.05728480045239871 0.09419987156382303 0.05841332052475742 0.09407519330375824 0.05826971750626693 C 0.09419987156382303 0.05841332052475742 0.09371906380892057 0.05891605009134281 0.09374645838544655 0.05886633220018313" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09374645838544655 0.05886633220018313 C 0.09356599116541399 0.058877091493778774 0.09107979971752185 0.059000607188296604 0.09158085174505581 0.0589954437233309 C 0.09107979971752185 0.059000607188296604 0.08731184443974778 0.05890701856299897 0.08773383405503901 0.05892829377977165 C 0.08731184443974778 0.05890701856299897 0.0864155715537712 0.05872446173391605 0.08651697636156104 0.05874014112205879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08651697636156104 0.05874014112205879 C 0.0864917829420711 0.05868281074767569 0.08629426577583502 0.05791213948363714 0.08621465532768173 0.05805217662946158 C 0.08629426577583502 0.05791213948363714 0.08776267262663755 0.05693611930446452 0.08747230173940046 0.057059695372165535 C 0.08776267262663755 0.05693611930446452 0.08988467299412056 0.05652839452078976 0.08969910597452671 0.05656926381704944" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33709027638429434,0.32189764277744887) rotate(0) scale(1,1) translate(-0.08683541815417418,-0.05817999253876105)"><path d="M 0.08969910597452671 0.05656926381704944 C 0.08991170708203858 0.05661708316382009 0.0926149932087717 0.05728480045239871 0.09225031926466908 0.057143095978297254 C 0.0926149932087717 0.05728480045239871 0.09419987156382303 0.05841332052475742 0.09407519330375824 0.05826971750626693 C 0.09419987156382303 0.05841332052475742 0.09371906380892057 0.05891605009134281 0.09374645838544655 0.05886633220018313" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09374645838544655 0.05886633220018313 C 0.09356599116541399 0.058877091493778774 0.09107979971752185 0.059000607188296604 0.09158085174505581 0.0589954437233309 C 0.09107979971752185 0.059000607188296604 0.08731184443974778 0.05890701856299897 0.08773383405503901 0.05892829377977165 C 0.08731184443974778 0.05890701856299897 0.0864155715537712 0.05872446173391605 0.08651697636156104 0.05874014112205879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08651697636156104 0.05874014112205879 C 0.0864917829420711 0.05868281074767569 0.08629426577583502 0.05791213948363714 0.08621465532768173 0.05805217662946158 C 0.08629426577583502 0.05791213948363714 0.08776267262663755 0.05693611930446452 0.08747230173940046 0.057059695372165535 C 0.08776267262663755 0.05693611930446452 0.08988467299412056 0.05652839452078976 0.08969910597452671 0.05656926381704944" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33659568871786083,0.32470258881830033) rotate(0) scale(1,1) translate(-0.08683541815417418,-0.05817999253876105)"><path d="M 0.08969910597452671 0.05656926381704944 C 0.08991170708203858 0.05661708316382009 0.0926149932087717 0.05728480045239871 0.09225031926466908 0.057143095978297254 C 0.0926149932087717 0.05728480045239871 0.09419987156382303 0.05841332052475742 0.09407519330375824 0.05826971750626693 C 0.09419987156382303 0.05841332052475742 0.09371906380892057 0.05891605009134281 0.09374645838544655 0.05886633220018313" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09374645838544655 0.05886633220018313 C 0.09356599116541399 0.058877091493778774 0.09107979971752185 0.059000607188296604 0.09158085174505581 0.0589954437233309 C 0.09107979971752185 0.059000607188296604 0.08731184443974778 0.05890701856299897 0.08773383405503901 0.05892829377977165 C 0.08731184443974778 0.05890701856299897 0.0864155715537712 0.05872446173391605 0.08651697636156104 0.05874014112205879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08651697636156104 0.05874014112205879 C 0.0864917829420711 0.05868281074767569 0.08629426577583502 0.05791213948363714 0.08621465532768173 0.05805217662946158 C 0.08629426577583502 0.05791213948363714 0.08776267262663755 0.05693611930446452 0.08747230173940046 0.057059695372165535 C 0.08776267262663755 0.05693611930446452 0.08988467299412056 0.05652839452078976 0.08969910597452671 0.05656926381704944" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3361011010514273,0.32750753485915185) rotate(0) scale(1,1) translate(-0.08683541815417418,-0.05817999253876105)"><path d="M 0.08969910597452671 0.05656926381704944 C 0.08991170708203858 0.05661708316382009 0.0926149932087717 0.05728480045239871 0.09225031926466908 0.057143095978297254 C 0.0926149932087717 0.05728480045239871 0.09419987156382303 0.05841332052475742 0.09407519330375824 0.05826971750626693 C 0.09419987156382303 0.05841332052475742 0.09371906380892057 0.05891605009134281 0.09374645838544655 0.05886633220018313" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09374645838544655 0.05886633220018313 C 0.09356599116541399 0.058877091493778774 0.09107979971752185 0.059000607188296604 0.09158085174505581 0.0589954437233309 C 0.09107979971752185 0.059000607188296604 0.08731184443974778 0.05890701856299897 0.08773383405503901 0.05892829377977165 C 0.08731184443974778 0.05890701856299897 0.0864155715537712 0.05872446173391605 0.08651697636156104 0.05874014112205879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08651697636156104 0.05874014112205879 C 0.0864917829420711 0.05868281074767569 0.08629426577583502 0.05791213948363714 0.08621465532768173 0.05805217662946158 C 0.08629426577583502 0.05791213948363714 0.08776267262663755 0.05693611930446452 0.08747230173940046 0.057059695372165535 C 0.08776267262663755 0.05693611930446452 0.08988467299412056 0.05652839452078976 0.08969910597452671 0.05656926381704944" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3356065133849938,0.3303124809000033) rotate(0) scale(1,1) translate(-0.08683541815417418,-0.05817999253876105)"><path d="M 0.08969910597452671 0.05656926381704944 C 0.08991170708203858 0.05661708316382009 0.0926149932087717 0.05728480045239871 0.09225031926466908 0.057143095978297254 C 0.0926149932087717 0.05728480045239871 0.09419987156382303 0.05841332052475742 0.09407519330375824 0.05826971750626693 C 0.09419987156382303 0.05841332052475742 0.09371906380892057 0.05891605009134281 0.09374645838544655 0.05886633220018313" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09374645838544655 0.05886633220018313 C 0.09356599116541399 0.058877091493778774 0.09107979971752185 0.059000607188296604 0.09158085174505581 0.0589954437233309 C 0.09107979971752185 0.059000607188296604 0.08731184443974778 0.05890701856299897 0.08773383405503901 0.05892829377977165 C 0.08731184443974778 0.05890701856299897 0.0864155715537712 0.05872446173391605 0.08651697636156104 0.05874014112205879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08651697636156104 0.05874014112205879 C 0.0864917829420711 0.05868281074767569 0.08629426577583502 0.05791213948363714 0.08621465532768173 0.05805217662946158 C 0.08629426577583502 0.05791213948363714 0.08776267262663755 0.05693611930446452 0.08747230173940046 0.057059695372165535 C 0.08776267262663755 0.05693611930446452 0.08988467299412056 0.05652839452078976 0.08969910597452671 0.05656926381704944" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3351119257185603,0.3331174269408548) rotate(0) scale(1,1) translate(-0.08683541815417418,-0.05817999253876105)"><path d="M 0.08969910597452671 0.05656926381704944 C 0.08991170708203858 0.05661708316382009 0.0926149932087717 0.05728480045239871 0.09225031926466908 0.057143095978297254 C 0.0926149932087717 0.05728480045239871 0.09419987156382303 0.05841332052475742 0.09407519330375824 0.05826971750626693 C 0.09419987156382303 0.05841332052475742 0.09371906380892057 0.05891605009134281 0.09374645838544655 0.05886633220018313" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09374645838544655 0.05886633220018313 C 0.09356599116541399 0.058877091493778774 0.09107979971752185 0.059000607188296604 0.09158085174505581 0.0589954437233309 C 0.09107979971752185 0.059000607188296604 0.08731184443974778 0.05890701856299897 0.08773383405503901 0.05892829377977165 C 0.08731184443974778 0.05890701856299897 0.0864155715537712 0.05872446173391605 0.08651697636156104 0.05874014112205879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08651697636156104 0.05874014112205879 C 0.0864917829420711 0.05868281074767569 0.08629426577583502 0.05791213948363714 0.08621465532768173 0.05805217662946158 C 0.08629426577583502 0.05791213948363714 0.08776267262663755 0.05693611930446452 0.08747230173940046 0.057059695372165535 C 0.08776267262663755 0.05693611930446452 0.08988467299412056 0.05652839452078976 0.08969910597452671 0.05656926381704944" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3346173380521268,0.33592237298170624) rotate(0) scale(1,1) translate(-0.08683541815417418,-0.05817999253876105)"><path d="M 0.08969910597452671 0.05656926381704944 C 0.08991170708203858 0.05661708316382009 0.0926149932087717 0.05728480045239871 0.09225031926466908 0.057143095978297254 C 0.0926149932087717 0.05728480045239871 0.09419987156382303 0.05841332052475742 0.09407519330375824 0.05826971750626693 C 0.09419987156382303 0.05841332052475742 0.09371906380892057 0.05891605009134281 0.09374645838544655 0.05886633220018313" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09374645838544655 0.05886633220018313 C 0.09356599116541399 0.058877091493778774 0.09107979971752185 0.059000607188296604 0.09158085174505581 0.0589954437233309 C 0.09107979971752185 0.059000607188296604 0.08731184443974778 0.05890701856299897 0.08773383405503901 0.05892829377977165 C 0.08731184443974778 0.05890701856299897 0.0864155715537712 0.05872446173391605 0.08651697636156104 0.05874014112205879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08651697636156104 0.05874014112205879 C 0.0864917829420711 0.05868281074767569 0.08629426577583502 0.05791213948363714 0.08621465532768173 0.05805217662946158 C 0.08629426577583502 0.05791213948363714 0.08776267262663755 0.05693611930446452 0.08747230173940046 0.057059695372165535 C 0.08776267262663755 0.05693611930446452 0.08988467299412056 0.05652839452078976 0.08969910597452671 0.05656926381704944" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3341227503856933,0.3387273190225577) rotate(0) scale(1,1) translate(-0.08683541815417418,-0.05817999253876105)"><path d="M 0.08969910597452671 0.05656926381704944 C 0.08991170708203858 0.05661708316382009 0.0926149932087717 0.05728480045239871 0.09225031926466908 0.057143095978297254 C 0.0926149932087717 0.05728480045239871 0.09419987156382303 0.05841332052475742 0.09407519330375824 0.05826971750626693 C 0.09419987156382303 0.05841332052475742 0.09371906380892057 0.05891605009134281 0.09374645838544655 0.05886633220018313" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09374645838544655 0.05886633220018313 C 0.09356599116541399 0.058877091493778774 0.09107979971752185 0.059000607188296604 0.09158085174505581 0.0589954437233309 C 0.09107979971752185 0.059000607188296604 0.08731184443974778 0.05890701856299897 0.08773383405503901 0.05892829377977165 C 0.08731184443974778 0.05890701856299897 0.0864155715537712 0.05872446173391605 0.08651697636156104 0.05874014112205879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08651697636156104 0.05874014112205879 C 0.0864917829420711 0.05868281074767569 0.08629426577583502 0.05791213948363714 0.08621465532768173 0.05805217662946158 C 0.08629426577583502 0.05791213948363714 0.08776267262663755 0.05693611930446452 0.08747230173940046 0.057059695372165535 C 0.08776267262663755 0.05693611930446452 0.08988467299412056 0.05652839452078976 0.08969910597452671 0.05656926381704944" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33362816271925977,0.34153226506340917) rotate(0) scale(1,1) translate(-0.08683541815417418,-0.05817999253876105)"><path d="M 0.08969910597452671 0.05656926381704944 C 0.08991170708203858 0.05661708316382009 0.0926149932087717 0.05728480045239871 0.09225031926466908 0.057143095978297254 C 0.0926149932087717 0.05728480045239871 0.09419987156382303 0.05841332052475742 0.09407519330375824 0.05826971750626693 C 0.09419987156382303 0.05841332052475742 0.09371906380892057 0.05891605009134281 0.09374645838544655 0.05886633220018313" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09374645838544655 0.05886633220018313 C 0.09356599116541399 0.058877091493778774 0.09107979971752185 0.059000607188296604 0.09158085174505581 0.0589954437233309 C 0.09107979971752185 0.059000607188296604 0.08731184443974778 0.05890701856299897 0.08773383405503901 0.05892829377977165 C 0.08731184443974778 0.05890701856299897 0.0864155715537712 0.05872446173391605 0.08651697636156104 0.05874014112205879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08651697636156104 0.05874014112205879 C 0.0864917829420711 0.05868281074767569 0.08629426577583502 0.05791213948363714 0.08621465532768173 0.05805217662946158 C 0.08629426577583502 0.05791213948363714 0.08776267262663755 0.05693611930446452 0.08747230173940046 0.057059695372165535 C 0.08776267262663755 0.05693611930446452 0.08988467299412056 0.05652839452078976 0.08969910597452671 0.05656926381704944" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33316923892339545,0.3441349512434847) rotate(0) scale(1,1) translate(-0.08683541815417418,-0.05817999253876105)"><path d="M 0.08969910597452671 0.05656926381704944 C 0.08991170708203858 0.05661708316382009 0.0926149932087717 0.05728480045239871 0.09225031926466908 0.057143095978297254 C 0.0926149932087717 0.05728480045239871 0.09419987156382303 0.05841332052475742 0.09407519330375824 0.05826971750626693 C 0.09419987156382303 0.05841332052475742 0.09371906380892057 0.05891605009134281 0.09374645838544655 0.05886633220018313" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09374645838544655 0.05886633220018313 C 0.09356599116541399 0.058877091493778774 0.09107979971752185 0.059000607188296604 0.09158085174505581 0.0589954437233309 C 0.09107979971752185 0.059000607188296604 0.08731184443974778 0.05890701856299897 0.08773383405503901 0.05892829377977165 C 0.08731184443974778 0.05890701856299897 0.0864155715537712 0.05872446173391605 0.08651697636156104 0.05874014112205879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08651697636156104 0.05874014112205879 C 0.0864917829420711 0.05868281074767569 0.08629426577583502 0.05791213948363714 0.08621465532768173 0.05805217662946158 C 0.08629426577583502 0.05791213948363714 0.08776267262663755 0.05693611930446452 0.08747230173940046 0.057059695372165535 C 0.08776267262663755 0.05693611930446452 0.08988467299412056 0.05652839452078976 0.08969910597452671 0.05656926381704944" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3349412192019433,0.32579276095070614) rotate(0) scale(1,1) translate(-0.09500000000000003,-0.09500000000000001)"><path d="M 0.09341790050441712 0.11213814216594245 C 0.09338491262007591 0.11201181904561455 0.09306643365658653 0.11038907854989659 0.09302204589232264 0.11062226472200765 C 0.09306643365658653 0.11038907854989659 0.09402792932418878 0.10923304504882657 0.09395055367558369 0.10933990810060973" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09395055367558369 0.10933990810060973 C 0.09391439366584806 0.1092130256489886 0.0935591858848381 0.1075838088717722 0.09351663355875614 0.10781731868115615 C 0.0935591858848381 0.1075838088717722 0.09453989392438472 0.10643116303023939 0.09446118158856714 0.10653779038800222" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09446118158856714 0.10653779038800222 C 0.09442368489161902 0.10641067224236075 0.09405200174769829 0.10477855041414626 0.09401122122518965 0.1050123726403047 C 0.09405200174769829 0.10477855041414626 0.09502882507812754 0.1036252195935838 0.09495054785867078 0.10373192367410079" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09495054785867078 0.10373192367410079 C 0.09491348627808348 0.10360488225121349 0.09454215712434139 0.1019728228410184 0.09450580889162315 0.10220742659945321 C 0.09454215712434139 0.1019728228410184 0.09546013646459527 0.10080911623733553 0.09538672665128972 0.10091667857288304" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09538672665128972 0.10091667857288304 C 0.09535453247685363 0.10079049540502627 0.0950422949245185 0.0991688554384925 0.09500039655805666 0.09940248055860178 C 0.0950422949245185 0.0991688554384925 0.09596359958972986 0.09800573517931922 0.09588950704883192 0.09811317713157172" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09588950704883192 0.09811317713157172 C 0.09585663014680344 0.09798687358041994 0.09551395068612761 0.09635970243127609 0.09549498422449015 0.0965975345177503 C 0.09551395068612761 0.09635970243127609 0.09616894795214745 0.09514766355855876 0.09611710458848151 0.09525919209388119" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09611710458848151 0.09525919209388119 C 0.09610647686368502 0.09513697512579933 0.09605637986380927 0.09356351904530624 0.09598957189092366 0.09379258847689882 C 0.09605637986380927 0.09356351904530624 0.0969962359607909 0.09240350645125947 0.09691880026310881 0.09251035891477019" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09691880026310881 0.09251035891477019 C 0.09688258020429617 0.09238346587487661 0.09652396234456811 0.09075364780877593 0.09648415955735715 0.09098764243604734 C 0.09652396234456811 0.09075364780877593 0.09747245655566394 0.08959532180013528 0.09739643370964035 0.08970242338751314" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09739643370964035 0.08970242338751314 C 0.09736162650248621 0.08957577947148669 0.09702137060015327 0.08794919911389337 0.09697874722379066 0.08818269639519587 C 0.09702137060015327 0.08794919911389337 0.09798534480950846 0.0867936026466072 0.09790791422599171 0.08690045601188325" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09790791422599171 0.08690045601188325 C 0.09787169928134441 0.08677356387375501 0.09751337606483321 0.08514379776120311 0.0974733348902242 0.08537775035434439 C 0.09751337606483321 0.08514379776120311 0.09846466444055611 0.08398596443917478 0.09838840832129982 0.08409302489418782" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09838840832129982 0.08409302489418782 C 0.09835336784091298 0.08396633984579659 0.09800876600564896 0.08233899318297117 0.09796792255665768 0.08257280431349293 C 0.09800876600564896 0.08233899318297117 0.09895441363857344 0.08118016524579623 0.0988785297091953 0.08128729132792674" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0988785297091953 0.08128729132792674 C 0.09884386141868663 0.08116067190665296 0.0985040196330877 0.079534164569013 0.0984625102230912 0.07976785827264143 C 0.0985040196330877 0.079534164569013 0.09945282032965852 0.07837589260203082 0.09937664262915334 0.07848296688438548" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09937664262915334 0.07848296688438548 C 0.09941128119948048 0.07860958106518938 0.09975079606308244 0.0802360307576607 0.09979230547307895 0.08000233705403226 C 0.09975079606308244 0.0802360307576607 0.09880238172887167 0.08139437085075128 0.0988785297091953 0.08128729132792674" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0988785297091953 0.08128729132792674 C 0.09891346205064949 0.0814139573085065 0.09925687435765417 0.08304109422540551 0.09929771780664545 0.08280728309488375 C 0.09925687435765417 0.08304109422540551 0.09831263253085434 0.08420017004412983 0.09838840832129982 0.08409302489418782" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09838840832129982 0.08409302489418782 C 0.09842296847287582 0.0842196252476501 0.09876308896560293 0.0858461817288765 0.09880313014021194 0.08561222913573521 C 0.09876308896560293 0.0858461817288765 0.0978333128998067 0.08700780825156225 0.09790791422599171 0.08690045601188325" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09790791422599171 0.08690045601188325 C 0.09794129991330727 0.08702684927560853 0.09826591909741583 0.08865067245788918 0.09830854247377845 0.08841717517658669 C 0.09826591909741583 0.08865067245788918 0.09732042464596218 0.08980952740509034 0.09739643370964035 0.08970242338751314" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09739643370964035 0.08970242338751314 C 0.09743122713444907 0.08982906487334022 0.09777415202013398 0.09145611584470956 0.09781395480734495 0.09122212121743814 C 0.09777415202013398 0.09145611584470956 0.09684420405108914 0.09261771205621452 0.09691880026310881 0.09251035891477019" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09691880026310881 0.09251035891477019 C 0.09695218083625903 0.09263675127673014 0.09725255916802583 0.0942561366898822 0.09731936714091144 0.09402706725828962 C 0.09725255916802583 0.0942561366898822 0.09601691604244568 0.09536186916351382 0.09611710458848151 0.09525919209388119" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09611710458848151 0.09525919209388119 C 0.09617607749564788 0.09539026052765284 0.0968058130128405 0.0970698453856153 0.09682477947447796 0.0968320132991411 C 0.0968058130128405 0.0970698453856153 0.09581156768002809 0.09821994078427428 0.09588950704883192 0.09811317713157172" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09588950704883192 0.09811317713157172 C 0.0959262307787663 0.09824015898227346 0.09628829344158259 0.09987058446010187 0.09633019180804443 0.0996369593399926 C 0.09628829344158259 0.09987058446010187 0.0953081045548935 0.10102332184229058 0.09538672665128972 0.10091667857288304" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09538672665128972 0.10091667857288304 C 0.09542413310881649 0.10104378080687978 0.09579925590889268 0.10267650913927884 0.09583560414161092 0.10244190538084402 C 0.09579925590889268 0.10267650913927884 0.09487679316842577 0.10383942519853885 0.09495054785867078 0.10373192367410079" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09495054785867078 0.10373192367410079 C 0.09498308691004634 0.10385816765306702 0.09530023595266877 0.10548067364785393 0.09534101647517741 0.10524685142169549 C 0.09530023595266877 0.10548067364785393 0.09438786201468295 0.10664536863519444 0.09446118158856714 0.10653779038800222" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09446118158856714 0.10653779038800222 C 0.09449328552358187 0.10666395764421428 0.09480387648266195 0.10828530727193093 0.0948464288087439 0.10805179746254698 C 0.09480387648266195 0.10828530727193093 0.09387589741448701 0.10944725065378162 0.09395055367558369 0.10933990810060973" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09395055367558369 0.10933990810060973 C 0.09398399429781092 0.10946631105084212 0.09430745337804654 0.11108992967550953 0.09435184114231042 0.11085674350339847 C 0.09430745337804654 0.11108992967550953 0.09334007211792601 0.11224492538782112 0.09341790050441712 0.11213814216594245" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09341790050441712 0.11213814216594245 C 0.09345748524125286 0.11224824945907008 0.0938344463191834 0.11365773023644166 0.09389291734644603 0.113459429683474 C 0.0938344463191834 0.11365773023644166 0.09260543190643324 0.11449820890310503 0.09271624817726555 0.11451774880155426 C 0.09260543190643324 0.11449820890310503 0.09262159312372091 0.11302665034911555 0.09256312209645828 0.1132249509020832 C 0.09262159312372091 0.11302665034911555 0.09348913203841369 0.11204757477126405 0.09341790050441712 0.11213814216594245" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 40 KiB

View File

@@ -0,0 +1,18 @@
id: Anus
original_key: 肛門
resource: 胴体
morph_x: 1
morph_y: 1
variants:
- x: 0
y: 0
file: x0y0.svg
fields:
- name: 肛門3
- name: 肛門2
- name: 肛門1
joints:
- position: [
0.23427950000000008,
0.23539967493547997
]

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286706,0.2718577331237974) rotate(0) scale(1,1) translate(-0.013421596340595336,-0.016242689429619418)"><path d="M 0.01601814099216734 0.015365419896189654 C 0.016234519713131675 0.01573834884135173 0.01580176227120301 0.018414557279039075 0.01601814099216734 0.018041628333876996 C 0.01580176227120301 0.018414557279039075 0.012988838898666664 0.019840567238134578 0.013421596340595332 0.019840567238134578 C 0.012988838898666664 0.019840567238134578 0.01060867296805899 0.017668699388714924 0.010825051689023325 0.018041628333877 C 0.01060867296805899 0.017668699388714924 0.011041430409987658 0.014992490951027584 0.010825051689023325 0.01536541989618966 C 0.011041430409987658 0.014992490951027584 0.013854353782523997 0.013566480991932079 0.013421596340595329 0.013566480991932079 C 0.013854353782523997 0.013566480991932079 0.016234519713131675 0.01573834884135173 0.01601814099216734 0.015365419896189654 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33734345282867056,0.2712976456560574) rotate(0) scale(1,1) translate(-0.23427950000000003,-0.23483958746773995)"><path d="M 0.23427950000000003 0.23682612220681987 C 0.2340967734531577 0.23682612220681987 0.23305393353857107 0.23628945486810446 0.23318314071894605 0.23640832547404944 C 0.23305393353857107 0.23628945486810446 0.23272901383550007 0.23523156651238505 0.23272901383550007 0.23539967493547997 C 0.23272901383550007 0.23523156651238505 0.23331234789932104 0.23427215379096528 0.23318314071894605 0.23439102439691029 C 0.23331234789932104 0.23427215379096528 0.23446222654684234 0.23397322766413986 0.23427950000000003 0.23397322766413986 C 0.23446222654684234 0.23397322766413986 0.23550506646142894 0.2345098950028553 0.23537585928105392 0.23439102439691029 C 0.23550506646142894 0.2345098950028553 0.2358299861645001 0.2355677833585749 0.2358299861645001 0.23539967493547997 C 0.2358299861645001 0.2355677833585749 0.2352466521006789 0.23652719607999442 0.23537585928105392 0.23640832547404944 C 0.2352466521006789 0.23652719607999442 0.2340967734531577 0.23682612220681987 0.23427950000000003 0.23682612220681987 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.2718577331237974) rotate(0) scale(1,1) translate(-0.23427950000000003,-0.2342795)"><path d="M 0.2349079319468537 0.23427949999999997 C 0.2349079319468537 0.23430216515706906 0.23467149916223012 0.2344315176286745 0.2347238684911346 0.23441549094241432 C 0.23467149916223012 0.2344315176286745 0.23420543858481097 0.23447182023512214 0.23427950000000006 0.23447182023512214 C 0.23420543858481097 0.23447182023512214 0.23378276217996097 0.23439946425615413 0.23383513150886545 0.23441549094241432 C 0.23378276217996097 0.23439946425615413 0.23365106805314625 0.2342568348429309 0.23365106805314625 0.23427949999999997 C 0.23365106805314625 0.2342568348429309 0.23388750083776993 0.2341274823713252 0.23383513150886545 0.2341435090575854 C 0.23388750083776993 0.2341274823713252 0.23435356141518915 0.23408717976487736 0.23427950000000006 0.23408717976487736 C 0.23435356141518915 0.23408717976487736 0.2347762378200391 0.23415953574384563 0.2347238684911346 0.2341435090575854 C 0.2347762378200391 0.23415953574384563 0.2349079319468537 0.23430216515706906 0.2349079319468537 0.23427949999999997 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -0,0 +1,26 @@
id: AnusSemenDrip
original_key: 肛門精液垂れ
resource: 胴体
morph_x: 1
morph_y: 6
variants:
- x: 0
y: 0
file: x0y0.svg
- x: 0
y: 1
file: x0y1.svg
- x: 0
y: 2
file: x0y2.svg
- x: 0
y: 3
file: x0y3.svg
- x: 0
y: 4
file: x0y4.svg
- x: 0
y: 5
file: x0y5.svg
fields:
- name: 精液

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286706,0.2718577331237974) rotate(0) scale(1,1) translate(-0.04650436568689439,-0.04504746089957566)"><path d="M 0.04701759506581745 0.04446207166490891 C 0.0470878015352304 0.044493953095957425 0.04739628927518971 0.04478052585250031 0.04734684331984976 0.04471902205995997 C 0.04739628927518971 0.04478052585250031 0.047655703690947404 0.04527254845373298 0.047610946529896885 0.04520011717539292 C 0.047655703690947404 0.04527254845373298 0.04794322001193791 0.045664620859593844 0.047883929252456034 0.04558819740004063 C 0.04794322001193791 0.045664620859593844 0.04836898206047831 0.0462054552701691 0.048322435643679384 0.046117198690031454 C 0.04836898206047831 0.0462054552701691 0.0484279393947201 0.046768671793895766 0.04844248625404312 0.04664727636169242 C 0.0484279393947201 0.046768671793895766 0.048088819592589004 0.047740413343704824 0.04814787333180317 0.0475739438764716 C 0.048088819592589004 0.047740413343704824 0.047649196084696116 0.04887098761830846 0.047733841383473107 0.04864490996849118 C 0.047649196084696116 0.04887098761830846 0.04702967343843102 0.050452579960647864 0.04713212974647925 0.05028687567427886 C 0.04702967343843102 0.050452579960647864 0.046399738343630245 0.05063336140491929 0.04650436568689439 0.05063336140491929 C 0.046399738343630245 0.05063336140491929 0.0457741453192613 0.05012117138790985 0.04587660162730953 0.05028687567427886 C 0.0457741453192613 0.05012117138790985 0.04519024469153868 0.04841883231867391 0.04527488999031567 0.04864490996849118 C 0.04519024469153868 0.04841883231867391 0.044801804302771434 0.04740747440923837 0.044860858041985606 0.0475739438764716 C 0.044801804302771434 0.04740747440923837 0.04455169826042262 0.046525880929489075 0.04456624511974564 0.04664727636169242 C 0.04455169826042262 0.046525880929489075 0.04473284214690831 0.046028942109893806 0.044686295730109384 0.046117198690031454 C 0.04473284214690831 0.046028942109893806 0.04518409288081461 0.045511773940487416 0.045124802121332734 0.04558819740004063 C 0.04518409288081461 0.045511773940487416 0.04544254200494242 0.04512768589705286 0.04539778484389189 0.04520011717539292 C 0.04544254200494242 0.04512768589705286 0.04571133400927898 0.044657518267419635 0.045661888053939025 0.04471902205995997 C 0.04571133400927898 0.044657518267419635 0.04606134277738427 0.0444301902338604 0.045991136307971324 0.04446207166490891 C 0.04606134277738427 0.0444301902338604 0.0465899039167149 0.044336444887377834 0.04650436568689439 0.044336444887377834 C 0.0465899039167149 0.044336444887377834 0.0470878015352304 0.044493953095957425 0.04701759506581745 0.04446207166490891 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286706,0.2718577331237974) rotate(0) scale(1,1) translate(-0.04650436568689439,-0.04504746089957566)"><path d="M 0.04707020107715707 0.04446406441642492 C 0.04714571512940499 0.04450247192572798 0.0474650484796317 0.0448550202093839 0.0474105343138694 0.044793046411654 C 0.0474650484796317 0.0448550202093839 0.04777560441664271 0.04527626564030127 0.04772437106630465 0.04520774998918378 C 0.04777560441664271 0.04527626564030127 0.04809070258025487 0.045695478857594764 0.04802533451792611 0.04561523422506389 C 0.04809070258025487 0.045695478857594764 0.04863680733557611 0.04631007414572521 0.04850878781424985 0.04617068557955425 C 0.04863680733557611 0.04631007414572521 0.049661407252294634 0.047550015386595985 0.049561568773841186 0.047287897019115406 C 0.049661407252294634 0.047550015386595985 0.04962341978746239 0.049773654289962894 0.04970684955569124 0.04931610598932119 C 0.04962341978746239 0.049773654289962894 0.048382958495301304 0.05316577610768636 0.048560411555094926 0.0527784766268158 C 0.048382958495301304 0.05316577610768636 0.04740607568248439 0.054091133831036545 0.047577412838167764 0.05396369975976788 C 0.04740607568248439 0.054091133831036545 0.0463255244950155 0.05430768548203983 0.046504365686894394 0.05430768548203983 C 0.0463255244950155 0.05430768548203983 0.04525998137993767 0.05383626568849921 0.045431318535621046 0.05396369975976788 C 0.04525998137993767 0.05383626568849921 0.044270866758900254 0.05239117714594524 0.04444831981869388 0.0527784766268158 C 0.044270866758900254 0.05239117714594524 0.04321845204986871 0.04885855768867949 0.04330188181809757 0.04931610598932119 C 0.04321845204986871 0.04885855768867949 0.04354700107840103 0.04702577865163483 0.04344716259994758 0.047287897019115406 C 0.04354700107840103 0.04702577865163483 0.04462796308086519 0.046031297013383286 0.04449994355953893 0.04617068557955425 C 0.04462796308086519 0.046031297013383286 0.045048764918191445 0.045534989592533014 0.044983396855862674 0.04561523422506389 C 0.045048764918191445 0.045534989592533014 0.0453355936578222 0.04513923433806629 0.04528436030748414 0.04520774998918378 C 0.0453355936578222 0.04513923433806629 0.045652711225681694 0.044731072613924096 0.045598197059919396 0.044793046411654 C 0.045652711225681694 0.044731072613924096 0.04601404434887963 0.04442565690712186 0.04593853029663172 0.04446406441642492 C 0.04601404434887963 0.04442565690712186 0.0465986715852715 0.044332156300017286 0.04650436568689439 0.044332156300017286 C 0.0465986715852715 0.044332156300017286 0.04714571512940499 0.04450247192572798 0.04707020107715707 0.04446406441642492 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286706,0.2718577331237974) rotate(0) scale(1,1) translate(-0.04650436568689439,-0.044263044861705014)"><path d="M 0.0472647402760381 0.04384391552699912 C 0.0473500235434683 0.043928431649669385 0.047601894892163495 0.044656588378238576 0.04752776489605685 0.04453914281577441 C 0.047601894892163495 0.044656588378238576 0.048212161612572524 0.04539033907129773 0.04815430022931791 0.04525326227656915 C 0.048212161612572524 0.04539033907129773 0.048293813869377845 0.04638148977476764 0.04822210149511227 0.04618406435251743 C 0.048293813869377845 0.04638148977476764 0.049207799490623885 0.04789032393014179 0.04901484872050484 0.04762236734357169 C 0.049207799490623885 0.04789032393014179 0.05067498554947358 0.04969485943622993 0.05053751073654076 0.04939954339135864 C 0.05067498554947358 0.04969485943622993 0.050603813969404235 0.05159302600021312 0.0506645464756987 0.05116615988202719 C 0.050603813969404235 0.05159302600021312 0.049601039208599304 0.05494037646045162 0.04980872066100713 0.054521936809589805 C 0.049601039208599304 0.05494037646045162 0.04789700613229535 0.056384358757799145 0.04817236904680474 0.05618743569236902 C 0.04789700613229535 0.056384358757799145 0.04622636512690934 0.05688501359475136 0.0465043656868944 0.05688501359475136 C 0.04622636512690934 0.05688501359475136 0.044560999412474676 0.05599051262693889 0.04483636232698407 0.05618743569236902 C 0.044560999412474676 0.05599051262693889 0.04299232926037384 0.05410349715872799 0.04320001071278167 0.054521936809589805 C 0.04299232926037384 0.05410349715872799 0.042283452391795644 0.05073929376384126 0.042344184898090116 0.05116615988202719 C 0.042283452391795644 0.05073929376384126 0.04260869545018083 0.049104227346487346 0.042471220637248015 0.04939954339135864 C 0.04260869545018083 0.049104227346487346 0.04418683342340298 0.04735441075700159 0.04399388265328394 0.04762236734357169 C 0.04418683342340298 0.04735441075700159 0.04485834225294209 0.04598663893026722 0.044786629878676515 0.04618406435251743 C 0.04485834225294209 0.04598663893026722 0.044912292527725516 0.04511618548184057 0.044854431144470894 0.04525326227656915 C 0.044912292527725516 0.04511618548184057 0.0455550964738386 0.044421697253310244 0.04548096647773195 0.04453914281577441 C 0.0455550964738386 0.044421697253310244 0.0458292743651809 0.04375939940432886 0.0457439910977507 0.04384391552699912 C 0.0458292743651809 0.04375939940432886 0.046631094785085 0.043524949343731294 0.04650436568689439 0.043524949343731294 C 0.046631094785085 0.043524949343731294 0.0473500235434683 0.043928431649669385 0.0472647402760381 0.04384391552699912 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286706,0.2718577331237974) rotate(0) scale(1,1) translate(-0.04650436568689439,-0.044263044861705014)"><path d="M 0.047252447025336895 0.04381698711207843 C 0.04733070282859468 0.04389236840120107 0.047467563095716675 0.04450946556522491 0.04744343532598785 0.04440987600608997 C 0.047467563095716675 0.04450946556522491 0.047648406497367415 0.04516566575300793 0.04754198026208282 0.0450120618216977 C 0.047648406497367415 0.04516566575300793 0.04877419165673631 0.046489932458105655 0.048720550149403005 0.0462531231818127 C 0.04877419165673631 0.046489932458105655 0.04824119223293151 0.04811093924702838 0.04818567835008254 0.04785377313721321 C 0.04824119223293151 0.04811093924702838 0.04970970634391995 0.04958076501597616 0.04938671674359064 0.04933911649959476 C 0.04970970634391995 0.04958076501597616 0.05223810289175226 0.051200350568436345 0.05206155355403425 0.05075355533379001 C 0.05223810289175226 0.051200350568436345 0.05128312649531579 0.055180995977029954 0.05150530879620666 0.05470065931535078 C 0.05128312649531579 0.055180995977029954 0.04897862068423437 0.05673995193966125 0.049395365943343726 0.056517595273940104 C 0.04897862068423437 0.05673995193966125 0.04602253231081952 0.0573689393040045 0.04650436568689441 0.0573689393040045 C 0.04602253231081952 0.0573689393040045 0.04319662017133575 0.05629523860821896 0.043613365430445104 0.056517595273940104 C 0.04319662017133575 0.05629523860821896 0.041281240276691306 0.054220322653671604 0.04150342257758218 0.05470065931535078 C 0.041281240276691306 0.054220322653671604 0.04112372715747256 0.05030676009914367 0.040947177819754564 0.05075355533379001 C 0.04112372715747256 0.05030676009914367 0.04394500423052744 0.04909746798321336 0.04362201463019814 0.04933911649959476 C 0.04394500423052744 0.04909746798321336 0.04487856690655521 0.047596607027398034 0.04482305302370624 0.04785377313721321 C 0.04487856690655521 0.047596607027398034 0.04434182273171908 0.04601631390551974 0.04428818122438577 0.0462531231818127 C 0.04434182273171908 0.04601631390551974 0.04557317734699057 0.044858457890387476 0.04546675111170597 0.0450120618216977 C 0.04557317734699057 0.044858457890387476 0.045589423817529784 0.04431028644695503 0.045565296047800956 0.04440987600608997 C 0.045589423817529784 0.04431028644695503 0.04583454015170968 0.04374160582295579 0.045756284348451894 0.04381698711207843 C 0.04583454015170968 0.04374160582295579 0.046629045909968136 0.043505300536618274 0.04650436568689439 0.043505300536618274 C 0.046629045909968136 0.043505300536618274 0.04733070282859468 0.04389236840120107 0.047252447025336895 0.04381698711207843 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286706,0.2718577331237974) rotate(0) scale(1,1) translate(-0.04650436568689439,-0.044263044861705014)"><path d="M 0.04719790218630142 0.04377254214834438 C 0.047311976141117686 0.0438575797999273 0.047912284260168365 0.04463464954789297 0.04787325314468956 0.0445267716431456 C 0.047912284260168365 0.04463464954789297 0.04764063491709206 0.04519790247765472 0.047666275572047015 0.045067077005312886 C 0.04764063491709206 0.04519790247765472 0.0475890605042665 0.046254642159678394 0.04756556528523016 0.04609667731124763 C 0.0475890605042665 0.046254642159678394 0.04809534541413014 0.04713315759565517 0.04794821820048304 0.04696265518648213 C 0.04809534541413014 0.04713315759565517 0.04942997283509652 0.04839940742663381 0.04933109184899532 0.048142706221324216 C 0.04942997283509652 0.04839940742663381 0.049460616564021426 0.05036771589420819 0.04913479003369751 0.05004306965019727 C 0.049460616564021426 0.05036771589420819 0.05357189524672985 0.05257258823257967 0.053241010212882314 0.05203846114945526 C 0.05357189524672985 0.05257258823257967 0.052544023396035686 0.05698565208135864 0.05310541043986801 0.056452594647690105 C 0.052544023396035686 0.05698565208135864 0.045404191561398806 0.05843515035347771 0.04650436568689441 0.05843515035347771 C 0.045404191561398806 0.05843515035347771 0.039341933890088485 0.05591953721402157 0.03990332093392081 0.056452594647690105 C 0.039341933890088485 0.05591953721402157 0.04009860619475404 0.051504334066330856 0.0397677211609065 0.05203846114945526 C 0.04009860619475404 0.051504334066330856 0.044199767870415206 0.049718423406186346 0.043873941340091295 0.05004306965019727 C 0.044199767870415206 0.049718423406186346 0.04377652051089465 0.04788600501601462 0.04367763952479345 0.048142706221324216 C 0.04377652051089465 0.04788600501601462 0.04520764038695284 0.04679215277730908 0.04506051317330574 0.04696265518648213 C 0.04520764038695284 0.04679215277730908 0.045466661307594955 0.04593871246281686 0.04544316608855862 0.04609667731124763 C 0.045466661307594955 0.04593871246281686 0.045316815146786815 0.04493625153297105 0.04534245580174177 0.045067077005312886 C 0.045316815146786815 0.04493625153297105 0.04517450934457803 0.044418893738398225 0.045135478229099225 0.0445267716431456 C 0.04517450934457803 0.044418893738398225 0.04592490314230363 0.04368750449676147 0.04581082918748736 0.04377254214834438 C 0.04592490314230363 0.04368750449676147 0.04661995510346222 0.043506319824150576 0.04650436568689439 0.043506319824150576 C 0.04661995510346222 0.043506319824150576 0.047311976141117686 0.0438575797999273 0.04719790218630142 0.04377254214834438 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286706,0.2718577331237974) rotate(0) scale(1,1) translate(-0.04650436568689439,-0.043782192209650676)"><path d="M 0.047307568469765235 0.04338463500109955 C 0.04740666846696295 0.043511575181604006 0.04769781865497433 0.04468449198678473 0.047693565653267045 0.04452412300607132 C 0.04769781865497433 0.04468449198678473 0.04731473873055604 0.04542745921940382 0.04735860449025261 0.04530906276966042 C 0.04731473873055604 0.04542745921940382 0.0471587773068105 0.04610732767549028 0.04716717653690825 0.04594488040299206 C 0.0471587773068105 0.04610732767549028 0.04728568937946839 0.04749609714368322 0.04725781372907955 0.047258430039639095 C 0.04728568937946839 0.04749609714368322 0.047663546279456896 0.04902533288734985 0.0475016843415744 0.048796885651521515 C 0.047663546279456896 0.04902533288734985 0.04985581394876662 0.05032344668630761 0.04920015698366949 0.04999979686957916 C 0.04985581394876662 0.05032344668630761 0.0558448775159939 0.053336559338289666 0.055369567922740004 0.0526806834522629 C 0.0558448775159939 0.053336559338289666 0.05416510524972914 0.05852052105280923 0.05490387210271627 0.05787030750190039 C 0.05416510524972914 0.05852052105280923 0.045104447950924095 0.06048324606316892 0.04650436568689441 0.06048324606316892 C 0.045104447950924095 0.06048324606316892 0.037366092418085396 0.057220093950991556 0.03810485927107253 0.05787030750190039 C 0.037366092418085396 0.057220093950991556 0.03811447304430268 0.052024807566236134 0.037639163451048785 0.0526806834522629 C 0.03811447304430268 0.052024807566236134 0.044464231355216446 0.04967614705285071 0.043808574390119315 0.04999979686957916 C 0.044464231355216446 0.04967614705285071 0.045668908970096865 0.04856843841569318 0.04550704703221437 0.048796885651521515 C 0.045668908970096865 0.04856843841569318 0.045778793295098076 0.04702076293559497 0.04575091764470923 0.047258430039639095 C 0.045778793295098076 0.04702076293559497 0.04583315560678276 0.045782433130493835 0.04584155483688052 0.04594488040299206 C 0.04583315560678276 0.045782433130493835 0.04560626112383956 0.04519066631991703 0.045650126883536125 0.04530906276966042 C 0.04560626112383956 0.04519066631991703 0.045319418722229 0.044363754025357915 0.045315165720521716 0.04452412300607132 C 0.045319418722229 0.044363754025357915 0.04580026290122123 0.04325769482059509 0.045701162904023505 0.04338463500109955 C 0.04580026290122123 0.04325769482059509 0.046638232817372866 0.043000840840017804 0.04650436568689439 0.043000840840017804 C 0.046638232817372866 0.043000840840017804 0.04740666846696295 0.043511575181604006 0.047307568469765235 0.04338463500109955 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -0,0 +1,175 @@
id: Back
original_key: 背中
resource: 肢中
morph_x: 1
morph_y: 3
variants:
- x: 0
y: 0
file: x0y0.svg
- x: 0
y: 1
file: x0y1.svg
- x: 0
y: 2
file: x0y2.svg
fields:
- name: 羽毛1
- name: 羽毛2
joints:
- position: [
0.02365804436862975,
0.009226817482352786
]
- position: [
0.08020662908846857,
0.164914315192153
]
- position: [
0.07255127072461791,
0.11201394207007394
]
- position: [
0.071545291706398,
0.21721024809702624
]
- position: [
0.06282689669009595,
0.11650671893913629
]
- position: [
0.05420814222672252,
0.12326942213283076
]
- position: [
0.04700290105009538,
0.13306172795532215
]
- position: [
0.04202686084058744,
0.14477507348330923
]
- position: [
0.039389559529548215,
0.1581516119984586
]
- position: [
0.03938955952954823,
0.1716770183858475
]
- position: [
0.04202686084058744,
0.18505355690099687
]
- position: [
0.0470029010500954,
0.196766902428984
]
- position: [
0.054208142226722544,
0.20655920825147525
]
- position: [
0.06282689669009596,
0.2133219114451697
]
- position: [
0.07532582900397887,
0.21930787405234473
]
- position: [
0.07963856428626281,
0.13550000000000004
]
- position: [
0.058455127975897574,
0.16863095258788496
]
- position: [
0.03632713032394423,
0.035980704537156
]
- position: [
0.03258823575863232,
0.03796011930702701
]
- position: [
0.020085750089291803,
0.03684656683927145
]
- position: [
0.07907049948405709,
0.164914315192153
]
- position: [
0.08672585784790776,
0.11201394207007394
]
- position: [
0.08773183686612762,
0.21721024809702624
]
- position: [
0.09645023188242963,
0.11650671893913629
]
- position: [
0.10506898634580308,
0.12326942213283076
]
- position: [
0.11227422752243021,
0.13306172795532215
]
- position: [
0.11725026773193814,
0.14477507348330923
]
- position: [
0.11988756904297737,
0.1581516119984586
]
- position: [
0.11988756904297737,
0.1716770183858475
]
- position: [
0.11725026773193814,
0.18505355690099687
]
- position: [
0.11227422752243021,
0.196766902428984
]
- position: [
0.10506898634580308,
0.20655920825147525
]
- position: [
0.09645023188242963,
0.2133219114451697
]
- position: [
0.08395129956854674,
0.21930787405234473
]
- position: [
0.09489836531813567,
0.16863095258788496
]
- position: [
0.03184603960146293,
0.035980704537156
]
- position: [
0.03558493416677477,
0.03796011930702701
]
- position: [
0.03721113642398388,
0.03684656683927145
]
- position: [
0.0076061099436181,
0.011409164915427206
]

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.16513021119802657) rotate(0) scale(1,1) translate(-0.02365804436862975,-0.02365804436862975)"><path d="M 0.02365804436862973 0.10157637864518798 C 0.023293023778414253 0.10038725193971317 0.018615089200451254 0.08503506345708083 0.01927779728604401 0.08730685817949023 C 0.018615089200451254 0.08503506345708083 0.015407859846139368 0.07323217395934048 0.01570554734151665 0.07431484197627508" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01570554734151665 0.07431484197627508 C 0.014937748012444185 0.07552441552287645 0.005647004262652764 0.08776104788690464 0.006491955392647094 0.08882972453549157 C 0.005647004262652764 0.08776104788690464 0.0054889819806628205 0.05921247199804363 0.005566133781584688 0.061490722193231935" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005566133781584688 0.061490722193231935 C 0.004463038117057138 0.0625572531419305 -0.00826650465542364 0.07291456280593367 -0.007671014192745903 0.07428909357761479 C -0.00826650465542364 0.07291456280593367 -0.0010721465686983544 0.04255529121267883 -0.0015797517705481658 0.044996352933058516" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0015797517705481658 0.044996352933058516 C -0.003025816021895801 0.04586322050044466 -0.019277532556769946 0.05406411204351797 -0.018932522786719783 0.055398763741692295 C -0.019277532556769946 0.05406411204351797 -0.004618814529852661 0.026779013289406125 -0.005719869011150132 0.0289805325549666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.005719869011150132 0.0289805325549666 C -0.006992314058714908 0.029215020530789063 -0.01854105013361246 0.02901084675646945 -0.020989209581927452 0.03179438826483617 C -0.01854105013361246 0.02901084675646945 0.02737864886450953 -0.007439995029623196 0.02365804436862976 -0.004421965545434014" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02365804436862976 -0.004421965545434014 C 0.02737864886450953 -0.0014039360612448349 0.07075345776750194 0.034577929773202856 0.06830529831918696 0.03179438826483614 C 0.07075345776750194 0.034577929773202856 0.05176351270084487 0.028746044579144134 0.05303595774840965 0.028980532554966597" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05303595774840965 0.028980532554966597 C 0.05413701222970711 0.031182051820527072 0.06590360175392908 0.056733415439866625 0.06624861152397923 0.055398763741692295 C 0.06590360175392908 0.056733415439866625 0.04744977625646014 0.04412948536567237 0.04889584050780776 0.044996352933058516" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04889584050780776 0.044996352933058516 C 0.04940344570965756 0.047437414653438204 0.05439161246732762 0.07566362434929588 0.05498710293000537 0.07428909357761476 C 0.05439161246732762 0.07566362434929588 0.040646859291147246 0.06042419124453337 0.041749954955674795 0.061490722193231935" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.041749954955674795 0.061490722193231935 C 0.04167280315475293 0.06376897238842023 0.03997918221461808 0.08989840118407849 0.040824133344612414 0.08882972453549157 C 0.03997918221461808 0.08989840118407849 0.030842742066670346 0.07310526842967369 0.03161054139574281 0.07431484197627507" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03161054139574281 0.07431484197627507 C 0.031312853900365534 0.07539750999320967 0.027375583365622708 0.08957865290189963 0.028038291451215464 0.08730685817949023 C 0.027375583365622708 0.08957865290189963 0.023293023778414267 0.1027655053506628 0.023658044368629744 0.10157637864518798" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.1506989843117496) rotate(0) scale(1,1) translate(-0.02365804436862975,-0.02365804436862975)"><path d="M 0.023658044368629744 0.015884630304575754 C 0.027072300883652072 0.01769998157452153 0.06679702361562005 0.039562645854671 0.06462912254889767 0.037668845543925064 C 0.06679702361562005 0.039562645854671 0.04842650172099838 0.038688683074327115 0.049672857169298326 0.03861023403352696" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.049672857169298326 0.03861023403352696 C 0.05129088651992113 0.04024246502158611 0.0690183741570495 0.059273425186947525 0.06908920937677197 0.0581970058902368 C 0.0690183741570495 0.059273425186947525 0.0471339699622835 0.0509714539027073 0.04882283453262877 0.051527265594055724" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04882283453262877 0.051527265594055724 C 0.04982389827096273 0.05384919636069817 0.060440476593190184 0.08055631722361825 0.060835599392636296 0.07939043479376501 C 0.060440476593190184 0.08055631722361825 0.04268517440149535 0.06436180641550548 0.04408136093927542 0.06551785475229469" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04408136093927542 0.06551785475229469 C 0.04445048954635418 0.06802192579360947 0.04786123368379213 0.09666309181239618 0.04851090422422055 0.09556670724807215 C 0.04786123368379213 0.09666309181239618 0.0352665153066272 0.07726678304719235 0.03628531445413438 0.07867446952418311" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03628531445413438 0.07867446952418311 C 0.035999355791449854 0.08113223981675678 0.031801537994794696 0.10877625439281385 0.03285381050192008 0.10816771303506723 C 0.031801537994794696 0.10877625439281385 0.02289173052418888 0.0841277368823156 0.02365804436862974 0.08597696581714265" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02365804436862974 0.08597696581714265 C 0.02289173052418888 0.08782619475196969 0.013410005728214028 0.1075591716773206 0.014462278235339413 0.10816771303506723 C 0.013410005728214028 0.1075591716773206 0.01074481562044059 0.07621669923160938 0.011030774283125116 0.07867446952418307" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011030774283125116 0.07867446952418307 C 0.010011975135617936 0.08008215600117383 -0.0018444860273894512 0.09447032268374807 -0.0011948154869610343 0.0955667072480721 C -0.0018444860273894512 0.09447032268374807 0.0036038564050628777 0.0630137837109799 0.003234727797984115 0.06551785475229469" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003234727797984115 0.06551785475229469 C 0.0018385412602040397 0.06667390308908389 -0.013914633454822904 0.07822455236391176 -0.013519510655376791 0.07939043479376501 C -0.013914633454822904 0.07822455236391176 -0.0005056820570352792 0.049205334827413266 -0.0015067457953692417 0.05152726559405571" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0015067457953692417 0.05152726559405571 C -0.003195610365714519 0.052083077285404136 -0.02184395585923503 0.057120586593526056 -0.02177312063951257 0.05819700589023678 C -0.02184395585923503 0.057120586593526056 -0.0007387390814159107 0.036978003045467805 -0.0023567684320387307 0.03861023403352696" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0023567684320387307 0.03861023403352696 C -0.003603123880338689 0.0385317849927268 -0.015145132744915852 0.03577504523317913 -0.017313033811638224 0.037668845543925064 C -0.015145132744915852 0.03577504523317913 0.027072300883652076 0.014069279034629978 0.023658044368629744 0.015884630304575754" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 7.3 KiB

View File

@@ -0,0 +1,145 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g id="左">
<g transform="translate(0.3373434528286707,0.16513021119802657) rotate(0) scale(1,1) translate(-0.07963856428626281,-0.13550000000000004)"><path d="M 0.07963856428626283 0.2259469642180637 C 0.07777730396622728 0.22526556217562935 0.05404498864732233 0.21522711266610509 0.057303440445836316 0.21777013970885137 C 0.05404498864732233 0.21522711266610509 0.03862854365054231 0.19102598766205023 0.040537142704095 0.19543063970510843 C 0.03862854365054231 0.19102598766205023 0.034400251803204024 0.15982826110666049 0.034400251803204024 0.16491431519215305 C 0.034400251803204024 0.15982826110666049 0.042445741757647676 0.12999333863613954 0.04053714270409499 0.13439799067919775 C 0.042445741757647676 0.12999333863613954 0.060561892244350275 0.10951546363270831 0.05730344044583629 0.1120584906754546 C 0.060561892244350275 0.10951546363270831 0.08149982460629837 0.10320026412380784 0.07963856428626283 0.10388166616624221" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33791151763087646,0.19454452639017952) rotate(0) scale(1,1) translate(-0.07667674664701668,-0.18353529698559207)"><path d="M 0.07610868184481094 0.23236141620632064 C 0.07462914133548594 0.23181629457237315 0.05575690204080311 0.22378553496475379 0.05835419573291087 0.2258199565989508 C 0.05575690204080311 0.22378553496475379 0.043414278296675664 0.20442463496150987 0.044941157539517815 0.20794835659595642 C 0.043414278296675664 0.20442463496150987 0.04003164481880503 0.17946645371719808 0.04003164481880503 0.18353529698559212 C 0.04003164481880503 0.17946645371719808 0.04646803678235996 0.1555985157407813 0.04494115753951781 0.15912223737522785 C 0.04646803678235996 0.1555985157407813 0.06095148942501861 0.13921621573803641 0.05835419573291085 0.14125063737223345 C 0.06095148942501861 0.13921621573803641 0.07758822235413593 0.13416405613091606 0.07610868184481093 0.13470917776486355" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="鱗">
<g transform="translate(0.32925018024880587,0.24684045929505277) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04187516625921871)"><path d="M 0.03842391552569416 0.058963518470376966 C 0.03803747489186797 0.057920030335447834 0.03349378050025206 0.04450831231557218 0.033786627919779905 0.046441660851227404 C 0.03349378050025206 0.04450831231557218 0.03500333970565839 0.034873475641788165 0.03490974649136004 0.03576333604251426" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03490974649136004 0.03576333604251426 C 0.03525646732344091 0.035759563580923685 0.0397638381404922 0.03571052158024617 0.03907039647633046 0.03571806650342733 C 0.0397638381404922 0.03571052158024617 0.04357776729338177 0.035669024502749794 0.043231046461300895 0.03567279696434037" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.043231046461300895 0.03567279696434037 C 0.04347711864269948 0.03594111429602609 0.046496190368172596 0.03951841866150032 0.04618391263808391 0.038892604944569004 C 0.046496190368172596 0.03951841866150032 0.047044584771055185 0.043540057952761765 0.046978379222365085 0.04318256156751617" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.046978379222365085 0.04318256156751617 C 0.046694383648615355 0.043576525437554796 0.04285756036264572 0.04922520774988476 0.0435704323373683 0.04791012800797969 C 0.04285756036264572 0.04922520774988476 0.03799503912472131 0.059884634342243406 0.03842391552569416 0.058963518470376966" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3205317852325038,0.24295212264319624) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04187687646587633)"><path d="M 0.03694938880936389 0.05860619641225245 C 0.03665536468226714 0.05753299854424541 0.033297868665134574 0.043776307101024106 0.033421099284202935 0.04572782199616797 C 0.033297868665134574 0.043776307101024106 0.03564141488857197 0.03430970064338931 0.035470621380543584 0.03518801767052613" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035470621380543584 0.03518801767052613 C 0.03581635162687242 0.035214478275936933 0.040310844829147256 0.035558466146277404 0.03961938433648959 0.035505544935455796 C 0.040310844829147256 0.035558466146277404 0.04411387753876443 0.03584953280579625 0.0437681472924356 0.03582307220038545" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0437681472924356 0.03582307220038545 C 0.0439898976985576 0.03611181510735622 0.04668569832562526 0.03993863618834417 0.046429152165899615 0.03928798708403467 C 0.04668569832562526 0.03993863618834417 0.04688149696274702 0.04399276764943816 0.046846701209143374 0.04363086145209943" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.046846701209143374 0.04363086145209943 C 0.04652945011058341 0.04399857432550441 0.04221491199310885 0.049291360512971935 0.04303968802642381 0.04804341593295918 C 0.04221491199310885 0.049291360512971935 0.0364418638746089 0.05948642811886022 0.03694938880936389 0.05860619641225245" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3119130307691304,0.23618941944950178) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04187874804625983)"><path d="M 0.035511621731519456 0.05812171550162232 C 0.03531225181229598 0.05702697558432749 0.03316650674164868 0.04303000744616085 0.03311918270083776 0.04498483649408439 C 0.03316650674164868 0.04303000744616085 0.03632620418128488 0.03380367779591115 0.036079510221250485 0.03466376692653986" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.036079510221250485 0.03466376692653986 C 0.03642161866589509 0.03472025921776752 0.04086902844627497 0.035454659003727136 0.04018481155698576 0.03534167442127181 C 0.04086902844627497 0.035454659003727136 0.04463222133736565 0.0360760742072314 0.04429011289272104 0.03601958191600374" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04429011289272104 0.03601958191600374 C 0.044485853869079314 0.036326552890389774 0.04683786672720061 0.04037376626776738 0.04663900460902032 0.039703233608636174 C 0.04683786672720061 0.04037376626776738 0.046679579452706614 0.04442953551032347 0.04667645831088459 0.044065973825578295" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04667645831088459 0.044065973825578295 C 0.04632836615993589 0.04440463718535191 0.04156894945121971 0.04930124594919871 0.04249935249950014 0.048129934142861715 C 0.04156894945121971 0.04930124594919871 0.03492931083418773 0.0589543639481857 0.035511621731519456 0.05812171550162232" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3047077895925033,0.22639711362701054) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04188076675651239)"><path d="M 0.03412155656777077 0.05751376293075404 C 0.03401835818188871 0.056405812595964076 0.0331006944733506 0.04227509314198398 0.03288317593718601 0.04421835891327445 C 0.0331006944733506 0.04227509314198398 0.0370524959237925 0.03335925823876793 0.036731779001745846 0.03419457367526843" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.036731779001745846 0.03419457367526843 C 0.03706766199287175 0.03428066771186573 0.041434140877508525 0.03539989018763061 0.04076237489525671 0.035227702114436016 C 0.041434140877508525 0.03539989018763061 0.04512885377989351 0.036346924590200884 0.0447929707887676 0.03626083055360359" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0447929707887676 0.03626083055360359 C 0.04496121262834043 0.03658369336093567 0.04695153747948087 0.04082049729712683 0.04681187286364151 0.04013518424158858 C 0.04695153747948087 0.04082049729712683 0.046440368955106476 0.04484703746826876 0.04646894617883994 0.04448458722006259" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04646894617883994 0.04448458722006259 C 0.046092662166955 0.04479162363354644 0.04092458890196492 0.04925478882442643 0.04195353803622068 0.04816902418186881 C 0.04092458890196492 0.04925478882442643 0.03346889144539995 0.058292491159827806 0.03412155656777077 0.05751376293075404" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2997317493829953,0.2146837680990234) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04188291723303005)"><path d="M 0.03278977255335827 0.05678696558580371 C 0.03278353110284707 0.055674237004565065 0.033100932731340606 0.041517309542178006 0.03271487514722384 0.043434222610939925 C 0.033100932731340606 0.041517309542178006 0.03781476259738739 0.03297982427313738 0.037422463562759425 0.03378400876066065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.037422463562759425 0.03378400876066065 C 0.037749564827992466 0.03389904931502408 0.042001881276022016 0.035394576521748655 0.04134767874555593 0.0351644954130218 C 0.042001881276022016 0.035394576521748655 0.045599995193585506 0.03666002261974636 0.04527289392835246 0.03654498206538293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04527289392835246 0.03654498206538293 C 0.04541235620915349 0.036881279524747373 0.0470258454794049 0.04127542938354552 0.04694644129796481 0.04058055157775621 C 0.0470258454794049 0.04127542938354552 0.04616568600627259 0.045242096081279465 0.04622574410563353 0.0448835157348546" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04622574410563353 0.0448835157348546 C 0.0458241319813493 0.04515658846954842 0.040286734318199846 0.04915234270542616 0.04140639861422278 0.0481603885511804 C 0.040286734318199846 0.04915234270542616 0.03207172038161956 0.05750584700535566 0.03278977255335827 0.05678696558580371" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.29709444807195606,0.20130722958387404) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04188518310938804)"><path d="M 0.0315264053687848 0.05594685483341866 C 0.03161716835485154 0.05483781654211844 0.033167219702331545 0.04076242383749968 0.03261556120158568 0.04263839533781602 C 0.033167219702331545 0.04076242383749968 0.038607202892414295 0.03266826362060644 0.038146307377735174 0.03343519682962256" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.038146307377735174 0.03343519682962256 C 0.038462137478937786 0.03357830837367003 0.04256792879457174 0.035438758446287105 0.041936268592166516 0.03515253535819217 C 0.04256792879457174 0.035438758446287105 0.04604205990780048 0.037012985430809234 0.045726229806597865 0.036869873886761766" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.045726229806597865 0.036869873886761766 C 0.045835851136460576 0.037217046571430844 0.04706022519822489 0.041735100219150285 0.04704168576495039 0.041035946102790676 C 0.04706022519822489 0.041735100219150285 0.04585762110930369 0.04561170471476766 0.0459487030058919 0.04525972328307712" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0459487030058919 0.04525972328307712 C 0.04552481927997421 0.045496754090584055 0.03966024015845407 0.04899468726902216 0.04086209829487966 0.048104092973160366 C 0.03966024015845407 0.04899468726902216 0.030748430958276896 0.05660041832177352 0.0315264053687848 0.05594685483341866" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.29709444807195606,0.18778182319648512) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04188754714089908)"><path d="M 0.030341070001166905 0.05499982442369725 C 0.03052814666268343 0.053902916873387885 0.033299050902448994 0.040016181163974075 0.03258598993936521 0.041836933819984864 C 0.033299050902448994 0.040016181163974075 0.03942378585973954 0.03242694744586632 0.03889780155817228 0.03315079255156775" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03889780155817228 0.03315079255156775 C 0.03919995683757088 0.03332088592003594 0.04312797546975267 0.035532099710122445 0.04252366491095547 0.03519191297318606 C 0.04312797546975267 0.035532099710122445 0.0464516835431373 0.037403126763272544 0.0461495282637387 0.037233033394804355" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0461495282637387 0.037233033394804355 C 0.04622847435815167 0.03758843911101914 0.04705441498552158 0.042196011431325356 0.047096881396694296 0.04149790198938173 C 0.04705441498552158 0.042196011431325356 0.04551851882408038 0.0459530504238567 0.04563993132966607 0.04561034669812786" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04563993132966607 0.04561034669812786 C 0.04519700201321715 0.045809531630879675 0.039049874421570784 0.04878302236828042 0.040324779532279045 0.04800056589114964 C 0.039049874421570784 0.04878302236828042 0.02950909420690756 0.055583095968076215 0.030341070001166905 0.05499982442369725" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2997317493829953,0.17440528468133576) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04188999133585595)"><path d="M 0.029242787568377244 0.05395308182989007 C 0.02952475413898944 0.052876653149360305 0.033495423016658206 0.03928426087894036 0.03262638641572356 0.04103593766353285 C 0.033495423016658206 0.03928426087894036 0.04025829680991548 0.032257712310717515 0.039671226779593026 0.032932960414780235" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.039671226779593026 0.032932960414780235 C 0.03995740765306505 0.033128741094429925 0.0436777590082013 0.03567388992987589 0.043105397261257256 0.03528232857057651 C 0.0436777590082013 0.03567388992987589 0.04682574861639352 0.03782747740602247 0.0465395677429215 0.03763169672637278" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0465395677429215 0.03763169672637278 C 0.04658723777443728 0.037992630622033036 0.04700845906052192 0.042654655207440266 0.04711160812111092 0.04196290347429583 C 0.04700845906052192 0.042654655207440266 0.04515095992374875 0.046263535361590266 0.045301779015853534 0.045932717524106076" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.045301779015853534 0.045932717524106076 C 0.044843175068419595 0.04609254066449338 0.038460282359356564 0.048518958900902354 0.039798531646646255 0.04785059520875369 C 0.038460282359356564 0.048518958900902354 0.028363142228521494 0.05446162238165144 0.029242787568377244 0.05395308182989007" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3047077895925032,0.16269193915334867) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04189249709245916)"><path d="M 0.02733951523748742 0.051592983936645104 C 0.027804117981078985 0.050581871607644484 0.034074757624343976 0.03788547773247769 0.032914748160586205 0.0394596359886377 C 0.034074757624343976 0.03788547773247769 0.041955035522746875 0.032140038935565565 0.04125962880258067 0.03270308486272496" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04125962880258067 0.03270308486272496 C 0.041507464987296155 0.032945585981095524 0.04472933538859752 0.03609810051991281 0.044233663019166536 0.03561309828317169 C 0.04472933538859752 0.03609810051991281 0.04745553342046792 0.03876561282198897 0.047207697235752424 0.038523111703618405" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.047207697235752424 0.038523111703618405 C 0.047191967539135876 0.038886840016491564 0.0467972374539114 0.04355118228165725 0.047018940876353846 0.0428878514580963 C 0.0467972374539114 0.04355118228165725 0.044341282440617205 0.0467826840970375 0.0445472561664431 0.046483081586349714" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0445472561664431 0.046483081586349714 C 0.044067866446370896 0.04656084091437113 0.03736060111483029 0.04784201871846458 0.0387945795255766 0.04741619352260663 C 0.03736060111483029 0.04784201871846458 0.026384926546813323 0.051941049804481644 0.02733951523748742 0.051592983936645104" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31191303076913035,0.1528996333308573) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04189504534038796)"><path d="M 0.025639301199035156 0.04837898899461518 C 0.02630397333190279 0.047486568237909546 0.0350773131719029 0.03637136032168387 0.03361536679344677 0.03766993991414762 C 0.0350773131719029 0.03637136032168387 0.043979931986097294 0.03238987504929211 0.04318265774050879 0.03279603388505023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04318265774050879 0.03279603388505023 C 0.04337465929241765 0.03308476381236968 0.04587067946723275 0.036838252867522514 0.04548667636341504 0.03626079301288362 C 0.04587067946723275 0.036838252867522514 0.04798269653823017 0.04001428206803642 0.04779069498632131 0.03972555214071698" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04779069498632131 0.03972555214071698 C 0.047699685652787815 0.04007806172945322 0.04634381008008472 0.04455840792569065 0.046698582983919365 0.04395566720555183 C 0.04634381008008472 0.04455840792569065 0.04326965657000448 0.047208671913785444 0.043533420140305625 0.04695844078238286" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.043533420140305625 0.04695844078238286 C 0.04304833916243476 0.04693483015526081 0.03622127182741604 0.04679349227460427 0.03771244840585524 0.04667511325691824 C 0.03622127182741604 0.04679349227460427 0.024633205598466816 0.04852097863942326 0.025639301199035156 0.04837898899461518" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3205317852325038,0.14613693013716283) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04189761668593693)"><path d="M 0.024551368162971293 0.044282052544693216 C 0.025412192814002227 0.04357693924075736 0.036613939134999024 0.03491436350780736 0.03488126397534249 0.03582069289746298 C 0.036613939134999024 0.03491436350780736 0.046215320587475295 0.033204883783106 0.045343470078849694 0.03340609986882577" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.045343470078849694 0.03340609986882577 C 0.04545991827277174 0.03373270266274768 0.04697374479375833 0.03797853898373247 0.046740848405914234 0.03732533339588866 C 0.04697374479375833 0.03797853898373247 0.04825467492690083 0.04157116971687346 0.04813822673297879 0.04124456692295155" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04813822673297879 0.04124456692295155 C 0.04796464097767588 0.04156458831988795 0.045565146859383523 0.045583833097588435 0.04605519766934389 0.04508482368618829 C 0.045565146859383523 0.045583833097588435 0.04194115195879689 0.047411667874217 0.04225761701345435 0.047232679859753254" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04225761701345435 0.047232679859753254 C 0.04179265694139814 0.04709241885947617 0.03520257541123948 0.04530366224683992 0.03667809614877973 0.04554954785642826 C 0.03520257541123948 0.04530366224683992 0.023540807497487257 0.044176427935381964 0.024551368162971293 0.044282052544693216" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3302561592670258,0.14164415326810048) rotate(0) scale(1,1) translate(-0.041508191010851375,-0.04192062695008123)"><path d="M 0.02694414569679266 0.038641853927743955 C 0.027891780337964526 0.03829054620388046 0.040120039630497005 0.03392235625774649 0.03831576139085504 0.034426161241382036 C 0.040120039630497005 0.03392235625774649 0.04945212817096637 0.03244369686434533 0.04859548457249627 0.032596194124117385" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04859548457249625 0.0475752560582952 C 0.048290310713307784 0.047602048618299614 0.0442324825002093 0.04801809824918427 0.04493339826223463 0.04789676677834815 C 0.0442324825002093 0.04801809824918427 0.03978875352535549 0.04912577261916034 0.04018449542819235 0.04903123370832863" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04018449542819235 0.04903123370832863 C 0.039785840591777935 0.04845154346726896 0.03429727491360275 0.04120916916723054 0.03540063739121939 0.0420749508156126 C 0.03429727491360275 0.04120916916723054 0.026239438055590432 0.03835576252042157 0.02694414569679266 0.038641853927743955" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="側甲">
<g transform="translate(0.31186940194958057,0.22140419257128718) rotate(0) scale(1,1) translate(-0.0340865849627036,-0.020187468424000914)"><path d="M 0.02659997210910838 0.01339835186400323 C 0.026929538572020153 0.01353895990859881 0.031240000126610677 0.015546008094162705 0.030554769664049644 0.015085648399150192 C 0.031240000126610677 0.015546008094162705 0.03560269925011739 0.019311046166365312 0.034822737659840786 0.01892266820415339 C 0.03560269925011739 0.019311046166365312 0.04063989380144352 0.0196813237378776 0.03991430874736882 0.019746183945693274 C 0.04063989380144352 0.0196813237378776 0.0438310457721845 0.01801085919075462 0.04352975830873714 0.018144345710365287" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04352975830873714 0.018144345710365287 C 0.04365331423265813 0.018616640257381183 0.04522862773802985 0.024512514485076513 0.04501242939578897 0.023811880274556017 C 0.04522862773802985 0.024512514485076513 0.046216780833947625 0.026780295900115852 0.04612413841562773 0.02655195623661125" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04612413841562773 0.02655195623661125 C 0.04585529790556707 0.02674830423855521 0.042254712837954685 0.029086159802796448 0.042898052294899784 0.028908132259938806 C 0.042254712837954685 0.029086159802796448 0.03757000023712557 0.028434893244068553 0.03840406493228652 0.028688286750902958 C 0.03757000023712557 0.028434893244068553 0.03242971020469187 0.025632337130177877 0.03288927595296838 0.02586741017792596" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03288927595296838 0.02586741017792596 C 0.03263264519319131 0.025457565061011548 0.02928559818198855 0.019910180582126142 0.02980970683564355 0.020949268774953036 C 0.02928559818198855 0.019910180582126142 0.02633249421523045 0.012769108788090745 0.02659997210910838 0.01339835186400323" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30962885658833994,0.20561095645813207) rotate(0) scale(1,1) translate(-0.0340865849627036,-0.020187468424000914)"><path d="M 0.02585557175660163 0.014318243744989329 C 0.026279715123253975 0.014567909085456403 0.0317749698124476 0.018024808849334488 0.03094529215642978 0.017314227830594227 C 0.0317749698124476 0.018024808849334488 0.03669560685723575 0.023506712588265775 0.03581170362881548 0.022845215969872473 C 0.03669560685723575 0.023506712588265775 0.042377475669618164 0.025368573161321337 0.041552130897473054 0.025252187251313875 C 0.042377475669618164 0.025368573161321337 0.04606281672764711 0.024157651859849368 0.0457158408945568 0.02424184688996202" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0457158408945568 0.02424184688996202 C 0.04567232139639028 0.02473587624090683 0.045198145481176975 0.03097817701242958 0.04519360691655856 0.030170199101299713 C 0.045198145481176975 0.03097817701242958 0.045818361732762665 0.03425153038370549 0.04577030366997773 0.033937581823520434" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04577030366997773 0.033937581823520434 C 0.04546901620653038 0.034071068343131096 0.041429269054534784 0.03560428026666404 0.042154854108609474 0.03553942005884837 C 0.041429269054534784 0.03560428026666404 0.03628332143080484 0.03432752635509656 0.03706328302108144 0.034715904317308484 C 0.03628332143080484 0.03432752635509656 0.032110084562729256 0.030418524817292757 0.032795315025290296 0.030878884512305273 C 0.032110084562729256 0.030418524817292757 0.028510951007437193 0.02905097993256272 0.02884051747034897 0.0291915879771583" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02884051747034897 0.0291915879771583 C 0.028692228623797184 0.028668220797384084 0.02681230583558191 0.021671736467186942 0.02706105131172752 0.02291118181986769 C 0.02681230583558191 0.021671736467186942 0.025755115127007806 0.013602165572082799 0.02585557175660163 0.014318243744989329" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31112720579241127,0.18783830557510597) rotate(0) scale(1,1) translate(-0.0340865849627036,-0.020187468424000914)"><path d="M 0.02527295597110342 0.015086190919502968 C 0.02585739512415242 0.015568040470296071 0.0331885972923743 0.021870237372664185 0.03228622580769143 0.0208683855290202 C 0.0331885972923743 0.021870237372664185 0.03687957272031842 0.027980937049488626 0.03610141378729786 0.027108413043230802 C 0.03687957272031842 0.027980937049488626 0.04271541869948749 0.03168406967771555 0.04162413300393819 0.031338673604114076 C 0.04271541869948749 0.03168406967771555 0.049827901228052 0.03124604028664306 0.049196842133889404 0.03125316592644852" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.049196842133889404 0.03125316592644852 C 0.04895159253342496 0.03165571370132296 0.04583890105803237 0.03698051687882006 0.04625384692831603 0.036083739224941756 C 0.04583890105803237 0.03698051687882006 0.044047795420666336 0.042508727651992075 0.04421749169048554 0.042014497772988206" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04421749169048554 0.042014497772988206 C 0.04387051585739523 0.04209869280310086 0.03922843692125666 0.04290845222433251 0.04005378169340177 0.04302483813433998 C 0.03922843692125666 0.04290845222433251 0.03342945119632392 0.03995637023450527 0.034313354424744195 0.040617866852898574 C 0.03342945119632392 0.03995637023450527 0.028617265296340677 0.03437629769488007 0.029446942952358494 0.03508687871362033 C 0.028617265296340677 0.03437629769488007 0.02393307918587803 0.03184122928754839 0.024357222552530373 0.03209089462801546" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024357222552530373 0.03209089462801546 C 0.024348011784394764 0.03142699108374716 0.024323004453117466 0.022706993454419854 0.024246693334903046 0.024124052096795894 C 0.024323004453117466 0.022706993454419854 0.02535847785745345 0.014333035821395224 0.02527295597110342 0.015086190919502968" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31968989895975736,0.17964018199247242) rotate(0) scale(1,1) translate(-0.028648443256637898,-0.0286484432566379)"><path d="M 0.016589929293471084 0.016111567875133306 C 0.01714842471771098 0.01675762132845647 0.024358505878260522 0.025211999435062103 0.023291874384349837 0.0238642093150113 C 0.024358505878260522 0.025211999435062103 0.030692704174161346 0.03312337224189088 0.02938950722039932 0.03228504931574295 C 0.030692704174161346 0.03312337224189088 0.03988092869340109 0.034238662846656685 0.03893023782949416 0.0339240844287865 C 0.03988092869340109 0.034238662846656685 0.04095342756709817 0.03623798248863505 0.040797797587282476 0.036059990330185164" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.040797797587282476 0.036059990330185164 C 0.040721787008436296 0.03656559560033356 0.03941885478056123 0.043114943072927105 0.0398856706411283 0.04212725357196594 C 0.03941885478056123 0.043114943072927105 0.0348052019787567 0.048394348572531894 0.03519600726047759 0.04791226434171913" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03519600726047759 0.04791226434171913 C 0.03456494816631504 0.047919389981524556 0.026532012434977718 0.047652375945782775 0.027623298130526965 0.04799777201938429 C 0.026532012434977718 0.047652375945782775 0.02132241998086607 0.04289498745224319 0.022100578913886636 0.04376751145850101 C 0.02132241998086607 0.04289498745224319 0.01738301944959729 0.03652563210064645 0.018285390934280207 0.03752748394429041 C 0.01738301944959729 0.03652563210064645 0.010687681944642565 0.03126343978398044 0.011272121097691615 0.03174528933477352" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011272121097691615 0.03174528933477352 C 0.011451515817770314 0.031018482144769335 0.013868008421617619 0.02172079293308667 0.013424857738635996 0.023023603054723354 C 0.013868008421617619 0.02172079293308667 0.01685368525637401 0.015535564943500802 0.016589929293471084 0.016111567875133306" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="右">
<g transform="translate(0.3373434528286707,0.16513021119802657) rotate(0) scale(1,1) translate(-0.07963856428626281,-0.13550000000000004)"><path d="M 0.07963856428626281 0.10388166616624221 C 0.08149982460629836 0.10456306820867659 0.10523213992520337 0.1146015177182009 0.10197368812668939 0.1120584906754546 C 0.10523213992520337 0.1146015177182009 0.12064858492198328 0.13880264272225595 0.1187399858684306 0.13439799067919775 C 0.12064858492198328 0.13880264272225595 0.12487687676932158 0.1700003692776456 0.12487687676932158 0.16491431519215305 C 0.12487687676932158 0.1700003692776456 0.11683138681487791 0.19983529174816664 0.1187399858684306 0.19543063970510843 C 0.11683138681487791 0.19983529174816664 0.09871523632817529 0.22031316675159765 0.10197368812668928 0.21777013970885137 C 0.09871523632817529 0.22031316675159765 0.07777730396622727 0.22662836626049807 0.07963856428626281 0.2259469642180637" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33677538802646495,0.19454452639017952) rotate(0) scale(1,1) translate(-0.07667674664701668,-0.18353529698559207)"><path d="M 0.07724481144922235 0.13470917776486355 C 0.07872435195854735 0.13525429939881103 0.09759659125323011 0.1432850590064305 0.09499929756112235 0.14125063737223345 C 0.09759659125323011 0.1432850590064305 0.10993921499735763 0.1626459590096744 0.10841233575451548 0.15912223737522785 C 0.10993921499735763 0.1626459590096744 0.11332184847522819 0.18760414025398617 0.11332184847522819 0.18353529698559212 C 0.11332184847522819 0.18760414025398617 0.10688545651167332 0.21147207823040298 0.10841233575451548 0.20794835659595642 C 0.10688545651167332 0.21147207823040298 0.09240200386901459 0.2278543782331478 0.09499929756112235 0.2258199565989508 C 0.09240200386901459 0.2278543782331478 0.07576527093989735 0.23290653784026813 0.07724481144922235 0.23236141620632064" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="鱗">
<g transform="translate(0.3454367254085355,0.24684045929505277) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04187516625921871)"><path d="M 0.045134973004632095 0.058963518470376966 C 0.04470609660365924 0.058042402598510526 0.0392755842182353 0.04659504826607462 0.03998845619295788 0.04791012800797969 C 0.0392755842182353 0.04659504826607462 0.03629651373421147 0.04278859769747754 0.036580509307961195 0.04318256156751617" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.036580509307961195 0.04318256156751617 C 0.036646714856651295 0.04282506518227057 0.037687253622331045 0.03826679122763769 0.03737497589224237 0.038892604944569004 C 0.037687253622331045 0.03826679122763769 0.040573914250423865 0.035404479632654653 0.04032784206902529 0.03567279696434037" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04032784206902529 0.03567279696434037 C 0.04067456290110616 0.03567656942593095 0.045181933718157485 0.03572561142660848 0.04448849205399574 0.03571806650342733 C 0.045181933718157485 0.03572561142660848 0.04899586287104707 0.03576710850410484 0.0486491420389662 0.03576333604251426" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0486491420389662 0.03576333604251426 C 0.04874273525326454 0.03665319644324036 0.04947941319101845 0.04837500938688263 0.04977226061054629 0.046441660851227404 C 0.04947941319101845 0.04837500938688263 0.044748532370805914 0.0600070066053061 0.045134973004632095 0.058963518470376966" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3541551204248375,0.24295212264319624) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04187687646587633)"><path d="M 0.04660949972096229 0.05860619641225245 C 0.046101974786207305 0.05772596470564467 0.0396944244705875 0.04679547135294643 0.04051920050390245 0.04804341593295918 C 0.0396944244705875 0.04679547135294643 0.0363949362226229 0.04326314857869445 0.036712187321182865 0.04363086145209943" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.036712187321182865 0.04363086145209943 C 0.036746983074786514 0.043268955254760696 0.03738628252415227 0.03863733797972517 0.037129736364426624 0.03928798708403467 C 0.03738628252415227 0.03863733797972517 0.04001249164401261 0.03553432929341468 0.039790741237890614 0.03582307220038545" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.039790741237890614 0.03582307220038545 C 0.04013647148421945 0.035796611594974645 0.0446309646864943 0.03545262372463419 0.04393950419383663 0.035505544935455796 C 0.0446309646864943 0.03545262372463419 0.04843399739611148 0.035161557065115326 0.04808826714978265 0.03518801767052613" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04808826714978265 0.03518801767052613 C 0.04825906065781104 0.03606633469766295 0.05001455862705497 0.04767933689131183 0.05013778924612333 0.04572782199616797 C 0.05001455862705497 0.04767933689131183 0.046315475593865535 0.059679394280259486 0.04660949972096229 0.05860619641225245" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36277387488821095,0.23618941944950178) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04187874804625983)"><path d="M 0.048047266798806776 0.05812171550162232 C 0.04746495590147506 0.057289067055058936 0.040129132982545695 0.046958622336524716 0.04105953603082613 0.048129934142861715 C 0.040129132982545695 0.046958622336524716 0.036534338068492885 0.04372731046580468 0.0368824302194416 0.044065973825578295" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0368824302194416 0.044065973825578295 C 0.03688555136126362 0.04370241214083312 0.03711874603948615 0.039032700949504964 0.03691988392130585 0.039703233608636174 C 0.03711874603948615 0.039032700949504964 0.0394645166139635 0.035712610941617706 0.039268775637605224 0.03601958191600374" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.039268775637605224 0.03601958191600374 C 0.03961088408224983 0.03596308962477608 0.044058293862629716 0.03522868983881649 0.0433740769733405 0.03534167442127181 C 0.044058293862629716 0.03522868983881649 0.04782148675372039 0.03460727463531219 0.04747937830907578 0.03466376692653986" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04747937830907578 0.03466376692653986 C 0.047726072269110166 0.03552385605716857 0.05048702987029934 0.04693966554200793 0.050439705829488424 0.04498483649408439 C 0.05048702987029934 0.04693966554200793 0.0478478968795833 0.059216455418917145 0.048047266798806776 0.05812171550162232" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3699791160648381,0.22639711362701054) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04188076675651239)"><path d="M 0.0494373319625554 0.05751376293075404 C 0.04878466684018457 0.05673503470168027 0.040576401359849766 0.04708325953931119 0.04160535049410552 0.04816902418186881 C 0.040576401359849766 0.04708325953931119 0.03671365833960139 0.044177550806578744 0.03708994235148633 0.04448458722006259" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03708994235148633 0.04448458722006259 C 0.037061365127752856 0.04412213697185642 0.03688668028252406 0.03944987118605033 0.0367470156666847 0.04013518424158858 C 0.03688668028252406 0.03944987118605033 0.038934159581131396 0.035937967746271504 0.038765917741558575 0.03626083055360359" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.038765917741558575 0.03626083055360359 C 0.03910180073268449 0.03617473651700629 0.04346827961732135 0.03505551404124142 0.04279651363506953 0.035227702114436016 C 0.04346827961732135 0.03505551404124142 0.047162992519706286 0.034108479638671134 0.04682710952858038 0.03419457367526843" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04682710952858038 0.03419457367526843 C 0.04714782645062703 0.03502988911176893 0.05089323112930477 0.04616162468456492 0.05067571259314019 0.04421835891327445 C 0.05089323112930477 0.04616162468456492 0.04933413357667333 0.058621713265544 0.0494373319625554 0.05751376293075404" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.374955156274346,0.2146837680990234) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04188291723303005)"><path d="M 0.05076911597696798 0.05678696558580371 C 0.05005106380522927 0.056068084166251766 0.04103282562008049 0.04716843439693464 0.04215248991610343 0.0481603885511804 C 0.04103282562008049 0.04716843439693464 0.036931532300408486 0.04461044300016078 0.03733314442469271 0.0448835157348546" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03733314442469271 0.0448835157348546 C 0.03727308632533177 0.044524935388429734 0.036691851413801546 0.039885673771966904 0.036612447232361456 0.04058055157775621 C 0.036691851413801546 0.039885673771966904 0.03842545688277482 0.03620868460601849 0.038285994601973794 0.03654498206538293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.038285994601973794 0.03654498206538293 C 0.03861309586720684 0.036429941511019505 0.04286541231523641 0.03493441430429495 0.04221120978477033 0.0351644954130218 C 0.04286541231523641 0.03493441430429495 0.04646352623279979 0.03366896820629722 0.04613642496756676 0.03378400876066065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04613642496756676 0.03378400876066065 C 0.04652872400219473 0.03458819324818392 0.051230070967219175 0.045351135679701844 0.050844013383102404 0.043434222610939925 C 0.051230070967219175 0.045351135679701844 0.05076287452645678 0.05789969416704236 0.05076911597696798 0.05678696558580371" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.37759245758538523,0.20130722958387404) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04188518310938804)"><path d="M 0.05203248316154141 0.05594685483341866 C 0.05125450875103351 0.0552932913450638 0.041494932099021 0.04721349867729857 0.04269679023544659 0.048104092973160366 C 0.041494932099021 0.04721349867729857 0.0371863017985166 0.045022692475570184 0.03761018552443429 0.04525972328307712" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03761018552443429 0.04525972328307712 C 0.037519103627846086 0.04490774185138658 0.03653574219865035 0.040336791986431066 0.036517202765375845 0.041035946102790676 C 0.03653574219865035 0.040336791986431066 0.03794228005359102 0.03652270120209269 0.03783265872372832 0.036869873886761766" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03783265872372832 0.036869873886761766 C 0.03814848882493094 0.0367267623427143 0.042254280140564975 0.03486631227009723 0.041622619938159744 0.03515253535819217 C 0.042254280140564975 0.03486631227009723 0.04572841125379367 0.03329208528557509 0.04541258115259106 0.03343519682962256" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04541258115259106 0.03343519682962256 C 0.04587347666727018 0.03420213003863868 0.05149498582948638 0.04451436683813236 0.05094332732874052 0.04263839533781602 C 0.05149498582948638 0.04451436683813236 0.05212324614760815 0.05705589312471888 0.05203248316154141 0.05594685483341866" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.37759245758538523,0.18778182319648512) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04188754714089908)"><path d="M 0.0532178185291593 0.05499982442369725 C 0.052385842734899955 0.05441655287931828 0.041959203887338876 0.04721810941401886 0.04323410899804714 0.04800056589114964 C 0.041959203887338876 0.04721810941401886 0.037476027884211276 0.04541116176537604 0.037918957200660186 0.04561034669812786" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.037918957200660186 0.04561034669812786 C 0.03779754469507449 0.04526764297239901 0.036419540722459176 0.04079979254743811 0.0364620071336319 0.04149790198938173 C 0.036419540722459176 0.04079979254743811 0.037488306361000444 0.03687762767858957 0.03740936026658748 0.037233033394804355" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03740936026658748 0.037233033394804355 C 0.037711515545986084 0.037062940026336165 0.04163953417816794 0.03485172623624967 0.04103522361937073 0.03519191297318606 C 0.04163953417816794 0.03485172623624967 0.04496324225155259 0.03298069918309956 0.044661086972153985 0.03315079255156775" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.044661086972153985 0.03315079255156775 C 0.045187071273721235 0.033874637657269176 0.051685959554044765 0.043657686475995654 0.05097289859096099 0.041836933819984864 C 0.051685959554044765 0.043657686475995654 0.05340489519067582 0.05609673197400661 0.0532178185291593 0.05499982442369725" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.374955156274346,0.17440528468133576) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04188999133585595)"><path d="M 0.05431610096194894 0.05395308182989007 C 0.0534364556220932 0.053444541278128706 0.04242210759639028 0.04718223151660503 0.04376035688367996 0.04785059520875369 C 0.04242210759639028 0.04718223151660503 0.03779850556703876 0.045772894383718774 0.0382571095144727 0.045932717524106076" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0382571095144727 0.045932717524106076 C 0.03810629042236791 0.045601899686621886 0.0363441313486263 0.04127115174115139 0.0364472804092153 0.04196290347429583 C 0.0363441313486263 0.04127115174115139 0.037066990818920564 0.037270762830712525 0.037019320787404775 0.03763169672637278" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.037019320787404775 0.03763169672637278 C 0.03730550166087679 0.03743591604672309 0.04102585301601298 0.03489076721127713 0.04045349126906894 0.03528232857057651 C 0.04102585301601298 0.03489076721127713 0.04417384262420524 0.032737179735130545 0.04388766175073322 0.032932960414780235" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04388766175073322 0.032932960414780235 C 0.044474731781055675 0.033608208518842955 0.0518015387155373 0.04278761444812534 0.05093250211460265 0.04103593766353285 C 0.0518015387155373 0.04278761444812534 0.054598067532561134 0.05502951051041984 0.05431610096194894 0.05395308182989007" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3699791160648381,0.16269193915334867) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04189249709245916)"><path d="M 0.05621937329283877 0.051592983936645104 C 0.05526478460216467 0.05124491806880856 0.04333033059400329 0.046990368326748674 0.04476430900474959 0.04741619352260663 C 0.04333033059400329 0.046990368326748674 0.038532242643810964 0.0464053222583283 0.039011632363883164 0.046483081586349714" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.039011632363883164 0.046483081586349714 C 0.03880565863805727 0.04618347907566193 0.03631824423152994 0.042224520634535356 0.03653994765397239 0.0428878514580963 C 0.03631824423152994 0.042224520634535356 0.036335461597957204 0.03815938339074525 0.03635119129457376 0.038523111703618405" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03635119129457376 0.038523111703618405 C 0.03659902747928925 0.03828061058524784 0.03982089788059067 0.03512809604643057 0.03932522551115969 0.03561309828317169 C 0.03982089788059067 0.03512809604643057 0.042547095912460996 0.0324605837443544 0.04229925972774551 0.03270308486272496" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04229925972774551 0.03270308486272496 C 0.042994666447911715 0.03326613078988436 0.05180414983349774 0.04103379424479771 0.050644140369739965 0.0394596359886377 C 0.05180414983349774 0.04103379424479771 0.056683976036430335 0.052604096265645724 0.05621937329283877 0.051592983936645104" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36277387488821095,0.1528996333308573) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04189504534038796)"><path d="M 0.0579195873312911 0.04837898899461518 C 0.056913491730722764 0.0482369993498071 0.04435526354603183 0.04655673423923221 0.04584644012447103 0.04667511325691824 C 0.04435526354603183 0.04655673423923221 0.03954038741214977 0.046982051409504906 0.040025468390020635 0.04695844078238286" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.040025468390020635 0.04695844078238286 C 0.03976170481971949 0.04670820965098027 0.036505532642572204 0.04335292648541301 0.036860305546406846 0.04395566720555183 C 0.036505532642572204 0.04335292648541301 0.03567718421047147 0.039373042551980736 0.035768193544004956 0.03972555214071698" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035768193544004956 0.03972555214071698 C 0.035960195095913805 0.03943682221339753 0.03845621527072885 0.03568333315824472 0.038072212166911146 0.03626079301288362 C 0.03845621527072885 0.03568333315824472 0.0405682323417263 0.03250730395773078 0.04037623078981745 0.03279603388505023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04037623078981745 0.03279603388505023 C 0.04117350503540595 0.03320219272080835 0.05140546811533558 0.038968519506611364 0.04994352173687944 0.03766993991414762 C 0.05140546811533558 0.038968519506611364 0.05858425946415874 0.04927140975132081 0.0579195873312911 0.04837898899461518" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3541551204248375,0.14613693013716283) rotate(0) scale(1,1) translate(-0.04177944426516312,-0.04189761668593693)"><path d="M 0.059007520367354904 0.044282052544693216 C 0.057996959701870875 0.04438767715400447 0.04540527164400627 0.0457954334660166 0.04688079238154652 0.04554954785642826 C 0.04540527164400627 0.0457954334660166 0.04083631144481569 0.04737294086003034 0.04130127151687191 0.047232679859753254" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04130127151687191 0.047232679859753254 C 0.040984806462214446 0.04705369184528951 0.037013640051022006 0.044585814274788145 0.037503690860982375 0.04508482368618829 C 0.037013640051022006 0.044585814274788145 0.03524707604204458 0.040924545526015155 0.035420661797347486 0.04124456692295155" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035420661797347486 0.04124456692295155 C 0.03553710999126953 0.04091796412902964 0.037050936512256126 0.036672127808044845 0.03681804012441203 0.03732533339588866 C 0.037050936512256126 0.036672127808044845 0.03833186664539862 0.03307949707490386 0.03821541845147658 0.03340609986882577" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03821541845147658 0.03340609986882577 C 0.03908726896010217 0.03360731595454554 0.05041029971464023 0.0367270222871186 0.0486776245549837 0.03582069289746298 C 0.05041029971464023 0.0367270222871186 0.05986834501838584 0.04498716584862907 0.059007520367354904 0.044282052544693216" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3444307463903156,0.14164415326810048) rotate(0) scale(1,1) translate(-0.041508191010851375,-0.04192062695008123)"><path d="M 0.056072236324909985 0.038641853927743955 C 0.05536752868370776 0.03892794533506634 0.04651238215286671 0.04294073246399466 0.04761574463048335 0.0420749508156126 C 0.04651238215286671 0.04294073246399466 0.04243323175709592 0.049610923949388305 0.04283188659351034 0.04903123370832863" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04283188659351034 0.04903123370832863 C 0.04243614469067348 0.048936694797496925 0.03738206799744273 0.04777543530751203 0.03808298375946806 0.04789676677834815 C 0.03738206799744273 0.04777543530751203 0.03411572359001793 0.04754846349829078 0.0344208974492064 0.0475752560582952" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0344208974492064 0.032596194124117385 C 0.035277541047676504 0.03274869138388944 0.04650489887048964 0.03492996622501758 0.044700620630847676 0.034426161241382036 C 0.04650489887048964 0.03492996622501758 0.05701987096608185 0.03899316165160745 0.056072236324909985 0.038641853927743955" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="側甲">
<g transform="translate(0.3628175037077604,0.22140419257128718) rotate(0) scale(1,1) translate(-0.0340865849627036,-0.020187468424000914)"><path d="M 0.04157319781629876 0.01339835186400323 C 0.041305719922420825 0.014027594939915714 0.037839354436108565 0.02198835696777993 0.03836346308976357 0.020949268774953036 C 0.037839354436108565 0.02198835696777993 0.03502726321266162 0.02627725529484037 0.035283893972438696 0.02586741017792596" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035283893972438696 0.02586741017792596 C 0.034824328224162183 0.02610248322567404 0.028935040297959635 0.028941680257737364 0.029769104993120576 0.028688286750902958 C 0.028935040297959635 0.028941680257737364 0.024631778173562286 0.028730104717081165 0.025275117630507382 0.028908132259938806 C 0.024631778173562286 0.028730104717081165 0.021780190999718774 0.026355608234667288 0.022049031509779438 0.02655195623661125" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.022049031509779438 0.02655195623661125 C 0.02214167392809933 0.026323616573106647 0.023376938871859015 0.023111246064035522 0.02316074052961814 0.023811880274556017 C 0.023376938871859015 0.023111246064035522 0.024766967540590924 0.01767205116334939 0.02464341161666994 0.018144345710365287" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02464341161666994 0.018144345710365287 C 0.024944699080117306 0.018277832229975952 0.02898444623211303 0.01981104415350895 0.02825886117803833 0.019746183945693274 C 0.02898444623211303 0.01981104415350895 0.034130393855842926 0.018534290241941465 0.03335043226556633 0.01892266820415339 C 0.034130393855842926 0.018534290241941465 0.038303630723918465 0.014625288704137679 0.03761840026135743 0.015085648399150192 C 0.038303630723918465 0.014625288704137679 0.04190276427921053 0.013257743819407648 0.04157319781629876 0.01339835186400323" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3650580490690011,0.20561095645813207) rotate(0) scale(1,1) translate(-0.0340865849627036,-0.020187468424000914)"><path d="M 0.04231759816880554 0.014318243744989329 C 0.04221714153921171 0.015034321917895858 0.040863373137533965 0.024150627172548438 0.04111211861367958 0.02291118181986769 C 0.040863373137533965 0.024150627172548438 0.039184363608506335 0.029714955156932517 0.039332652455058126 0.0291915879771583" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.039332652455058126 0.0291915879771583 C 0.03900308599214635 0.02933219602175388 0.03469262443755577 0.03133924420731779 0.0353778549001168 0.030878884512305273 C 0.03469262443755577 0.03133924420731779 0.03032992531404911 0.03510428227952041 0.0311098869043257 0.034715904317308484 C 0.03032992531404911 0.03510428227952041 0.02529273076272301 0.035474559851032705 0.0260183158167977 0.03553942005884837 C 0.02529273076272301 0.035474559851032705 0.022101578791982063 0.03380409530390977 0.02240286625542942 0.033937581823520434" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02240286625542942 0.033937581823520434 C 0.022450924318214344 0.033623633263335374 0.02298410157346692 0.029362221190169846 0.022979563008848514 0.030170199101299713 C 0.02298410157346692 0.029362221190169846 0.022413809532683775 0.023747817539017214 0.022457329030850293 0.02424184688996202" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.022457329030850293 0.02424184688996202 C 0.02280430486394061 0.024326041920074676 0.027446383800079226 0.025135801341306413 0.026621039027934112 0.025252187251313875 C 0.027446383800079226 0.025135801341306413 0.03324536952501191 0.02218371935147917 0.032361466296591646 0.022845215969872473 C 0.03324536952501191 0.02218371935147917 0.038057555424995115 0.016603646811853966 0.03722787776897729 0.017314227830594227 C 0.038057555424995115 0.016603646811853966 0.04274174153545789 0.014068578404522254 0.04231759816880554 0.014318243744989329" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3635596998649299,0.18783830557510597) rotate(0) scale(1,1) translate(-0.0340865849627036,-0.020187468424000914)"><path d="M 0.042900213954303656 0.015086190919502968 C 0.04298573584065369 0.015839346017610712 0.04400278770871851 0.025541110739171934 0.04392647659050408 0.024124052096795894 C 0.04400278770871851 0.025541110739171934 0.04380673660474114 0.03275479817228376 0.04381594737287675 0.03209089462801546" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04381594737287675 0.03209089462801546 C 0.04339180400622441 0.032340559968482535 0.0378965493170308 0.03579745973236059 0.038726226973048616 0.03508687871362033 C 0.0378965493170308 0.03579745973236059 0.0329759122722427 0.04127936347129188 0.03385981550066297 0.040617866852898574 C 0.0329759122722427 0.04127936347129188 0.027294043459860213 0.04314122404434745 0.028119388232005327 0.04302483813433998 C 0.027294043459860213 0.04314122404434745 0.02360870240183131 0.041930302742875555 0.023955678234921618 0.042014497772988206" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.023955678234921618 0.042014497772988206 C 0.02378598196510241 0.04152026789398434 0.021504377126807434 0.03518696157106345 0.021919322997091095 0.036083739224941756 C 0.021504377126807434 0.03518696157106345 0.01873107819105325 0.030850618151574086 0.0189763277915177 0.03125316592644852" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0189763277915177 0.03125316592644852 C 0.0196073868856803 0.031260291566253984 0.027640322617018227 0.0309932775305126 0.026549036921468927 0.031338673604114076 C 0.027640322617018227 0.0309932775305126 0.032849915071129866 0.02623588903697298 0.03207175613810931 0.027108413043230802 C 0.032849915071129866 0.02623588903697298 0.03678931560239851 0.019866533685376213 0.03588694411771565 0.0208683855290202 C 0.03678931560239851 0.019866533685376213 0.04348465310735266 0.014604341368709865 0.042900213954303656 0.015086190919502968" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35499700669758394,0.17964018199247242) rotate(0) scale(1,1) translate(-0.028648443256637898,-0.0286484432566379)"><path d="M 0.04070695721980466 0.016111567875133306 C 0.040970713182707584 0.01668757080676581 0.04431517945762131 0.02432641317636004 0.04387202877463969 0.023023603054723354 C 0.04431517945762131 0.02432641317636004 0.04620416013566279 0.0324720965247777 0.04602476541558409 0.03174528933477352" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04602476541558409 0.03174528933477352 C 0.045440326262535045 0.032227138885566595 0.03810912409431261 0.03852933578793437 0.039011495578995525 0.03752748394429041 C 0.03810912409431261 0.03852933578793437 0.034418148666368505 0.04464003546475883 0.035196307599389076 0.04376751145850101 C 0.034418148666368505 0.04464003546475883 0.02858230268719945 0.0483431680929858 0.029673588382748695 0.04799777201938429 C 0.02858230268719945 0.0483431680929858 0.021469820158635588 0.0479051387019137 0.022100879252798133 0.04791226434171913" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.022100879252798133 0.04791226434171913 C 0.021710073971077232 0.04743018011090636 0.016944400011580252 0.04113956407100478 0.017411215872147334 0.04212725357196594 C 0.016944400011580252 0.04113956407100478 0.016423078347146985 0.03555438506003677 0.016499088925993166 0.036059990330185164" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.016499088925993166 0.036059990330185164 C 0.016654718905808868 0.03588199817173528 0.019317339547688505 0.033609506010916314 0.018366648683781572 0.0339240844287865 C 0.019317339547688505 0.033609506010916314 0.029210576246638364 0.03144672638959502 0.027907379292876344 0.03228504931574295 C 0.029210576246638364 0.03144672638959502 0.03507164362283651 0.022516419194960495 0.034005012128925816 0.0238642093150113 C 0.03507164362283651 0.022516419194960495 0.04126545264404457 0.01546551442181014 0.04070695721980466 0.016111567875133306" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 55 KiB

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.16513021119802657) rotate(0) scale(1,1) translate(-0.0076061099436181,-0.011409164915427206)"><path d="M 0.008499562201307232 0.10420183227959684 C 0.00455874670632603 0.10316584393444021 -0.04556141202846556 0.08790361099754357 -0.038790223738467196 0.0917699721377173 C -0.04556141202846556 0.08790361099754357 -0.0766210584188468 0.05110876466232118 -0.07275469727867315 0.05780549859751202 C -0.0766210584188468 0.05110876466232118 -0.08518655742055094 0.003676442635079708 -0.08518655742055094 0.01140916491542718 C -0.08518655742055094 0.003676442635079708 -0.06888833613849954 -0.041683902701848484 -0.07275469727867317 -0.03498716876665764 C -0.06888833613849954 -0.041683902701848484 -0.03201903544846889 -0.07281800344703668 -0.03879022373846725 -0.06895164230686295 C -0.03201903544846889 -0.07281800344703668 0.012440377696288378 -0.08241949079389913 0.008499562201307176 -0.0813835024487425" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.008499562201307181 -0.0627816657311386 C 0.00533382323622617 -0.06195335851624103 -0.03491802174012189 -0.049750694542094256 -0.029489305379664953 -0.05284197915236784 C -0.03491802174012189 -0.049750694542094256 -0.05973631873444952 -0.020331988402206035 -0.05664503412417607 -0.025686250407855625 C -0.05973631873444952 -0.020331988402206035 -0.06658472070294637 0.017591734135974396 -0.06658472070294637 0.011409164915427249 C -0.06658472070294637 0.017591734135974396 -0.053553749513902585 0.05385884224435976 -0.05664503412417604 0.04850458023871017 C -0.053553749513902585 0.05385884224435976 -0.024060589019207972 0.0787515935934959 -0.02948930537966491 0.07566030898322232 C -0.024060589019207972 0.0787515935934959 0.011665301166388238 0.08642830277689062 0.008499562201307227 0.08559999556199306" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.16513021119802657) rotate(0) scale(1,1) translate(-0.007606109943618104,-0.001029294317343837)"><path d="M 0.006712657685929044 0.07522012496390969 C 0.009878396651010042 0.07439181774901213 0.05013024162735803 0.062189153774865356 0.04470152526690102 0.06528043838513893 C 0.05013024162735803 0.062189153774865356 0.07494853862168674 0.032770447634977176 0.07185725401141316 0.03812470964062677 C 0.07494853862168674 0.032770447634977176 0.08179694059018393 -0.005153274903203278 0.08179694059018393 0.0010292943173438732 C 0.08179694059018393 -0.005153274903203278 0.06876596940113956 -0.04142038301158864 0.07185725401141314 -0.03606612100593905 C 0.06876596940113956 -0.04142038301158864 0.03927280890644401 -0.06631313436072478 0.04470152526690102 -0.0632218497504512 C 0.03927280890644401 -0.06631313436072478 0.003546918720847996 -0.07398984354411953 0.006712657685928998 -0.07316153632922197" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006712657685928993 -0.09176337304682587 C 0.010653473180910153 -0.09072738470166924 0.06077363191570119 -0.0754651517647726 0.05400244362570292 -0.07933151290494633 C 0.06077363191570119 -0.0754651517647726 0.09183327830608196 -0.03867030542955023 0.08796691716590822 -0.045367039364741076 C 0.09183327830608196 -0.03867030542955023 0.10039877730778779 0.008762016597691269 0.10039877730778779 0.0010292943173437947 C 0.10039877730778779 0.008762016597691269 0.08410055602573456 0.05412236193461946 0.08796691716590829 0.047425627999428614 C 0.08410055602573456 0.05412236193461946 0.04723125533570473 0.08525646267980769 0.054002443625703 0.08139010153963395 C 0.04723125533570473 0.08525646267980769 0.002771842190947886 0.0948579500266701 0.006712657685929049 0.09382196168151347" fill="none" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1,590 @@
id: BackHair0
original_key: 後髪0
resource: 胴体
morph_x: 1
morph_y: 22
variants:
- x: 0
y: 0
file: x0y0.svg
- x: 0
y: 1
file: x0y1.svg
- x: 0
y: 2
file: x0y2.svg
- x: 0
y: 3
file: x0y3.svg
- x: 0
y: 4
file: x0y4.svg
- x: 0
y: 5
file: x0y5.svg
- x: 0
y: 6
file: x0y6.svg
- x: 0
y: 7
file: x0y7.svg
- x: 0
y: 8
file: x0y8.svg
- x: 0
y: 9
file: x0y9.svg
- x: 0
y: 10
file: x0y10.svg
- x: 0
y: 11
file: x0y11.svg
- x: 0
y: 12
file: x0y12.svg
- x: 0
y: 13
file: x0y13.svg
- x: 0
y: 14
file: x0y14.svg
- x: 0
y: 15
file: x0y15.svg
- x: 0
y: 16
file: x0y16.svg
- x: 0
y: 17
file: x0y17.svg
- x: 0
y: 18
file: x0y18.svg
- x: 0
y: 19
file: x0y19.svg
- x: 0
y: 20
file: x0y20.svg
- x: 0
y: 21
file: x0y21.svg
fields:
- name: 髪基
- name: 髪中
- name: 髪左1
- name: 髪左2
- name: 髪左3
- name: 髪左4
- name: 髪左5
- name: 髪右1
- name: 髪右2
- name: 髪右3
- name: 髪右4
- name: 髪右5
joints:
- position: [
0.2178778082444386,
0.2564261171219583
]
- position: [
0.1969765324956132,
0.2418517012073054
]
- position: [
0.23877908399326392,
0.2418517012073054
]
- position: [
0.208475178732748,
0.25264026464676625
]
- position: [
0.2272804377561291,
0.25264026464676625
]
- position: [
0.1935624706360835,
0.23378664862188522
]
- position: [
0.2421931458527936,
0.23378664862188522
]
- position: [
0.20272585561418063,
0.24700948110253684
]
- position: [
0.23302976087469654,
0.24700948110253684
]
- position: [
0.21212848512587115,
0.25517236379805497
]
- position: [
0.22362713136300597,
0.25517236379805497
]
- position: [
0.2178778082444386,
0.2559396002614368
]
- position: [
0.08512163657345904,
0.09752048584487923
]
- position: [
0.020184612282548316,
0.020184612282548316
]
- position: [
0.17135528044934764,
0.16840896144042491
]
- position: [
0.17467966828326895,
0.16840896144042491
]
- position: [
0.19324010248212642,
0.15723772401224015
]
- position: [
0.1977855506682589,
0.15723772401224015
]
- position: [
0.17212207720570655,
0.15551976265953
]
- position: [
0.17391287152691007,
0.15558259873908495
]
- position: [
0.1939281285635483,
0.15692381981311482
]
- position: [
0.19709752458683705,
0.15692381981311482
]
- position: [
0.17867857642604565,
0.1760156191948301
]
- position: [
0.1720485124034892,
0.1760156191948301
]
- position: [
0.19243750713113184,
0.15887381915795443
]
- position: [
0.1985881460192535,
0.15887381915795445
]
- position: [
0.20163777230049718,
0.26759312584763717
]
- position: [
0.23411784418837994,
0.2675931258476371
]
- position: [
0.1698911549641544,
0.16370062891978251
]
- position: [
0.16423597669562123,
0.16295628623321495
]
- position: [
0.164270517413585,
0.16370062891978251
]
- position: [
0.16992569568211818,
0.16295628623321495
]
- position: [
0.16329436248073068,
0.16272078756355457
]
- position: [
0.16971407774046293,
0.1638147726946744
]
- position: [
0.17086730989700877,
0.16272078756355457
]
- position: [
0.16444759463727648,
0.16381477269467437
]
- position: [
0.16980055837755084,
0.16354318253042563
]
- position: [
0.1641742448408192,
0.16269214387427047
]
- position: [
0.1643611140001886,
0.16354318253042563
]
- position: [
0.1699874275369202,
0.1626921438742705
]
- position: [
0.16296099505277442,
0.1625737426969202
]
- position: [
0.16966827706965412,
0.16388870505348654
]
- position: [
0.17120067732496502,
0.16257374269692026
]
- position: [
0.16449339530808535,
0.16388870505348654
]
- position: [
0.2178778082444386,
0.2703446812816859
]
- position: [
0.13796833536796266,
0.11963988320424497
]
- position: [
0.13796833536796266,
0.12467799413480772
]
- position: [
0.13796833536796266,
0.1191360721111887
]
- position: [
0.13796833536796266,
0.12367037194869515
]
- position: [
0.13796833536796266,
0.11868264212743805
]
- position: [
0.13796833536796266,
0.12276351198119388
]
- position: [
0.13796833536796266,
0.11827455514206248
]
- position: [
0.13796833536796266,
0.12194733801044272
]
- position: [
0.13796833536796266,
0.11790727685522445
]
- position: [
0.13796833536796266,
0.12121278143676666
]
- position: [
0.13796833536796266,
0.11757672639707023
]
- position: [
0.13796833536796266,
0.12055168052045823
]
- position: [
0.13796833536796266,
0.11727923098473143
]
- position: [
0.13796833536796266,
0.11995668969578065
]
- position: [
0.13796833536796266,
0.11701148511362652
]
- position: [
0.13796833536796266,
0.11942119795357078
]
- position: [
0.19447579759386655,
0.15755241441891785
]
- position: [
0.19654985555651883,
0.15755241441891785
]
- position: [
0.19461061136143892,
0.15755241441891785
]
- position: [
0.19641504178894645,
0.15755241441891785
]
- position: [
0.2018449291759475,
0.2660394492817595
]
- position: [
0.2339106873129296,
0.26603944928175943
]
- position: [
0.1379683353679626,
0.11926191815171247
]
- position: [
0.1379683353679626,
0.12392206402974258
]
- position: [
0.1379683353679626,
0.11879590356390944
]
- position: [
0.1379683353679626,
0.12299003485413657
]
- position: [
0.1379683353679626,
0.11837649043488672
]
- position: [
0.1379683353679626,
0.12215120859609112
]
- position: [
0.1379683353679626,
0.11799901861876629
]
- position: [
0.1379683353679626,
0.12139626496385024
]
- position: [
0.1379683353679626,
0.11765929398425788
]
- position: [
0.1379683353679626,
0.1207168156948335
]
- position: [
0.1379683353679626,
0.11735354181320028
]
- position: [
0.1379683353679626,
0.12010531135271839
]
- position: [
0.1379683353679626,
0.11707836485924847
]
- position: [
0.1379683353679626,
0.11955495744481476
]
- position: [
0.1379683353679626,
0.11683070560069185
]
- position: [
0.1379683353679626,
0.11905963892770145
]
- position: [
0.19454349958080752,
0.15749136861225138
]
- position: [
0.1964821535695777,
0.15749136861225138
]
- position: [
0.19648215356957766,
0.15749136861225138
]
- position: [
0.1945434995808076,
0.15749136861225138
]
- position: [
0.19647205641338622,
0.15747723164928143
]
- position: [
0.19455359673699912,
0.15747723164928143
]
- position: [
0.13796833536796266,
0.11926191815171247
]
- position: [
0.13796833536796266,
0.12392206402974258
]
- position: [
0.13796833536796266,
0.11879590356390944
]
- position: [
0.13796833536796266,
0.12299003485413657
]
- position: [
0.13796833536796266,
0.11837649043488672
]
- position: [
0.13796833536796266,
0.12215120859609112
]
- position: [
0.13796833536796266,
0.11799901861876629
]
- position: [
0.13796833536796266,
0.12139626496385024
]
- position: [
0.13796833536796266,
0.11765929398425788
]
- position: [
0.13796833536796266,
0.1207168156948335
]
- position: [
0.13796833536796266,
0.11735354181320028
]
- position: [
0.13796833536796266,
0.12010531135271839
]
- position: [
0.13796833536796266,
0.11707836485924847
]
- position: [
0.13796833536796266,
0.11955495744481476
]
- position: [
0.13796833536796266,
0.11683070560069185
]
- position: [
0.13796833536796266,
0.11905963892770145
]
- position: [
0.19634735653442098,
0.15746708922656819
]
- position: [
0.1946782966159643,
0.15746708922656819
]
- position: [
0.19467829661596428,
0.15746708922656819
]
- position: [
0.19634735653442104,
0.15746708922656819
]
- position: [
0.19647205641338622,
0.1574661372066027
]
- position: [
0.19455359673699912,
0.1574661372066027
]
- position: [
0.0275187318942521,
0.050004379462195055
]
- position: [
0.13865206406918631,
0.11082449952161813
]
- position: [
0.1396033010206994,
0.10670423961541153
]
- position: [
0.14062950453675518,
0.11131550203408158
]
- position: [
0.14329067370554777,
0.10802923179448086
]
- position: [
0.14180078442666083,
0.11281467192812238
]
- position: [
0.14563323348535911,
0.11102757158256243
]
- position: [
0.1421963309925757,
0.11467557221182609
]
- position: [
0.1464243266171888,
0.1147493721499699
]
- position: [
0.1417360808996267,
0.116521534509284
]
- position: [
0.1455038264312908,
0.11844129674488574
]
- position: [
0.14051319424700948,
0.11797891407087607
]
- position: [
0.14305805312605638,
0.12135605586806991
]
- position: [
0.1387751978546163,
0.11875271991973224
]
- position: [
0.13958206034127008,
0.12290366756578229
]

View File

@@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24073248845225406 0.2494909368722861 0.24188766313423996 0.2475101238438775 C 0.24073248845225406 0.2494909368722861 0.2297390831874525 0.2587673083827231 0.23173990442826928 0.25755640496278853 C 0.2297390831874525 0.2587673083827231 0.2155674588804668 0.2620409648830925 0.2178778082444386 0.2620409648830925 C 0.2155674588804668 0.2620409648830925 0.2020148908197911 0.25634550154285407 0.2040157120606079 0.25755640496278864 C 0.2020148908197911 0.25634550154285407 0.19271277867265127 0.24552931081546894 0.19386795335463716 0.24751012384387755 C 0.19271277867265127 0.24552931081546894 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.12428215862934613) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19551282657519264 0.2561137856183718 C 0.19538877912759423 0.2540186359862298 0.1937761623088146 0.22660029693720196 0.19402425720401145 0.23097199003266786 C 0.1937761623088146 0.22660029693720196 0.19241164038523187 0.20137692500945728 0.1925356878328303 0.20365346847278118" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1925356878328303 0.20365346847278118 C 0.19248668759503604 0.20221330348259917 0.19194589840615459 0.18241712332475166 0.19194768497929923 0.18637148859059705 C 0.19194589840615459 0.18241712332475166 0.192561462619744 0.1536868850069731 0.1925142489550944 0.1562010852826365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19851140419529087 0.1562010852826365 C 0.19855861785994047 0.15871528555829986 0.19907618159794144 0.19032585385644243 0.19907796817108608 0.18637148859059705 C 0.19907618159794144 0.19032585385644243 0.19844096507976075 0.2050936334629632 0.198489965317555 0.20365346847278118" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.198489965317555 0.20365346847278118 C 0.19836591786995655 0.20593001193610508 0.19675330105117692 0.23534368312813375 0.19700139594637378 0.23097199003266786 C 0.19675330105117692 0.23534368312813375 0.19538877912759423 0.25820893525051375 0.19551282657519264 0.2561137856183718" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3315941297101035,0.12302840530544282) rotate(0) scale(1,1) translate(-0.17182654921449536,-0.1626271006073876)"><path d="M 0.1747139434286262 0.1626271006073876 C 0.17475250227575354 0.16500333224750122 0.17515576294029492 0.19533417422013685 0.1751766495941541 0.19114188028875098 C 0.17515576294029492 0.19533417422013685 0.17440385808132947 0.21475069007529024 0.174463303582316 0.21293462778401798" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.174463303582316 0.21293462778401798 C 0.17437035650371924 0.21494551017418714 0.17318791527029737 0.24097376966509212 0.17334793863915482 0.23706521646604806 C 0.17318791527029737 0.24097376966509212 0.17247594686576584 0.26173493698142153 0.17254302315602654 0.25983726617254665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17254302315602654 0.25983726617254665 C 0.17236608521994667 0.2579395953636718 0.17013913656845958 0.233156663267004 0.17041976792306798 0.23706521646604806 C 0.17013913656845958 0.233156663267004 0.16907175348219708 0.2109237453938488 0.1691754469007256 0.21293462778401798" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1691754469007256 0.21293462778401798 C 0.16903938478286767 0.2111185654927457 0.16752301049473356 0.1869495863573651 0.16754270148643033 0.19114188028875098 C 0.16752301049473356 0.1869495863573651 0.16905552612652566 0.160250868967274 0.1689391550003645 0.1626271006073876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3279408233169804,0.1204963061541541) rotate(0) scale(1,1) translate(-0.17172616467872354,-0.16464542498289636)"><path d="M 0.17451013276793553 0.1647823570853411 C 0.17450149544649787 0.1668919158461631 0.17422711329679277 0.1943635569552087 0.17440648491068353 0.19009706221520511 C 0.17422711329679277 0.1943635569552087 0.17218693910879324 0.21813722994456589 0.17235767340124633 0.2159802939653843" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17235767340124633 0.2159802939653843 C 0.17221777668958485 0.21800801934822175 0.17043351713862237 0.244022745542376 0.1706789128613086 0.240312998559434 C 0.17043351713862237 0.244022745542376 0.16930742571798701 0.26217927936079255 0.16941292472901176 0.26049725776068805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16941292472901176 0.26049725776068805 C 0.16925028698365666 0.25880204760072323 0.16728950080647423 0.23642447011958995 0.16746127178475045 0.24015473584111016 C 0.16728950080647423 0.23642447011958995 0.16734253975677602 0.2136990135408899 0.16735167298969714 0.2157340691024453" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16735167298969714 0.2157340691024453 C 0.1673140269522225 0.21356688373973243 0.16703246417331924 0.18545904673139144 0.16689992054000138 0.1897278447498909 C 0.16703246417331924 0.18545904673139144 0.16911238626030403 0.16240688022466498 0.1689421965895115 0.1645084928804516" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32219150019841303,0.11486552260992469) rotate(0) scale(1,1) translate(-0.17220112318371358,-0.1645055777824458)"><path d="M 0.17546718492650892 0.16447744805737904 C 0.1754637473085877 0.16657849803356212 0.17530244199614772 0.19398559807582294 0.17542593351145405 0.18969004777157583 C 0.17530244199614772 0.19398559807582294 0.17386523284544797 0.21821855203640822 0.17398528674283306 0.21602405170834418" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17398528674283306 0.21602405170834418 C 0.17384885808143388 0.21764865325825233 0.17206300823518605 0.239423489745092 0.17234814280604294 0.23551927030724196 C 0.17206300823518605 0.239423489745092 0.17041496598309283 0.2651543028504865 0.17056367189255053 0.2628746849625446" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17056367189255053 0.2628746849625446 C 0.1703686337339701 0.2605742243656133 0.16800348959707218 0.23136928657810357 0.16822321398958548 0.23526915779936877 C 0.16800348959707218 0.23136928657810357 0.16790229294845813 0.21447681968302817 0.167926979182391 0.21607623030736206" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.167926979182391 0.21607623030736206 C 0.16788518462639415 0.21388312393717593 0.16750945136530612 0.1854637436318078 0.16742544451042884 0.1897589538651286 C 0.16750945136530612 0.1854637436318078 0.1690608628517923 0.16243160364437786 0.1689350614409182 0.16453370750751253" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31644217707984557,0.10970774271469325) rotate(0) scale(1,1) translate(-0.17149933224096225,-0.16424072920864125)"><path d="M 0.17451395433503533 0.16430184783156565 C 0.1745575744546823 0.16644123829950747 0.17494607123422967 0.19443440037022966 0.17503739577079896 0.18997453344686746 C 0.17494607123422967 0.19443440037022966 0.17328311523998755 0.22014072736733248 0.17341805989620382 0.2178202509119121" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17341805989620382 0.2178202509119121 C 0.17325568809099395 0.2200119260908584 0.17124488680666275 0.2478216755288034 0.1714695982336854 0.24412035305926763 C 0.17124488680666275 0.2478216755288034 0.17065918315011913 0.26374576783693093 0.17072152277193192 0.26223612054634143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17072152277193192 0.26223612054634143 C 0.17051998659024947 0.26038545668398855 0.16799269238669692 0.2363410505674169 0.1683030885917427 0.24002815419810686 C 0.16799269238669692 0.2363410505674169 0.16688790828801917 0.2161544372097248 0.16699676831138252 0.21799087697806188" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16699676831138252 0.21799087697806188 C 0.16701045238675505 0.2156428744366341 0.16728497236881168 0.18533057428156652 0.1671609772158528 0.1898148464809286 C 0.16728497236881168 0.18533057428156652 0.16859502122447553 0.16204334092778247 0.16848471014688918 0.16417961058571678" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3130281152203159,0.10164269012927307) rotate(0) scale(1,1) translate(-0.17343256089445602,-0.16866918493841992)"><path d="M 0.17675686258173068 0.16880402018979246 C 0.17666095311572452 0.17034213070041443 0.17531619886568736 0.19088138193142126 0.1756059489896568 0.18726134631725605 C 0.17531619886568736 0.19088138193142126 0.17308602043613405 0.2143263726633182 0.17327986109409735 0.21224444755977495" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17327986109409735 0.21224444755977495 C 0.17312650518034137 0.21475469040221387 0.17116739558872093 0.24709792542345332 0.17143959012902563 0.2423673616690419 C 0.17116739558872093 0.24709792542345332 0.16989468798389235 0.27123153352468427 0.17001352661044106 0.26901121261271177" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17001352661044106 0.26901121261271177 C 0.1698533863386268 0.26653986634304033 0.16796738847032183 0.23460840533390415 0.16809184334866992 0.23935505737665458 C 0.16796738847032183 0.23460840533390415 0.16855575346373006 0.2097760823266275 0.1685200680702639 0.2120513880997065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1685200680702639 0.2120513880997065 C 0.16860221038047418 0.20996493245825967 0.1696381250541969 0.18338750053462288 0.1695057757927871 0.18701392040234446 C 0.1696381250541969 0.18338750053462288 0.17015846615838093 0.16699438546077267 0.1701082592071814 0.16853434968704742" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3430927759472383,0.12302840530544282) rotate(0) scale(1,1) translate(-0.17182654921449536,-0.1626271006073876)"><path d="M 0.17471394342862617 0.1626271006073876 C 0.17483031455478737 0.16500333224750122 0.17609070595086368 0.19533417422013685 0.17611039694256042 0.19114188028875098 C 0.17609070595086368 0.19533417422013685 0.17434158941040717 0.21475069007529024 0.1744776515282651 0.21293462778401798" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1744776515282651 0.21293462778401798 C 0.17437395810973658 0.21494551017418714 0.1729526991513143 0.24097376966509212 0.1732333305059227 0.23706521646604806 C 0.1729526991513143 0.24097376966509212 0.17093313733688428 0.26173493698142153 0.17111007527296415 0.25983726617254665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17111007527296415 0.25983726617254665 C 0.17104299898270348 0.2579395953636718 0.17014513642097842 0.233156663267004 0.17030515978983587 0.23706521646604806 C 0.17014513642097842 0.233156663267004 0.169096847768078 0.2109237453938488 0.16918979484667476 0.21293462778401798" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16918979484667476 0.21293462778401798 C 0.16913034934568824 0.2111185654927457 0.16845556218097743 0.1869495863573651 0.16847644883483662 0.19114188028875098 C 0.16845556218097743 0.1869495863573651 0.16897771384749188 0.160250868967274 0.16893915500036455 0.1626271006073876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3467460823403615,0.1204963061541541) rotate(0) scale(1,1) translate(-0.17172616467872354,-0.16464542498289636)"><path d="M 0.17451013276793564 0.1645084928804516 C 0.17468032243872816 0.16661010553623823 0.17668495245076365 0.19399664276839038 0.17655240881744577 0.1897278447498909 C 0.17668495245076365 0.19399664276839038 0.17606301033027544 0.21790125446515818 0.17610065636775007 0.2157340691024453" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17610065636775007 0.2157340691024453 C 0.17609152313482895 0.2177691246640007 0.17581928659442053 0.24388500156263038 0.17599105757269676 0.24015473584111016 C 0.17581928659442053 0.24388500156263038 0.17387676688308037 0.26219246792065287 0.17403940462843548 0.26049725776068805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17403940462843548 0.26049725776068805 C 0.17393390561741073 0.25881523616058355 0.1725280207734524 0.236603251576492 0.17277341649613862 0.240312998559434 C 0.1725280207734524 0.236603251576492 0.17095475924453934 0.21395256858254683 0.17109465595620083 0.2159802939653843" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17109465595620083 0.2159802939653843 C 0.17092392166374773 0.2138233579862027 0.16886647283287284 0.1858305674752015 0.1690458444467636 0.1900970622152051 C 0.16886647283287284 0.1858305674752015 0.168933559268074 0.1626727983245191 0.16894219658951165 0.1647823570853411" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3524954054589289,0.11486552260992469) rotate(0) scale(1,1) translate(-0.17220112318371358,-0.1645055777824458)"><path d="M 0.17546718492650892 0.16453370750751253 C 0.17559298633738304 0.1666358113706472 0.17706080871187563 0.1940541640984494 0.17697680185699835 0.1897589538651286 C 0.17706080871187563 0.1940541640984494 0.1764334726290393 0.2182693366775482 0.17647526718503614 0.21607623030736206" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17647526718503614 0.21607623030736206 C 0.17645058095110328 0.21767564093169595 0.1759593079853284 0.23916902902063397 0.1761790323778417 0.23526915779936877 C 0.1759593079853284 0.23916902902063397 0.1736435363162963 0.26517514555947597 0.17383857447487672 0.2628746849625446" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17383857447487672 0.2628746849625446 C 0.17368986856541901 0.2605950670746027 0.17176896899052738 0.2316150508693919 0.17205410356138426 0.23551927030724196 C 0.17176896899052738 0.2316150508693919 0.1702805309631949 0.21439945015843603 0.17041695962459408 0.21602405170834418" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17041695962459408 0.21602405170834418 C 0.170296905727209 0.21382955138028015 0.16885282134066681 0.18539449746732872 0.16897631285597314 0.18969004777157583 C 0.16885282134066681 0.18539449746732872 0.168931623822997 0.16237639808119597 0.16893506144091824 0.16447744805737904" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3582447285774963,0.10970774271469325) rotate(0) scale(1,1) translate(-0.17149933224096225,-0.16424072920864125)"><path d="M 0.1745139543350353 0.16417961058571678 C 0.17462426541262166 0.1663158802436511 0.17596168241903062 0.1942991186802907 0.17583768726607174 0.1898148464809286 C 0.17596168241903062 0.1942991186802907 0.17601558024591454 0.22033887951948966 0.17600189617054202 0.21799087697806188" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17600189617054202 0.21799087697806188 C 0.17589303614717866 0.21982731674639897 0.174385179685136 0.24371525782879683 0.17469557589018178 0.24002815419810686 C 0.174385179685136 0.24371525782879683 0.17207560552831017 0.2640867844086943 0.1722771417099926 0.26223612054634143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1722771417099926 0.26223612054634143 C 0.1722148020881798 0.26072647325575193 0.17130435482121642 0.24041903058973185 0.17152906624823908 0.24412035305926763 C 0.17130435482121642 0.24041903058973185 0.16941823278051088 0.2156285757329658 0.16958060458572075 0.2178202509119121" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16958060458572075 0.2178202509119121 C 0.16944565992950447 0.2154997744564917 0.16786994417455622 0.18551466652350526 0.16796126871112552 0.18997453344686746 C 0.16786994417455622 0.18551466652350526 0.16852833026653616 0.16216245736362384 0.16848471014688918 0.16430184783156565" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.361658790437026,0.10164269012927307) rotate(0) scale(1,1) translate(-0.17343256089445602,-0.16866918493841992)"><path d="M 0.17675686258173065 0.16853434968704742 C 0.17680706953293018 0.17007431391332217 0.17749169525753478 0.19064034027006604 0.17735934599612496 0.18701392040234446 C 0.17749169525753478 0.19064034027006604 0.17842719602885854 0.21413784374115333 0.17834505371864826 0.2120513880997065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17834505371864826 0.2120513880997065 C 0.1783807391121144 0.2143266938727855 0.17864882356189413 0.244101709419405 0.1787732784402422 0.23935505737665458 C 0.17864882356189413 0.244101709419405 0.17669145490665683 0.2714825588823832 0.1768515951784711 0.26901121261271177" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1768515951784711 0.26901121261271177 C 0.1767327565519224 0.2667908917007393 0.17515333711958173 0.2376367979146305 0.17542553165988642 0.2423673616690419 C 0.17515333711958173 0.2376367979146305 0.17343190478105874 0.20973420471733603 0.17358526069481472 0.21224444755977495" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17358526069481472 0.21224444755977495 C 0.17339142003685143 0.2101625224562317 0.17096942267528578 0.18364131070309084 0.17125917279925523 0.18726134631725605 C 0.17096942267528578 0.18364131070309084 0.17001234974117527 0.1672659096791705 0.17010825920718142 0.16880402018979246" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24073248845225406 0.2494909368722861 0.24188766313423996 0.2475101238438775 C 0.24073248845225406 0.2494909368722861 0.2297390831874525 0.2587673083827231 0.23173990442826928 0.25755640496278853 C 0.2297390831874525 0.2587673083827231 0.2155674588804668 0.2620409648830925 0.2178778082444386 0.2620409648830925 C 0.2155674588804668 0.2620409648830925 0.2020148908197911 0.25634550154285407 0.2040157120606079 0.25755640496278864 C 0.2020148908197911 0.25634550154285407 0.19271277867265127 0.24552931081546894 0.19386795335463716 0.24751012384387755 C 0.19271277867265127 0.24552931081546894 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.12428215862934613) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19551282657519264 0.2491770976372723 C 0.19538877912759423 0.24712295845960375 0.1937761623088146 0.22046248687408027 0.19402425720401145 0.22452742750524957 C 0.1937761623088146 0.22046248687408027 0.19241164038523187 0.19838700860973982 0.1925356878328303 0.20039781006324056" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1925356878328303 0.20039781006324056 C 0.19248668759503604 0.19905869840642043 0.19194589840615459 0.18065157436812918 0.19194768497929923 0.1843284701813991 C 0.19194589840615459 0.18065157436812918 0.192561462619744 0.15393727614755162 0.1925142489550944 0.15627506030400143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19851140419529087 0.15627506030400143 C 0.19855861785994047 0.15861284446045124 0.19907618159794144 0.18800536599466905 0.19907796817108608 0.1843284701813991 C 0.19907618159794144 0.18800536599466905 0.19844096507976075 0.2017369217200607 0.198489965317555 0.20039781006324056" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.198489965317555 0.20039781006324056 C 0.19836591786995655 0.2024086115167413 0.19675330105117692 0.22859236813641887 0.19700139594637378 0.22452742750524957 C 0.19675330105117692 0.22859236813641887 0.19538877912759423 0.25123123681494086 0.19551282657519264 0.2491770976372723" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3315941297101035,0.12302840530544282) rotate(0) scale(1,1) translate(-0.17182654921449536,-0.1626271006073876)"><path d="M 0.1747139434286262 0.1626271006073876 C 0.17475250227575354 0.1648365970958273 0.17515576294029492 0.19303918799591038 0.1751766495941541 0.18914105846866394 C 0.17515576294029492 0.19303918799591038 0.17440385808132947 0.21109328797315155 0.174463303582316 0.20940465493434482" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.174463303582316 0.20940465493434482 C 0.17437035650371924 0.2111684361906806 0.17310385421191493 0.23432401096326588 0.17334793863915482 0.23057003001037432 C 0.17310385421191493 0.23432401096326588 0.17138315310679433 0.25644262606559926 0.17153429045543744 0.25445242636904347" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17153429045543744 0.25445242636904347 C 0.17144141357773998 0.2524622266724877 0.170223197626842 0.22681604905748276 0.17041976792306798 0.23057003001037432 C 0.170223197626842 0.22681604905748276 0.16907175348219708 0.20764087367800904 0.1691754469007256 0.20940465493434482" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1691754469007256 0.20940465493434482 C 0.16903938478286767 0.2077160218955381 0.16752301049473356 0.1852429289414175 0.16754270148643033 0.18914105846866394 C 0.16752301049473356 0.1852429289414175 0.16905552612652566 0.16041760411894793 0.1689391550003645 0.1626271006073876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3279408233169804,0.1204963061541541) rotate(0) scale(1,1) translate(-0.17172616467872354,-0.16464542498289636)"><path d="M 0.1745117662633915 0.16472025555908756 C 0.17453482795603673 0.1666816550905765 0.1746732695557127 0.19222695045035282 0.1747885065751343 0.18825704993695475 C 0.1746732695557127 0.19222695045035282 0.17299062331826526 0.21436756270177373 0.17312892203033212 0.21235906171986457" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17312892203033212 0.21235906171986457 C 0.17298371800839152 0.21420528790094542 0.1710345335049229 0.2382096960005804 0.17138647376704483 0.23451377589283476 C 0.1710345335049229 0.2382096960005804 0.16869890264468776 0.25855979693947706 0.16890563888486906 0.2567101030128123" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16890563888486906 0.2567101030128123 C 0.1688440810392188 0.2547758809201305 0.16810147352533697 0.22979230472448775 0.16816694473706587 0.2334994379006309 C 0.16810147352533697 0.22979230472448775 0.16811607097804354 0.2104515938156331 0.16811998434412218 0.21222450489909447" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16811998434412218 0.21222450489909447 C 0.16804978045893953 0.21021040283999776 0.1673459192844251 0.1840841209822347 0.16727753772193066 0.1880552801899338 C 0.1673459192844251 0.1840841209822347 0.16907914854173264 0.16261353725810274 0.16894056309405556 0.16457059440670513" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32219150019841303,0.11486552260992469) rotate(0) scale(1,1) translate(-0.17220112318371358,-0.1645055777824458)"><path d="M 0.17546626481932254 0.16441786515646095 C 0.17549439757268942 0.16637125614461476 0.17574492900966782 0.19185441694806185 0.17580385785972497 0.18785855701430668 C 0.17574492900966782 0.19185441694806185 0.17467205701521285 0.21441065330712433 0.17475911861863686 0.21236818436152297" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17475911861863686 0.21236818436152297 C 0.17453341215322937 0.21449567890024843 0.17153184804011778 0.24176201840517858 0.17205064103374718 0.23789811882622844 C 0.17153184804011778 0.24176201840517858 0.16824051616686211 0.2604713843491492 0.16853360269508405 0.25873497930892453" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16853360269508405 0.25873497930892453 C 0.16856941435288028 0.2568503216712361 0.16897741884657064 0.23226874645747347 0.1689633425886388 0.2361190876566634 C 0.16897741884657064 0.23226874645747347 0.16868078239040185 0.21056520135714415 0.16870251779026624 0.21253088491864564" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16870251779026624 0.21253088491864564 C 0.16862777653587166 0.21049276253902363 0.16782507805068447 0.18407861682066373 0.16780562273753127 0.18807341636318164 C 0.16782507805068447 0.18407861682066373 0.16903017811565235 0.16263661324553463 0.16893598154810457 0.16459329040843057" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31644217707984557,0.10970774271469325) rotate(0) scale(1,1) translate(-0.17149933224096225,-0.16424072920864125)"><path d="M 0.17451441354652203 0.16424072920864125 C 0.1745901729649076 0.16622887801516106 0.175399228776772 0.1922465321172311 0.1754235265671486 0.1880985148868789 C 0.175399228776772 0.1922465321172311 0.17412278285324065 0.21617680439670012 0.1742228400620028 0.21401693597286772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1742228400620028 0.21401693597286772 C 0.17395221142167394 0.2160634023245805 0.1703103716136264 0.24228454794229734 0.1709752963780563 0.2385745321934208 C 0.1703103716136264 0.24228454794229734 0.1658494467647426 0.26020067435654987 0.16624374288884364 0.2585371249593861" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16624374288884364 0.2585371249593861 C 0.16637327074126507 0.2565309883270205 0.16797404443597194 0.23073890390431712 0.16779807711790065 0.23446348537099876 C 0.16797404443597194 0.23073890390431712 0.16840179017134904 0.2121237025248905 0.16835535070569915 0.2138421473592065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16835535070569915 0.2138421473592065 C 0.1682878971646218 0.2116968446531792 0.16755664989857957 0.1839650633743318 0.16754590821277096 0.1880985148868789 C 0.16755664989857957 0.1839650633743318 0.16856244616228844 0.16225258040212143 0.16848425093540248 0.16424072920864125" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3130281152203159,0.10164269012927307) rotate(0) scale(1,1) translate(-0.17343256089445602,-0.16866918493841992)"><path d="M 0.1767588888908717 0.16866918493841992 C 0.17670925333262266 0.17010211322320912 0.1760229198208578 0.18938487751300417 0.17616326219188302 0.18586432435589026 C 0.1760229198208578 0.18938487751300417 0.1749840736257927 0.2130034476961117 0.1750747804385689 0.21091582282378699" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1750747804385689 0.21091582282378699 C 0.17479239357692336 0.2136669809039513 0.17088177169929158 0.2485509142313085 0.17168613809882263 0.24392971978575875 C 0.17088177169929158 0.2485509142313085 0.16490040410631082 0.26824019253576953 0.16542238364419634 0.26637015617038406" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16542238364419634 0.26637015617038406 C 0.16565955937955146 0.2642671206656654 0.1686355073467078 0.2363668784901588 0.16826849246845768 0.24113373011375958 C 0.1686355073467078 0.2363668784901588 0.1699564013260925 0.2065041205682926 0.1698265621831975 0.20916793668717468" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1698265621831975 0.20916793668717468 C 0.169845962890366 0.20722596899290097 0.1700826765621229 0.18248942837682736 0.17005937066921933 0.18586432435589026 C 0.1700826765621229 0.18248942837682736 0.17011013808377545 0.16723625665363073 0.17010623289804036 0.16866918493841992" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3430927759472383,0.12302840530544282) rotate(0) scale(1,1) translate(-0.17182654921449536,-0.1626271006073876)"><path d="M 0.17471394342862617 0.1626271006073876 C 0.17483031455478737 0.1648365970958273 0.17609070595086368 0.19303918799591038 0.17611039694256042 0.18914105846866394 C 0.17609070595086368 0.19303918799591038 0.17434158941040717 0.21109328797315155 0.1744776515282651 0.20940465493434482" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1744776515282651 0.20940465493434482 C 0.17437395810973658 0.2111684361906806 0.17303676020969672 0.23432401096326588 0.1732333305059227 0.23057003001037432 C 0.17303676020969672 0.23432401096326588 0.1720259310958558 0.25644262606559926 0.17211880797355325 0.25445242636904347" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17211880797355325 0.25445242636904347 C 0.17196767062491014 0.2524622266724877 0.17006107536259601 0.22681604905748276 0.17030515978983587 0.23057003001037432 C 0.17006107536259601 0.22681604905748276 0.169096847768078 0.20764087367800904 0.16918979484667476 0.20940465493434482" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16918979484667476 0.20940465493434482 C 0.16913034934568824 0.2077160218955381 0.16845556218097743 0.1852429289414175 0.16847644883483662 0.18914105846866394 C 0.16845556218097743 0.1852429289414175 0.16897771384749188 0.16041760411894793 0.16893915500036455 0.1626271006073876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3467460823403615,0.1204963061541541) rotate(0) scale(1,1) translate(-0.17172616467872354,-0.16464542498289636)"><path d="M 0.1745117662633916 0.16457059440670513 C 0.17465035171106869 0.16652765155530752 0.17624317319801094 0.19202643939763292 0.1761747916355165 0.1880552801899338 C 0.17624317319801094 0.19202643939763292 0.17526214112814242 0.2142386069581912 0.17533234501332504 0.21222450489909447" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17533234501332504 0.21222450489909447 C 0.1753284316472464 0.21399741598255584 0.17521991340865245 0.23720657107677406 0.17528538462038135 0.2334994379006309 C 0.17521991340865245 0.23720657107677406 0.1744851326269279 0.25864432510549407 0.17454669047257818 0.2567101030128123" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17454669047257818 0.2567101030128123 C 0.17433995423239687 0.2548604090861475 0.17171391532828045 0.23081785578508912 0.17206585559040238 0.23451377589283476 C 0.17171391532828045 0.23081785578508912 0.1701782033051744 0.21051283553878372 0.17032340732711504 0.21235906171986457" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17032340732711504 0.21235906171986457 C 0.17018510861504818 0.2103505607379554 0.1685485857628912 0.18428714942355667 0.16866382278231282 0.18825704993695475 C 0.1685485857628912 0.18428714942355667 0.16896362478670093 0.16275885602759863 0.1689405630940557 0.16472025555908756" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3524954054589289,0.11486552260992469) rotate(0) scale(1,1) translate(-0.17220112318371358,-0.1645055777824458)"><path d="M 0.17546626481932254 0.16459329040843057 C 0.17556046138687031 0.1665499675713265 0.17661607894304912 0.19206821590569956 0.17659662362989592 0.18807341636318164 C 0.17661607894304912 0.19206821590569956 0.17562498732276632 0.21456900729826764 0.1756997285771609 0.21253088491864564" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1756997285771609 0.21253088491864564 C 0.17567799317729652 0.21449656848014712 0.17545298003672022 0.23996942885585332 0.17543890377878837 0.2361190876566634 C 0.17545298003672022 0.23996942885585332 0.17590445533013943 0.26061963694661294 0.1758686436723432 0.25873497930892453" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1758686436723432 0.25873497930892453 C 0.17557555714412126 0.2569985742686999 0.1718328123400506 0.2340342192472783 0.17235160533368002 0.23789811882622844 C 0.1718328123400506 0.2340342192472783 0.1694174212833828 0.2102406898227975 0.16964312774879028 0.21236818436152297" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16964312774879028 0.21236818436152297 C 0.16955606614536628 0.2103257154159216 0.16853945965764508 0.1838626970805515 0.16859838850770223 0.18785855701430668 C 0.16853945965764508 0.1838626970805515 0.16896411430147149 0.16246447416830714 0.16893598154810463 0.16441786515646095" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3582447285774963,0.10970774271469325) rotate(0) scale(1,1) translate(-0.17149933224096225,-0.16424072920864125)"><path d="M 0.174514413546522 0.16424072920864125 C 0.17459260877340796 0.16622887801516106 0.1754634979549622 0.192231966399426 0.17545275626915358 0.1880985148868789 C 0.1754634979549622 0.192231966399426 0.17457586023514804 0.21598745006523382 0.17464331377622538 0.2138421473592065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17464331377622538 0.2138421473592065 C 0.17468975324187525 0.21556059219352253 0.17537655468209512 0.2381880668376804 0.17520058736402383 0.23446348537099876 C 0.17537655468209512 0.2381880668376804 0.1768844494455023 0.2605432615917517 0.17675492159308087 0.2585371249593861" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17675492159308087 0.2585371249593861 C 0.17636062546897982 0.2568735755622223 0.17135844333943825 0.23486451644454429 0.17202336810386817 0.2385745321934208 C 0.17135844333943825 0.23486451644454429 0.1685051957795929 0.21197046962115496 0.16877582441992175 0.21401693597286772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16877582441992175 0.21401693597286772 C 0.1686757672111596 0.21185706754903533 0.16755084012439928 0.18395049765652668 0.16757513791477588 0.1880985148868789 C 0.16755084012439928 0.18395049765652668 0.16856001035378804 0.16225258040212143 0.16848425093540248 0.16424072920864125" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.361658790437026,0.10164269012927307) rotate(0) scale(1,1) translate(-0.17343256089445602,-0.16866918493841992)"><path d="M 0.17675888889087168 0.16866918493841992 C 0.17676279407660678 0.17010211322320912 0.17682905701259632 0.18923922033495316 0.17680575111969274 0.18586432435589026 C 0.17682905701259632 0.18923922033495316 0.17705796031288315 0.2111099043814484 0.17703855960571466 0.20916793668717468" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17703855960571466 0.20916793668717468 C 0.17716839874860965 0.21183175280605676 0.17896364419870453 0.24590058173736035 0.17859662932045445 0.24113373011375958 C 0.17896364419870453 0.24590058173736035 0.18167991388007093 0.26847319167510275 0.18144273814471581 0.26637015617038406" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18144273814471581 0.26637015617038406 C 0.18092075860683027 0.2645001198049986 0.17437461729055836 0.239308525340209 0.1751789836900894 0.24392971978575875 C 0.17437461729055836 0.239308525340209 0.17150795448869766 0.20816466474362266 0.17179034135034318 0.21091582282378699" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17179034135034318 0.21091582282378699 C 0.171699634537567 0.20882819795146226 0.1705615172260038 0.18234377119877634 0.17070185959702902 0.18586432435589026 C 0.1705615172260038 0.18234377119877634 0.17005659733979134 0.16723625665363073 0.1701062328980404 0.16866918493841992" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.245122456365314 0.235580768030074 0.2389452910220962 0.2582449981683262 0.23984746965066872 0.25531608152015056 C 0.2389452910220962 0.2582449981683262 0.2329450519520436 0.2696271114436592 0.23477585706922943 0.26893364839999273 C 0.2329450519520436 0.2696271114436592 0.2150614667736401 0.2636376380441483 0.2178778082444386 0.2636376380441483 C 0.2150614667736401 0.2636376380441483 0.19914895430246188 0.2682401853563264 0.20097975941964774 0.26893364839999284 C 0.19914895430246188 0.2682401853563264 0.19500596820963584 0.252387164871975 0.1959081468382084 0.2553160815201506 C 0.19500596820963584 0.252387164871975 0.18967407162999128 0.23199252921369645 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ左">
<g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.024406860262124797 0.018812720751604325 C 0.02462431799215053 0.019481986827336033 0.022224793314533378 0.02418990012175727 0.022794105042857154 0.023776270939437814 C 0.022224793314533378 0.02418990012175727 0.017005807793915705 0.023362641757118358 0.01757511952223948 0.023776270939437814 C 0.017005807793915705 0.023362641757118358 0.01617982203299757 0.018143454675872618 0.015962364302971835 0.018812720751604325 C 0.01617982203299757 0.018143454675872618 0.020888320279144397 0.015745078030657306 0.020184612282548316 0.015745078030657306 C 0.020888320279144397 0.015745078030657306 0.02462431799215053 0.019481986827336033 0.024406860262124797 0.018812720751604325 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.0292679453377158 0.025458777973644302 C 0.0294160168841478 0.025914495334422145 0.02778213001484928 0.029120212610557656 0.02816978635617501 0.02883856379233355 C 0.02778213001484928 0.029120212610557656 0.024228412900481326 0.028556914974109445 0.024616069241807054 0.02883856379233355 C 0.024228412900481326 0.028556914974109445 0.023665981806698252 0.02500306061286646 0.023517910260266256 0.025458777973644302 C 0.023665981806698252 0.02500306061286646 0.026872097388778493 0.023369955462999453 0.02639292779899103 0.023369955462999453 C 0.026872097388778493 0.023369955462999453 0.0294160168841478 0.025914495334422145 0.0292679453377158 0.025458777973644302 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31819682553667905,0.1369948382874785) rotate(0) scale(1,1) translate(-0.16645487105255777,-0.16447013861067913)"><path d="M 0.16871641407915786 0.16391962988020373 C 0.16844273225693815 0.1658571233386404 0.1643170346600329 0.19200237855290692 0.16543223221252149 0.1871695513814435 C 0.1643170346600329 0.19200237855290692 0.1544925277190259 0.2248088896507913 0.1553340434492948 0.22191355593776455" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1553340434492948 0.22191355593776455 C 0.1551289563389916 0.2218760776172079 0.15246282390505014 0.22138885944997158 0.15287299812565652 0.22146381609108487 C 0.15246282390505014 0.22138885944997158 0.15020686569171504 0.22097659792384838 0.15041195280201825 0.22101407624440503" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15041195280201825 0.22101407624440503 C 0.15092157017943342 0.21849738137074887 0.15762383252224169 0.1863424586815822 0.15652736133100026 0.19081373776053093 C 0.15762383252224169 0.1863424586815822 0.1641564609107417 0.16540414309172763 0.16356960709691545 0.1673587272970202" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16356960709691545 0.1673587272970202 C 0.1638273719138144 0.16702105468160905 0.16709168548155662 0.16302006446068512 0.1666627848997031 0.16330665591208648 C 0.16709168548155662 0.16302006446068512 0.16888754984411242 0.16397071104421349 0.16871641407915786 0.16391962988020373" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3238231390734107,0.13784587694363365) rotate(0) scale(1,1) translate(-0.17045543472430674,-0.16823329692941572)"><path d="M 0.16836080806223808 0.17149040448169406 C 0.16844225546617653 0.17106634904669185 0.16966167417225403 0.1662748164617323 0.16933817690949943 0.16640173926166757 C 0.16966167417225403 0.1662748164617323 0.17248482507410928 0.17026446351753785 0.17224277521529313 0.1699673308824709" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17224277521529313 0.1699673308824709 C 0.17227943660345554 0.17130086788191304 0.1723844843758243 0.1908963658848116 0.1726827118732422 0.18596977487577643 C 0.1723844843758243 0.1908963658848116 0.16832915636069817 0.23267947700048597 0.16866404524627848 0.22908642299089294" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16866404524627848 0.22908642299089294 C 0.16843081901116302 0.22899529132958438 0.16539887795466204 0.227810579732573 0.16586533042489296 0.22799284305519013 C 0.16539887795466204 0.227810579732573 0.16283338936839195 0.22680813145817869 0.1630666156035074 0.22689926311948727" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1630666156035074 0.22689926311948727 C 0.16324523307134048 0.22403012455290972 0.16565120792239846 0.18785219543407383 0.16521002521750425 0.1924696003205566 C 0.16565120792239846 0.18785219543407383 0.16862337329929922 0.16974213816178885 0.16836080806223808 0.17149040448169406" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.16708083618886968,-0.161146472941817)"><path d="M 0.16975659882967203 0.16253078295732162 C 0.16958636607059432 0.16422690819468022 0.166944081943029 0.1878101137339654 0.16771380572073966 0.18288428580562477 C 0.166944081943029 0.1878101137339654 0.15992042247851151 0.22487042078839128 0.16051991349714445 0.22164071809740923" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16051991349714445 0.22164071809740923 C 0.16029641343280063 0.22160129674005302 0.15739091259633076 0.22108881909442227 0.15783791272501843 0.2211676618091347 C 0.15739091259633076 0.22108881909442227 0.15493241188854862 0.22065518416350396 0.15515591195289244 0.22069460552086018" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15515591195289244 0.22069460552086018 C 0.1554852774063292 0.21744363139266876 0.15985161930589808 0.1767700551126643 0.15910829739413362 0.18168291598256325 C 0.15985161930589808 0.1767700551126643 0.16448973135239364 0.1600783883403652 0.16407577489406594 0.16174027508207273" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16407577489406594 0.16174027508207273 C 0.16434323898542552 0.1615968148027071 0.16775874598501458 0.16008462738595602 0.16728534399038075 0.16001875172968527 C 0.16775874598501458 0.16008462738595602 0.1699625367329463 0.16274011889295797 0.16975659882967203 0.16253078295732162" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.024406860262124797 0.018812720751604325 C 0.02462431799215053 0.019481986827336033 0.022224793314533378 0.02418990012175727 0.022794105042857154 0.023776270939437814 C 0.022224793314533378 0.02418990012175727 0.017005807793915705 0.023362641757118358 0.01757511952223948 0.023776270939437814 C 0.017005807793915705 0.023362641757118358 0.01617982203299757 0.018143454675872618 0.015962364302971835 0.018812720751604325 C 0.01617982203299757 0.018143454675872618 0.020888320279144397 0.015745078030657306 0.020184612282548316 0.015745078030657306 C 0.020888320279144397 0.015745078030657306 0.02462431799215053 0.019481986827336033 0.024406860262124797 0.018812720751604325 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.0292679453377158 0.025458777973644302 C 0.0294160168841478 0.025914495334422145 0.02778213001484928 0.029120212610557656 0.02816978635617501 0.02883856379233355 C 0.02778213001484928 0.029120212610557656 0.024228412900481326 0.028556914974109445 0.024616069241807054 0.02883856379233355 C 0.024228412900481326 0.028556914974109445 0.023665981806698252 0.02500306061286646 0.023517910260266256 0.025458777973644302 C 0.023665981806698252 0.02500306061286646 0.026872097388778493 0.023369955462999453 0.02639292779899103 0.023369955462999453 C 0.026872097388778493 0.023369955462999453 0.0294160168841478 0.025914495334422145 0.0292679453377158 0.025458777973644302 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35649008012066286,0.13699483828747847) rotate(0) scale(1,1) translate(-0.16645487105255777,-0.16447013861067913)"><path d="M 0.16419332802595762 0.1639196298802037 C 0.16436446379091219 0.16386854871619394 0.16667585778726587 0.16359324736348785 0.16624695720541235 0.16330665591208648 C 0.16667585778726587 0.16359324736348785 0.16959789982509896 0.16769639991243135 0.1693401350082 0.1673587272970202" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1693401350082 0.1673587272970202 C 0.16992698882202628 0.16931331150231277 0.17747885196535668 0.19528501683947966 0.17638238077411525 0.19081373776053093 C 0.17747885196535668 0.19528501683947966 0.18300740668051235 0.2235307711180612 0.18249778930309718 0.22101407624440503" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18249778930309718 0.22101407624440503 C 0.182292702192794 0.22105155456496167 0.17962656975885258 0.22153877273219816 0.18003674397945896 0.22146381609108487 C 0.17962656975885258 0.22153877273219816 0.17737061154551748 0.22195103425832122 0.17757569865582068 0.22191355593776457" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17757569865582068 0.22191355593776457 C 0.1767341829255518 0.21901822222473782 0.16636231234010543 0.18233672420998012 0.16747750989259402 0.18716955138144353 C 0.16636231234010543 0.18233672420998012 0.16391964620373792 0.16198213642176704 0.16419332802595762 0.1639196298802037" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35086376658393126,0.1378458769436336) rotate(0) scale(1,1) translate(-0.17045543472430674,-0.16823329692941572)"><path d="M 0.17255006138637563 0.17149040448169403 C 0.17281262662343677 0.17323867080159924 0.17614202693600356 0.19708700520703934 0.17570084423110935 0.19246960032055657 C 0.17614202693600356 0.19708700520703934 0.17802287131293928 0.22976840168606488 0.17784425384510621 0.22689926311948733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17784425384510621 0.22689926311948733 C 0.17761102760999076 0.22699039478079588 0.17457908655348972 0.22817510637780725 0.17504553902372064 0.2279928430551901 C 0.17457908655348972 0.22817510637780725 0.17201359796721968 0.22917755465220158 0.17224682420233514 0.229086422990893" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17224682420233514 0.229086422990893 C 0.17191193531675483 0.22549336898129996 0.16792993007795357 0.18104318386674126 0.16822815757537143 0.18596977487577643 C 0.16792993007795357 0.18104318386674126 0.16870475562148302 0.16863379388302874 0.16866809423332058 0.16996733088247087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16866809423332058 0.16996733088247087 C 0.1689101440921367 0.16967019824740392 0.17189618980186872 0.1665286620616028 0.17157269253911414 0.16640173926166754 C 0.17189618980186872 0.1665286620616028 0.17263150879031408 0.17191445991669624 0.17255006138637563 0.17149040448169403" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.16708083618886968,-0.161146472941817)"><path d="M 0.16440507354806735 0.16253078295732162 C 0.16461101145134163 0.16232144702168527 0.16734973038199247 0.15995287607341452 0.16687632838735864 0.16001875172968527 C 0.16734973038199247 0.15995287607341452 0.17035336157503309 0.16188373536143838 0.1700858974836735 0.16174027508207275" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1700858974836735 0.16174027508207275 C 0.17049985394200118 0.16340216182378028 0.1757966968953702 0.1865957768524622 0.17505337498360574 0.18168291598256325 C 0.1757966968953702 0.1865957768524622 0.17933512587828376 0.2239455796490516 0.179005760424847 0.22069460552086018" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.179005760424847 0.22069460552086018 C 0.17878226036050318 0.2207340268782164 0.17587675952403334 0.22124650452384712 0.176323759652721 0.2211676618091347 C 0.17587675952403334 0.22124650452384712 0.1734182588162511 0.22168013945476545 0.17364175888059494 0.22164071809740923" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17364175888059494 0.22164071809740923 C 0.173042267861962 0.2184110154064272 0.16567814287928917 0.1779584578772842 0.16644786665699982 0.18288428580562482 C 0.16567814287928917 0.1779584578772842 0.16423484078898964 0.16083465771996303 0.16440507354806735 0.16253078295732162" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.245122456365314 0.235580768030074 0.2389452910220962 0.2582449981683262 0.23984746965066872 0.25531608152015056 C 0.2389452910220962 0.2582449981683262 0.2329450519520436 0.2696271114436592 0.23477585706922943 0.26893364839999273 C 0.2329450519520436 0.2696271114436592 0.2150614667736401 0.2636376380441483 0.2178778082444386 0.2636376380441483 C 0.2150614667736401 0.2636376380441483 0.19914895430246188 0.2682401853563264 0.20097975941964774 0.26893364839999284 C 0.19914895430246188 0.2682401853563264 0.19500596820963584 0.252387164871975 0.1959081468382084 0.2553160815201506 C 0.19500596820963584 0.252387164871975 0.18967407162999128 0.23199252921369645 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ左">
<g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.024406860262124797 0.018812720751604325 C 0.02462431799215053 0.019481986827336033 0.022224793314533378 0.02418990012175727 0.022794105042857154 0.023776270939437814 C 0.022224793314533378 0.02418990012175727 0.017005807793915705 0.023362641757118358 0.01757511952223948 0.023776270939437814 C 0.017005807793915705 0.023362641757118358 0.01617982203299757 0.018143454675872618 0.015962364302971835 0.018812720751604325 C 0.01617982203299757 0.018143454675872618 0.020888320279144397 0.015745078030657306 0.020184612282548316 0.015745078030657306 C 0.020888320279144397 0.015745078030657306 0.02462431799215053 0.019481986827336033 0.024406860262124797 0.018812720751604325 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.0292679453377158 0.025458777973644302 C 0.0294160168841478 0.025914495334422145 0.02778213001484928 0.029120212610557656 0.02816978635617501 0.02883856379233355 C 0.02778213001484928 0.029120212610557656 0.024228412900481326 0.028556914974109445 0.024616069241807054 0.02883856379233355 C 0.024228412900481326 0.028556914974109445 0.023665981806698252 0.02500306061286646 0.023517910260266256 0.025458777973644302 C 0.023665981806698252 0.02500306061286646 0.026872097388778493 0.023369955462999453 0.02639292779899103 0.023369955462999453 C 0.026872097388778493 0.023369955462999453 0.0294160168841478 0.025914495334422145 0.0292679453377158 0.025458777973644302 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3169835757486343,0.13687643711012823) rotate(0) scale(1,1) translate(-0.17045543472430674,-0.16823329692941572)"><path d="M 0.16821438599528737 0.1708441634776029 C 0.16852413896038887 0.17047996533896334 0.17228635697477346 0.1664057470628732 0.17193142157650526 0.16647378581392824 C 0.17228635697477346 0.1664057470628732 0.17251879320767252 0.1703238578525268 0.17247361077450582 0.17002769846494228" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17247361077450582 0.17002769846494228 C 0.1724954855962282 0.17082634050666895 0.17269279594270268 0.18132007536324518 0.1727361086351744 0.17961140296566241 C 0.17269279594270268 0.18132007536324518 0.17188867095065075 0.19144179759179172 0.17195385846484487 0.19053176723593562" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17195385846484487 0.19053176723593562 C 0.17143166480824235 0.19059722823344433 0.16554818956514808 0.19195577109733022 0.16568753458561444 0.1913172992060399 C 0.16554818956514808 0.19195577109733022 0.1706645668553847 0.1987664408252012 0.17028171821924853 0.19819342993141956" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17028171821924853 0.19819342993141956 C 0.169759524562646 0.19825889092892823 0.16387604931955171 0.19961743379281413 0.16401539434001808 0.1989789619015238 C 0.16387604931955171 0.19961743379281413 0.16899242660978825 0.20642810352068497 0.16860957797365209 0.20585509262690335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16860957797365209 0.20585509262690335 C 0.16808738431704956 0.20592055362441203 0.1622039090739553 0.2072790964882979 0.16234325409442166 0.20664062459700758 C 0.1622039090739553 0.2072790964882979 0.167320286364192 0.2140897662161689 0.1669374377280558 0.21351675532238726" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1669374377280558 0.21351675532238726 C 0.16641524407145328 0.21358221631989596 0.160531768828359 0.2149407591837819 0.16067111384882538 0.21430228729249157 C 0.160531768828359 0.2149407591837819 0.1656481461185956 0.2217514289116528 0.16526529748245944 0.22117841801787116" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16526529748245944 0.22117841801787116 C 0.1647431038258569 0.22124387901537984 0.15885962858276265 0.2226024218792657 0.158998973603229 0.2219639499879754 C 0.15885962858276265 0.2226024218792657 0.16397600587299935 0.22941309160713666 0.16359315723686316 0.22884008071335502" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16359315723686316 0.22884008071335502 C 0.16314555316614587 0.22824822718204554 0.15823174253955974 0.22106168117129535 0.15822190838825562 0.22173783833764135 C 0.15823174253955974 0.22106168117129535 0.16416860527453422 0.22064189108216647 0.1637111670525128 0.220726194717203" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1637111670525128 0.220726194717203 C 0.1632635629817955 0.22013434118589353 0.15834975235520948 0.21294779517514334 0.15833991820390536 0.21362395234148934 C 0.15834975235520948 0.21294779517514334 0.16428661509018377 0.21252800508601447 0.16382917686816237 0.212612308721051" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16382917686816237 0.212612308721051 C 0.16338157279744508 0.21202045518974152 0.15846776217085892 0.2048339091789913 0.1584579280195548 0.2055100663453373 C 0.15846776217085892 0.2048339091789913 0.16440462490583324 0.2044141190898624 0.16394718668381184 0.20449842272489893" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16394718668381184 0.20449842272489893 C 0.16349958261309455 0.20390656919358946 0.15858577198650844 0.19672002318283927 0.15857593783520432 0.19739618034918527 C 0.15858577198650844 0.19672002318283927 0.16452263472148274 0.19630023309371042 0.16406519649946133 0.19638453672874695" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16406519649946133 0.19638453672874695 C 0.1637605501621236 0.19579268319743748 0.1602572464930765 0.18850124486239653 0.1604094404514086 0.18928229435303323 C 0.1602572464930765 0.18850124486239653 0.16239132137848178 0.18682274688177924 0.16223886899947615 0.18701194284110648" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16223886899947615 0.18701194284110648 C 0.16242420163056256 0.1863218785568188 0.16496082032216422 0.17738385648269572 0.16446286057251328 0.17873117142965436 C 0.16496082032216422 0.17738385648269572 0.16852701311385188 0.17018691281493195 0.16821438599528737 0.1708441634776029" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.323690857765514,0.13819139946669456) rotate(0) scale(1,1) translate(-0.16645487105255777,-0.16447013861067913)"><path d="M 0.16392866270691783 0.1634351020117524 C 0.16405936947977043 0.16330958419104474 0.16590762444317297 0.1621758169535819 0.16549714398114904 0.16192888816326056 C 0.16590762444317297 0.1621758169535819 0.16913420194037637 0.1667706941066377 0.16885442825120503 0.1663982474956087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16885442825120503 0.1663982474956087 C 0.16907643938968267 0.16730141066257473 0.17185399498566994 0.17911198623202262 0.17151856191293666 0.17723620549920105 C 0.17185399498566994 0.17911198623202262 0.17299304705826 0.18988023385532327 0.17287962512400434 0.1889076162894677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17287962512400434 0.1889076162894677 C 0.17228996824295545 0.1893192557760939 0.16576243856568884 0.19444289077962648 0.16580374255141758 0.19384729012898214 C 0.16576243856568884 0.19444289077962648 0.1729323301905797 0.19623878526121805 0.17238397729525953 0.1960548240971999" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17238397729525953 0.1960548240971999 C 0.1717943204142106 0.1964664635838261 0.16526679073694384 0.20159009858735857 0.16530809472267258 0.20099449793671423 C 0.16526679073694384 0.20159009858735857 0.17243668236183474 0.20338599306895028 0.17188832946651458 0.2032020319049321" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17188832946651458 0.2032020319049321 C 0.1712986725854657 0.2036136713915583 0.16465259445071354 0.20877164272509138 0.16481244689392777 0.2081417057444465 C 0.16465259445071354 0.20877164272509138 0.17039990458577864 0.21097957316668944 0.16997010014794395 0.21076127567267075" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16997010014794395 0.21076127567267075 C 0.16933317699360956 0.21110006565913303 0.16221127724496023 0.21541302864574352 0.1623270222959314 0.21482675551021826 C 0.16221127724496023 0.21541302864574352 0.16910233763965296 0.21804403644803694 0.16858115953628977 0.21779655329897396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16858115953628977 0.21779655329897396 C 0.1679442363819554 0.21813534328543624 0.16082233663330622 0.2224483062720466 0.1609380816842774 0.22186203313652134 C 0.16082233663330622 0.2224483062720466 0.16771339702799884 0.22507931407434004 0.16719221892463565 0.22483183092527706" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16719221892463565 0.22483183092527706 C 0.16660188044663782 0.22457560255001466 0.16008558149036345 0.22115332683420402 0.16010815718866156 0.22175709042212813 C 0.16008558149036345 0.22115332683420402 0.1674890733247582 0.21723913265752592 0.16692131054505846 0.21758666787018763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16692131054505846 0.21758666787018763 C 0.16633097206706063 0.21733043949492523 0.15981467311078637 0.21390816377911476 0.15983724880908445 0.21451192736703886 C 0.15981467311078637 0.21390816377911476 0.16721816494518107 0.20999396960243666 0.16665040216548133 0.21034150481509836" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16665040216548133 0.21034150481509836 C 0.1661485272006797 0.21015571092407698 0.16064594209900812 0.20751404928483394 0.16062790258786194 0.2081119781228416 C 0.16064594209900812 0.20751404928483394 0.16738679077518345 0.20275422381202005 0.16686687629923563 0.20316635875900632" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16686687629923563 0.20316635875900632 C 0.16624878099881438 0.20298190213462808 0.15935155186970706 0.20035628769510297 0.15944973269418053 0.2009528792664675 C 0.15935155186970706 0.20035628769510297 0.16620862088150185 0.19559512495564577 0.16568870640555405 0.19600725990263204" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16568870640555405 0.19600725990263204 C 0.1650706111051328 0.1958228032782538 0.15817338197602546 0.1931971888387287 0.15827156280049892 0.1937937804100932 C 0.15817338197602546 0.1931971888387287 0.16503045098782038 0.1884360260992716 0.16451053651187258 0.18884816104625787" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16451053651187258 0.18884816104625787 C 0.16439749860452735 0.18795750775728243 0.16310559213998335 0.17604256665901036 0.16315408162372957 0.17816032157855247 C 0.16310559213998335 0.17604256665901036 0.16399321113051685 0.16220800038118574 0.16392866270691783 0.1634351020117524" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.16708083618886968,-0.161146472941817)"><path d="M 0.1643730869742617 0.1608157756525437 C 0.16461150622529278 0.1607244927879842 0.16762567128559586 0.15978926337735747 0.16723411798663454 0.15972038127782956 C 0.16762567128559586 0.15978926337735747 0.16922486060972786 0.1618025258109661 0.16907172656179761 0.16164236084687866" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16907172656179761 0.16164236084687866 C 0.1690484866318135 0.1630688447690602 0.1684793177153279 0.18103587174227798 0.16879284740198822 0.1787601679130572 C 0.1684793177153279 0.18103587174227798 0.1650190805651976 0.1898000267045672 0.1653093703218738 0.18895080679752796" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1653093703218738 0.18895080679752796 C 0.16575545669402483 0.18965166659086066 0.17047127144243343 0.19804024490380087 0.1706624067876863 0.19736112431752043 C 0.17047127144243343 0.19804024490380087 0.1623785244614357 0.19707851462584114 0.16301574617883957 0.1971002538328934" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16301574617883957 0.1971002538328934 C 0.1634162001832421 0.19779567284368635 0.16760251500428625 0.20612039430545212 0.16782119423166983 0.20544528196240874 C 0.16760251500428625 0.20612039430545212 0.15977246221845035 0.20518129528166437 0.16039159545023646 0.20520160194941395" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16039159545023646 0.20520160194941395 C 0.16082898086533193 0.20587571636655258 0.1655661823359968 0.21400628154674772 0.16564022043138213 0.21329097495507754 C 0.1655661823359968 0.21400628154674772 0.15899171479513155 0.2138264732239876 0.15950313830561236 0.21378528104945604" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15950313830561236 0.21378528104945604 C 0.15994052372070783 0.21445939546659468 0.16455162862099024 0.22255944341927208 0.16475176328675817 0.2218746540551196 C 0.16455162862099024 0.22255944341927208 0.15646400223553364 0.2220134283662995 0.15710152231639707 0.22200275341928566" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15710152231639707 0.22200275341928566 C 0.15740880417694034 0.22268088732397764 0.16058876997714822 0.23082514963974188 0.16078890464291615 0.2301403602755894 C 0.16058876997714822 0.23082514963974188 0.15419248980087052 0.23022688124857585 0.15469990632718172 0.23022022578911536" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15469990632718172 0.23022022578911536 C 0.15526275500196648 0.23019514986895145 0.16150488227820964 0.2292057234366961 0.161454090424599 0.22991931474714866 C 0.16150488227820964 0.2292057234366961 0.15479735174933523 0.2209686146733957 0.15530940857050937 0.2216571300636844" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15530940857050937 0.2216571300636844 C 0.15587225724529416 0.22163205414352052 0.1621143845215374 0.22064262771126528 0.16206359266792675 0.22135621902171784 C 0.1621143845215374 0.22064262771126528 0.15540685399266305 0.2124055189479648 0.15591891081383719 0.2130940343382535" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15591891081383719 0.2130940343382535 C 0.15635566291823935 0.21303844119057191 0.16108463134989126 0.2116828080281042 0.16115993606666323 0.2124269165660745 C 0.16108463134989126 0.2116828080281042 0.1545031973913995 0.20347621649232148 0.15501525421257364 0.20416473188261017" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15501525421257364 0.20416473188261017 C 0.15556586545201237 0.20414421150531403 0.16169895340247184 0.20318437184068938 0.16162258908583838 0.20391848735505647 C 0.16169895340247184 0.20318437184068938 0.1554573790893698 0.19464175057313426 0.15593162601217508 0.1953553457102052" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15593162601217508 0.1953553457102052 C 0.15649505481117623 0.19535890879097945 0.16283377049800898 0.19469424880680952 0.16269277160018883 0.1953981026794961 C 0.16283377049800898 0.19469424880680952 0.1572011828848358 0.1862016822845057 0.1576236127860168 0.1869090992379665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1576236127860168 0.1869090992379665 C 0.15772590635352723 0.18603481253110016 0.1594135917784957 0.17424321512345178 0.15885113559614197 0.17641765875557036 C 0.1594135917784957 0.17424321512345178 0.164833249589105 0.15951561872729147 0.1643730869742617 0.1608157756525437" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.024406860262124797 0.018812720751604325 C 0.02462431799215053 0.019481986827336033 0.022224793314533378 0.02418990012175727 0.022794105042857154 0.023776270939437814 C 0.022224793314533378 0.02418990012175727 0.017005807793915705 0.023362641757118358 0.01757511952223948 0.023776270939437814 C 0.017005807793915705 0.023362641757118358 0.01617982203299757 0.018143454675872618 0.015962364302971835 0.018812720751604325 C 0.01617982203299757 0.018143454675872618 0.020888320279144397 0.015745078030657306 0.020184612282548316 0.015745078030657306 C 0.020888320279144397 0.015745078030657306 0.02462431799215053 0.019481986827336033 0.024406860262124797 0.018812720751604325 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.0292679453377158 0.025458777973644302 C 0.0294160168841478 0.025914495334422145 0.02778213001484928 0.029120212610557656 0.02816978635617501 0.02883856379233355 C 0.02778213001484928 0.029120212610557656 0.024228412900481326 0.028556914974109445 0.024616069241807054 0.02883856379233355 C 0.024228412900481326 0.028556914974109445 0.023665981806698252 0.02500306061286646 0.023517910260266256 0.025458777973644302 C 0.023665981806698252 0.02500306061286646 0.026872097388778493 0.023369955462999453 0.02639292779899103 0.023369955462999453 C 0.026872097388778493 0.023369955462999453 0.0294160168841478 0.025914495334422145 0.0292679453377158 0.025458777973644302 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3577033299087077,0.13687643711012823) rotate(0) scale(1,1) translate(-0.17045543472430674,-0.16823329692941572)"><path d="M 0.17269648345332617 0.17084416347760287 C 0.17300911057189067 0.1715014141402738 0.1769459686257512 0.18007848637661295 0.17644800887610027 0.1787311714296543 C 0.1769459686257512 0.18007848637661295 0.17885733308022383 0.1877020071253941 0.17867200044913742 0.18701194284110642" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17867200044913742 0.18701194284110642 C 0.17882445282814305 0.18720113880043365 0.18034923503887287 0.1900633438436699 0.18050142899720498 0.1892822943530332 C 0.18034923503887287 0.1900633438436699 0.17654102661181453 0.19697639026005642 0.17684567294915227 0.19638453672874695" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17684567294915227 0.19638453672874695 C 0.17730311117117367 0.19646884036378348 0.18234476576471337 0.19807233751553127 0.18233493161340925 0.19739618034918527 C 0.18234476576471337 0.19807233751553127 0.17651607869408445 0.2050902762562084 0.17696368276480173 0.20449842272489893" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17696368276480173 0.20449842272489893 C 0.17742112098682314 0.20458272635993546 0.18246277558036286 0.20618622351168325 0.18245294142905874 0.20551006634533725 C 0.18246277558036286 0.20618622351168325 0.17663408850973397 0.21320416225236044 0.17708169258045126 0.21261230872105097" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17708169258045126 0.21261230872105097 C 0.17753913080247266 0.2126966123560875 0.18258078539601227 0.21430010950783535 0.18257095124470815 0.21362395234148934 C 0.18258078539601227 0.21430010950783535 0.17675209832538352 0.22131804824851245 0.1771997023961008 0.22072619471720298" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1771997023961008 0.22072619471720298 C 0.17765714061812224 0.2208104983522395 0.18269879521166202 0.2224139955039873 0.1826889610603579 0.2217378383376413 C 0.18269879521166202 0.2224139955039873 0.17687010814103307 0.22943193424466446 0.17731771221175036 0.228840080713355" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17731771221175036 0.228840080713355 C 0.17770056084788655 0.22826706981957334 0.1817725508249182 0.221325478096685 0.18191189584538456 0.22196394998797533 C 0.1817725508249182 0.221325478096685 0.1751233783095515 0.22111295702036243 0.17564557196615405 0.2211784180178711" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17564557196615405 0.2211784180178711 C 0.17602842060229024 0.2206054071240895 0.18010041057932186 0.21366381540120122 0.18023975559978822 0.21430228729249154 C 0.18010041057932186 0.21366381540120122 0.17345123806395518 0.21345129432487858 0.17397343172055774 0.21351675532238726" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17397343172055774 0.21351675532238726 C 0.17435628035669393 0.2129437444286056 0.17842827033372555 0.2060021527057173 0.1785676153541919 0.20664062459700763 C 0.17842827033372555 0.2060021527057173 0.17177909781835898 0.2057896316293946 0.1723012914749615 0.2058550926269033" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1723012914749615 0.2058550926269033 C 0.17268414011109767 0.20528208173312168 0.1767561300881291 0.19834049001023343 0.17689547510859546 0.19897896190152375 C 0.1767561300881291 0.19834049001023343 0.1701069575727625 0.19812796893391085 0.17062915122936503 0.19819342993141953" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17062915122936503 0.19819342993141953 C 0.1710119998655012 0.19762041903763788 0.1750839898425328 0.19067882731474953 0.17522333486299915 0.19131729920603985 C 0.1750839898425328 0.19067882731474953 0.1684348173271662 0.19046630623842692 0.16895701098376872 0.1905317672359356" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16895701098376872 0.1905317672359356 C 0.1688918234695746 0.1896217368800795 0.16813144812096742 0.1779027305680796 0.16817476081343916 0.17961140296566236 C 0.16813144812096742 0.1779027305680796 0.16845913349583014 0.16922905642321565 0.16843725867410775 0.1700276984649423" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16843725867410775 0.1700276984649423 C 0.16848244110727445 0.1697315390773578 0.16933438327037653 0.16654182456498326 0.16897944787210833 0.16647378581392822 C 0.16933438327037653 0.16654182456498326 0.17300623641842766 0.17120836161624242 0.17269648345332617 0.17084416347760287" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.350996047891828,0.1381913994666945) rotate(0) scale(1,1) translate(-0.16645487105255777,-0.16447013861067913)"><path d="M 0.16898107939819765 0.16343510201175243 C 0.16904562782179666 0.1646622036423191 0.16970717099763968 0.1802780764980946 0.1697556604813859 0.17816032157855247 C 0.16970717099763968 0.1802780764980946 0.16828616768589766 0.1897388143352334 0.1683992055932429 0.18884816104625796" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1683992055932429 0.18884816104625796 C 0.1689191200691907 0.18926029599324423 0.17453999848014307 0.19439037198145778 0.17463817930461653 0.19379378041009326 C 0.17453999848014307 0.19439037198145778 0.16660294039914023 0.19619171652701034 0.16722103569956148 0.1960072599026321" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16722103569956148 0.1960072599026321 C 0.16774095017550927 0.19641939484961837 0.1733618285864615 0.20154947083783198 0.17346000941093498 0.20095287926646746 C 0.1733618285864615 0.20154947083783198 0.16542477050545862 0.20335081538338456 0.16604286580587987 0.20316635875900632" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16604286580587987 0.20316635875900632 C 0.1665627802818277 0.2035784937059926 0.17229987902839974 0.2087099069608493 0.17228183951725357 0.20811197812284163 C 0.17229987902839974 0.2087099069608493 0.16575746497483254 0.2105272987061198 0.16625933993963415 0.21034150481509842" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16625933993963415 0.21034150481509842 C 0.16682710271933388 0.21068904002776012 0.17304991759773286 0.21511569095496302 0.17307249329603094 0.21451192736703892 C 0.17304991759773286 0.21511569095496302 0.1653980930820592 0.21784289624545003 0.16598843156005702 0.21758666787018763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16598843156005702 0.21758666787018763 C 0.16655619433975677 0.21793420308284933 0.17277900921815584 0.2223608540100523 0.17280158491645395 0.22175709042212818 C 0.17277900921815584 0.2223608540100523 0.165127184702482 0.22508805930053946 0.16571752318047983 0.22483183092527706" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16571752318047983 0.22483183092527706 C 0.16623870128384302 0.22458434777621408 0.1718559153698669 0.22127576000099608 0.17197166042083809 0.22186203313652134 C 0.1718559153698669 0.22127576000099608 0.16369165941449135 0.21745776331251168 0.1643285825688257 0.21779655329897396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1643285825688257 0.21779655329897396 C 0.1648497606721889 0.21754907014991098 0.1704669747582129 0.214240482374693 0.17058271980918407 0.21482675551021826 C 0.1704669747582129 0.214240482374693 0.16230271880283723 0.21042248568620855 0.1629396419571716 0.21076127567267083" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1629396419571716 0.21076127567267083 C 0.16336944639500628 0.21054297817865214 0.16793744276797348 0.20751176876380162 0.16809729521118771 0.20814170574444651 C 0.16793744276797348 0.20751176876380162 0.16043175575755203 0.2027903924183059 0.16102141263860092 0.2032020319049321" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16102141263860092 0.2032020319049321 C 0.16156976553392108 0.20301807074091396 0.16756034339671416 0.2003988972860699 0.1676016473824429 0.20099449793671426 C 0.16756034339671416 0.2003988972860699 0.15993610792880708 0.1956431846105737 0.160525764809856 0.1960548240971999" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.160525764809856 0.1960548240971999 C 0.16107411770517616 0.19587086293318176 0.16706469556796918 0.19325168947833785 0.16710599955369793 0.1938472901289822 C 0.16706469556796918 0.19325168947833785 0.15944046010006227 0.1884959768028415 0.16003011698111116 0.1889076162894677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16003011698111116 0.1889076162894677 C 0.1601435389153668 0.18793499872361216 0.16172661326491208 0.17536042476637953 0.1613911801921788 0.1772362054992011 C 0.16172661326491208 0.17536042476637953 0.16427732499238817 0.16549508432864266 0.16405531385391053 0.1663982474956087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16405531385391053 0.1663982474956087 C 0.16433508754308188 0.1660258008845797 0.16782307858599047 0.16168195937293928 0.16741259812396653 0.16192888816326062 C 0.16782307858599047 0.16168195937293928 0.16911178617105024 0.1635606198324601 0.16898107939819765 0.16343510201175243" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.16708083618886968,-0.161146472941817)"><path d="M 0.16978858540347766 0.1608157756525437 C 0.170248748018321 0.16211593257779594 0.17587299296395126 0.1785921023876889 0.1753105367815975 0.17641765875557036 C 0.17587299296395126 0.1785921023876889 0.17664035315923304 0.18778338594483282 0.1765380595917226 0.18690909923796648" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1765380595917226 0.18690909923796648 C 0.17611562969054162 0.18761651619142727 0.17160989967537077 0.19610195655218265 0.17146890077755061 0.1953981026794961 C 0.17160989967537077 0.19610195655218265 0.17879347516456554 0.19535178262943093 0.1782300463655644 0.19535534571020516" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1782300463655644 0.19535534571020516 C 0.1777557994427591 0.1960689408472761 0.17261544760853453 0.20465260286942358 0.17253908329190107 0.2039184873550565 C 0.17261544760853453 0.20465260286942358 0.17969702940460452 0.2041852522599063 0.1791464181651658 0.20416473188261017" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1791464181651658 0.20416473188261017 C 0.17863436134399166 0.20485324727289886 0.17292643159430418 0.21317102510404465 0.17300173631107615 0.21242691656607438 C 0.17292643159430418 0.21317102510404465 0.17867951366830442 0.21314962748593508 0.17824276156390226 0.2130940343382535" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17824276156390226 0.2130940343382535 C 0.17773070474272812 0.2137825497285422 0.1721488715634233 0.2220698103321704 0.17209807970981264 0.22135621902171784 C 0.1721488715634233 0.2220698103321704 0.17941511248201483 0.22168220598384827 0.17885226380723004 0.2216571300636844" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17885226380723004 0.2216571300636844 C 0.1783402069860559 0.2223456454539731 0.17275837380675105 0.23063290605760123 0.1727075819531404 0.22991931474714866 C 0.17275837380675105 0.23063290605760123 0.1800246147253425 0.23024530170927918 0.17946176605055772 0.2302202257891153" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17946176605055772 0.2302202257891153 C 0.17882424596969432 0.23020955084210146 0.17161139041442885 0.2294073370607967 0.1718115250801968 0.23009212642494917 C 0.17161139041442885 0.2294073370607967 0.17749753547643785 0.221328639002147 0.17706015006134238 0.22200275341928563" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17706015006134238 0.22200275341928563 C 0.17642262998047895 0.2219920784722718 0.16920977442521334 0.22118986469096713 0.16940990909098128 0.2218746540551196 C 0.16920977442521334 0.22118986469096713 0.1750959194872226 0.2131111666323174 0.17465853407212711 0.21378528104945604" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17465853407212711 0.21378528104945604 C 0.1741471105616463 0.2137440888749245 0.168447413850972 0.21257566836340738 0.16852145194635734 0.21329097495507757 C 0.168447413850972 0.21257566836340738 0.17420746234259846 0.2045274875322753 0.173770076927503 0.20520160194941392" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.173770076927503 0.20520160194941392 C 0.17315094369571687 0.2052219086171635 0.166121798918686 0.20477016961936537 0.1663404781460696 0.20544528196240874 C 0.166121798918686 0.20477016961936537 0.17154638020330237 0.19640483482210044 0.17114592619889984 0.1971002538328934" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17114592619889984 0.1971002538328934 C 0.17050870448149597 0.19712199303994565 0.16330813024480034 0.19668200373123995 0.16349926559005318 0.1973611243175204 C 0.16330813024480034 0.19668200373123995 0.1692983884280167 0.18824994700419528 0.16885230205586566 0.188950806797528" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16885230205586566 0.188950806797528 C 0.16856201229918946 0.18810158689048875 0.16505529528909094 0.17648446408383645 0.16536882497575126 0.1787601679130572 C 0.16505529528909094 0.17648446408383645 0.1650667058859577 0.16021587692469708 0.16508994581594183 0.16164236084687864" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16508994581594183 0.16164236084687864 C 0.1652430798638721 0.16148219588279122 0.16731910769006625 0.15965149917830165 0.16692755439110493 0.15972038127782956 C 0.16731910769006625 0.15965149917830165 0.1700270046545087 0.1609070585171032 0.16978858540347766 0.1608157756525437" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24082127081227234 0.2500879204430701 0.24188766313423996 0.2475101238438775 C 0.24082127081227234 0.2500879204430701 0.2308044715076716 0.2669420916363424 0.23280529274848838 0.2647202078121963 C 0.2308044715076716 0.2669420916363424 0.21538989416043028 0.27417272973363077 0.2178778082444386 0.27417272973363077 C 0.21538989416043028 0.27417272973363077 0.200949502499572 0.2624983239880503 0.2029503237403888 0.2647202078121964 C 0.200949502499572 0.2624983239880503 0.19280156103266954 0.24493232724468494 0.19386795335463716 0.24751012384387755 C 0.19280156103266954 0.24493232724468494 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ">
<g id="編節1">
<g transform="translate(0.33734345282867095,0.13820072278907372) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14087709006993027 0.11460177227368223 C 0.14104140133107057 0.11479511158224094 0.14309122142877786 0.11734168655393362 0.1428488252036139 0.11692184397638673 C 0.14309122142877786 0.11734168655393362 0.14386392973592155 0.11986638647323312 0.14378584477189787 0.11963988320424494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14378584477189787 0.11963988320424494 C 0.14369117782765947 0.11987301926531903 0.14238320559335665 0.12285735851468087 0.142649841441037 0.12243751593713396 C 0.14238320559335665 0.12285735851468087 0.14041424569629155 0.12486470065128054 0.1405862145997335 0.12467799413480772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405862145997335 0.12467799413480772 C 0.14055698715698203 0.1247870724361315 0.14012640698539208 0.12617586291058924 0.14023548528671587 0.12598693375069314 C 0.14012640698539208 0.12617586291058924 0.13908834582395194 0.12705422235488473 0.13927727498384804 0.12694514405356094 C 0.13908834582395194 0.12705422235488473 0.1377501787653151 0.12729587336657855 0.13796833536796266 0.12729587336657855 C 0.1377501787653151 0.12729587336657855 0.13647046659218112 0.12683606575223716 0.13665939575207722 0.12694514405356094 C 0.13647046659218112 0.12683606575223716 0.1355921071478856 0.12579800459079704 0.1357011854492094 0.12598693375069314 C 0.1355921071478856 0.12579800459079704 0.13532122869344038 0.12456891583348394 0.13535045613619184 0.12467799413480772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13535045613619184 0.12467799413480772 C 0.1351784872327499 0.1244912876183349 0.13302019344720797 0.12201767335958708 0.13328682929488833 0.12243751593713396 C 0.13302019344720797 0.12201767335958708 0.1320561590197891 0.11940674714317089 0.1321508259640275 0.11963988320424497" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1321508259640275 0.11963988320424497 C 0.13222891092805117 0.11941337993525679 0.13333024175747538 0.11650200139883984 0.1330878455323114 0.11692184397638673 C 0.13333024175747538 0.11650200139883984 0.13522389192713535 0.11440843296512353 0.13505958066599505 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14323883371963647) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1069461228785802 0.1092196716584617 C 0.10681405683110795 0.10885254586082962 0.10570582857755001 0.1062376413103488 0.1061537265937467 0.10701691687266922 C 0.10570582857755001 0.1062376413103488 0.10431353459171952 0.10375326162204923 0.10425873478140005 0.10454401828453919 C 0.10431353459171952 0.10375326162204923 0.10698173158483083 0.10137375409864323 0.10648252545566354 0.10227237689772953 C 0.10698173158483083 0.10137375409864323 0.10725397155640377 0.09915228149002142 0.10725397155640377 0.09915228149002142 C 0.10725397155640377 0.09915228149002142 0.10598331932649625 0.10317099969681583 0.10648252545566354 0.10227237689772953 C 0.10598331932649625 0.10317099969681583 0.10350359929045722 0.10442715361737563 0.10425873478140005 0.10454401828453919 C 0.10350359929045722 0.10442715361737563 0.10148151069275715 0.10067107770871982 0.10195171251000659 0.10157118889474819 C 0.10148151069275715 0.10067107770871982 0.10135182577255288 0.09873871154730576 0.1014375238779034 0.09914335116836896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.33734345282867095,0.1482769446501992) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1405862145997335 0.11460177227368223 C 0.14073409473475978 0.11477577765138507 0.14257893282269637 0.11706769512590848 0.1423607762200488 0.11668983680611628 C 0.14257893282269637 0.11706769512590848 0.1432743702991256 0.11933992505327808 0.14320409383150431 0.1191360721111887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14320409383150431 0.1191360721111887 C 0.14311889358168975 0.11934589456615538 0.14194171857081725 0.12203179989058098 0.14218169083372958 0.12165394157078878 C 0.14194171857081725 0.12203179989058098 0.14016965466345865 0.12383840781352068 0.14032442667655642 0.12367037194869515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14032442667655642 0.12367037194869515 C 0.14029812197808011 0.12376854241988655 0.1399105998236492 0.12501845384689853 0.1400087702948406 0.12484841760299202 C 0.1399105998236492 0.12501845384689853 0.13897634477835305 0.12580897734676447 0.13914638102225954 0.12571080687557307 C 0.13897634477835305 0.12580897734676447 0.13777199442557986 0.1260264632572889 0.13796833536796266 0.1260264632572889 C 0.13777199442557986 0.1260264632572889 0.1366202534697593 0.12561263640438167 0.1367902897136658 0.12571080687557307 C 0.1366202534697593 0.12561263640438167 0.13582972996989334 0.12467838135908553 0.13592790044108474 0.12484841760299202 C 0.13582972996989334 0.12467838135908553 0.1355859393608926 0.12357220147750375 0.13561224405936892 0.12367037194869515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13561224405936892 0.12367037194869515 C 0.13545747204627115 0.12350233608386962 0.13351500763928342 0.12127608325099658 0.13375497990219576 0.12165394157078878 C 0.13351500763928342 0.12127608325099658 0.13264737665460644 0.11892624965622203 0.132732576904421 0.1191360721111887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.132732576904421 0.1191360721111887 C 0.13280285337204228 0.11893221916909934 0.1337940511185241 0.11631197848632409 0.13357589451587654 0.11668983680611629 C 0.1337940511185241 0.11631197848632409 0.13549833627121813 0.1144277668959794 0.13535045613619184 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.15281124448770567) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10668523592828776 0.10871644452379725 C 0.10656637648556273 0.10838603130592839 0.10556897105736057 0.10603261721049564 0.1059720792719376 0.10673396521658403 C 0.10556897105736057 0.10603261721049564 0.10431590647011313 0.10379667549102603 0.10426658664082561 0.10450835648726699 C 0.10431590647011313 0.10379667549102603 0.10671728376391332 0.10165511871996066 0.10626799824766275 0.10246387923913833 C 0.10671728376391332 0.10165511871996066 0.10696229973832898 0.09965579337220103 0.10696229973832898 0.09965579337220103 C 0.10696229973832898 0.09965579337220103 0.10581871273141219 0.10327263975831599 0.10626799824766275 0.10246387923913833 C 0.10581871273141219 0.10327263975831599 0.10358696469897707 0.10440317828681978 0.10426658664082561 0.10450835648726699 C 0.10358696469897707 0.10440317828681978 0.10176708496104706 0.10102270996902957 0.10219026659657154 0.1018328100364551 C 0.10176708496104706 0.10102270996902957 0.10165036853286316 0.09928358042375693 0.10172749682767865 0.09964775608271381" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.33734345282867095,0.1573455443252121) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14032442667655642 0.11460177227368223 C 0.14045751879808008 0.11475837711361479 0.14211787307722298 0.11682110284068586 0.14192153213484018 0.11648103035287288 C 0.14211787307722298 0.11682110284068586 0.14274376680600934 0.11886610977531849 0.14268051798515016 0.11868264212743805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14268051798515016 0.11868264212743805 C 0.14260383776031704 0.11887148233690806 0.14154438025053176 0.12128879712889112 0.14176035528715286 0.12094872464107814 C 0.14154438025053176 0.12128879712889112 0.1399495227339091 0.12291474425953686 0.14008881754569708 0.12276351198119388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14008881754569708 0.12276351198119388 C 0.14006514331706837 0.12285186540526614 0.13971637337808054 0.1239767856895769 0.1398047268021528 0.12382375307006106 C 0.13971637337808054 0.1239767856895769 0.138875543837314 0.12468825683945627 0.13902857645682987 0.124599903415384 C 0.138875543837314 0.12468825683945627 0.13779162851981813 0.12488399415892827 0.13796833536796266 0.12488399415892827 C 0.13779162851981813 0.12488399415892827 0.13675506165957962 0.12451154999131174 0.13690809427909548 0.124599903415384 C 0.13675506165957962 0.12451154999131174 0.13604359050970033 0.12367072045054522 0.1361319439337726 0.12382375307006106 C 0.13604359050970033 0.12367072045054522 0.13582417896159957 0.12267515855712162 0.13584785319022827 0.12276351198119388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13584785319022827 0.12276351198119388 C 0.13570855837844029 0.12261227970285091 0.13396034041215135 0.12060865215326516 0.13417631544877245 0.12094872464107814 C 0.13396034041215135 0.12060865215326516 0.1331794725259421 0.11849380191796804 0.13325615275077518 0.11868264212743805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13325615275077518 0.11868264212743805 C 0.13331940157163436 0.11849917447955761 0.13421147954346796 0.1161409578650599 0.13401513860108516 0.11648103035287288 C 0.13421147954346796 0.1161409578650599 0.13574533618089257 0.11444516743374968 0.13561224405936892 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.16142641417896791) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10645043767302456 0.1082635401025993 C 0.10634346417457204 0.1079661682065173 0.10544579928919008 0.10584809552062784 0.10580859668230941 0.10647930872610738 C 0.10544579928919008 0.10584809552062784 0.1043180411606674 0.10383574797310519 0.10427365331430863 0.10447626086972205 C 0.1043180411606674 0.10383574797310519 0.10647928072508756 0.10190834687914632 0.10607492376046206 0.10263623134640622 C 0.10647928072508756 0.10190834687914632 0.10669979510206165 0.10010895406616264 0.10669979510206165 0.10010895406616264 C 0.10669979510206165 0.10010895406616264 0.10567056679583656 0.10336411581366611 0.10607492376046206 0.10263623134640622 C 0.10567056679583656 0.10336411581366611 0.10366199356664495 0.10438160048931956 0.10427365331430863 0.10447626086972205 C 0.10366199356664495 0.10438160048931956 0.10202410180250791 0.10133917900330836 0.10240496527447995 0.10206826906399133 C 0.10202410180250791 0.10133917900330836 0.10191905701714243 0.09977396241256296 0.10198847248247636 0.10010172050562416" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.33734345282867095,0.16550728403272374) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14008881754569708 0.11460177227368223 C 0.14020860045506836 0.11474271662962153 0.14170291930629692 0.11659916978398552 0.1415262124581524 0.11629310454495383 C 0.14170291930629692 0.11659916978398552 0.14226622366220465 0.11843967602515486 0.1422092997234314 0.11827455514206248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1422092997234314 0.11827455514206248 C 0.1421402875210816 0.11844451133058548 0.14118677576227487 0.12062009464337023 0.14138115329523385 0.12031402940433854 C 0.14118677576227487 0.12062009464337023 0.13975140399731442 0.1220834470609514 0.13987676932792362 0.12194733801044272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13987676932792362 0.12194733801044272 C 0.1398554625221578 0.12202685609210775 0.13954156957706876 0.12303928434798746 0.1396210876587338 0.1229015549904232 C 0.13954156957706876 0.12303928434798746 0.13878482299037886 0.12367960838287889 0.13892255234794312 0.12360009030121386 C 0.13878482299037886 0.12367960838287889 0.13780929920463258 0.12385577197040366 0.13796833536796266 0.12385577197040366 C 0.13780929920463258 0.12385577197040366 0.13687638903041796 0.12352057221954882 0.13701411838798222 0.12360009030121386 C 0.13687638903041796 0.12352057221954882 0.13623606499552654 0.12276382563285894 0.13631558307719158 0.1229015549904232 C 0.13623606499552654 0.12276382563285894 0.13603859460223597 0.12186781992877768 0.13605990140800178 0.12194733801044272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13605990140800178 0.12194733801044272 C 0.1359345360773926 0.12181122895993404 0.1343611399077325 0.12000796416530685 0.13455551744069147 0.12031402940433854 C 0.1343611399077325 0.12000796416530685 0.13365835881014415 0.11810459895353947 0.13372737101249393 0.11827455514206248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13372737101249393 0.11827455514206248 C 0.13378429495126717 0.1181094342589701 0.13458716512591745 0.11598703930592213 0.13441045827777293 0.11629310454495383 C 0.13458716512591745 0.11598703930592213 0.13596763609959955 0.11446082791774294 0.13584785319022827 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.169180066901104) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10623911924328767 0.10785592612352109 C 0.1061428430946804 0.1075882914170473 0.10533494469783665 0.1056820259997468 0.10566146235164404 0.10625011788467838 C 0.10533494469783665 0.1056820259997468 0.10431996238216623 0.1038709132069764 0.10428001332044333 0.10444737481393157 C 0.10431996238216623 0.1038709132069764 0.1062650779901444 0.10213625222241343 0.10590115672198144 0.10279134824294735 C 0.1062650779901444 0.10213625222241343 0.10646354092942105 0.10051679869072812 0.10646354092942105 0.10051679869072812 C 0.10646354092942105 0.10051679869072812 0.10553723545381849 0.10344644426348126 0.10590115672198144 0.10279134824294735 C 0.10553723545381849 0.10344644426348126 0.10372951954754601 0.10436218047156934 0.10428001332044333 0.10444737481393157 C 0.10372951954754601 0.10436218047156934 0.10225541695982271 0.10162400113415924 0.10259819408459754 0.10228018218877392 C 0.10225541695982271 0.10162400113415924 0.10216087665299375 0.1002153062024884 0.1022233505717943 0.10051028848624348" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.33734345282867095,0.17285284976948423) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13987676932792362 0.11460177227368223 C 0.13998457394635777 0.1147286221940276 0.1413294609124635 0.11639943003295518 0.14117042474913344 0.11612397131782666 C 0.1413294609124635 0.11639943003295518 0.14183643483278044 0.1180558856500076 0.14178520328788452 0.11790727685522445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14178520328788452 0.11790727685522445 C 0.1417230923057697 0.11806023742489516 0.14086493172284364 0.12001826240640144 0.14103987150250674 0.11974280369127292 C 0.14086493172284364 0.12001826240640144 0.13957309713437924 0.12133527958222447 0.1396859259319275 0.12121278143676666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1396859259319275 0.12121278143676666 C 0.13966674980673827 0.1212843477102652 0.13938424615615813 0.12219553314055692 0.13945581242965666 0.12207157671874909 C 0.13938424615615813 0.12219553314055692 0.13870317422813722 0.12277182477195922 0.13882713064994506 0.12270025849846068 C 0.13870317422813722 0.12277182477195922 0.13782520282096558 0.1229303720007315 0.13796833536796266 0.1229303720007315 C 0.13782520282096558 0.1229303720007315 0.13698558366417246 0.12262869222496214 0.13710954008598028 0.12270025849846068 C 0.13698558366417246 0.12262869222496214 0.13640929203277014 0.12194762029694126 0.13648085830626866 0.12207157671874909 C 0.13640929203277014 0.12194762029694126 0.13623156867880862 0.12114121516326812 0.13625074480399785 0.12121278143676666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13625074480399785 0.12121278143676666 C 0.1361379160064496 0.12109028329130885 0.13472185945375548 0.1194673449761444 0.13489679923341857 0.11974280369127292 C 0.13472185945375548 0.1194673449761444 0.13408935646592596 0.11775431628555375 0.13415146744804077 0.11790727685522445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13415146744804077 0.11790727685522445 C 0.1342026989929367 0.1177586680604413 0.13492528215012195 0.11584851260269814 0.13476624598679188 0.11612397131782666 C 0.13492528215012195 0.11584851260269814 0.13616770602643594 0.11447492235333687 0.13605990140800178 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.17615835435102645) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10604893265652446 0.10748907354235071 C 0.10596228412277792 0.1072482023065243 0.10523517556561858 0.10553256343095387 0.10552904145404522 0.10604384612739229 C 0.10523517556561858 0.10553256343095387 0.10432169148151518 0.10390256191746049 0.10428573732596458 0.10442137736372015 C 0.10432169148151518 0.10390256191746049 0.10607229552869551 0.10234136703135382 0.10574476638734885 0.10293095344983434 C 0.10607229552869551 0.10234136703135382 0.10625091217404452 0.10088385885283704 0.10625091217404452 0.10088385885283704 C 0.10625091217404452 0.10088385885283704 0.10541723724600219 0.10352053986831486 0.10574476638734885 0.10293095344983434 C 0.10541723724600219 0.10352053986831486 0.10379029293035699 0.10434470245559413 0.10428573732596458 0.10442137736372015 C 0.10379029293035699 0.10434470245559413 0.10246360060140602 0.10188034105192505 0.10277210001370338 0.10247090400107826 C 0.10246360060140602 0.10188034105192505 0.10237851432525995 0.10061251561342129 0.10243474085218043 0.10087799966880086" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.33734345282867095,0.17946385893256867) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1396859259319275 0.11460177227368223 C 0.13978295008851824 0.11471593720199307 0.14099334835801344 0.11621966425702789 0.14085021581101637 0.11597175141341222 C 0.14099334835801344 0.11621966425702789 0.14144962488629872 0.11771047431237507 0.1414035164958924 0.11757672639707023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414035164958924 0.11757672639707023 C 0.14134761661198905 0.11771439090977387 0.14057527208735562 0.11947661339312951 0.1407327178890524 0.11922870054951384 C 0.14057527208735562 0.11947661339312951 0.13941262095773754 0.12066192885137025 0.139514166875531 0.12055168052045823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.139514166875531 0.12055168052045823 C 0.1394969083628607 0.1206160901666069 0.1392426550773386 0.12143615705386945 0.13930706472348728 0.1213245962742424 C 0.1392426550773386 0.12143615705386945 0.13862969034211983 0.12195481952213148 0.13874125112174687 0.1218904098759828 C 0.13862969034211983 0.12195481952213148 0.1378395160756653 0.12209751202802659 0.13796833536796266 0.12209751202802659 C 0.1378395160756653 0.12209751202802659 0.13708385883455143 0.12182600022983413 0.13719541961417847 0.1218904098759828 C 0.13708385883455143 0.12182600022983413 0.13656519636628942 0.12121303549461535 0.1366296060124381 0.1213245962742424 C 0.13656519636628942 0.12121303549461535 0.13640524534772402 0.12048727087430955 0.13642250386039434 0.12055168052045823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13642250386039434 0.12055168052045823 C 0.1363209579426009 0.1204414321895462 0.13504650704517626 0.11898078770589818 0.13520395284687303 0.11922870054951384 C 0.13504650704517626 0.11898078770589818 0.13447725435612962 0.11743906188436659 0.13453315424003295 0.11757672639707023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13453315424003295 0.11757672639707023 C 0.1345792626304393 0.1174429784817654 0.13522958747190603 0.11572383856979657 0.13508645492490895 0.11597175141341223 C 0.13522958747190603 0.11572383856979657 0.1363477689605886 0.1144876073453714 0.13625074480399785 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.18243881305595666) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10587776472843759 0.10715890621929738 C 0.1057997810480657 0.10694212210705362 0.10514538334662228 0.10539804711904018 0.10540986264620626 0.10585820154583477 C 0.10514538334662228 0.10539804711904018 0.10432324767092925 0.10393104575689618 0.1042908889309337 0.10439797965852987 C 0.10432324767092925 0.10393104575689618 0.10589879131339153 0.10252597035940017 0.10560401508617955 0.10305659813603263 C 0.10589879131339153 0.10252597035940017 0.10605954629420564 0.10121421299873508 0.10605954629420564 0.10121421299873508 C 0.10605954629420564 0.10121421299873508 0.10530923885896756 0.10358722591266509 0.10560401508617955 0.10305659813603263 C 0.10530923885896756 0.10358722591266509 0.10384498897488688 0.10432897224121647 0.1042908889309337 0.10439797965852987 C 0.10384498897488688 0.10432897224121647 0.10265096587883098 0.10211104697791429 0.1029286153498986 0.10264255363215219 C 0.10265096587883098 0.10211104697791429 0.10257438823029953 0.1009700040832609 0.10262499210452797 0.10120893973310251" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.33734345282867095,0.18541376717934466) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.139514166875531 0.11460177227368223 C 0.13960148861646268 0.11470452070916198 0.14069084705900842 0.11605787505869332 0.14056202776671106 0.11583475349943922 C 0.14069084705900842 0.11605787505869332 0.1411014959344651 0.11739960410850578 0.1410599983830994 0.11727923098473143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1410599983830994 0.11727923098473143 C 0.1410096884875864 0.1174031290461647 0.14031457841541628 0.11898912928118477 0.14045627963694338 0.11876600772193067 C 0.14031457841541628 0.11898912928118477 0.1392681923987601 0.12005591319360148 0.1393595837247742 0.11995668969578065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1393595837247742 0.11995668969578065 C 0.13934405106337092 0.12001465837731445 0.13911522310640095 0.12075271857585074 0.13917319178793477 0.12065231387418639 C 0.13911522310640095 0.12075271857585074 0.1385635548447041 0.12121951479728658 0.13866395954636843 0.12116154611575278 C 0.1385635548447041 0.12121951479728658 0.13785239800489502 0.12134793805259214 0.13796833536796266 0.12134793805259214 C 0.13785239800489502 0.12134793805259214 0.13717230648789255 0.12110357743421897 0.1372727111895569 0.12116154611575278 C 0.13717230648789255 0.12110357743421897 0.13670551026645672 0.12055190917252204 0.13676347894799054 0.12065231387418639 C 0.13670551026645672 0.12055190917252204 0.13656155434974784 0.11989872101424684 0.13657708701115112 0.11995668969578065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13657708701115112 0.11995668969578065 C 0.13648569568513702 0.11985746619795981 0.13533868987745487 0.11854288616267658 0.13548039109898197 0.11876600772193067 C 0.13533868987745487 0.11854288616267658 0.13482636245731297 0.11715533292329816 0.13487667235282597 0.11727923098473143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13487667235282597 0.11727923098473143 C 0.13491816990419167 0.11715885786095709 0.1355034622615117 0.11561163194018514 0.13537464296921434 0.11583475349943924 C 0.1355034622615117 0.11561163194018514 0.13650982560132602 0.11449902383820248 0.13642250386039434 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.18809122589039384) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10572371359315942 0.10686175562854937 C 0.10565352828082472 0.10666664992752999 0.10506457034952563 0.10527698243831791 0.10530260171915122 0.10569112142243305 C 0.10506457034952563 0.10527698243831791 0.10432464824140189 0.10395668121238828 0.1042955253754059 0.10437692172385861 C 0.10432464824140189 0.10395668121238828 0.10574263751961796 0.1026921133546419 0.10547733891512716 0.10316967835361111 C 0.10574263751961796 0.1026921133546419 0.10588731700235067 0.1015115317300433 0.10588731700235067 0.1015115317300433 C 0.10588731700235067 0.1015115317300433 0.10521204031063636 0.10364724335258033 0.10547733891512716 0.10316967835361111 C 0.10521204031063636 0.10364724335258033 0.10389421541496376 0.10431481504827654 0.1042955253754059 0.10437692172385861 C 0.10389421541496376 0.10431481504827654 0.10281959462851345 0.1023186823113046 0.10306947915247432 0.1027970383001187 C 0.10281959462851345 0.1023186823113046 0.10275067474483512 0.10129174370611656 0.10279621823164073 0.10150678579097401" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.33734345282867095,0.19076868460144308) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1393595837247742 0.11460177227368223 C 0.1394381732916127 0.11469424586561401 0.14041859588990382 0.1159122647801922 0.1403026585268362 0.11571145537686352 C 0.14041859588990382 0.1159122647801922 0.14078817987781483 0.11711982092502345 0.1407508320815857 0.11701148511362652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1407508320815857 0.11701148511362652 C 0.140705553175624 0.11712299336891646 0.14007995411067095 0.11855039358043452 0.14020748521004534 0.11834958417710584 C 0.14007995411067095 0.11855039358043452 0.13913820669568036 0.11951049910160953 0.13922045888909304 0.11942119795357078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13922045888909304 0.11942119795357078 C 0.13920647949383008 0.11947336976695122 0.13900053433255716 0.1201376239456339 0.1390527061459376 0.12004725971413599 C 0.13900053433255716 0.1201376239456339 0.13850403289702995 0.12055774054492616 0.13859439712852786 0.12050556873154572 C 0.13850403289702995 0.12055774054492616 0.13786399174120179 0.12067332147470118 0.13796833536796266 0.12067332147470118 C 0.13786399174120179 0.12067332147470118 0.13725190937589957 0.12045339691816528 0.13734227360739748 0.12050556873154572 C 0.13725190937589957 0.12045339691816528 0.1368317927766073 0.11995689548263808 0.13688396458998775 0.12004725971413599 C 0.1368317927766073 0.11995689548263808 0.13670223245156934 0.11936902614019035 0.1367162118468323 0.11942119795357078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1367162118468323 0.11942119795357078 C 0.13663395965341962 0.11933189680553204 0.13560165442650568 0.11814877477377715 0.13572918552588006 0.11834958417710584 C 0.13560165442650568 0.11814877477377715 0.13514055974837788 0.11689997685833659 0.13518583865433959 0.11701148511362652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13518583865433959 0.11701148511362652 C 0.13522318645056872 0.11690314930222961 0.1357499495721568 0.11551064597353485 0.1356340122090892 0.11571145537686353 C 0.1357499495721568 0.11551064597353485 0.1366556765779896 0.11450929868175046 0.13657708701115112 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19317839744138737) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10558506757140906 0.10659432009687617 C 0.10552190079030783 0.10641872496595872 0.10499183865213865 0.10516802422566786 0.10520606688480168 0.10554074931137147 C 0.10499183865213865 0.10516802422566786 0.10432590875482727 0.10397975312233121 0.10429969817543087 0.1043579695826545 C 0.10432590875482727 0.10397975312233121 0.10560209910522175 0.10284164205035944 0.10536333036118004 0.10327145054943174 C 0.10560209910522175 0.10284164205035944 0.10573231063968118 0.10177911858822072 0.10573231063968118 0.10177911858822072 C 0.10573231063968118 0.10177911858822072 0.10512456161713832 0.10370125904850404 0.10536333036118004 0.10327145054943174 C 0.10512456161713832 0.10370125904850404 0.10393851921103295 0.10430207357463064 0.10429969817543087 0.1043579695826545 C 0.10393851921103295 0.10430207357463064 0.1029713605032277 0.1025055541113559 0.10319625657479246 0.10293607450128858 C 0.1029713605032277 0.1025055541113559 0.10290933260791721 0.10158130936668665 0.10295032174604224 0.10177484724305835" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.021814492892120386 0.019655031969990255 C 0.02189843635998038 0.019913383399076362 0.020972167044877248 0.021730741504815434 0.02119193389686825 0.021571071540598112 C 0.020972167044877248 0.021730741504815434 0.018957523816237377 0.02141140157638079 0.01917729066822838 0.021571071540598112 C 0.018957523816237377 0.02141140157638079 0.018638675140836235 0.019396680540904147 0.018554731672976242 0.019655031969990255 C 0.018638675140836235 0.019396680540904147 0.02045625905081033 0.01847085439156484 0.020184612282548316 0.01847085439156484 C 0.02045625905081033 0.01847085439156484 0.02189843635998038 0.019913383399076362 0.021814492892120386 0.019655031969990255 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.027502747819324644 0.02603232541511103 C 0.027559906693821416 0.026208242342153215 0.02692919041676106 0.027445719736521604 0.0270788342929523 0.027336997096413098 C 0.02692919041676106 0.027445719736521604 0.025557377428838512 0.02722827445630459 0.02570702130502975 0.027336997096413098 C 0.025557377428838512 0.02722827445630459 0.025340266653154187 0.025856408488068847 0.025283107778657415 0.02603232541511103 C 0.025340266653154187 0.025856408488068847 0.026577897802379964 0.02522599397190689 0.02639292779899103 0.02522599397190689 C 0.026577897802379964 0.02522599397190689 0.027559906693821416 0.026208242342153215 0.027502747819324644 0.02603232541511103 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3363064238473449,0.19588518190454113) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.1714233787142897 0.1872492916632277 C 0.17151190403058564 0.1870490496278668 0.17265486369932076 0.18458256678834506 0.172485682509841 0.18484638723889682 C 0.17265486369932076 0.18458256678834506 0.17353420886123075 0.1840198678414159 0.17345355298804693 0.18408344625660675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17345355298804693 0.18408344625660675 C 0.1734610547976768 0.18479366891109977 0.17348496123067905 0.19376611788468612 0.17354357470360512 0.1926061181105231 C 0.17348496123067905 0.19376611788468612 0.17268407603037808 0.19845322066623275 0.172750191312934 0.19800344354656277" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.172750191312934 0.19800344354656277 C 0.1727296137257489 0.1982409446951874 0.17248938024955973 0.20155454952008367 0.1725032602667127 0.20085345733005852 C 0.17248938024955973 0.20155454952008367 0.17259032867713045 0.2068801408682649 0.17258363110709832 0.20641654982686441" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17258363110709832 0.20641654982686441 C 0.1724747977014049 0.20599070299003758 0.17111706389133005 0.200555434246859 0.17127763023877715 0.2013063877849422 C 0.17111706389133005 0.200555434246859 0.1706051019959793 0.19708000066860995 0.17065683493773298 0.19740510736986627" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17065683493773298 0.19740510736986627 C 0.17064983094567387 0.1969460107815223 0.17063666568106992 0.19104963033418534 0.17057278703302353 0.19189594830973855 C 0.17063666568106992 0.19104963033418534 0.17149426135439522 0.18686207027601848 0.1714233787142897 0.1872492916632277" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33838048180999714,0.19588518190454113) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17461157001832697 0.18718118450634574 C 0.1746824526584325 0.1875740814899618 0.17550339551351626 0.19274880405136466 0.1754621616995931 0.19189594830973855 C 0.17550339551351626 0.19274880405136466 0.1750767269592225 0.19787541216386892 0.17510637578540486 0.1974154534058589" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17510637578540486 0.1974154534058589 C 0.17503596463480273 0.19776174790424547 0.17406244146316824 0.20235949777710133 0.17426144197817917 0.20157098738649784 C 0.17406244146316824 0.20235949777710133 0.17258978024086494 0.20731979398531747 0.17271836960527373 0.20687757809310056" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17271836960527373 0.20687757809310056 C 0.1727483181577135 0.20637144277663597 0.1731118460004036 0.20006275222983957 0.17307775223455094 0.20080395429552533 C 0.1731118460004036 0.20006275222983957 0.17313164000891867 0.1977480865556503 0.17312749479550577 0.19798315330487146" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17312749479550577 0.19798315330487146 C 0.17307448473163126 0.19753506703867577 0.17244586577476692 0.1914478091898344 0.17249137402901157 0.1926061181105231 C 0.17244586577476692 0.1914478091898344 0.17258889755419968 0.18337322360211372 0.17258139574456982 0.18408344625660675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17258139574456982 0.18408344625660675 C 0.17266205161775364 0.18414702467179758 0.17371844741225548 0.18510453209304173 0.17354926622277572 0.18484638723889682 C 0.17371844741225548 0.18510453209304173 0.1747000953346229 0.18737575094529982 0.17461157001832697 0.18718118450634574" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19503671156560223 0.1845325971445882 C 0.1950030998632457 0.18372257463379346 0.19455783366100246 0.17357958232124437 0.19463337113732387 0.17481232701505128 C 0.19455783366100246 0.17357958232124437 0.19408833607578044 0.16931693863589295 0.19413026184974533 0.16973966081890512" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19413026184974533 0.16973966081890512 C 0.19411710501355445 0.1694096127028987 0.19400348261783298 0.16472424244870817 0.1939723798154548 0.16577908342682807 C 0.19400348261783298 0.16472424244870817 0.1945477551168529 0.1563567762193528 0.19450349547828383 0.15708156908146628" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19450349547828383 0.15708156908146628 C 0.19458760640302622 0.15704015348920966 0.19568104842467746 0.15658458197438677 0.19551282657519264 0.15658458197438677 C 0.19568104842467746 0.15658458197438677 0.19660626859684394 0.1571229846737229 0.19652215767210152 0.15708156908146628" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19652215767210152 0.15708156908146628 C 0.19657208695093498 0.1577059488411683 0.1971506100392425 0.1656123140390325 0.1971213090181029 0.1645741261978904 C 0.1971506100392425 0.1656123140390325 0.19685314166808274 0.16995363125661167 0.1968737699257766 0.16953982317517158" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1968737699257766 0.16953982317517158 C 0.1968182671392038 0.17000022676702203 0.19605464829022207 0.1763140641081617 0.19620773648690326 0.175064666277377 C 0.19605464829022207 0.1763140641081617 0.1949391261554938 0.18532159138352247 0.19503671156560223 0.1845325971445882" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

View File

@@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24082127081227234 0.2500879204430701 0.24188766313423996 0.2475101238438775 C 0.24082127081227234 0.2500879204430701 0.2308044715076716 0.2669420916363424 0.23280529274848838 0.2647202078121963 C 0.2308044715076716 0.2669420916363424 0.21538989416043028 0.27417272973363077 0.2178778082444386 0.27417272973363077 C 0.21538989416043028 0.27417272973363077 0.200949502499572 0.2624983239880503 0.2029503237403888 0.2647202078121964 C 0.200949502499572 0.2624983239880503 0.19280156103266954 0.24493232724468494 0.19386795335463716 0.24751012384387755 C 0.19280156103266954 0.24493232724468494 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ">
<g id="編節1">
<g transform="translate(0.33734345282867095,0.13820072278907372) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14087709006993027 0.11460177227368223 C 0.14104140133107057 0.11479511158224094 0.14309122142877786 0.11734168655393362 0.1428488252036139 0.11692184397638673 C 0.14309122142877786 0.11734168655393362 0.14386392973592155 0.11986638647323312 0.14378584477189787 0.11963988320424494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14378584477189787 0.11963988320424494 C 0.14369117782765947 0.11987301926531903 0.14238320559335665 0.12285735851468087 0.142649841441037 0.12243751593713396 C 0.14238320559335665 0.12285735851468087 0.14041424569629155 0.12486470065128054 0.1405862145997335 0.12467799413480772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405862145997335 0.12467799413480772 C 0.14055698715698203 0.1247870724361315 0.14012640698539208 0.12617586291058924 0.14023548528671587 0.12598693375069314 C 0.14012640698539208 0.12617586291058924 0.13908834582395194 0.12705422235488473 0.13927727498384804 0.12694514405356094 C 0.13908834582395194 0.12705422235488473 0.1377501787653151 0.12729587336657855 0.13796833536796266 0.12729587336657855 C 0.1377501787653151 0.12729587336657855 0.13647046659218112 0.12683606575223716 0.13665939575207722 0.12694514405356094 C 0.13647046659218112 0.12683606575223716 0.1355921071478856 0.12579800459079704 0.1357011854492094 0.12598693375069314 C 0.1355921071478856 0.12579800459079704 0.13532122869344038 0.12456891583348394 0.13535045613619184 0.12467799413480772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13535045613619184 0.12467799413480772 C 0.1351784872327499 0.1244912876183349 0.13302019344720797 0.12201767335958708 0.13328682929488833 0.12243751593713396 C 0.13302019344720797 0.12201767335958708 0.1320561590197891 0.11940674714317089 0.1321508259640275 0.11963988320424497" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1321508259640275 0.11963988320424497 C 0.13222891092805117 0.11941337993525679 0.13333024175747538 0.11650200139883984 0.1330878455323114 0.11692184397638673 C 0.13333024175747538 0.11650200139883984 0.13522389192713535 0.11440843296512353 0.13505958066599505 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14323883371963647) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1069461228785802 0.1092196716584617 C 0.10681405683110795 0.10885254586082962 0.10570582857755001 0.1062376413103488 0.1061537265937467 0.10701691687266922 C 0.10570582857755001 0.1062376413103488 0.10431353459171952 0.10375326162204923 0.10425873478140005 0.10454401828453919 C 0.10431353459171952 0.10375326162204923 0.10698173158483083 0.10137375409864323 0.10648252545566354 0.10227237689772953 C 0.10698173158483083 0.10137375409864323 0.10725397155640377 0.09915228149002142 0.10725397155640377 0.09915228149002142 C 0.10725397155640377 0.09915228149002142 0.10598331932649625 0.10317099969681583 0.10648252545566354 0.10227237689772953 C 0.10598331932649625 0.10317099969681583 0.10350359929045722 0.10442715361737563 0.10425873478140005 0.10454401828453919 C 0.10350359929045722 0.10442715361737563 0.10148151069275715 0.10067107770871982 0.10195171251000659 0.10157118889474819 C 0.10148151069275715 0.10067107770871982 0.10135182577255288 0.09873871154730576 0.1014375238779034 0.09914335116836896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.33734345282867095,0.1482769446501992) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1405862145997335 0.11460177227368223 C 0.14073409473475978 0.11477577765138507 0.14257893282269637 0.11706769512590848 0.1423607762200488 0.11668983680611628 C 0.14257893282269637 0.11706769512590848 0.1432743702991256 0.11933992505327808 0.14320409383150431 0.1191360721111887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14320409383150431 0.1191360721111887 C 0.14311889358168975 0.11934589456615538 0.14194171857081725 0.12203179989058098 0.14218169083372958 0.12165394157078878 C 0.14194171857081725 0.12203179989058098 0.14016965466345865 0.12383840781352068 0.14032442667655642 0.12367037194869515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14032442667655642 0.12367037194869515 C 0.14029812197808011 0.12376854241988655 0.1399105998236492 0.12501845384689853 0.1400087702948406 0.12484841760299202 C 0.1399105998236492 0.12501845384689853 0.13897634477835305 0.12580897734676447 0.13914638102225954 0.12571080687557307 C 0.13897634477835305 0.12580897734676447 0.13777199442557986 0.1260264632572889 0.13796833536796266 0.1260264632572889 C 0.13777199442557986 0.1260264632572889 0.1366202534697593 0.12561263640438167 0.1367902897136658 0.12571080687557307 C 0.1366202534697593 0.12561263640438167 0.13582972996989334 0.12467838135908553 0.13592790044108474 0.12484841760299202 C 0.13582972996989334 0.12467838135908553 0.1355859393608926 0.12357220147750375 0.13561224405936892 0.12367037194869515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13561224405936892 0.12367037194869515 C 0.13545747204627115 0.12350233608386962 0.13351500763928342 0.12127608325099658 0.13375497990219576 0.12165394157078878 C 0.13351500763928342 0.12127608325099658 0.13264737665460644 0.11892624965622203 0.132732576904421 0.1191360721111887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.132732576904421 0.1191360721111887 C 0.13280285337204228 0.11893221916909934 0.1337940511185241 0.11631197848632409 0.13357589451587654 0.11668983680611629 C 0.1337940511185241 0.11631197848632409 0.13549833627121813 0.1144277668959794 0.13535045613619184 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.15281124448770567) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10668523592828776 0.10871644452379725 C 0.10656637648556273 0.10838603130592839 0.10556897105736057 0.10603261721049564 0.1059720792719376 0.10673396521658403 C 0.10556897105736057 0.10603261721049564 0.10431590647011313 0.10379667549102603 0.10426658664082561 0.10450835648726699 C 0.10431590647011313 0.10379667549102603 0.10671728376391332 0.10165511871996066 0.10626799824766275 0.10246387923913833 C 0.10671728376391332 0.10165511871996066 0.10696229973832898 0.09965579337220103 0.10696229973832898 0.09965579337220103 C 0.10696229973832898 0.09965579337220103 0.10581871273141219 0.10327263975831599 0.10626799824766275 0.10246387923913833 C 0.10581871273141219 0.10327263975831599 0.10358696469897707 0.10440317828681978 0.10426658664082561 0.10450835648726699 C 0.10358696469897707 0.10440317828681978 0.10176708496104706 0.10102270996902957 0.10219026659657154 0.1018328100364551 C 0.10176708496104706 0.10102270996902957 0.10165036853286316 0.09928358042375693 0.10172749682767865 0.09964775608271381" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.33734345282867095,0.1573455443252121) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14032442667655642 0.11460177227368223 C 0.14045751879808008 0.11475837711361479 0.14211787307722298 0.11682110284068586 0.14192153213484018 0.11648103035287288 C 0.14211787307722298 0.11682110284068586 0.14274376680600934 0.11886610977531849 0.14268051798515016 0.11868264212743805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14268051798515016 0.11868264212743805 C 0.14260383776031704 0.11887148233690806 0.14154438025053176 0.12128879712889112 0.14176035528715286 0.12094872464107814 C 0.14154438025053176 0.12128879712889112 0.1399495227339091 0.12291474425953686 0.14008881754569708 0.12276351198119388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14008881754569708 0.12276351198119388 C 0.14006514331706837 0.12285186540526614 0.13971637337808054 0.1239767856895769 0.1398047268021528 0.12382375307006106 C 0.13971637337808054 0.1239767856895769 0.138875543837314 0.12468825683945627 0.13902857645682987 0.124599903415384 C 0.138875543837314 0.12468825683945627 0.13779162851981813 0.12488399415892827 0.13796833536796266 0.12488399415892827 C 0.13779162851981813 0.12488399415892827 0.13675506165957962 0.12451154999131174 0.13690809427909548 0.124599903415384 C 0.13675506165957962 0.12451154999131174 0.13604359050970033 0.12367072045054522 0.1361319439337726 0.12382375307006106 C 0.13604359050970033 0.12367072045054522 0.13582417896159957 0.12267515855712162 0.13584785319022827 0.12276351198119388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13584785319022827 0.12276351198119388 C 0.13570855837844029 0.12261227970285091 0.13396034041215135 0.12060865215326516 0.13417631544877245 0.12094872464107814 C 0.13396034041215135 0.12060865215326516 0.1331794725259421 0.11849380191796804 0.13325615275077518 0.11868264212743805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13325615275077518 0.11868264212743805 C 0.13331940157163436 0.11849917447955761 0.13421147954346796 0.1161409578650599 0.13401513860108516 0.11648103035287288 C 0.13421147954346796 0.1161409578650599 0.13574533618089257 0.11444516743374968 0.13561224405936892 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.16142641417896791) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10645043767302456 0.1082635401025993 C 0.10634346417457204 0.1079661682065173 0.10544579928919008 0.10584809552062784 0.10580859668230941 0.10647930872610738 C 0.10544579928919008 0.10584809552062784 0.1043180411606674 0.10383574797310519 0.10427365331430863 0.10447626086972205 C 0.1043180411606674 0.10383574797310519 0.10647928072508756 0.10190834687914632 0.10607492376046206 0.10263623134640622 C 0.10647928072508756 0.10190834687914632 0.10669979510206165 0.10010895406616264 0.10669979510206165 0.10010895406616264 C 0.10669979510206165 0.10010895406616264 0.10567056679583656 0.10336411581366611 0.10607492376046206 0.10263623134640622 C 0.10567056679583656 0.10336411581366611 0.10366199356664495 0.10438160048931956 0.10427365331430863 0.10447626086972205 C 0.10366199356664495 0.10438160048931956 0.10202410180250791 0.10133917900330836 0.10240496527447995 0.10206826906399133 C 0.10202410180250791 0.10133917900330836 0.10191905701714243 0.09977396241256296 0.10198847248247636 0.10010172050562416" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.33734345282867095,0.16550728403272374) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14008881754569708 0.11460177227368223 C 0.14020860045506836 0.11474271662962153 0.14170291930629692 0.11659916978398552 0.1415262124581524 0.11629310454495383 C 0.14170291930629692 0.11659916978398552 0.14226622366220465 0.11843967602515486 0.1422092997234314 0.11827455514206248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1422092997234314 0.11827455514206248 C 0.1421402875210816 0.11844451133058548 0.14118677576227487 0.12062009464337023 0.14138115329523385 0.12031402940433854 C 0.14118677576227487 0.12062009464337023 0.13975140399731442 0.1220834470609514 0.13987676932792362 0.12194733801044272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13987676932792362 0.12194733801044272 C 0.1398554625221578 0.12202685609210775 0.13954156957706876 0.12303928434798746 0.1396210876587338 0.1229015549904232 C 0.13954156957706876 0.12303928434798746 0.13878482299037886 0.12367960838287889 0.13892255234794312 0.12360009030121386 C 0.13878482299037886 0.12367960838287889 0.13780929920463258 0.12385577197040366 0.13796833536796266 0.12385577197040366 C 0.13780929920463258 0.12385577197040366 0.13687638903041796 0.12352057221954882 0.13701411838798222 0.12360009030121386 C 0.13687638903041796 0.12352057221954882 0.13623606499552654 0.12276382563285894 0.13631558307719158 0.1229015549904232 C 0.13623606499552654 0.12276382563285894 0.13603859460223597 0.12186781992877768 0.13605990140800178 0.12194733801044272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13605990140800178 0.12194733801044272 C 0.1359345360773926 0.12181122895993404 0.1343611399077325 0.12000796416530685 0.13455551744069147 0.12031402940433854 C 0.1343611399077325 0.12000796416530685 0.13365835881014415 0.11810459895353947 0.13372737101249393 0.11827455514206248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13372737101249393 0.11827455514206248 C 0.13378429495126717 0.1181094342589701 0.13458716512591745 0.11598703930592213 0.13441045827777293 0.11629310454495383 C 0.13458716512591745 0.11598703930592213 0.13596763609959955 0.11446082791774294 0.13584785319022827 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.169180066901104) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10623911924328767 0.10785592612352109 C 0.1061428430946804 0.1075882914170473 0.10533494469783665 0.1056820259997468 0.10566146235164404 0.10625011788467838 C 0.10533494469783665 0.1056820259997468 0.10431996238216623 0.1038709132069764 0.10428001332044333 0.10444737481393157 C 0.10431996238216623 0.1038709132069764 0.1062650779901444 0.10213625222241343 0.10590115672198144 0.10279134824294735 C 0.1062650779901444 0.10213625222241343 0.10646354092942105 0.10051679869072812 0.10646354092942105 0.10051679869072812 C 0.10646354092942105 0.10051679869072812 0.10553723545381849 0.10344644426348126 0.10590115672198144 0.10279134824294735 C 0.10553723545381849 0.10344644426348126 0.10372951954754601 0.10436218047156934 0.10428001332044333 0.10444737481393157 C 0.10372951954754601 0.10436218047156934 0.10225541695982271 0.10162400113415924 0.10259819408459754 0.10228018218877392 C 0.10225541695982271 0.10162400113415924 0.10216087665299375 0.1002153062024884 0.1022233505717943 0.10051028848624348" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.33734345282867095,0.17285284976948423) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13987676932792362 0.11460177227368223 C 0.13998457394635777 0.1147286221940276 0.1413294609124635 0.11639943003295518 0.14117042474913344 0.11612397131782666 C 0.1413294609124635 0.11639943003295518 0.14183643483278044 0.1180558856500076 0.14178520328788452 0.11790727685522445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14178520328788452 0.11790727685522445 C 0.1417230923057697 0.11806023742489516 0.14086493172284364 0.12001826240640144 0.14103987150250674 0.11974280369127292 C 0.14086493172284364 0.12001826240640144 0.13957309713437924 0.12133527958222447 0.1396859259319275 0.12121278143676666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1396859259319275 0.12121278143676666 C 0.13966674980673827 0.1212843477102652 0.13938424615615813 0.12219553314055692 0.13945581242965666 0.12207157671874909 C 0.13938424615615813 0.12219553314055692 0.13870317422813722 0.12277182477195922 0.13882713064994506 0.12270025849846068 C 0.13870317422813722 0.12277182477195922 0.13782520282096558 0.1229303720007315 0.13796833536796266 0.1229303720007315 C 0.13782520282096558 0.1229303720007315 0.13698558366417246 0.12262869222496214 0.13710954008598028 0.12270025849846068 C 0.13698558366417246 0.12262869222496214 0.13640929203277014 0.12194762029694126 0.13648085830626866 0.12207157671874909 C 0.13640929203277014 0.12194762029694126 0.13623156867880862 0.12114121516326812 0.13625074480399785 0.12121278143676666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13625074480399785 0.12121278143676666 C 0.1361379160064496 0.12109028329130885 0.13472185945375548 0.1194673449761444 0.13489679923341857 0.11974280369127292 C 0.13472185945375548 0.1194673449761444 0.13408935646592596 0.11775431628555375 0.13415146744804077 0.11790727685522445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13415146744804077 0.11790727685522445 C 0.1342026989929367 0.1177586680604413 0.13492528215012195 0.11584851260269814 0.13476624598679188 0.11612397131782666 C 0.13492528215012195 0.11584851260269814 0.13616770602643594 0.11447492235333687 0.13605990140800178 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.17615835435102645) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10604893265652446 0.10748907354235071 C 0.10596228412277792 0.1072482023065243 0.10523517556561858 0.10553256343095387 0.10552904145404522 0.10604384612739229 C 0.10523517556561858 0.10553256343095387 0.10432169148151518 0.10390256191746049 0.10428573732596458 0.10442137736372015 C 0.10432169148151518 0.10390256191746049 0.10607229552869551 0.10234136703135382 0.10574476638734885 0.10293095344983434 C 0.10607229552869551 0.10234136703135382 0.10625091217404452 0.10088385885283704 0.10625091217404452 0.10088385885283704 C 0.10625091217404452 0.10088385885283704 0.10541723724600219 0.10352053986831486 0.10574476638734885 0.10293095344983434 C 0.10541723724600219 0.10352053986831486 0.10379029293035699 0.10434470245559413 0.10428573732596458 0.10442137736372015 C 0.10379029293035699 0.10434470245559413 0.10246360060140602 0.10188034105192505 0.10277210001370338 0.10247090400107826 C 0.10246360060140602 0.10188034105192505 0.10237851432525995 0.10061251561342129 0.10243474085218043 0.10087799966880086" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.33734345282867095,0.17946385893256867) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1396859259319275 0.11460177227368223 C 0.13978295008851824 0.11471593720199307 0.14099334835801344 0.11621966425702789 0.14085021581101637 0.11597175141341222 C 0.14099334835801344 0.11621966425702789 0.14144962488629872 0.11771047431237507 0.1414035164958924 0.11757672639707023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414035164958924 0.11757672639707023 C 0.14134761661198905 0.11771439090977387 0.14057527208735562 0.11947661339312951 0.1407327178890524 0.11922870054951384 C 0.14057527208735562 0.11947661339312951 0.13941262095773754 0.12066192885137025 0.139514166875531 0.12055168052045823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.139514166875531 0.12055168052045823 C 0.1394969083628607 0.1206160901666069 0.1392426550773386 0.12143615705386945 0.13930706472348728 0.1213245962742424 C 0.1392426550773386 0.12143615705386945 0.13862969034211983 0.12195481952213148 0.13874125112174687 0.1218904098759828 C 0.13862969034211983 0.12195481952213148 0.1378395160756653 0.12209751202802659 0.13796833536796266 0.12209751202802659 C 0.1378395160756653 0.12209751202802659 0.13708385883455143 0.12182600022983413 0.13719541961417847 0.1218904098759828 C 0.13708385883455143 0.12182600022983413 0.13656519636628942 0.12121303549461535 0.1366296060124381 0.1213245962742424 C 0.13656519636628942 0.12121303549461535 0.13640524534772402 0.12048727087430955 0.13642250386039434 0.12055168052045823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13642250386039434 0.12055168052045823 C 0.1363209579426009 0.1204414321895462 0.13504650704517626 0.11898078770589818 0.13520395284687303 0.11922870054951384 C 0.13504650704517626 0.11898078770589818 0.13447725435612962 0.11743906188436659 0.13453315424003295 0.11757672639707023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13453315424003295 0.11757672639707023 C 0.1345792626304393 0.1174429784817654 0.13522958747190603 0.11572383856979657 0.13508645492490895 0.11597175141341223 C 0.13522958747190603 0.11572383856979657 0.1363477689605886 0.1144876073453714 0.13625074480399785 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.18243881305595666) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10587776472843759 0.10715890621929738 C 0.1057997810480657 0.10694212210705362 0.10514538334662228 0.10539804711904018 0.10540986264620626 0.10585820154583477 C 0.10514538334662228 0.10539804711904018 0.10432324767092925 0.10393104575689618 0.1042908889309337 0.10439797965852987 C 0.10432324767092925 0.10393104575689618 0.10589879131339153 0.10252597035940017 0.10560401508617955 0.10305659813603263 C 0.10589879131339153 0.10252597035940017 0.10605954629420564 0.10121421299873508 0.10605954629420564 0.10121421299873508 C 0.10605954629420564 0.10121421299873508 0.10530923885896756 0.10358722591266509 0.10560401508617955 0.10305659813603263 C 0.10530923885896756 0.10358722591266509 0.10384498897488688 0.10432897224121647 0.1042908889309337 0.10439797965852987 C 0.10384498897488688 0.10432897224121647 0.10265096587883098 0.10211104697791429 0.1029286153498986 0.10264255363215219 C 0.10265096587883098 0.10211104697791429 0.10257438823029953 0.1009700040832609 0.10262499210452797 0.10120893973310251" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.33734345282867095,0.18541376717934466) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.139514166875531 0.11460177227368223 C 0.13960148861646268 0.11470452070916198 0.14069084705900842 0.11605787505869332 0.14056202776671106 0.11583475349943922 C 0.14069084705900842 0.11605787505869332 0.1411014959344651 0.11739960410850578 0.1410599983830994 0.11727923098473143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1410599983830994 0.11727923098473143 C 0.1410096884875864 0.1174031290461647 0.14031457841541628 0.11898912928118477 0.14045627963694338 0.11876600772193067 C 0.14031457841541628 0.11898912928118477 0.1392681923987601 0.12005591319360148 0.1393595837247742 0.11995668969578065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1393595837247742 0.11995668969578065 C 0.13934405106337092 0.12001465837731445 0.13911522310640095 0.12075271857585074 0.13917319178793477 0.12065231387418639 C 0.13911522310640095 0.12075271857585074 0.1385635548447041 0.12121951479728658 0.13866395954636843 0.12116154611575278 C 0.1385635548447041 0.12121951479728658 0.13785239800489502 0.12134793805259214 0.13796833536796266 0.12134793805259214 C 0.13785239800489502 0.12134793805259214 0.13717230648789255 0.12110357743421897 0.1372727111895569 0.12116154611575278 C 0.13717230648789255 0.12110357743421897 0.13670551026645672 0.12055190917252204 0.13676347894799054 0.12065231387418639 C 0.13670551026645672 0.12055190917252204 0.13656155434974784 0.11989872101424684 0.13657708701115112 0.11995668969578065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13657708701115112 0.11995668969578065 C 0.13648569568513702 0.11985746619795981 0.13533868987745487 0.11854288616267658 0.13548039109898197 0.11876600772193067 C 0.13533868987745487 0.11854288616267658 0.13482636245731297 0.11715533292329816 0.13487667235282597 0.11727923098473143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13487667235282597 0.11727923098473143 C 0.13491816990419167 0.11715885786095709 0.1355034622615117 0.11561163194018514 0.13537464296921434 0.11583475349943924 C 0.1355034622615117 0.11561163194018514 0.13650982560132602 0.11449902383820248 0.13642250386039434 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.18809122589039384) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10572371359315942 0.10686175562854937 C 0.10565352828082472 0.10666664992752999 0.10506457034952563 0.10527698243831791 0.10530260171915122 0.10569112142243305 C 0.10506457034952563 0.10527698243831791 0.10432464824140189 0.10395668121238828 0.1042955253754059 0.10437692172385861 C 0.10432464824140189 0.10395668121238828 0.10574263751961796 0.1026921133546419 0.10547733891512716 0.10316967835361111 C 0.10574263751961796 0.1026921133546419 0.10588731700235067 0.1015115317300433 0.10588731700235067 0.1015115317300433 C 0.10588731700235067 0.1015115317300433 0.10521204031063636 0.10364724335258033 0.10547733891512716 0.10316967835361111 C 0.10521204031063636 0.10364724335258033 0.10389421541496376 0.10431481504827654 0.1042955253754059 0.10437692172385861 C 0.10389421541496376 0.10431481504827654 0.10281959462851345 0.1023186823113046 0.10306947915247432 0.1027970383001187 C 0.10281959462851345 0.1023186823113046 0.10275067474483512 0.10129174370611656 0.10279621823164073 0.10150678579097401" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.33734345282867095,0.19076868460144308) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1393595837247742 0.11460177227368223 C 0.1394381732916127 0.11469424586561401 0.14041859588990382 0.1159122647801922 0.1403026585268362 0.11571145537686352 C 0.14041859588990382 0.1159122647801922 0.14078817987781483 0.11711982092502345 0.1407508320815857 0.11701148511362652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1407508320815857 0.11701148511362652 C 0.140705553175624 0.11712299336891646 0.14007995411067095 0.11855039358043452 0.14020748521004534 0.11834958417710584 C 0.14007995411067095 0.11855039358043452 0.13913820669568036 0.11951049910160953 0.13922045888909304 0.11942119795357078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13922045888909304 0.11942119795357078 C 0.13920647949383008 0.11947336976695122 0.13900053433255716 0.1201376239456339 0.1390527061459376 0.12004725971413599 C 0.13900053433255716 0.1201376239456339 0.13850403289702995 0.12055774054492616 0.13859439712852786 0.12050556873154572 C 0.13850403289702995 0.12055774054492616 0.13786399174120179 0.12067332147470118 0.13796833536796266 0.12067332147470118 C 0.13786399174120179 0.12067332147470118 0.13725190937589957 0.12045339691816528 0.13734227360739748 0.12050556873154572 C 0.13725190937589957 0.12045339691816528 0.1368317927766073 0.11995689548263808 0.13688396458998775 0.12004725971413599 C 0.1368317927766073 0.11995689548263808 0.13670223245156934 0.11936902614019035 0.1367162118468323 0.11942119795357078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1367162118468323 0.11942119795357078 C 0.13663395965341962 0.11933189680553204 0.13560165442650568 0.11814877477377715 0.13572918552588006 0.11834958417710584 C 0.13560165442650568 0.11814877477377715 0.13514055974837788 0.11689997685833659 0.13518583865433959 0.11701148511362652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13518583865433959 0.11701148511362652 C 0.13522318645056872 0.11690314930222961 0.1357499495721568 0.11551064597353485 0.1356340122090892 0.11571145537686353 C 0.1357499495721568 0.11551064597353485 0.1366556765779896 0.11450929868175046 0.13657708701115112 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19317839744138737) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10558506757140906 0.10659432009687617 C 0.10552190079030783 0.10641872496595872 0.10499183865213865 0.10516802422566786 0.10520606688480168 0.10554074931137147 C 0.10499183865213865 0.10516802422566786 0.10432590875482727 0.10397975312233121 0.10429969817543087 0.1043579695826545 C 0.10432590875482727 0.10397975312233121 0.10560209910522175 0.10284164205035944 0.10536333036118004 0.10327145054943174 C 0.10560209910522175 0.10284164205035944 0.10573231063968118 0.10177911858822072 0.10573231063968118 0.10177911858822072 C 0.10573231063968118 0.10177911858822072 0.10512456161713832 0.10370125904850404 0.10536333036118004 0.10327145054943174 C 0.10512456161713832 0.10370125904850404 0.10393851921103295 0.10430207357463064 0.10429969817543087 0.1043579695826545 C 0.10393851921103295 0.10430207357463064 0.1029713605032277 0.1025055541113559 0.10319625657479246 0.10293607450128858 C 0.1029713605032277 0.1025055541113559 0.10290933260791721 0.10158130936668665 0.10295032174604224 0.10177484724305835" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.021814492892120386 0.019655031969990255 C 0.02189843635998038 0.019913383399076362 0.020972167044877248 0.021730741504815434 0.02119193389686825 0.021571071540598112 C 0.020972167044877248 0.021730741504815434 0.018957523816237377 0.02141140157638079 0.01917729066822838 0.021571071540598112 C 0.018957523816237377 0.02141140157638079 0.018638675140836235 0.019396680540904147 0.018554731672976242 0.019655031969990255 C 0.018638675140836235 0.019396680540904147 0.02045625905081033 0.01847085439156484 0.020184612282548316 0.01847085439156484 C 0.02045625905081033 0.01847085439156484 0.02189843635998038 0.019913383399076362 0.021814492892120386 0.019655031969990255 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.027502747819324644 0.02603232541511103 C 0.027559906693821416 0.026208242342153215 0.02692919041676106 0.027445719736521604 0.0270788342929523 0.027336997096413098 C 0.02692919041676106 0.027445719736521604 0.025557377428838512 0.02722827445630459 0.02570702130502975 0.027336997096413098 C 0.025557377428838512 0.02722827445630459 0.025340266653154187 0.025856408488068847 0.025283107778657415 0.02603232541511103 C 0.025340266653154187 0.025856408488068847 0.026577897802379964 0.02522599397190689 0.02639292779899103 0.02522599397190689 C 0.026577897802379964 0.02522599397190689 0.027559906693821416 0.026208242342153215 0.027502747819324644 0.02603232541511103 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3363064238473449,0.19588518190454113) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.1711963548580165 0.18697686303569988 C 0.17130379882900187 0.1867993233859663 0.1726737823540102 0.18460526917397238 0.172485682509841 0.18484638723889682 C 0.1726737823540102 0.18460526917397238 0.17353420886123075 0.1840198678414159 0.17345355298804693 0.18408344625660675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17345355298804693 0.18408344625660675 C 0.1734610547976768 0.18479366891109977 0.173454253859911 0.1937469257779561 0.17354357470360512 0.1926061181105231 C 0.173454253859911 0.1937469257779561 0.1722848802103936 0.19820372327874247 0.17238170286371757 0.19777313826580253" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17238170286371757 0.19777313826580253 C 0.17231890264172642 0.1980144778357732 0.17145684490748453 0.2014010126662435 0.1716281001998237 0.20066921310545033 C 0.17145684490748453 0.2014010126662435 0.17021818428529975 0.2070451929861431 0.17032663935564774 0.20655473299532057" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17032663935564774 0.20655473299532057 C 0.17034447385437246 0.20601373351811358 0.17055281595346736 0.19928491678133153 0.17054065334034427 0.20006273926883675 C 0.17055281595346736 0.19928491678133153 0.17046691882752313 0.19698404013495982 0.17047259071312476 0.19722086314525805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17047259071312476 0.19722086314525805 C 0.17048094040644965 0.1967771202422981 0.17063310071176452 0.19104228163394205 0.17057278703302353 0.19189594830973855 C 0.17063310071176452 0.19104228163394205 0.17124831884343256 0.18656693926286333 0.1711963548580165 0.18697686303569988" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33838048180999714,0.19588518190454113) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17483859387460018 0.18697686303569988 C 0.17489055786001625 0.18738678680853643 0.17551134580824887 0.1927274466271251 0.1754621616995931 0.19189594830973855 C 0.17551134580824887 0.1927274466271251 0.17542602330170898 0.19737641738888834 0.1754288031784693 0.19695484284433834" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1754288031784693 0.19695484284433834 C 0.1754121299267112 0.1972090152304208 0.1752101294456235 0.20077039133985541 0.17522872415737223 0.20000491147732796 C 0.1752101294456235 0.20077039133985541 0.17520374517749385 0.2066519086711127 0.1752056666374845 0.2061406011946677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1752056666374845 0.2061406011946677 C 0.17510510886416011 0.20565365798493312 0.17386033816287447 0.199575272718897 0.17399897335759199 0.20029728267785274 C 0.17386033816287447 0.199575272718897 0.17350396687948116 0.19724141493797767 0.1735420443008743 0.19747648168719883" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1735420443008743 0.19747648168719883 C 0.17345448844488576 0.1970706180558092 0.17241131998265286 0.19149003182464044 0.17249137402901157 0.1926061181105231 C 0.17241131998265286 0.19149003182464044 0.17258889755419968 0.18337322360211372 0.17258139574456982 0.18408344625660675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17258139574456982 0.18408344625660675 C 0.17266205161775364 0.18414702467179758 0.17373736606694493 0.18508750530382126 0.17354926622277572 0.18484638723889682 C 0.17373736606694493 0.18508750530382126 0.17494603784558554 0.18715440268543346 0.17483859387460018 0.18697686303569988" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19554338318327485 0.1848550245376526 C 0.19546754884611228 0.1840181330774358 0.19452113835293466 0.1735140220846546 0.19463337113732387 0.17481232701505128 C 0.19452113835293466 0.1735140220846546 0.19416019132337764 0.16881395190271253 0.19419658977060428 0.16927536537289245" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19419658977060428 0.16927536537289245 C 0.19417790560767514 0.1689066259697183 0.19399884798522143 0.16383630665631949 0.1939723798154548 0.1648504925348027 C 0.19399884798522143 0.16383630665631949 0.19455936014049982 0.15645968835578497 0.19451420780780404 0.15710513483109403" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19451420780780404 0.15710513483109403 C 0.19459742603841976 0.15706175542636844 0.19567926303642408 0.15658458197438677 0.19551282657519264 0.15658458197438677 C 0.19567926303642408 0.15658458197438677 0.19659466357319702 0.15714851423581963 0.1965114453425813 0.15710513483109403" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1965114453425813 0.15710513483109403 C 0.19655782469824282 0.15773199339562569 0.1970981913257858 0.16566366163414692 0.19706799761051952 0.1646274376054738 C 0.1970981913257858 0.16566366163414692 0.19685758428538136 0.16994918863931305 0.1968737699257766 0.16953982317517158" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1968737699257766 0.16953982317517158 C 0.1968182671392038 0.17000022676702203 0.19609687092502812 0.17634093305758375 0.19620773648690326 0.175064666277377 C 0.19609687092502812 0.17634093305758375 0.19548802040797247 0.1856708877260089 0.19554338318327485 0.1848550245376526" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

View File

@@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24082127081227234 0.2500879204430701 0.24188766313423996 0.2475101238438775 C 0.24082127081227234 0.2500879204430701 0.2308044715076716 0.2669420916363424 0.23280529274848838 0.2647202078121963 C 0.2308044715076716 0.2669420916363424 0.21538989416043028 0.27417272973363077 0.2178778082444386 0.27417272973363077 C 0.21538989416043028 0.27417272973363077 0.200949502499572 0.2624983239880503 0.2029503237403888 0.2647202078121964 C 0.200949502499572 0.2624983239880503 0.19280156103266954 0.24493232724468494 0.19386795335463716 0.24751012384387755 C 0.19280156103266954 0.24493232724468494 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ">
<g id="編節1">
<g transform="translate(0.33734345282867095,0.13820072278907372) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14087709006993027 0.11460177227368223 C 0.14104140133107057 0.11479511158224094 0.14309122142877786 0.11734168655393362 0.1428488252036139 0.11692184397638673 C 0.14309122142877786 0.11734168655393362 0.14386392973592155 0.11986638647323312 0.14378584477189787 0.11963988320424494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14378584477189787 0.11963988320424494 C 0.14369117782765947 0.11987301926531903 0.14238320559335665 0.12285735851468087 0.142649841441037 0.12243751593713396 C 0.14238320559335665 0.12285735851468087 0.14041424569629155 0.12486470065128054 0.1405862145997335 0.12467799413480772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405862145997335 0.12467799413480772 C 0.14055698715698203 0.1247870724361315 0.14012640698539208 0.12617586291058924 0.14023548528671587 0.12598693375069314 C 0.14012640698539208 0.12617586291058924 0.13908834582395194 0.12705422235488473 0.13927727498384804 0.12694514405356094 C 0.13908834582395194 0.12705422235488473 0.1377501787653151 0.12729587336657855 0.13796833536796266 0.12729587336657855 C 0.1377501787653151 0.12729587336657855 0.13647046659218112 0.12683606575223716 0.13665939575207722 0.12694514405356094 C 0.13647046659218112 0.12683606575223716 0.1355921071478856 0.12579800459079704 0.1357011854492094 0.12598693375069314 C 0.1355921071478856 0.12579800459079704 0.13532122869344038 0.12456891583348394 0.13535045613619184 0.12467799413480772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13535045613619184 0.12467799413480772 C 0.1351784872327499 0.1244912876183349 0.13302019344720797 0.12201767335958708 0.13328682929488833 0.12243751593713396 C 0.13302019344720797 0.12201767335958708 0.1320561590197891 0.11940674714317089 0.1321508259640275 0.11963988320424497" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1321508259640275 0.11963988320424497 C 0.13222891092805117 0.11941337993525679 0.13333024175747538 0.11650200139883984 0.1330878455323114 0.11692184397638673 C 0.13333024175747538 0.11650200139883984 0.13522389192713535 0.11440843296512353 0.13505958066599505 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14323883371963647) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1069461228785802 0.1092196716584617 C 0.10681405683110795 0.10885254586082962 0.10570582857755001 0.1062376413103488 0.1061537265937467 0.10701691687266922 C 0.10570582857755001 0.1062376413103488 0.10431353459171952 0.10375326162204923 0.10425873478140005 0.10454401828453919 C 0.10431353459171952 0.10375326162204923 0.10698173158483083 0.10137375409864323 0.10648252545566354 0.10227237689772953 C 0.10698173158483083 0.10137375409864323 0.10725397155640377 0.09915228149002142 0.10725397155640377 0.09915228149002142 C 0.10725397155640377 0.09915228149002142 0.10598331932649625 0.10317099969681583 0.10648252545566354 0.10227237689772953 C 0.10598331932649625 0.10317099969681583 0.10350359929045722 0.10442715361737563 0.10425873478140005 0.10454401828453919 C 0.10350359929045722 0.10442715361737563 0.10148151069275715 0.10067107770871982 0.10195171251000659 0.10157118889474819 C 0.10148151069275715 0.10067107770871982 0.10135182577255288 0.09873871154730576 0.1014375238779034 0.09914335116836896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.33734345282867095,0.1482769446501992) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1405862145997335 0.11460177227368223 C 0.14073409473475978 0.11477577765138507 0.14257893282269637 0.11706769512590848 0.1423607762200488 0.11668983680611628 C 0.14257893282269637 0.11706769512590848 0.1432743702991256 0.11933992505327808 0.14320409383150431 0.1191360721111887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14320409383150431 0.1191360721111887 C 0.14311889358168975 0.11934589456615538 0.14194171857081725 0.12203179989058098 0.14218169083372958 0.12165394157078878 C 0.14194171857081725 0.12203179989058098 0.14016965466345865 0.12383840781352068 0.14032442667655642 0.12367037194869515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14032442667655642 0.12367037194869515 C 0.14029812197808011 0.12376854241988655 0.1399105998236492 0.12501845384689853 0.1400087702948406 0.12484841760299202 C 0.1399105998236492 0.12501845384689853 0.13897634477835305 0.12580897734676447 0.13914638102225954 0.12571080687557307 C 0.13897634477835305 0.12580897734676447 0.13777199442557986 0.1260264632572889 0.13796833536796266 0.1260264632572889 C 0.13777199442557986 0.1260264632572889 0.1366202534697593 0.12561263640438167 0.1367902897136658 0.12571080687557307 C 0.1366202534697593 0.12561263640438167 0.13582972996989334 0.12467838135908553 0.13592790044108474 0.12484841760299202 C 0.13582972996989334 0.12467838135908553 0.1355859393608926 0.12357220147750375 0.13561224405936892 0.12367037194869515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13561224405936892 0.12367037194869515 C 0.13545747204627115 0.12350233608386962 0.13351500763928342 0.12127608325099658 0.13375497990219576 0.12165394157078878 C 0.13351500763928342 0.12127608325099658 0.13264737665460644 0.11892624965622203 0.132732576904421 0.1191360721111887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.132732576904421 0.1191360721111887 C 0.13280285337204228 0.11893221916909934 0.1337940511185241 0.11631197848632409 0.13357589451587654 0.11668983680611629 C 0.1337940511185241 0.11631197848632409 0.13549833627121813 0.1144277668959794 0.13535045613619184 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.15281124448770567) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10668523592828776 0.10871644452379725 C 0.10656637648556273 0.10838603130592839 0.10556897105736057 0.10603261721049564 0.1059720792719376 0.10673396521658403 C 0.10556897105736057 0.10603261721049564 0.10431590647011313 0.10379667549102603 0.10426658664082561 0.10450835648726699 C 0.10431590647011313 0.10379667549102603 0.10671728376391332 0.10165511871996066 0.10626799824766275 0.10246387923913833 C 0.10671728376391332 0.10165511871996066 0.10696229973832898 0.09965579337220103 0.10696229973832898 0.09965579337220103 C 0.10696229973832898 0.09965579337220103 0.10581871273141219 0.10327263975831599 0.10626799824766275 0.10246387923913833 C 0.10581871273141219 0.10327263975831599 0.10358696469897707 0.10440317828681978 0.10426658664082561 0.10450835648726699 C 0.10358696469897707 0.10440317828681978 0.10176708496104706 0.10102270996902957 0.10219026659657154 0.1018328100364551 C 0.10176708496104706 0.10102270996902957 0.10165036853286316 0.09928358042375693 0.10172749682767865 0.09964775608271381" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.33734345282867095,0.1573455443252121) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14032442667655642 0.11460177227368223 C 0.14045751879808008 0.11475837711361479 0.14211787307722298 0.11682110284068586 0.14192153213484018 0.11648103035287288 C 0.14211787307722298 0.11682110284068586 0.14274376680600934 0.11886610977531849 0.14268051798515016 0.11868264212743805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14268051798515016 0.11868264212743805 C 0.14260383776031704 0.11887148233690806 0.14154438025053176 0.12128879712889112 0.14176035528715286 0.12094872464107814 C 0.14154438025053176 0.12128879712889112 0.1399495227339091 0.12291474425953686 0.14008881754569708 0.12276351198119388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14008881754569708 0.12276351198119388 C 0.14006514331706837 0.12285186540526614 0.13971637337808054 0.1239767856895769 0.1398047268021528 0.12382375307006106 C 0.13971637337808054 0.1239767856895769 0.138875543837314 0.12468825683945627 0.13902857645682987 0.124599903415384 C 0.138875543837314 0.12468825683945627 0.13779162851981813 0.12488399415892827 0.13796833536796266 0.12488399415892827 C 0.13779162851981813 0.12488399415892827 0.13675506165957962 0.12451154999131174 0.13690809427909548 0.124599903415384 C 0.13675506165957962 0.12451154999131174 0.13604359050970033 0.12367072045054522 0.1361319439337726 0.12382375307006106 C 0.13604359050970033 0.12367072045054522 0.13582417896159957 0.12267515855712162 0.13584785319022827 0.12276351198119388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13584785319022827 0.12276351198119388 C 0.13570855837844029 0.12261227970285091 0.13396034041215135 0.12060865215326516 0.13417631544877245 0.12094872464107814 C 0.13396034041215135 0.12060865215326516 0.1331794725259421 0.11849380191796804 0.13325615275077518 0.11868264212743805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13325615275077518 0.11868264212743805 C 0.13331940157163436 0.11849917447955761 0.13421147954346796 0.1161409578650599 0.13401513860108516 0.11648103035287288 C 0.13421147954346796 0.1161409578650599 0.13574533618089257 0.11444516743374968 0.13561224405936892 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.16142641417896791) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10645043767302456 0.1082635401025993 C 0.10634346417457204 0.1079661682065173 0.10544579928919008 0.10584809552062784 0.10580859668230941 0.10647930872610738 C 0.10544579928919008 0.10584809552062784 0.1043180411606674 0.10383574797310519 0.10427365331430863 0.10447626086972205 C 0.1043180411606674 0.10383574797310519 0.10647928072508756 0.10190834687914632 0.10607492376046206 0.10263623134640622 C 0.10647928072508756 0.10190834687914632 0.10669979510206165 0.10010895406616264 0.10669979510206165 0.10010895406616264 C 0.10669979510206165 0.10010895406616264 0.10567056679583656 0.10336411581366611 0.10607492376046206 0.10263623134640622 C 0.10567056679583656 0.10336411581366611 0.10366199356664495 0.10438160048931956 0.10427365331430863 0.10447626086972205 C 0.10366199356664495 0.10438160048931956 0.10202410180250791 0.10133917900330836 0.10240496527447995 0.10206826906399133 C 0.10202410180250791 0.10133917900330836 0.10191905701714243 0.09977396241256296 0.10198847248247636 0.10010172050562416" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.33734345282867095,0.16550728403272374) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14008881754569708 0.11460177227368223 C 0.14020860045506836 0.11474271662962153 0.14170291930629692 0.11659916978398552 0.1415262124581524 0.11629310454495383 C 0.14170291930629692 0.11659916978398552 0.14226622366220465 0.11843967602515486 0.1422092997234314 0.11827455514206248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1422092997234314 0.11827455514206248 C 0.1421402875210816 0.11844451133058548 0.14118677576227487 0.12062009464337023 0.14138115329523385 0.12031402940433854 C 0.14118677576227487 0.12062009464337023 0.13975140399731442 0.1220834470609514 0.13987676932792362 0.12194733801044272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13987676932792362 0.12194733801044272 C 0.1398554625221578 0.12202685609210775 0.13954156957706876 0.12303928434798746 0.1396210876587338 0.1229015549904232 C 0.13954156957706876 0.12303928434798746 0.13878482299037886 0.12367960838287889 0.13892255234794312 0.12360009030121386 C 0.13878482299037886 0.12367960838287889 0.13780929920463258 0.12385577197040366 0.13796833536796266 0.12385577197040366 C 0.13780929920463258 0.12385577197040366 0.13687638903041796 0.12352057221954882 0.13701411838798222 0.12360009030121386 C 0.13687638903041796 0.12352057221954882 0.13623606499552654 0.12276382563285894 0.13631558307719158 0.1229015549904232 C 0.13623606499552654 0.12276382563285894 0.13603859460223597 0.12186781992877768 0.13605990140800178 0.12194733801044272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13605990140800178 0.12194733801044272 C 0.1359345360773926 0.12181122895993404 0.1343611399077325 0.12000796416530685 0.13455551744069147 0.12031402940433854 C 0.1343611399077325 0.12000796416530685 0.13365835881014415 0.11810459895353947 0.13372737101249393 0.11827455514206248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13372737101249393 0.11827455514206248 C 0.13378429495126717 0.1181094342589701 0.13458716512591745 0.11598703930592213 0.13441045827777293 0.11629310454495383 C 0.13458716512591745 0.11598703930592213 0.13596763609959955 0.11446082791774294 0.13584785319022827 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.169180066901104) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10623911924328767 0.10785592612352109 C 0.1061428430946804 0.1075882914170473 0.10533494469783665 0.1056820259997468 0.10566146235164404 0.10625011788467838 C 0.10533494469783665 0.1056820259997468 0.10431996238216623 0.1038709132069764 0.10428001332044333 0.10444737481393157 C 0.10431996238216623 0.1038709132069764 0.1062650779901444 0.10213625222241343 0.10590115672198144 0.10279134824294735 C 0.1062650779901444 0.10213625222241343 0.10646354092942105 0.10051679869072812 0.10646354092942105 0.10051679869072812 C 0.10646354092942105 0.10051679869072812 0.10553723545381849 0.10344644426348126 0.10590115672198144 0.10279134824294735 C 0.10553723545381849 0.10344644426348126 0.10372951954754601 0.10436218047156934 0.10428001332044333 0.10444737481393157 C 0.10372951954754601 0.10436218047156934 0.10225541695982271 0.10162400113415924 0.10259819408459754 0.10228018218877392 C 0.10225541695982271 0.10162400113415924 0.10216087665299375 0.1002153062024884 0.1022233505717943 0.10051028848624348" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.33734345282867095,0.17285284976948423) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13987676932792362 0.11460177227368223 C 0.13998457394635777 0.1147286221940276 0.1413294609124635 0.11639943003295518 0.14117042474913344 0.11612397131782666 C 0.1413294609124635 0.11639943003295518 0.14183643483278044 0.1180558856500076 0.14178520328788452 0.11790727685522445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14178520328788452 0.11790727685522445 C 0.1417230923057697 0.11806023742489516 0.14086493172284364 0.12001826240640144 0.14103987150250674 0.11974280369127292 C 0.14086493172284364 0.12001826240640144 0.13957309713437924 0.12133527958222447 0.1396859259319275 0.12121278143676666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1396859259319275 0.12121278143676666 C 0.13966674980673827 0.1212843477102652 0.13938424615615813 0.12219553314055692 0.13945581242965666 0.12207157671874909 C 0.13938424615615813 0.12219553314055692 0.13870317422813722 0.12277182477195922 0.13882713064994506 0.12270025849846068 C 0.13870317422813722 0.12277182477195922 0.13782520282096558 0.1229303720007315 0.13796833536796266 0.1229303720007315 C 0.13782520282096558 0.1229303720007315 0.13698558366417246 0.12262869222496214 0.13710954008598028 0.12270025849846068 C 0.13698558366417246 0.12262869222496214 0.13640929203277014 0.12194762029694126 0.13648085830626866 0.12207157671874909 C 0.13640929203277014 0.12194762029694126 0.13623156867880862 0.12114121516326812 0.13625074480399785 0.12121278143676666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13625074480399785 0.12121278143676666 C 0.1361379160064496 0.12109028329130885 0.13472185945375548 0.1194673449761444 0.13489679923341857 0.11974280369127292 C 0.13472185945375548 0.1194673449761444 0.13408935646592596 0.11775431628555375 0.13415146744804077 0.11790727685522445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13415146744804077 0.11790727685522445 C 0.1342026989929367 0.1177586680604413 0.13492528215012195 0.11584851260269814 0.13476624598679188 0.11612397131782666 C 0.13492528215012195 0.11584851260269814 0.13616770602643594 0.11447492235333687 0.13605990140800178 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.17615835435102645) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10604893265652446 0.10748907354235071 C 0.10596228412277792 0.1072482023065243 0.10523517556561858 0.10553256343095387 0.10552904145404522 0.10604384612739229 C 0.10523517556561858 0.10553256343095387 0.10432169148151518 0.10390256191746049 0.10428573732596458 0.10442137736372015 C 0.10432169148151518 0.10390256191746049 0.10607229552869551 0.10234136703135382 0.10574476638734885 0.10293095344983434 C 0.10607229552869551 0.10234136703135382 0.10625091217404452 0.10088385885283704 0.10625091217404452 0.10088385885283704 C 0.10625091217404452 0.10088385885283704 0.10541723724600219 0.10352053986831486 0.10574476638734885 0.10293095344983434 C 0.10541723724600219 0.10352053986831486 0.10379029293035699 0.10434470245559413 0.10428573732596458 0.10442137736372015 C 0.10379029293035699 0.10434470245559413 0.10246360060140602 0.10188034105192505 0.10277210001370338 0.10247090400107826 C 0.10246360060140602 0.10188034105192505 0.10237851432525995 0.10061251561342129 0.10243474085218043 0.10087799966880086" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.33734345282867095,0.17946385893256867) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1396859259319275 0.11460177227368223 C 0.13978295008851824 0.11471593720199307 0.14099334835801344 0.11621966425702789 0.14085021581101637 0.11597175141341222 C 0.14099334835801344 0.11621966425702789 0.14144962488629872 0.11771047431237507 0.1414035164958924 0.11757672639707023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414035164958924 0.11757672639707023 C 0.14134761661198905 0.11771439090977387 0.14057527208735562 0.11947661339312951 0.1407327178890524 0.11922870054951384 C 0.14057527208735562 0.11947661339312951 0.13941262095773754 0.12066192885137025 0.139514166875531 0.12055168052045823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.139514166875531 0.12055168052045823 C 0.1394969083628607 0.1206160901666069 0.1392426550773386 0.12143615705386945 0.13930706472348728 0.1213245962742424 C 0.1392426550773386 0.12143615705386945 0.13862969034211983 0.12195481952213148 0.13874125112174687 0.1218904098759828 C 0.13862969034211983 0.12195481952213148 0.1378395160756653 0.12209751202802659 0.13796833536796266 0.12209751202802659 C 0.1378395160756653 0.12209751202802659 0.13708385883455143 0.12182600022983413 0.13719541961417847 0.1218904098759828 C 0.13708385883455143 0.12182600022983413 0.13656519636628942 0.12121303549461535 0.1366296060124381 0.1213245962742424 C 0.13656519636628942 0.12121303549461535 0.13640524534772402 0.12048727087430955 0.13642250386039434 0.12055168052045823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13642250386039434 0.12055168052045823 C 0.1363209579426009 0.1204414321895462 0.13504650704517626 0.11898078770589818 0.13520395284687303 0.11922870054951384 C 0.13504650704517626 0.11898078770589818 0.13447725435612962 0.11743906188436659 0.13453315424003295 0.11757672639707023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13453315424003295 0.11757672639707023 C 0.1345792626304393 0.1174429784817654 0.13522958747190603 0.11572383856979657 0.13508645492490895 0.11597175141341223 C 0.13522958747190603 0.11572383856979657 0.1363477689605886 0.1144876073453714 0.13625074480399785 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.18243881305595666) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10587776472843759 0.10715890621929738 C 0.1057997810480657 0.10694212210705362 0.10514538334662228 0.10539804711904018 0.10540986264620626 0.10585820154583477 C 0.10514538334662228 0.10539804711904018 0.10432324767092925 0.10393104575689618 0.1042908889309337 0.10439797965852987 C 0.10432324767092925 0.10393104575689618 0.10589879131339153 0.10252597035940017 0.10560401508617955 0.10305659813603263 C 0.10589879131339153 0.10252597035940017 0.10605954629420564 0.10121421299873508 0.10605954629420564 0.10121421299873508 C 0.10605954629420564 0.10121421299873508 0.10530923885896756 0.10358722591266509 0.10560401508617955 0.10305659813603263 C 0.10530923885896756 0.10358722591266509 0.10384498897488688 0.10432897224121647 0.1042908889309337 0.10439797965852987 C 0.10384498897488688 0.10432897224121647 0.10265096587883098 0.10211104697791429 0.1029286153498986 0.10264255363215219 C 0.10265096587883098 0.10211104697791429 0.10257438823029953 0.1009700040832609 0.10262499210452797 0.10120893973310251" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.33734345282867095,0.18541376717934466) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.139514166875531 0.11460177227368223 C 0.13960148861646268 0.11470452070916198 0.14069084705900842 0.11605787505869332 0.14056202776671106 0.11583475349943922 C 0.14069084705900842 0.11605787505869332 0.1411014959344651 0.11739960410850578 0.1410599983830994 0.11727923098473143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1410599983830994 0.11727923098473143 C 0.1410096884875864 0.1174031290461647 0.14031457841541628 0.11898912928118477 0.14045627963694338 0.11876600772193067 C 0.14031457841541628 0.11898912928118477 0.1392681923987601 0.12005591319360148 0.1393595837247742 0.11995668969578065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1393595837247742 0.11995668969578065 C 0.13934405106337092 0.12001465837731445 0.13911522310640095 0.12075271857585074 0.13917319178793477 0.12065231387418639 C 0.13911522310640095 0.12075271857585074 0.1385635548447041 0.12121951479728658 0.13866395954636843 0.12116154611575278 C 0.1385635548447041 0.12121951479728658 0.13785239800489502 0.12134793805259214 0.13796833536796266 0.12134793805259214 C 0.13785239800489502 0.12134793805259214 0.13717230648789255 0.12110357743421897 0.1372727111895569 0.12116154611575278 C 0.13717230648789255 0.12110357743421897 0.13670551026645672 0.12055190917252204 0.13676347894799054 0.12065231387418639 C 0.13670551026645672 0.12055190917252204 0.13656155434974784 0.11989872101424684 0.13657708701115112 0.11995668969578065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13657708701115112 0.11995668969578065 C 0.13648569568513702 0.11985746619795981 0.13533868987745487 0.11854288616267658 0.13548039109898197 0.11876600772193067 C 0.13533868987745487 0.11854288616267658 0.13482636245731297 0.11715533292329816 0.13487667235282597 0.11727923098473143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13487667235282597 0.11727923098473143 C 0.13491816990419167 0.11715885786095709 0.1355034622615117 0.11561163194018514 0.13537464296921434 0.11583475349943924 C 0.1355034622615117 0.11561163194018514 0.13650982560132602 0.11449902383820248 0.13642250386039434 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.18809122589039384) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10572371359315942 0.10686175562854937 C 0.10565352828082472 0.10666664992752999 0.10506457034952563 0.10527698243831791 0.10530260171915122 0.10569112142243305 C 0.10506457034952563 0.10527698243831791 0.10432464824140189 0.10395668121238828 0.1042955253754059 0.10437692172385861 C 0.10432464824140189 0.10395668121238828 0.10574263751961796 0.1026921133546419 0.10547733891512716 0.10316967835361111 C 0.10574263751961796 0.1026921133546419 0.10588731700235067 0.1015115317300433 0.10588731700235067 0.1015115317300433 C 0.10588731700235067 0.1015115317300433 0.10521204031063636 0.10364724335258033 0.10547733891512716 0.10316967835361111 C 0.10521204031063636 0.10364724335258033 0.10389421541496376 0.10431481504827654 0.1042955253754059 0.10437692172385861 C 0.10389421541496376 0.10431481504827654 0.10281959462851345 0.1023186823113046 0.10306947915247432 0.1027970383001187 C 0.10281959462851345 0.1023186823113046 0.10275067474483512 0.10129174370611656 0.10279621823164073 0.10150678579097401" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.33734345282867095,0.19076868460144308) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1393595837247742 0.11460177227368223 C 0.1394381732916127 0.11469424586561401 0.14041859588990382 0.1159122647801922 0.1403026585268362 0.11571145537686352 C 0.14041859588990382 0.1159122647801922 0.14078817987781483 0.11711982092502345 0.1407508320815857 0.11701148511362652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1407508320815857 0.11701148511362652 C 0.140705553175624 0.11712299336891646 0.14007995411067095 0.11855039358043452 0.14020748521004534 0.11834958417710584 C 0.14007995411067095 0.11855039358043452 0.13913820669568036 0.11951049910160953 0.13922045888909304 0.11942119795357078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13922045888909304 0.11942119795357078 C 0.13920647949383008 0.11947336976695122 0.13900053433255716 0.1201376239456339 0.1390527061459376 0.12004725971413599 C 0.13900053433255716 0.1201376239456339 0.13850403289702995 0.12055774054492616 0.13859439712852786 0.12050556873154572 C 0.13850403289702995 0.12055774054492616 0.13786399174120179 0.12067332147470118 0.13796833536796266 0.12067332147470118 C 0.13786399174120179 0.12067332147470118 0.13725190937589957 0.12045339691816528 0.13734227360739748 0.12050556873154572 C 0.13725190937589957 0.12045339691816528 0.1368317927766073 0.11995689548263808 0.13688396458998775 0.12004725971413599 C 0.1368317927766073 0.11995689548263808 0.13670223245156934 0.11936902614019035 0.1367162118468323 0.11942119795357078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1367162118468323 0.11942119795357078 C 0.13663395965341962 0.11933189680553204 0.13560165442650568 0.11814877477377715 0.13572918552588006 0.11834958417710584 C 0.13560165442650568 0.11814877477377715 0.13514055974837788 0.11689997685833659 0.13518583865433959 0.11701148511362652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13518583865433959 0.11701148511362652 C 0.13522318645056872 0.11690314930222961 0.1357499495721568 0.11551064597353485 0.1356340122090892 0.11571145537686353 C 0.1357499495721568 0.11551064597353485 0.1366556765779896 0.11450929868175046 0.13657708701115112 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19317839744138737) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10558506757140906 0.10659432009687617 C 0.10552190079030783 0.10641872496595872 0.10499183865213865 0.10516802422566786 0.10520606688480168 0.10554074931137147 C 0.10499183865213865 0.10516802422566786 0.10432590875482727 0.10397975312233121 0.10429969817543087 0.1043579695826545 C 0.10432590875482727 0.10397975312233121 0.10560209910522175 0.10284164205035944 0.10536333036118004 0.10327145054943174 C 0.10560209910522175 0.10284164205035944 0.10573231063968118 0.10177911858822072 0.10573231063968118 0.10177911858822072 C 0.10573231063968118 0.10177911858822072 0.10512456161713832 0.10370125904850404 0.10536333036118004 0.10327145054943174 C 0.10512456161713832 0.10370125904850404 0.10393851921103295 0.10430207357463064 0.10429969817543087 0.1043579695826545 C 0.10393851921103295 0.10430207357463064 0.1029713605032277 0.1025055541113559 0.10319625657479246 0.10293607450128858 C 0.1029713605032277 0.1025055541113559 0.10290933260791721 0.10158130936668665 0.10295032174604224 0.10177484724305835" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.021814492892120386 0.019655031969990255 C 0.02189843635998038 0.019913383399076362 0.020972167044877248 0.021730741504815434 0.02119193389686825 0.021571071540598112 C 0.020972167044877248 0.021730741504815434 0.018957523816237377 0.02141140157638079 0.01917729066822838 0.021571071540598112 C 0.018957523816237377 0.02141140157638079 0.018638675140836235 0.019396680540904147 0.018554731672976242 0.019655031969990255 C 0.018638675140836235 0.019396680540904147 0.02045625905081033 0.01847085439156484 0.020184612282548316 0.01847085439156484 C 0.02045625905081033 0.01847085439156484 0.02189843635998038 0.019913383399076362 0.021814492892120386 0.019655031969990255 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.027502747819324644 0.02603232541511103 C 0.027559906693821416 0.026208242342153215 0.02692919041676106 0.027445719736521604 0.0270788342929523 0.027336997096413098 C 0.02692919041676106 0.027445719736521604 0.025557377428838512 0.02722827445630459 0.02570702130502975 0.027336997096413098 C 0.025557377428838512 0.02722827445630459 0.025340266653154187 0.025856408488068847 0.025283107778657415 0.02603232541511103 C 0.025340266653154187 0.025856408488068847 0.026577897802379964 0.02522599397190689 0.02639292779899103 0.02522599397190689 C 0.026577897802379964 0.02522599397190689 0.027559906693821416 0.026208242342153215 0.027502747819324644 0.02603232541511103 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33644123761491723,0.19588518190454113) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17148951458201336 0.18683582756590253 C 0.17157828965444405 0.18667004087198538 0.17271376113328235 0.18461702212978884 0.17255481545118173 0.18484638723889682 C 0.17271376113328235 0.18461702212978884 0.17346703337689084 0.1840198678414159 0.1733968627672209 0.18408344625660675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1733968627672209 0.18408344625660675 C 0.17340338934159888 0.18479366891109977 0.17334714445444638 0.19438600494226355 0.17347518165975653 0.1926061181105231 C 0.17334714445444638 0.19438600494226355 0.17172585252381106 0.2065117524147393 0.17186041630349919 0.20544208823749188" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17186041630349919 0.20544208823749188 C 0.17175503872128872 0.20545109144255305 0.17039614509587317 0.2055671769226865 0.17059588531697345 0.20555012669822584 C 0.17039614509587317 0.2055671769226865 0.16936917101140608 0.2056547379504195 0.16946353365029587 0.20564669093101998" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16946353365029587 0.20564669093101998 C 0.1695007977925261 0.20480270426315716 0.17007953510136858 0.1939512789695733 0.1699107033570588 0.1955188509166664 C 0.17007953510136858 0.1939512789695733 0.17162108218409292 0.1861122422866722 0.17148951458201336 0.18683582756590253" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33824566804242473,0.19588518190454113) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17460184833852224 0.18699893819217947 C 0.17471364853983493 0.18770517936460462 0.1760961468742498 0.19703653758792297 0.1759434507542745 0.19547383226128143 C 0.1760961468742498 0.19703653758792297 0.17647509769688824 0.20660786626609423 0.17643420177822564 0.20575140211187787" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17643420177822564 0.20575140211187787 C 0.17633115308191838 0.2057381740079872 0.17499971559008112 0.20556796263653465 0.17519761742253848 0.2055926648651898 C 0.17499971559008112 0.20556796263653465 0.17396452665258724 0.2054435012432517 0.17405937978873734 0.20545497536801616" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17405937978873734 0.20545497536801616 C 0.1739804731185663 0.20444659390555034 0.17299405859473957 0.19157286547486627 0.1731124997466847 0.19335439781842634 C 0.17299405859473957 0.19157286547486627 0.1725985514836217 0.18330343636420116 0.17263808596539576 0.1840765872452954" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17263808596539576 0.1840765872452954 C 0.1727082565750657 0.18414080144463815 0.17364378014586207 0.18509068688298203 0.17348013328143486 0.18484715763740836 C 0.17364378014586207 0.18509068688298203 0.17469532459327952 0.1871782532384104 0.17460184833852224 0.18699893819217947" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19679189391400653 0.1789287945712962 C 0.1966804307832692 0.1789255958868412 0.19524420482150365 0.17888721167338117 0.19545433634515832 0.17889041035783618 C 0.19524420482150365 0.17888721167338117 0.194171647237233 0.17889041035783618 0.19427031563015035 0.17889041035783618" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19427031563015035 0.17889041035783618 C 0.19423517598261208 0.1779434615109362 0.19388123766923537 0.1657095169702654 0.19384863985969103 0.16752702419503648 C 0.19388123766923537 0.1657095169702654 0.19472922680176513 0.15620976528271197 0.1946614893446825 0.15708032366058308" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1946614893446825 0.15708032366058308 C 0.19473243411389168 0.15703901185340005 0.19565471611361102 0.1565842023407908 0.19551282657519264 0.15658458197438677 C 0.19565471611361102 0.1565842023407908 0.19643510857491212 0.15711670023101856 0.19636416380570293 0.1570757680574315" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19636416380570293 0.1570757680574315 C 0.1964339478193548 0.15792985341476978 0.1972372161452175 0.16914587788831298 0.19720157196952554 0.1673247923454909 C 0.1972372161452175 0.16914587788831298 0.19675775407604662 0.17989579475677997 0.19679189391400653 0.1789287945712962" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 36 KiB

View File

@@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24082127081227234 0.2500879204430701 0.24188766313423996 0.2475101238438775 C 0.24082127081227234 0.2500879204430701 0.2308044715076716 0.2669420916363424 0.23280529274848838 0.2647202078121963 C 0.2308044715076716 0.2669420916363424 0.21538989416043028 0.27417272973363077 0.2178778082444386 0.27417272973363077 C 0.21538989416043028 0.27417272973363077 0.200949502499572 0.2624983239880503 0.2029503237403888 0.2647202078121964 C 0.200949502499572 0.2624983239880503 0.19280156103266954 0.24493232724468494 0.19386795335463716 0.24751012384387755 C 0.19280156103266954 0.24493232724468494 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ">
<g id="編節1">
<g transform="translate(0.33734345282867095,0.13820072278907372) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14087709006993027 0.11460177227368223 C 0.14104140133107057 0.11479511158224094 0.14309122142877786 0.11734168655393362 0.1428488252036139 0.11692184397638673 C 0.14309122142877786 0.11734168655393362 0.14386392973592155 0.11986638647323312 0.14378584477189787 0.11963988320424494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14378584477189787 0.11963988320424494 C 0.14369117782765947 0.11987301926531903 0.14238320559335665 0.12285735851468087 0.142649841441037 0.12243751593713396 C 0.14238320559335665 0.12285735851468087 0.14041424569629155 0.12486470065128054 0.1405862145997335 0.12467799413480772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405862145997335 0.12467799413480772 C 0.14055698715698203 0.1247870724361315 0.14012640698539208 0.12617586291058924 0.14023548528671587 0.12598693375069314 C 0.14012640698539208 0.12617586291058924 0.13908834582395194 0.12705422235488473 0.13927727498384804 0.12694514405356094 C 0.13908834582395194 0.12705422235488473 0.1377501787653151 0.12729587336657855 0.13796833536796266 0.12729587336657855 C 0.1377501787653151 0.12729587336657855 0.13647046659218112 0.12683606575223716 0.13665939575207722 0.12694514405356094 C 0.13647046659218112 0.12683606575223716 0.1355921071478856 0.12579800459079704 0.1357011854492094 0.12598693375069314 C 0.1355921071478856 0.12579800459079704 0.13532122869344038 0.12456891583348394 0.13535045613619184 0.12467799413480772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13535045613619184 0.12467799413480772 C 0.1351784872327499 0.1244912876183349 0.13302019344720797 0.12201767335958708 0.13328682929488833 0.12243751593713396 C 0.13302019344720797 0.12201767335958708 0.1320561590197891 0.11940674714317089 0.1321508259640275 0.11963988320424497" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1321508259640275 0.11963988320424497 C 0.13222891092805117 0.11941337993525679 0.13333024175747538 0.11650200139883984 0.1330878455323114 0.11692184397638673 C 0.13333024175747538 0.11650200139883984 0.13522389192713535 0.11440843296512353 0.13505958066599505 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14323883371963647) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1069461228785802 0.1092196716584617 C 0.10681405683110795 0.10885254586082962 0.10570582857755001 0.1062376413103488 0.1061537265937467 0.10701691687266922 C 0.10570582857755001 0.1062376413103488 0.10431353459171952 0.10375326162204923 0.10425873478140005 0.10454401828453919 C 0.10431353459171952 0.10375326162204923 0.10698173158483083 0.10137375409864323 0.10648252545566354 0.10227237689772953 C 0.10698173158483083 0.10137375409864323 0.10725397155640377 0.09915228149002142 0.10725397155640377 0.09915228149002142 C 0.10725397155640377 0.09915228149002142 0.10598331932649625 0.10317099969681583 0.10648252545566354 0.10227237689772953 C 0.10598331932649625 0.10317099969681583 0.10350359929045722 0.10442715361737563 0.10425873478140005 0.10454401828453919 C 0.10350359929045722 0.10442715361737563 0.10148151069275715 0.10067107770871982 0.10195171251000659 0.10157118889474819 C 0.10148151069275715 0.10067107770871982 0.10135182577255288 0.09873871154730576 0.1014375238779034 0.09914335116836896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.33734345282867095,0.1482769446501992) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1405862145997335 0.11460177227368223 C 0.14073409473475978 0.11477577765138507 0.14257893282269637 0.11706769512590848 0.1423607762200488 0.11668983680611628 C 0.14257893282269637 0.11706769512590848 0.1432743702991256 0.11933992505327808 0.14320409383150431 0.1191360721111887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14320409383150431 0.1191360721111887 C 0.14311889358168975 0.11934589456615538 0.14194171857081725 0.12203179989058098 0.14218169083372958 0.12165394157078878 C 0.14194171857081725 0.12203179989058098 0.14016965466345865 0.12383840781352068 0.14032442667655642 0.12367037194869515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14032442667655642 0.12367037194869515 C 0.14029812197808011 0.12376854241988655 0.1399105998236492 0.12501845384689853 0.1400087702948406 0.12484841760299202 C 0.1399105998236492 0.12501845384689853 0.13897634477835305 0.12580897734676447 0.13914638102225954 0.12571080687557307 C 0.13897634477835305 0.12580897734676447 0.13777199442557986 0.1260264632572889 0.13796833536796266 0.1260264632572889 C 0.13777199442557986 0.1260264632572889 0.1366202534697593 0.12561263640438167 0.1367902897136658 0.12571080687557307 C 0.1366202534697593 0.12561263640438167 0.13582972996989334 0.12467838135908553 0.13592790044108474 0.12484841760299202 C 0.13582972996989334 0.12467838135908553 0.1355859393608926 0.12357220147750375 0.13561224405936892 0.12367037194869515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13561224405936892 0.12367037194869515 C 0.13545747204627115 0.12350233608386962 0.13351500763928342 0.12127608325099658 0.13375497990219576 0.12165394157078878 C 0.13351500763928342 0.12127608325099658 0.13264737665460644 0.11892624965622203 0.132732576904421 0.1191360721111887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.132732576904421 0.1191360721111887 C 0.13280285337204228 0.11893221916909934 0.1337940511185241 0.11631197848632409 0.13357589451587654 0.11668983680611629 C 0.1337940511185241 0.11631197848632409 0.13549833627121813 0.1144277668959794 0.13535045613619184 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.15281124448770567) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10668523592828776 0.10871644452379725 C 0.10656637648556273 0.10838603130592839 0.10556897105736057 0.10603261721049564 0.1059720792719376 0.10673396521658403 C 0.10556897105736057 0.10603261721049564 0.10431590647011313 0.10379667549102603 0.10426658664082561 0.10450835648726699 C 0.10431590647011313 0.10379667549102603 0.10671728376391332 0.10165511871996066 0.10626799824766275 0.10246387923913833 C 0.10671728376391332 0.10165511871996066 0.10696229973832898 0.09965579337220103 0.10696229973832898 0.09965579337220103 C 0.10696229973832898 0.09965579337220103 0.10581871273141219 0.10327263975831599 0.10626799824766275 0.10246387923913833 C 0.10581871273141219 0.10327263975831599 0.10358696469897707 0.10440317828681978 0.10426658664082561 0.10450835648726699 C 0.10358696469897707 0.10440317828681978 0.10176708496104706 0.10102270996902957 0.10219026659657154 0.1018328100364551 C 0.10176708496104706 0.10102270996902957 0.10165036853286316 0.09928358042375693 0.10172749682767865 0.09964775608271381" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.33734345282867095,0.1573455443252121) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14032442667655642 0.11460177227368223 C 0.14045751879808008 0.11475837711361479 0.14211787307722298 0.11682110284068586 0.14192153213484018 0.11648103035287288 C 0.14211787307722298 0.11682110284068586 0.14274376680600934 0.11886610977531849 0.14268051798515016 0.11868264212743805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14268051798515016 0.11868264212743805 C 0.14260383776031704 0.11887148233690806 0.14154438025053176 0.12128879712889112 0.14176035528715286 0.12094872464107814 C 0.14154438025053176 0.12128879712889112 0.1399495227339091 0.12291474425953686 0.14008881754569708 0.12276351198119388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14008881754569708 0.12276351198119388 C 0.14006514331706837 0.12285186540526614 0.13971637337808054 0.1239767856895769 0.1398047268021528 0.12382375307006106 C 0.13971637337808054 0.1239767856895769 0.138875543837314 0.12468825683945627 0.13902857645682987 0.124599903415384 C 0.138875543837314 0.12468825683945627 0.13779162851981813 0.12488399415892827 0.13796833536796266 0.12488399415892827 C 0.13779162851981813 0.12488399415892827 0.13675506165957962 0.12451154999131174 0.13690809427909548 0.124599903415384 C 0.13675506165957962 0.12451154999131174 0.13604359050970033 0.12367072045054522 0.1361319439337726 0.12382375307006106 C 0.13604359050970033 0.12367072045054522 0.13582417896159957 0.12267515855712162 0.13584785319022827 0.12276351198119388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13584785319022827 0.12276351198119388 C 0.13570855837844029 0.12261227970285091 0.13396034041215135 0.12060865215326516 0.13417631544877245 0.12094872464107814 C 0.13396034041215135 0.12060865215326516 0.1331794725259421 0.11849380191796804 0.13325615275077518 0.11868264212743805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13325615275077518 0.11868264212743805 C 0.13331940157163436 0.11849917447955761 0.13421147954346796 0.1161409578650599 0.13401513860108516 0.11648103035287288 C 0.13421147954346796 0.1161409578650599 0.13574533618089257 0.11444516743374968 0.13561224405936892 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.16142641417896791) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10645043767302456 0.1082635401025993 C 0.10634346417457204 0.1079661682065173 0.10544579928919008 0.10584809552062784 0.10580859668230941 0.10647930872610738 C 0.10544579928919008 0.10584809552062784 0.1043180411606674 0.10383574797310519 0.10427365331430863 0.10447626086972205 C 0.1043180411606674 0.10383574797310519 0.10647928072508756 0.10190834687914632 0.10607492376046206 0.10263623134640622 C 0.10647928072508756 0.10190834687914632 0.10669979510206165 0.10010895406616264 0.10669979510206165 0.10010895406616264 C 0.10669979510206165 0.10010895406616264 0.10567056679583656 0.10336411581366611 0.10607492376046206 0.10263623134640622 C 0.10567056679583656 0.10336411581366611 0.10366199356664495 0.10438160048931956 0.10427365331430863 0.10447626086972205 C 0.10366199356664495 0.10438160048931956 0.10202410180250791 0.10133917900330836 0.10240496527447995 0.10206826906399133 C 0.10202410180250791 0.10133917900330836 0.10191905701714243 0.09977396241256296 0.10198847248247636 0.10010172050562416" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.33734345282867095,0.16550728403272374) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14008881754569708 0.11460177227368223 C 0.14020860045506836 0.11474271662962153 0.14170291930629692 0.11659916978398552 0.1415262124581524 0.11629310454495383 C 0.14170291930629692 0.11659916978398552 0.14226622366220465 0.11843967602515486 0.1422092997234314 0.11827455514206248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1422092997234314 0.11827455514206248 C 0.1421402875210816 0.11844451133058548 0.14118677576227487 0.12062009464337023 0.14138115329523385 0.12031402940433854 C 0.14118677576227487 0.12062009464337023 0.13975140399731442 0.1220834470609514 0.13987676932792362 0.12194733801044272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13987676932792362 0.12194733801044272 C 0.1398554625221578 0.12202685609210775 0.13954156957706876 0.12303928434798746 0.1396210876587338 0.1229015549904232 C 0.13954156957706876 0.12303928434798746 0.13878482299037886 0.12367960838287889 0.13892255234794312 0.12360009030121386 C 0.13878482299037886 0.12367960838287889 0.13780929920463258 0.12385577197040366 0.13796833536796266 0.12385577197040366 C 0.13780929920463258 0.12385577197040366 0.13687638903041796 0.12352057221954882 0.13701411838798222 0.12360009030121386 C 0.13687638903041796 0.12352057221954882 0.13623606499552654 0.12276382563285894 0.13631558307719158 0.1229015549904232 C 0.13623606499552654 0.12276382563285894 0.13603859460223597 0.12186781992877768 0.13605990140800178 0.12194733801044272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13605990140800178 0.12194733801044272 C 0.1359345360773926 0.12181122895993404 0.1343611399077325 0.12000796416530685 0.13455551744069147 0.12031402940433854 C 0.1343611399077325 0.12000796416530685 0.13365835881014415 0.11810459895353947 0.13372737101249393 0.11827455514206248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13372737101249393 0.11827455514206248 C 0.13378429495126717 0.1181094342589701 0.13458716512591745 0.11598703930592213 0.13441045827777293 0.11629310454495383 C 0.13458716512591745 0.11598703930592213 0.13596763609959955 0.11446082791774294 0.13584785319022827 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.169180066901104) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10623911924328767 0.10785592612352109 C 0.1061428430946804 0.1075882914170473 0.10533494469783665 0.1056820259997468 0.10566146235164404 0.10625011788467838 C 0.10533494469783665 0.1056820259997468 0.10431996238216623 0.1038709132069764 0.10428001332044333 0.10444737481393157 C 0.10431996238216623 0.1038709132069764 0.1062650779901444 0.10213625222241343 0.10590115672198144 0.10279134824294735 C 0.1062650779901444 0.10213625222241343 0.10646354092942105 0.10051679869072812 0.10646354092942105 0.10051679869072812 C 0.10646354092942105 0.10051679869072812 0.10553723545381849 0.10344644426348126 0.10590115672198144 0.10279134824294735 C 0.10553723545381849 0.10344644426348126 0.10372951954754601 0.10436218047156934 0.10428001332044333 0.10444737481393157 C 0.10372951954754601 0.10436218047156934 0.10225541695982271 0.10162400113415924 0.10259819408459754 0.10228018218877392 C 0.10225541695982271 0.10162400113415924 0.10216087665299375 0.1002153062024884 0.1022233505717943 0.10051028848624348" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.33734345282867095,0.17285284976948423) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13987676932792362 0.11460177227368223 C 0.13998457394635777 0.1147286221940276 0.1413294609124635 0.11639943003295518 0.14117042474913344 0.11612397131782666 C 0.1413294609124635 0.11639943003295518 0.14183643483278044 0.1180558856500076 0.14178520328788452 0.11790727685522445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14178520328788452 0.11790727685522445 C 0.1417230923057697 0.11806023742489516 0.14086493172284364 0.12001826240640144 0.14103987150250674 0.11974280369127292 C 0.14086493172284364 0.12001826240640144 0.13957309713437924 0.12133527958222447 0.1396859259319275 0.12121278143676666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1396859259319275 0.12121278143676666 C 0.13966674980673827 0.1212843477102652 0.13938424615615813 0.12219553314055692 0.13945581242965666 0.12207157671874909 C 0.13938424615615813 0.12219553314055692 0.13870317422813722 0.12277182477195922 0.13882713064994506 0.12270025849846068 C 0.13870317422813722 0.12277182477195922 0.13782520282096558 0.1229303720007315 0.13796833536796266 0.1229303720007315 C 0.13782520282096558 0.1229303720007315 0.13698558366417246 0.12262869222496214 0.13710954008598028 0.12270025849846068 C 0.13698558366417246 0.12262869222496214 0.13640929203277014 0.12194762029694126 0.13648085830626866 0.12207157671874909 C 0.13640929203277014 0.12194762029694126 0.13623156867880862 0.12114121516326812 0.13625074480399785 0.12121278143676666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13625074480399785 0.12121278143676666 C 0.1361379160064496 0.12109028329130885 0.13472185945375548 0.1194673449761444 0.13489679923341857 0.11974280369127292 C 0.13472185945375548 0.1194673449761444 0.13408935646592596 0.11775431628555375 0.13415146744804077 0.11790727685522445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13415146744804077 0.11790727685522445 C 0.1342026989929367 0.1177586680604413 0.13492528215012195 0.11584851260269814 0.13476624598679188 0.11612397131782666 C 0.13492528215012195 0.11584851260269814 0.13616770602643594 0.11447492235333687 0.13605990140800178 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.17615835435102645) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10604893265652446 0.10748907354235071 C 0.10596228412277792 0.1072482023065243 0.10523517556561858 0.10553256343095387 0.10552904145404522 0.10604384612739229 C 0.10523517556561858 0.10553256343095387 0.10432169148151518 0.10390256191746049 0.10428573732596458 0.10442137736372015 C 0.10432169148151518 0.10390256191746049 0.10607229552869551 0.10234136703135382 0.10574476638734885 0.10293095344983434 C 0.10607229552869551 0.10234136703135382 0.10625091217404452 0.10088385885283704 0.10625091217404452 0.10088385885283704 C 0.10625091217404452 0.10088385885283704 0.10541723724600219 0.10352053986831486 0.10574476638734885 0.10293095344983434 C 0.10541723724600219 0.10352053986831486 0.10379029293035699 0.10434470245559413 0.10428573732596458 0.10442137736372015 C 0.10379029293035699 0.10434470245559413 0.10246360060140602 0.10188034105192505 0.10277210001370338 0.10247090400107826 C 0.10246360060140602 0.10188034105192505 0.10237851432525995 0.10061251561342129 0.10243474085218043 0.10087799966880086" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.33734345282867095,0.17946385893256867) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1396859259319275 0.11460177227368223 C 0.13978295008851824 0.11471593720199307 0.14099334835801344 0.11621966425702789 0.14085021581101637 0.11597175141341222 C 0.14099334835801344 0.11621966425702789 0.14144962488629872 0.11771047431237507 0.1414035164958924 0.11757672639707023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414035164958924 0.11757672639707023 C 0.14134761661198905 0.11771439090977387 0.14057527208735562 0.11947661339312951 0.1407327178890524 0.11922870054951384 C 0.14057527208735562 0.11947661339312951 0.13941262095773754 0.12066192885137025 0.139514166875531 0.12055168052045823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.139514166875531 0.12055168052045823 C 0.1394969083628607 0.1206160901666069 0.1392426550773386 0.12143615705386945 0.13930706472348728 0.1213245962742424 C 0.1392426550773386 0.12143615705386945 0.13862969034211983 0.12195481952213148 0.13874125112174687 0.1218904098759828 C 0.13862969034211983 0.12195481952213148 0.1378395160756653 0.12209751202802659 0.13796833536796266 0.12209751202802659 C 0.1378395160756653 0.12209751202802659 0.13708385883455143 0.12182600022983413 0.13719541961417847 0.1218904098759828 C 0.13708385883455143 0.12182600022983413 0.13656519636628942 0.12121303549461535 0.1366296060124381 0.1213245962742424 C 0.13656519636628942 0.12121303549461535 0.13640524534772402 0.12048727087430955 0.13642250386039434 0.12055168052045823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13642250386039434 0.12055168052045823 C 0.1363209579426009 0.1204414321895462 0.13504650704517626 0.11898078770589818 0.13520395284687303 0.11922870054951384 C 0.13504650704517626 0.11898078770589818 0.13447725435612962 0.11743906188436659 0.13453315424003295 0.11757672639707023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13453315424003295 0.11757672639707023 C 0.1345792626304393 0.1174429784817654 0.13522958747190603 0.11572383856979657 0.13508645492490895 0.11597175141341223 C 0.13522958747190603 0.11572383856979657 0.1363477689605886 0.1144876073453714 0.13625074480399785 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.18243881305595666) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10587776472843759 0.10715890621929738 C 0.1057997810480657 0.10694212210705362 0.10514538334662228 0.10539804711904018 0.10540986264620626 0.10585820154583477 C 0.10514538334662228 0.10539804711904018 0.10432324767092925 0.10393104575689618 0.1042908889309337 0.10439797965852987 C 0.10432324767092925 0.10393104575689618 0.10589879131339153 0.10252597035940017 0.10560401508617955 0.10305659813603263 C 0.10589879131339153 0.10252597035940017 0.10605954629420564 0.10121421299873508 0.10605954629420564 0.10121421299873508 C 0.10605954629420564 0.10121421299873508 0.10530923885896756 0.10358722591266509 0.10560401508617955 0.10305659813603263 C 0.10530923885896756 0.10358722591266509 0.10384498897488688 0.10432897224121647 0.1042908889309337 0.10439797965852987 C 0.10384498897488688 0.10432897224121647 0.10265096587883098 0.10211104697791429 0.1029286153498986 0.10264255363215219 C 0.10265096587883098 0.10211104697791429 0.10257438823029953 0.1009700040832609 0.10262499210452797 0.10120893973310251" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.33734345282867095,0.18541376717934466) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.139514166875531 0.11460177227368223 C 0.13960148861646268 0.11470452070916198 0.14069084705900842 0.11605787505869332 0.14056202776671106 0.11583475349943922 C 0.14069084705900842 0.11605787505869332 0.1411014959344651 0.11739960410850578 0.1410599983830994 0.11727923098473143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1410599983830994 0.11727923098473143 C 0.1410096884875864 0.1174031290461647 0.14031457841541628 0.11898912928118477 0.14045627963694338 0.11876600772193067 C 0.14031457841541628 0.11898912928118477 0.1392681923987601 0.12005591319360148 0.1393595837247742 0.11995668969578065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1393595837247742 0.11995668969578065 C 0.13934405106337092 0.12001465837731445 0.13911522310640095 0.12075271857585074 0.13917319178793477 0.12065231387418639 C 0.13911522310640095 0.12075271857585074 0.1385635548447041 0.12121951479728658 0.13866395954636843 0.12116154611575278 C 0.1385635548447041 0.12121951479728658 0.13785239800489502 0.12134793805259214 0.13796833536796266 0.12134793805259214 C 0.13785239800489502 0.12134793805259214 0.13717230648789255 0.12110357743421897 0.1372727111895569 0.12116154611575278 C 0.13717230648789255 0.12110357743421897 0.13670551026645672 0.12055190917252204 0.13676347894799054 0.12065231387418639 C 0.13670551026645672 0.12055190917252204 0.13656155434974784 0.11989872101424684 0.13657708701115112 0.11995668969578065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13657708701115112 0.11995668969578065 C 0.13648569568513702 0.11985746619795981 0.13533868987745487 0.11854288616267658 0.13548039109898197 0.11876600772193067 C 0.13533868987745487 0.11854288616267658 0.13482636245731297 0.11715533292329816 0.13487667235282597 0.11727923098473143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13487667235282597 0.11727923098473143 C 0.13491816990419167 0.11715885786095709 0.1355034622615117 0.11561163194018514 0.13537464296921434 0.11583475349943924 C 0.1355034622615117 0.11561163194018514 0.13650982560132602 0.11449902383820248 0.13642250386039434 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.18809122589039384) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10572371359315942 0.10686175562854937 C 0.10565352828082472 0.10666664992752999 0.10506457034952563 0.10527698243831791 0.10530260171915122 0.10569112142243305 C 0.10506457034952563 0.10527698243831791 0.10432464824140189 0.10395668121238828 0.1042955253754059 0.10437692172385861 C 0.10432464824140189 0.10395668121238828 0.10574263751961796 0.1026921133546419 0.10547733891512716 0.10316967835361111 C 0.10574263751961796 0.1026921133546419 0.10588731700235067 0.1015115317300433 0.10588731700235067 0.1015115317300433 C 0.10588731700235067 0.1015115317300433 0.10521204031063636 0.10364724335258033 0.10547733891512716 0.10316967835361111 C 0.10521204031063636 0.10364724335258033 0.10389421541496376 0.10431481504827654 0.1042955253754059 0.10437692172385861 C 0.10389421541496376 0.10431481504827654 0.10281959462851345 0.1023186823113046 0.10306947915247432 0.1027970383001187 C 0.10281959462851345 0.1023186823113046 0.10275067474483512 0.10129174370611656 0.10279621823164073 0.10150678579097401" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.33734345282867095,0.19076868460144308) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1393595837247742 0.11460177227368223 C 0.1394381732916127 0.11469424586561401 0.14041859588990382 0.1159122647801922 0.1403026585268362 0.11571145537686352 C 0.14041859588990382 0.1159122647801922 0.14078817987781483 0.11711982092502345 0.1407508320815857 0.11701148511362652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1407508320815857 0.11701148511362652 C 0.140705553175624 0.11712299336891646 0.14007995411067095 0.11855039358043452 0.14020748521004534 0.11834958417710584 C 0.14007995411067095 0.11855039358043452 0.13913820669568036 0.11951049910160953 0.13922045888909304 0.11942119795357078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13922045888909304 0.11942119795357078 C 0.13920647949383008 0.11947336976695122 0.13900053433255716 0.1201376239456339 0.1390527061459376 0.12004725971413599 C 0.13900053433255716 0.1201376239456339 0.13850403289702995 0.12055774054492616 0.13859439712852786 0.12050556873154572 C 0.13850403289702995 0.12055774054492616 0.13786399174120179 0.12067332147470118 0.13796833536796266 0.12067332147470118 C 0.13786399174120179 0.12067332147470118 0.13725190937589957 0.12045339691816528 0.13734227360739748 0.12050556873154572 C 0.13725190937589957 0.12045339691816528 0.1368317927766073 0.11995689548263808 0.13688396458998775 0.12004725971413599 C 0.1368317927766073 0.11995689548263808 0.13670223245156934 0.11936902614019035 0.1367162118468323 0.11942119795357078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1367162118468323 0.11942119795357078 C 0.13663395965341962 0.11933189680553204 0.13560165442650568 0.11814877477377715 0.13572918552588006 0.11834958417710584 C 0.13560165442650568 0.11814877477377715 0.13514055974837788 0.11689997685833659 0.13518583865433959 0.11701148511362652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13518583865433959 0.11701148511362652 C 0.13522318645056872 0.11690314930222961 0.1357499495721568 0.11551064597353485 0.1356340122090892 0.11571145537686353 C 0.1357499495721568 0.11551064597353485 0.1366556765779896 0.11450929868175046 0.13657708701115112 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19317839744138737) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10558506757140906 0.10659432009687617 C 0.10552190079030783 0.10641872496595872 0.10499183865213865 0.10516802422566786 0.10520606688480168 0.10554074931137147 C 0.10499183865213865 0.10516802422566786 0.10432590875482727 0.10397975312233121 0.10429969817543087 0.1043579695826545 C 0.10432590875482727 0.10397975312233121 0.10560209910522175 0.10284164205035944 0.10536333036118004 0.10327145054943174 C 0.10560209910522175 0.10284164205035944 0.10573231063968118 0.10177911858822072 0.10573231063968118 0.10177911858822072 C 0.10573231063968118 0.10177911858822072 0.10512456161713832 0.10370125904850404 0.10536333036118004 0.10327145054943174 C 0.10512456161713832 0.10370125904850404 0.10393851921103295 0.10430207357463064 0.10429969817543087 0.1043579695826545 C 0.10393851921103295 0.10430207357463064 0.1029713605032277 0.1025055541113559 0.10319625657479246 0.10293607450128858 C 0.1029713605032277 0.1025055541113559 0.10290933260791721 0.10158130936668665 0.10295032174604224 0.10177484724305835" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.021814492892120386 0.019655031969990255 C 0.02189843635998038 0.019913383399076362 0.020972167044877248 0.021730741504815434 0.02119193389686825 0.021571071540598112 C 0.020972167044877248 0.021730741504815434 0.018957523816237377 0.02141140157638079 0.01917729066822838 0.021571071540598112 C 0.018957523816237377 0.02141140157638079 0.018638675140836235 0.019396680540904147 0.018554731672976242 0.019655031969990255 C 0.018638675140836235 0.019396680540904147 0.02045625905081033 0.01847085439156484 0.020184612282548316 0.01847085439156484 C 0.02045625905081033 0.01847085439156484 0.02189843635998038 0.019913383399076362 0.021814492892120386 0.019655031969990255 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.027502747819324644 0.02603232541511103 C 0.027559906693821416 0.026208242342153215 0.02692919041676106 0.027445719736521604 0.0270788342929523 0.027336997096413098 C 0.02692919041676106 0.027445719736521604 0.025557377428838512 0.02722827445630459 0.02570702130502975 0.027336997096413098 C 0.025557377428838512 0.02722827445630459 0.025340266653154187 0.025856408488068847 0.025283107778657415 0.02603232541511103 C 0.025340266653154187 0.025856408488068847 0.026577897802379964 0.02522599397190689 0.02639292779899103 0.02522599397190689 C 0.026577897802379964 0.02522599397190689 0.027559906693821416 0.026208242342153215 0.027502747819324644 0.02603232541511103 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3363064238473449,0.19588518190454113) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17108120221763634 0.18910718688273231 C 0.17119824224198674 0.18875212024574603 0.17268337840737522 0.1844277421867197 0.172485682509841 0.18484638723889682 C 0.17268337840737522 0.1844277421867197 0.17353420886123075 0.1840198678414159 0.17345355298804693 0.18408344625660675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17345355298804693 0.18408344625660675 C 0.17338908439743922 0.18494240773825746 0.17265686524412388 0.19555666961253815 0.1726799299007542 0.19439098403641517 C 0.17265686524412388 0.19555666961253815 0.17321818104246034 0.19837839726455495 0.17317677710848295 0.19807167317008265" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17317677710848295 0.19807167317008265 C 0.1731283046199949 0.1983947310310233 0.17258992565354495 0.2029594683807321 0.17259510724662647 0.20194836750137066 C 0.17258992565354495 0.2029594683807321 0.17315788888691114 0.21089292674084054 0.17311459799150464 0.21020488372241977" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17311459799150464 0.21020488372241977 C 0.17294659640455443 0.20951990542906476 0.17092436033625308 0.2009335172270688 0.171098578948102 0.2019851442021596 C 0.17092436033625308 0.2009335172270688 0.17101775762441904 0.19721871133959418 0.17102397464931773 0.19758536002132998" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17102397464931773 0.19758536002132998 C 0.17085682896086557 0.197221596992395 0.16902299535191834 0.19251368924589365 0.1690182263878918 0.19322020367411014 C 0.16902299535191834 0.19251368924589365 0.17125311687011505 0.18876443548345084 0.17108120221763634 0.18910718688273231" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33838048180999714,0.19588518190454113) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17475608570755122 0.18848903508892736 C 0.17486159948548316 0.188825572465376 0.17596858708122212 0.19329449737967977 0.17602225104273456 0.19252748360631103 C 0.17596858708122212 0.19329449737967977 0.17395294042995757 0.19812367676627235 0.17411211816940195 0.19769320036935226" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17411211816940195 0.19769320036935226 C 0.17402982003169173 0.19799507822750212 0.17303667646173712 0.2023445465829749 0.17312454051687948 0.20131573466715066 C 0.17303667646173712 0.2023445465829749 0.17305218359026142 0.21076587741691757 0.1730577495076936 0.2100389433592432" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1730577495076936 0.2100389433592432 C 0.17293912230697228 0.20930025266393903 0.17154029700159973 0.20017375615028096 0.1716342230990379 0.2011746550155931 C 0.17154029700159973 0.20017375615028096 0.1719553374417186 0.1977659488054896 0.17193063633843547 0.19802815697549755" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17193063633843547 0.19802815697549755 C 0.17192455286996114 0.1973588388053451 0.17191594035974234 0.18883188399990689 0.17185763471674362 0.18999633893366824 C 0.17191594035974234 0.18883188399990689 0.17269469316589317 0.18355956100675236 0.17263030405442012 0.18405469777036126" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17263030405442012 0.18405469777036126 C 0.17270632844790068 0.1841237475810282 0.173719745247281 0.18525282360824488 0.17354259677618675 0.18488329549836438 C 0.173719745247281 0.18525282360824488 0.17485720978516492 0.18878951338814096 0.17475608570755122 0.18848903508892736" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19603101345690324 0.18641808138092075 C 0.19617582460462746 0.18546022416342228 0.19761791067558848 0.17342937340497003 0.197768747229594 0.17492379477093928 C 0.19761791067558848 0.17342937340497003 0.19392532710710708 0.1679484608408188 0.19422097480883685 0.1684850249892896" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19422097480883685 0.1684850249892896 C 0.19414867578816192 0.16808988180084294 0.19338050072636487 0.16278314970755636 0.19335338656073756 0.16374330672792978 C 0.19338050072636487 0.16278314970755636 0.19464575798266695 0.15639812691288169 0.19454634479636468 0.15696314074480847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19454634479636468 0.15696314074480847 C 0.19462688494460034 0.15693159418060665 0.19567390687166397 0.15658607598905824 0.19551282657519264 0.15658458197438677 C 0.19567390687166397 0.15658607598905824 0.19655984850225636 0.15701410949973948 0.1964793083540207 0.1569810689208662" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1964793083540207 0.1569810689208662 C 0.19647060600574384 0.15750620452466144 0.19645765144984273 0.16412044889971203 0.19637488017469834 0.16328269616640922 C 0.19645765144984273 0.16412044889971203 0.19756403727917446 0.1673467188500075 0.19747256365575322 0.16703410172049993" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19747256365575322 0.16703410172049993 C 0.19761065756612195 0.16769157614136987 0.19900956139694043 0.1765391264093077 0.19912969058017793 0.17492379477093928 C 0.19900956139694043 0.1765391264093077 0.195772790363297 0.18737593859841922 0.19603101345690324 0.18641808138092075" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

View File

@@ -0,0 +1,171 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.245122456365314 0.235580768030074 0.2389452910220962 0.2582449981683262 0.23984746965066872 0.25531608152015056 C 0.2389452910220962 0.2582449981683262 0.2329450519520436 0.2696271114436592 0.23477585706922943 0.26893364839999273 C 0.2329450519520436 0.2696271114436592 0.2150614667736401 0.2636376380441483 0.2178778082444386 0.2636376380441483 C 0.2150614667736401 0.2636376380441483 0.19914895430246188 0.2682401853563264 0.20097975941964774 0.26893364839999284 C 0.19914895430246188 0.2682401853563264 0.19500596820963584 0.252387164871975 0.1959081468382084 0.2553160815201506 C 0.19500596820963584 0.252387164871975 0.18967407162999128 0.23199252921369645 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ左">
<g id="編節1">
<g transform="translate(0.3213105737601799,0.13389549078914734) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14065887184510625 0.11460177227368223 C 0.1408108562807152 0.11478060703819197 0.14270689644550907 0.11713613493763485 0.14248268507241377 0.116747789447799 C 0.14270689644550907 0.11713613493763485 0.1434216352597362 0.1194714288770386 0.14334940832224985 0.11926191815171247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14334940832224985 0.11926191815171247 C 0.14326184340435533 0.11947756406920186 0.1420519967971106 0.12223801465142105 0.14229862930751544 0.12184966916158521 C 0.1420519967971106 0.12223801465142105 0.14023075060488152 0.12409476360208903 0.14038981819739182 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14038981819739182 0.12392206402974258 C 0.14036278343203218 0.12402295914763548 0.1399645058951833 0.12530756091488346 0.14006540101307619 0.12513280544445732 C 0.1399645058951833 0.12530756091488346 0.13900432131225107 0.12612002479274906 0.1391790767826772 0.12601912967485618 C 0.13900432131225107 0.12612002479274906 0.13776654513217684 0.12634354685917182 0.1379683353679626 0.12634354685917182 C 0.13776654513217684 0.12634354685917182 0.1365828384828218 0.1259182345569633 0.13675759395324794 0.12601912967485618 C 0.1365828384828218 0.1259182345569633 0.13577037460495617 0.12495804997403119 0.13587126972284905 0.12513280544445732 C 0.13577037460495617 0.12495804997403119 0.13551981777317365 0.12382116891184969 0.1355468525385333 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1355468525385333 0.12392206402974258 C 0.135387784946023 0.12374936445739614 0.13339140891800488 0.12146132367174936 0.1336380414284097 0.12184966916158521 C 0.13339140891800488 0.12146132367174936 0.13249969749578078 0.11904627223422304 0.1325872624136753 0.11926191815171244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1325872624136753 0.11926191815171244 C 0.13265948935116165 0.11905240742638633 0.13367819703660672 0.11635944395796315 0.1334539856635114 0.116747789447799 C 0.13367819703660672 0.11635944395796315 0.1354297833264279 0.1144229375091725 0.13527779889081895 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017985,0.13855563666717757) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10701944173009977 0.0995217617126694 C 0.10694017279817102 0.09989604478983355 0.1061089014188307 0.10260004395381073 0.1065438281385273 0.10176746017565433 C 0.1061089014188307 0.10260004395381073 0.10371139708039742 0.1046253617229477 0.10440988141192016 0.10451726438160774 C 0.10371139708039742 0.1046253617229477 0.10189116705562863 0.10158483717192755 0.10235292214939083 0.1024160442236941 C 0.10189116705562863 0.10158483717192755 0.10163935084934693 0.09953002207100842 0.10163935084934693 0.09953002207100842 C 0.10163935084934693 0.09953002207100842 0.10281467724315303 0.10324725127546065 0.10235292214939083 0.1024160442236941 C 0.10281467724315303 0.10324725127546065 0.10446057007552778 0.1052486975421745 0.10440988141192016 0.10451726438160774 C 0.10446057007552778 0.1052486975421745 0.10224275795480607 0.10752545657323248 0.10265705413103651 0.10680464318709461 C 0.10224275795480607 0.10752545657323248 0.10180194605845436 0.10918172828365838 0.10192410435453753 0.10884214469843498" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.32131057376017985,0.14321578254520767) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14038981819739182 0.11460177227368223 C 0.1405266041894399 0.114762723561741 0.1422330403377545 0.11688269867123963 0.1420312501019687 0.11653318773038736 C 0.1422330403377545 0.11688269867123963 0.14287630527055883 0.11898446321670295 0.14281130102682113 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14281130102682113 0.11879590356390944 C 0.14273249260071605 0.1189899848896499 0.1416436306541958 0.1214743904136472 0.14186559991356015 0.12112487947279495 C 0.1416436306541958 0.1214743904136472 0.14000450908118964 0.12314546446924837 0.1401476699144489 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1401476699144489 0.12299003485413657 C 0.14012333862562523 0.12308084046024016 0.13976488884246124 0.12423698205076321 0.13985569444856483 0.12407970212737969 C 0.13976488884246124 0.12423698205076321 0.13890072271782228 0.12496819954084241 0.1390580026412058 0.1248773939347388 C 0.13890072271782228 0.12496819954084241 0.1377867241557554 0.12516936940062295 0.1379683353679626 0.12516936940062295 C 0.1377867241557554 0.12516936940062295 0.1367213881713359 0.12478658832863519 0.1368786680947194 0.1248773939347388 C 0.1367213881713359 0.12478658832863519 0.1359901706812567 0.12392242220399617 0.13608097628736032 0.12407970212737969 C 0.1359901706812567 0.12392242220399617 0.13576466953265254 0.12289922924803297 0.1357890008214762 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1357890008214762 0.12299003485413657 C 0.13564583998821694 0.12283460523902476 0.13384910156300078 0.12077536853194269 0.1340710708223651 0.12112487947279495 C 0.13384910156300078 0.12077536853194269 0.13304656128299908 0.11860182223816898 0.13312536970910416 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13312536970910416 0.11879590356390944 C 0.13319037395284186 0.11860734391111594 0.13410721086974223 0.11618367678953505 0.13390542063395647 0.11653318773038732 C 0.13410721086974223 0.11618367678953505 0.13568363853058135 0.11444082098562347 0.1355468525385333 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601798,0.1474099138354349) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10675122289465533 0.09998832557258422 C 0.10667988085591945 0.10032518034203194 0.10593173661451313 0.10275877958961131 0.10632317066224006 0.10200945418927057 C 0.10593173661451313 0.10275877958961131 0.10377398270992325 0.10458156558183468 0.10440261860829371 0.1044842779746287 C 0.10377398270992325 0.10458156558183468 0.10213577568763135 0.10184509348591653 0.10255135527201732 0.10259317983250642 C 0.10213577568763135 0.10184509348591653 0.1019091411019779 0.09999575989508931 0.1019091411019779 0.09999575989508931 C 0.1019091411019779 0.09999575989508931 0.10296693485640329 0.10334126617909631 0.10255135527201732 0.10259317983250642 C 0.10296693485640329 0.10334126617909631 0.10444823840554056 0.10514256781913878 0.10440261860829371 0.1044842779746287 C 0.10444823840554056 0.10514256781913878 0.10245220749689103 0.10719165094709095 0.10282507405549843 0.10654291889956687 C 0.10245220749689103 0.10719165094709095 0.10205547679017447 0.10868229548647426 0.10216541925664932 0.10837667025977321" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3213105737601798,0.151604045125662) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1401476699144489 0.11460177227368223 C 0.14027077730729218 0.11474662843293512 0.1418065698407752 0.11665460603148387 0.141624958628568 0.11634004618471683 C 0.1418065698407752 0.11665460603148387 0.14238550828029914 0.11854619412240089 0.1423270044609352 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1423270044609352 0.11837649043488672 C 0.14225607687744066 0.11855116362805314 0.14127610112557248 0.12078712859965067 0.1414758734590004 0.12047256875288363 C 0.14127610112557248 0.12078712859965067 0.139800891709867 0.12229109524969174 0.13992973645980034 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13992973645980034 0.12215120859609112 C 0.13990783829985903 0.12223293364158436 0.1395852334950113 0.12327346107305513 0.13966695854050457 0.12313190914200996 C 0.1395852334950113 0.12327346107305513 0.13880748398283627 0.12393155681412645 0.13894903591388144 0.1238498317686332 C 0.13880748398283627 0.12393155681412645 0.13780488527697612 0.12411260968792882 0.1379683353679626 0.12411260968792882 C 0.13780488527697612 0.12411260968792882 0.13684608289099856 0.12376810672313997 0.13698763482204374 0.1238498317686332 C 0.13684608289099856 0.12376810672313997 0.13618798714992733 0.12299035721096478 0.13626971219542056 0.12313190914200996 C 0.13618798714992733 0.12299035721096478 0.13598503611618362 0.12206948355059788 0.13600693427612492 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13600693427612492 0.12215120859609112 C 0.13587808952619157 0.1220113219424905 0.13426102494349687 0.1201580089061166 0.1344607972769248 0.12047256875288363 C 0.13426102494349687 0.1201580089061166 0.1335387386914952 0.11820181724172031 0.1336096662749898 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1336096662749898 0.11837649043488672 C 0.13366817009435375 0.11820678674737256 0.13449332331956432 0.11602548633794979 0.13431171210735712 0.11634004618471683 C 0.13449332331956432 0.11602548633794979 0.13591210821431948 0.11445691611442935 0.1357890008214762 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017974,0.1553787632868665) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10650982594275545 0.10040823304650746 C 0.10644561810789314 0.10071140233901044 0.1057722882906274 0.102901641661832 0.10612457893358165 0.10222724880152531 C 0.1057722882906274 0.102901641661832 0.1038303097764965 0.10454214905483297 0.10439608208502991 0.1044545902083476 C 0.1038303097764965 0.10454214905483297 0.10235592345643378 0.10207932416850657 0.10272994508238116 0.10275260188043749 C 0.10235592345643378 0.10207932416850657 0.10215195232934561 0.10041492393676214 0.10215195232934561 0.10041492393676214 C 0.10215195232934561 0.10041492393676214 0.10310396670832854 0.1034258795923684 0.10272994508238116 0.10275260188043749 C 0.10310396670832854 0.1034258795923684 0.10443713990255209 0.10504705106840669 0.10439608208502991 0.1044545902083476 C 0.10443713990255209 0.10504705106840669 0.10264071208476754 0.10689122588356362 0.10297629198751419 0.10630736704079195 C 0.10264071208476754 0.10689122588356362 0.1022836544487226 0.10823280596900858 0.10238260266854997 0.10795774326497763" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.32131057376017974,0.1591534814480709) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13992973645980034 0.11460177227368223 C 0.14004053311335926 0.11473214281700983 0.1414227463934939 0.11644932265570374 0.14125929630250741 0.1161662187936134 C 0.1414227463934939 0.11644932265570374 0.14194379098906557 0.11815175193752903 0.141891137551638 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.141891137551638 0.11799901861876629 C 0.14182730272649288 0.11815622449261605 0.14094532454981146 0.12016859296705384 0.14112511964989657 0.11988548910496352 C 0.14094532454981146 0.12016859296705384 0.1396176360756765 0.1215221629520908 0.13973359635061652 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13973359635061652 0.12139626496385024 C 0.13971388800666934 0.12146981750479416 0.13942354368230642 0.1224062921931179 0.13949709622325032 0.12227889545517724 C 0.13942354368230642 0.1224062921931179 0.138723569121349 0.12299857836008199 0.13885096585928966 0.12292502581913807 C 0.138723569121349 0.12299857836008199 0.13782123028607476 0.1231615259465042 0.1379683353679626 0.1231615259465042 C 0.13782123028607476 0.1231615259465042 0.136958308138695 0.12285147327819415 0.13708570487663566 0.12292502581913807 C 0.136958308138695 0.12285147327819415 0.1363660219717308 0.12215149871723659 0.13643957451267472 0.12227889545517724 C 0.1363660219717308 0.12215149871723659 0.13618336604136147 0.12132271242290632 0.13620307438530865 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13620307438530865 0.12139626496385024 C 0.13608711411036864 0.12127036697560968 0.1346317559859435 0.1196023852428732 0.13481155108602863 0.11988548910496352 C 0.1346317559859435 0.1196023852428732 0.13398169835914203 0.11784181274491652 0.13404553318428716 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13404553318428716 0.11799901861876629 C 0.13409818662171472 0.11784628530000354 0.13484082452440416 0.11588311493152306 0.13467737443341768 0.1161662187936134 C 0.13484082452440416 0.11588311493152306 0.13611773092968385 0.11447140173035464 0.13600693427612492 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601797,0.16255072779315494) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629256868604538 0.10078614977303844 C 0.10623478163466932 0.10105900213629111 0.10562878479913024 0.1030302175268305 0.10594584637778905 0.10242326395255448 C 0.10562878479913024 0.1030302175268305 0.10388100413641245 0.10450667418053142 0.10439019921409252 0.10442787121869458 C 0.10388100413641245 0.10450667418053142 0.10255405644835593 0.10229013178283765 0.10289067591170857 0.10289608172357546 C 0.10255405644835593 0.10229013178283765 0.10237048243397663 0.10079217157426766 0.10237048243397663 0.10079217157426766 C 0.10237048243397663 0.10079217157426766 0.10322729537506121 0.10350203166431328 0.10289067591170857 0.10289608172357546 C 0.10322729537506121 0.10350203166431328 0.10442715124986249 0.10496108599274775 0.10439019921409252 0.10442787121869458 C 0.10442715124986249 0.10496108599274775 0.10281036621385636 0.10662084332638898 0.10311238812632836 0.10609537036789447 C 0.10281036621385636 0.10662084332638898 0.10248901434141588 0.10782826540328949 0.10257806773926052 0.10758070896966163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3213105737601797,0.16594797413823892) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13973359635061652 0.11460177227368223 C 0.13983331333881957 0.11471910576267708 0.1410773052909409 0.11626456761750158 0.14093020020905306 0.11600977414162027 C 0.1410773052909409 0.11626456761750158 0.1415462454269553 0.11779675397114435 0.1414988573332705 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414988573332705 0.11765929398425788 C 0.1414414059906399 0.11780077927072267 0.1406476256316266 0.11961191089771672 0.14080944122170322 0.11935711742183543 C 0.1406476256316266 0.11961191089771672 0.13945270600490514 0.12083012388425 0.13955707025235115 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955707025235115 0.1207168156948335 C 0.13953933274279867 0.12078301298168302 0.13927802285087204 0.1216258402011743 0.13934422013772158 0.12151118313702772 C 0.13927802285087204 0.1216258402011743 0.13864804574601025 0.12215889775144197 0.13876270281015685 0.12209270046459245 C 0.13864804574601025 0.12215889775144197 0.13783594079426356 0.12230555057922199 0.1379683353679626 0.12230555057922199 C 0.13783594079426356 0.12230555057922199 0.1370593108616217 0.12202650317774293 0.13717396792576828 0.12209270046459245 C 0.1370593108616217 0.12202650317774293 0.1365262533113541 0.12139652607288114 0.13659245059820363 0.12151118313702772 C 0.1365262533113541 0.12139652607288114 0.1363618629740215 0.12065061840798398 0.13637960048357398 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13637960048357398 0.1207168156948335 C 0.13627523623612797 0.120603507505417 0.13496541392414543 0.11910232394595413 0.13512722951422204 0.11935711742183543 C 0.13496541392414543 0.11910232394595413 0.13438036206002418 0.11751780869779309 0.1344378134026548 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1344378134026548 0.11765929398425788 C 0.13448520149633958 0.11752183399737141 0.13515357560875996 0.11575498066573896 0.13500647052687215 0.11600977414162027 C 0.13515357560875996 0.11575498066573896 0.1363027913735117 0.11448443878468739 0.13620307438530865 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017963,0.16900549584881458) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10609703715500646 0.10112627482691638 C 0.106045028808768 0.10137184195384379 0.10549963165678276 0.10314593580532919 0.1057849870775757 0.10259967758848078 C 0.10549963165678276 0.10314593580532919 0.10392662906033673 0.10447474679365994 0.10438490463024878 0.10440382412800679 C 0.10392662906033673 0.10447474679365994 0.10273237614108599 0.10247985863573565 0.10303533365810337 0.10302521358239967 C 0.10273237614108599 0.10247985863573565 0.10256715952814453 0.10113169444802263 0.10256715952814453 0.10113169444802263 C 0.10256715952814453 0.10113169444802263 0.10333829117512075 0.1035705685290637 0.10303533365810337 0.10302521358239967 C 0.10333829117512075 0.1035705685290637 0.10441816146244173 0.10488371742465463 0.10438490463024878 0.10440382412800679 C 0.10441816146244173 0.10488371742465463 0.10296305493003625 0.10637749902493181 0.10323487465126104 0.10590457336228674 C 0.10296305493003625 0.10637749902493181 0.10267383824483994 0.10746417889414223 0.1027539863029001 0.10724137810387716" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.32131057376017963,0.17206301755939019) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13955707025235115 0.11460177227368223 C 0.1396468155417339 0.11470737241377758 0.14076640829864304 0.11609828808311966 0.140634013724944 0.11586897395482648 C 0.14076640829864304 0.11609828808311966 0.14118845442105593 0.11747725580139809 0.14114580513673963 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14114580513673963 0.11735354181320028 C 0.1410940989283721 0.11748087857101859 0.1403796966052602 0.11911089703531323 0.14052533063632916 0.11888158290702006 C 0.1403796966052602 0.11911089703531323 0.13930426894121084 0.12020728872319325 0.13939819676391224 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13939819676391224 0.12010531135271839 C 0.13938223300531502 0.12016488891088295 0.1391470541025811 0.12092343340842512 0.13920663166074568 0.12082024205069321 C 0.1391470541025811 0.12092343340842512 0.13858007470820544 0.12140318520366601 0.13868326606593737 0.12134360764550145 C 0.13858007470820544 0.12140318520366601 0.13784918025163345 0.12153517274866801 0.1379683353679626 0.12153517274866801 C 0.13784918025163345 0.12153517274866801 0.13715021331225577 0.12128403008733689 0.1372534046699877 0.12134360764550145 C 0.13715021331225577 0.12128403008733689 0.13667046151701484 0.12071705069296129 0.13673003907517942 0.12082024205069321 C 0.13667046151701484 0.12071705069296129 0.1365225102134157 0.12004573379455383 0.1365384739720129 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1365384739720129 0.12010531135271839 C 0.1364445461493115 0.12000333398224353 0.13526570606852703 0.11865226877872688 0.135411340099596 0.11888158290702006 C 0.13526570606852703 0.11865226877872688 0.134739159390818 0.11722620505538196 0.13479086559918552 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13479086559918552 0.11735354181320028 C 0.13483351488350181 0.11722982782500246 0.1354350515846803 0.1156396598265333 0.13530265701098126 0.11586897395482648 C 0.1354350515846803 0.1156396598265333 0.1364693457729567 0.11449617213358688 0.13637960048357398 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601796,0.17481478709890824) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10592105877707135 0.10143238737540648 C 0.10587425126545674 0.10165339778964114 0.10538339382867001 0.10325008225597801 0.10564021370738366 0.10275844986081444 C 0.10538339382867001 0.10325008225597801 0.1039676914918686 0.10444601214547572 0.10438013950478946 0.10438218174638789 C 0.1039676914918686 0.10444601214547572 0.10289286386454288 0.10265061280334381 0.10316552562985852 0.10314143225534145 C 0.10289286386454288 0.10265061280334381 0.10274416891289567 0.10143726503440209 0.10274416891289567 0.10143726503440209 C 0.10274416891289567 0.10143726503440209 0.10343818739517416 0.10363225170733908 0.10316552562985852 0.10314143225534145 C 0.10343818739517416 0.10363225170733908 0.10441007065376312 0.10481408571337095 0.10438013950478946 0.10438218174638789 C 0.10441007065376312 0.10481408571337095 0.10310047477459822 0.10615848915362033 0.10334511252370052 0.10573285605723978 C 0.10310047477459822 0.10615848915362033 0.1028401797579215 0.10713650103590973 0.10291231301017564 0.10693598032467116" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.3213105737601796,0.17756655663842635) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939819676391224 0.11460177227368223 C 0.1394789675243567 0.11469681239976806 0.14048660100557492 0.11594863650217593 0.14036744588924577 0.11574225378671207 C 0.14048660100557492 0.11594863650217593 0.14086644251574676 0.1171897074486265 0.14082805815986207 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14082805815986207 0.11707836485924847 C 0.14078152257233129 0.11719296794128496 0.14013856048153042 0.1186599845591502 0.1402696311094925 0.11845360184368633 C 0.14013856048153042 0.1186599845591502 0.13917067558388596 0.11964673707824212 0.13925521062431723 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13925521062431723 0.11955495744481476 C 0.13924084324157973 0.11960857724716287 0.13902918222911914 0.12029126729495083 0.13908280203146725 0.1201983950729921 C 0.13902918222911914 0.12029126729495083 0.13851890077418122 0.12072304391066765 0.13861177299613994 0.12066942410831955 C 0.13851890077418122 0.12072304391066765 0.13786109576326638 0.12084183270116945 0.1379683353679626 0.12084183270116945 C 0.13786109576326638 0.12084183270116945 0.1372320255178265 0.12061580430597144 0.13732489773978526 0.12066942410831955 C 0.1372320255178265 0.12061580430597144 0.13680024890210957 0.12010552285103336 0.13685386870445768 0.1201983950729921 C 0.13680024890210957 0.12010552285103336 0.13666709272887048 0.11950133764246665 0.13668146011160795 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13668146011160795 0.11955495744481476 C 0.13659692507117668 0.11946317781138739 0.13553596899847065 0.11824721912822247 0.1356670396264327 0.11845360184368633 C 0.13553596899847065 0.11824721912822247 0.13506207698853243 0.11696376177721197 0.13510861257606321 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13510861257606321 0.11707836485924847 C 0.1351469969319479 0.11696702226987044 0.13568837996300848 0.11553587107124819 0.13556922484667933 0.11574225378671205 C 0.13568837996300848 0.11553587107124819 0.13661924473245737 0.11450673214759642 0.1365384739720129 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601795,0.1800431492239926) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10576267823692977 0.10170788866904754 C 0.1057205514764766 0.10190679804185873 0.10527877978336853 0.10334381406156194 0.10550991767421082 0.10290134490591472 C 0.10527877978336853 0.10334381406156194 0.10400464768024728 0.10442015096210991 0.10437585089187604 0.10436270360293086 C 0.10400464768024728 0.10442015096210991 0.10303730281565425 0.10280429155419113 0.10328269840443832 0.10324602906098901 C 0.10303730281565425 0.10280429155419113 0.1029034773591716 0.10171227856214361 0.1029034773591716 0.10171227856214361 C 0.1029034773591716 0.10171227856214361 0.1035280939932224 0.10368776656778689 0.10328269840443832 0.10324602906098901 C 0.1035280939932224 0.10368776656778689 0.10440278892595231 0.10475141717321562 0.10437585089187604 0.10436270360293086 C 0.10440278892595231 0.10475141717321562 0.10322415263470393 0.10596138026944006 0.103444326608896 0.10557831048269757 C 0.10322415263470393 0.10596138026944006 0.10298988711969487 0.10684159096350049 0.1030548070467236 0.10666112232338579" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.3213105737601795,0.18251974180955888) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13925521062431723 0.11460177227368223 C 0.13932790430871725 0.11468730838715947 0.1402347744418137 0.11581395007932656 0.14012753483711746 0.11562820563540908 C 0.1402347744418137 0.11581395007932656 0.14057663180096833 0.11693091393113209 0.1405420858806721 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405420858806721 0.11683070560069185 C 0.14050020385189438 0.11693384837452468 0.13992153797017365 0.11825416333060337 0.1400395015353395 0.1180684188866859 C 0.13992153797017365 0.11825416333060337 0.13905044156229357 0.11914224059778608 0.13912652309868173 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13912652309868173 0.11905963892770145 C 0.139113592454218 0.11910789674981476 0.13892309754300355 0.119722317792824 0.13897135536511684 0.11963873279306113 C 0.13892309754300355 0.119722317792824 0.13846384423355937 0.12011091674696914 0.13854742923332222 0.12006265892485583 C 0.13846384423355937 0.12011091674696914 0.137871819723736 0.12021782665842078 0.1379683353679626 0.12021782665842078 C 0.137871819723736 0.12021782665842078 0.13730565650284013 0.12001440110274253 0.13738924150260298 0.12006265892485583 C 0.13730565650284013 0.12001440110274253 0.13691705754869496 0.11955514779329826 0.13696531537080828 0.11963873279306113 C 0.13691705754869496 0.11955514779329826 0.1367972169927795 0.11901138110558815 0.13681014763724325 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13681014763724325 0.11905963892770145 C 0.13673406610085512 0.11897703725761682 0.13577920563541984 0.11788267444276843 0.13589716920058567 0.1180684188866859 C 0.13577920563541984 0.11788267444276843 0.1353527028264754 0.11672756282685902 0.13539458485525313 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13539458485525313 0.11683070560069185 C 0.13542913077554933 0.11673049727025162 0.1359163755035038 0.11544246119149161 0.13580913589880755 0.11562820563540908 C 0.1359163755035038 0.11544246119149161 0.13675415379600797 0.114516236160205 0.13668146011160795 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.1847486751365685) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10562013575080237 0.10195583983332451 C 0.10558222166639453 0.10213485826885459 0.10518462714259726 0.10342817268658748 0.10539265124435532 0.10302995044650498 C 0.10518462714259726 0.10342817268658748 0.10403790824978813 0.10439687589708063 0.10437199114025403 0.10434517327381948 C 0.10403790824978813 0.10439687589708063 0.10316729787165431 0.10294260242995376 0.10338815390155998 0.10334016618607185 C 0.10316729787165431 0.10294260242995376 0.10304685496082001 0.10195979073711098 0.10304685496082001 0.10195979073711098 C 0.10304685496082001 0.10195979073711098 0.10360900993146564 0.10373772994218994 0.10338815390155998 0.10334016618607185 C 0.10360900993146564 0.10373772994218994 0.10439623537092269 0.10469501548707577 0.10437199114025403 0.10434517327381948 C 0.10439623537092269 0.10469501548707577 0.10333546270879906 0.10578398227367783 0.10353361928557193 0.10543921946560958 C 0.10333546270879906 0.10578398227367783 0.10312462374529098 0.1065761718983322 0.10318305167961683 0.10641375012222896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.02018461228254831 0.018599422539472096 C 0.020435879788334454 0.018599422539472096 0.021769863246687306 0.019933731311340065 0.02169221731726518 0.01969476171262892 C 0.021769863246687306 0.019933731311340065 0.02091308375329863 0.021614749058287253 0.02111636343561383 0.021467057724005843 C 0.02091308375329863 0.021614749058287253 0.0190495814471676 0.021319366389724433 0.0192528611294828 0.021467057724005843 C 0.0190495814471676 0.021319366389724433 0.018754653177253573 0.019455792113917774 0.018677007247831445 0.01969476171262892 C 0.018754653177253573 0.019455792113917774 0.020435879788334454 0.018599422539472096 0.02018461228254831 0.018599422539472096 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.026392927798991044 0.02531353873051479 C 0.02656402113352306 0.02531353873051479 0.02747235855417783 0.02622209766399067 0.027419487806183158 0.02605937823328933 C 0.02747235855417783 0.02622209766399067 0.026888959359666446 0.02736673803773433 0.027027376774927128 0.02726617189893087 C 0.026888959359666446 0.02736673803773433 0.02562006140779431 0.027165605760127408 0.02575847882305499 0.02726617189893087 C 0.02562006140779431 0.027165605760127408 0.025419238539793613 0.02589665880258799 0.025366367791798943 0.02605937823328933 C 0.025419238539793613 0.02589665880258799 0.02656402113352306 0.02531353873051479 0.026392927798991044 0.02531353873051479 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32034124676579434,0.1872136342801211) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17152744855704163 0.18664116645603634 C 0.1716101945364861 0.18649002722933367 0.17267853657933008 0.18462836862019674 0.17252040031037527 0.18482749573560422 C 0.17267853657933008 0.18462836862019674 0.17350047407400956 0.18420365318244167 0.17342508378449922 0.18425164107114647" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17342508378449922 0.18425164107114647 C 0.17343209584174343 0.18478770485312573 0.17345444155364334 0.1915599542314985 0.1735092284714296 0.19068440645489765 C 0.17345444155364334 0.1915599542314985 0.17270584179603343 0.19509769838497812 0.1727676407710639 0.19475821439035654" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1727676407710639 0.19475821439035654 C 0.17274840658272683 0.19493747615165172 0.17252385664476141 0.19743852779113596 0.17253683051101895 0.19690935552589856 C 0.17252385664476141 0.19743852779113596 0.17261821469805308 0.2014581920771478 0.17261195437597354 0.20110828157320554" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17261195437597354 0.20110828157320554 C 0.1725102261119335 0.20078685974239072 0.17124113136434815 0.1966844128546301 0.17139121520749326 0.19725121960342767 C 0.17124113136434815 0.1966844128546301 0.17076259267912708 0.19406121566965176 0.17081094825823218 0.19430660058763452" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17081094825823218 0.19430660058763452 C 0.17080440151875467 0.19396008241916363 0.17079209574273618 0.1895095963883507 0.17073238738450205 0.19014838256598388 C 0.17079209574273618 0.1895095963883507 0.17159370365475327 0.18634889844687405 0.17152744855704163 0.18664116645603634" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32227990075456453,0.1872136342801211) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.1745407159605065 0.18656477878445557 C 0.174612408907706 0.18686018697403917 0.17545139310381885 0.1907526607719494 0.17540103132690044 0.1901096770594588 C 0.17545139310381885 0.1907526607719494 0.1751237261132463 0.1946281588572497 0.1751450572835274 0.19428058333434273" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1751450572835274 0.19428058333434273 C 0.1750840546649184 0.19454301181482325 0.17423797888456755 0.19802787245409872 0.17441302586021923 0.19742972510010917 C 0.17423797888456755 0.19802787245409872 0.17293044921866463 0.20179407045572645 0.17304449357570728 0.20145835158221742" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17304449357570728 0.20145835158221742 C 0.17306546457428817 0.2010759234545932 0.1733177311080706 0.19630932438702084 0.173296145558678 0.19686921405072652 C 0.1733177311080706 0.19630932438702084 0.17330413471923015 0.1945622140816679 0.17330352016841843 0.19473967561774932" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17330352016841843 0.19473967561774932 C 0.17324776519076723 0.19440234087798985 0.17257586844506928 0.18981822560559822 0.17263446043660385 0.19069165874063582 C 0.17257586844506928 0.18981822560559822 0.1725975792561203 0.18372237960202006 0.17260041627000364 0.1842584779972982" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17260041627000364 0.1842584779972982 C 0.17267667666051062 0.18430520862233987 0.1736772325969625 0.18501143723006142 0.17351554095608726 0.1848192454977983 C 0.1736772325969625 0.18501143723006142 0.17462614721087477 0.186710239891677 0.1745407159605065 0.18656477878445557" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19540860525412718 0.17892734283795877 C 0.19534878698327263 0.17828377337661785 0.19459694554262028 0.17019434309228626 0.1946907860038724 0.17120450930186787 C 0.19459694554262028 0.17019434309228626 0.19424849752870404 0.16643875157473884 0.1942825197191016 0.16680534832297952" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1942825197191016 0.16680534832297952 C 0.19426505534363975 0.166512381873389 0.19411292896767232 0.162476143374727 0.1940729472135595 0.1632897509278931 C 0.19411292896767232 0.162476143374727 0.19481974689803006 0.15652141658141033 0.1947623007684554 0.15704205768498594" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1947623007684554 0.15704205768498594 C 0.1948248445856835 0.15701542103434624 0.19564434459456861 0.1567260756682543 0.19551282657519264 0.15672241787730956 C 0.19564434459456861 0.1567260756682543 0.1964094912031149 0.1571162456179074 0.19634051700096705 0.15708595117632296" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19634051700096705 0.15708595117632296 C 0.19639683224588245 0.1575846365474142 0.19705333363402366 0.16389763488089126 0.19701629993995193 0.16307017562941784 C 0.19705333363402366 0.16389763488089126 0.1967656397789844 0.16734423607438642 0.19678492132982806 0.16701546219400423" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19678492132982806 0.16701546219400423 C 0.19673304201858663 0.16738125658571304 0.1960476765886226 0.17239765161483953 0.196162369594931 0.17140499489450997 C 0.1960476765886226 0.17239765161483953 0.19534579155906018 0.1795542051665795 0.19540860525412718 0.17892734283795877" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g id="編節1">
<g transform="translate(0.353376331897162,0.13389549078914728) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14065887184510636 0.11460177227368223 C 0.14081085628071532 0.11478060703819197 0.14270689644550916 0.11713613493763485 0.14248268507241385 0.116747789447799 C 0.14270689644550916 0.11713613493763485 0.14342163525973625 0.11947142887703856 0.1433494083222499 0.11926191815171244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1433494083222499 0.11926191815171244 C 0.14326184340435538 0.11947756406920185 0.14205199679711064 0.12223801465142106 0.14229862930751547 0.12184966916158521 C 0.14205199679711064 0.12223801465142106 0.14023075060488163 0.12409476360208903 0.14038981819739194 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14038981819739194 0.12392206402974258 C 0.1403627834320323 0.12402295914763548 0.13996450589518328 0.12530756091488346 0.14006540101307616 0.12513280544445732 C 0.13996450589518328 0.12530756091488346 0.1390043213122511 0.12612002479274906 0.13917907678267724 0.12601912967485618 C 0.1390043213122511 0.12612002479274906 0.13776654513217682 0.12634354685917182 0.1379683353679626 0.12634354685917182 C 0.13776654513217682 0.12634354685917182 0.13658283848282177 0.1259182345569633 0.13675759395324788 0.12601912967485618 C 0.13658283848282177 0.1259182345569633 0.13577037460495622 0.12495804997403119 0.1358712697228491 0.12513280544445732 C 0.13577037460495622 0.12495804997403119 0.13551981777317373 0.12382116891184969 0.13554685253853338 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13554685253853338 0.12392206402974258 C 0.13538778494602308 0.12374936445739614 0.1333914089180049 0.12146132367174937 0.13363804142840974 0.12184966916158521 C 0.1333914089180049 0.12146132367174937 0.13249969749578092 0.11904627223422308 0.13258726241367544 0.11926191815171247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13258726241367544 0.11926191815171247 C 0.13265948935116179 0.11905240742638634 0.1336781970366068 0.11635944395796315 0.1334539856635115 0.116747789447799 C 0.1336781970366068 0.11635944395796315 0.13542978332642802 0.1144229375091725 0.13527779889081906 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716194,0.13855563666717752) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1067504023967738 0.10884214469843498 C 0.10662824410069063 0.10850256111321158 0.10560315644404435 0.10608382980095674 0.1060174526202748 0.10680464318709461 C 0.10560315644404435 0.10608382980095674 0.1043153140029987 0.10378583122104099 0.10426462533939108 0.10451726438160774 C 0.1043153140029987 0.10378583122104099 0.10678333969568275 0.10158483717192755 0.10632158460192052 0.1024160442236941 C 0.10678333969568275 0.10158483717192755 0.10703515590196445 0.09953002207100842 0.10703515590196445 0.09953002207100842 C 0.10703515590196445 0.09953002207100842 0.1058598295081583 0.10324725127546065 0.10632158460192052 0.1024160442236941 C 0.1058598295081583 0.10324725127546065 0.10356614100786835 0.10440916704026779 0.10426462533939108 0.10451726438160774 C 0.10356614100786835 0.10440916704026779 0.10169575189308747 0.10093487639749793 0.10213067861278405 0.10176746017565433 C 0.10169575189308747 0.10093487639749793 0.10157579608928285 0.09914747863550524 0.10165506502121159 0.0995217617126694" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.35337633189716194,0.14321578254520761) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14038981819739194 0.11460177227368223 C 0.14052660418944 0.114762723561741 0.1422330403377545 0.11688269867123958 0.14203125010196874 0.11653318773038732 C 0.1422330403377545 0.11688269867123958 0.14287630527055886 0.11898446321670295 0.14281130102682116 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14281130102682116 0.11879590356390944 C 0.14273249260071608 0.1189899848896499 0.1416436306541958 0.1214743904136472 0.14186559991356015 0.12112487947279495 C 0.1416436306541958 0.1214743904136472 0.14000450908118967 0.12314546446924837 0.14014766991444894 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14014766991444894 0.12299003485413657 C 0.14012333862562526 0.12308084046024016 0.13976488884246127 0.12423698205076321 0.13985569444856485 0.12407970212737969 C 0.13976488884246127 0.12423698205076321 0.13890072271782233 0.12496819954084241 0.13905800264120585 0.1248773939347388 C 0.13890072271782233 0.12496819954084241 0.13778672415575538 0.12516936940062295 0.1379683353679626 0.12516936940062295 C 0.13778672415575538 0.12516936940062295 0.13672138817133583 0.12478658832863519 0.13687866809471935 0.1248773939347388 C 0.13672138817133583 0.12478658832863519 0.1359901706812568 0.12392242220399617 0.13608097628736038 0.12407970212737969 C 0.1359901706812568 0.12392242220399617 0.13576466953265268 0.12289922924803297 0.13578900082147635 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13578900082147635 0.12299003485413657 C 0.13564583998821708 0.12283460523902476 0.13384910156300076 0.12077536853194269 0.1340710708223651 0.12112487947279495 C 0.13384910156300076 0.12077536853194269 0.13304656128299913 0.11860182223816898 0.1331253697091042 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1331253697091042 0.11879590356390944 C 0.1331903739528419 0.11860734391111594 0.13410721086974225 0.11618367678953509 0.1339054206339565 0.11653318773038736 C 0.13410721086974225 0.11618367678953509 0.13568363853058146 0.11444082098562347 0.13554685253853338 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971619,0.14740991383543484) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10650908749466197 0.10837667025977321 C 0.10639914502818712 0.10807104503307216 0.10547656613720548 0.10589418685204278 0.10584943269581286 0.10654291889956687 C 0.10547656613720548 0.10589418685204278 0.10431750794026448 0.10382598813011862 0.10427188814301765 0.1044842779746287 C 0.10431750794026448 0.10382598813011862 0.10653873106367984 0.10184509348591653 0.10612315147929388 0.10259317983250642 C 0.10653873106367984 0.10184509348591653 0.10676536564933342 0.09999575989508931 0.10676536564933342 0.09999575989508931 C 0.10676536564933342 0.09999575989508931 0.10570757189490793 0.10334126617909631 0.10612315147929388 0.10259317983250642 C 0.10570757189490793 0.10334126617909631 0.1036432522446472 0.10438699036742272 0.10427188814301765 0.1044842779746287 C 0.1036432522446472 0.10438699036742272 0.10195990204134427 0.10126012878892983 0.1023513360890712 0.10200945418927057 C 0.10195990204134427 0.10126012878892983 0.10185194181792022 0.0996514708031365 0.10192328385665607 0.09998832557258422" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3533763318971619,0.15160404512566195) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14014766991444894 0.11460177227368223 C 0.1402707773072922 0.11474662843293512 0.14180656984077525 0.11665460603148387 0.14162495862856805 0.11634004618471683 C 0.14180656984077525 0.11665460603148387 0.1423855082802993 0.11854619412240089 0.14232700446093535 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14232700446093535 0.11837649043488672 C 0.14225607687744077 0.11855116362805314 0.14127610112557248 0.12078712859965067 0.1414758734590004 0.12047256875288363 C 0.14127610112557248 0.12078712859965067 0.13980089170986706 0.12229109524969174 0.1399297364598004 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1399297364598004 0.12215120859609112 C 0.13990783829985906 0.12223293364158436 0.1395852334950113 0.12327346107305513 0.13966695854050457 0.12313190914200996 C 0.1395852334950113 0.12327346107305513 0.1388074839828362 0.12393155681412645 0.13894903591388139 0.1238498317686332 C 0.1388074839828362 0.12393155681412645 0.13780488527697612 0.12411260968792882 0.1379683353679626 0.12411260968792882 C 0.13780488527697612 0.12411260968792882 0.1368460828909986 0.12376810672313997 0.13698763482204376 0.1238498317686332 C 0.1368460828909986 0.12376810672313997 0.1361879871499273 0.12299035721096478 0.13626971219542056 0.12313190914200996 C 0.1361879871499273 0.12299035721096478 0.1359850361161836 0.12206948355059788 0.1360069342761249 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1360069342761249 0.12215120859609112 C 0.13587808952619157 0.1220113219424905 0.13426102494349695 0.1201580089061166 0.13446079727692486 0.12047256875288363 C 0.13426102494349695 0.1201580089061166 0.13353873869149555 0.11820181724172031 0.1336096662749901 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1336096662749901 0.11837649043488672 C 0.13366817009435403 0.11820678674737256 0.13449332331956446 0.11602548633794979 0.13431171210735726 0.11634004618471683 C 0.13449332331956446 0.11602548633794979 0.13591210821431962 0.11445691611442935 0.13578900082147635 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716183,0.15537876328686645) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629190408276128 0.10795774326497763 C 0.10619295586293391 0.10768268056094668 0.10536263486105045 0.10572350819802029 0.1056982147637971 0.10630736704079195 C 0.10536263486105045 0.10572350819802029 0.10431948248380359 0.10386212934828852 0.1042784246662814 0.1044545902083476 C 0.10431948248380359 0.10386212934828852 0.10631858329487757 0.10207932416850657 0.10594456166893018 0.10275260188043749 C 0.10631858329487757 0.10207932416850657 0.10652255442196576 0.10041492393676214 0.10652255442196576 0.10041492393676214 C 0.10652255442196576 0.10041492393676214 0.10557054004298279 0.1034258795923684 0.10594456166893018 0.10275260188043749 C 0.10557054004298279 0.1034258795923684 0.10371265235774797 0.10436703136186223 0.1042784246662814 0.1044545902083476 C 0.10371265235774797 0.10436703136186223 0.10219763717477533 0.10155285594121863 0.10254992781772959 0.10222724880152531 C 0.10219763717477533 0.10155285594121863 0.10210047297369354 0.10010506375400449 0.10216468080855583 0.10040823304650746" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.35337633189716183,0.15915348144807084) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1399297364598004 0.11460177227368223 C 0.14004053311335932 0.11473214281700983 0.14142274639349395 0.11644932265570374 0.14125929630250747 0.1161662187936134 C 0.14142274639349395 0.11644932265570374 0.1419437909890656 0.11815175193752903 0.14189113755163804 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14189113755163804 0.11799901861876629 C 0.1418273027264929 0.11815622449261605 0.14094532454981148 0.12016859296705384 0.1411251196498966 0.11988548910496352 C 0.14094532454981148 0.12016859296705384 0.13961763607567654 0.1215221629520908 0.13973359635061655 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13973359635061655 0.12139626496385024 C 0.13971388800666937 0.12146981750479416 0.13942354368230658 0.1224062921931179 0.1394970962232505 0.12227889545517724 C 0.13942354368230658 0.1224062921931179 0.138723569121349 0.12299857836008199 0.13885096585928966 0.12292502581913807 C 0.138723569121349 0.12299857836008199 0.13782123028607476 0.1231615259465042 0.1379683353679626 0.1231615259465042 C 0.13782123028607476 0.1231615259465042 0.13695830813869503 0.12285147327819415 0.13708570487663566 0.12292502581913807 C 0.13695830813869503 0.12285147327819415 0.1363660219717311 0.12215149871723659 0.136439574512675 0.12227889545517724 C 0.1363660219717311 0.12215149871723659 0.13618336604136147 0.12132271242290632 0.13620307438530865 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13620307438530865 0.12139626496385024 C 0.13608711411036867 0.12127036697560968 0.13463175598594362 0.1196023852428732 0.13481155108602877 0.11988548910496352 C 0.13463175598594362 0.1196023852428732 0.13398169835914195 0.11784181274491652 0.13404553318428708 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13404553318428708 0.11799901861876629 C 0.13409818662171463 0.11784628530000354 0.13484082452440418 0.11588311493152306 0.1346773744334177 0.1161662187936134 C 0.13484082452440418 0.11588311493152306 0.13611773092968382 0.11447140173035464 0.1360069342761249 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971618,0.16255072779315488) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10609643901205085 0.10758070896966163 C 0.1060073856142062 0.10733315253603376 0.10526009671251092 0.10556989740939997 0.10556211862498294 0.10609537036789447 C 0.10526009671251092 0.10556989740939997 0.10432125957298877 0.10389465644464141 0.10428430753721879 0.10442787121869458 C 0.10432125957298877 0.10389465644464141 0.10612045030295549 0.10229013178283765 0.10578383083960284 0.10289608172357546 C 0.10612045030295549 0.10229013178283765 0.10630402431733463 0.10079217157426766 0.10630402431733463 0.10079217157426766 C 0.10630402431733463 0.10079217157426766 0.1054472113762502 0.10350203166431328 0.10578383083960284 0.10289608172357546 C 0.1054472113762502 0.10350203166431328 0.1037751124595387 0.10434906825685775 0.10428430753721879 0.10442787121869458 C 0.1037751124595387 0.10434906825685775 0.10241159879486349 0.10181631037827846 0.1027286603735223 0.10242326395255448 C 0.10241159879486349 0.10181631037827846 0.10232415101388986 0.10051329740978578 0.10238193806526592 0.10078614977303844" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3533763318971618,0.16594797413823886) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13973359635061655 0.11460177227368223 C 0.1398333133388196 0.11471910576267708 0.14107730529094092 0.11626456761750158 0.14093020020905309 0.11600977414162027 C 0.14107730529094092 0.11626456761750158 0.14154624542695532 0.11779675397114435 0.14149885733327053 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14149885733327053 0.11765929398425788 C 0.14144140599063992 0.11780077927072267 0.1406476256316267 0.11961191089771672 0.1408094412217033 0.11935711742183543 C 0.1406476256316267 0.11961191089771672 0.13945270600490522 0.12083012388425 0.13955707025235123 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955707025235123 0.1207168156948335 C 0.13953933274279876 0.12078301298168302 0.13927802285087212 0.1216258402011743 0.13934422013772166 0.12151118313702772 C 0.13927802285087212 0.1216258402011743 0.13864804574601033 0.12215889775144197 0.13876270281015693 0.12209270046459245 C 0.13864804574601033 0.12215889775144197 0.13783594079426356 0.12230555057922199 0.1379683353679626 0.12230555057922199 C 0.13783594079426356 0.12230555057922199 0.13705931086162182 0.12202650317774293 0.1371739679257684 0.12209270046459245 C 0.13705931086162182 0.12202650317774293 0.13652625331135415 0.12139652607288114 0.13659245059820369 0.12151118313702772 C 0.13652625331135415 0.12139652607288114 0.13636186297402153 0.12065061840798398 0.136379600483574 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.136379600483574 0.1207168156948335 C 0.13627523623612803 0.120603507505417 0.13496541392414552 0.11910232394595413 0.13512722951422212 0.11935711742183543 C 0.13496541392414552 0.11910232394595413 0.13438036206002416 0.11751780869779309 0.13443781340265476 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13443781340265476 0.11765929398425788 C 0.13448520149633955 0.11752183399737141 0.13515357560876012 0.11575498066573896 0.1350064705268723 0.11600977414162027 C 0.13515357560876012 0.11575498066573896 0.13630279137351167 0.11448443878468739 0.13620307438530865 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971617,0.16900549584881452) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1059205204484112 0.10724137810387716 C 0.10584037239035103 0.10701857731361208 0.10516781237882541 0.10543164769964168 0.10543963210005021 0.10590457336228674 C 0.10516781237882541 0.10543164769964168 0.10432285895325542 0.10392393083135895 0.10428960212106246 0.10440382412800679 C 0.10432285895325542 0.10392393083135895 0.10594213061022535 0.10247985863573565 0.10563917309320797 0.10302521358239967 C 0.10594213061022535 0.10247985863573565 0.10610734722316675 0.10113169444802263 0.10610734722316675 0.10113169444802263 C 0.10610734722316675 0.10113169444802263 0.10533621557619059 0.1035705685290637 0.10563917309320797 0.10302521358239967 C 0.10533621557619059 0.1035705685290637 0.1038313265511504 0.10433290146235365 0.10428960212106246 0.10440382412800679 C 0.1038313265511504 0.10433290146235365 0.10260416425294269 0.10205341937163237 0.10288951967373564 0.10259967758848078 C 0.10260416425294269 0.10205341937163237 0.10252546125006633 0.10088070769998898 0.1025774695963048 0.10112627482691638" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.3533763318971617,0.17206301755939013) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13955707025235123 0.11460177227368223 C 0.13964681554173397 0.11470737241377758 0.14076640829864306 0.11609828808311966 0.14063401372494402 0.11586897395482648 C 0.14076640829864306 0.11609828808311966 0.141188454421056 0.11747725580139809 0.1411458051367397 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1411458051367397 0.11735354181320028 C 0.14109409892837216 0.11748087857101859 0.1403796966052603 0.11911089703531323 0.14052533063632927 0.11888158290702006 C 0.1403796966052603 0.11911089703531323 0.1393042689412108 0.12020728872319325 0.13939819676391224 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13939819676391224 0.12010531135271839 C 0.13938223300531502 0.12016488891088295 0.13914705410258116 0.12092343340842512 0.1392066316607457 0.12082024205069321 C 0.13914705410258116 0.12092343340842512 0.13858007470820566 0.12140318520366601 0.1386832660659376 0.12134360764550145 C 0.13858007470820566 0.12140318520366601 0.13784918025163345 0.12153517274866801 0.1379683353679626 0.12153517274866801 C 0.13784918025163345 0.12153517274866801 0.13715021331225596 0.12128403008733689 0.1372534046699879 0.12134360764550145 C 0.13715021331225596 0.12128403008733689 0.13667046151701487 0.12071705069296129 0.13673003907517944 0.12082024205069321 C 0.13667046151701487 0.12071705069296129 0.13652251021341577 0.12004573379455383 0.13653847397201296 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13653847397201296 0.12010531135271839 C 0.13644454614931156 0.12000333398224353 0.13526570606852714 0.11865226877872688 0.1354113400995961 0.11888158290702006 C 0.13526570606852714 0.11865226877872688 0.13473915939081796 0.11722620505538196 0.13479086559918552 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13479086559918552 0.11735354181320028 C 0.13483351488350184 0.11722982782500246 0.13543505158468033 0.1156396598265333 0.1353026570109813 0.11586897395482648 C 0.13543505158468033 0.1156396598265333 0.13646934577295672 0.11449617213358688 0.136379600483574 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716167,0.1748147870989082) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10576219374113575 0.10693598032467116 C 0.10569006048888159 0.1067354596134326 0.10508475647850847 0.10530722296085923 0.10532939422761078 0.10573285605723978 C 0.10508475647850847 0.10530722296085923 0.10432429839549553 0.10395027777940483 0.10429436724652186 0.10438218174638789 C 0.10432429839549553 0.10395027777940483 0.10578164288676843 0.10265061280334381 0.10550898112145281 0.10314143225534145 C 0.10578164288676843 0.10265061280334381 0.10593033783841563 0.10143726503440209 0.10593033783841563 0.10143726503440209 C 0.10593033783841563 0.10143726503440209 0.10523631935613718 0.10363225170733908 0.10550898112145281 0.10314143225534145 C 0.10523631935613718 0.10363225170733908 0.103881919233601 0.10431835134730005 0.10429436724652186 0.10438218174638789 C 0.103881919233601 0.10431835134730005 0.10277747316521399 0.10226681746565086 0.10303429304392765 0.10275844986081444 C 0.10277747316521399 0.10226681746565086 0.1027066404626253 0.10121137696117183 0.10275344797423992 0.10143238737540648" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.35337633189716167,0.1775665566384263) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939819676391224 0.11460177227368223 C 0.1394789675243567 0.11469681239976805 0.14048660100557492 0.1159486365021759 0.14036744588924577 0.11574225378671205 C 0.14048660100557492 0.1159486365021759 0.14086644251574676 0.1171897074486265 0.14082805815986207 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14082805815986207 0.11707836485924847 C 0.14078152257233129 0.11719296794128496 0.14013856048153056 0.1186599845591502 0.14026963110949262 0.11845360184368633 C 0.14013856048153056 0.1186599845591502 0.13917067558388607 0.11964673707824212 0.13925521062431734 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13925521062431734 0.11955495744481476 C 0.13924084324157984 0.11960857724716287 0.13902918222911925 0.12029126729495083 0.13908280203146736 0.1201983950729921 C 0.13902918222911925 0.12029126729495083 0.13851890077418125 0.12072304391066765 0.13861177299613997 0.12066942410831955 C 0.13851890077418125 0.12072304391066765 0.13786109576326638 0.12084183270116945 0.1379683353679626 0.12084183270116945 C 0.13786109576326638 0.12084183270116945 0.13723202551782654 0.12061580430597144 0.13732489773978526 0.12066942410831955 C 0.13723202551782654 0.12061580430597144 0.13680024890210973 0.12010552285103336 0.13685386870445784 0.1201983950729921 C 0.13680024890210973 0.12010552285103336 0.13666709272887048 0.11950133764246665 0.13668146011160798 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13668146011160798 0.11955495744481476 C 0.1365969250711767 0.11946317781138739 0.13553596899847073 0.11824721912822247 0.13566703962643278 0.11845360184368633 C 0.13553596899847073 0.11824721912822247 0.13506207698853245 0.11696376177721197 0.13510861257606324 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13510861257606324 0.11707836485924847 C 0.13514699693194793 0.11696702226987044 0.1356883799630085 0.11553587107124821 0.13556922484667935 0.11574225378671207 C 0.1356883799630085 0.11553587107124821 0.13661924473245743 0.11450673214759641 0.13653847397201296 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971616,0.18004314922399253) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10561969970458765 0.10666112232338579 C 0.10555477977755892 0.10648065368327109 0.10501000616822317 0.10519524069595508 0.10523018014241525 0.10557831048269757 C 0.10501000616822317 0.10519524069595508 0.10432559389351148 0.1039739900326461 0.1042986558594352 0.10436270360293086 C 0.10432559389351148 0.1039739900326461 0.10563720393565705 0.10280429155419113 0.10539180834687296 0.10324602906098901 C 0.10563720393565705 0.10280429155419113 0.10577102939213973 0.10171227856214361 0.10577102939213973 0.10171227856214361 C 0.10577102939213973 0.10171227856214361 0.10514641275808888 0.10368776656778689 0.10539180834687296 0.10324602906098901 C 0.10514641275808888 0.10368776656778689 0.10392745264780644 0.10430525624375181 0.1042986558594352 0.10436270360293086 C 0.10392745264780644 0.10430525624375181 0.10293345118625814 0.1024588757502675 0.10316458907710041 0.10290134490591472 C 0.10293345118625814 0.1024588757502675 0.10286970175392843 0.10150897929623634 0.10291182851438156 0.10170788866904754" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.3533763318971616,0.18251974180955882) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13925521062431734 0.11460177227368223 C 0.13932790430871736 0.11468730838715947 0.14023477444181384 0.11581395007932656 0.1401275348371176 0.11562820563540908 C 0.14023477444181384 0.11581395007932656 0.1405766318009684 0.11693091393113209 0.14054208588067219 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14054208588067219 0.11683070560069185 C 0.14050020385189446 0.11693384837452468 0.1399215379701737 0.11825416333060337 0.14003950153533956 0.1180684188866859 C 0.1399215379701737 0.11825416333060337 0.13905044156229374 0.11914224059778608 0.13912652309868187 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13912652309868187 0.11905963892770145 C 0.13911359245421812 0.11910789674981476 0.13892309754300358 0.119722317792824 0.13897135536511687 0.11963873279306113 C 0.13892309754300358 0.119722317792824 0.13846384423355948 0.12011091674696914 0.13854742923332233 0.12006265892485583 C 0.13846384423355948 0.12011091674696914 0.137871819723736 0.12021782665842078 0.1379683353679626 0.12021782665842078 C 0.137871819723736 0.12021782665842078 0.13730565650284018 0.12001440110274253 0.13738924150260304 0.12006265892485583 C 0.13730565650284018 0.12001440110274253 0.136917057548695 0.11955514779329826 0.1369653153708083 0.11963873279306113 C 0.136917057548695 0.11955514779329826 0.13679721699277964 0.11901138110558815 0.1368101476372434 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1368101476372434 0.11905963892770145 C 0.13673406610085526 0.11897703725761682 0.13577920563541993 0.11788267444276843 0.13589716920058578 0.1180684188866859 C 0.13577920563541993 0.11788267444276843 0.13535270282647544 0.11672756282685902 0.13539458485525316 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13539458485525316 0.11683070560069185 C 0.13542913077554936 0.11673049727025162 0.1359163755035039 0.11544246119149161 0.13580913589880766 0.11562820563540908 C 0.1359163755035039 0.11544246119149161 0.136754153796008 0.114516236160205 0.13668146011160798 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18474867513656845) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10549145507169452 0.10641375012222896 C 0.10543302713736866 0.10625132834612573 0.10494273088896647 0.10509445665754133 0.10514088746573934 0.10543921946560958 C 0.10494273088896647 0.10509445665754133 0.10432675984172593 0.10399533106056319 0.10430251561105726 0.10434517327381948 C 0.10432675984172593 0.10399533106056319 0.10550720887965702 0.10294260242995376 0.10528635284975134 0.10334016618607185 C 0.10550720887965702 0.10294260242995376 0.10562765179049131 0.10195979073711098 0.10562765179049131 0.10195979073711098 C 0.10562765179049131 0.10195979073711098 0.10506549681984566 0.10373772994218994 0.10528635284975134 0.10334016618607185 C 0.10506549681984566 0.10373772994218994 0.10396843272059136 0.10429347065055833 0.10430251561105726 0.10434517327381948 C 0.10396843272059136 0.10429347065055833 0.10307383140519788 0.10263172820642248 0.10328185550695593 0.10302995044650498 C 0.10307383140519788 0.10263172820642248 0.10301645691610113 0.10177682139779444 0.10305437100050896 0.10195583983332451" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.021692217317265138 0.01969476171262892 C 0.021769863246687268 0.019933731311340065 0.02091308375329868 0.021614749058287253 0.021116363435613877 0.021467057724005843 C 0.02091308375329868 0.021614749058287253 0.01904958144716756 0.021319366389724433 0.019252861129482757 0.021467057724005843 C 0.01904958144716756 0.021319366389724433 0.01875465317725362 0.019455792113917774 0.01867700724783149 0.01969476171262892 C 0.01875465317725362 0.019455792113917774 0.020435879788334447 0.018599422539472096 0.02018461228254831 0.018599422539472096 C 0.020435879788334447 0.018599422539472096 0.021769863246687268 0.019933731311340065 0.021692217317265138 0.01969476171262892 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.027419487806183165 0.02605937823328933 C 0.027472358554177845 0.02622209766399067 0.026888959359666523 0.02736673803773433 0.027027376774927198 0.02726617189893087 C 0.026888959359666523 0.02736673803773433 0.02562006140779436 0.027165605760127408 0.025758478823055046 0.02726617189893087 C 0.02562006140779436 0.027165605760127408 0.025419238539793627 0.02589665880258799 0.02536636779179896 0.02605937823328933 C 0.025419238539793627 0.02589665880258799 0.026564021133523068 0.02531353873051479 0.02639292779899105 0.02531353873051479 C 0.026564021133523068 0.02531353873051479 0.027472358554177845 0.02622209766399067 0.027419487806183165 0.02605937823328933 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35434565889154657,0.18721363428012106) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17450750017557515 0.18664116645603634 C 0.17457375527328678 0.18693343446519864 0.17536226970634872 0.19078716874361706 0.1753025613481146 0.19014838256598388 C 0.17536226970634872 0.19078716874361706 0.17521745373490702 0.19465311875610541 0.17522400047438452 0.19430660058763452" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17522400047438452 0.19430660058763452 C 0.17517564489527943 0.19455198550561728 0.1744936496819783 0.19781802635222526 0.17464373352512344 0.19725121960342767 C 0.1744936496819783 0.19781802635222526 0.173321266092603 0.20142970340402036 0.17342299435664305 0.20110828157320554" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17342299435664305 0.20110828157320554 C 0.1734292546787226 0.20075837106926328 0.17348514435534013 0.19638018326066115 0.17349811822159766 0.19690935552589856 C 0.17348514435534013 0.19638018326066115 0.17324807377321563 0.19457895262906136 0.1732673079615527 0.19475821439035654" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1732673079615527 0.19475821439035654 C 0.17320550898652223 0.19441873039573496 0.17247093334340066 0.1898088586782968 0.17252572026118693 0.19068440645489765 C 0.17247093334340066 0.1898088586782968 0.17261687700536166 0.1837155772891672 0.17260986494811745 0.18425164107114647" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17260986494811745 0.18425164107114647 C 0.1726852552376278 0.18429962895985127 0.17367268469119623 0.1850266228510117 0.17351454842224143 0.18482749573560422 C 0.17367268469119623 0.1850266228510117 0.1745902461550196 0.18679230568273902 0.17450750017557515 0.18664116645603634" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35240700490277654,0.18721363428012106) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.1714942327721101 0.18656477878445557 C 0.17157966402247837 0.18641931767723413 0.17268109941740462 0.18462705376553518 0.17251940777652938 0.1848192454977983 C 0.17268109941740462 0.18462705376553518 0.17351079285312 0.1842117473722565 0.173434532462613 0.1842584779972982" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.173434532462613 0.1842584779972982 C 0.17343169544872966 0.18479457639257632 0.17334189630447813 0.19156509187567342 0.1734004882960127 0.19069165874063582 C 0.17334189630447813 0.19156509187567342 0.1726756735865469 0.1950770103575088 0.17273142856419813 0.19473967561774932" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17273142856419813 0.19473967561774932 C 0.17273204311500984 0.19491713715383074 0.17276038872333122 0.1974291037144322 0.1727388031739386 0.19686921405072652 C 0.17276038872333122 0.1974291037144322 0.17301142615549034 0.20184077970984166 0.17299045515690945 0.20145835158221742" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17299045515690945 0.20145835158221742 C 0.17287641079986676 0.2011226327087084 0.17144687589674568 0.19683157774611962 0.17162192287239736 0.19742972510010917 C 0.17144687589674568 0.19683157774611962 0.17082888883048034 0.1940181548538622 0.17088989144908934 0.19428058333434273" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17088989144908934 0.19428058333434273 C 0.17086856027880823 0.19393300781143574 0.17068427918263457 0.1894666933469682 0.17063391740571618 0.1901096770594588 C 0.17068427918263457 0.1894666933469682 0.1715659257193096 0.18626937059487197 0.1714942327721101 0.18656477878445557" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19561704789625814 0.17892734283795877 C 0.19555423420119117 0.17830048050933806 0.19474859054914595 0.17041233817418042 0.19486328355545435 0.17140499489450997 C 0.19474859054914595 0.17041233817418042 0.19418885250931583 0.16664966780229543 0.19424073182055726 0.16701546219400423" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19424073182055726 0.16701546219400423 C 0.1942214502697136 0.16668668831362204 0.19404638690450512 0.1622427163779444 0.1940093532104334 0.16307017562941784 C 0.19404638690450512 0.1622427163779444 0.19474145139433363 0.15658726580523172 0.19468513614941824 0.15708595117632296" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19468513614941824 0.15708595117632296 C 0.1947541103515661 0.1570556567347385 0.19564434459456861 0.15671876008636482 0.19551282657519264 0.15672241787730956 C 0.19564434459456861 0.15671876008636482 0.19632589619915802 0.15706869433562565 0.1962633523819299 0.15704205768498594" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1962633523819299 0.15704205768498594 C 0.19632079851150455 0.15756269878856155 0.19699268769093853 0.16410335848105922 0.1969527059368257 0.1632897509278931 C 0.19699268769093853 0.16410335848105922 0.19672566905582178 0.16709831477257006 0.19674313343128363 0.16680534832297952" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19674313343128363 0.16680534832297952 C 0.19670911124088608 0.1671719450712202 0.1962410266852608 0.17221467551144948 0.19633486714651294 0.17120450930186787 C 0.1962410266852608 0.17221467551144948 0.19555722962540356 0.1795709122992997 0.19561704789625814 0.17892734283795877" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 72 KiB

View File

@@ -0,0 +1,171 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.245122456365314 0.235580768030074 0.2389452910220962 0.2582449981683262 0.23984746965066872 0.25531608152015056 C 0.2389452910220962 0.2582449981683262 0.2329450519520436 0.2696271114436592 0.23477585706922943 0.26893364839999273 C 0.2329450519520436 0.2696271114436592 0.2150614667736401 0.2636376380441483 0.2178778082444386 0.2636376380441483 C 0.2150614667736401 0.2636376380441483 0.19914895430246188 0.2682401853563264 0.20097975941964774 0.26893364839999284 C 0.19914895430246188 0.2682401853563264 0.19500596820963584 0.252387164871975 0.1959081468382084 0.2553160815201506 C 0.19500596820963584 0.252387164871975 0.18967407162999128 0.23199252921369645 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ左">
<g id="編節1">
<g transform="translate(0.3213105737601799,0.13389549078914734) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14065887184510625 0.11460177227368223 C 0.1408108562807152 0.11478060703819197 0.14270689644550907 0.11713613493763485 0.14248268507241377 0.116747789447799 C 0.14270689644550907 0.11713613493763485 0.1434216352597362 0.1194714288770386 0.14334940832224985 0.11926191815171247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14334940832224985 0.11926191815171247 C 0.14326184340435533 0.11947756406920186 0.1420519967971106 0.12223801465142105 0.14229862930751544 0.12184966916158521 C 0.1420519967971106 0.12223801465142105 0.14023075060488152 0.12409476360208903 0.14038981819739182 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14038981819739182 0.12392206402974258 C 0.14036278343203218 0.12402295914763548 0.1399645058951833 0.12530756091488346 0.14006540101307619 0.12513280544445732 C 0.1399645058951833 0.12530756091488346 0.13900432131225107 0.12612002479274906 0.1391790767826772 0.12601912967485618 C 0.13900432131225107 0.12612002479274906 0.13776654513217684 0.12634354685917182 0.1379683353679626 0.12634354685917182 C 0.13776654513217684 0.12634354685917182 0.1365828384828218 0.1259182345569633 0.13675759395324794 0.12601912967485618 C 0.1365828384828218 0.1259182345569633 0.13577037460495617 0.12495804997403119 0.13587126972284905 0.12513280544445732 C 0.13577037460495617 0.12495804997403119 0.13551981777317365 0.12382116891184969 0.1355468525385333 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1355468525385333 0.12392206402974258 C 0.135387784946023 0.12374936445739614 0.13339140891800488 0.12146132367174936 0.1336380414284097 0.12184966916158521 C 0.13339140891800488 0.12146132367174936 0.13249969749578078 0.11904627223422304 0.1325872624136753 0.11926191815171244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1325872624136753 0.11926191815171244 C 0.13265948935116165 0.11905240742638633 0.13367819703660672 0.11635944395796315 0.1334539856635114 0.116747789447799 C 0.13367819703660672 0.11635944395796315 0.1354297833264279 0.1144229375091725 0.13527779889081895 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017985,0.13855563666717757) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10701944173009977 0.0995217617126694 C 0.10694017279817102 0.09989604478983355 0.1061089014188307 0.10260004395381073 0.1065438281385273 0.10176746017565433 C 0.1061089014188307 0.10260004395381073 0.10371139708039742 0.1046253617229477 0.10440988141192016 0.10451726438160774 C 0.10371139708039742 0.1046253617229477 0.10189116705562863 0.10158483717192755 0.10235292214939083 0.1024160442236941 C 0.10189116705562863 0.10158483717192755 0.10163935084934693 0.09953002207100842 0.10163935084934693 0.09953002207100842 C 0.10163935084934693 0.09953002207100842 0.10281467724315303 0.10324725127546065 0.10235292214939083 0.1024160442236941 C 0.10281467724315303 0.10324725127546065 0.10446057007552778 0.1052486975421745 0.10440988141192016 0.10451726438160774 C 0.10446057007552778 0.1052486975421745 0.10224275795480607 0.10752545657323248 0.10265705413103651 0.10680464318709461 C 0.10224275795480607 0.10752545657323248 0.10180194605845436 0.10918172828365838 0.10192410435453753 0.10884214469843498" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.32131057376017985,0.14321578254520767) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14038981819739182 0.11460177227368223 C 0.1405266041894399 0.114762723561741 0.1422330403377545 0.11688269867123963 0.1420312501019687 0.11653318773038736 C 0.1422330403377545 0.11688269867123963 0.14287630527055883 0.11898446321670295 0.14281130102682113 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14281130102682113 0.11879590356390944 C 0.14273249260071605 0.1189899848896499 0.1416436306541958 0.1214743904136472 0.14186559991356015 0.12112487947279495 C 0.1416436306541958 0.1214743904136472 0.14000450908118964 0.12314546446924837 0.1401476699144489 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1401476699144489 0.12299003485413657 C 0.14012333862562523 0.12308084046024016 0.13976488884246124 0.12423698205076321 0.13985569444856483 0.12407970212737969 C 0.13976488884246124 0.12423698205076321 0.13890072271782228 0.12496819954084241 0.1390580026412058 0.1248773939347388 C 0.13890072271782228 0.12496819954084241 0.1377867241557554 0.12516936940062295 0.1379683353679626 0.12516936940062295 C 0.1377867241557554 0.12516936940062295 0.1367213881713359 0.12478658832863519 0.1368786680947194 0.1248773939347388 C 0.1367213881713359 0.12478658832863519 0.1359901706812567 0.12392242220399617 0.13608097628736032 0.12407970212737969 C 0.1359901706812567 0.12392242220399617 0.13576466953265254 0.12289922924803297 0.1357890008214762 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1357890008214762 0.12299003485413657 C 0.13564583998821694 0.12283460523902476 0.13384910156300078 0.12077536853194269 0.1340710708223651 0.12112487947279495 C 0.13384910156300078 0.12077536853194269 0.13304656128299908 0.11860182223816898 0.13312536970910416 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13312536970910416 0.11879590356390944 C 0.13319037395284186 0.11860734391111594 0.13410721086974223 0.11618367678953505 0.13390542063395647 0.11653318773038732 C 0.13410721086974223 0.11618367678953505 0.13568363853058135 0.11444082098562347 0.1355468525385333 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601798,0.1474099138354349) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10675122289465533 0.09998832557258422 C 0.10667988085591945 0.10032518034203194 0.10593173661451313 0.10275877958961131 0.10632317066224006 0.10200945418927057 C 0.10593173661451313 0.10275877958961131 0.10377398270992325 0.10458156558183468 0.10440261860829371 0.1044842779746287 C 0.10377398270992325 0.10458156558183468 0.10213577568763135 0.10184509348591653 0.10255135527201732 0.10259317983250642 C 0.10213577568763135 0.10184509348591653 0.1019091411019779 0.09999575989508931 0.1019091411019779 0.09999575989508931 C 0.1019091411019779 0.09999575989508931 0.10296693485640329 0.10334126617909631 0.10255135527201732 0.10259317983250642 C 0.10296693485640329 0.10334126617909631 0.10444823840554056 0.10514256781913878 0.10440261860829371 0.1044842779746287 C 0.10444823840554056 0.10514256781913878 0.10245220749689103 0.10719165094709095 0.10282507405549843 0.10654291889956687 C 0.10245220749689103 0.10719165094709095 0.10205547679017447 0.10868229548647426 0.10216541925664932 0.10837667025977321" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3213105737601798,0.151604045125662) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1401476699144489 0.11460177227368223 C 0.14027077730729218 0.11474662843293512 0.1418065698407752 0.11665460603148387 0.141624958628568 0.11634004618471683 C 0.1418065698407752 0.11665460603148387 0.14238550828029914 0.11854619412240089 0.1423270044609352 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1423270044609352 0.11837649043488672 C 0.14225607687744066 0.11855116362805314 0.14127610112557248 0.12078712859965067 0.1414758734590004 0.12047256875288363 C 0.14127610112557248 0.12078712859965067 0.139800891709867 0.12229109524969174 0.13992973645980034 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13992973645980034 0.12215120859609112 C 0.13990783829985903 0.12223293364158436 0.1395852334950113 0.12327346107305513 0.13966695854050457 0.12313190914200996 C 0.1395852334950113 0.12327346107305513 0.13880748398283627 0.12393155681412645 0.13894903591388144 0.1238498317686332 C 0.13880748398283627 0.12393155681412645 0.13780488527697612 0.12411260968792882 0.1379683353679626 0.12411260968792882 C 0.13780488527697612 0.12411260968792882 0.13684608289099856 0.12376810672313997 0.13698763482204374 0.1238498317686332 C 0.13684608289099856 0.12376810672313997 0.13618798714992733 0.12299035721096478 0.13626971219542056 0.12313190914200996 C 0.13618798714992733 0.12299035721096478 0.13598503611618362 0.12206948355059788 0.13600693427612492 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13600693427612492 0.12215120859609112 C 0.13587808952619157 0.1220113219424905 0.13426102494349687 0.1201580089061166 0.1344607972769248 0.12047256875288363 C 0.13426102494349687 0.1201580089061166 0.1335387386914952 0.11820181724172031 0.1336096662749898 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1336096662749898 0.11837649043488672 C 0.13366817009435375 0.11820678674737256 0.13449332331956432 0.11602548633794979 0.13431171210735712 0.11634004618471683 C 0.13449332331956432 0.11602548633794979 0.13591210821431948 0.11445691611442935 0.1357890008214762 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017974,0.1553787632868665) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10650982594275545 0.10040823304650746 C 0.10644561810789314 0.10071140233901044 0.1057722882906274 0.102901641661832 0.10612457893358165 0.10222724880152531 C 0.1057722882906274 0.102901641661832 0.1038303097764965 0.10454214905483297 0.10439608208502991 0.1044545902083476 C 0.1038303097764965 0.10454214905483297 0.10235592345643378 0.10207932416850657 0.10272994508238116 0.10275260188043749 C 0.10235592345643378 0.10207932416850657 0.10215195232934561 0.10041492393676214 0.10215195232934561 0.10041492393676214 C 0.10215195232934561 0.10041492393676214 0.10310396670832854 0.1034258795923684 0.10272994508238116 0.10275260188043749 C 0.10310396670832854 0.1034258795923684 0.10443713990255209 0.10504705106840669 0.10439608208502991 0.1044545902083476 C 0.10443713990255209 0.10504705106840669 0.10264071208476754 0.10689122588356362 0.10297629198751419 0.10630736704079195 C 0.10264071208476754 0.10689122588356362 0.1022836544487226 0.10823280596900858 0.10238260266854997 0.10795774326497763" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.32131057376017974,0.1591534814480709) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13992973645980034 0.11460177227368223 C 0.14004053311335926 0.11473214281700983 0.1414227463934939 0.11644932265570374 0.14125929630250741 0.1161662187936134 C 0.1414227463934939 0.11644932265570374 0.14194379098906557 0.11815175193752903 0.141891137551638 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.141891137551638 0.11799901861876629 C 0.14182730272649288 0.11815622449261605 0.14094532454981146 0.12016859296705384 0.14112511964989657 0.11988548910496352 C 0.14094532454981146 0.12016859296705384 0.1396176360756765 0.1215221629520908 0.13973359635061652 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13973359635061652 0.12139626496385024 C 0.13971388800666934 0.12146981750479416 0.13942354368230642 0.1224062921931179 0.13949709622325032 0.12227889545517724 C 0.13942354368230642 0.1224062921931179 0.138723569121349 0.12299857836008199 0.13885096585928966 0.12292502581913807 C 0.138723569121349 0.12299857836008199 0.13782123028607476 0.1231615259465042 0.1379683353679626 0.1231615259465042 C 0.13782123028607476 0.1231615259465042 0.136958308138695 0.12285147327819415 0.13708570487663566 0.12292502581913807 C 0.136958308138695 0.12285147327819415 0.1363660219717308 0.12215149871723659 0.13643957451267472 0.12227889545517724 C 0.1363660219717308 0.12215149871723659 0.13618336604136147 0.12132271242290632 0.13620307438530865 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13620307438530865 0.12139626496385024 C 0.13608711411036864 0.12127036697560968 0.1346317559859435 0.1196023852428732 0.13481155108602863 0.11988548910496352 C 0.1346317559859435 0.1196023852428732 0.13398169835914203 0.11784181274491652 0.13404553318428716 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13404553318428716 0.11799901861876629 C 0.13409818662171472 0.11784628530000354 0.13484082452440416 0.11588311493152306 0.13467737443341768 0.1161662187936134 C 0.13484082452440416 0.11588311493152306 0.13611773092968385 0.11447140173035464 0.13600693427612492 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601797,0.16255072779315494) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629256868604538 0.10078614977303844 C 0.10623478163466932 0.10105900213629111 0.10562878479913024 0.1030302175268305 0.10594584637778905 0.10242326395255448 C 0.10562878479913024 0.1030302175268305 0.10388100413641245 0.10450667418053142 0.10439019921409252 0.10442787121869458 C 0.10388100413641245 0.10450667418053142 0.10255405644835593 0.10229013178283765 0.10289067591170857 0.10289608172357546 C 0.10255405644835593 0.10229013178283765 0.10237048243397663 0.10079217157426766 0.10237048243397663 0.10079217157426766 C 0.10237048243397663 0.10079217157426766 0.10322729537506121 0.10350203166431328 0.10289067591170857 0.10289608172357546 C 0.10322729537506121 0.10350203166431328 0.10442715124986249 0.10496108599274775 0.10439019921409252 0.10442787121869458 C 0.10442715124986249 0.10496108599274775 0.10281036621385636 0.10662084332638898 0.10311238812632836 0.10609537036789447 C 0.10281036621385636 0.10662084332638898 0.10248901434141588 0.10782826540328949 0.10257806773926052 0.10758070896966163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3213105737601797,0.16594797413823892) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13973359635061652 0.11460177227368223 C 0.13983331333881957 0.11471910576267708 0.1410773052909409 0.11626456761750158 0.14093020020905306 0.11600977414162027 C 0.1410773052909409 0.11626456761750158 0.1415462454269553 0.11779675397114435 0.1414988573332705 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414988573332705 0.11765929398425788 C 0.1414414059906399 0.11780077927072267 0.1406476256316266 0.11961191089771672 0.14080944122170322 0.11935711742183543 C 0.1406476256316266 0.11961191089771672 0.13945270600490514 0.12083012388425 0.13955707025235115 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955707025235115 0.1207168156948335 C 0.13953933274279867 0.12078301298168302 0.13927802285087204 0.1216258402011743 0.13934422013772158 0.12151118313702772 C 0.13927802285087204 0.1216258402011743 0.13864804574601025 0.12215889775144197 0.13876270281015685 0.12209270046459245 C 0.13864804574601025 0.12215889775144197 0.13783594079426356 0.12230555057922199 0.1379683353679626 0.12230555057922199 C 0.13783594079426356 0.12230555057922199 0.1370593108616217 0.12202650317774293 0.13717396792576828 0.12209270046459245 C 0.1370593108616217 0.12202650317774293 0.1365262533113541 0.12139652607288114 0.13659245059820363 0.12151118313702772 C 0.1365262533113541 0.12139652607288114 0.1363618629740215 0.12065061840798398 0.13637960048357398 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13637960048357398 0.1207168156948335 C 0.13627523623612797 0.120603507505417 0.13496541392414543 0.11910232394595413 0.13512722951422204 0.11935711742183543 C 0.13496541392414543 0.11910232394595413 0.13438036206002418 0.11751780869779309 0.1344378134026548 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1344378134026548 0.11765929398425788 C 0.13448520149633958 0.11752183399737141 0.13515357560875996 0.11575498066573896 0.13500647052687215 0.11600977414162027 C 0.13515357560875996 0.11575498066573896 0.1363027913735117 0.11448443878468739 0.13620307438530865 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017963,0.16900549584881458) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10609703715500646 0.10112627482691638 C 0.106045028808768 0.10137184195384379 0.10549963165678276 0.10314593580532919 0.1057849870775757 0.10259967758848078 C 0.10549963165678276 0.10314593580532919 0.10392662906033673 0.10447474679365994 0.10438490463024878 0.10440382412800679 C 0.10392662906033673 0.10447474679365994 0.10273237614108599 0.10247985863573565 0.10303533365810337 0.10302521358239967 C 0.10273237614108599 0.10247985863573565 0.10256715952814453 0.10113169444802263 0.10256715952814453 0.10113169444802263 C 0.10256715952814453 0.10113169444802263 0.10333829117512075 0.1035705685290637 0.10303533365810337 0.10302521358239967 C 0.10333829117512075 0.1035705685290637 0.10441816146244173 0.10488371742465463 0.10438490463024878 0.10440382412800679 C 0.10441816146244173 0.10488371742465463 0.10296305493003625 0.10637749902493181 0.10323487465126104 0.10590457336228674 C 0.10296305493003625 0.10637749902493181 0.10267383824483994 0.10746417889414223 0.1027539863029001 0.10724137810387716" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.32131057376017963,0.17206301755939019) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13955707025235115 0.11460177227368223 C 0.1396468155417339 0.11470737241377758 0.14076640829864304 0.11609828808311966 0.140634013724944 0.11586897395482648 C 0.14076640829864304 0.11609828808311966 0.14118845442105593 0.11747725580139809 0.14114580513673963 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14114580513673963 0.11735354181320028 C 0.1410940989283721 0.11748087857101859 0.1403796966052602 0.11911089703531323 0.14052533063632916 0.11888158290702006 C 0.1403796966052602 0.11911089703531323 0.13930426894121084 0.12020728872319325 0.13939819676391224 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13939819676391224 0.12010531135271839 C 0.13938223300531502 0.12016488891088295 0.1391470541025811 0.12092343340842512 0.13920663166074568 0.12082024205069321 C 0.1391470541025811 0.12092343340842512 0.13858007470820544 0.12140318520366601 0.13868326606593737 0.12134360764550145 C 0.13858007470820544 0.12140318520366601 0.13784918025163345 0.12153517274866801 0.1379683353679626 0.12153517274866801 C 0.13784918025163345 0.12153517274866801 0.13715021331225577 0.12128403008733689 0.1372534046699877 0.12134360764550145 C 0.13715021331225577 0.12128403008733689 0.13667046151701484 0.12071705069296129 0.13673003907517942 0.12082024205069321 C 0.13667046151701484 0.12071705069296129 0.1365225102134157 0.12004573379455383 0.1365384739720129 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1365384739720129 0.12010531135271839 C 0.1364445461493115 0.12000333398224353 0.13526570606852703 0.11865226877872688 0.135411340099596 0.11888158290702006 C 0.13526570606852703 0.11865226877872688 0.134739159390818 0.11722620505538196 0.13479086559918552 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13479086559918552 0.11735354181320028 C 0.13483351488350181 0.11722982782500246 0.1354350515846803 0.1156396598265333 0.13530265701098126 0.11586897395482648 C 0.1354350515846803 0.1156396598265333 0.1364693457729567 0.11449617213358688 0.13637960048357398 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601796,0.17481478709890824) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10592105877707135 0.10143238737540648 C 0.10587425126545674 0.10165339778964114 0.10538339382867001 0.10325008225597801 0.10564021370738366 0.10275844986081444 C 0.10538339382867001 0.10325008225597801 0.1039676914918686 0.10444601214547572 0.10438013950478946 0.10438218174638789 C 0.1039676914918686 0.10444601214547572 0.10289286386454288 0.10265061280334381 0.10316552562985852 0.10314143225534145 C 0.10289286386454288 0.10265061280334381 0.10274416891289567 0.10143726503440209 0.10274416891289567 0.10143726503440209 C 0.10274416891289567 0.10143726503440209 0.10343818739517416 0.10363225170733908 0.10316552562985852 0.10314143225534145 C 0.10343818739517416 0.10363225170733908 0.10441007065376312 0.10481408571337095 0.10438013950478946 0.10438218174638789 C 0.10441007065376312 0.10481408571337095 0.10310047477459822 0.10615848915362033 0.10334511252370052 0.10573285605723978 C 0.10310047477459822 0.10615848915362033 0.1028401797579215 0.10713650103590973 0.10291231301017564 0.10693598032467116" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.3213105737601796,0.17756655663842635) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939819676391224 0.11460177227368223 C 0.1394789675243567 0.11469681239976806 0.14048660100557492 0.11594863650217593 0.14036744588924577 0.11574225378671207 C 0.14048660100557492 0.11594863650217593 0.14086644251574676 0.1171897074486265 0.14082805815986207 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14082805815986207 0.11707836485924847 C 0.14078152257233129 0.11719296794128496 0.14013856048153042 0.1186599845591502 0.1402696311094925 0.11845360184368633 C 0.14013856048153042 0.1186599845591502 0.13917067558388596 0.11964673707824212 0.13925521062431723 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13925521062431723 0.11955495744481476 C 0.13924084324157973 0.11960857724716287 0.13902918222911914 0.12029126729495083 0.13908280203146725 0.1201983950729921 C 0.13902918222911914 0.12029126729495083 0.13851890077418122 0.12072304391066765 0.13861177299613994 0.12066942410831955 C 0.13851890077418122 0.12072304391066765 0.13786109576326638 0.12084183270116945 0.1379683353679626 0.12084183270116945 C 0.13786109576326638 0.12084183270116945 0.1372320255178265 0.12061580430597144 0.13732489773978526 0.12066942410831955 C 0.1372320255178265 0.12061580430597144 0.13680024890210957 0.12010552285103336 0.13685386870445768 0.1201983950729921 C 0.13680024890210957 0.12010552285103336 0.13666709272887048 0.11950133764246665 0.13668146011160795 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13668146011160795 0.11955495744481476 C 0.13659692507117668 0.11946317781138739 0.13553596899847065 0.11824721912822247 0.1356670396264327 0.11845360184368633 C 0.13553596899847065 0.11824721912822247 0.13506207698853243 0.11696376177721197 0.13510861257606321 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13510861257606321 0.11707836485924847 C 0.1351469969319479 0.11696702226987044 0.13568837996300848 0.11553587107124819 0.13556922484667933 0.11574225378671205 C 0.13568837996300848 0.11553587107124819 0.13661924473245737 0.11450673214759642 0.1365384739720129 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601795,0.1800431492239926) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10576267823692977 0.10170788866904754 C 0.1057205514764766 0.10190679804185873 0.10527877978336853 0.10334381406156194 0.10550991767421082 0.10290134490591472 C 0.10527877978336853 0.10334381406156194 0.10400464768024728 0.10442015096210991 0.10437585089187604 0.10436270360293086 C 0.10400464768024728 0.10442015096210991 0.10303730281565425 0.10280429155419113 0.10328269840443832 0.10324602906098901 C 0.10303730281565425 0.10280429155419113 0.1029034773591716 0.10171227856214361 0.1029034773591716 0.10171227856214361 C 0.1029034773591716 0.10171227856214361 0.1035280939932224 0.10368776656778689 0.10328269840443832 0.10324602906098901 C 0.1035280939932224 0.10368776656778689 0.10440278892595231 0.10475141717321562 0.10437585089187604 0.10436270360293086 C 0.10440278892595231 0.10475141717321562 0.10322415263470393 0.10596138026944006 0.103444326608896 0.10557831048269757 C 0.10322415263470393 0.10596138026944006 0.10298988711969487 0.10684159096350049 0.1030548070467236 0.10666112232338579" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.3213105737601795,0.18251974180955888) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13925521062431723 0.11460177227368223 C 0.13932790430871725 0.11468730838715947 0.1402347744418137 0.11581395007932656 0.14012753483711746 0.11562820563540908 C 0.1402347744418137 0.11581395007932656 0.14057663180096833 0.11693091393113209 0.1405420858806721 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405420858806721 0.11683070560069185 C 0.14050020385189438 0.11693384837452468 0.13992153797017365 0.11825416333060337 0.1400395015353395 0.1180684188866859 C 0.13992153797017365 0.11825416333060337 0.13905044156229357 0.11914224059778608 0.13912652309868173 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13912652309868173 0.11905963892770145 C 0.139113592454218 0.11910789674981476 0.13892309754300355 0.119722317792824 0.13897135536511684 0.11963873279306113 C 0.13892309754300355 0.119722317792824 0.13846384423355937 0.12011091674696914 0.13854742923332222 0.12006265892485583 C 0.13846384423355937 0.12011091674696914 0.137871819723736 0.12021782665842078 0.1379683353679626 0.12021782665842078 C 0.137871819723736 0.12021782665842078 0.13730565650284013 0.12001440110274253 0.13738924150260298 0.12006265892485583 C 0.13730565650284013 0.12001440110274253 0.13691705754869496 0.11955514779329826 0.13696531537080828 0.11963873279306113 C 0.13691705754869496 0.11955514779329826 0.1367972169927795 0.11901138110558815 0.13681014763724325 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13681014763724325 0.11905963892770145 C 0.13673406610085512 0.11897703725761682 0.13577920563541984 0.11788267444276843 0.13589716920058567 0.1180684188866859 C 0.13577920563541984 0.11788267444276843 0.1353527028264754 0.11672756282685902 0.13539458485525313 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13539458485525313 0.11683070560069185 C 0.13542913077554933 0.11673049727025162 0.1359163755035038 0.11544246119149161 0.13580913589880755 0.11562820563540908 C 0.1359163755035038 0.11544246119149161 0.13675415379600797 0.114516236160205 0.13668146011160795 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.1847486751365685) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10562013575080237 0.10195583983332451 C 0.10558222166639453 0.10213485826885459 0.10518462714259726 0.10342817268658748 0.10539265124435532 0.10302995044650498 C 0.10518462714259726 0.10342817268658748 0.10403790824978813 0.10439687589708063 0.10437199114025403 0.10434517327381948 C 0.10403790824978813 0.10439687589708063 0.10316729787165431 0.10294260242995376 0.10338815390155998 0.10334016618607185 C 0.10316729787165431 0.10294260242995376 0.10304685496082001 0.10195979073711098 0.10304685496082001 0.10195979073711098 C 0.10304685496082001 0.10195979073711098 0.10360900993146564 0.10373772994218994 0.10338815390155998 0.10334016618607185 C 0.10360900993146564 0.10373772994218994 0.10439623537092269 0.10469501548707577 0.10437199114025403 0.10434517327381948 C 0.10439623537092269 0.10469501548707577 0.10333546270879906 0.10578398227367783 0.10353361928557193 0.10543921946560958 C 0.10333546270879906 0.10578398227367783 0.10312462374529098 0.1065761718983322 0.10318305167961683 0.10641375012222896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.02018461228254831 0.018599422539472096 C 0.020435879788334454 0.018599422539472096 0.021769863246687306 0.019933731311340065 0.02169221731726518 0.01969476171262892 C 0.021769863246687306 0.019933731311340065 0.02091308375329863 0.021614749058287253 0.02111636343561383 0.021467057724005843 C 0.02091308375329863 0.021614749058287253 0.0190495814471676 0.021319366389724433 0.0192528611294828 0.021467057724005843 C 0.0190495814471676 0.021319366389724433 0.018754653177253573 0.019455792113917774 0.018677007247831445 0.01969476171262892 C 0.018754653177253573 0.019455792113917774 0.020435879788334454 0.018599422539472096 0.02018461228254831 0.018599422539472096 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.026392927798991044 0.02531353873051479 C 0.02656402113352306 0.02531353873051479 0.02747235855417783 0.02622209766399067 0.027419487806183158 0.02605937823328933 C 0.02747235855417783 0.02622209766399067 0.026888959359666446 0.02736673803773433 0.027027376774927128 0.02726617189893087 C 0.026888959359666446 0.02736673803773433 0.02562006140779431 0.027165605760127408 0.02575847882305499 0.02726617189893087 C 0.02562006140779431 0.027165605760127408 0.025419238539793613 0.02589665880258799 0.025366367791798943 0.02605937823328933 C 0.025419238539793613 0.02589665880258799 0.02656402113352306 0.02531353873051479 0.026392927798991044 0.02531353873051479 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32034124676579434,0.1872136342801211) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17133297740168535 0.1864181858431891 C 0.1714323607986386 0.18628557785822727 0.17269956653607238 0.18464679402382128 0.1725255781651245 0.18482689002364724 C 0.17269956653607238 0.18464679402382128 0.17349544282705426 0.18420954583041343 0.17342083785305967 0.18425703384527758" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17342083785305967 0.18425703384527758 C 0.17342777686804092 0.18478751362952792 0.17343005773590356 0.19145641886361603 0.17350410603283467 0.1906227912562815 C 0.17343005773590356 0.19145641886361603 0.172451270977974 0.19456371295637584 0.17253225828988636 0.19426056513329165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17253225828988636 0.19426056513329165 C 0.17249703748177062 0.19443614128201403 0.17198137397438013 0.19690676288029277 0.1721096085924973 0.1963674789179601 C 0.17198137397438013 0.19690676288029277 0.17090042906247874 0.2010956804948939 0.17099344287248017 0.20073197268128362" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17099344287248017 0.20073197268128362 C 0.17099166556269507 0.2003500667000055 0.17095491544062189 0.1955773483861517 0.17097211515505917 0.1961491009059462 C 0.17095491544062189 0.1955773483861517 0.1707716238945805 0.19368109590523325 0.17078704629923272 0.19387094244374964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17078704629923272 0.19387094244374964 C 0.17078447497212132 0.1935560598192325 0.17080168463243361 0.18947128789949713 0.1707561903738959 0.19009235094954385 C 0.17080168463243361 0.18947128789949713 0.17138104298733448 0.18611200541765952 0.17133297740168535 0.1864181858431891" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32227990075456453,0.1872136342801211) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17470197133093124 0.1864181858431891 C 0.17475003691658036 0.18672436626871866 0.1753345472338066 0.19072997199856753 0.17527875835872078 0.19009235094954385 C 0.1753345472338066 0.19072997199856753 0.17537916112139756 0.19440107905496726 0.17537143783196088 0.19406963843147315" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17537143783196088 0.19406963843147315 C 0.1753661914579387 0.1942465263674095 0.17531973150316751 0.19677326514080362 0.17530848134369448 0.1961922936627094 C 0.17531973150316751 0.19677326514080362 0.17552293627913246 0.2014453797107615 0.17550643974563723 0.20104129616860367" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17550643974563723 0.20104129616860367 C 0.17540612110319376 0.2006749615994809 0.17414420851895743 0.19609868532354538 0.17430261603631553 0.1966452813391303 C 0.17414420851895743 0.19609868532354538 0.17354746066242543 0.19430188253512248 0.17360554953734006 0.19448214398158462" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17360554953734006 0.19448214398158462 C 0.17351599063421022 0.19416053125447602 0.17244822281163347 0.18977069874492258 0.17253084269978206 0.1906227912562815 C 0.17244822281163347 0.18977069874492258 0.17262104989453822 0.18372655406102725 0.17261411087955697 0.18425703384527758" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17261411087955697 0.18425703384527758 C 0.17268871585355156 0.18430452186014173 0.17368335893843995 0.1850069860234732 0.17350937056749208 0.18482689002364724 C 0.17368335893843995 0.1850069860234732 0.1748013547278845 0.1865507938281509 0.17470197133093124 0.1864181858431891" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19548456236006057 0.1778701079305874 C 0.19543335296577022 0.17726072307726143 0.19476750133253684 0.16960422000556077 0.1948700496285765 0.17055748969067552 C 0.19476750133253684 0.16960422000556077 0.19420264390583533 0.1660869868774216 0.19425398280758466 0.16643087170921037" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19425398280758466 0.16643087170921037 C 0.19423490210622896 0.16612179001437188 0.194061958275603 0.16194337381544757 0.1940250143913163 0.16272189137114873 C 0.194061958275603 0.16194337381544757 0.19475333400466716 0.1566192251799339 0.19469730941902477 0.15708866104079658" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19469730941902477 0.15708866104079658 C 0.19476526918203876 0.1570608007756803 0.19564572639185787 0.15675252352387828 0.19551282657519264 0.15675433785940107 C 0.19564572639185787 0.15675252352387828 0.19635704727265876 0.1570929349441164 0.19629210721900753 0.15706688901452293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19629210721900753 0.15706688901452293 C 0.19634590721687986 0.15755534118199122 0.19697422473646362 0.1636921861715643 0.1969377071934754 0.1629283150241424 C 0.19697422473646362 0.1636921861715643 0.196713035279982 0.16650876176353932 0.1967303177348661 0.1662333427835857" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1967303177348661 0.1662333427835857 C 0.19669664994228517 0.16657798191409323 0.19622249127599445 0.1713387427785928 0.1963263042238949 0.17036901234967597 C 0.19622249127599445 0.1713387427785928 0.19541441720474104 0.1784951992289967 0.19548456236006057 0.1778701079305874" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g id="編節1">
<g transform="translate(0.353376331897162,0.13389549078914728) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1406588718451063 0.11460177227368223 C 0.14081085628071527 0.11478060703819197 0.14270689644550916 0.11713613493763485 0.14248268507241385 0.116747789447799 C 0.14270689644550916 0.11713613493763485 0.1434216352597363 0.11947142887703856 0.14334940832224996 0.11926191815171244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14334940832224996 0.11926191815171244 C 0.1432618434043554 0.11947756406920185 0.14205199679711067 0.12223801465142106 0.1422986293075155 0.12184966916158521 C 0.14205199679711067 0.12223801465142106 0.14023075060488158 0.12409476360208903 0.14038981819739188 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14038981819739188 0.12392206402974258 C 0.14036278343203223 0.12402295914763548 0.13996450589518336 0.12530756091488346 0.14006540101307624 0.12513280544445732 C 0.13996450589518336 0.12530756091488346 0.13900432131225113 0.12612002479274906 0.13917907678267727 0.12601912967485618 C 0.13900432131225113 0.12612002479274906 0.1377665451321769 0.12634354685917182 0.13796833536796266 0.12634354685917182 C 0.1377665451321769 0.12634354685917182 0.13658283848282188 0.1259182345569633 0.13675759395324802 0.12601912967485618 C 0.13658283848282188 0.1259182345569633 0.13577037460495622 0.12495804997403119 0.1358712697228491 0.12513280544445732 C 0.13577037460495622 0.12495804997403119 0.1355198177731737 0.12382116891184969 0.13554685253853335 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13554685253853335 0.12392206402974258 C 0.13538778494602305 0.12374936445739614 0.13339140891800497 0.12146132367174937 0.1336380414284098 0.12184966916158521 C 0.13339140891800497 0.12146132367174937 0.1324996974957809 0.11904627223422308 0.1325872624136754 0.11926191815171247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1325872624136754 0.11926191815171247 C 0.13265948935116176 0.11905240742638634 0.1336781970366068 0.11635944395796315 0.1334539856635115 0.116747789447799 C 0.1336781970366068 0.11635944395796315 0.13542978332642802 0.1144229375091725 0.13527779889081906 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716194,0.13855563666717752) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10675040239677382 0.10884214469843498 C 0.10662824410069065 0.10850256111321158 0.10560315644404437 0.10608382980095674 0.1060174526202748 0.10680464318709461 C 0.10560315644404437 0.10608382980095674 0.10431531400299884 0.10378583122104099 0.10426462533939122 0.10451726438160774 C 0.10431531400299884 0.10378583122104099 0.10678333969568272 0.10158483717192755 0.10632158460192052 0.1024160442236941 C 0.10678333969568272 0.10158483717192755 0.10703515590196443 0.09953002207100842 0.10703515590196443 0.09953002207100842 C 0.10703515590196443 0.09953002207100842 0.10585982950815832 0.10324725127546065 0.10632158460192052 0.1024160442236941 C 0.10585982950815832 0.10324725127546065 0.10356614100786848 0.10440916704026779 0.10426462533939122 0.10451726438160774 C 0.10356614100786848 0.10440916704026779 0.1016957518930875 0.10093487639749793 0.10213067861278409 0.10176746017565433 C 0.1016957518930875 0.10093487639749793 0.10157579608928285 0.09914747863550524 0.1016550650212116 0.0995217617126694" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.35337633189716194,0.14321578254520761) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14038981819739188 0.11460177227368223 C 0.14052660418943996 0.114762723561741 0.14223304033775455 0.11688269867123958 0.14203125010196876 0.11653318773038732 C 0.14223304033775455 0.11688269867123958 0.14287630527055892 0.11898446321670295 0.1428113010268212 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1428113010268212 0.11879590356390944 C 0.14273249260071613 0.1189899848896499 0.14164363065419583 0.1214743904136472 0.14186559991356018 0.12112487947279495 C 0.14164363065419583 0.1214743904136472 0.14000450908118967 0.12314546446924837 0.14014766991444894 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14014766991444894 0.12299003485413657 C 0.14012333862562526 0.12308084046024016 0.13976488884246127 0.12423698205076321 0.13985569444856485 0.12407970212737969 C 0.13976488884246127 0.12423698205076321 0.13890072271782233 0.12496819954084241 0.13905800264120585 0.1248773939347388 C 0.13890072271782233 0.12496819954084241 0.13778672415575546 0.12516936940062295 0.13796833536796266 0.12516936940062295 C 0.13778672415575546 0.12516936940062295 0.13672138817133592 0.12478658832863519 0.13687866809471944 0.1248773939347388 C 0.13672138817133592 0.12478658832863519 0.13599017068125688 0.12392242220399617 0.13608097628736046 0.12407970212737969 C 0.13599017068125688 0.12392242220399617 0.13576466953265262 0.12289922924803297 0.1357890008214763 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1357890008214763 0.12299003485413657 C 0.13564583998821703 0.12283460523902476 0.1338491015630008 0.12077536853194269 0.13407107082236516 0.12112487947279495 C 0.1338491015630008 0.12077536853194269 0.1330465612829991 0.11860182223816898 0.13312536970910419 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13312536970910419 0.11879590356390944 C 0.1331903739528419 0.11860734391111594 0.13410721086974237 0.11618367678953509 0.1339054206339566 0.11653318773038736 C 0.13410721086974237 0.11618367678953509 0.1356836385305814 0.11444082098562347 0.13554685253853335 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971619,0.14740991383543484) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10650908749466204 0.10837667025977321 C 0.10639914502818718 0.10807104503307216 0.10547656613720548 0.10589418685204278 0.10584943269581287 0.10654291889956687 C 0.10547656613720548 0.10589418685204278 0.10431750794026452 0.10382598813011862 0.10427188814301767 0.1044842779746287 C 0.10431750794026452 0.10382598813011862 0.10653873106367996 0.10184509348591653 0.10612315147929399 0.10259317983250642 C 0.10653873106367996 0.10184509348591653 0.10676536564933349 0.09999575989508931 0.10676536564933349 0.09999575989508931 C 0.10676536564933349 0.09999575989508931 0.10570757189490802 0.10334126617909631 0.10612315147929399 0.10259317983250642 C 0.10570757189490802 0.10334126617909631 0.10364325224464722 0.10438699036742272 0.10427188814301767 0.1044842779746287 C 0.10364325224464722 0.10438699036742272 0.10195990204134435 0.10126012878892983 0.1023513360890713 0.10200945418927057 C 0.10195990204134435 0.10126012878892983 0.10185194181792016 0.0996514708031365 0.10192328385665604 0.09998832557258422" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3533763318971619,0.15160404512566195) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14014766991444894 0.11460177227368223 C 0.1402707773072922 0.11474662843293512 0.14180656984077528 0.11665460603148387 0.14162495862856808 0.11634004618471683 C 0.14180656984077528 0.11665460603148387 0.14238550828029928 0.11854619412240089 0.14232700446093535 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14232700446093535 0.11837649043488672 C 0.14225607687744077 0.11855116362805314 0.1412761011255725 0.12078712859965067 0.14147587345900042 0.12047256875288363 C 0.1412761011255725 0.12078712859965067 0.1398008917098671 0.12229109524969174 0.13992973645980042 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13992973645980042 0.12215120859609112 C 0.13990783829985912 0.12223293364158436 0.13958523349501142 0.12327346107305513 0.13966695854050468 0.12313190914200996 C 0.13958523349501142 0.12327346107305513 0.1388074839828363 0.12393155681412645 0.13894903591388147 0.1238498317686332 C 0.1388074839828363 0.12393155681412645 0.13780488527697618 0.12411260968792882 0.13796833536796266 0.12411260968792882 C 0.13780488527697618 0.12411260968792882 0.1368460828909986 0.12376810672313997 0.13698763482204376 0.1238498317686332 C 0.1368460828909986 0.12376810672313997 0.1361879871499274 0.12299035721096478 0.1362697121954206 0.12313190914200996 C 0.1361879871499274 0.12299035721096478 0.13598503611618368 0.12206948355059788 0.13600693427612498 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13600693427612498 0.12215120859609112 C 0.13587808952619165 0.1220113219424905 0.134261024943497 0.1201580089061166 0.13446079727692492 0.12047256875288363 C 0.134261024943497 0.1201580089061166 0.13353873869149535 0.11820181724172031 0.13360966627498994 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13360966627498994 0.11837649043488672 C 0.1336681700943539 0.11820678674737256 0.1344933233195644 0.11602548633794979 0.1343117121073572 0.11634004618471683 C 0.1344933233195644 0.11602548633794979 0.13591210821431957 0.11445691611442935 0.1357890008214763 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716183,0.15537876328686645) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629190408276137 0.10795774326497763 C 0.10619295586293401 0.10768268056094668 0.10536263486105055 0.10572350819802029 0.10569821476379719 0.10630736704079195 C 0.10536263486105055 0.10572350819802029 0.10431948248380365 0.10386212934828852 0.10427842466628148 0.1044545902083476 C 0.10431948248380365 0.10386212934828852 0.10631858329487756 0.10207932416850657 0.10594456166893018 0.10275260188043749 C 0.10631858329487756 0.10207932416850657 0.10652255442196577 0.10041492393676214 0.10652255442196577 0.10041492393676214 C 0.10652255442196577 0.10041492393676214 0.1055705400429828 0.1034258795923684 0.10594456166893018 0.10275260188043749 C 0.1055705400429828 0.1034258795923684 0.10371265235774807 0.10436703136186223 0.10427842466628148 0.1044545902083476 C 0.10371265235774807 0.10436703136186223 0.10219763717477544 0.10155285594121863 0.10254992781772969 0.10222724880152531 C 0.10219763717477544 0.10155285594121863 0.10210047297369368 0.10010506375400449 0.10216468080855597 0.10040823304650746" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.35337633189716183,0.15915348144807084) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13992973645980042 0.11460177227368223 C 0.14004053311335934 0.11473214281700983 0.14142274639349403 0.11644932265570374 0.14125929630250755 0.1161662187936134 C 0.14142274639349403 0.11644932265570374 0.1419437909890656 0.11815175193752903 0.14189113755163804 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14189113755163804 0.11799901861876629 C 0.14182730272649294 0.11815622449261605 0.14094532454981157 0.12016859296705384 0.14112511964989669 0.11988548910496352 C 0.14094532454981157 0.12016859296705384 0.13961763607567657 0.1215221629520908 0.13973359635061658 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13973359635061658 0.12139626496385024 C 0.1397138880066694 0.12146981750479416 0.13942354368230656 0.1224062921931179 0.13949709622325046 0.12227889545517724 C 0.13942354368230656 0.1224062921931179 0.13872356912134906 0.12299857836008199 0.13885096585928972 0.12292502581913807 C 0.13872356912134906 0.12299857836008199 0.13782123028607482 0.1231615259465042 0.13796833536796266 0.1231615259465042 C 0.13782123028607482 0.1231615259465042 0.13695830813869508 0.12285147327819415 0.1370857048766357 0.12292502581913807 C 0.13695830813869508 0.12285147327819415 0.13636602197173103 0.12215149871723659 0.13643957451267497 0.12227889545517724 C 0.13636602197173103 0.12215149871723659 0.1361833660413615 0.12132271242290632 0.13620307438530868 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13620307438530868 0.12139626496385024 C 0.1360871141103687 0.12127036697560968 0.1346317559859436 0.1196023852428732 0.1348115510860287 0.11988548910496352 C 0.1346317559859436 0.1196023852428732 0.1339816983591421 0.11784181274491652 0.13404553318428722 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13404553318428722 0.11799901861876629 C 0.13409818662171477 0.11784628530000354 0.13484082452440424 0.11588311493152306 0.13467737443341776 0.1161662187936134 C 0.13484082452440424 0.11588311493152306 0.1361177309296839 0.11447140173035464 0.13600693427612498 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971618,0.16255072779315488) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10609643901205082 0.10758070896966163 C 0.1060073856142062 0.10733315253603376 0.10526009671251108 0.10556989740939997 0.10556211862498305 0.10609537036789447 C 0.10526009671251108 0.10556989740939997 0.1043212595729889 0.10389465644464141 0.10428430753721894 0.10442787121869458 C 0.1043212595729889 0.10389465644464141 0.10612045030295542 0.10229013178283765 0.10578383083960279 0.10289608172357546 C 0.10612045030295542 0.10229013178283765 0.10630402431733471 0.10079217157426766 0.10630402431733471 0.10079217157426766 C 0.10630402431733471 0.10079217157426766 0.10544721137625016 0.10350203166431328 0.10578383083960279 0.10289608172357546 C 0.10544721137625016 0.10350203166431328 0.10377511245953887 0.10434906825685775 0.10428430753721894 0.10442787121869458 C 0.10377511245953887 0.10434906825685775 0.1024115987948635 0.10181631037827846 0.10272866037352234 0.10242326395255448 C 0.1024115987948635 0.10181631037827846 0.1023241510138899 0.10051329740978578 0.10238193806526596 0.10078614977303844" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3533763318971618,0.16594797413823886) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13973359635061658 0.11460177227368223 C 0.13983331333881963 0.11471910576267708 0.14107730529094095 0.11626456761750158 0.1409302002090531 0.11600977414162027 C 0.14107730529094095 0.11626456761750158 0.14154624542695537 0.11779675397114435 0.14149885733327058 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14149885733327058 0.11765929398425788 C 0.14144140599063998 0.11780077927072267 0.14064762563162672 0.11961191089771672 0.14080944122170333 0.11935711742183543 C 0.14064762563162672 0.11961191089771672 0.13945270600490517 0.12083012388425 0.13955707025235117 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955707025235117 0.1207168156948335 C 0.13953933274279873 0.12078301298168302 0.13927802285087212 0.1216258402011743 0.13934422013772166 0.12151118313702772 C 0.13927802285087212 0.1216258402011743 0.1386480457460103 0.12215889775144197 0.1387627028101569 0.12209270046459245 C 0.1386480457460103 0.12215889775144197 0.13783594079426362 0.12230555057922199 0.13796833536796266 0.12230555057922199 C 0.13783594079426362 0.12230555057922199 0.13705931086162176 0.12202650317774293 0.13717396792576836 0.12209270046459245 C 0.13705931086162176 0.12202650317774293 0.13652625331135412 0.12139652607288114 0.13659245059820366 0.12151118313702772 C 0.13652625331135412 0.12139652607288114 0.13636186297402156 0.12065061840798398 0.13637960048357403 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13637960048357403 0.1207168156948335 C 0.13627523623612803 0.120603507505417 0.13496541392414546 0.11910232394595413 0.13512722951422207 0.11935711742183543 C 0.13496541392414546 0.11910232394595413 0.1343803620600242 0.11751780869779309 0.13443781340265482 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13443781340265482 0.11765929398425788 C 0.1344852014963396 0.11752183399737141 0.13515357560876007 0.11575498066573896 0.13500647052687226 0.11600977414162027 C 0.13515357560876007 0.11575498066573896 0.13630279137351173 0.11448443878468739 0.13620307438530868 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971617,0.16900549584881452) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10592052044841131 0.10724137810387716 C 0.10584037239035114 0.10701857731361208 0.10516781237882551 0.10543164769964168 0.10543963210005029 0.10590457336228674 C 0.10516781237882551 0.10543164769964168 0.10432285895325556 0.10392393083135895 0.1042896021210626 0.10440382412800679 C 0.10432285895325556 0.10392393083135895 0.10594213061022542 0.10247985863573565 0.10563917309320804 0.10302521358239967 C 0.10594213061022542 0.10247985863573565 0.10610734722316686 0.10113169444802263 0.10610734722316686 0.10113169444802263 C 0.10610734722316686 0.10113169444802263 0.10533621557619066 0.1035705685290637 0.10563917309320804 0.10302521358239967 C 0.10533621557619066 0.1035705685290637 0.10383132655115054 0.10433290146235365 0.1042896021210626 0.10440382412800679 C 0.10383132655115054 0.10433290146235365 0.10260416425294272 0.10205341937163237 0.10288951967373566 0.10259967758848078 C 0.10260416425294272 0.10205341937163237 0.10252546125006651 0.10088070769998898 0.10257746959630495 0.10112627482691638" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.3533763318971617,0.17206301755939013) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13955707025235117 0.11460177227368223 C 0.13964681554173392 0.11470737241377758 0.14076640829864315 0.11609828808311966 0.1406340137249441 0.11586897395482648 C 0.14076640829864315 0.11609828808311966 0.1411884544210561 0.11747725580139809 0.1411458051367398 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1411458051367398 0.11735354181320028 C 0.14109409892837224 0.11748087857101859 0.14037969660526026 0.11911089703531323 0.14052533063632922 0.11888158290702006 C 0.14037969660526026 0.11911089703531323 0.13930426894121092 0.12020728872319325 0.13939819676391232 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13939819676391232 0.12010531135271839 C 0.1393822330053151 0.12016488891088295 0.13914705410258119 0.12092343340842512 0.13920663166074576 0.12082024205069321 C 0.13914705410258119 0.12092343340842512 0.13858007470820563 0.12140318520366601 0.13868326606593756 0.12134360764550145 C 0.13858007470820563 0.12140318520366601 0.1378491802516335 0.12153517274866801 0.13796833536796266 0.12153517274866801 C 0.1378491802516335 0.12153517274866801 0.1371502133122559 0.12128403008733689 0.13725340466998784 0.12134360764550145 C 0.1371502133122559 0.12128403008733689 0.13667046151701498 0.12071705069296129 0.13673003907517955 0.12082024205069321 C 0.13667046151701498 0.12071705069296129 0.13652251021341574 0.12004573379455383 0.13653847397201296 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13653847397201296 0.12010531135271839 C 0.13644454614931156 0.12000333398224353 0.13526570606852725 0.11865226877872688 0.1354113400995962 0.11888158290702006 C 0.13526570606852725 0.11865226877872688 0.13473915939081801 0.11722620505538196 0.13479086559918557 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13479086559918557 0.11735354181320028 C 0.1348335148835019 0.11722982782500246 0.1354350515846804 0.1156396598265333 0.13530265701098135 0.11586897395482648 C 0.1354350515846804 0.1156396598265333 0.13646934577295675 0.11449617213358688 0.13637960048357403 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716167,0.1748147870989082) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10576219374113578 0.10693598032467116 C 0.10569006048888163 0.1067354596134326 0.10508475647850853 0.10530722296085923 0.10532939422761084 0.10573285605723978 C 0.10508475647850853 0.10530722296085923 0.10432429839549553 0.10395027777940483 0.10429436724652187 0.10438218174638789 C 0.10432429839549553 0.10395027777940483 0.10578164288676842 0.10265061280334381 0.10550898112145278 0.10314143225534145 C 0.10578164288676842 0.10265061280334381 0.10593033783841574 0.10143726503440209 0.10593033783841574 0.10143726503440209 C 0.10593033783841574 0.10143726503440209 0.10523631935613714 0.10363225170733908 0.10550898112145278 0.10314143225534145 C 0.10523631935613714 0.10363225170733908 0.10388191923360102 0.10431835134730005 0.10429436724652187 0.10438218174638789 C 0.10388191923360102 0.10431835134730005 0.10277747316521403 0.10226681746565086 0.10303429304392768 0.10275844986081444 C 0.10277747316521403 0.10226681746565086 0.1027066404626254 0.10121137696117183 0.10275344797424 0.10143238737540648" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.35337633189716167,0.1775665566384263) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939819676391232 0.11460177227368223 C 0.1394789675243568 0.11469681239976805 0.14048660100557503 0.1159486365021759 0.14036744588924588 0.11574225378671205 C 0.14048660100557503 0.1159486365021759 0.1408664425157468 0.1171897074486265 0.1408280581598621 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1408280581598621 0.11707836485924847 C 0.1407815225723313 0.11719296794128496 0.14013856048153053 0.1186599845591502 0.1402696311094926 0.11845360184368633 C 0.14013856048153053 0.1186599845591502 0.13917067558388607 0.11964673707824212 0.13925521062431734 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13925521062431734 0.11955495744481476 C 0.13924084324157984 0.11960857724716287 0.13902918222911925 0.12029126729495083 0.13908280203146736 0.1201983950729921 C 0.13902918222911925 0.12029126729495083 0.13851890077418125 0.12072304391066765 0.13861177299613997 0.12066942410831955 C 0.13851890077418125 0.12072304391066765 0.13786109576326644 0.12084183270116945 0.13796833536796266 0.12084183270116945 C 0.13786109576326644 0.12084183270116945 0.13723202551782657 0.12061580430597144 0.1373248977397853 0.12066942410831955 C 0.13723202551782657 0.12061580430597144 0.13680024890210976 0.12010552285103336 0.13685386870445787 0.1201983950729921 C 0.13680024890210976 0.12010552285103336 0.13666709272887048 0.11950133764246665 0.13668146011160798 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13668146011160798 0.11955495744481476 C 0.1365969250711767 0.11946317781138739 0.13553596899847073 0.11824721912822247 0.13566703962643278 0.11845360184368633 C 0.13553596899847073 0.11824721912822247 0.1350620769885325 0.11696376177721197 0.1351086125760633 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1351086125760633 0.11707836485924847 C 0.13514699693194798 0.11696702226987044 0.1356883799630085 0.11553587107124821 0.13556922484667935 0.11574225378671207 C 0.1356883799630085 0.11553587107124821 0.13661924473245743 0.11450673214759641 0.13653847397201296 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971616,0.18004314922399253) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10561969970458775 0.10666112232338579 C 0.105554779777559 0.10648065368327109 0.10501000616822322 0.10519524069595508 0.1052301801424153 0.10557831048269757 C 0.10501000616822322 0.10519524069595508 0.10432559389351158 0.1039739900326461 0.10429865585943528 0.10436270360293086 C 0.10432559389351158 0.1039739900326461 0.10563720393565718 0.10280429155419113 0.1053918083468731 0.10324602906098901 C 0.10563720393565718 0.10280429155419113 0.10577102939213974 0.10171227856214361 0.10577102939213974 0.10171227856214361 C 0.10577102939213974 0.10171227856214361 0.10514641275808903 0.10368776656778689 0.1053918083468731 0.10324602906098901 C 0.10514641275808903 0.10368776656778689 0.1039274526478065 0.10430525624375181 0.10429865585943528 0.10436270360293086 C 0.1039274526478065 0.10430525624375181 0.10293345118625818 0.1024588757502675 0.10316458907710047 0.10290134490591472 C 0.10293345118625818 0.1024588757502675 0.10286970175392844 0.10150897929623634 0.10291182851438159 0.10170788866904754" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.3533763318971616,0.18251974180955882) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13925521062431734 0.11460177227368223 C 0.13932790430871736 0.11468730838715947 0.14023477444181376 0.11581395007932656 0.1401275348371175 0.11562820563540908 C 0.14023477444181376 0.11581395007932656 0.14057663180096838 0.11693091393113209 0.14054208588067216 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14054208588067216 0.11683070560069185 C 0.14050020385189443 0.11693384837452468 0.13992153797017373 0.11825416333060337 0.1400395015353396 0.1180684188866859 C 0.13992153797017373 0.11825416333060337 0.13905044156229374 0.11914224059778608 0.13912652309868187 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13912652309868187 0.11905963892770145 C 0.13911359245421814 0.11910789674981476 0.13892309754300375 0.119722317792824 0.13897135536511704 0.11963873279306113 C 0.13892309754300375 0.119722317792824 0.13846384423355948 0.12011091674696914 0.13854742923332233 0.12006265892485583 C 0.13846384423355948 0.12011091674696914 0.13787181972373605 0.12021782665842078 0.13796833536796266 0.12021782665842078 C 0.13787181972373605 0.12021782665842078 0.13730565650284018 0.12001440110274253 0.13738924150260304 0.12006265892485583 C 0.13730565650284018 0.12001440110274253 0.136917057548695 0.11955514779329826 0.1369653153708083 0.11963873279306113 C 0.136917057548695 0.11955514779329826 0.13679721699277964 0.11901138110558815 0.1368101476372434 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1368101476372434 0.11905963892770145 C 0.13673406610085526 0.11897703725761682 0.13577920563541995 0.11788267444276843 0.1358971692005858 0.1180684188866859 C 0.13577920563541995 0.11788267444276843 0.1353527028264755 0.11672756282685902 0.1353945848552532 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1353945848552532 0.11683070560069185 C 0.1354291307755494 0.11673049727025162 0.13591637550350397 0.11544246119149161 0.13580913589880775 0.11562820563540908 C 0.13591637550350397 0.11544246119149161 0.136754153796008 0.114516236160205 0.13668146011160798 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18474867513656845) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10549145507169455 0.10641375012222896 C 0.10543302713736868 0.10625132834612573 0.1049427308889665 0.10509445665754133 0.10514088746573937 0.10543921946560958 C 0.1049427308889665 0.10509445665754133 0.104326759841726 0.10399533106056319 0.10430251561105733 0.10434517327381948 C 0.104326759841726 0.10399533106056319 0.10550720887965703 0.10294260242995376 0.10528635284975137 0.10334016618607185 C 0.10550720887965703 0.10294260242995376 0.10562765179049131 0.10195979073711098 0.10562765179049131 0.10195979073711098 C 0.10562765179049131 0.10195979073711098 0.1050654968198457 0.10373772994218994 0.10528635284975137 0.10334016618607185 C 0.1050654968198457 0.10373772994218994 0.10396843272059143 0.10429347065055833 0.10430251561105733 0.10434517327381948 C 0.10396843272059143 0.10429347065055833 0.10307383140519792 0.10263172820642248 0.10328185550695598 0.10302995044650498 C 0.10307383140519792 0.10263172820642248 0.10301645691610115 0.10177682139779444 0.10305437100050897 0.10195583983332451" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.02169221731726521 0.01969476171262892 C 0.021769863246687338 0.019933731311340065 0.020913083753298624 0.021614749058287253 0.021116363435613822 0.021467057724005843 C 0.020913083753298624 0.021614749058287253 0.01904958144716762 0.021319366389724433 0.01925286112948282 0.021467057724005843 C 0.01904958144716762 0.021319366389724433 0.018754653177253548 0.019455792113917774 0.018677007247831424 0.01969476171262892 C 0.018754653177253548 0.019455792113917774 0.020435879788334464 0.018599422539472096 0.020184612282548316 0.018599422539472096 C 0.020435879788334464 0.018599422539472096 0.021769863246687338 0.019933731311340065 0.02169221731726521 0.01969476171262892 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.027419487806183127 0.02605937823328933 C 0.027472358554177796 0.02622209766399067 0.026888959359666405 0.02736673803773433 0.027027376774927083 0.02726617189893087 C 0.026888959359666405 0.02736673803773433 0.025620061407794315 0.027165605760127408 0.025758478823054994 0.02726617189893087 C 0.025620061407794315 0.027165605760127408 0.025419238539793613 0.02589665880258799 0.025366367791798943 0.02605937823328933 C 0.025419238539793613 0.02589665880258799 0.026564021133523043 0.02531353873051479 0.02639292779899103 0.02531353873051479 C 0.026564021133523043 0.02531353873051479 0.027472358554177796 0.02622209766399067 0.027419487806183127 0.02605937823328933 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35434565889154657,0.18721363428012106) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17470197133093124 0.1864181858431891 C 0.17475003691658036 0.18672436626871866 0.17532425261725848 0.19071341399959058 0.17527875835872078 0.19009235094954385 C 0.17532425261725848 0.19071341399959058 0.17524533110627236 0.1941858250682668 0.17524790243338378 0.19387094244374964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17524790243338378 0.19387094244374964 C 0.1752324800287316 0.19406078898226603 0.17504563386312008 0.1967208534257407 0.17506283357755736 0.1961491009059462 C 0.17504563386312008 0.1967208534257407 0.17503972855035135 0.20111387866256175 0.17504150586013642 0.20073197268128362" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17504150586013642 0.20073197268128362 C 0.174948492050135 0.20036826486767334 0.17379710552200217 0.19582819495562745 0.17392534014011934 0.1963674789179601 C 0.17379710552200217 0.19582819495562745 0.1734674696346145 0.19408498898456927 0.17350269044273026 0.19426056513329165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17350269044273026 0.19426056513329165 C 0.17342170313081792 0.19395741731020746 0.172456794402851 0.189789163648947 0.1725308426997821 0.1906227912562815 C 0.172456794402851 0.189789163648947 0.17262104989453825 0.18372655406102725 0.172614110879557 0.18425703384527758" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.172614110879557 0.18425703384527758 C 0.17268871585355158 0.18430452186014173 0.17368335893844 0.1850069860234732 0.17350937056749216 0.18482689002364724 C 0.17368335893844 0.1850069860234732 0.1748013547278845 0.1865507938281509 0.17470197133093124 0.1864181858431891" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35240700490277654,0.18721363428012106) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17133297740168535 0.1864181858431891 C 0.1714323607986386 0.18628557785822727 0.1726995665360724 0.18464679402382128 0.17252557816512454 0.18482689002364724 C 0.1726995665360724 0.18464679402382128 0.1734954428270544 0.18420954583041343 0.17342083785305978 0.18425703384527758" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17342083785305978 0.18425703384527758 C 0.173427776868041 0.18478751362952792 0.17342148614468603 0.19147488376764044 0.17350410603283462 0.1906227912562815 C 0.17342148614468603 0.19147488376764044 0.17233984029214675 0.1948037567086932 0.17242939919527658 0.19448214398158462" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17242939919527658 0.19448214398158462 C 0.17237131032036196 0.19466240542804675 0.17157392517894302 0.19719187735471524 0.17173233269630112 0.1966452813391303 C 0.17157392517894302 0.19719187735471524 0.17042819034453588 0.20140763073772644 0.17052850898697935 0.20104129616860367" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17052850898697935 0.20104129616860367 C 0.17054500552047458 0.20063721262644582 0.17073771754839512 0.1956113221846152 0.1707264673889221 0.1961922936627094 C 0.17073771754839512 0.1956113221846152 0.1706582645266334 0.1938927504955368 0.17066351090065562 0.19406963843147315" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17066351090065562 0.19406963843147315 C 0.1706712341900923 0.19373819780797905 0.1708119792489817 0.18945472990052017 0.1707561903738959 0.19009235094954385 C 0.1708119792489817 0.18945472990052017 0.17138104298733448 0.18611200541765952 0.17133297740168535 0.1864181858431891" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.1955410907903247 0.1778701079305874 C 0.19547094563500517 0.17724501663217812 0.19459553597858986 0.16939928192075915 0.19469934892649032 0.17036901234967597 C 0.19459553597858986 0.16939928192075915 0.19426166762293826 0.16588870365307817 0.1942953354155192 0.1662333427835857" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1942953354155192 0.1662333427835857 C 0.19427805296063508 0.16595792380363208 0.1941244634998981 0.1621644438767205 0.19408794595690987 0.1629283150241424 C 0.1941244634998981 0.1621644438767205 0.1947873459292501 0.15657843684705464 0.19473354593137776 0.15706688901452293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19473354593137776 0.15706688901452293 C 0.194798485985029 0.15704084308492944 0.19564572639185787 0.15675615219492386 0.19551282657519264 0.15675433785940107 C 0.19564572639185787 0.15675615219492386 0.1963963034943744 0.15711652130591286 0.1963283437313604 0.15708866104079658" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1963283437313604 0.15708866104079658 C 0.1963843683170028 0.15755809690165926 0.19703758264335572 0.1635004089268499 0.19700063875906904 0.16272189137114873 C 0.19703758264335572 0.1635004089268499 0.19675258964144482 0.16673995340404885 0.19677167034280052 0.16643087170921037" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19677167034280052 0.16643087170921037 C 0.1967203314410512 0.16677475654099913 0.19605305522576907 0.17151075937579027 0.19615560352180872 0.17055748969067552 C 0.19605305522576907 0.17151075937579027 0.19548988139603435 0.1784794927839134 0.1955410907903247 0.1778701079305874" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 72 KiB

View File

@@ -0,0 +1,165 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.245122456365314 0.235580768030074 0.2389452910220962 0.2582449981683262 0.23984746965066872 0.25531608152015056 C 0.2389452910220962 0.2582449981683262 0.2329450519520436 0.2696271114436592 0.23477585706922943 0.26893364839999273 C 0.2329450519520436 0.2696271114436592 0.2150614667736401 0.2636376380441483 0.2178778082444386 0.2636376380441483 C 0.2150614667736401 0.2636376380441483 0.19914895430246188 0.2682401853563264 0.20097975941964774 0.26893364839999284 C 0.19914895430246188 0.2682401853563264 0.19500596820963584 0.252387164871975 0.1959081468382084 0.2553160815201506 C 0.19500596820963584 0.252387164871975 0.18967407162999128 0.23199252921369645 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ左">
<g id="編節1">
<g transform="translate(0.3213105737601799,0.13389549078914734) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14065887184510625 0.11460177227368223 C 0.1408108562807152 0.11478060703819197 0.14270689644550907 0.11713613493763485 0.14248268507241377 0.116747789447799 C 0.14270689644550907 0.11713613493763485 0.1434216352597362 0.1194714288770386 0.14334940832224985 0.11926191815171247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14334940832224985 0.11926191815171247 C 0.14326184340435533 0.11947756406920186 0.1420519967971106 0.12223801465142105 0.14229862930751544 0.12184966916158521 C 0.1420519967971106 0.12223801465142105 0.14023075060488152 0.12409476360208903 0.14038981819739182 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14038981819739182 0.12392206402974258 C 0.14036278343203218 0.12402295914763548 0.1399645058951833 0.12530756091488346 0.14006540101307619 0.12513280544445732 C 0.1399645058951833 0.12530756091488346 0.13900432131225107 0.12612002479274906 0.1391790767826772 0.12601912967485618 C 0.13900432131225107 0.12612002479274906 0.13776654513217684 0.12634354685917182 0.1379683353679626 0.12634354685917182 C 0.13776654513217684 0.12634354685917182 0.1365828384828218 0.1259182345569633 0.13675759395324794 0.12601912967485618 C 0.1365828384828218 0.1259182345569633 0.13577037460495617 0.12495804997403119 0.13587126972284905 0.12513280544445732 C 0.13577037460495617 0.12495804997403119 0.13551981777317365 0.12382116891184969 0.1355468525385333 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1355468525385333 0.12392206402974258 C 0.135387784946023 0.12374936445739614 0.13339140891800488 0.12146132367174936 0.1336380414284097 0.12184966916158521 C 0.13339140891800488 0.12146132367174936 0.13249969749578078 0.11904627223422304 0.1325872624136753 0.11926191815171244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1325872624136753 0.11926191815171244 C 0.13265948935116165 0.11905240742638633 0.13367819703660672 0.11635944395796315 0.1334539856635114 0.116747789447799 C 0.13367819703660672 0.11635944395796315 0.1354297833264279 0.1144229375091725 0.13527779889081895 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017985,0.13855563666717757) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10701944173009977 0.0995217617126694 C 0.10694017279817102 0.09989604478983355 0.1061089014188307 0.10260004395381073 0.1065438281385273 0.10176746017565433 C 0.1061089014188307 0.10260004395381073 0.10371139708039742 0.1046253617229477 0.10440988141192016 0.10451726438160774 C 0.10371139708039742 0.1046253617229477 0.10189116705562863 0.10158483717192755 0.10235292214939083 0.1024160442236941 C 0.10189116705562863 0.10158483717192755 0.10163935084934693 0.09953002207100842 0.10163935084934693 0.09953002207100842 C 0.10163935084934693 0.09953002207100842 0.10281467724315303 0.10324725127546065 0.10235292214939083 0.1024160442236941 C 0.10281467724315303 0.10324725127546065 0.10446057007552778 0.1052486975421745 0.10440988141192016 0.10451726438160774 C 0.10446057007552778 0.1052486975421745 0.10224275795480607 0.10752545657323248 0.10265705413103651 0.10680464318709461 C 0.10224275795480607 0.10752545657323248 0.10180194605845436 0.10918172828365838 0.10192410435453753 0.10884214469843498" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.32131057376017985,0.14321578254520767) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14038981819739182 0.11460177227368223 C 0.1405266041894399 0.114762723561741 0.1422330403377545 0.11688269867123963 0.1420312501019687 0.11653318773038736 C 0.1422330403377545 0.11688269867123963 0.14287630527055883 0.11898446321670295 0.14281130102682113 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14281130102682113 0.11879590356390944 C 0.14273249260071605 0.1189899848896499 0.1416436306541958 0.1214743904136472 0.14186559991356015 0.12112487947279495 C 0.1416436306541958 0.1214743904136472 0.14000450908118964 0.12314546446924837 0.1401476699144489 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1401476699144489 0.12299003485413657 C 0.14012333862562523 0.12308084046024016 0.13976488884246124 0.12423698205076321 0.13985569444856483 0.12407970212737969 C 0.13976488884246124 0.12423698205076321 0.13890072271782228 0.12496819954084241 0.1390580026412058 0.1248773939347388 C 0.13890072271782228 0.12496819954084241 0.1377867241557554 0.12516936940062295 0.1379683353679626 0.12516936940062295 C 0.1377867241557554 0.12516936940062295 0.1367213881713359 0.12478658832863519 0.1368786680947194 0.1248773939347388 C 0.1367213881713359 0.12478658832863519 0.1359901706812567 0.12392242220399617 0.13608097628736032 0.12407970212737969 C 0.1359901706812567 0.12392242220399617 0.13576466953265254 0.12289922924803297 0.1357890008214762 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1357890008214762 0.12299003485413657 C 0.13564583998821694 0.12283460523902476 0.13384910156300078 0.12077536853194269 0.1340710708223651 0.12112487947279495 C 0.13384910156300078 0.12077536853194269 0.13304656128299908 0.11860182223816898 0.13312536970910416 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13312536970910416 0.11879590356390944 C 0.13319037395284186 0.11860734391111594 0.13410721086974223 0.11618367678953505 0.13390542063395647 0.11653318773038732 C 0.13410721086974223 0.11618367678953505 0.13568363853058135 0.11444082098562347 0.1355468525385333 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601798,0.1474099138354349) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10675122289465533 0.09998832557258422 C 0.10667988085591945 0.10032518034203194 0.10593173661451313 0.10275877958961131 0.10632317066224006 0.10200945418927057 C 0.10593173661451313 0.10275877958961131 0.10377398270992325 0.10458156558183468 0.10440261860829371 0.1044842779746287 C 0.10377398270992325 0.10458156558183468 0.10213577568763135 0.10184509348591653 0.10255135527201732 0.10259317983250642 C 0.10213577568763135 0.10184509348591653 0.1019091411019779 0.09999575989508931 0.1019091411019779 0.09999575989508931 C 0.1019091411019779 0.09999575989508931 0.10296693485640329 0.10334126617909631 0.10255135527201732 0.10259317983250642 C 0.10296693485640329 0.10334126617909631 0.10444823840554056 0.10514256781913878 0.10440261860829371 0.1044842779746287 C 0.10444823840554056 0.10514256781913878 0.10245220749689103 0.10719165094709095 0.10282507405549843 0.10654291889956687 C 0.10245220749689103 0.10719165094709095 0.10205547679017447 0.10868229548647426 0.10216541925664932 0.10837667025977321" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3213105737601798,0.151604045125662) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1401476699144489 0.11460177227368223 C 0.14027077730729218 0.11474662843293512 0.1418065698407752 0.11665460603148387 0.141624958628568 0.11634004618471683 C 0.1418065698407752 0.11665460603148387 0.14238550828029914 0.11854619412240089 0.1423270044609352 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1423270044609352 0.11837649043488672 C 0.14225607687744066 0.11855116362805314 0.14127610112557248 0.12078712859965067 0.1414758734590004 0.12047256875288363 C 0.14127610112557248 0.12078712859965067 0.139800891709867 0.12229109524969174 0.13992973645980034 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13992973645980034 0.12215120859609112 C 0.13990783829985903 0.12223293364158436 0.1395852334950113 0.12327346107305513 0.13966695854050457 0.12313190914200996 C 0.1395852334950113 0.12327346107305513 0.13880748398283627 0.12393155681412645 0.13894903591388144 0.1238498317686332 C 0.13880748398283627 0.12393155681412645 0.13780488527697612 0.12411260968792882 0.1379683353679626 0.12411260968792882 C 0.13780488527697612 0.12411260968792882 0.13684608289099856 0.12376810672313997 0.13698763482204374 0.1238498317686332 C 0.13684608289099856 0.12376810672313997 0.13618798714992733 0.12299035721096478 0.13626971219542056 0.12313190914200996 C 0.13618798714992733 0.12299035721096478 0.13598503611618362 0.12206948355059788 0.13600693427612492 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13600693427612492 0.12215120859609112 C 0.13587808952619157 0.1220113219424905 0.13426102494349687 0.1201580089061166 0.1344607972769248 0.12047256875288363 C 0.13426102494349687 0.1201580089061166 0.1335387386914952 0.11820181724172031 0.1336096662749898 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1336096662749898 0.11837649043488672 C 0.13366817009435375 0.11820678674737256 0.13449332331956432 0.11602548633794979 0.13431171210735712 0.11634004618471683 C 0.13449332331956432 0.11602548633794979 0.13591210821431948 0.11445691611442935 0.1357890008214762 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017974,0.1553787632868665) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10650982594275545 0.10040823304650746 C 0.10644561810789314 0.10071140233901044 0.1057722882906274 0.102901641661832 0.10612457893358165 0.10222724880152531 C 0.1057722882906274 0.102901641661832 0.1038303097764965 0.10454214905483297 0.10439608208502991 0.1044545902083476 C 0.1038303097764965 0.10454214905483297 0.10235592345643378 0.10207932416850657 0.10272994508238116 0.10275260188043749 C 0.10235592345643378 0.10207932416850657 0.10215195232934561 0.10041492393676214 0.10215195232934561 0.10041492393676214 C 0.10215195232934561 0.10041492393676214 0.10310396670832854 0.1034258795923684 0.10272994508238116 0.10275260188043749 C 0.10310396670832854 0.1034258795923684 0.10443713990255209 0.10504705106840669 0.10439608208502991 0.1044545902083476 C 0.10443713990255209 0.10504705106840669 0.10264071208476754 0.10689122588356362 0.10297629198751419 0.10630736704079195 C 0.10264071208476754 0.10689122588356362 0.1022836544487226 0.10823280596900858 0.10238260266854997 0.10795774326497763" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.32131057376017974,0.1591534814480709) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13992973645980034 0.11460177227368223 C 0.14004053311335926 0.11473214281700983 0.1414227463934939 0.11644932265570374 0.14125929630250741 0.1161662187936134 C 0.1414227463934939 0.11644932265570374 0.14194379098906557 0.11815175193752903 0.141891137551638 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.141891137551638 0.11799901861876629 C 0.14182730272649288 0.11815622449261605 0.14094532454981146 0.12016859296705384 0.14112511964989657 0.11988548910496352 C 0.14094532454981146 0.12016859296705384 0.1396176360756765 0.1215221629520908 0.13973359635061652 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13973359635061652 0.12139626496385024 C 0.13971388800666934 0.12146981750479416 0.13942354368230642 0.1224062921931179 0.13949709622325032 0.12227889545517724 C 0.13942354368230642 0.1224062921931179 0.138723569121349 0.12299857836008199 0.13885096585928966 0.12292502581913807 C 0.138723569121349 0.12299857836008199 0.13782123028607476 0.1231615259465042 0.1379683353679626 0.1231615259465042 C 0.13782123028607476 0.1231615259465042 0.136958308138695 0.12285147327819415 0.13708570487663566 0.12292502581913807 C 0.136958308138695 0.12285147327819415 0.1363660219717308 0.12215149871723659 0.13643957451267472 0.12227889545517724 C 0.1363660219717308 0.12215149871723659 0.13618336604136147 0.12132271242290632 0.13620307438530865 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13620307438530865 0.12139626496385024 C 0.13608711411036864 0.12127036697560968 0.1346317559859435 0.1196023852428732 0.13481155108602863 0.11988548910496352 C 0.1346317559859435 0.1196023852428732 0.13398169835914203 0.11784181274491652 0.13404553318428716 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13404553318428716 0.11799901861876629 C 0.13409818662171472 0.11784628530000354 0.13484082452440416 0.11588311493152306 0.13467737443341768 0.1161662187936134 C 0.13484082452440416 0.11588311493152306 0.13611773092968385 0.11447140173035464 0.13600693427612492 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601797,0.16255072779315494) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629256868604538 0.10078614977303844 C 0.10623478163466932 0.10105900213629111 0.10562878479913024 0.1030302175268305 0.10594584637778905 0.10242326395255448 C 0.10562878479913024 0.1030302175268305 0.10388100413641245 0.10450667418053142 0.10439019921409252 0.10442787121869458 C 0.10388100413641245 0.10450667418053142 0.10255405644835593 0.10229013178283765 0.10289067591170857 0.10289608172357546 C 0.10255405644835593 0.10229013178283765 0.10237048243397663 0.10079217157426766 0.10237048243397663 0.10079217157426766 C 0.10237048243397663 0.10079217157426766 0.10322729537506121 0.10350203166431328 0.10289067591170857 0.10289608172357546 C 0.10322729537506121 0.10350203166431328 0.10442715124986249 0.10496108599274775 0.10439019921409252 0.10442787121869458 C 0.10442715124986249 0.10496108599274775 0.10281036621385636 0.10662084332638898 0.10311238812632836 0.10609537036789447 C 0.10281036621385636 0.10662084332638898 0.10248901434141588 0.10782826540328949 0.10257806773926052 0.10758070896966163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3213105737601797,0.16594797413823892) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13973359635061652 0.11460177227368223 C 0.13983331333881957 0.11471910576267708 0.1410773052909409 0.11626456761750158 0.14093020020905306 0.11600977414162027 C 0.1410773052909409 0.11626456761750158 0.1415462454269553 0.11779675397114435 0.1414988573332705 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414988573332705 0.11765929398425788 C 0.1414414059906399 0.11780077927072267 0.1406476256316266 0.11961191089771672 0.14080944122170322 0.11935711742183543 C 0.1406476256316266 0.11961191089771672 0.13945270600490514 0.12083012388425 0.13955707025235115 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955707025235115 0.1207168156948335 C 0.13953933274279867 0.12078301298168302 0.13927802285087204 0.1216258402011743 0.13934422013772158 0.12151118313702772 C 0.13927802285087204 0.1216258402011743 0.13864804574601025 0.12215889775144197 0.13876270281015685 0.12209270046459245 C 0.13864804574601025 0.12215889775144197 0.13783594079426356 0.12230555057922199 0.1379683353679626 0.12230555057922199 C 0.13783594079426356 0.12230555057922199 0.1370593108616217 0.12202650317774293 0.13717396792576828 0.12209270046459245 C 0.1370593108616217 0.12202650317774293 0.1365262533113541 0.12139652607288114 0.13659245059820363 0.12151118313702772 C 0.1365262533113541 0.12139652607288114 0.1363618629740215 0.12065061840798398 0.13637960048357398 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13637960048357398 0.1207168156948335 C 0.13627523623612797 0.120603507505417 0.13496541392414543 0.11910232394595413 0.13512722951422204 0.11935711742183543 C 0.13496541392414543 0.11910232394595413 0.13438036206002418 0.11751780869779309 0.1344378134026548 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1344378134026548 0.11765929398425788 C 0.13448520149633958 0.11752183399737141 0.13515357560875996 0.11575498066573896 0.13500647052687215 0.11600977414162027 C 0.13515357560875996 0.11575498066573896 0.1363027913735117 0.11448443878468739 0.13620307438530865 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017963,0.16900549584881458) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10609703715500646 0.10112627482691638 C 0.106045028808768 0.10137184195384379 0.10549963165678276 0.10314593580532919 0.1057849870775757 0.10259967758848078 C 0.10549963165678276 0.10314593580532919 0.10392662906033673 0.10447474679365994 0.10438490463024878 0.10440382412800679 C 0.10392662906033673 0.10447474679365994 0.10273237614108599 0.10247985863573565 0.10303533365810337 0.10302521358239967 C 0.10273237614108599 0.10247985863573565 0.10256715952814453 0.10113169444802263 0.10256715952814453 0.10113169444802263 C 0.10256715952814453 0.10113169444802263 0.10333829117512075 0.1035705685290637 0.10303533365810337 0.10302521358239967 C 0.10333829117512075 0.1035705685290637 0.10441816146244173 0.10488371742465463 0.10438490463024878 0.10440382412800679 C 0.10441816146244173 0.10488371742465463 0.10296305493003625 0.10637749902493181 0.10323487465126104 0.10590457336228674 C 0.10296305493003625 0.10637749902493181 0.10267383824483994 0.10746417889414223 0.1027539863029001 0.10724137810387716" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.32131057376017963,0.17206301755939019) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13955707025235115 0.11460177227368223 C 0.1396468155417339 0.11470737241377758 0.14076640829864304 0.11609828808311966 0.140634013724944 0.11586897395482648 C 0.14076640829864304 0.11609828808311966 0.14118845442105593 0.11747725580139809 0.14114580513673963 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14114580513673963 0.11735354181320028 C 0.1410940989283721 0.11748087857101859 0.1403796966052602 0.11911089703531323 0.14052533063632916 0.11888158290702006 C 0.1403796966052602 0.11911089703531323 0.13930426894121084 0.12020728872319325 0.13939819676391224 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13939819676391224 0.12010531135271839 C 0.13938223300531502 0.12016488891088295 0.1391470541025811 0.12092343340842512 0.13920663166074568 0.12082024205069321 C 0.1391470541025811 0.12092343340842512 0.13858007470820544 0.12140318520366601 0.13868326606593737 0.12134360764550145 C 0.13858007470820544 0.12140318520366601 0.13784918025163345 0.12153517274866801 0.1379683353679626 0.12153517274866801 C 0.13784918025163345 0.12153517274866801 0.13715021331225577 0.12128403008733689 0.1372534046699877 0.12134360764550145 C 0.13715021331225577 0.12128403008733689 0.13667046151701484 0.12071705069296129 0.13673003907517942 0.12082024205069321 C 0.13667046151701484 0.12071705069296129 0.1365225102134157 0.12004573379455383 0.1365384739720129 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1365384739720129 0.12010531135271839 C 0.1364445461493115 0.12000333398224353 0.13526570606852703 0.11865226877872688 0.135411340099596 0.11888158290702006 C 0.13526570606852703 0.11865226877872688 0.134739159390818 0.11722620505538196 0.13479086559918552 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13479086559918552 0.11735354181320028 C 0.13483351488350181 0.11722982782500246 0.1354350515846803 0.1156396598265333 0.13530265701098126 0.11586897395482648 C 0.1354350515846803 0.1156396598265333 0.1364693457729567 0.11449617213358688 0.13637960048357398 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601796,0.17481478709890824) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10592105877707135 0.10143238737540648 C 0.10587425126545674 0.10165339778964114 0.10538339382867001 0.10325008225597801 0.10564021370738366 0.10275844986081444 C 0.10538339382867001 0.10325008225597801 0.1039676914918686 0.10444601214547572 0.10438013950478946 0.10438218174638789 C 0.1039676914918686 0.10444601214547572 0.10289286386454288 0.10265061280334381 0.10316552562985852 0.10314143225534145 C 0.10289286386454288 0.10265061280334381 0.10274416891289567 0.10143726503440209 0.10274416891289567 0.10143726503440209 C 0.10274416891289567 0.10143726503440209 0.10343818739517416 0.10363225170733908 0.10316552562985852 0.10314143225534145 C 0.10343818739517416 0.10363225170733908 0.10441007065376312 0.10481408571337095 0.10438013950478946 0.10438218174638789 C 0.10441007065376312 0.10481408571337095 0.10310047477459822 0.10615848915362033 0.10334511252370052 0.10573285605723978 C 0.10310047477459822 0.10615848915362033 0.1028401797579215 0.10713650103590973 0.10291231301017564 0.10693598032467116" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.3213105737601796,0.17756655663842635) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939819676391224 0.11460177227368223 C 0.1394789675243567 0.11469681239976806 0.14048660100557492 0.11594863650217593 0.14036744588924577 0.11574225378671207 C 0.14048660100557492 0.11594863650217593 0.14086644251574676 0.1171897074486265 0.14082805815986207 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14082805815986207 0.11707836485924847 C 0.14078152257233129 0.11719296794128496 0.14013856048153042 0.1186599845591502 0.1402696311094925 0.11845360184368633 C 0.14013856048153042 0.1186599845591502 0.13917067558388596 0.11964673707824212 0.13925521062431723 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13925521062431723 0.11955495744481476 C 0.13924084324157973 0.11960857724716287 0.13902918222911914 0.12029126729495083 0.13908280203146725 0.1201983950729921 C 0.13902918222911914 0.12029126729495083 0.13851890077418122 0.12072304391066765 0.13861177299613994 0.12066942410831955 C 0.13851890077418122 0.12072304391066765 0.13786109576326638 0.12084183270116945 0.1379683353679626 0.12084183270116945 C 0.13786109576326638 0.12084183270116945 0.1372320255178265 0.12061580430597144 0.13732489773978526 0.12066942410831955 C 0.1372320255178265 0.12061580430597144 0.13680024890210957 0.12010552285103336 0.13685386870445768 0.1201983950729921 C 0.13680024890210957 0.12010552285103336 0.13666709272887048 0.11950133764246665 0.13668146011160795 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13668146011160795 0.11955495744481476 C 0.13659692507117668 0.11946317781138739 0.13553596899847065 0.11824721912822247 0.1356670396264327 0.11845360184368633 C 0.13553596899847065 0.11824721912822247 0.13506207698853243 0.11696376177721197 0.13510861257606321 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13510861257606321 0.11707836485924847 C 0.1351469969319479 0.11696702226987044 0.13568837996300848 0.11553587107124819 0.13556922484667933 0.11574225378671205 C 0.13568837996300848 0.11553587107124819 0.13661924473245737 0.11450673214759642 0.1365384739720129 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601795,0.1800431492239926) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10576267823692977 0.10170788866904754 C 0.1057205514764766 0.10190679804185873 0.10527877978336853 0.10334381406156194 0.10550991767421082 0.10290134490591472 C 0.10527877978336853 0.10334381406156194 0.10400464768024728 0.10442015096210991 0.10437585089187604 0.10436270360293086 C 0.10400464768024728 0.10442015096210991 0.10303730281565425 0.10280429155419113 0.10328269840443832 0.10324602906098901 C 0.10303730281565425 0.10280429155419113 0.1029034773591716 0.10171227856214361 0.1029034773591716 0.10171227856214361 C 0.1029034773591716 0.10171227856214361 0.1035280939932224 0.10368776656778689 0.10328269840443832 0.10324602906098901 C 0.1035280939932224 0.10368776656778689 0.10440278892595231 0.10475141717321562 0.10437585089187604 0.10436270360293086 C 0.10440278892595231 0.10475141717321562 0.10322415263470393 0.10596138026944006 0.103444326608896 0.10557831048269757 C 0.10322415263470393 0.10596138026944006 0.10298988711969487 0.10684159096350049 0.1030548070467236 0.10666112232338579" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.3213105737601795,0.18251974180955888) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13925521062431723 0.11460177227368223 C 0.13932790430871725 0.11468730838715947 0.1402347744418137 0.11581395007932656 0.14012753483711746 0.11562820563540908 C 0.1402347744418137 0.11581395007932656 0.14057663180096833 0.11693091393113209 0.1405420858806721 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405420858806721 0.11683070560069185 C 0.14050020385189438 0.11693384837452468 0.13992153797017365 0.11825416333060337 0.1400395015353395 0.1180684188866859 C 0.13992153797017365 0.11825416333060337 0.13905044156229357 0.11914224059778608 0.13912652309868173 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13912652309868173 0.11905963892770145 C 0.139113592454218 0.11910789674981476 0.13892309754300355 0.119722317792824 0.13897135536511684 0.11963873279306113 C 0.13892309754300355 0.119722317792824 0.13846384423355937 0.12011091674696914 0.13854742923332222 0.12006265892485583 C 0.13846384423355937 0.12011091674696914 0.137871819723736 0.12021782665842078 0.1379683353679626 0.12021782665842078 C 0.137871819723736 0.12021782665842078 0.13730565650284013 0.12001440110274253 0.13738924150260298 0.12006265892485583 C 0.13730565650284013 0.12001440110274253 0.13691705754869496 0.11955514779329826 0.13696531537080828 0.11963873279306113 C 0.13691705754869496 0.11955514779329826 0.1367972169927795 0.11901138110558815 0.13681014763724325 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13681014763724325 0.11905963892770145 C 0.13673406610085512 0.11897703725761682 0.13577920563541984 0.11788267444276843 0.13589716920058567 0.1180684188866859 C 0.13577920563541984 0.11788267444276843 0.1353527028264754 0.11672756282685902 0.13539458485525313 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13539458485525313 0.11683070560069185 C 0.13542913077554933 0.11673049727025162 0.1359163755035038 0.11544246119149161 0.13580913589880755 0.11562820563540908 C 0.1359163755035038 0.11544246119149161 0.13675415379600797 0.114516236160205 0.13668146011160795 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.1847486751365685) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10562013575080237 0.10195583983332451 C 0.10558222166639453 0.10213485826885459 0.10518462714259726 0.10342817268658748 0.10539265124435532 0.10302995044650498 C 0.10518462714259726 0.10342817268658748 0.10403790824978813 0.10439687589708063 0.10437199114025403 0.10434517327381948 C 0.10403790824978813 0.10439687589708063 0.10316729787165431 0.10294260242995376 0.10338815390155998 0.10334016618607185 C 0.10316729787165431 0.10294260242995376 0.10304685496082001 0.10195979073711098 0.10304685496082001 0.10195979073711098 C 0.10304685496082001 0.10195979073711098 0.10360900993146564 0.10373772994218994 0.10338815390155998 0.10334016618607185 C 0.10360900993146564 0.10373772994218994 0.10439623537092269 0.10469501548707577 0.10437199114025403 0.10434517327381948 C 0.10439623537092269 0.10469501548707577 0.10333546270879906 0.10578398227367783 0.10353361928557193 0.10543921946560958 C 0.10333546270879906 0.10578398227367783 0.10312462374529098 0.1065761718983322 0.10318305167961683 0.10641375012222896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.02018461228254831 0.018599422539472096 C 0.020435879788334454 0.018599422539472096 0.021769863246687306 0.019933731311340065 0.02169221731726518 0.01969476171262892 C 0.021769863246687306 0.019933731311340065 0.02091308375329863 0.021614749058287253 0.02111636343561383 0.021467057724005843 C 0.02091308375329863 0.021614749058287253 0.0190495814471676 0.021319366389724433 0.0192528611294828 0.021467057724005843 C 0.0190495814471676 0.021319366389724433 0.018754653177253573 0.019455792113917774 0.018677007247831445 0.01969476171262892 C 0.018754653177253573 0.019455792113917774 0.020435879788334454 0.018599422539472096 0.02018461228254831 0.018599422539472096 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.026392927798991044 0.02531353873051479 C 0.02656402113352306 0.02531353873051479 0.02747235855417783 0.02622209766399067 0.027419487806183158 0.02605937823328933 C 0.02747235855417783 0.02622209766399067 0.026888959359666446 0.02736673803773433 0.027027376774927128 0.02726617189893087 C 0.026888959359666446 0.02736673803773433 0.02562006140779431 0.027165605760127408 0.02575847882305499 0.02726617189893087 C 0.02562006140779431 0.027165605760127408 0.025419238539793613 0.02589665880258799 0.025366367791798943 0.02605937823328933 C 0.025419238539793613 0.02589665880258799 0.02656402113352306 0.02531353873051479 0.026392927798991044 0.02531353873051479 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3204760438009511,0.18718935489443791) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.1715519620070864 0.18635855301437484 C 0.17163842556243572 0.18623074100517434 0.17274089455400307 0.18465122635844283 0.17258952467127844 0.1848248089039687 C 0.17274089455400307 0.18465122635844283 0.1734333069271573 0.1842297919317388 0.173368400599782 0.18427556246806417" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.173368400599782 0.18427556246806417 C 0.17333183204168182 0.1848266482224662 0.1728200223462147 0.1921584304611907 0.17292957790257968 0.1908885915208885 C 0.1728200223462147 0.1921584304611907 0.17198074692513757 0.20023238293759055 0.17205373392340234 0.1995136297516904" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17205373392340234 0.1995136297516904 C 0.1719441216699472 0.19953128081252378 0.17055659012429006 0.19974692807434194 0.17073838688194043 0.19972544248169077 C 0.17055659012429006 0.19974692807434194 0.16979998832740278 0.19977529139532232 0.169872172831598 0.1997714568635045" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.169872172831598 0.1997714568635045 C 0.1699277243816657 0.1991324875405764 0.17067877386370103 0.19098608300093997 0.17053879143241032 0.19210382498836745 C 0.17067877386370103 0.19098608300093997 0.1716363928883094 0.18587978034987546 0.1715519620070864 0.18635855301437484" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3221451037194078,0.18718935489443791) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17448298672553023 0.18634281830520028 C 0.17456741344646606 0.18679032680339006 0.17564792466947693 0.19282187547383733 0.17549610737676016 0.19171292028347756 C 0.17564792466947693 0.19282187547383733 0.17637218480991254 0.20031172728168778 0.17630479423813158 0.19965028058951775" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17630479423813158 0.19965028058951775 C 0.1762326097339364 0.19964648402336152 0.1752538247147823 0.19959256875276413 0.17543858018778918 0.19960472179564281 C 0.1752538247147823 0.19959256875276413 0.17397515759323717 0.19949608759825116 0.17408772856204888 0.19950444407497359" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17408772856204888 0.19950444407497359 C 0.17396325991658068 0.19874200985354332 0.17247567311399586 0.18908656736386803 0.1725941048164304 0.19035523341781044 C 0.17247567311399586 0.18908656736386803 0.17267258507586833 0.18377421959515272 0.17266654813283464 0.18428045142766486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17266654813283464 0.18428045142766486 C 0.17273145446020993 0.18432576879036325 0.17359679394406277 0.18499612368650695 0.17344542406133814 0.18482425978004566 C 0.17359679394406277 0.18499612368650695 0.17456945028087956 0.18646936484896315 0.17448298672553023 0.18634281830520028" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19427561416026085 0.17274541588188216 C 0.19427306084983317 0.17203981040151675 0.19428360394572933 0.1629760369562614 0.19424497443512878 0.1642781501174973 C 0.19428360394572933 0.1629760369562614 0.19478035110849576 0.1565235502661809 0.19473916828746754 0.1571200579470514" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19473916828746754 0.1571200579470514 C 0.19480363981144463 0.15709148966240985 0.19563855443068695 0.15677600322444307 0.19551282657519264 0.1567772385313529 C 0.19563855443068695 0.15677600322444307 0.19630915888491632 0.1571325672418654 0.1962479025533991 0.15710523426413367" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1962479025533991 0.15710523426413367 C 0.19629168162473262 0.15771269053142942 0.1968032612510356 0.16569577798454535 0.19677325140940122 0.16439470947168275 C 0.1968032612510356 0.16569577798454535 0.19659425142331233 0.17341166866405183 0.19660802065301147 0.17271805641848498" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19660802065301147 0.17271805641848498 C 0.1965167544798599 0.17271805641848498 0.19531845936746342 0.17272033637376807 0.19551282657519264 0.17271805641848498 C 0.19531845936746342 0.17272033637376807 0.1941725131256832 0.17274769583716526 0.19427561416026085 0.17274541588188216" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g id="編節1">
<g transform="translate(0.353376331897162,0.13389549078914728) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1406588718451063 0.11460177227368223 C 0.14081085628071527 0.11478060703819197 0.14270689644550916 0.11713613493763485 0.14248268507241385 0.116747789447799 C 0.14270689644550916 0.11713613493763485 0.1434216352597363 0.11947142887703856 0.14334940832224996 0.11926191815171244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14334940832224996 0.11926191815171244 C 0.1432618434043554 0.11947756406920185 0.14205199679711067 0.12223801465142106 0.1422986293075155 0.12184966916158521 C 0.14205199679711067 0.12223801465142106 0.14023075060488158 0.12409476360208903 0.14038981819739188 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14038981819739188 0.12392206402974258 C 0.14036278343203223 0.12402295914763548 0.13996450589518336 0.12530756091488346 0.14006540101307624 0.12513280544445732 C 0.13996450589518336 0.12530756091488346 0.13900432131225113 0.12612002479274906 0.13917907678267727 0.12601912967485618 C 0.13900432131225113 0.12612002479274906 0.1377665451321769 0.12634354685917182 0.13796833536796266 0.12634354685917182 C 0.1377665451321769 0.12634354685917182 0.13658283848282188 0.1259182345569633 0.13675759395324802 0.12601912967485618 C 0.13658283848282188 0.1259182345569633 0.13577037460495622 0.12495804997403119 0.1358712697228491 0.12513280544445732 C 0.13577037460495622 0.12495804997403119 0.1355198177731737 0.12382116891184969 0.13554685253853335 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13554685253853335 0.12392206402974258 C 0.13538778494602305 0.12374936445739614 0.13339140891800497 0.12146132367174937 0.1336380414284098 0.12184966916158521 C 0.13339140891800497 0.12146132367174937 0.1324996974957809 0.11904627223422308 0.1325872624136754 0.11926191815171247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1325872624136754 0.11926191815171247 C 0.13265948935116176 0.11905240742638634 0.1336781970366068 0.11635944395796315 0.1334539856635115 0.116747789447799 C 0.1336781970366068 0.11635944395796315 0.13542978332642802 0.1144229375091725 0.13527779889081906 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716194,0.13855563666717752) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10675040239677382 0.10884214469843498 C 0.10662824410069065 0.10850256111321158 0.10560315644404437 0.10608382980095674 0.1060174526202748 0.10680464318709461 C 0.10560315644404437 0.10608382980095674 0.10431531400299884 0.10378583122104099 0.10426462533939122 0.10451726438160774 C 0.10431531400299884 0.10378583122104099 0.10678333969568272 0.10158483717192755 0.10632158460192052 0.1024160442236941 C 0.10678333969568272 0.10158483717192755 0.10703515590196443 0.09953002207100842 0.10703515590196443 0.09953002207100842 C 0.10703515590196443 0.09953002207100842 0.10585982950815832 0.10324725127546065 0.10632158460192052 0.1024160442236941 C 0.10585982950815832 0.10324725127546065 0.10356614100786848 0.10440916704026779 0.10426462533939122 0.10451726438160774 C 0.10356614100786848 0.10440916704026779 0.1016957518930875 0.10093487639749793 0.10213067861278409 0.10176746017565433 C 0.1016957518930875 0.10093487639749793 0.10157579608928285 0.09914747863550524 0.1016550650212116 0.0995217617126694" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.35337633189716194,0.14321578254520761) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14038981819739188 0.11460177227368223 C 0.14052660418943996 0.114762723561741 0.14223304033775455 0.11688269867123958 0.14203125010196876 0.11653318773038732 C 0.14223304033775455 0.11688269867123958 0.14287630527055892 0.11898446321670295 0.1428113010268212 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1428113010268212 0.11879590356390944 C 0.14273249260071613 0.1189899848896499 0.14164363065419583 0.1214743904136472 0.14186559991356018 0.12112487947279495 C 0.14164363065419583 0.1214743904136472 0.14000450908118967 0.12314546446924837 0.14014766991444894 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14014766991444894 0.12299003485413657 C 0.14012333862562526 0.12308084046024016 0.13976488884246127 0.12423698205076321 0.13985569444856485 0.12407970212737969 C 0.13976488884246127 0.12423698205076321 0.13890072271782233 0.12496819954084241 0.13905800264120585 0.1248773939347388 C 0.13890072271782233 0.12496819954084241 0.13778672415575546 0.12516936940062295 0.13796833536796266 0.12516936940062295 C 0.13778672415575546 0.12516936940062295 0.13672138817133592 0.12478658832863519 0.13687866809471944 0.1248773939347388 C 0.13672138817133592 0.12478658832863519 0.13599017068125688 0.12392242220399617 0.13608097628736046 0.12407970212737969 C 0.13599017068125688 0.12392242220399617 0.13576466953265262 0.12289922924803297 0.1357890008214763 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1357890008214763 0.12299003485413657 C 0.13564583998821703 0.12283460523902476 0.1338491015630008 0.12077536853194269 0.13407107082236516 0.12112487947279495 C 0.1338491015630008 0.12077536853194269 0.1330465612829991 0.11860182223816898 0.13312536970910419 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13312536970910419 0.11879590356390944 C 0.1331903739528419 0.11860734391111594 0.13410721086974237 0.11618367678953509 0.1339054206339566 0.11653318773038736 C 0.13410721086974237 0.11618367678953509 0.1356836385305814 0.11444082098562347 0.13554685253853335 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971619,0.14740991383543484) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10650908749466204 0.10837667025977321 C 0.10639914502818718 0.10807104503307216 0.10547656613720548 0.10589418685204278 0.10584943269581287 0.10654291889956687 C 0.10547656613720548 0.10589418685204278 0.10431750794026452 0.10382598813011862 0.10427188814301767 0.1044842779746287 C 0.10431750794026452 0.10382598813011862 0.10653873106367996 0.10184509348591653 0.10612315147929399 0.10259317983250642 C 0.10653873106367996 0.10184509348591653 0.10676536564933349 0.09999575989508931 0.10676536564933349 0.09999575989508931 C 0.10676536564933349 0.09999575989508931 0.10570757189490802 0.10334126617909631 0.10612315147929399 0.10259317983250642 C 0.10570757189490802 0.10334126617909631 0.10364325224464722 0.10438699036742272 0.10427188814301767 0.1044842779746287 C 0.10364325224464722 0.10438699036742272 0.10195990204134435 0.10126012878892983 0.1023513360890713 0.10200945418927057 C 0.10195990204134435 0.10126012878892983 0.10185194181792016 0.0996514708031365 0.10192328385665604 0.09998832557258422" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3533763318971619,0.15160404512566195) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14014766991444894 0.11460177227368223 C 0.1402707773072922 0.11474662843293512 0.14180656984077528 0.11665460603148387 0.14162495862856808 0.11634004618471683 C 0.14180656984077528 0.11665460603148387 0.14238550828029928 0.11854619412240089 0.14232700446093535 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14232700446093535 0.11837649043488672 C 0.14225607687744077 0.11855116362805314 0.1412761011255725 0.12078712859965067 0.14147587345900042 0.12047256875288363 C 0.1412761011255725 0.12078712859965067 0.1398008917098671 0.12229109524969174 0.13992973645980042 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13992973645980042 0.12215120859609112 C 0.13990783829985912 0.12223293364158436 0.13958523349501142 0.12327346107305513 0.13966695854050468 0.12313190914200996 C 0.13958523349501142 0.12327346107305513 0.1388074839828363 0.12393155681412645 0.13894903591388147 0.1238498317686332 C 0.1388074839828363 0.12393155681412645 0.13780488527697618 0.12411260968792882 0.13796833536796266 0.12411260968792882 C 0.13780488527697618 0.12411260968792882 0.1368460828909986 0.12376810672313997 0.13698763482204376 0.1238498317686332 C 0.1368460828909986 0.12376810672313997 0.1361879871499274 0.12299035721096478 0.1362697121954206 0.12313190914200996 C 0.1361879871499274 0.12299035721096478 0.13598503611618368 0.12206948355059788 0.13600693427612498 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13600693427612498 0.12215120859609112 C 0.13587808952619165 0.1220113219424905 0.134261024943497 0.1201580089061166 0.13446079727692492 0.12047256875288363 C 0.134261024943497 0.1201580089061166 0.13353873869149535 0.11820181724172031 0.13360966627498994 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13360966627498994 0.11837649043488672 C 0.1336681700943539 0.11820678674737256 0.1344933233195644 0.11602548633794979 0.1343117121073572 0.11634004618471683 C 0.1344933233195644 0.11602548633794979 0.13591210821431957 0.11445691611442935 0.1357890008214763 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716183,0.15537876328686645) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629190408276137 0.10795774326497763 C 0.10619295586293401 0.10768268056094668 0.10536263486105055 0.10572350819802029 0.10569821476379719 0.10630736704079195 C 0.10536263486105055 0.10572350819802029 0.10431948248380365 0.10386212934828852 0.10427842466628148 0.1044545902083476 C 0.10431948248380365 0.10386212934828852 0.10631858329487756 0.10207932416850657 0.10594456166893018 0.10275260188043749 C 0.10631858329487756 0.10207932416850657 0.10652255442196577 0.10041492393676214 0.10652255442196577 0.10041492393676214 C 0.10652255442196577 0.10041492393676214 0.1055705400429828 0.1034258795923684 0.10594456166893018 0.10275260188043749 C 0.1055705400429828 0.1034258795923684 0.10371265235774807 0.10436703136186223 0.10427842466628148 0.1044545902083476 C 0.10371265235774807 0.10436703136186223 0.10219763717477544 0.10155285594121863 0.10254992781772969 0.10222724880152531 C 0.10219763717477544 0.10155285594121863 0.10210047297369368 0.10010506375400449 0.10216468080855597 0.10040823304650746" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.35337633189716183,0.15915348144807084) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13992973645980042 0.11460177227368223 C 0.14004053311335934 0.11473214281700983 0.14142274639349403 0.11644932265570374 0.14125929630250755 0.1161662187936134 C 0.14142274639349403 0.11644932265570374 0.1419437909890656 0.11815175193752903 0.14189113755163804 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14189113755163804 0.11799901861876629 C 0.14182730272649294 0.11815622449261605 0.14094532454981157 0.12016859296705384 0.14112511964989669 0.11988548910496352 C 0.14094532454981157 0.12016859296705384 0.13961763607567657 0.1215221629520908 0.13973359635061658 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13973359635061658 0.12139626496385024 C 0.1397138880066694 0.12146981750479416 0.13942354368230656 0.1224062921931179 0.13949709622325046 0.12227889545517724 C 0.13942354368230656 0.1224062921931179 0.13872356912134906 0.12299857836008199 0.13885096585928972 0.12292502581913807 C 0.13872356912134906 0.12299857836008199 0.13782123028607482 0.1231615259465042 0.13796833536796266 0.1231615259465042 C 0.13782123028607482 0.1231615259465042 0.13695830813869508 0.12285147327819415 0.1370857048766357 0.12292502581913807 C 0.13695830813869508 0.12285147327819415 0.13636602197173103 0.12215149871723659 0.13643957451267497 0.12227889545517724 C 0.13636602197173103 0.12215149871723659 0.1361833660413615 0.12132271242290632 0.13620307438530868 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13620307438530868 0.12139626496385024 C 0.1360871141103687 0.12127036697560968 0.1346317559859436 0.1196023852428732 0.1348115510860287 0.11988548910496352 C 0.1346317559859436 0.1196023852428732 0.1339816983591421 0.11784181274491652 0.13404553318428722 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13404553318428722 0.11799901861876629 C 0.13409818662171477 0.11784628530000354 0.13484082452440424 0.11588311493152306 0.13467737443341776 0.1161662187936134 C 0.13484082452440424 0.11588311493152306 0.1361177309296839 0.11447140173035464 0.13600693427612498 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971618,0.16255072779315488) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10609643901205082 0.10758070896966163 C 0.1060073856142062 0.10733315253603376 0.10526009671251108 0.10556989740939997 0.10556211862498305 0.10609537036789447 C 0.10526009671251108 0.10556989740939997 0.1043212595729889 0.10389465644464141 0.10428430753721894 0.10442787121869458 C 0.1043212595729889 0.10389465644464141 0.10612045030295542 0.10229013178283765 0.10578383083960279 0.10289608172357546 C 0.10612045030295542 0.10229013178283765 0.10630402431733471 0.10079217157426766 0.10630402431733471 0.10079217157426766 C 0.10630402431733471 0.10079217157426766 0.10544721137625016 0.10350203166431328 0.10578383083960279 0.10289608172357546 C 0.10544721137625016 0.10350203166431328 0.10377511245953887 0.10434906825685775 0.10428430753721894 0.10442787121869458 C 0.10377511245953887 0.10434906825685775 0.1024115987948635 0.10181631037827846 0.10272866037352234 0.10242326395255448 C 0.1024115987948635 0.10181631037827846 0.1023241510138899 0.10051329740978578 0.10238193806526596 0.10078614977303844" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3533763318971618,0.16594797413823886) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13973359635061658 0.11460177227368223 C 0.13983331333881963 0.11471910576267708 0.14107730529094095 0.11626456761750158 0.1409302002090531 0.11600977414162027 C 0.14107730529094095 0.11626456761750158 0.14154624542695537 0.11779675397114435 0.14149885733327058 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14149885733327058 0.11765929398425788 C 0.14144140599063998 0.11780077927072267 0.14064762563162672 0.11961191089771672 0.14080944122170333 0.11935711742183543 C 0.14064762563162672 0.11961191089771672 0.13945270600490517 0.12083012388425 0.13955707025235117 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955707025235117 0.1207168156948335 C 0.13953933274279873 0.12078301298168302 0.13927802285087212 0.1216258402011743 0.13934422013772166 0.12151118313702772 C 0.13927802285087212 0.1216258402011743 0.1386480457460103 0.12215889775144197 0.1387627028101569 0.12209270046459245 C 0.1386480457460103 0.12215889775144197 0.13783594079426362 0.12230555057922199 0.13796833536796266 0.12230555057922199 C 0.13783594079426362 0.12230555057922199 0.13705931086162176 0.12202650317774293 0.13717396792576836 0.12209270046459245 C 0.13705931086162176 0.12202650317774293 0.13652625331135412 0.12139652607288114 0.13659245059820366 0.12151118313702772 C 0.13652625331135412 0.12139652607288114 0.13636186297402156 0.12065061840798398 0.13637960048357403 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13637960048357403 0.1207168156948335 C 0.13627523623612803 0.120603507505417 0.13496541392414546 0.11910232394595413 0.13512722951422207 0.11935711742183543 C 0.13496541392414546 0.11910232394595413 0.1343803620600242 0.11751780869779309 0.13443781340265482 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13443781340265482 0.11765929398425788 C 0.1344852014963396 0.11752183399737141 0.13515357560876007 0.11575498066573896 0.13500647052687226 0.11600977414162027 C 0.13515357560876007 0.11575498066573896 0.13630279137351173 0.11448443878468739 0.13620307438530868 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971617,0.16900549584881452) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10592052044841131 0.10724137810387716 C 0.10584037239035114 0.10701857731361208 0.10516781237882551 0.10543164769964168 0.10543963210005029 0.10590457336228674 C 0.10516781237882551 0.10543164769964168 0.10432285895325556 0.10392393083135895 0.1042896021210626 0.10440382412800679 C 0.10432285895325556 0.10392393083135895 0.10594213061022542 0.10247985863573565 0.10563917309320804 0.10302521358239967 C 0.10594213061022542 0.10247985863573565 0.10610734722316686 0.10113169444802263 0.10610734722316686 0.10113169444802263 C 0.10610734722316686 0.10113169444802263 0.10533621557619066 0.1035705685290637 0.10563917309320804 0.10302521358239967 C 0.10533621557619066 0.1035705685290637 0.10383132655115054 0.10433290146235365 0.1042896021210626 0.10440382412800679 C 0.10383132655115054 0.10433290146235365 0.10260416425294272 0.10205341937163237 0.10288951967373566 0.10259967758848078 C 0.10260416425294272 0.10205341937163237 0.10252546125006651 0.10088070769998898 0.10257746959630495 0.10112627482691638" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.3533763318971617,0.17206301755939013) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13955707025235117 0.11460177227368223 C 0.13964681554173392 0.11470737241377758 0.14076640829864315 0.11609828808311966 0.1406340137249441 0.11586897395482648 C 0.14076640829864315 0.11609828808311966 0.1411884544210561 0.11747725580139809 0.1411458051367398 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1411458051367398 0.11735354181320028 C 0.14109409892837224 0.11748087857101859 0.14037969660526026 0.11911089703531323 0.14052533063632922 0.11888158290702006 C 0.14037969660526026 0.11911089703531323 0.13930426894121092 0.12020728872319325 0.13939819676391232 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13939819676391232 0.12010531135271839 C 0.1393822330053151 0.12016488891088295 0.13914705410258119 0.12092343340842512 0.13920663166074576 0.12082024205069321 C 0.13914705410258119 0.12092343340842512 0.13858007470820563 0.12140318520366601 0.13868326606593756 0.12134360764550145 C 0.13858007470820563 0.12140318520366601 0.1378491802516335 0.12153517274866801 0.13796833536796266 0.12153517274866801 C 0.1378491802516335 0.12153517274866801 0.1371502133122559 0.12128403008733689 0.13725340466998784 0.12134360764550145 C 0.1371502133122559 0.12128403008733689 0.13667046151701498 0.12071705069296129 0.13673003907517955 0.12082024205069321 C 0.13667046151701498 0.12071705069296129 0.13652251021341574 0.12004573379455383 0.13653847397201296 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13653847397201296 0.12010531135271839 C 0.13644454614931156 0.12000333398224353 0.13526570606852725 0.11865226877872688 0.1354113400995962 0.11888158290702006 C 0.13526570606852725 0.11865226877872688 0.13473915939081801 0.11722620505538196 0.13479086559918557 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13479086559918557 0.11735354181320028 C 0.1348335148835019 0.11722982782500246 0.1354350515846804 0.1156396598265333 0.13530265701098135 0.11586897395482648 C 0.1354350515846804 0.1156396598265333 0.13646934577295675 0.11449617213358688 0.13637960048357403 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716167,0.1748147870989082) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10576219374113578 0.10693598032467116 C 0.10569006048888163 0.1067354596134326 0.10508475647850853 0.10530722296085923 0.10532939422761084 0.10573285605723978 C 0.10508475647850853 0.10530722296085923 0.10432429839549553 0.10395027777940483 0.10429436724652187 0.10438218174638789 C 0.10432429839549553 0.10395027777940483 0.10578164288676842 0.10265061280334381 0.10550898112145278 0.10314143225534145 C 0.10578164288676842 0.10265061280334381 0.10593033783841574 0.10143726503440209 0.10593033783841574 0.10143726503440209 C 0.10593033783841574 0.10143726503440209 0.10523631935613714 0.10363225170733908 0.10550898112145278 0.10314143225534145 C 0.10523631935613714 0.10363225170733908 0.10388191923360102 0.10431835134730005 0.10429436724652187 0.10438218174638789 C 0.10388191923360102 0.10431835134730005 0.10277747316521403 0.10226681746565086 0.10303429304392768 0.10275844986081444 C 0.10277747316521403 0.10226681746565086 0.1027066404626254 0.10121137696117183 0.10275344797424 0.10143238737540648" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.35337633189716167,0.1775665566384263) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939819676391232 0.11460177227368223 C 0.1394789675243568 0.11469681239976805 0.14048660100557503 0.1159486365021759 0.14036744588924588 0.11574225378671205 C 0.14048660100557503 0.1159486365021759 0.1408664425157468 0.1171897074486265 0.1408280581598621 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1408280581598621 0.11707836485924847 C 0.1407815225723313 0.11719296794128496 0.14013856048153053 0.1186599845591502 0.1402696311094926 0.11845360184368633 C 0.14013856048153053 0.1186599845591502 0.13917067558388607 0.11964673707824212 0.13925521062431734 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13925521062431734 0.11955495744481476 C 0.13924084324157984 0.11960857724716287 0.13902918222911925 0.12029126729495083 0.13908280203146736 0.1201983950729921 C 0.13902918222911925 0.12029126729495083 0.13851890077418125 0.12072304391066765 0.13861177299613997 0.12066942410831955 C 0.13851890077418125 0.12072304391066765 0.13786109576326644 0.12084183270116945 0.13796833536796266 0.12084183270116945 C 0.13786109576326644 0.12084183270116945 0.13723202551782657 0.12061580430597144 0.1373248977397853 0.12066942410831955 C 0.13723202551782657 0.12061580430597144 0.13680024890210976 0.12010552285103336 0.13685386870445787 0.1201983950729921 C 0.13680024890210976 0.12010552285103336 0.13666709272887048 0.11950133764246665 0.13668146011160798 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13668146011160798 0.11955495744481476 C 0.1365969250711767 0.11946317781138739 0.13553596899847073 0.11824721912822247 0.13566703962643278 0.11845360184368633 C 0.13553596899847073 0.11824721912822247 0.1350620769885325 0.11696376177721197 0.1351086125760633 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1351086125760633 0.11707836485924847 C 0.13514699693194798 0.11696702226987044 0.1356883799630085 0.11553587107124821 0.13556922484667935 0.11574225378671207 C 0.1356883799630085 0.11553587107124821 0.13661924473245743 0.11450673214759641 0.13653847397201296 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971616,0.18004314922399253) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10561969970458775 0.10666112232338579 C 0.105554779777559 0.10648065368327109 0.10501000616822322 0.10519524069595508 0.1052301801424153 0.10557831048269757 C 0.10501000616822322 0.10519524069595508 0.10432559389351158 0.1039739900326461 0.10429865585943528 0.10436270360293086 C 0.10432559389351158 0.1039739900326461 0.10563720393565718 0.10280429155419113 0.1053918083468731 0.10324602906098901 C 0.10563720393565718 0.10280429155419113 0.10577102939213974 0.10171227856214361 0.10577102939213974 0.10171227856214361 C 0.10577102939213974 0.10171227856214361 0.10514641275808903 0.10368776656778689 0.1053918083468731 0.10324602906098901 C 0.10514641275808903 0.10368776656778689 0.1039274526478065 0.10430525624375181 0.10429865585943528 0.10436270360293086 C 0.1039274526478065 0.10430525624375181 0.10293345118625818 0.1024588757502675 0.10316458907710047 0.10290134490591472 C 0.10293345118625818 0.1024588757502675 0.10286970175392844 0.10150897929623634 0.10291182851438159 0.10170788866904754" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.3533763318971616,0.18251974180955882) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13925521062431734 0.11460177227368223 C 0.13932790430871736 0.11468730838715947 0.14023477444181376 0.11581395007932656 0.1401275348371175 0.11562820563540908 C 0.14023477444181376 0.11581395007932656 0.14057663180096838 0.11693091393113209 0.14054208588067216 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14054208588067216 0.11683070560069185 C 0.14050020385189443 0.11693384837452468 0.13992153797017373 0.11825416333060337 0.1400395015353396 0.1180684188866859 C 0.13992153797017373 0.11825416333060337 0.13905044156229374 0.11914224059778608 0.13912652309868187 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13912652309868187 0.11905963892770145 C 0.13911359245421814 0.11910789674981476 0.13892309754300375 0.119722317792824 0.13897135536511704 0.11963873279306113 C 0.13892309754300375 0.119722317792824 0.13846384423355948 0.12011091674696914 0.13854742923332233 0.12006265892485583 C 0.13846384423355948 0.12011091674696914 0.13787181972373605 0.12021782665842078 0.13796833536796266 0.12021782665842078 C 0.13787181972373605 0.12021782665842078 0.13730565650284018 0.12001440110274253 0.13738924150260304 0.12006265892485583 C 0.13730565650284018 0.12001440110274253 0.136917057548695 0.11955514779329826 0.1369653153708083 0.11963873279306113 C 0.136917057548695 0.11955514779329826 0.13679721699277964 0.11901138110558815 0.1368101476372434 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1368101476372434 0.11905963892770145 C 0.13673406610085526 0.11897703725761682 0.13577920563541995 0.11788267444276843 0.1358971692005858 0.1180684188866859 C 0.13577920563541995 0.11788267444276843 0.1353527028264755 0.11672756282685902 0.1353945848552532 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1353945848552532 0.11683070560069185 C 0.1354291307755494 0.11673049727025162 0.13591637550350397 0.11544246119149161 0.13580913589880775 0.11562820563540908 C 0.13591637550350397 0.11544246119149161 0.136754153796008 0.114516236160205 0.13668146011160798 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18474867513656845) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10549145507169455 0.10641375012222896 C 0.10543302713736868 0.10625132834612573 0.1049427308889665 0.10509445665754133 0.10514088746573937 0.10543921946560958 C 0.1049427308889665 0.10509445665754133 0.104326759841726 0.10399533106056319 0.10430251561105733 0.10434517327381948 C 0.104326759841726 0.10399533106056319 0.10550720887965703 0.10294260242995376 0.10528635284975137 0.10334016618607185 C 0.10550720887965703 0.10294260242995376 0.10562765179049131 0.10195979073711098 0.10562765179049131 0.10195979073711098 C 0.10562765179049131 0.10195979073711098 0.1050654968198457 0.10373772994218994 0.10528635284975137 0.10334016618607185 C 0.1050654968198457 0.10373772994218994 0.10396843272059143 0.10429347065055833 0.10430251561105733 0.10434517327381948 C 0.10396843272059143 0.10429347065055833 0.10307383140519792 0.10263172820642248 0.10328185550695598 0.10302995044650498 C 0.10307383140519792 0.10263172820642248 0.10301645691610115 0.10177682139779444 0.10305437100050897 0.10195583983332451" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.02169221731726521 0.01969476171262892 C 0.021769863246687338 0.019933731311340065 0.020913083753298624 0.021614749058287253 0.021116363435613822 0.021467057724005843 C 0.020913083753298624 0.021614749058287253 0.01904958144716762 0.021319366389724433 0.01925286112948282 0.021467057724005843 C 0.01904958144716762 0.021319366389724433 0.018754653177253548 0.019455792113917774 0.018677007247831424 0.01969476171262892 C 0.018754653177253548 0.019455792113917774 0.020435879788334464 0.018599422539472096 0.020184612282548316 0.018599422539472096 C 0.020435879788334464 0.018599422539472096 0.021769863246687338 0.019933731311340065 0.02169221731726521 0.01969476171262892 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.027419487806183127 0.02605937823328933 C 0.027472358554177796 0.02622209766399067 0.026888959359666405 0.02736673803773433 0.027027376774927083 0.02726617189893087 C 0.026888959359666405 0.02736673803773433 0.025620061407794315 0.027165605760127408 0.025758478823054994 0.02726617189893087 C 0.025620061407794315 0.027165605760127408 0.025419238539793613 0.02589665880258799 0.025366367791798943 0.02605937823328933 C 0.025419238539793613 0.02589665880258799 0.026564021133523043 0.02531353873051479 0.02639292779899103 0.02531353873051479 C 0.026564021133523043 0.02531353873051479 0.027472358554177796 0.02622209766399067 0.027419487806183127 0.02605937823328933 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35421086185638995,0.18718935489443786) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17448298672553025 0.18635855301437484 C 0.17456741760675326 0.18683732567887423 0.17563613973149714 0.19322156697579493 0.17549615730020643 0.19210382498836745 C 0.17563613973149714 0.19322156697579493 0.1762183274510863 0.2004104261864326 0.17616277590101861 0.1997714568635045" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17616277590101861 0.1997714568635045 C 0.17609059139682343 0.19976762233168668 0.17511476509302587 0.1997039568890396 0.17529656185067624 0.19972544248169077 C 0.17511476509302587 0.1997039568890396 0.173871602555759 0.19949597869085703 0.1739812148092142 0.1995136297516904" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1739812148092142 0.1995136297516904 C 0.17390822781094942 0.19879487656579026 0.17299581527367194 0.1896187525805863 0.1731053708300369 0.1908885915208885 C 0.17299581527367194 0.1896187525805863 0.17262997957473444 0.18372447671366215 0.17266654813283464 0.18427556246806417" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17266654813283464 0.18427556246806417 C 0.17273145446020993 0.18432133300438955 0.17359679394406272 0.1849983914494946 0.1734454240613381 0.1848248089039687 C 0.17359679394406272 0.1849983914494946 0.1745694502808796 0.18648636502357535 0.17448298672553025 0.18635855301437484" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35254180193793316,0.18718935489443786) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17155196200708636 0.18634281830520028 C 0.1716384255624357 0.1862162717614374 0.17274089455400302 0.18465239587358437 0.1725895246712784 0.18482425978004566 C 0.17274089455400302 0.18465239587358437 0.17343330692715733 0.18423513406496647 0.17336840059978204 0.18428045142766486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17336840059978204 0.18428045142766486 C 0.1733744375428157 0.184786683260177 0.1733224122137516 0.19162389947175285 0.17344084391618614 0.19035523341781044 C 0.1733224122137516 0.19162389947175285 0.1718227515250994 0.20026687829640386 0.17194722017056763 0.19950444407497359" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17194722017056763 0.19950444407497359 C 0.17183464920175595 0.199512800551696 0.17041161307182048 0.1996168748385215 0.17059636854482738 0.19960472179564281 C 0.17041161307182048 0.1996168748385215 0.16965796999028987 0.199654077155674 0.16973015449448506 0.19965028058951775" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16973015449448506 0.19965028058951775 C 0.16979754506626601 0.19898883389734773 0.1706906586485733 0.19060396509311778 0.17053884135585654 0.19171292028347756 C 0.1706906586485733 0.19060396509311778 0.17163638872802217 0.1858953098070105 0.17155196200708636 0.18634281830520028" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19675003899012447 0.17274541588188216 C 0.19664693795554683 0.17274313592659907 0.19531845936746342 0.17271577646320188 0.19551282657519264 0.17271805641848498 C 0.19531845936746342 0.17271577646320188 0.19432636632422218 0.17271805641848498 0.19441763249737376 0.17271805641848498" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19441763249737376 0.17271805641848498 C 0.19440386326767461 0.17202444417291812 0.19428241158261836 0.16309364095882015 0.194252401740984 0.16439470947168275 C 0.19428241158261836 0.16309364095882015 0.19482152966831975 0.15649777799683792 0.19477775059698624 0.15710523426413367" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19477775059698624 0.15710523426413367 C 0.19483900692850345 0.15707790128640195 0.19563855443068692 0.1567784738382627 0.19551282657519264 0.1567772385313529 C 0.19563855443068692 0.1567784738382627 0.19635095638689465 0.15714862623169293 0.19628648486291758 0.1571200579470514" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19628648486291758 0.1571200579470514 C 0.19632766768394583 0.15771656562792188 0.19681930822585708 0.1655802632787332 0.1967806787152565 0.1642781501174973 C 0.19681930822585708 0.1655802632787332 0.1967474856796968 0.17345102136224758 0.19675003899012447 0.17274541588188216" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 70 KiB

View File

@@ -0,0 +1,171 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.245122456365314 0.235580768030074 0.2389452910220962 0.2582449981683262 0.23984746965066872 0.25531608152015056 C 0.2389452910220962 0.2582449981683262 0.2329450519520436 0.2696271114436592 0.23477585706922943 0.26893364839999273 C 0.2329450519520436 0.2696271114436592 0.2150614667736401 0.2636376380441483 0.2178778082444386 0.2636376380441483 C 0.2150614667736401 0.2636376380441483 0.19914895430246188 0.2682401853563264 0.20097975941964774 0.26893364839999284 C 0.19914895430246188 0.2682401853563264 0.19500596820963584 0.252387164871975 0.1959081468382084 0.2553160815201506 C 0.19500596820963584 0.252387164871975 0.18967407162999128 0.23199252921369645 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ左">
<g id="編節1">
<g transform="translate(0.3213105737601799,0.13389549078914734) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14065887184510625 0.11460177227368223 C 0.1408108562807152 0.11478060703819197 0.14270689644550907 0.11713613493763485 0.14248268507241377 0.116747789447799 C 0.14270689644550907 0.11713613493763485 0.1434216352597362 0.1194714288770386 0.14334940832224985 0.11926191815171247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14334940832224985 0.11926191815171247 C 0.14326184340435533 0.11947756406920186 0.1420519967971106 0.12223801465142105 0.14229862930751544 0.12184966916158521 C 0.1420519967971106 0.12223801465142105 0.14023075060488152 0.12409476360208903 0.14038981819739182 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14038981819739182 0.12392206402974258 C 0.14036278343203218 0.12402295914763548 0.1399645058951833 0.12530756091488346 0.14006540101307619 0.12513280544445732 C 0.1399645058951833 0.12530756091488346 0.13900432131225107 0.12612002479274906 0.1391790767826772 0.12601912967485618 C 0.13900432131225107 0.12612002479274906 0.13776654513217684 0.12634354685917182 0.1379683353679626 0.12634354685917182 C 0.13776654513217684 0.12634354685917182 0.1365828384828218 0.1259182345569633 0.13675759395324794 0.12601912967485618 C 0.1365828384828218 0.1259182345569633 0.13577037460495617 0.12495804997403119 0.13587126972284905 0.12513280544445732 C 0.13577037460495617 0.12495804997403119 0.13551981777317365 0.12382116891184969 0.1355468525385333 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1355468525385333 0.12392206402974258 C 0.135387784946023 0.12374936445739614 0.13339140891800488 0.12146132367174936 0.1336380414284097 0.12184966916158521 C 0.13339140891800488 0.12146132367174936 0.13249969749578078 0.11904627223422304 0.1325872624136753 0.11926191815171244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1325872624136753 0.11926191815171244 C 0.13265948935116165 0.11905240742638633 0.13367819703660672 0.11635944395796315 0.1334539856635114 0.116747789447799 C 0.13367819703660672 0.11635944395796315 0.1354297833264279 0.1144229375091725 0.13527779889081895 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017985,0.13855563666717757) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10701944173009977 0.0995217617126694 C 0.10694017279817102 0.09989604478983355 0.1061089014188307 0.10260004395381073 0.1065438281385273 0.10176746017565433 C 0.1061089014188307 0.10260004395381073 0.10371139708039742 0.1046253617229477 0.10440988141192016 0.10451726438160774 C 0.10371139708039742 0.1046253617229477 0.10189116705562863 0.10158483717192755 0.10235292214939083 0.1024160442236941 C 0.10189116705562863 0.10158483717192755 0.10163935084934693 0.09953002207100842 0.10163935084934693 0.09953002207100842 C 0.10163935084934693 0.09953002207100842 0.10281467724315303 0.10324725127546065 0.10235292214939083 0.1024160442236941 C 0.10281467724315303 0.10324725127546065 0.10446057007552778 0.1052486975421745 0.10440988141192016 0.10451726438160774 C 0.10446057007552778 0.1052486975421745 0.10224275795480607 0.10752545657323248 0.10265705413103651 0.10680464318709461 C 0.10224275795480607 0.10752545657323248 0.10180194605845436 0.10918172828365838 0.10192410435453753 0.10884214469843498" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.32131057376017985,0.14321578254520767) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14038981819739182 0.11460177227368223 C 0.1405266041894399 0.114762723561741 0.1422330403377545 0.11688269867123963 0.1420312501019687 0.11653318773038736 C 0.1422330403377545 0.11688269867123963 0.14287630527055883 0.11898446321670295 0.14281130102682113 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14281130102682113 0.11879590356390944 C 0.14273249260071605 0.1189899848896499 0.1416436306541958 0.1214743904136472 0.14186559991356015 0.12112487947279495 C 0.1416436306541958 0.1214743904136472 0.14000450908118964 0.12314546446924837 0.1401476699144489 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1401476699144489 0.12299003485413657 C 0.14012333862562523 0.12308084046024016 0.13976488884246124 0.12423698205076321 0.13985569444856483 0.12407970212737969 C 0.13976488884246124 0.12423698205076321 0.13890072271782228 0.12496819954084241 0.1390580026412058 0.1248773939347388 C 0.13890072271782228 0.12496819954084241 0.1377867241557554 0.12516936940062295 0.1379683353679626 0.12516936940062295 C 0.1377867241557554 0.12516936940062295 0.1367213881713359 0.12478658832863519 0.1368786680947194 0.1248773939347388 C 0.1367213881713359 0.12478658832863519 0.1359901706812567 0.12392242220399617 0.13608097628736032 0.12407970212737969 C 0.1359901706812567 0.12392242220399617 0.13576466953265254 0.12289922924803297 0.1357890008214762 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1357890008214762 0.12299003485413657 C 0.13564583998821694 0.12283460523902476 0.13384910156300078 0.12077536853194269 0.1340710708223651 0.12112487947279495 C 0.13384910156300078 0.12077536853194269 0.13304656128299908 0.11860182223816898 0.13312536970910416 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13312536970910416 0.11879590356390944 C 0.13319037395284186 0.11860734391111594 0.13410721086974223 0.11618367678953505 0.13390542063395647 0.11653318773038732 C 0.13410721086974223 0.11618367678953505 0.13568363853058135 0.11444082098562347 0.1355468525385333 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601798,0.1474099138354349) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10675122289465533 0.09998832557258422 C 0.10667988085591945 0.10032518034203194 0.10593173661451313 0.10275877958961131 0.10632317066224006 0.10200945418927057 C 0.10593173661451313 0.10275877958961131 0.10377398270992325 0.10458156558183468 0.10440261860829371 0.1044842779746287 C 0.10377398270992325 0.10458156558183468 0.10213577568763135 0.10184509348591653 0.10255135527201732 0.10259317983250642 C 0.10213577568763135 0.10184509348591653 0.1019091411019779 0.09999575989508931 0.1019091411019779 0.09999575989508931 C 0.1019091411019779 0.09999575989508931 0.10296693485640329 0.10334126617909631 0.10255135527201732 0.10259317983250642 C 0.10296693485640329 0.10334126617909631 0.10444823840554056 0.10514256781913878 0.10440261860829371 0.1044842779746287 C 0.10444823840554056 0.10514256781913878 0.10245220749689103 0.10719165094709095 0.10282507405549843 0.10654291889956687 C 0.10245220749689103 0.10719165094709095 0.10205547679017447 0.10868229548647426 0.10216541925664932 0.10837667025977321" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3213105737601798,0.151604045125662) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1401476699144489 0.11460177227368223 C 0.14027077730729218 0.11474662843293512 0.1418065698407752 0.11665460603148387 0.141624958628568 0.11634004618471683 C 0.1418065698407752 0.11665460603148387 0.14238550828029914 0.11854619412240089 0.1423270044609352 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1423270044609352 0.11837649043488672 C 0.14225607687744066 0.11855116362805314 0.14127610112557248 0.12078712859965067 0.1414758734590004 0.12047256875288363 C 0.14127610112557248 0.12078712859965067 0.139800891709867 0.12229109524969174 0.13992973645980034 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13992973645980034 0.12215120859609112 C 0.13990783829985903 0.12223293364158436 0.1395852334950113 0.12327346107305513 0.13966695854050457 0.12313190914200996 C 0.1395852334950113 0.12327346107305513 0.13880748398283627 0.12393155681412645 0.13894903591388144 0.1238498317686332 C 0.13880748398283627 0.12393155681412645 0.13780488527697612 0.12411260968792882 0.1379683353679626 0.12411260968792882 C 0.13780488527697612 0.12411260968792882 0.13684608289099856 0.12376810672313997 0.13698763482204374 0.1238498317686332 C 0.13684608289099856 0.12376810672313997 0.13618798714992733 0.12299035721096478 0.13626971219542056 0.12313190914200996 C 0.13618798714992733 0.12299035721096478 0.13598503611618362 0.12206948355059788 0.13600693427612492 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13600693427612492 0.12215120859609112 C 0.13587808952619157 0.1220113219424905 0.13426102494349687 0.1201580089061166 0.1344607972769248 0.12047256875288363 C 0.13426102494349687 0.1201580089061166 0.1335387386914952 0.11820181724172031 0.1336096662749898 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1336096662749898 0.11837649043488672 C 0.13366817009435375 0.11820678674737256 0.13449332331956432 0.11602548633794979 0.13431171210735712 0.11634004618471683 C 0.13449332331956432 0.11602548633794979 0.13591210821431948 0.11445691611442935 0.1357890008214762 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017974,0.1553787632868665) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10650982594275545 0.10040823304650746 C 0.10644561810789314 0.10071140233901044 0.1057722882906274 0.102901641661832 0.10612457893358165 0.10222724880152531 C 0.1057722882906274 0.102901641661832 0.1038303097764965 0.10454214905483297 0.10439608208502991 0.1044545902083476 C 0.1038303097764965 0.10454214905483297 0.10235592345643378 0.10207932416850657 0.10272994508238116 0.10275260188043749 C 0.10235592345643378 0.10207932416850657 0.10215195232934561 0.10041492393676214 0.10215195232934561 0.10041492393676214 C 0.10215195232934561 0.10041492393676214 0.10310396670832854 0.1034258795923684 0.10272994508238116 0.10275260188043749 C 0.10310396670832854 0.1034258795923684 0.10443713990255209 0.10504705106840669 0.10439608208502991 0.1044545902083476 C 0.10443713990255209 0.10504705106840669 0.10264071208476754 0.10689122588356362 0.10297629198751419 0.10630736704079195 C 0.10264071208476754 0.10689122588356362 0.1022836544487226 0.10823280596900858 0.10238260266854997 0.10795774326497763" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.32131057376017974,0.1591534814480709) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13992973645980034 0.11460177227368223 C 0.14004053311335926 0.11473214281700983 0.1414227463934939 0.11644932265570374 0.14125929630250741 0.1161662187936134 C 0.1414227463934939 0.11644932265570374 0.14194379098906557 0.11815175193752903 0.141891137551638 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.141891137551638 0.11799901861876629 C 0.14182730272649288 0.11815622449261605 0.14094532454981146 0.12016859296705384 0.14112511964989657 0.11988548910496352 C 0.14094532454981146 0.12016859296705384 0.1396176360756765 0.1215221629520908 0.13973359635061652 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13973359635061652 0.12139626496385024 C 0.13971388800666934 0.12146981750479416 0.13942354368230642 0.1224062921931179 0.13949709622325032 0.12227889545517724 C 0.13942354368230642 0.1224062921931179 0.138723569121349 0.12299857836008199 0.13885096585928966 0.12292502581913807 C 0.138723569121349 0.12299857836008199 0.13782123028607476 0.1231615259465042 0.1379683353679626 0.1231615259465042 C 0.13782123028607476 0.1231615259465042 0.136958308138695 0.12285147327819415 0.13708570487663566 0.12292502581913807 C 0.136958308138695 0.12285147327819415 0.1363660219717308 0.12215149871723659 0.13643957451267472 0.12227889545517724 C 0.1363660219717308 0.12215149871723659 0.13618336604136147 0.12132271242290632 0.13620307438530865 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13620307438530865 0.12139626496385024 C 0.13608711411036864 0.12127036697560968 0.1346317559859435 0.1196023852428732 0.13481155108602863 0.11988548910496352 C 0.1346317559859435 0.1196023852428732 0.13398169835914203 0.11784181274491652 0.13404553318428716 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13404553318428716 0.11799901861876629 C 0.13409818662171472 0.11784628530000354 0.13484082452440416 0.11588311493152306 0.13467737443341768 0.1161662187936134 C 0.13484082452440416 0.11588311493152306 0.13611773092968385 0.11447140173035464 0.13600693427612492 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601797,0.16255072779315494) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629256868604538 0.10078614977303844 C 0.10623478163466932 0.10105900213629111 0.10562878479913024 0.1030302175268305 0.10594584637778905 0.10242326395255448 C 0.10562878479913024 0.1030302175268305 0.10388100413641245 0.10450667418053142 0.10439019921409252 0.10442787121869458 C 0.10388100413641245 0.10450667418053142 0.10255405644835593 0.10229013178283765 0.10289067591170857 0.10289608172357546 C 0.10255405644835593 0.10229013178283765 0.10237048243397663 0.10079217157426766 0.10237048243397663 0.10079217157426766 C 0.10237048243397663 0.10079217157426766 0.10322729537506121 0.10350203166431328 0.10289067591170857 0.10289608172357546 C 0.10322729537506121 0.10350203166431328 0.10442715124986249 0.10496108599274775 0.10439019921409252 0.10442787121869458 C 0.10442715124986249 0.10496108599274775 0.10281036621385636 0.10662084332638898 0.10311238812632836 0.10609537036789447 C 0.10281036621385636 0.10662084332638898 0.10248901434141588 0.10782826540328949 0.10257806773926052 0.10758070896966163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3213105737601797,0.16594797413823892) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13973359635061652 0.11460177227368223 C 0.13983331333881957 0.11471910576267708 0.1410773052909409 0.11626456761750158 0.14093020020905306 0.11600977414162027 C 0.1410773052909409 0.11626456761750158 0.1415462454269553 0.11779675397114435 0.1414988573332705 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414988573332705 0.11765929398425788 C 0.1414414059906399 0.11780077927072267 0.1406476256316266 0.11961191089771672 0.14080944122170322 0.11935711742183543 C 0.1406476256316266 0.11961191089771672 0.13945270600490514 0.12083012388425 0.13955707025235115 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955707025235115 0.1207168156948335 C 0.13953933274279867 0.12078301298168302 0.13927802285087204 0.1216258402011743 0.13934422013772158 0.12151118313702772 C 0.13927802285087204 0.1216258402011743 0.13864804574601025 0.12215889775144197 0.13876270281015685 0.12209270046459245 C 0.13864804574601025 0.12215889775144197 0.13783594079426356 0.12230555057922199 0.1379683353679626 0.12230555057922199 C 0.13783594079426356 0.12230555057922199 0.1370593108616217 0.12202650317774293 0.13717396792576828 0.12209270046459245 C 0.1370593108616217 0.12202650317774293 0.1365262533113541 0.12139652607288114 0.13659245059820363 0.12151118313702772 C 0.1365262533113541 0.12139652607288114 0.1363618629740215 0.12065061840798398 0.13637960048357398 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13637960048357398 0.1207168156948335 C 0.13627523623612797 0.120603507505417 0.13496541392414543 0.11910232394595413 0.13512722951422204 0.11935711742183543 C 0.13496541392414543 0.11910232394595413 0.13438036206002418 0.11751780869779309 0.1344378134026548 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1344378134026548 0.11765929398425788 C 0.13448520149633958 0.11752183399737141 0.13515357560875996 0.11575498066573896 0.13500647052687215 0.11600977414162027 C 0.13515357560875996 0.11575498066573896 0.1363027913735117 0.11448443878468739 0.13620307438530865 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017963,0.16900549584881458) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10609703715500646 0.10112627482691638 C 0.106045028808768 0.10137184195384379 0.10549963165678276 0.10314593580532919 0.1057849870775757 0.10259967758848078 C 0.10549963165678276 0.10314593580532919 0.10392662906033673 0.10447474679365994 0.10438490463024878 0.10440382412800679 C 0.10392662906033673 0.10447474679365994 0.10273237614108599 0.10247985863573565 0.10303533365810337 0.10302521358239967 C 0.10273237614108599 0.10247985863573565 0.10256715952814453 0.10113169444802263 0.10256715952814453 0.10113169444802263 C 0.10256715952814453 0.10113169444802263 0.10333829117512075 0.1035705685290637 0.10303533365810337 0.10302521358239967 C 0.10333829117512075 0.1035705685290637 0.10441816146244173 0.10488371742465463 0.10438490463024878 0.10440382412800679 C 0.10441816146244173 0.10488371742465463 0.10296305493003625 0.10637749902493181 0.10323487465126104 0.10590457336228674 C 0.10296305493003625 0.10637749902493181 0.10267383824483994 0.10746417889414223 0.1027539863029001 0.10724137810387716" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.32131057376017963,0.17206301755939019) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13955707025235115 0.11460177227368223 C 0.1396468155417339 0.11470737241377758 0.14076640829864304 0.11609828808311966 0.140634013724944 0.11586897395482648 C 0.14076640829864304 0.11609828808311966 0.14118845442105593 0.11747725580139809 0.14114580513673963 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14114580513673963 0.11735354181320028 C 0.1410940989283721 0.11748087857101859 0.1403796966052602 0.11911089703531323 0.14052533063632916 0.11888158290702006 C 0.1403796966052602 0.11911089703531323 0.13930426894121084 0.12020728872319325 0.13939819676391224 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13939819676391224 0.12010531135271839 C 0.13938223300531502 0.12016488891088295 0.1391470541025811 0.12092343340842512 0.13920663166074568 0.12082024205069321 C 0.1391470541025811 0.12092343340842512 0.13858007470820544 0.12140318520366601 0.13868326606593737 0.12134360764550145 C 0.13858007470820544 0.12140318520366601 0.13784918025163345 0.12153517274866801 0.1379683353679626 0.12153517274866801 C 0.13784918025163345 0.12153517274866801 0.13715021331225577 0.12128403008733689 0.1372534046699877 0.12134360764550145 C 0.13715021331225577 0.12128403008733689 0.13667046151701484 0.12071705069296129 0.13673003907517942 0.12082024205069321 C 0.13667046151701484 0.12071705069296129 0.1365225102134157 0.12004573379455383 0.1365384739720129 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1365384739720129 0.12010531135271839 C 0.1364445461493115 0.12000333398224353 0.13526570606852703 0.11865226877872688 0.135411340099596 0.11888158290702006 C 0.13526570606852703 0.11865226877872688 0.134739159390818 0.11722620505538196 0.13479086559918552 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13479086559918552 0.11735354181320028 C 0.13483351488350181 0.11722982782500246 0.1354350515846803 0.1156396598265333 0.13530265701098126 0.11586897395482648 C 0.1354350515846803 0.1156396598265333 0.1364693457729567 0.11449617213358688 0.13637960048357398 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601796,0.17481478709890824) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10592105877707135 0.10143238737540648 C 0.10587425126545674 0.10165339778964114 0.10538339382867001 0.10325008225597801 0.10564021370738366 0.10275844986081444 C 0.10538339382867001 0.10325008225597801 0.1039676914918686 0.10444601214547572 0.10438013950478946 0.10438218174638789 C 0.1039676914918686 0.10444601214547572 0.10289286386454288 0.10265061280334381 0.10316552562985852 0.10314143225534145 C 0.10289286386454288 0.10265061280334381 0.10274416891289567 0.10143726503440209 0.10274416891289567 0.10143726503440209 C 0.10274416891289567 0.10143726503440209 0.10343818739517416 0.10363225170733908 0.10316552562985852 0.10314143225534145 C 0.10343818739517416 0.10363225170733908 0.10441007065376312 0.10481408571337095 0.10438013950478946 0.10438218174638789 C 0.10441007065376312 0.10481408571337095 0.10310047477459822 0.10615848915362033 0.10334511252370052 0.10573285605723978 C 0.10310047477459822 0.10615848915362033 0.1028401797579215 0.10713650103590973 0.10291231301017564 0.10693598032467116" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.3213105737601796,0.17756655663842635) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939819676391224 0.11460177227368223 C 0.1394789675243567 0.11469681239976806 0.14048660100557492 0.11594863650217593 0.14036744588924577 0.11574225378671207 C 0.14048660100557492 0.11594863650217593 0.14086644251574676 0.1171897074486265 0.14082805815986207 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14082805815986207 0.11707836485924847 C 0.14078152257233129 0.11719296794128496 0.14013856048153042 0.1186599845591502 0.1402696311094925 0.11845360184368633 C 0.14013856048153042 0.1186599845591502 0.13917067558388596 0.11964673707824212 0.13925521062431723 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13925521062431723 0.11955495744481476 C 0.13924084324157973 0.11960857724716287 0.13902918222911914 0.12029126729495083 0.13908280203146725 0.1201983950729921 C 0.13902918222911914 0.12029126729495083 0.13851890077418122 0.12072304391066765 0.13861177299613994 0.12066942410831955 C 0.13851890077418122 0.12072304391066765 0.13786109576326638 0.12084183270116945 0.1379683353679626 0.12084183270116945 C 0.13786109576326638 0.12084183270116945 0.1372320255178265 0.12061580430597144 0.13732489773978526 0.12066942410831955 C 0.1372320255178265 0.12061580430597144 0.13680024890210957 0.12010552285103336 0.13685386870445768 0.1201983950729921 C 0.13680024890210957 0.12010552285103336 0.13666709272887048 0.11950133764246665 0.13668146011160795 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13668146011160795 0.11955495744481476 C 0.13659692507117668 0.11946317781138739 0.13553596899847065 0.11824721912822247 0.1356670396264327 0.11845360184368633 C 0.13553596899847065 0.11824721912822247 0.13506207698853243 0.11696376177721197 0.13510861257606321 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13510861257606321 0.11707836485924847 C 0.1351469969319479 0.11696702226987044 0.13568837996300848 0.11553587107124819 0.13556922484667933 0.11574225378671205 C 0.13568837996300848 0.11553587107124819 0.13661924473245737 0.11450673214759642 0.1365384739720129 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601795,0.1800431492239926) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10576267823692977 0.10170788866904754 C 0.1057205514764766 0.10190679804185873 0.10527877978336853 0.10334381406156194 0.10550991767421082 0.10290134490591472 C 0.10527877978336853 0.10334381406156194 0.10400464768024728 0.10442015096210991 0.10437585089187604 0.10436270360293086 C 0.10400464768024728 0.10442015096210991 0.10303730281565425 0.10280429155419113 0.10328269840443832 0.10324602906098901 C 0.10303730281565425 0.10280429155419113 0.1029034773591716 0.10171227856214361 0.1029034773591716 0.10171227856214361 C 0.1029034773591716 0.10171227856214361 0.1035280939932224 0.10368776656778689 0.10328269840443832 0.10324602906098901 C 0.1035280939932224 0.10368776656778689 0.10440278892595231 0.10475141717321562 0.10437585089187604 0.10436270360293086 C 0.10440278892595231 0.10475141717321562 0.10322415263470393 0.10596138026944006 0.103444326608896 0.10557831048269757 C 0.10322415263470393 0.10596138026944006 0.10298988711969487 0.10684159096350049 0.1030548070467236 0.10666112232338579" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.3213105737601795,0.18251974180955888) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13925521062431723 0.11460177227368223 C 0.13932790430871725 0.11468730838715947 0.1402347744418137 0.11581395007932656 0.14012753483711746 0.11562820563540908 C 0.1402347744418137 0.11581395007932656 0.14057663180096833 0.11693091393113209 0.1405420858806721 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405420858806721 0.11683070560069185 C 0.14050020385189438 0.11693384837452468 0.13992153797017365 0.11825416333060337 0.1400395015353395 0.1180684188866859 C 0.13992153797017365 0.11825416333060337 0.13905044156229357 0.11914224059778608 0.13912652309868173 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13912652309868173 0.11905963892770145 C 0.139113592454218 0.11910789674981476 0.13892309754300355 0.119722317792824 0.13897135536511684 0.11963873279306113 C 0.13892309754300355 0.119722317792824 0.13846384423355937 0.12011091674696914 0.13854742923332222 0.12006265892485583 C 0.13846384423355937 0.12011091674696914 0.137871819723736 0.12021782665842078 0.1379683353679626 0.12021782665842078 C 0.137871819723736 0.12021782665842078 0.13730565650284013 0.12001440110274253 0.13738924150260298 0.12006265892485583 C 0.13730565650284013 0.12001440110274253 0.13691705754869496 0.11955514779329826 0.13696531537080828 0.11963873279306113 C 0.13691705754869496 0.11955514779329826 0.1367972169927795 0.11901138110558815 0.13681014763724325 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13681014763724325 0.11905963892770145 C 0.13673406610085512 0.11897703725761682 0.13577920563541984 0.11788267444276843 0.13589716920058567 0.1180684188866859 C 0.13577920563541984 0.11788267444276843 0.1353527028264754 0.11672756282685902 0.13539458485525313 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13539458485525313 0.11683070560069185 C 0.13542913077554933 0.11673049727025162 0.1359163755035038 0.11544246119149161 0.13580913589880755 0.11562820563540908 C 0.1359163755035038 0.11544246119149161 0.13675415379600797 0.114516236160205 0.13668146011160795 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.1847486751365685) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10562013575080237 0.10195583983332451 C 0.10558222166639453 0.10213485826885459 0.10518462714259726 0.10342817268658748 0.10539265124435532 0.10302995044650498 C 0.10518462714259726 0.10342817268658748 0.10403790824978813 0.10439687589708063 0.10437199114025403 0.10434517327381948 C 0.10403790824978813 0.10439687589708063 0.10316729787165431 0.10294260242995376 0.10338815390155998 0.10334016618607185 C 0.10316729787165431 0.10294260242995376 0.10304685496082001 0.10195979073711098 0.10304685496082001 0.10195979073711098 C 0.10304685496082001 0.10195979073711098 0.10360900993146564 0.10373772994218994 0.10338815390155998 0.10334016618607185 C 0.10360900993146564 0.10373772994218994 0.10439623537092269 0.10469501548707577 0.10437199114025403 0.10434517327381948 C 0.10439623537092269 0.10469501548707577 0.10333546270879906 0.10578398227367783 0.10353361928557193 0.10543921946560958 C 0.10333546270879906 0.10578398227367783 0.10312462374529098 0.1065761718983322 0.10318305167961683 0.10641375012222896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.02018461228254831 0.018599422539472096 C 0.020435879788334454 0.018599422539472096 0.021769863246687306 0.019933731311340065 0.02169221731726518 0.01969476171262892 C 0.021769863246687306 0.019933731311340065 0.02091308375329863 0.021614749058287253 0.02111636343561383 0.021467057724005843 C 0.02091308375329863 0.021614749058287253 0.0190495814471676 0.021319366389724433 0.0192528611294828 0.021467057724005843 C 0.0190495814471676 0.021319366389724433 0.018754653177253573 0.019455792113917774 0.018677007247831445 0.01969476171262892 C 0.018754653177253573 0.019455792113917774 0.020435879788334454 0.018599422539472096 0.02018461228254831 0.018599422539472096 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.026392927798991044 0.02531353873051479 C 0.02656402113352306 0.02531353873051479 0.02747235855417783 0.02622209766399067 0.027419487806183158 0.02605937823328933 C 0.02747235855417783 0.02622209766399067 0.026888959359666446 0.02736673803773433 0.027027376774927128 0.02726617189893087 C 0.026888959359666446 0.02736673803773433 0.02562006140779431 0.027165605760127408 0.02575847882305499 0.02726617189893087 C 0.02562006140779431 0.027165605760127408 0.025419238539793613 0.02589665880258799 0.025366367791798943 0.02605937823328933 C 0.025419238539793613 0.02589665880258799 0.02656402113352306 0.02531353873051479 0.026392927798991044 0.02531353873051479 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32034124676579434,0.1872136342801211) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17140929570826424 0.1874087424575616 C 0.1715028333377361 0.18719553075667622 0.17269560584478572 0.18458799436991413 0.17253174726192655 0.18485020204693703 C 0.17269560584478572 0.18458799436991413 0.17344591965596154 0.18421325435714944 0.17337559870257424 0.18426225033328694" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17337559870257424 0.18426225033328694 C 0.17343515726659886 0.18461358669207303 0.17414423295543427 0.1893045540186986 0.17409030147086968 0.18847828663872002 C 0.17414423295543427 0.1893045540186986 0.17401714943788937 0.19465238991422257 0.1740227765173494 0.19417745889303006" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1740227765173494 0.19417745889303006 C 0.17404562451459166 0.19436351509096433 0.17421007283395717 0.1971203454534341 0.1742969524842564 0.19641013326824147 C 0.17421007283395717 0.1971203454534341 0.17287049306621727 0.2032241611026001 0.17298022071375874 0.20270000511534175" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17298022071375874 0.20270000511534175 C 0.17297507235804835 0.20218419133686288 0.17283716805563365 0.19578022120307573 0.17291844044523405 0.19651023977359525 C 0.17283716805563365 0.19578022120307573 0.17192882800466391 0.193725577477067 0.17200495203855393 0.19393978226910763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17200495203855393 0.19393978226910763 C 0.1718832768062677 0.19361894816545303 0.1704952112235949 0.18954551970762368 0.17054484925111904 0.1900897730252525 C 0.1704952112235949 0.18954551970762368 0.17148133291302634 0.18718532324358733 0.17140929570826424 0.1874087424575616" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32227990075456453,0.1872136342801211) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.174808485083766 0.18784736712931807 C 0.1748888890711553 0.1880523716381623 0.1757777441231313 0.1908087457681499 0.1757733329324376 0.19030742123544872 C 0.1757777441231313 0.1908087457681499 0.17478542657539486 0.1941595815455892 0.17486141937209046 0.19386326152173225" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17486141937209046 0.19386326152173225 C 0.1748556687557673 0.1941234260303336 0.17463126345108596 0.1977314431768513 0.17479241197621243 0.19698523562494857 C 0.17463126345108596 0.1977314431768513 0.1727722391617694 0.2033037951878662 0.1729276370705727 0.20281775214456485" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1729276370705727 0.20281775214456485 C 0.17296768023170303 0.20232953445089533 0.1734033621403085 0.19624168854761131 0.17340815500413648 0.19695913982053043 C 0.1734033621403085 0.19624168854761131 0.17282528667967842 0.19397910329028603 0.17287012270463673 0.1942083368695356" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17287012270463673 0.1942083368695356 C 0.17290842046642052 0.19399069331239313 0.17330836152728563 0.19076947357156468 0.17332969584604227 0.19159661418382593 C 0.17330836152728563 0.19076947357156468 0.17255447879901653 0.18367315246728202 0.17261411087955697 0.18428264952240078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17261411087955697 0.18428264952240078 C 0.17268871585355156 0.18432776313652172 0.17369223508450948 0.18512107269242845 0.17350937056749208 0.184824012891852 C 0.17369223508450948 0.18512107269242845 0.17491674462678883 0.18809931331577356 0.174808485083766 0.18784736712931807" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19503351468743646 0.17794847475399714 C 0.1947946637963254 0.17726880381908208 0.19205618704455454 0.16864622559988468 0.1921673039941039 0.1697924235350164 C 0.19205618704455454 0.16864622559988468 0.19382784523440608 0.1637275725322 0.19370011129284437 0.16419409953241665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19370011129284437 0.16419409953241665 C 0.19378472245663375 0.1639722744286316 0.19480002926793366 0.1609354048928641 0.19471544525831702 0.161532198286996 C 0.19480002926793366 0.1609354048928641 0.19471509225407124 0.15665761051248694 0.194715119408244 0.1570325788028338" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.194715119408244 0.1570325788028338 C 0.1947815950054897 0.15701147957811568 0.19564135914420538 0.15677846259758604 0.19551282657519264 0.15677938810621642 C 0.19564135914420538 0.15677846259758604 0.19631956720816382 0.15704164641535698 0.19625751023639681 0.15702147269926925" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19625751023639681 0.15702147269926925 C 0.19636190628675312 0.1574246029524609 0.19754778382856442 0.162542549471107 0.1975102628406725 0.1618590357375692 C 0.19754778382856442 0.162542549471107 0.1966408870286353 0.16550402098206862 0.1967077620910997 0.1652236375017225" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1967077620910997 0.1652236375017225 C 0.19643429423031736 0.16560436967116365 0.19328662714473988 0.17085282663937262 0.1934261477617118 0.1697924235350164 C 0.19328662714473988 0.17085282663937262 0.19516746193124684 0.1786281456889122 0.19503351468743646 0.17794847475399714" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g id="編節1">
<g transform="translate(0.353376331897162,0.13389549078914728) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1406588718451063 0.11460177227368223 C 0.14081085628071527 0.11478060703819197 0.14270689644550916 0.11713613493763485 0.14248268507241385 0.116747789447799 C 0.14270689644550916 0.11713613493763485 0.1434216352597363 0.11947142887703856 0.14334940832224996 0.11926191815171244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14334940832224996 0.11926191815171244 C 0.1432618434043554 0.11947756406920185 0.14205199679711067 0.12223801465142106 0.1422986293075155 0.12184966916158521 C 0.14205199679711067 0.12223801465142106 0.14023075060488158 0.12409476360208903 0.14038981819739188 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14038981819739188 0.12392206402974258 C 0.14036278343203223 0.12402295914763548 0.13996450589518336 0.12530756091488346 0.14006540101307624 0.12513280544445732 C 0.13996450589518336 0.12530756091488346 0.13900432131225113 0.12612002479274906 0.13917907678267727 0.12601912967485618 C 0.13900432131225113 0.12612002479274906 0.1377665451321769 0.12634354685917182 0.13796833536796266 0.12634354685917182 C 0.1377665451321769 0.12634354685917182 0.13658283848282188 0.1259182345569633 0.13675759395324802 0.12601912967485618 C 0.13658283848282188 0.1259182345569633 0.13577037460495622 0.12495804997403119 0.1358712697228491 0.12513280544445732 C 0.13577037460495622 0.12495804997403119 0.1355198177731737 0.12382116891184969 0.13554685253853335 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13554685253853335 0.12392206402974258 C 0.13538778494602305 0.12374936445739614 0.13339140891800497 0.12146132367174937 0.1336380414284098 0.12184966916158521 C 0.13339140891800497 0.12146132367174937 0.1324996974957809 0.11904627223422308 0.1325872624136754 0.11926191815171247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1325872624136754 0.11926191815171247 C 0.13265948935116176 0.11905240742638634 0.1336781970366068 0.11635944395796315 0.1334539856635115 0.116747789447799 C 0.1336781970366068 0.11635944395796315 0.13542978332642802 0.1144229375091725 0.13527779889081906 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716194,0.13855563666717752) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10675040239677382 0.10884214469843498 C 0.10662824410069065 0.10850256111321158 0.10560315644404437 0.10608382980095674 0.1060174526202748 0.10680464318709461 C 0.10560315644404437 0.10608382980095674 0.10431531400299884 0.10378583122104099 0.10426462533939122 0.10451726438160774 C 0.10431531400299884 0.10378583122104099 0.10678333969568272 0.10158483717192755 0.10632158460192052 0.1024160442236941 C 0.10678333969568272 0.10158483717192755 0.10703515590196443 0.09953002207100842 0.10703515590196443 0.09953002207100842 C 0.10703515590196443 0.09953002207100842 0.10585982950815832 0.10324725127546065 0.10632158460192052 0.1024160442236941 C 0.10585982950815832 0.10324725127546065 0.10356614100786848 0.10440916704026779 0.10426462533939122 0.10451726438160774 C 0.10356614100786848 0.10440916704026779 0.1016957518930875 0.10093487639749793 0.10213067861278409 0.10176746017565433 C 0.1016957518930875 0.10093487639749793 0.10157579608928285 0.09914747863550524 0.1016550650212116 0.0995217617126694" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.35337633189716194,0.14321578254520761) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14038981819739188 0.11460177227368223 C 0.14052660418943996 0.114762723561741 0.14223304033775455 0.11688269867123958 0.14203125010196876 0.11653318773038732 C 0.14223304033775455 0.11688269867123958 0.14287630527055892 0.11898446321670295 0.1428113010268212 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1428113010268212 0.11879590356390944 C 0.14273249260071613 0.1189899848896499 0.14164363065419583 0.1214743904136472 0.14186559991356018 0.12112487947279495 C 0.14164363065419583 0.1214743904136472 0.14000450908118967 0.12314546446924837 0.14014766991444894 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14014766991444894 0.12299003485413657 C 0.14012333862562526 0.12308084046024016 0.13976488884246127 0.12423698205076321 0.13985569444856485 0.12407970212737969 C 0.13976488884246127 0.12423698205076321 0.13890072271782233 0.12496819954084241 0.13905800264120585 0.1248773939347388 C 0.13890072271782233 0.12496819954084241 0.13778672415575546 0.12516936940062295 0.13796833536796266 0.12516936940062295 C 0.13778672415575546 0.12516936940062295 0.13672138817133592 0.12478658832863519 0.13687866809471944 0.1248773939347388 C 0.13672138817133592 0.12478658832863519 0.13599017068125688 0.12392242220399617 0.13608097628736046 0.12407970212737969 C 0.13599017068125688 0.12392242220399617 0.13576466953265262 0.12289922924803297 0.1357890008214763 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1357890008214763 0.12299003485413657 C 0.13564583998821703 0.12283460523902476 0.1338491015630008 0.12077536853194269 0.13407107082236516 0.12112487947279495 C 0.1338491015630008 0.12077536853194269 0.1330465612829991 0.11860182223816898 0.13312536970910419 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13312536970910419 0.11879590356390944 C 0.1331903739528419 0.11860734391111594 0.13410721086974237 0.11618367678953509 0.1339054206339566 0.11653318773038736 C 0.13410721086974237 0.11618367678953509 0.1356836385305814 0.11444082098562347 0.13554685253853335 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971619,0.14740991383543484) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10650908749466204 0.10837667025977321 C 0.10639914502818718 0.10807104503307216 0.10547656613720548 0.10589418685204278 0.10584943269581287 0.10654291889956687 C 0.10547656613720548 0.10589418685204278 0.10431750794026452 0.10382598813011862 0.10427188814301767 0.1044842779746287 C 0.10431750794026452 0.10382598813011862 0.10653873106367996 0.10184509348591653 0.10612315147929399 0.10259317983250642 C 0.10653873106367996 0.10184509348591653 0.10676536564933349 0.09999575989508931 0.10676536564933349 0.09999575989508931 C 0.10676536564933349 0.09999575989508931 0.10570757189490802 0.10334126617909631 0.10612315147929399 0.10259317983250642 C 0.10570757189490802 0.10334126617909631 0.10364325224464722 0.10438699036742272 0.10427188814301767 0.1044842779746287 C 0.10364325224464722 0.10438699036742272 0.10195990204134435 0.10126012878892983 0.1023513360890713 0.10200945418927057 C 0.10195990204134435 0.10126012878892983 0.10185194181792016 0.0996514708031365 0.10192328385665604 0.09998832557258422" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3533763318971619,0.15160404512566195) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14014766991444894 0.11460177227368223 C 0.1402707773072922 0.11474662843293512 0.14180656984077528 0.11665460603148387 0.14162495862856808 0.11634004618471683 C 0.14180656984077528 0.11665460603148387 0.14238550828029928 0.11854619412240089 0.14232700446093535 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14232700446093535 0.11837649043488672 C 0.14225607687744077 0.11855116362805314 0.1412761011255725 0.12078712859965067 0.14147587345900042 0.12047256875288363 C 0.1412761011255725 0.12078712859965067 0.1398008917098671 0.12229109524969174 0.13992973645980042 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13992973645980042 0.12215120859609112 C 0.13990783829985912 0.12223293364158436 0.13958523349501142 0.12327346107305513 0.13966695854050468 0.12313190914200996 C 0.13958523349501142 0.12327346107305513 0.1388074839828363 0.12393155681412645 0.13894903591388147 0.1238498317686332 C 0.1388074839828363 0.12393155681412645 0.13780488527697618 0.12411260968792882 0.13796833536796266 0.12411260968792882 C 0.13780488527697618 0.12411260968792882 0.1368460828909986 0.12376810672313997 0.13698763482204376 0.1238498317686332 C 0.1368460828909986 0.12376810672313997 0.1361879871499274 0.12299035721096478 0.1362697121954206 0.12313190914200996 C 0.1361879871499274 0.12299035721096478 0.13598503611618368 0.12206948355059788 0.13600693427612498 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13600693427612498 0.12215120859609112 C 0.13587808952619165 0.1220113219424905 0.134261024943497 0.1201580089061166 0.13446079727692492 0.12047256875288363 C 0.134261024943497 0.1201580089061166 0.13353873869149535 0.11820181724172031 0.13360966627498994 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13360966627498994 0.11837649043488672 C 0.1336681700943539 0.11820678674737256 0.1344933233195644 0.11602548633794979 0.1343117121073572 0.11634004618471683 C 0.1344933233195644 0.11602548633794979 0.13591210821431957 0.11445691611442935 0.1357890008214763 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716183,0.15537876328686645) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629190408276137 0.10795774326497763 C 0.10619295586293401 0.10768268056094668 0.10536263486105055 0.10572350819802029 0.10569821476379719 0.10630736704079195 C 0.10536263486105055 0.10572350819802029 0.10431948248380365 0.10386212934828852 0.10427842466628148 0.1044545902083476 C 0.10431948248380365 0.10386212934828852 0.10631858329487756 0.10207932416850657 0.10594456166893018 0.10275260188043749 C 0.10631858329487756 0.10207932416850657 0.10652255442196577 0.10041492393676214 0.10652255442196577 0.10041492393676214 C 0.10652255442196577 0.10041492393676214 0.1055705400429828 0.1034258795923684 0.10594456166893018 0.10275260188043749 C 0.1055705400429828 0.1034258795923684 0.10371265235774807 0.10436703136186223 0.10427842466628148 0.1044545902083476 C 0.10371265235774807 0.10436703136186223 0.10219763717477544 0.10155285594121863 0.10254992781772969 0.10222724880152531 C 0.10219763717477544 0.10155285594121863 0.10210047297369368 0.10010506375400449 0.10216468080855597 0.10040823304650746" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.35337633189716183,0.15915348144807084) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13992973645980042 0.11460177227368223 C 0.14004053311335934 0.11473214281700983 0.14142274639349403 0.11644932265570374 0.14125929630250755 0.1161662187936134 C 0.14142274639349403 0.11644932265570374 0.1419437909890656 0.11815175193752903 0.14189113755163804 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14189113755163804 0.11799901861876629 C 0.14182730272649294 0.11815622449261605 0.14094532454981157 0.12016859296705384 0.14112511964989669 0.11988548910496352 C 0.14094532454981157 0.12016859296705384 0.13961763607567657 0.1215221629520908 0.13973359635061658 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13973359635061658 0.12139626496385024 C 0.1397138880066694 0.12146981750479416 0.13942354368230656 0.1224062921931179 0.13949709622325046 0.12227889545517724 C 0.13942354368230656 0.1224062921931179 0.13872356912134906 0.12299857836008199 0.13885096585928972 0.12292502581913807 C 0.13872356912134906 0.12299857836008199 0.13782123028607482 0.1231615259465042 0.13796833536796266 0.1231615259465042 C 0.13782123028607482 0.1231615259465042 0.13695830813869508 0.12285147327819415 0.1370857048766357 0.12292502581913807 C 0.13695830813869508 0.12285147327819415 0.13636602197173103 0.12215149871723659 0.13643957451267497 0.12227889545517724 C 0.13636602197173103 0.12215149871723659 0.1361833660413615 0.12132271242290632 0.13620307438530868 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13620307438530868 0.12139626496385024 C 0.1360871141103687 0.12127036697560968 0.1346317559859436 0.1196023852428732 0.1348115510860287 0.11988548910496352 C 0.1346317559859436 0.1196023852428732 0.1339816983591421 0.11784181274491652 0.13404553318428722 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13404553318428722 0.11799901861876629 C 0.13409818662171477 0.11784628530000354 0.13484082452440424 0.11588311493152306 0.13467737443341776 0.1161662187936134 C 0.13484082452440424 0.11588311493152306 0.1361177309296839 0.11447140173035464 0.13600693427612498 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971618,0.16255072779315488) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10609643901205082 0.10758070896966163 C 0.1060073856142062 0.10733315253603376 0.10526009671251108 0.10556989740939997 0.10556211862498305 0.10609537036789447 C 0.10526009671251108 0.10556989740939997 0.1043212595729889 0.10389465644464141 0.10428430753721894 0.10442787121869458 C 0.1043212595729889 0.10389465644464141 0.10612045030295542 0.10229013178283765 0.10578383083960279 0.10289608172357546 C 0.10612045030295542 0.10229013178283765 0.10630402431733471 0.10079217157426766 0.10630402431733471 0.10079217157426766 C 0.10630402431733471 0.10079217157426766 0.10544721137625016 0.10350203166431328 0.10578383083960279 0.10289608172357546 C 0.10544721137625016 0.10350203166431328 0.10377511245953887 0.10434906825685775 0.10428430753721894 0.10442787121869458 C 0.10377511245953887 0.10434906825685775 0.1024115987948635 0.10181631037827846 0.10272866037352234 0.10242326395255448 C 0.1024115987948635 0.10181631037827846 0.1023241510138899 0.10051329740978578 0.10238193806526596 0.10078614977303844" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3533763318971618,0.16594797413823886) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13973359635061658 0.11460177227368223 C 0.13983331333881963 0.11471910576267708 0.14107730529094095 0.11626456761750158 0.1409302002090531 0.11600977414162027 C 0.14107730529094095 0.11626456761750158 0.14154624542695537 0.11779675397114435 0.14149885733327058 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14149885733327058 0.11765929398425788 C 0.14144140599063998 0.11780077927072267 0.14064762563162672 0.11961191089771672 0.14080944122170333 0.11935711742183543 C 0.14064762563162672 0.11961191089771672 0.13945270600490517 0.12083012388425 0.13955707025235117 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955707025235117 0.1207168156948335 C 0.13953933274279873 0.12078301298168302 0.13927802285087212 0.1216258402011743 0.13934422013772166 0.12151118313702772 C 0.13927802285087212 0.1216258402011743 0.1386480457460103 0.12215889775144197 0.1387627028101569 0.12209270046459245 C 0.1386480457460103 0.12215889775144197 0.13783594079426362 0.12230555057922199 0.13796833536796266 0.12230555057922199 C 0.13783594079426362 0.12230555057922199 0.13705931086162176 0.12202650317774293 0.13717396792576836 0.12209270046459245 C 0.13705931086162176 0.12202650317774293 0.13652625331135412 0.12139652607288114 0.13659245059820366 0.12151118313702772 C 0.13652625331135412 0.12139652607288114 0.13636186297402156 0.12065061840798398 0.13637960048357403 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13637960048357403 0.1207168156948335 C 0.13627523623612803 0.120603507505417 0.13496541392414546 0.11910232394595413 0.13512722951422207 0.11935711742183543 C 0.13496541392414546 0.11910232394595413 0.1343803620600242 0.11751780869779309 0.13443781340265482 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13443781340265482 0.11765929398425788 C 0.1344852014963396 0.11752183399737141 0.13515357560876007 0.11575498066573896 0.13500647052687226 0.11600977414162027 C 0.13515357560876007 0.11575498066573896 0.13630279137351173 0.11448443878468739 0.13620307438530868 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971617,0.16900549584881452) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10592052044841131 0.10724137810387716 C 0.10584037239035114 0.10701857731361208 0.10516781237882551 0.10543164769964168 0.10543963210005029 0.10590457336228674 C 0.10516781237882551 0.10543164769964168 0.10432285895325556 0.10392393083135895 0.1042896021210626 0.10440382412800679 C 0.10432285895325556 0.10392393083135895 0.10594213061022542 0.10247985863573565 0.10563917309320804 0.10302521358239967 C 0.10594213061022542 0.10247985863573565 0.10610734722316686 0.10113169444802263 0.10610734722316686 0.10113169444802263 C 0.10610734722316686 0.10113169444802263 0.10533621557619066 0.1035705685290637 0.10563917309320804 0.10302521358239967 C 0.10533621557619066 0.1035705685290637 0.10383132655115054 0.10433290146235365 0.1042896021210626 0.10440382412800679 C 0.10383132655115054 0.10433290146235365 0.10260416425294272 0.10205341937163237 0.10288951967373566 0.10259967758848078 C 0.10260416425294272 0.10205341937163237 0.10252546125006651 0.10088070769998898 0.10257746959630495 0.10112627482691638" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.3533763318971617,0.17206301755939013) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13955707025235117 0.11460177227368223 C 0.13964681554173392 0.11470737241377758 0.14076640829864315 0.11609828808311966 0.1406340137249441 0.11586897395482648 C 0.14076640829864315 0.11609828808311966 0.1411884544210561 0.11747725580139809 0.1411458051367398 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1411458051367398 0.11735354181320028 C 0.14109409892837224 0.11748087857101859 0.14037969660526026 0.11911089703531323 0.14052533063632922 0.11888158290702006 C 0.14037969660526026 0.11911089703531323 0.13930426894121092 0.12020728872319325 0.13939819676391232 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13939819676391232 0.12010531135271839 C 0.1393822330053151 0.12016488891088295 0.13914705410258119 0.12092343340842512 0.13920663166074576 0.12082024205069321 C 0.13914705410258119 0.12092343340842512 0.13858007470820563 0.12140318520366601 0.13868326606593756 0.12134360764550145 C 0.13858007470820563 0.12140318520366601 0.1378491802516335 0.12153517274866801 0.13796833536796266 0.12153517274866801 C 0.1378491802516335 0.12153517274866801 0.1371502133122559 0.12128403008733689 0.13725340466998784 0.12134360764550145 C 0.1371502133122559 0.12128403008733689 0.13667046151701498 0.12071705069296129 0.13673003907517955 0.12082024205069321 C 0.13667046151701498 0.12071705069296129 0.13652251021341574 0.12004573379455383 0.13653847397201296 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13653847397201296 0.12010531135271839 C 0.13644454614931156 0.12000333398224353 0.13526570606852725 0.11865226877872688 0.1354113400995962 0.11888158290702006 C 0.13526570606852725 0.11865226877872688 0.13473915939081801 0.11722620505538196 0.13479086559918557 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13479086559918557 0.11735354181320028 C 0.1348335148835019 0.11722982782500246 0.1354350515846804 0.1156396598265333 0.13530265701098135 0.11586897395482648 C 0.1354350515846804 0.1156396598265333 0.13646934577295675 0.11449617213358688 0.13637960048357403 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716167,0.1748147870989082) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10576219374113578 0.10693598032467116 C 0.10569006048888163 0.1067354596134326 0.10508475647850853 0.10530722296085923 0.10532939422761084 0.10573285605723978 C 0.10508475647850853 0.10530722296085923 0.10432429839549553 0.10395027777940483 0.10429436724652187 0.10438218174638789 C 0.10432429839549553 0.10395027777940483 0.10578164288676842 0.10265061280334381 0.10550898112145278 0.10314143225534145 C 0.10578164288676842 0.10265061280334381 0.10593033783841574 0.10143726503440209 0.10593033783841574 0.10143726503440209 C 0.10593033783841574 0.10143726503440209 0.10523631935613714 0.10363225170733908 0.10550898112145278 0.10314143225534145 C 0.10523631935613714 0.10363225170733908 0.10388191923360102 0.10431835134730005 0.10429436724652187 0.10438218174638789 C 0.10388191923360102 0.10431835134730005 0.10277747316521403 0.10226681746565086 0.10303429304392768 0.10275844986081444 C 0.10277747316521403 0.10226681746565086 0.1027066404626254 0.10121137696117183 0.10275344797424 0.10143238737540648" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.35337633189716167,0.1775665566384263) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939819676391232 0.11460177227368223 C 0.1394789675243568 0.11469681239976805 0.14048660100557503 0.1159486365021759 0.14036744588924588 0.11574225378671205 C 0.14048660100557503 0.1159486365021759 0.1408664425157468 0.1171897074486265 0.1408280581598621 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1408280581598621 0.11707836485924847 C 0.1407815225723313 0.11719296794128496 0.14013856048153053 0.1186599845591502 0.1402696311094926 0.11845360184368633 C 0.14013856048153053 0.1186599845591502 0.13917067558388607 0.11964673707824212 0.13925521062431734 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13925521062431734 0.11955495744481476 C 0.13924084324157984 0.11960857724716287 0.13902918222911925 0.12029126729495083 0.13908280203146736 0.1201983950729921 C 0.13902918222911925 0.12029126729495083 0.13851890077418125 0.12072304391066765 0.13861177299613997 0.12066942410831955 C 0.13851890077418125 0.12072304391066765 0.13786109576326644 0.12084183270116945 0.13796833536796266 0.12084183270116945 C 0.13786109576326644 0.12084183270116945 0.13723202551782657 0.12061580430597144 0.1373248977397853 0.12066942410831955 C 0.13723202551782657 0.12061580430597144 0.13680024890210976 0.12010552285103336 0.13685386870445787 0.1201983950729921 C 0.13680024890210976 0.12010552285103336 0.13666709272887048 0.11950133764246665 0.13668146011160798 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13668146011160798 0.11955495744481476 C 0.1365969250711767 0.11946317781138739 0.13553596899847073 0.11824721912822247 0.13566703962643278 0.11845360184368633 C 0.13553596899847073 0.11824721912822247 0.1350620769885325 0.11696376177721197 0.1351086125760633 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1351086125760633 0.11707836485924847 C 0.13514699693194798 0.11696702226987044 0.1356883799630085 0.11553587107124821 0.13556922484667935 0.11574225378671207 C 0.1356883799630085 0.11553587107124821 0.13661924473245743 0.11450673214759641 0.13653847397201296 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971616,0.18004314922399253) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10561969970458775 0.10666112232338579 C 0.105554779777559 0.10648065368327109 0.10501000616822322 0.10519524069595508 0.1052301801424153 0.10557831048269757 C 0.10501000616822322 0.10519524069595508 0.10432559389351158 0.1039739900326461 0.10429865585943528 0.10436270360293086 C 0.10432559389351158 0.1039739900326461 0.10563720393565718 0.10280429155419113 0.1053918083468731 0.10324602906098901 C 0.10563720393565718 0.10280429155419113 0.10577102939213974 0.10171227856214361 0.10577102939213974 0.10171227856214361 C 0.10577102939213974 0.10171227856214361 0.10514641275808903 0.10368776656778689 0.1053918083468731 0.10324602906098901 C 0.10514641275808903 0.10368776656778689 0.1039274526478065 0.10430525624375181 0.10429865585943528 0.10436270360293086 C 0.1039274526478065 0.10430525624375181 0.10293345118625818 0.1024588757502675 0.10316458907710047 0.10290134490591472 C 0.10293345118625818 0.1024588757502675 0.10286970175392844 0.10150897929623634 0.10291182851438159 0.10170788866904754" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.3533763318971616,0.18251974180955882) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13925521062431734 0.11460177227368223 C 0.13932790430871736 0.11468730838715947 0.14023477444181376 0.11581395007932656 0.1401275348371175 0.11562820563540908 C 0.14023477444181376 0.11581395007932656 0.14057663180096838 0.11693091393113209 0.14054208588067216 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14054208588067216 0.11683070560069185 C 0.14050020385189443 0.11693384837452468 0.13992153797017373 0.11825416333060337 0.1400395015353396 0.1180684188866859 C 0.13992153797017373 0.11825416333060337 0.13905044156229374 0.11914224059778608 0.13912652309868187 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13912652309868187 0.11905963892770145 C 0.13911359245421814 0.11910789674981476 0.13892309754300375 0.119722317792824 0.13897135536511704 0.11963873279306113 C 0.13892309754300375 0.119722317792824 0.13846384423355948 0.12011091674696914 0.13854742923332233 0.12006265892485583 C 0.13846384423355948 0.12011091674696914 0.13787181972373605 0.12021782665842078 0.13796833536796266 0.12021782665842078 C 0.13787181972373605 0.12021782665842078 0.13730565650284018 0.12001440110274253 0.13738924150260304 0.12006265892485583 C 0.13730565650284018 0.12001440110274253 0.136917057548695 0.11955514779329826 0.1369653153708083 0.11963873279306113 C 0.136917057548695 0.11955514779329826 0.13679721699277964 0.11901138110558815 0.1368101476372434 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1368101476372434 0.11905963892770145 C 0.13673406610085526 0.11897703725761682 0.13577920563541995 0.11788267444276843 0.1358971692005858 0.1180684188866859 C 0.13577920563541995 0.11788267444276843 0.1353527028264755 0.11672756282685902 0.1353945848552532 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1353945848552532 0.11683070560069185 C 0.1354291307755494 0.11673049727025162 0.13591637550350397 0.11544246119149161 0.13580913589880775 0.11562820563540908 C 0.13591637550350397 0.11544246119149161 0.136754153796008 0.114516236160205 0.13668146011160798 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18474867513656845) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10549145507169455 0.10641375012222896 C 0.10543302713736868 0.10625132834612573 0.1049427308889665 0.10509445665754133 0.10514088746573937 0.10543921946560958 C 0.1049427308889665 0.10509445665754133 0.104326759841726 0.10399533106056319 0.10430251561105733 0.10434517327381948 C 0.104326759841726 0.10399533106056319 0.10550720887965703 0.10294260242995376 0.10528635284975137 0.10334016618607185 C 0.10550720887965703 0.10294260242995376 0.10562765179049131 0.10195979073711098 0.10562765179049131 0.10195979073711098 C 0.10562765179049131 0.10195979073711098 0.1050654968198457 0.10373772994218994 0.10528635284975137 0.10334016618607185 C 0.1050654968198457 0.10373772994218994 0.10396843272059143 0.10429347065055833 0.10430251561105733 0.10434517327381948 C 0.10396843272059143 0.10429347065055833 0.10307383140519792 0.10263172820642248 0.10328185550695598 0.10302995044650498 C 0.10307383140519792 0.10263172820642248 0.10301645691610115 0.10177682139779444 0.10305437100050897 0.10195583983332451" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.02169221731726521 0.01969476171262892 C 0.021769863246687338 0.019933731311340065 0.020913083753298624 0.021614749058287253 0.021116363435613822 0.021467057724005843 C 0.020913083753298624 0.021614749058287253 0.01904958144716762 0.021319366389724433 0.01925286112948282 0.021467057724005843 C 0.01904958144716762 0.021319366389724433 0.018754653177253548 0.019455792113917774 0.018677007247831424 0.01969476171262892 C 0.018754653177253548 0.019455792113917774 0.020435879788334464 0.018599422539472096 0.020184612282548316 0.018599422539472096 C 0.020435879788334464 0.018599422539472096 0.021769863246687338 0.019933731311340065 0.02169221731726521 0.01969476171262892 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.027419487806183127 0.02605937823328933 C 0.027472358554177796 0.02622209766399067 0.026888959359666405 0.02736673803773433 0.027027376774927083 0.02726617189893087 C 0.026888959359666405 0.02736673803773433 0.025620061407794315 0.027165605760127408 0.025758478823054994 0.02726617189893087 C 0.025620061407794315 0.027165605760127408 0.025419238539793613 0.02589665880258799 0.025366367791798943 0.02605937823328933 C 0.025419238539793613 0.02589665880258799 0.026564021133523043 0.02531353873051479 0.02639292779899103 0.02531353873051479 C 0.026564021133523043 0.02531353873051479 0.027472358554177796 0.02622209766399067 0.027419487806183127 0.02605937823328933 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35434565889154657,0.18721363428012106) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17462565302435235 0.1874087424575616 C 0.17469769022911447 0.18763216167153585 0.17544046145397352 0.19063402634288135 0.17549009948149766 0.1900897730252525 C 0.17544046145397352 0.19063402634288135 0.1739083214617764 0.19426061637276223 0.17402999669406266 0.19393978226910763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17402999669406266 0.19393978226910763 C 0.17395387266017265 0.19415398706114825 0.1730352358977822 0.19724025834411477 0.1731165082873826 0.19651023977359525 C 0.1730352358977822 0.19724025834411477 0.17304957966314755 0.20321581889382062 0.17305472801885793 0.20270000511534175" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17305472801885793 0.20270000511534175 C 0.17294500037131647 0.2021758491280834 0.17165111659806104 0.19569992108304884 0.17173799624836025 0.19641013326824147 C 0.17165111659806104 0.19569992108304884 0.1720350202125096 0.1939914026950958 0.17201217221526735 0.19417745889303006" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17201217221526735 0.19417745889303006 C 0.17200654513580732 0.19370252787183756 0.17199857874631153 0.18765201925874142 0.17194464726174694 0.18847828663872002 C 0.17199857874631153 0.18765201925874142 0.17271890859406702 0.18391091397450085 0.1726593500300424 0.18426225033328694" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1726593500300424 0.18426225033328694 C 0.1727296709834297 0.18431124630942444 0.17366706005354915 0.18511240972395993 0.17350320147068998 0.18485020204693703 C 0.17366706005354915 0.18511240972395993 0.1747191906538242 0.18762195415844696 0.17462565302435235 0.1874087424575616" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35240700490277654,0.18721363428012106) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17122646364885072 0.18784736712931807 C 0.17133472319187354 0.18759542094286258 0.17270844268214197 0.18452695309127554 0.17252557816512454 0.184824012891852 C 0.17270844268214197 0.18452695309127554 0.1734954428270544 0.18423753590827985 0.17342083785305978 0.18428264952240078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17342083785305978 0.18428264952240078 C 0.17336120577251934 0.18489214657751954 0.1726839185678177 0.19242375479608717 0.17270525288657437 0.19159661418382593 C 0.1726839185678177 0.19242375479608717 0.1732031237897636 0.19442598042667805 0.1731648260279798 0.1942083368695356" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1731648260279798 0.1942083368695356 C 0.1731199900030215 0.19443757044878515 0.17262200086465218 0.19767659109344954 0.17262679372848017 0.19695913982053043 C 0.17262200086465218 0.19767659109344954 0.17314735482317425 0.20330596983823437 0.17310731166204393 0.20281775214456485" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17310731166204393 0.20281775214456485 C 0.17295191375324062 0.2023317091012635 0.1710813882312776 0.19623902807304586 0.1712425367564041 0.19698523562494857 C 0.1710813882312776 0.19623902807304586 0.17116777874420294 0.1936030970131309 0.1711735293605261 0.19386326152173225" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1711735293605261 0.19386326152173225 C 0.1710975365638305 0.1935669414978753 0.17026602699087265 0.18980609670274753 0.17026161580017893 0.19030742123544872 C 0.17026602699087265 0.18980609670274753 0.17130686763624003 0.18764236262047385 0.17122646364885072 0.18784736712931807" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19599213846294875 0.17794847475399714 C 0.19612608570675913 0.17726880381908208 0.19745998477170154 0.16873202043066016 0.19759950538867346 0.1697924235350164 C 0.19745998477170154 0.16873202043066016 0.19404442319850326 0.16484290533228135 0.1943178910592856 0.1652236375017225" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1943178910592856 0.1652236375017225 C 0.1942510159968212 0.16494325402137638 0.1935529112976047 0.16117552200403143 0.1935153903097128 0.1618590357375692 C 0.1935529112976047 0.16117552200403143 0.19487253896434487 0.15661834244607759 0.19476814291398856 0.15702147269926925" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19476814291398856 0.15702147269926925 C 0.19483019988575556 0.15700129898318152 0.19564135914420536 0.1567803136148468 0.19551282657519264 0.15677938810621642 C 0.19564135914420536 0.1567803136148468 0.19637700933938695 0.15705367802755194 0.19631053374214125 0.1570325788028338" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19631053374214125 0.1570325788028338 C 0.19631050658796848 0.15740754709318067 0.19639479190168474 0.1621289916811279 0.1963102078920681 0.161532198286996 C 0.19639479190168474 0.1621289916811279 0.19741015302133033 0.1644159246362017 0.19732554185754092 0.16419409953241665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19732554185754092 0.16419409953241665 C 0.19745327579910263 0.1646606265326333 0.198747232206732 0.1709386214701481 0.19885834915628134 0.1697924235350164 C 0.198747232206732 0.1709386214701481 0.1957532875718377 0.1786281456889122 0.19599213846294875 0.17794847475399714" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 72 KiB

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24073248845225406 0.2494909368722861 0.24188766313423996 0.2475101238438775 C 0.24073248845225406 0.2494909368722861 0.2297390831874525 0.2587673083827231 0.23173990442826928 0.25755640496278853 C 0.2297390831874525 0.2587673083827231 0.2155674588804668 0.2620409648830925 0.2178778082444386 0.2620409648830925 C 0.2155674588804668 0.2620409648830925 0.2020148908197911 0.25634550154285407 0.2040157120606079 0.25755640496278864 C 0.2020148908197911 0.25634550154285407 0.19271277867265127 0.24552931081546894 0.19386795335463716 0.24751012384387755 C 0.19271277867265127 0.24552931081546894 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.12428215862934613) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19819225144331876 0.2310348219816778 C 0.19796896603764158 0.2310348219816778 0.1950662557638383 0.2310348219816778 0.19551282657519264 0.2310348219816778 C 0.1950662557638383 0.2310348219816778 0.19261011630138936 0.2310348219816778 0.19283340170706653 0.2310348219816778" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19283340170706653 0.2310348219816778 C 0.1927595919797526 0.2273539757739595 0.1919210889166349 0.1806270346506281 0.19194768497929923 0.1868646674890582 C 0.1919210889166349 0.1806270346506281 0.192561462619744 0.153626441289805 0.1925142489550944 0.15618322792051678" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19851140419529087 0.15618322792051678 C 0.19855861785994047 0.15874001455122858 0.19905137210842175 0.1931023003274883 0.19907796817108608 0.1868646674890582 C 0.19905137210842175 0.1931023003274883 0.19811844171600482 0.2347156681893961 0.19819225144331876 0.2310348219816778" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3315941297101035,0.12302840530544282) rotate(0) scale(1,1) translate(-0.17182654921449536,-0.1626271006073876)"><path d="M 0.1747139434286262 0.1626271006073876 C 0.17475250227575354 0.16705886641689588 0.17515576294029492 0.22206585571359197 0.1751766495941541 0.21580829032148688 C 0.17515576294029492 0.22206585571359197 0.17440385808132947 0.2395436848952454 0.174463303582316 0.2377178853126486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.174463303582316 0.2377178853126486 C 0.17424297622058305 0.2377178853126486 0.17137872051805492 0.2377178853126486 0.17181937524152077 0.2377178853126486 C 0.17137872051805492 0.2377178853126486 0.16895511953899267 0.2377178853126486 0.1691754469007256 0.2377178853126486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1691754469007256 0.2377178853126486 C 0.16903938478286767 0.23589208573005177 0.16752301049473356 0.2095507249293818 0.16754270148643033 0.21580829032148688 C 0.16752301049473356 0.2095507249293818 0.16905552612652566 0.15819533479787934 0.1689391550003645 0.1626271006073876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3279408233169804,0.1204963061541541) rotate(0) scale(1,1) translate(-0.17172616467872354,-0.16464542498289636)"><path d="M 0.1745117662633915 0.164791067082083 C 0.17453482795603673 0.1686085219200617 0.1746841284781732 0.21719548298229926 0.1747885065751343 0.21060052513782768 C 0.1746841284781732 0.21719548298229926 0.1731317893102518 0.2467080642222348 0.17325922909985816 0.24393056121574194" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17325922909985816 0.24393056121574194 C 0.17305052336293275 0.24383591004585287 0.17033734878290235 0.2426057385256824 0.17075476025675318 0.2427947471770732 C 0.17033734878290235 0.2426057385256824 0.16804158567672284 0.2415680999175506 0.16825029141364825 0.24166245739905234" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16825029141364825 0.24166245739905234 C 0.1681692286060051 0.2390412378187324 0.1673350603619646 0.2037775995589344 0.16727753772193066 0.21020782243521297 C 0.1673350603619646 0.2037775995589344 0.16907914854173264 0.160690779587751 0.16894056309405556 0.16449978288370962" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32219150019841303,0.11486552260992469) rotate(0) scale(1,1) translate(-0.17220112318371358,-0.1645055777824458)"><path d="M 0.17546626481932254 0.1643478140001234 C 0.17549439757268942 0.16786126884411492 0.17578194406586442 0.21370828805739733 0.17580385785972497 0.20650927212802161 C 0.17578194406586442 0.21370828805739733 0.1751532527457685 0.2544215662380161 0.17520329929299594 0.2507360051526319" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17520329929299594 0.2507360051526319 C 0.17493243339704886 0.2506010218588223 0.17141117674973694 0.24883256938880605 0.1719529085416311 0.2491162056269168 C 0.17141117674973694 0.24883256938880605 0.16843165189431916 0.2471837173510018 0.16870251779026624 0.24733237029530297" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16870251779026624 0.24733237029530297 C 0.16862777653587166 0.24396265007000312 0.16782507805068447 0.20000664186416026 0.16780562273753127 0.20689572759170483 C 0.16782507805068447 0.20000664186416026 0.16903017811565235 0.16114397606252331 0.16893598154810457 0.16466334156476806" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31644217707984557,0.10970774271469325) rotate(0) scale(1,1) translate(-0.17149933224096225,-0.16424072920864125)"><path d="M 0.17451441354652203 0.16424072920864125 C 0.1745901729649076 0.16765095667538008 0.175399228776772 0.21288727419619569 0.1754235265671486 0.20516345880950712 C 0.175399228776772 0.21288727419619569 0.17412278285324065 0.2612401017688538 0.1742228400620028 0.2569265138489041" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1742228400620028 0.2569265138489041 C 0.17399859150244168 0.25682352400997227 0.17108336022814713 0.25547828531173644 0.17153185734726936 0.2556906357817223 C 0.17108336022814713 0.25547828531173644 0.16861662607297476 0.2542689475780196 0.1688408746325359 0.25437830820907364" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1688408746325359 0.25437830820907364 C 0.16873296076422215 0.25027707075910977 0.16751618957134318 0.1976519938928044 0.16754590821277096 0.20516345880950712 C 0.16751618957134318 0.1976519938928044 0.16856244616228844 0.16083050174190242 0.16848425093540248 0.16424072920864125" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3130281152203159,0.10164269012927307) rotate(0) scale(1,1) translate(-0.17343256089445602,-0.16866918493841992)"><path d="M 0.1767588888908717 0.16866918493841992 C 0.17670925333262266 0.17112705498246805 0.17605648960601458 0.20659791430129926 0.17616326219188302 0.19816362546699756 C 0.17605648960601458 0.20659791430129926 0.17542048083283096 0.2758570697402938 0.17547761786045035 0.2698806509500402" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17547761786045035 0.2698806509500402 C 0.1752421572072315 0.26978012657970335 0.17218116871538616 0.2684791849004509 0.1726520900218239 0.2686743585059981 C 0.17218116871538616 0.2684791849004509 0.16959110152997864 0.26744391844826393 0.1698265621831975 0.2675385676834742" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1698265621831975 0.2675385676834742 C 0.169845962890366 0.2617573224987678 0.1700826765621229 0.18992451023824303 0.17005937066921933 0.19816362546699756 C 0.1700826765621229 0.18992451023824303 0.17011013808377545 0.1662113148943718 0.17010623289804036 0.16866918493841992" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3430927759472383,0.12302840530544282) rotate(0) scale(1,1) translate(-0.17182654921449536,-0.1626271006073876)"><path d="M 0.17471394342862617 0.1626271006073876 C 0.17483031455478737 0.16705886641689588 0.17609070595086368 0.22206585571359197 0.17611039694256042 0.21580829032148688 C 0.17609070595086368 0.22206585571359197 0.17434158941040717 0.23954368489524547 0.1744776515282651 0.23771788531264865" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1744776515282651 0.23771788531264865 C 0.17425732416653217 0.23771788531264865 0.1713930684640041 0.23771788531264865 0.17183372318746995 0.23771788531264865 C 0.1713930684640041 0.23771788531264865 0.16896946748494182 0.23771788531264865 0.16918979484667476 0.23771788531264865" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16918979484667476 0.23771788531264865 C 0.16913034934568824 0.23589208573005183 0.16845556218097743 0.2095507249293818 0.16847644883483662 0.21580829032148688 C 0.16845556218097743 0.2095507249293818 0.16897771384749188 0.15819533479787934 0.16893915500036455 0.1626271006073876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3467460823403615,0.1204963061541541) rotate(0) scale(1,1) translate(-0.17172616467872354,-0.16464542498289636)"><path d="M 0.1745117662633916 0.16449978288370962 C 0.17465035171106869 0.16830878617966824 0.17625403212047144 0.21663804531149153 0.1761747916355165 0.21020782243521297 C 0.17625403212047144 0.21663804531149153 0.17540330712012897 0.24428367697937228 0.17546265208285108 0.24166245739905234" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17546265208285108 0.24166245739905234 C 0.17525394634592567 0.2417568148805541 0.17254077176589525 0.242983755828464 0.17295818323974607 0.2427947471770732 C 0.17254077176589525 0.242983755828464 0.1702450086597157 0.24402521238563102 0.17045371439664112 0.24393056121574194" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17045371439664112 0.24393056121574194 C 0.17030455676211376 0.2411530582092491 0.1685377268404307 0.2040055672933561 0.16866382278231282 0.21060052513782768 C 0.1685377268404307 0.2040055672933561 0.16896362478670093 0.16097361224410428 0.1689405630940557 0.164791067082083" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3524954054589289,0.11486552260992469) rotate(0) scale(1,1) translate(-0.17220112318371358,-0.1645055777824458)"><path d="M 0.17546626481932254 0.16466334156476806 C 0.17556046138687031 0.1681827070670128 0.17661607894304912 0.2137848133192494 0.17659662362989592 0.20689572759170483 C 0.17661607894304912 0.2137848133192494 0.17562498732276632 0.2507020905206028 0.1756997285771609 0.24733237029530297" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1756997285771609 0.24733237029530297 C 0.17542886268121383 0.24748102323960414 0.1719076060339019 0.24939984186502756 0.17244933782579605 0.2491162056269168 C 0.1719076060339019 0.24939984186502756 0.16892808117848412 0.25087098844644146 0.1691989470744312 0.2507360051526319" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1691989470744312 0.2507360051526319 C 0.16914890052720377 0.2470504440672477 0.16857647471384168 0.1993102561986459 0.16859838850770223 0.20650927212802161 C 0.16857647471384168 0.1993102561986459 0.16896411430147149 0.1608343591561319 0.16893598154810463 0.1643478140001234" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3582447285774963,0.10970774271469325) rotate(0) scale(1,1) translate(-0.17149933224096225,-0.16424072920864125)"><path d="M 0.174514413546522 0.16424072920864125 C 0.17459260877340796 0.16765095667538008 0.1754230376277258 0.21267492372620983 0.17545275626915358 0.20516345880950712 C 0.1754230376277258 0.21267492372620983 0.1740498759810749 0.2584795456590375 0.17415778984938865 0.25437830820907364" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17415778984938865 0.25437830820907364 C 0.17393354128982752 0.2544876688401277 0.17101831001553297 0.25590298625170815 0.1714668071346552 0.2556906357817223 C 0.17101831001553297 0.25590298625170815 0.16855157586036063 0.2570295036878359 0.16877582441992175 0.2569265138489041" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16877582441992175 0.2569265138489041 C 0.1686757672111596 0.25261292592895435 0.16755084012439928 0.19743964342281856 0.16757513791477588 0.20516345880950712 C 0.16755084012439928 0.19743964342281856 0.16856001035378804 0.16083050174190242 0.16848425093540248 0.16424072920864125" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.361658790437026,0.10164269012927307) rotate(0) scale(1,1) translate(-0.17343256089445602,-0.16866918493841992)"><path d="M 0.17675888889087168 0.16866918493841992 C 0.17676279407660678 0.17112705498246805 0.17682905701259632 0.2064027406957521 0.17680575111969274 0.19816362546699756 C 0.17682905701259632 0.2064027406957521 0.17705796031288315 0.27331981286818074 0.17703855960571466 0.26753856768347434" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17703855960571466 0.26753856768347434 C 0.1768030989524958 0.26763321691868464 0.17374211046065044 0.26886953211154535 0.1742130317670882 0.2686743585059982 C 0.17374211046065044 0.26886953211154535 0.1711520432752429 0.269981175320377 0.17138750392846175 0.2698806509500402" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17138750392846175 0.2698806509500402 C 0.17133036690084236 0.26390423215978664 0.17059508701116058 0.18972933663269587 0.17070185959702902 0.19816362546699756 C 0.17059508701116058 0.18972933663269587 0.17005659733979134 0.1662113148943718 0.1701062328980404 0.16866918493841992" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252104)"><path d="M 0.027518731894252094 0.03351898730977576 C 0.026652669624412335 0.03351898730977576 0.022755389410133435 0.02376857225954999 0.022322358275213554 0.024518604186490434 C 0.022755389410133435 0.02376857225954999 0.03314813664821053 0.025268636113430876 0.03271510551329065 0.024518604186490434 C 0.03314813664821053 0.025268636113430876 0.026652669624412335 0.03351898730977576 0.027518731894252094 0.03351898730977576 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g id="お下げ">
<g id="編節1">
<g transform="translate(0.3373434528286707,0.10096164316357523) rotate(0) scale(1,1) translate(-0.15631943324043046,-0.13009997050031358)"><path d="M 0.13532199395169361 0.11439556251780549 C 0.13522412123437366 0.11420642274743761 0.1340285549926485 0.1117367638720388 0.13414752134385405 0.11212588527339096 C 0.1340285549926485 0.1117367638720388 0.13387330410334153 0.10952612407059543 0.1338943977372271 0.1097261057015797" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1338943977372271 0.1097261057015797 C 0.13401583612142404 0.10955331663804257 0.13564898780043125 0.10735962499703548 0.13535165834759036 0.10765263693913427 C 0.13564898780043125 0.10735962499703548 0.13763824223996174 0.10608973951783258 0.13746235117131778 0.10620996239639426" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13746235117131778 0.10620996239639426 C 0.13750684879640923 0.10612627453523972 0.13812120030182104 0.10507179320018283 0.13799632267241507 0.10520570806253986 C 0.13812120030182104 0.10507179320018283 0.13913598735479796 0.10454944919006745 0.1389608827241895 0.10460298404810994 C 0.13913598735479796 0.10454944919006745 0.14027599072716515 0.10460447953428134 0.1400975782397167 0.10456328976602991 C 0.14027599072716515 0.10460447953428134 0.14123574743592815 0.10522213889653317 0.14110183257357112 0.10509726126712719 C 0.14123574743592815 0.10522213889653317 0.14175809144604348 0.10623692594951008 0.141704556588001 0.10606182131890161 C 0.14175809144604348 0.10623692594951008 0.141747558726921 0.10729324146072275 0.141744250870081 0.10719851683442881" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.141744250870081 0.10719851683442881 C 0.14184963847423002 0.10738367801138039 0.14314769208079128 0.10981414900011675 0.14300890211986925 0.10942045095784778 C 0.14314769208079128 0.10981414900011675 0.14344313275791845 0.11213143020697391 0.14340973040114544 0.11192289334165652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14340973040114544 0.11192289334165652 C 0.14330310539168295 0.112093388800478 0.14185272444447114 0.11426642743053002 0.14213023028759553 0.11396883884751441 C 0.14185272444447114 0.11426642743053002 0.13990877944999092 0.11562104946203797 0.14007966028365282 0.11549395633784384" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3196760836574265,0.08168617218487978) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10315380623829981 0.09957934001708402 C 0.10319249590164709 0.09990451741621097 0.10360510980309028 0.10225227716315188 0.1033859442183835 0.1015304044118457 C 0.10360510980309028 0.10225227716315188 0.10427468206397617 0.10454692523015957 0.10446879974654046 0.10391057652492112 C 0.10427468206397617 0.10454692523015957 0.1016433107508074 0.1059891526784209 0.10222123812299774 0.10534849664327638 C 0.1016433107508074 0.1059891526784209 0.1010012355133984 0.10775451273578829 0.1010012355133984 0.10775451273578829 C 0.1010012355133984 0.10775451273578829 0.10279916549518808 0.10470784060813185 0.10222123812299774 0.10534849664327638 C 0.10279916549518808 0.10470784060813185 0.10506429844410843 0.10414872641909503 0.10446879974654046 0.10391057652492112 C 0.10506429844410843 0.10414872641909503 0.10600882158869267 0.10760230149996866 0.10579423030840558 0.10677739600831987 C 0.10600882158869267 0.10760230149996866 0.1057500336149059 0.10920711171922956 0.105756347428263 0.10886000947481389" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3206273206089396,0.07756591227867318) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13607100636049935 0.11306534553772073 C 0.13606595236291663 0.11285244326286477 0.13607401173628414 0.11010862682481908 0.1360103583895067 0.11051051823944925 C 0.13607401173628414 0.11010862682481908 0.13690355386618874 0.10805365942238428 0.1368348465218286 0.10824264856215851" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1368348465218286 0.10824264856215851 C 0.13701974035847236 0.10814058186433036 0.13944925848463738 0.10688483145238381 0.13905357256155387 0.10701784818822073 C 0.13944925848463738 0.10688483145238381 0.14179386968527052 0.10661549769410675 0.1415830775988308 0.10664644773211551" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1415830775988308 0.10664644773211551 C 0.14165975814300408 0.10659073605570303 0.14267418781051971 0.10591228848377929 0.14250324412891013 0.10597790761516576 C 0.14267418781051971 0.10591228848377929 0.14381525291472952 0.10588766216152773 0.14363440177814593 0.10585901815547788 C 0.14381525291472952 0.10588766216152773 0.14481575744347291 0.10643686769296101 0.14467345776791316 0.1063216356877639 C 0.14481575744347291 0.10643686769296101 0.14540761701624944 0.10741274589945281 0.14534199788486296 0.10724180221784321 C 0.14540761701624944 0.10741274589945281 0.14543224333850094 0.10855381100366261 0.1454608873445508 0.10837295986707902 C 0.14543224333850094 0.10855381100366261 0.1449597183512409 0.1094986038559935 0.14499826981226474 0.10941201585684623" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14499826981226474 0.10941201585684623 C 0.14501182224594653 0.10962463650518423 0.14511305674473102 0.11237815860766527 0.14516089901644627 0.11196346363690207 C 0.14511305674473102 0.11237815860766527 0.1443627678462848 0.11459042982842982 0.14442416255168183 0.11438835550600461" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14442416255168183 0.11438835550600461 C 0.14425358833818444 0.11449485448163994 0.14199739714169182 0.11581216350559848 0.14237727198971314 0.11566634321362855 C 0.14199739714169182 0.11581216350559848 0.13965636374090204 0.11617752032597833 0.13986566437542597 0.11613819900964374" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32328848977773217,0.07427964203907253) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1052936188103659 0.09952691407515649 C 0.1051858444600706 0.09983614201757327 0.10452750924545626 0.10212717252942136 0.10464697270859401 0.10138228172965716 C 0.10452750924545626 0.10212717252942136 0.10412340930249607 0.10448310971026246 0.10457683803153937 0.10399625887374171 C 0.10412340930249607 0.10448310971026246 0.10112611753219256 0.10462585789398732 0.10192640033433421 0.10430338674878166 C 0.10112611753219256 0.10462585789398732 0.09977514121868945 0.10593108574497562 0.09977514121868945 0.10593108574497562 C 0.09977514121868945 0.10593108574497562 0.10272668313647587 0.103980915603576 0.10192640033433421 0.10430338674878166 C 0.10272668313647587 0.103980915603576 0.10500767067327565 0.10447135602771628 0.10457683803153937 0.10399625887374171 C 0.10500767067327565 0.10447135602771628 0.104342654783495 0.10798946044291288 0.10451139618475193 0.10715396967262907 C 0.104342654783495 0.10798946044291288 0.10340655519720539 0.10931840913258051 0.10356438962399775 0.10900920349544459" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3259496589465247,0.07099337179947181) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13693655250238476 0.11238910677798729 C 0.13702534021383 0.112195535954187 0.13823539388915446 0.10973294307227928 0.13800200503972776 0.11006625689238385 C 0.13823539388915446 0.10973294307227928 0.13988181983348655 0.10824959794042814 0.1397372186955051 0.10838934093673243" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1397372186955051 0.10838934093673243 C 0.13994814327045382 0.10837865611960283 0.14268226444579274 0.10831502577281937 0.14226831359488992 0.10826112313117733 C 0.14268226444579274 0.10831502577281937 0.1449076551822931 0.10910076009520862 0.144704628906339 0.10903617263643699" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.144704628906339 0.10903617263643699 C 0.1447979713143874 0.10901971385145376 0.14600714650008023 0.10885462590976829 0.14582473780291988 0.10883866721663822 C 0.14600714650008023 0.10885462590976829 0.14704352449131033 0.10933270193623977 0.1468935332722633 0.10922767695399777 C 0.14704352449131033 0.10933270193623977 0.14770201614640288 0.11026491691571946 0.14762463243148455 0.11009896700354234 C 0.14770201614640288 0.11026491691571946 0.14780617915815333 0.11140148459728356 0.1478221378512834 0.11121907590012321 C 0.14780617915815333 0.11140148459728356 0.1473281031316818 0.11243786258851364 0.1474331281139238 0.11228787136946658 C 0.1473281031316818 0.11243786258851364 0.14648923056025048 0.11307989545862299 0.1465618380643792 0.11301897052868788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1465618380643792 0.11301897052868788 C 0.14648081215364228 0.1132160136974292 0.14536473647665618 0.1157352412528191 0.14558952713553638 0.11538348855358374 C 0.14536473647665618 0.1157352412528191 0.1437205854096733 0.11739471245000628 0.14386435015781662 0.11724000291951224" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14386435015781662 0.11724000291951224 C 0.14366435299219188 0.11726094875116674 0.1410590315099634 0.11745588913685498 0.14146438417031976 0.11749135289936623 C 0.1410590315099634 0.11745588913685498 0.13879476273880895 0.11675802817521143 0.13900011823354055 0.11681443776937718" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3297821080052229,0.06920627145391195) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10723985163061928 0.10041782604181068 C 0.10700742807849362 0.10064851310987082 0.10541139863432156 0.1024190825308075 0.10584531031786532 0.1018019484501715 C 0.10541139863432156 0.1024190825308075 0.10401542112775077 0.10435943908698947 0.1046363815293567 0.10412063052562667 C 0.10401542112775077 0.10435943908698947 0.10125889644457897 0.10317381407403196 0.10211954790822969 0.10323479981834827 C 0.10125889644457897 0.10317381407403196 0.09947247274745238 0.10375471605972889 0.09947247274745238 0.10375471605972889 C 0.09947247274745238 0.10375471605972889 0.10298019937188041 0.10329578556266457 0.10211954790822969 0.10323479981834827 C 0.10298019937188041 0.10329578556266457 0.10481534245847655 0.1047365096182648 0.1046363815293567 0.10412063052562667 C 0.10481534245847655 0.1047365096182648 0.10267539466903391 0.10760703714266621 0.10319331348294883 0.10693007437417702 C 0.10267539466903391 0.10760703714266621 0.10125146117302027 0.10839112926362598 0.1015288686458672 0.10818240713656185" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.3336145570639212,0.06741917110835201) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13801094378211617 0.11216073786167931 C 0.13817560151256192 0.11202567952859742 0.1403427202173625 0.11034276832520838 0.13998683654746527 0.11054003786469664 C 0.1403427202173625 0.11034276832520838 0.1424727737603342 0.10973129218141385 0.14228154782088276 0.10979350338782022" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14228154782088276 0.10979350338782022 C 0.1424758094886032 0.10987636318560462 0.1449611150309483 0.11101773244384532 0.14461268783352796 0.11078782096123306 C 0.1449611150309483 0.11101773244384532 0.14661683971962683 0.11269949286399514 0.14646267418992692 0.11255244117916728" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14646267418992692 0.11255244117916728 C 0.1465537848469959 0.11257856673967527 0.147712954095147 0.11296025419339367 0.14755600207475478 0.11286594790526316 C 0.147712954095147 0.11296025419339367 0.14843486972740347 0.11384426428818711 0.14834609843463376 0.11368411663673336 C 0.14843486972740347 0.11384426428818711 0.14861806195692986 0.11497079730360832 0.14862125758799138 0.1147877197227081 C 0.14861806195692986 0.11497079730360832 0.1482134445737651 0.1160379996279282 0.1483077508618956 0.11588104760753597 C 0.1482134445737651 0.1160379996279282 0.14732943447897162 0.11675991526018457 0.14748958213042537 0.11667114396741486 C 0.14732943447897162 0.11675991526018457 0.14629401212061938 0.11696923305021897 0.1463859790444506 0.1169463031207725" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1463859790444506 0.1169463031207725 C 0.14622677539843623 0.11708788492629177 0.14411929655226285 0.11886289627992522 0.14447553529227802 0.1186452847870036 C 0.14411929655226285 0.11886289627992522 0.14191407907026787 0.11963367072323428 0.14211111416426866 0.11955764103583191" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14211111416426866 0.11955764103583191 C 0.1419221758542856 0.11948879403776827 0.1394950721769337 0.11852190752988938 0.13984385444447198 0.11873147705906828 C 0.1394950721769337 0.11852190752988938 0.13776588299625392 0.1169020841545699 0.13792572695380914 0.11704280668568516" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33784255268853425,0.06749297104649586) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10859856400166473 0.10207174472654916 C 0.10828853654221955 0.1021771971107937 0.10607786823255384 0.10306892110714014 0.10673839924499365 0.10270445903201644 C 0.10607786823255384 0.10306892110714014 0.10397257563216726 0.10420094576708683 0.10463537792702587 0.10425851717729129 C 0.10397257563216726 0.10420094576708683 0.10201477145504775 0.10192693217778284 0.10276158547584197 0.10235903057078972 C 0.10201477145504775 0.10192693217778284 0.10015449380226062 0.10166592681925003 0.10015449380226062 0.10166592681925003 C 0.10015449380226062 0.10166592681925003 0.10350839949663618 0.10279112896379661 0.10276158547584197 0.10235903057078972 C 0.10350839949663618 0.10279112896379661 0.10452624332051577 0.10489051694672327 0.10463537792702587 0.10425851717729129 C 0.10452624332051577 0.10489051694672327 0.1013445145452122 0.10653243862886644 0.10210677783678138 0.10615102918738167 C 0.1013445145452122 0.10653243862886644 0.09972096823441579 0.1066129645993363 0.10006179817761086 0.10654697382619992" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3420705483131473,0.06756677098463967) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1390767106114674 0.11242646337673796 C 0.1392839096756257 0.11237725494918406 0.14196944277929788 0.11181466669097931 0.14156309938136713 0.11183596224609119 C 0.14196944277929788 0.11181466669097931 0.14415197572040866 0.11219882958783746 0.14395283138663623 0.11217091671539543" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14395283138663623 0.11217091671539543 C 0.14409110927243005 0.11233054931837738 0.1458245437464794 0.1144458914530321 0.145612166016162 0.11408650795117874 C 0.1458245437464794 0.1144458914530321 0.14657546399496865 0.11668326963650734 0.14650136415044507 0.1164835187376359" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14650136415044507 0.1164835187376359 C 0.14657180117465268 0.11654694051910075 0.1474463348267424 0.11739814528268457 0.14734660844093644 0.11724458011521409 C 0.1474463348267424 0.11739814528268457 0.14770766377991712 0.11850915527635049 0.14769808078011676 0.11832630074728166 C 0.14770766377991712 0.11850915527635049 0.14737847629527775 0.11960198263131087 0.14746160443854062 0.11943883446404005 C 0.14737847629527775 0.11960198263131087 0.14654697789349205 0.12038380514033747 0.14670054306096253 0.1202840787545315 C 0.14654697789349205 0.12038380514033747 0.14543596789982613 0.12064513409351206 0.14561882242889496 0.12063555109371173 C 0.14543596789982613 0.12064513409351206 0.14441357756907333 0.12037936839033755 0.14450628871213653 0.12039907475213557" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14450628871213653 0.12039907475213557 C 0.14430113204449974 0.12045653735112424 0.14162882884220176 0.12112804906925267 0.14204440870049503 0.1210886259399996 C 0.14162882884220176 0.12112804906925267 0.13930890722196074 0.12085411283343692 0.13951933041261722 0.12087215230317251" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13951933041261722 0.12087215230317251 C 0.13937969432198075 0.12072744792758769 0.13762208313429977 0.1187944438684424 0.13784369732497972 0.11913569979615457 C 0.13762208313429977 0.1187944438684424 0.13677798202441444 0.11658052961849917 0.13685996012445792 0.1167770811706265" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34583829384481135,0.06948653322024144) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10909473636086872 0.10415389729370678 C 0.10876985824351722 0.10411277017590073 0.10639201665754972 0.10394515319268056 0.10714546765675967 0.10390713458687055 C 0.10639201665754972 0.10394515319268056 0.1040035452542302 0.10403971068574648 0.10457403036560896 0.10438200892856689 C 0.1040035452542302 0.10403971068574648 0.1032407444609727 0.10113759594816435 0.10372255698848713 0.10185334512994808 C 0.1032407444609727 0.10113759594816435 0.10168315520052235 0.10008751383786448 0.10168315520052235 0.10008751383786448 C 0.10168315520052235 0.10008751383786448 0.10420436951600157 0.1025690943117318 0.10372255698848713 0.10185334512994808 C 0.10420436951600157 0.1025690943117318 0.10419889036733615 0.10490220509598461 0.10457403036560896 0.10438200892856689 C 0.10419889036733615 0.10490220509598461 0.10061940039641562 0.10498317643638276 0.10147171699885026 0.10497452213445435 C 0.10061940039641562 0.10498317643638276 0.09912486637635963 0.10434383684108452 0.09946013075100114 0.10443393474013735" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.3496060393764755,0.07140629545584318) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13991812909366408 0.11313249731481492 C 0.1401259299337468 0.11317909916447044 0.14278629355838593 0.11385070841387498 0.1424117391746569 0.1136917195106811 C 0.14278629355838593 0.11385070841387498 0.1445795352420586 0.1151527512066798 0.14441278169841232 0.11504036415314144" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14441278169841232 0.11504036415314144 C 0.14446708671166453 0.11524445802166784 0.14509778233916995 0.11790560259645402 0.14506444185743866 0.11748949057545836 C 0.14509778233916995 0.11790560259645402 0.14479190294766672 0.12024572655755855 0.14481286747918765 0.12003370840508931" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14481286747918765 0.12003370840508931 C 0.14484837357811234 0.12012158908375391 0.14526125560953426 0.12127001717741678 0.14523894066628382 0.12108827654906448 C 0.14526125560953426 0.12127001717741678 0.1450091017917558 0.12238314541799493 0.14508064679819305 0.12221459594531688 C 0.1450091017917558 0.12238314541799493 0.14423416605960931 0.12322106584311623 0.14438040058903692 0.12311087022120118 C 0.14423416605960931 0.12322106584311623 0.14314409181670953 0.12355925835154792 0.14332583244506183 0.12353694340829746 C 0.14314409181670953 0.12355925835154792 0.1420309635761314 0.1233071045337694 0.14219951304880946 0.12337864954020665 C 0.1420309635761314 0.1233071045337694 0.14122854924993475 0.12262004948028746 0.1413032387729251 0.12267840333105047" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1413032387729251 0.12267840333105047 C 0.14109365523607845 0.122640115609243 0.13839743366598856 0.1220722057241575 0.1387882363307651 0.12221895066936081 C 0.13839743366598856 0.1220722057241575 0.13643238766767685 0.12080900676521483 0.13661360679560672 0.12091746398861068" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13661360679560672 0.12091746398861068 C 0.1365515369317647 0.12072619212417615 0.13581917966672366 0.11821833355239124 0.13586876842950246 0.11862220161539633 C 0.13581917966672366 0.11821833355239124 0.13603102274332446 0.11585845103397899 0.13601854164226124 0.11607104723254955" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3521508982555223,0.07478343725303702) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10862793751460477 0.10624283127066386 C 0.10835396793875311 0.10606344926916829 0.10629025652739851 0.10487041897966803 0.10698412005949484 0.10516653926169044 C 0.10629025652739851 0.10487041897966803 0.10410206137366633 0.10390836974332256 0.1044647563220268 0.1044661095785294 C 0.10410206137366633 0.10390836974332256 0.10468866392780156 0.10096557643699476 0.104807950369332 0.10182010025044932 C 0.10468866392780156 0.10096557643699476 0.1037490376728441 0.099338966697802 0.1037490376728441 0.099338966697802 C 0.1037490376728441 0.099338966697802 0.10492723681086245 0.10267462406390389 0.104807950369332 0.10182010025044932 C 0.10492723681086245 0.10267462406390389 0.10389954373458432 0.10476920824546279 0.1044647563220268 0.1044661095785294 C 0.10389954373458432 0.10476920824546279 0.10064682396058597 0.1032728396806611 0.10141667484467717 0.10363869225204961 C 0.10064682396058597 0.1032728396806611 0.09958381371294667 0.10204304446655646 0.0998456510174796 0.10227099415019834" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.35469575713456925,0.07816057905023086) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14036488610880168 0.11413592999981373 C 0.14053122736040805 0.11426890935740144 0.14262793223036893 0.11603877440521468 0.14236098112807788 0.11573168229086622 C 0.14262793223036893 0.11603877440521468 0.14366890918697914 0.11799514812875593 0.14356829933629442 0.11782103537199519" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14356829933629442 0.11782103537199519 C 0.14352763949569114 0.11802827947684866 0.14292793597169942 0.12069657914251222 0.1430803812490552 0.12030796463023677 C 0.14292793597169942 0.12069657914251222 0.1416271705712727 0.12266577992672258 0.1417389560080252 0.12248440951930059" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1417389560080252 0.12248440951930059 C 0.1417323443244592 0.12257896099937268 0.1416000024957014 0.12379215690216262 0.14165961580523334 0.12361902728016567 C 0.1416000024957014 0.12379215690216262 0.14088540484218495 0.12468209297929496 0.14102359629364175 0.12456196498326398 C 0.14088540484218495 0.12468209297929496 0.13982157708218879 0.12509550140307754 0.1400013183877517 0.1250605632325374 C 0.13982157708218879 0.12509550140307754 0.1386935710048897 0.12492160972021372 0.13886670062688664 0.12498122302974567 C 0.1386935710048897 0.12492160972021372 0.1378036349277574 0.12420701206669722 0.13792376292378838 0.12434520351815403 C 0.1378036349277574 0.12420701206669722 0.13738361482040884 0.1232377357867731 0.13742516467451496 0.12332292561226395" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13742516467451496 0.12332292561226395 C 0.13725357647191153 0.12319663746046144 0.1350791838848091 0.1215042576952344 0.13536610624327383 0.12180746779063395 C 0.1350791838848091 0.1215042576952344 0.13386676221707702 0.11950748252387224 0.13398209637293831 0.1196844044674693" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13398209637293831 0.1196844044674693 C 0.13401015641542316 0.11948528081709753 0.13445129090393848 0.11691018816968157 0.13431881688275638 0.11729492066300812 C 0.13445129090393848 0.11691018816968157 0.1356761986058209 0.11488200570459596 0.13557178462712363 0.11506761454755074" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35550261962122287,0.08231152669628086) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10729265310771809 0.10791572154670838 C 0.10712504677778444 0.10763439371459953 0.10579318530414158 0.10565743365530487 0.10628701512811621 0.10622775455405524 C 0.10579318530414158 0.10565743365530487 0.10424818315483074 0.10383350791049104 0.10432967416387033 0.10449379615420622 C 0.10424818315483074 0.10383350791049104 0.10606545371448951 0.10144569244164024 0.10579806907387863 0.10226602509176416 C 0.10606545371448951 0.10144569244164024 0.10593398200753558 0.09957180025346273 0.10593398200753558 0.09957180025346273 C 0.10593398200753558 0.09957180025346273 0.10553068443326775 0.10308635774188808 0.10579806907387863 0.10226602509176416 C 0.10553068443326775 0.10308635774188808 0.10368879474516986 0.10451844654135037 0.10432967416387033 0.10449379615420622 C 0.10368879474516986 0.10451844654135037 0.1014212343817918 0.10174762088672623 0.10195279256167582 0.10241392741462911 C 0.1014212343817918 0.10174762088672623 0.10100491383838137 0.10017629524881558 0.10114032508456629 0.10049595698678894" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24073248845225406 0.2494909368722861 0.24188766313423996 0.2475101238438775 C 0.24073248845225406 0.2494909368722861 0.2297390831874525 0.2587673083827231 0.23173990442826928 0.25755640496278853 C 0.2297390831874525 0.2587673083827231 0.2155674588804668 0.2620409648830925 0.2178778082444386 0.2620409648830925 C 0.2155674588804668 0.2620409648830925 0.2020148908197911 0.25634550154285407 0.2040157120606079 0.25755640496278864 C 0.2020148908197911 0.25634550154285407 0.19271277867265127 0.24552931081546894 0.19386795335463716 0.24751012384387755 C 0.19271277867265127 0.24552931081546894 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

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