pymdownx-mahjong 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. pymdownx_mahjong/__init__.py +23 -0
  2. pymdownx_mahjong/assets/dark/0m.svg +333 -0
  3. pymdownx_mahjong/assets/dark/0p.svg +491 -0
  4. pymdownx_mahjong/assets/dark/0s.svg +678 -0
  5. pymdownx_mahjong/assets/dark/1m.svg +273 -0
  6. pymdownx_mahjong/assets/dark/1p.svg +551 -0
  7. pymdownx_mahjong/assets/dark/1s.svg +764 -0
  8. pymdownx_mahjong/assets/dark/1z.svg +242 -0
  9. pymdownx_mahjong/assets/dark/2m.svg +283 -0
  10. pymdownx_mahjong/assets/dark/2p.svg +396 -0
  11. pymdownx_mahjong/assets/dark/2s.svg +369 -0
  12. pymdownx_mahjong/assets/dark/2z.svg +270 -0
  13. pymdownx_mahjong/assets/dark/3m.svg +289 -0
  14. pymdownx_mahjong/assets/dark/3p.svg +356 -0
  15. pymdownx_mahjong/assets/dark/3s.svg +462 -0
  16. pymdownx_mahjong/assets/dark/3z.svg +248 -0
  17. pymdownx_mahjong/assets/dark/4m.svg +289 -0
  18. pymdownx_mahjong/assets/dark/4p.svg +403 -0
  19. pymdownx_mahjong/assets/dark/4s.svg +570 -0
  20. pymdownx_mahjong/assets/dark/4z.svg +236 -0
  21. pymdownx_mahjong/assets/dark/5m.svg +313 -0
  22. pymdownx_mahjong/assets/dark/5p.svg +450 -0
  23. pymdownx_mahjong/assets/dark/5s.svg +608 -0
  24. pymdownx_mahjong/assets/dark/5z.svg +214 -0
  25. pymdownx_mahjong/assets/dark/6m.svg +294 -0
  26. pymdownx_mahjong/assets/dark/6p.svg +473 -0
  27. pymdownx_mahjong/assets/dark/6s.svg +695 -0
  28. pymdownx_mahjong/assets/dark/6z.svg +324 -0
  29. pymdownx_mahjong/assets/dark/7m.svg +283 -0
  30. pymdownx_mahjong/assets/dark/7p.svg +516 -0
  31. pymdownx_mahjong/assets/dark/7s.svg +628 -0
  32. pymdownx_mahjong/assets/dark/7z.svg +232 -0
  33. pymdownx_mahjong/assets/dark/8m.svg +283 -0
  34. pymdownx_mahjong/assets/dark/8p.svg +566 -0
  35. pymdownx_mahjong/assets/dark/8s.svg +712 -0
  36. pymdownx_mahjong/assets/dark/9m.svg +289 -0
  37. pymdownx_mahjong/assets/dark/9p.svg +609 -0
  38. pymdownx_mahjong/assets/dark/9s.svg +762 -0
  39. pymdownx_mahjong/assets/dark/back.svg +285 -0
  40. pymdownx_mahjong/assets/dark/blank.svg +225 -0
  41. pymdownx_mahjong/assets/dark/front.svg +334 -0
  42. pymdownx_mahjong/assets/light/0m.svg +319 -0
  43. pymdownx_mahjong/assets/light/0p.svg +460 -0
  44. pymdownx_mahjong/assets/light/0s.svg +614 -0
  45. pymdownx_mahjong/assets/light/1m.svg +276 -0
  46. pymdownx_mahjong/assets/light/1p.svg +544 -0
  47. pymdownx_mahjong/assets/light/1s.svg +764 -0
  48. pymdownx_mahjong/assets/light/1z.svg +242 -0
  49. pymdownx_mahjong/assets/light/2m.svg +286 -0
  50. pymdownx_mahjong/assets/light/2p.svg +400 -0
  51. pymdownx_mahjong/assets/light/2s.svg +372 -0
  52. pymdownx_mahjong/assets/light/2z.svg +270 -0
  53. pymdownx_mahjong/assets/light/3m.svg +292 -0
  54. pymdownx_mahjong/assets/light/3p.svg +362 -0
  55. pymdownx_mahjong/assets/light/3s.svg +462 -0
  56. pymdownx_mahjong/assets/light/3z.svg +248 -0
  57. pymdownx_mahjong/assets/light/4m.svg +292 -0
  58. pymdownx_mahjong/assets/light/4p.svg +407 -0
  59. pymdownx_mahjong/assets/light/4s.svg +573 -0
  60. pymdownx_mahjong/assets/light/4z.svg +236 -0
  61. pymdownx_mahjong/assets/light/5m.svg +313 -0
  62. pymdownx_mahjong/assets/light/5p.svg +454 -0
  63. pymdownx_mahjong/assets/light/5s.svg +608 -0
  64. pymdownx_mahjong/assets/light/5z.svg +214 -0
  65. pymdownx_mahjong/assets/light/6m.svg +297 -0
  66. pymdownx_mahjong/assets/light/6p.svg +477 -0
  67. pymdownx_mahjong/assets/light/6s.svg +688 -0
  68. pymdownx_mahjong/assets/light/6z.svg +309 -0
  69. pymdownx_mahjong/assets/light/7m.svg +283 -0
  70. pymdownx_mahjong/assets/light/7p.svg +567 -0
  71. pymdownx_mahjong/assets/light/7s.svg +628 -0
  72. pymdownx_mahjong/assets/light/7z.svg +232 -0
  73. pymdownx_mahjong/assets/light/8m.svg +286 -0
  74. pymdownx_mahjong/assets/light/8p.svg +570 -0
  75. pymdownx_mahjong/assets/light/8s.svg +712 -0
  76. pymdownx_mahjong/assets/light/9m.svg +292 -0
  77. pymdownx_mahjong/assets/light/9p.svg +623 -0
  78. pymdownx_mahjong/assets/light/9s.svg +748 -0
  79. pymdownx_mahjong/assets/light/back.svg +285 -0
  80. pymdownx_mahjong/assets/light/blank.svg +224 -0
  81. pymdownx_mahjong/assets/light/front.svg +334 -0
  82. pymdownx_mahjong/css/mahjong.css +416 -0
  83. pymdownx_mahjong/extension.py +206 -0
  84. pymdownx_mahjong/inline.py +78 -0
  85. pymdownx_mahjong/parser.py +363 -0
  86. pymdownx_mahjong/renderer.py +468 -0
  87. pymdownx_mahjong/superfences.py +126 -0
  88. pymdownx_mahjong/tiles.py +85 -0
  89. pymdownx_mahjong/utils.py +90 -0
  90. pymdownx_mahjong-1.0.0.dist-info/METADATA +44 -0
  91. pymdownx_mahjong-1.0.0.dist-info/RECORD +94 -0
  92. pymdownx_mahjong-1.0.0.dist-info/WHEEL +4 -0
  93. pymdownx_mahjong-1.0.0.dist-info/entry_points.txt +2 -0
  94. pymdownx_mahjong-1.0.0.dist-info/licenses/LICENSE +352 -0
@@ -0,0 +1,678 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+ <svg
4
+ xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="300"
13
+ height="400"
14
+ viewBox="0 0 300 400"
15
+ id="svg2"
16
+ version="1.1"
17
+ inkscape:version="0.91 r13725"
18
+ sodipodi:docname="Sou5-Dora.svg"
19
+ inkscape:export-filename="C:\Users\Fluffy\Documents\Projects\ExtraRiichi\Tiles\Export\Black\Sou5-Dora.png"
20
+ inkscape:export-xdpi="180"
21
+ inkscape:export-ydpi="180"
22
+ >
23
+ <defs id="defs4">
24
+ <inkscape:path-effect
25
+ effect="skeletal"
26
+ id="path-effect7963"
27
+ is_visible="true"
28
+ pattern="m -90.825902,-314.06958 23.03016,41.38503 13.798268,-41.38503 z"
29
+ copytype="repeated_stretched"
30
+ prop_scale="1"
31
+ scale_y_rel="false"
32
+ spacing="0"
33
+ normal_offset="0"
34
+ tang_offset="0"
35
+ prop_units="false"
36
+ vertical_pattern="false"
37
+ fuse_tolerance="0"
38
+ pattern-nodetypes="cccc"
39
+ />
40
+ <inkscape:path-effect
41
+ effect="skeletal"
42
+ id="path-effect7830"
43
+ is_visible="true"
44
+ pattern="M -12.828427,33.715729 -17,-11 l 9.0000001,0 z"
45
+ copytype="repeated_stretched"
46
+ prop_scale="-1"
47
+ scale_y_rel="false"
48
+ spacing="5.1"
49
+ normal_offset="0"
50
+ tang_offset="0"
51
+ prop_units="false"
52
+ vertical_pattern="false"
53
+ fuse_tolerance="0"
54
+ pattern-nodetypes="cccc"
55
+ />
56
+ <linearGradient id="linearGradient10055" osb:paint="solid">
57
+ <stop
58
+ style="stop-color:#000000;stop-opacity:1;"
59
+ offset="0"
60
+ id="stop10057"
61
+ />
62
+ </linearGradient>
63
+ <marker
64
+ inkscape:stockid="Arrow1Lstart"
65
+ orient="auto"
66
+ refY="0"
67
+ refX="0"
68
+ id="Arrow1Lstart"
69
+ style="overflow:visible"
70
+ inkscape:isstock="true"
71
+ >
72
+ <path
73
+ id="path4978"
74
+ d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
75
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ff5c00;stroke-width:1pt;stroke-opacity:1"
76
+ transform="matrix(0.8,0,0,0.8,10,0)"
77
+ inkscape:connector-curvature="0"
78
+ />
79
+ </marker>
80
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath4243">
81
+ <circle
82
+ style="opacity:1;fill:#000000;fill-opacity:0.29670332;fill-rule:nonzero;stroke:#000000;stroke-width:19.13299942;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
83
+ id="circle4245"
84
+ cx="-264.65997"
85
+ cy="-198.20665"
86
+ r="293.95438"
87
+ />
88
+ </clipPath>
89
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath7847">
90
+ <ellipse
91
+ style="opacity:1;fill:#822600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
92
+ id="ellipse7849"
93
+ cx="394"
94
+ cy="552.36218"
95
+ rx="349.49533"
96
+ ry="216"
97
+ />
98
+ </clipPath>
99
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath4243-1">
100
+ <circle
101
+ style="opacity:1;fill:#000000;fill-opacity:0.29670332;fill-rule:nonzero;stroke:#000000;stroke-width:19.13299942;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
102
+ id="circle4245-4"
103
+ cx="-264.65997"
104
+ cy="-198.20665"
105
+ r="293.95438"
106
+ />
107
+ </clipPath>
108
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath7876">
109
+ <circle
110
+ style="opacity:1;fill:#000000;fill-opacity:0.29670332;fill-rule:nonzero;stroke:#000000;stroke-width:19.13299942;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
111
+ id="circle7878"
112
+ cx="-264.65997"
113
+ cy="-198.20665"
114
+ r="293.95438"
115
+ />
116
+ </clipPath>
117
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath14693">
118
+ <rect
119
+ style="opacity:1;fill:#a53c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
120
+ id="rect14695"
121
+ width="131.78395"
122
+ height="168.82127"
123
+ x="-332.59583"
124
+ y="383.49765"
125
+ rx="1.2551664"
126
+ ry="3.7514515"
127
+ transform="matrix(0.99939083,-0.03489951,0.03489951,0.99939083,0,0)"
128
+ />
129
+ </clipPath>
130
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath14952">
131
+ <ellipse
132
+ style="opacity:1;fill:#a53c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
133
+ id="ellipse14954"
134
+ cx="-271.34384"
135
+ cy="647.25604"
136
+ rx="69.057365"
137
+ ry="116.91089"
138
+ transform="matrix(0.99939083,-0.03489951,0.03489951,0.99939083,0,0)"
139
+ />
140
+ </clipPath>
141
+ </defs>
142
+ <sodipodi:namedview
143
+ id="base"
144
+ pagecolor="#000000"
145
+ bordercolor="#666666"
146
+ borderopacity="1"
147
+ inkscape:pageopacity="0"
148
+ inkscape:pageshadow="2"
149
+ inkscape:zoom="2.0219279"
150
+ inkscape:cx="-35.101545"
151
+ inkscape:cy="212.7147"
152
+ inkscape:document-units="px"
153
+ inkscape:current-layer="layer1"
154
+ showgrid="true"
155
+ inkscape:window-width="1920"
156
+ inkscape:window-height="1017"
157
+ inkscape:window-x="1912"
158
+ inkscape:window-y="-8"
159
+ inkscape:window-maximized="1"
160
+ showguides="true"
161
+ inkscape:guide-bbox="true"
162
+ units="px"
163
+ >
164
+ <inkscape:grid
165
+ type="xygrid"
166
+ id="grid4774"
167
+ visible="true"
168
+ dotted="false"
169
+ color="#3f3fff"
170
+ opacity="0.03921569"
171
+ empcolor="#3f3fff"
172
+ empopacity="0.07843137"
173
+ enabled="false"
174
+ />
175
+ <sodipodi:guide
176
+ position="150,200"
177
+ orientation="0,1"
178
+ id="guide8231"
179
+ inkscape:label=""
180
+ inkscape:color="rgb(0,0,255)"
181
+ />
182
+ <sodipodi:guide
183
+ position="150.35156,334.82897"
184
+ orientation="1,0"
185
+ id="guide8233"
186
+ inkscape:label=""
187
+ inkscape:color="rgb(0,0,255)"
188
+ />
189
+ </sodipodi:namedview>
190
+ <metadata id="metadata7">
191
+ <rdf:RDF>
192
+ <cc:Work rdf:about="">
193
+ <dc:format>image/svg+xml</dc:format>
194
+ <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
195
+ <dc:title />
196
+ </cc:Work>
197
+ </rdf:RDF>
198
+ </metadata>
199
+ <g
200
+ inkscape:label="Layer 1"
201
+ inkscape:groupmode="layer"
202
+ id="layer1"
203
+ transform="translate(0,-652.36216)"
204
+ >
205
+ <g
206
+ id="g4335"
207
+ transform="matrix(0.95915654,0,0,0.95915654,-93.20763,26.803561)"
208
+ >
209
+ <ellipse
210
+ ry="19.097431"
211
+ rx="24.680117"
212
+ cy="680.42645"
213
+ cx="135.05489"
214
+ id="ellipse4337"
215
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
216
+ />
217
+ <ellipse
218
+ ry="19.097431"
219
+ rx="24.680117"
220
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
221
+ id="ellipse4340"
222
+ cx="164.01987"
223
+ cy="680.42645"
224
+ />
225
+ <ellipse
226
+ ry="19.097431"
227
+ rx="24.680117"
228
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
229
+ id="ellipse4342"
230
+ cx="133.83817"
231
+ cy="829.79926"
232
+ />
233
+ <path
234
+ inkscape:connector-curvature="0"
235
+ id="path4344"
236
+ d="m 149.58492,818.81626 0,-134.67362"
237
+ style="fill:none;fill-rule:evenodd;stroke:#B93C3C;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
238
+ />
239
+ <ellipse
240
+ ry="19.097431"
241
+ rx="24.680117"
242
+ cy="829.79926"
243
+ cx="165.64214"
244
+ id="ellipse4346"
245
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
246
+ />
247
+ <ellipse
248
+ ry="25.370163"
249
+ rx="32.786533"
250
+ cy="748.83081"
251
+ cx="160.99481"
252
+ id="ellipse4348"
253
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
254
+ />
255
+ <ellipse
256
+ ry="25.370163"
257
+ rx="32.786533"
258
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
259
+ id="ellipse4350"
260
+ cx="138.32327"
261
+ cy="748.83081"
262
+ />
263
+ <path
264
+ inkscape:connector-curvature="0"
265
+ id="path4352"
266
+ d="m 149.58492,685.72349 0,37.84241"
267
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
268
+ />
269
+ <path
270
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
271
+ d="m 149.58491,777.56215 0,46.73373"
272
+ id="path4354"
273
+ inkscape:connector-curvature="0"
274
+ />
275
+ <ellipse
276
+ cy="683.5329"
277
+ cx="149.58495"
278
+ id="ellipse4356"
279
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
280
+ rx="8.9920015"
281
+ ry="8.6974945"
282
+ />
283
+ <path
284
+ sodipodi:nodetypes="cc"
285
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
286
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
287
+ id="path4358"
288
+ inkscape:connector-curvature="0"
289
+ />
290
+ <path
291
+ inkscape:connector-curvature="0"
292
+ id="path4360"
293
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
294
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
295
+ sodipodi:nodetypes="cc"
296
+ />
297
+ </g>
298
+ <g
299
+ transform="matrix(0.95915654,0,0,0.95915654,109.62944,26.803561)"
300
+ id="g4225"
301
+ >
302
+ <ellipse
303
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
304
+ id="ellipse4227"
305
+ cx="135.05489"
306
+ cy="680.42645"
307
+ rx="24.680117"
308
+ ry="19.097431"
309
+ />
310
+ <ellipse
311
+ cy="680.42645"
312
+ cx="164.01987"
313
+ id="ellipse4229"
314
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
315
+ rx="24.680117"
316
+ ry="19.097431"
317
+ />
318
+ <ellipse
319
+ cy="829.79926"
320
+ cx="133.83817"
321
+ id="ellipse4231"
322
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
323
+ rx="24.680117"
324
+ ry="19.097431"
325
+ />
326
+ <path
327
+ style="fill:none;fill-rule:evenodd;stroke:#B93C3C;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
328
+ d="m 149.58492,818.81626 0,-134.67362"
329
+ id="path4233"
330
+ inkscape:connector-curvature="0"
331
+ />
332
+ <ellipse
333
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
334
+ id="ellipse4235"
335
+ cx="165.64214"
336
+ cy="829.79926"
337
+ rx="24.680117"
338
+ ry="19.097431"
339
+ />
340
+ <ellipse
341
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
342
+ id="ellipse4237"
343
+ cx="160.99481"
344
+ cy="748.83081"
345
+ rx="32.786533"
346
+ ry="25.370163"
347
+ />
348
+ <ellipse
349
+ cy="748.83081"
350
+ cx="138.32327"
351
+ id="ellipse4239"
352
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
353
+ rx="32.786533"
354
+ ry="25.370163"
355
+ />
356
+ <path
357
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
358
+ d="m 149.58492,685.72349 0,37.84241"
359
+ id="path4241"
360
+ inkscape:connector-curvature="0"
361
+ />
362
+ <path
363
+ inkscape:connector-curvature="0"
364
+ id="path4243"
365
+ d="m 149.58491,777.56215 0,46.73373"
366
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
367
+ />
368
+ <ellipse
369
+ ry="8.6974945"
370
+ rx="8.9920015"
371
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
372
+ id="ellipse4245"
373
+ cx="149.58495"
374
+ cy="683.5329"
375
+ />
376
+ <path
377
+ inkscape:connector-curvature="0"
378
+ id="path4247"
379
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
380
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
381
+ sodipodi:nodetypes="cc"
382
+ />
383
+ <path
384
+ sodipodi:nodetypes="cc"
385
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
386
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
387
+ id="path4249"
388
+ inkscape:connector-curvature="0"
389
+ />
390
+ </g>
391
+ <g
392
+ transform="matrix(0.95915654,0,0,0.95915654,6.1125892,130.64527)"
393
+ id="g4251"
394
+ >
395
+ <ellipse
396
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
397
+ id="ellipse4253"
398
+ cx="135.05489"
399
+ cy="680.42645"
400
+ rx="24.680117"
401
+ ry="19.097431"
402
+ />
403
+ <ellipse
404
+ cy="680.42645"
405
+ cx="164.01987"
406
+ id="ellipse4255"
407
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
408
+ rx="24.680117"
409
+ ry="19.097431"
410
+ />
411
+ <ellipse
412
+ cy="829.79926"
413
+ cx="133.83817"
414
+ id="ellipse4257"
415
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
416
+ rx="24.680117"
417
+ ry="19.097431"
418
+ />
419
+ <path
420
+ style="fill:none;fill-rule:evenodd;stroke:#B93C3C;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
421
+ d="m 149.58492,818.81626 0,-134.67362"
422
+ id="path4259"
423
+ inkscape:connector-curvature="0"
424
+ />
425
+ <ellipse
426
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
427
+ id="ellipse4261"
428
+ cx="165.64214"
429
+ cy="829.79926"
430
+ rx="24.680117"
431
+ ry="19.097431"
432
+ />
433
+ <ellipse
434
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
435
+ id="ellipse4263"
436
+ cx="160.99481"
437
+ cy="748.83081"
438
+ rx="32.786533"
439
+ ry="25.370163"
440
+ />
441
+ <ellipse
442
+ cy="748.83081"
443
+ cx="138.32327"
444
+ id="ellipse4265"
445
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
446
+ rx="32.786533"
447
+ ry="25.370163"
448
+ />
449
+ <path
450
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
451
+ d="m 149.58492,685.72349 0,37.84241"
452
+ id="path4267"
453
+ inkscape:connector-curvature="0"
454
+ />
455
+ <path
456
+ inkscape:connector-curvature="0"
457
+ id="path4269"
458
+ d="m 149.58491,777.56215 0,46.73373"
459
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
460
+ />
461
+ <ellipse
462
+ ry="8.6974945"
463
+ rx="8.9920015"
464
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
465
+ id="ellipse4271"
466
+ cx="149.58495"
467
+ cy="683.5329"
468
+ />
469
+ <path
470
+ inkscape:connector-curvature="0"
471
+ id="path4273"
472
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
473
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
474
+ sodipodi:nodetypes="cc"
475
+ />
476
+ <path
477
+ sodipodi:nodetypes="cc"
478
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
479
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
480
+ id="path4275"
481
+ inkscape:connector-curvature="0"
482
+ />
483
+ </g>
484
+ <g
485
+ transform="matrix(0.95915654,0,0,0.95915654,109.62944,235.23614)"
486
+ id="g4277"
487
+ >
488
+ <ellipse
489
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
490
+ id="ellipse4279"
491
+ cx="135.05489"
492
+ cy="680.42645"
493
+ rx="24.680117"
494
+ ry="19.097431"
495
+ />
496
+ <ellipse
497
+ cy="680.42645"
498
+ cx="164.01987"
499
+ id="ellipse4281"
500
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
501
+ rx="24.680117"
502
+ ry="19.097431"
503
+ />
504
+ <ellipse
505
+ cy="829.79926"
506
+ cx="133.83817"
507
+ id="ellipse4283"
508
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
509
+ rx="24.680117"
510
+ ry="19.097431"
511
+ />
512
+ <path
513
+ style="fill:none;fill-rule:evenodd;stroke:#B93C3C;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
514
+ d="m 149.58492,818.81626 0,-134.67362"
515
+ id="path4285"
516
+ inkscape:connector-curvature="0"
517
+ />
518
+ <ellipse
519
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
520
+ id="ellipse4287"
521
+ cx="165.64214"
522
+ cy="829.79926"
523
+ rx="24.680117"
524
+ ry="19.097431"
525
+ />
526
+ <ellipse
527
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
528
+ id="ellipse4289"
529
+ cx="160.99481"
530
+ cy="748.83081"
531
+ rx="32.786533"
532
+ ry="25.370163"
533
+ />
534
+ <ellipse
535
+ cy="748.83081"
536
+ cx="138.32327"
537
+ id="ellipse4291"
538
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
539
+ rx="32.786533"
540
+ ry="25.370163"
541
+ />
542
+ <path
543
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
544
+ d="m 149.58492,685.72349 0,37.84241"
545
+ id="path4293"
546
+ inkscape:connector-curvature="0"
547
+ />
548
+ <path
549
+ inkscape:connector-curvature="0"
550
+ id="path4295"
551
+ d="m 149.58491,777.56215 0,46.73373"
552
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
553
+ />
554
+ <ellipse
555
+ ry="8.6974945"
556
+ rx="8.9920015"
557
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
558
+ id="ellipse4297"
559
+ cx="149.58495"
560
+ cy="683.5329"
561
+ />
562
+ <path
563
+ inkscape:connector-curvature="0"
564
+ id="path4299"
565
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
566
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
567
+ sodipodi:nodetypes="cc"
568
+ />
569
+ <path
570
+ sodipodi:nodetypes="cc"
571
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
572
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
573
+ id="path4301"
574
+ inkscape:connector-curvature="0"
575
+ />
576
+ </g>
577
+ <g
578
+ id="g4303"
579
+ transform="matrix(0.95915654,0,0,0.95915654,-93.20763,235.23614)"
580
+ >
581
+ <ellipse
582
+ ry="19.097431"
583
+ rx="24.680117"
584
+ cy="680.42645"
585
+ cx="135.05489"
586
+ id="ellipse4305"
587
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
588
+ />
589
+ <ellipse
590
+ ry="19.097431"
591
+ rx="24.680117"
592
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
593
+ id="ellipse4307"
594
+ cx="164.01987"
595
+ cy="680.42645"
596
+ />
597
+ <ellipse
598
+ ry="19.097431"
599
+ rx="24.680117"
600
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
601
+ id="ellipse4309"
602
+ cx="133.83817"
603
+ cy="829.79926"
604
+ />
605
+ <path
606
+ inkscape:connector-curvature="0"
607
+ id="path4311"
608
+ d="m 149.58492,818.81626 0,-134.67362"
609
+ style="fill:none;fill-rule:evenodd;stroke:#B93C3C;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
610
+ />
611
+ <ellipse
612
+ ry="19.097431"
613
+ rx="24.680117"
614
+ cy="829.79926"
615
+ cx="165.64214"
616
+ id="ellipse4313"
617
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
618
+ />
619
+ <ellipse
620
+ ry="25.370163"
621
+ rx="32.786533"
622
+ cy="748.83081"
623
+ cx="160.99481"
624
+ id="ellipse4315"
625
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
626
+ />
627
+ <ellipse
628
+ ry="25.370163"
629
+ rx="32.786533"
630
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
631
+ id="ellipse4317"
632
+ cx="138.32327"
633
+ cy="748.83081"
634
+ />
635
+ <path
636
+ inkscape:connector-curvature="0"
637
+ id="path4319"
638
+ d="m 149.58492,685.72349 0,37.84241"
639
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
640
+ />
641
+ <path
642
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
643
+ d="m 149.58491,777.56215 0,46.73373"
644
+ id="path4321"
645
+ inkscape:connector-curvature="0"
646
+ />
647
+ <ellipse
648
+ cy="683.5329"
649
+ cx="149.58495"
650
+ id="ellipse4323"
651
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
652
+ rx="8.9920015"
653
+ ry="8.6974945"
654
+ />
655
+ <path
656
+ sodipodi:nodetypes="cc"
657
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
658
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
659
+ id="path4325"
660
+ inkscape:connector-curvature="0"
661
+ />
662
+ <path
663
+ inkscape:connector-curvature="0"
664
+ id="path4327"
665
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
666
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
667
+ sodipodi:nodetypes="cc"
668
+ />
669
+ </g>
670
+ <circle
671
+ style="opacity:1;fill:#B93C3C;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
672
+ id="path4178"
673
+ cx="150.35619"
674
+ cy="998.50543"
675
+ r="19.7831"
676
+ />
677
+ </g>
678
+ </svg>