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,608 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
6
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
7
+ xmlns:cc="http://creativecommons.org/ns#"
8
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
9
+ xmlns:svg="http://www.w3.org/2000/svg"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ width="300"
14
+ height="400"
15
+ viewBox="0 0 300 400"
16
+ id="svg2"
17
+ version="1.1"
18
+ inkscape:version="0.91 r13725"
19
+ sodipodi:docname="Sou5.svg"
20
+ inkscape:export-filename="C:\Users\Fluffy\Documents\Projects\ExtraRiichi\Sou5.png"
21
+ inkscape:export-xdpi="180"
22
+ inkscape:export-ydpi="180">
23
+ <defs
24
+ id="defs4">
25
+ <inkscape:path-effect
26
+ effect="skeletal"
27
+ id="path-effect7963"
28
+ is_visible="true"
29
+ pattern="m -90.825902,-314.06958 23.03016,41.38503 13.798268,-41.38503 z"
30
+ copytype="repeated_stretched"
31
+ prop_scale="1"
32
+ scale_y_rel="false"
33
+ spacing="0"
34
+ normal_offset="0"
35
+ tang_offset="0"
36
+ prop_units="false"
37
+ vertical_pattern="false"
38
+ fuse_tolerance="0"
39
+ pattern-nodetypes="cccc" />
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
+ <linearGradient
56
+ id="linearGradient10055"
57
+ osb:paint="solid">
58
+ <stop
59
+ style="stop-color:#000000;stop-opacity:1;"
60
+ offset="0"
61
+ id="stop10057" />
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
+ <path
72
+ id="path4978"
73
+ d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
74
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ff5c00;stroke-width:1pt;stroke-opacity:1"
75
+ transform="matrix(0.8,0,0,0.8,10,0)"
76
+ inkscape:connector-curvature="0" />
77
+ </marker>
78
+ <clipPath
79
+ clipPathUnits="userSpaceOnUse"
80
+ 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
+ </clipPath>
88
+ <clipPath
89
+ clipPathUnits="userSpaceOnUse"
90
+ id="clipPath7847">
91
+ <ellipse
92
+ 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"
93
+ id="ellipse7849"
94
+ cx="394"
95
+ cy="552.36218"
96
+ rx="349.49533"
97
+ ry="216" />
98
+ </clipPath>
99
+ <clipPath
100
+ clipPathUnits="userSpaceOnUse"
101
+ id="clipPath4243-1">
102
+ <circle
103
+ 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"
104
+ id="circle4245-4"
105
+ cx="-264.65997"
106
+ cy="-198.20665"
107
+ r="293.95438" />
108
+ </clipPath>
109
+ <clipPath
110
+ clipPathUnits="userSpaceOnUse"
111
+ id="clipPath7876">
112
+ <circle
113
+ 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"
114
+ id="circle7878"
115
+ cx="-264.65997"
116
+ cy="-198.20665"
117
+ r="293.95438" />
118
+ </clipPath>
119
+ <clipPath
120
+ clipPathUnits="userSpaceOnUse"
121
+ id="clipPath14693">
122
+ <rect
123
+ 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"
124
+ id="rect14695"
125
+ width="131.78395"
126
+ height="168.82127"
127
+ x="-332.59583"
128
+ y="383.49765"
129
+ rx="1.2551664"
130
+ ry="3.7514515"
131
+ transform="matrix(0.99939083,-0.03489951,0.03489951,0.99939083,0,0)" />
132
+ </clipPath>
133
+ <clipPath
134
+ clipPathUnits="userSpaceOnUse"
135
+ id="clipPath14952">
136
+ <ellipse
137
+ 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"
138
+ id="ellipse14954"
139
+ cx="-271.34384"
140
+ cy="647.25604"
141
+ rx="69.057365"
142
+ ry="116.91089"
143
+ transform="matrix(0.99939083,-0.03489951,0.03489951,0.99939083,0,0)" />
144
+ </clipPath>
145
+ </defs>
146
+ <sodipodi:namedview
147
+ id="base"
148
+ pagecolor="#aeffff"
149
+ bordercolor="#666666"
150
+ borderopacity="1"
151
+ inkscape:pageopacity="0"
152
+ inkscape:pageshadow="2"
153
+ inkscape:zoom="2.0219278"
154
+ inkscape:cx="119.69996"
155
+ inkscape:cy="211.14546"
156
+ inkscape:document-units="px"
157
+ inkscape:current-layer="layer1"
158
+ showgrid="true"
159
+ inkscape:window-width="1920"
160
+ inkscape:window-height="1017"
161
+ inkscape:window-x="1912"
162
+ inkscape:window-y="-8"
163
+ inkscape:window-maximized="1"
164
+ showguides="true"
165
+ inkscape:guide-bbox="true"
166
+ units="px">
167
+ <inkscape:grid
168
+ type="xygrid"
169
+ id="grid4774"
170
+ visible="true"
171
+ dotted="false"
172
+ color="#3f3fff"
173
+ opacity="0.03921569"
174
+ empcolor="#3f3fff"
175
+ empopacity="0.07843137"
176
+ enabled="false" />
177
+ <sodipodi:guide
178
+ position="150,200"
179
+ orientation="0,1"
180
+ id="guide8231"
181
+ inkscape:label=""
182
+ inkscape:color="rgb(0,0,255)" />
183
+ <sodipodi:guide
184
+ position="150,200"
185
+ orientation="1,0"
186
+ id="guide8233"
187
+ inkscape:label=""
188
+ inkscape:color="rgb(0,0,255)" />
189
+ </sodipodi:namedview>
190
+ <metadata
191
+ id="metadata7">
192
+ <rdf:RDF>
193
+ <cc:Work
194
+ rdf:about="">
195
+ <dc:format>image/svg+xml</dc:format>
196
+ <dc:type
197
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
198
+ <dc:title />
199
+ </cc:Work>
200
+ </rdf:RDF>
201
+ </metadata>
202
+ <g
203
+ inkscape:label="Layer 1"
204
+ inkscape:groupmode="layer"
205
+ id="layer1"
206
+ transform="translate(0,-652.36216)">
207
+ <g
208
+ transform="matrix(0.95915654,0,0,0.95915654,-93.20763,235.23614)"
209
+ id="g4271">
210
+ <ellipse
211
+ style="opacity:1;fill:#004900;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"
212
+ id="ellipse4273"
213
+ cx="135.05489"
214
+ cy="680.42645"
215
+ rx="24.680117"
216
+ ry="19.097431" />
217
+ <ellipse
218
+ cy="680.42645"
219
+ cx="164.01987"
220
+ id="ellipse4275"
221
+ style="opacity:1;fill:#004900;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"
222
+ rx="24.680117"
223
+ ry="19.097431" />
224
+ <ellipse
225
+ cy="829.79926"
226
+ cx="133.83817"
227
+ id="ellipse4277"
228
+ style="opacity:1;fill:#004900;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
+ rx="24.680117"
230
+ ry="19.097431" />
231
+ <path
232
+ style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
233
+ d="m 149.58492,818.81626 0,-134.67362"
234
+ id="path4279"
235
+ inkscape:connector-curvature="0" />
236
+ <ellipse
237
+ style="opacity:1;fill:#004900;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"
238
+ id="ellipse4281"
239
+ cx="165.64214"
240
+ cy="829.79926"
241
+ rx="24.680117"
242
+ ry="19.097431" />
243
+ <ellipse
244
+ style="opacity:1;fill:#004900;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"
245
+ id="ellipse4283"
246
+ cx="160.99481"
247
+ cy="748.83081"
248
+ rx="32.786533"
249
+ ry="25.370163" />
250
+ <ellipse
251
+ cy="748.83081"
252
+ cx="138.32327"
253
+ id="ellipse4285"
254
+ style="opacity:1;fill:#004900;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"
255
+ rx="32.786533"
256
+ ry="25.370163" />
257
+ <path
258
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
259
+ d="m 149.58492,685.72349 0,37.84241"
260
+ id="path4287"
261
+ inkscape:connector-curvature="0" />
262
+ <path
263
+ inkscape:connector-curvature="0"
264
+ id="path4289"
265
+ d="m 149.58491,777.56215 0,46.73373"
266
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
267
+ <ellipse
268
+ ry="8.6974945"
269
+ rx="8.9920015"
270
+ style="opacity:1;fill:#ffffff;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"
271
+ id="ellipse4291"
272
+ cx="149.58495"
273
+ cy="683.5329" />
274
+ <path
275
+ inkscape:connector-curvature="0"
276
+ id="path4293"
277
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
278
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
279
+ sodipodi:nodetypes="cc" />
280
+ <path
281
+ sodipodi:nodetypes="cc"
282
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
283
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
284
+ id="path4295"
285
+ inkscape:connector-curvature="0" />
286
+ </g>
287
+ <g
288
+ transform="matrix(0.95915654,0,0,0.95915654,109.62944,235.23614)"
289
+ id="g4297">
290
+ <ellipse
291
+ style="opacity:1;fill:#004900;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"
292
+ id="ellipse4299"
293
+ cx="135.05489"
294
+ cy="680.42645"
295
+ rx="24.680117"
296
+ ry="19.097431" />
297
+ <ellipse
298
+ cy="680.42645"
299
+ cx="164.01987"
300
+ id="ellipse4301"
301
+ style="opacity:1;fill:#004900;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"
302
+ rx="24.680117"
303
+ ry="19.097431" />
304
+ <ellipse
305
+ cy="829.79926"
306
+ cx="133.83817"
307
+ id="ellipse4303"
308
+ style="opacity:1;fill:#004900;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"
309
+ rx="24.680117"
310
+ ry="19.097431" />
311
+ <path
312
+ style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
313
+ d="m 149.58492,818.81626 0,-134.67362"
314
+ id="path4305"
315
+ inkscape:connector-curvature="0" />
316
+ <ellipse
317
+ style="opacity:1;fill:#004900;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"
318
+ id="ellipse4307"
319
+ cx="165.64214"
320
+ cy="829.79926"
321
+ rx="24.680117"
322
+ ry="19.097431" />
323
+ <ellipse
324
+ style="opacity:1;fill:#004900;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"
325
+ id="ellipse4309"
326
+ cx="160.99481"
327
+ cy="748.83081"
328
+ rx="32.786533"
329
+ ry="25.370163" />
330
+ <ellipse
331
+ cy="748.83081"
332
+ cx="138.32327"
333
+ id="ellipse4311"
334
+ style="opacity:1;fill:#004900;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"
335
+ rx="32.786533"
336
+ ry="25.370163" />
337
+ <path
338
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
339
+ d="m 149.58492,685.72349 0,37.84241"
340
+ id="path4313"
341
+ inkscape:connector-curvature="0" />
342
+ <path
343
+ inkscape:connector-curvature="0"
344
+ id="path4315"
345
+ d="m 149.58491,777.56215 0,46.73373"
346
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
347
+ <ellipse
348
+ ry="8.6974945"
349
+ rx="8.9920015"
350
+ style="opacity:1;fill:#ffffff;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"
351
+ id="ellipse4317"
352
+ cx="149.58495"
353
+ cy="683.5329" />
354
+ <path
355
+ inkscape:connector-curvature="0"
356
+ id="path4319"
357
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
358
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
359
+ sodipodi:nodetypes="cc" />
360
+ <path
361
+ sodipodi:nodetypes="cc"
362
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
363
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
364
+ id="path4321"
365
+ inkscape:connector-curvature="0" />
366
+ </g>
367
+ <g
368
+ id="g4337"
369
+ transform="matrix(0.95915654,0,0,0.95915654,6.112593,130.64527)">
370
+ <ellipse
371
+ ry="19.097431"
372
+ rx="24.680117"
373
+ cy="680.42645"
374
+ cx="135.05489"
375
+ id="ellipse4339"
376
+ 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" />
377
+ <ellipse
378
+ ry="19.097431"
379
+ rx="24.680117"
380
+ 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"
381
+ id="ellipse4341"
382
+ cx="164.01987"
383
+ cy="680.42645" />
384
+ <ellipse
385
+ ry="19.097431"
386
+ rx="24.680117"
387
+ 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"
388
+ id="ellipse4343"
389
+ cx="133.83817"
390
+ cy="829.79926" />
391
+ <path
392
+ inkscape:connector-curvature="0"
393
+ id="path4345"
394
+ d="m 149.58492,818.81626 0,-134.67362"
395
+ 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" />
396
+ <ellipse
397
+ ry="19.097431"
398
+ rx="24.680117"
399
+ cy="829.79926"
400
+ cx="165.64214"
401
+ id="ellipse4347"
402
+ 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" />
403
+ <ellipse
404
+ ry="25.370163"
405
+ rx="32.786533"
406
+ cy="748.83081"
407
+ cx="160.99481"
408
+ id="ellipse4349"
409
+ 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" />
410
+ <ellipse
411
+ ry="25.370163"
412
+ rx="32.786533"
413
+ 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"
414
+ id="ellipse4351"
415
+ cx="138.32327"
416
+ cy="748.83081" />
417
+ <path
418
+ inkscape:connector-curvature="0"
419
+ id="path4353"
420
+ d="m 149.58492,685.72349 0,37.84241"
421
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
422
+ <path
423
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
424
+ d="m 149.58491,777.56215 0,46.73373"
425
+ id="path4355"
426
+ inkscape:connector-curvature="0" />
427
+ <ellipse
428
+ cy="683.5329"
429
+ cx="149.58495"
430
+ id="ellipse4357"
431
+ style="opacity:1;fill:#ffffff;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"
432
+ rx="8.9920015"
433
+ ry="8.6974945" />
434
+ <path
435
+ sodipodi:nodetypes="cc"
436
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
437
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
438
+ id="path4359"
439
+ inkscape:connector-curvature="0" />
440
+ <path
441
+ inkscape:connector-curvature="0"
442
+ id="path4361"
443
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
444
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
445
+ sodipodi:nodetypes="cc" />
446
+ </g>
447
+ <g
448
+ id="g4307"
449
+ transform="matrix(0.95915654,0,0,0.95915654,109.62944,26.80356)">
450
+ <ellipse
451
+ ry="19.097431"
452
+ rx="24.680117"
453
+ cy="680.42645"
454
+ cx="135.05489"
455
+ id="ellipse4310"
456
+ style="opacity:1;fill:#004900;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" />
457
+ <ellipse
458
+ ry="19.097431"
459
+ rx="24.680117"
460
+ style="opacity:1;fill:#004900;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"
461
+ id="ellipse4312"
462
+ cx="164.01987"
463
+ cy="680.42645" />
464
+ <ellipse
465
+ ry="19.097431"
466
+ rx="24.680117"
467
+ style="opacity:1;fill:#004900;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"
468
+ id="ellipse4315"
469
+ cx="133.83817"
470
+ cy="829.79926" />
471
+ <path
472
+ inkscape:connector-curvature="0"
473
+ id="path4317"
474
+ d="m 149.58492,818.81626 0,-134.67362"
475
+ style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
476
+ <ellipse
477
+ ry="19.097431"
478
+ rx="24.680117"
479
+ cy="829.79926"
480
+ cx="165.64214"
481
+ id="ellipse4319"
482
+ style="opacity:1;fill:#004900;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" />
483
+ <ellipse
484
+ ry="25.370163"
485
+ rx="32.786533"
486
+ cy="748.83081"
487
+ cx="160.99481"
488
+ id="ellipse4321"
489
+ style="opacity:1;fill:#004900;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
+ <ellipse
491
+ ry="25.370163"
492
+ rx="32.786533"
493
+ style="opacity:1;fill:#004900;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"
494
+ id="ellipse4323"
495
+ cx="138.32327"
496
+ cy="748.83081" />
497
+ <path
498
+ inkscape:connector-curvature="0"
499
+ id="path4325"
500
+ d="m 149.58492,685.72349 0,37.84241"
501
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
502
+ <path
503
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
504
+ d="m 149.58491,777.56215 0,46.73373"
505
+ id="path4327"
506
+ inkscape:connector-curvature="0" />
507
+ <ellipse
508
+ cy="683.5329"
509
+ cx="149.58495"
510
+ id="ellipse4329"
511
+ style="opacity:1;fill:#ffffff;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"
512
+ rx="8.9920015"
513
+ ry="8.6974945" />
514
+ <path
515
+ sodipodi:nodetypes="cc"
516
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
517
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
518
+ id="path4331"
519
+ inkscape:connector-curvature="0" />
520
+ <path
521
+ inkscape:connector-curvature="0"
522
+ id="path4333"
523
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
524
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
525
+ sodipodi:nodetypes="cc" />
526
+ </g>
527
+ <g
528
+ id="g4335"
529
+ transform="matrix(0.95915654,0,0,0.95915654,-93.20763,26.80356)">
530
+ <ellipse
531
+ ry="19.097431"
532
+ rx="24.680117"
533
+ cy="680.42645"
534
+ cx="135.05489"
535
+ id="ellipse4337"
536
+ style="opacity:1;fill:#004900;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" />
537
+ <ellipse
538
+ ry="19.097431"
539
+ rx="24.680117"
540
+ style="opacity:1;fill:#004900;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"
541
+ id="ellipse4340"
542
+ cx="164.01987"
543
+ cy="680.42645" />
544
+ <ellipse
545
+ ry="19.097431"
546
+ rx="24.680117"
547
+ style="opacity:1;fill:#004900;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"
548
+ id="ellipse4342"
549
+ cx="133.83817"
550
+ cy="829.79926" />
551
+ <path
552
+ inkscape:connector-curvature="0"
553
+ id="path4344"
554
+ d="m 149.58492,818.81626 0,-134.67362"
555
+ style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
556
+ <ellipse
557
+ ry="19.097431"
558
+ rx="24.680117"
559
+ cy="829.79926"
560
+ cx="165.64214"
561
+ id="ellipse4346"
562
+ style="opacity:1;fill:#004900;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" />
563
+ <ellipse
564
+ ry="25.370163"
565
+ rx="32.786533"
566
+ cy="748.83081"
567
+ cx="160.99481"
568
+ id="ellipse4348"
569
+ style="opacity:1;fill:#004900;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" />
570
+ <ellipse
571
+ ry="25.370163"
572
+ rx="32.786533"
573
+ style="opacity:1;fill:#004900;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"
574
+ id="ellipse4350"
575
+ cx="138.32327"
576
+ cy="748.83081" />
577
+ <path
578
+ inkscape:connector-curvature="0"
579
+ id="path4352"
580
+ d="m 149.58492,685.72349 0,37.84241"
581
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
582
+ <path
583
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
584
+ d="m 149.58491,777.56215 0,46.73373"
585
+ id="path4354"
586
+ inkscape:connector-curvature="0" />
587
+ <ellipse
588
+ cy="683.5329"
589
+ cx="149.58495"
590
+ id="ellipse4356"
591
+ style="opacity:1;fill:#ffffff;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"
592
+ rx="8.9920015"
593
+ ry="8.6974945" />
594
+ <path
595
+ sodipodi:nodetypes="cc"
596
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
597
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
598
+ id="path4358"
599
+ inkscape:connector-curvature="0" />
600
+ <path
601
+ inkscape:connector-curvature="0"
602
+ id="path4360"
603
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
604
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
605
+ sodipodi:nodetypes="cc" />
606
+ </g>
607
+ </g>
608
+ </svg>