kokopu-react 1.6.0 → 1.7.0

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 (102) hide show
  1. package/.nycrc.yml +1 -1
  2. package/CHANGELOG.md +8 -0
  3. package/README.md +2 -2
  4. package/dist/lib/Chessboard.js +21 -13
  5. package/dist/lib/impl/colorsets.js +44 -44
  6. package/dist/lib/impl/util.js +1 -1
  7. package/dist/lib/markers.js +7 -7
  8. package/doc_src/demo/PageChessboardInteraction.js +4 -3
  9. package/doc_src/demo/PageChessboardMove.js +36 -5
  10. package/doc_src/demo/demo.css +4 -0
  11. package/{graphic_test_app → graphic_test_src}/01_marker_icons.js +0 -0
  12. package/{graphic_test_app → graphic_test_src}/02_chessboard_simple.js +0 -0
  13. package/{graphic_test_app → graphic_test_src}/03_chessboard_flipped.js +0 -0
  14. package/{graphic_test_app → graphic_test_src}/04_chessboard_annotations.js +8 -8
  15. package/{graphic_test_app → graphic_test_src}/05_chessboard_move.js +4 -4
  16. package/{graphic_test_app → graphic_test_src}/06_chessboard_theme.js +2 -2
  17. package/{graphic_test_app → graphic_test_src}/07_chessboard_click_squares.js +0 -0
  18. package/{graphic_test_app → graphic_test_src}/08_chessboard_move_pieces.js +1 -1
  19. package/{graphic_test_app → graphic_test_src}/09_chessboard_edit_arrows.js +0 -0
  20. package/{graphic_test_app → graphic_test_src}/10_chessboard_play_moves.js +1 -1
  21. package/{graphic_test_app → graphic_test_src}/11_chessboard_play_promotions.js +0 -0
  22. package/{graphic_test_app → graphic_test_src}/12_movetext_simple.js +0 -0
  23. package/{graphic_test_app → graphic_test_src}/13_movetext_error.js +0 -0
  24. package/{graphic_test_app → graphic_test_src}/14_movetext_html.js +0 -0
  25. package/{graphic_test_app → graphic_test_src}/15_movetext_options.js +0 -4
  26. package/{graphic_test_app → graphic_test_src}/16_movetext_interaction.js +0 -0
  27. package/{graphic_test_app → graphic_test_src}/common/dummy.pgn +0 -0
  28. package/{graphic_test_app → graphic_test_src}/common/games.pgn +0 -0
  29. package/{graphic_test_app → graphic_test_src}/common/heartbeat.txt +0 -0
  30. package/{graphic_test_app → graphic_test_src}/common/smiley.png +0 -0
  31. package/{graphic_test_app → graphic_test_src}/common/test_app.css +0 -0
  32. package/{graphic_test_app → graphic_test_src}/common/test_app.js +3 -2
  33. package/graphics/chess_sprites/cburnett/bb.svg +45 -0
  34. package/graphics/chess_sprites/cburnett/bk.svg +47 -0
  35. package/graphics/chess_sprites/cburnett/bn.svg +37 -0
  36. package/graphics/chess_sprites/cburnett/bp.svg +19 -0
  37. package/graphics/chess_sprites/cburnett/bq.svg +58 -0
  38. package/graphics/chess_sprites/cburnett/br.svg +60 -0
  39. package/graphics/chess_sprites/cburnett/bx.svg +56 -0
  40. package/graphics/chess_sprites/cburnett/wb.svg +48 -0
  41. package/graphics/chess_sprites/cburnett/wk.svg +26 -0
  42. package/graphics/chess_sprites/cburnett/wn.svg +37 -0
  43. package/graphics/chess_sprites/cburnett/wp.svg +19 -0
  44. package/graphics/chess_sprites/cburnett/wq.svg +60 -0
  45. package/graphics/chess_sprites/cburnett/wr.svg +44 -0
  46. package/graphics/chess_sprites/cburnett/wx.svg +56 -0
  47. package/graphics/chess_sprites/generate_sprites.sh +135 -0
  48. package/graphics/chess_sprites/mmonge/celtic-bx.svg +112 -0
  49. package/graphics/chess_sprites/mmonge/celtic-wx.svg +111 -0
  50. package/graphics/chess_sprites/mmonge/celtic.svg +1576 -0
  51. package/graphics/chess_sprites/mmonge/eyes-spatial-bx.svg +101 -0
  52. package/graphics/chess_sprites/mmonge/eyes-spatial-wx.svg +100 -0
  53. package/graphics/chess_sprites/mmonge/eyes.svg +2538 -0
  54. package/graphics/chess_sprites/mmonge/fantasy-bx.svg +112 -0
  55. package/graphics/chess_sprites/mmonge/fantasy-wx.svg +111 -0
  56. package/graphics/chess_sprites/mmonge/fantasy.svg +5497 -0
  57. package/graphics/chess_sprites/mmonge/fantasy_alt.svg +3742 -0
  58. package/graphics/chess_sprites/mmonge/freak.svg +3479 -0
  59. package/graphics/chess_sprites/mmonge/prmi.svg +6776 -0
  60. package/graphics/chess_sprites/mmonge/skulls-bx.svg +124 -0
  61. package/graphics/chess_sprites/mmonge/skulls-wx.svg +111 -0
  62. package/graphics/chess_sprites/mmonge/skulls.svg +12978 -0
  63. package/graphics/chess_sprites/mmonge/spatial.svg +1223 -0
  64. package/package.json +21 -19
  65. package/scripts/{test_graphic/clean-graphic-output.js → clean-graphic-output.js} +1 -1
  66. package/scripts/{test_graphic/docker-compose.yml → docker-compose.yml} +3 -3
  67. package/scripts/{test_graphic/webpack-config.js → test-graphic.webpack.config.js} +7 -6
  68. package/scripts/{test_headless.webpack-config.js → test-headless.webpack.config.js} +2 -1
  69. package/src/Chessboard.js +21 -13
  70. package/src/impl/colorsets.js +44 -44
  71. package/src/impl/util.js +1 -1
  72. package/src/markers.js +7 -7
  73. package/test/1_markers.js +14 -14
  74. package/test/common/graphic.js +2 -2
  75. package/test/references/04_chessboard_annotations/0.png +0 -0
  76. package/test/references/04_chessboard_annotations/1.png +0 -0
  77. package/test/references/04_chessboard_annotations/2.png +0 -0
  78. package/test/references/04_chessboard_annotations/3.png +0 -0
  79. package/test/references/04_chessboard_annotations/4.png +0 -0
  80. package/test/references/04_chessboard_annotations/5.png +0 -0
  81. package/test/references/05_chessboard_move/4.png +0 -0
  82. package/test/references/05_chessboard_move/5.png +0 -0
  83. package/test/references/05_chessboard_move/6.png +0 -0
  84. package/test/references/06_chessboard_theme/0.png +0 -0
  85. package/test/references/06_chessboard_theme/1.png +0 -0
  86. package/test/references/06_chessboard_theme/2.png +0 -0
  87. package/test/references/06_chessboard_theme/3.png +0 -0
  88. package/test/references/06_chessboard_theme/4.png +0 -0
  89. package/test/references/06_chessboard_theme/5.png +0 -0
  90. package/test/references/06_chessboard_theme/6.png +0 -0
  91. package/test/references/06_chessboard_theme/7.png +0 -0
  92. package/test/references/06_chessboard_theme/8.png +0 -0
  93. package/test/references/08_chessboard_move_pieces/over_arrow_marker.png +0 -0
  94. package/test/references/08_chessboard_move_pieces/over_square_marker.png +0 -0
  95. package/test/references/08_chessboard_move_pieces/over_text_marker.png +0 -0
  96. package/test/references/09_chessboard_edit_arrows/base_1.png +0 -0
  97. package/test/references/09_chessboard_edit_arrows/base_2.png +0 -0
  98. package/test/references/09_chessboard_edit_arrows/null_vector.png +0 -0
  99. package/test/references/09_chessboard_edit_arrows/over_arrow_marker.png +0 -0
  100. package/test/references/09_chessboard_edit_arrows/over_square_marker.png +0 -0
  101. package/test/references/10_chessboard_play_moves/castling_move.png +0 -0
  102. package/test/references/10_chessboard_play_moves/regular_move_2.png +0 -0
@@ -0,0 +1,1576 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
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:xlink="http://www.w3.org/1999/xlink"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ width="1200"
14
+ height="400"
15
+ id="svg2722"
16
+ sodipodi:version="0.32"
17
+ inkscape:version="0.48.1 r9760"
18
+ version="1.0"
19
+ sodipodi:docname="celtic.svg"
20
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
21
+ <defs
22
+ id="defs2724">
23
+ <linearGradient
24
+ id="linearGradientWhitePiecesBorder">
25
+ <stop
26
+ style="stop-color:#000000;stop-opacity:1;"
27
+ offset="0"
28
+ id="stop7935" />
29
+ <stop
30
+ style="stop-color:#000000;stop-opacity:1;"
31
+ offset="1"
32
+ id="stop7937" />
33
+ </linearGradient>
34
+ <linearGradient
35
+ id="linearGradientWhitePieces">
36
+ <stop
37
+ id="stop7929"
38
+ offset="0"
39
+ style="stop-color:#ede3de;stop-opacity:1;" />
40
+ <stop
41
+ id="stop7931"
42
+ offset="1"
43
+ style="stop-color:#8a6737;stop-opacity:1;" />
44
+ </linearGradient>
45
+ <linearGradient
46
+ id="linearGradientBlackPiecesBorder">
47
+ <stop
48
+ style="stop-color:#808080;stop-opacity:1;"
49
+ offset="0"
50
+ id="stop7192" />
51
+ <stop
52
+ style="stop-color:#808080;stop-opacity:1;"
53
+ offset="1"
54
+ id="stop7194" />
55
+ </linearGradient>
56
+ <linearGradient
57
+ id="linearGradientBlackPieces">
58
+ <stop
59
+ id="stop2268"
60
+ offset="0"
61
+ style="stop-color:#000e1c;stop-opacity:1;" />
62
+ <stop
63
+ id="stop2270"
64
+ offset="1"
65
+ style="stop-color:#50506f;stop-opacity:1;" />
66
+ </linearGradient>
67
+ <linearGradient
68
+ inkscape:collect="always"
69
+ xlink:href="#linearGradientWhitePiecesBorder"
70
+ id="linearGradient3204"
71
+ gradientUnits="userSpaceOnUse"
72
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-1090.1432,131.11598)"
73
+ x1="1081.4321"
74
+ y1="164.36575"
75
+ x2="1122.5205"
76
+ y2="163.4315" />
77
+ <linearGradient
78
+ inkscape:collect="always"
79
+ xlink:href="#linearGradientWhitePiecesBorder"
80
+ id="linearGradient3207"
81
+ gradientUnits="userSpaceOnUse"
82
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-1111.7492,89.858365)"
83
+ x1="1075.8267"
84
+ y1="163.4315"
85
+ x2="1122.5205"
86
+ y2="163.4315" />
87
+ <linearGradient
88
+ inkscape:collect="always"
89
+ xlink:href="#linearGradientWhitePiecesBorder"
90
+ id="linearGradient3210"
91
+ gradientUnits="userSpaceOnUse"
92
+ gradientTransform="matrix(1.3389577,0,0,1.5265609,-855.97561,151.24228)"
93
+ x1="660.51819"
94
+ y1="90.376785"
95
+ x2="757.72223"
96
+ y2="103.71878" />
97
+ <linearGradient
98
+ inkscape:collect="always"
99
+ xlink:href="#linearGradientWhitePiecesBorder"
100
+ id="linearGradient3213"
101
+ gradientUnits="userSpaceOnUse"
102
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-1081.3063,78.358293)"
103
+ x1="1075.8267"
104
+ y1="163.4315"
105
+ x2="1122.5205"
106
+ y2="163.4315" />
107
+ <linearGradient
108
+ inkscape:collect="always"
109
+ xlink:href="#linearGradientWhitePiecesBorder"
110
+ id="linearGradient3216"
111
+ gradientUnits="userSpaceOnUse"
112
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-1088.0259,146.67243)"
113
+ x1="1075.8267"
114
+ y1="163.4315"
115
+ x2="1122.5205"
116
+ y2="163.4315" />
117
+ <linearGradient
118
+ inkscape:collect="always"
119
+ xlink:href="#linearGradientWhitePiecesBorder"
120
+ id="linearGradient3219"
121
+ gradientUnits="userSpaceOnUse"
122
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-1076.7187,182.65363)"
123
+ x1="1075.8267"
124
+ y1="163.4315"
125
+ x2="1122.5205"
126
+ y2="163.4315" />
127
+ <linearGradient
128
+ inkscape:collect="always"
129
+ xlink:href="#linearGradientWhitePiecesBorder"
130
+ id="linearGradient3222"
131
+ gradientUnits="userSpaceOnUse"
132
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-1076.7187,196.65372)"
133
+ x1="1075.8267"
134
+ y1="163.4315"
135
+ x2="1122.5205"
136
+ y2="163.4315" />
137
+ <linearGradient
138
+ inkscape:collect="always"
139
+ xlink:href="#linearGradientWhitePieces"
140
+ id="linearGradient3225"
141
+ gradientUnits="userSpaceOnUse"
142
+ gradientTransform="matrix(1.3389577,0,0,1.5265609,-849.98684,151.24228)"
143
+ x1="660.51819"
144
+ y1="90.376785"
145
+ x2="757.72223"
146
+ y2="103.71878" />
147
+ <linearGradient
148
+ inkscape:collect="always"
149
+ xlink:href="#linearGradientWhitePiecesBorder"
150
+ id="linearGradient3227"
151
+ gradientUnits="userSpaceOnUse"
152
+ gradientTransform="matrix(1.3389577,0,0,1.5265609,-849.98684,151.24228)"
153
+ x1="660.51819"
154
+ y1="90.376785"
155
+ x2="757.72223"
156
+ y2="103.71878" />
157
+ <linearGradient
158
+ inkscape:collect="always"
159
+ xlink:href="#linearGradientWhitePiecesBorder"
160
+ id="linearGradient3231"
161
+ gradientUnits="userSpaceOnUse"
162
+ gradientTransform="matrix(0.92208958,0,0,0.92208958,64.378515,195.70774)"
163
+ x1="824.63312"
164
+ y1="119.49339"
165
+ x2="992.65851"
166
+ y2="168.48677" />
167
+ <linearGradient
168
+ inkscape:collect="always"
169
+ xlink:href="#linearGradientWhitePiecesBorder"
170
+ id="linearGradient3234"
171
+ gradientUnits="userSpaceOnUse"
172
+ gradientTransform="matrix(0.92208958,0,0,0.92208958,70.520128,191.19823)"
173
+ x1="906.48578"
174
+ y1="78.619972"
175
+ x2="986.08551"
176
+ y2="78.619972" />
177
+ <linearGradient
178
+ inkscape:collect="always"
179
+ xlink:href="#linearGradientWhitePiecesBorder"
180
+ id="linearGradient3237"
181
+ gradientUnits="userSpaceOnUse"
182
+ gradientTransform="matrix(0.92208958,0,0,0.92208958,68.523871,205.17203)"
183
+ x1="906.48578"
184
+ y1="78.619972"
185
+ x2="986.08551"
186
+ y2="78.619972" />
187
+ <linearGradient
188
+ inkscape:collect="always"
189
+ xlink:href="#linearGradientWhitePiecesBorder"
190
+ id="linearGradient3240"
191
+ gradientUnits="userSpaceOnUse"
192
+ gradientTransform="matrix(0.92208958,0,0,0.92208958,70.367286,193.86357)"
193
+ x1="916.03479"
194
+ y1="100.62866"
195
+ x2="923.01733"
196
+ y2="100.62866" />
197
+ <linearGradient
198
+ inkscape:collect="always"
199
+ xlink:href="#linearGradientWhitePiecesBorder"
200
+ id="linearGradient3243"
201
+ gradientUnits="userSpaceOnUse"
202
+ gradientTransform="matrix(0.92208958,0,0,0.92208958,70.828332,200.77924)"
203
+ x1="828.48736"
204
+ y1="120.72367"
205
+ x2="836.35859"
206
+ y2="120.72367" />
207
+ <linearGradient
208
+ inkscape:collect="always"
209
+ xlink:href="#linearGradientWhitePiecesBorder"
210
+ id="linearGradient3246"
211
+ gradientUnits="userSpaceOnUse"
212
+ gradientTransform="matrix(0.89304794,-0.22959621,0.22959621,0.89304794,81.552855,402.74644)"
213
+ x1="866.44156"
214
+ y1="74.656575"
215
+ x2="876.04205"
216
+ y2="74.656575" />
217
+ <linearGradient
218
+ inkscape:collect="always"
219
+ xlink:href="#linearGradientWhitePiecesBorder"
220
+ id="linearGradient3249"
221
+ gradientUnits="userSpaceOnUse"
222
+ gradientTransform="matrix(0.89304794,-0.22959621,0.22959621,0.89304794,79.478155,404.12957)"
223
+ x1="859.85814"
224
+ y1="69.920009"
225
+ x2="880.83843"
226
+ y2="69.920009" />
227
+ <linearGradient
228
+ inkscape:collect="always"
229
+ xlink:href="#linearGradientWhitePieces"
230
+ id="linearGradient3252"
231
+ gradientUnits="userSpaceOnUse"
232
+ gradientTransform="matrix(0.92208958,0,0,0.92208958,70.367286,195.70774)"
233
+ x1="824.63312"
234
+ y1="119.49339"
235
+ x2="992.65851"
236
+ y2="168.48677" />
237
+ <linearGradient
238
+ inkscape:collect="always"
239
+ xlink:href="#linearGradientWhitePiecesBorder"
240
+ id="linearGradient3254"
241
+ gradientUnits="userSpaceOnUse"
242
+ gradientTransform="matrix(0.92208958,0,0,0.92208958,70.367286,195.70774)"
243
+ x1="824.63312"
244
+ y1="119.49339"
245
+ x2="992.65851"
246
+ y2="168.48677" />
247
+ <linearGradient
248
+ inkscape:collect="always"
249
+ xlink:href="#linearGradientWhitePiecesBorder"
250
+ id="linearGradient3258"
251
+ gradientUnits="userSpaceOnUse"
252
+ gradientTransform="matrix(1.3389577,0,0,1.5265609,-657.65413,150.24227)"
253
+ x1="660.51819"
254
+ y1="90.376785"
255
+ x2="757.72223"
256
+ y2="103.71878" />
257
+ <linearGradient
258
+ inkscape:collect="always"
259
+ xlink:href="#linearGradientWhitePiecesBorder"
260
+ id="linearGradient3261"
261
+ gradientUnits="userSpaceOnUse"
262
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-881.59827,154.83975)"
263
+ x1="1075.8267"
264
+ y1="163.4315"
265
+ x2="1122.5205"
266
+ y2="163.4315" />
267
+ <linearGradient
268
+ inkscape:collect="always"
269
+ xlink:href="#linearGradientWhitePiecesBorder"
270
+ id="linearGradient3264"
271
+ gradientUnits="userSpaceOnUse"
272
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-878.89623,184.65365)"
273
+ x1="1075.8267"
274
+ y1="163.4315"
275
+ x2="1122.5205"
276
+ y2="163.4315" />
277
+ <linearGradient
278
+ inkscape:collect="always"
279
+ xlink:href="#linearGradientWhitePiecesBorder"
280
+ id="linearGradient3267"
281
+ gradientUnits="userSpaceOnUse"
282
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-878.89623,200.65375)"
283
+ x1="1075.8267"
284
+ y1="163.4315"
285
+ x2="1122.5205"
286
+ y2="163.4315" />
287
+ <linearGradient
288
+ inkscape:collect="always"
289
+ xlink:href="#linearGradientWhitePieces"
290
+ id="linearGradient3270"
291
+ gradientUnits="userSpaceOnUse"
292
+ gradientTransform="matrix(1.3389577,0,0,1.5265609,-651.66536,150.24227)"
293
+ x1="660.51819"
294
+ y1="90.376785"
295
+ x2="757.72223"
296
+ y2="103.71878" />
297
+ <linearGradient
298
+ inkscape:collect="always"
299
+ xlink:href="#linearGradientWhitePiecesBorder"
300
+ id="linearGradient3272"
301
+ gradientUnits="userSpaceOnUse"
302
+ gradientTransform="matrix(1.3389577,0,0,1.5265609,-651.66536,150.24227)"
303
+ x1="660.51819"
304
+ y1="90.376785"
305
+ x2="757.72223"
306
+ y2="103.71878" />
307
+ <linearGradient
308
+ inkscape:collect="always"
309
+ xlink:href="#linearGradientWhitePiecesBorder"
310
+ id="linearGradient3276"
311
+ gradientUnits="userSpaceOnUse"
312
+ gradientTransform="matrix(1.3389577,0,0,1.5236944,-453.66161,149.33756)"
313
+ x1="660.51819"
314
+ y1="90.376785"
315
+ x2="757.72223"
316
+ y2="103.71878" />
317
+ <linearGradient
318
+ inkscape:collect="always"
319
+ xlink:href="#linearGradientWhitePiecesBorder"
320
+ id="linearGradient3279"
321
+ gradientUnits="userSpaceOnUse"
322
+ gradientTransform="matrix(1.0683705,0,0,1.0683705,-690.07806,90.974124)"
323
+ x1="1075.8267"
324
+ y1="163.4315"
325
+ x2="1122.5205"
326
+ y2="163.4315" />
327
+ <linearGradient
328
+ inkscape:collect="always"
329
+ xlink:href="#linearGradientWhitePiecesBorder"
330
+ id="linearGradient3282"
331
+ gradientUnits="userSpaceOnUse"
332
+ gradientTransform="matrix(1.0683705,0,0,1.0683705,-668.55167,108.14472)"
333
+ x1="1075.8267"
334
+ y1="163.4315"
335
+ x2="1122.5205"
336
+ y2="163.4315" />
337
+ <linearGradient
338
+ inkscape:collect="always"
339
+ xlink:href="#linearGradientWhitePiecesBorder"
340
+ id="linearGradient3285"
341
+ gradientUnits="userSpaceOnUse"
342
+ gradientTransform="matrix(1.0683705,0,0,1.0683705,-668.55167,179.09672)"
343
+ x1="1075.8267"
344
+ y1="163.4315"
345
+ x2="1122.5205"
346
+ y2="163.4315" />
347
+ <linearGradient
348
+ inkscape:collect="always"
349
+ xlink:href="#linearGradientWhitePiecesBorder"
350
+ id="linearGradient3288"
351
+ gradientUnits="userSpaceOnUse"
352
+ gradientTransform="matrix(1.0683705,0,0,1.0683705,-673.84504,197.53703)"
353
+ x1="1075.8267"
354
+ y1="163.4315"
355
+ x2="1122.5205"
356
+ y2="163.4315" />
357
+ <linearGradient
358
+ inkscape:collect="always"
359
+ xlink:href="#linearGradientWhitePieces"
360
+ id="linearGradient3291"
361
+ gradientUnits="userSpaceOnUse"
362
+ gradientTransform="matrix(1.3389577,0,0,1.5236944,-447.67284,149.33756)"
363
+ x1="660.51819"
364
+ y1="90.376785"
365
+ x2="757.72223"
366
+ y2="103.71878" />
367
+ <linearGradient
368
+ inkscape:collect="always"
369
+ xlink:href="#linearGradientWhitePiecesBorder"
370
+ id="linearGradient3293"
371
+ gradientUnits="userSpaceOnUse"
372
+ gradientTransform="matrix(1.3389577,0,0,1.5236944,-447.67284,149.33756)"
373
+ x1="660.51819"
374
+ y1="90.376785"
375
+ x2="757.72223"
376
+ y2="103.71878" />
377
+ <linearGradient
378
+ inkscape:collect="always"
379
+ xlink:href="#linearGradientWhitePiecesBorder"
380
+ id="linearGradient3297"
381
+ gradientUnits="userSpaceOnUse"
382
+ gradientTransform="matrix(0.13841417,0,0,0.13870064,987.79605,226.61867)"
383
+ x1="477.83588"
384
+ y1="745.69482"
385
+ x2="1070.0619"
386
+ y2="749.1748" />
387
+ <linearGradient
388
+ inkscape:collect="always"
389
+ xlink:href="#linearGradientWhitePiecesBorder"
390
+ id="linearGradient3300"
391
+ gradientUnits="userSpaceOnUse"
392
+ gradientTransform="matrix(0.96536025,0,0,0.96536025,37.962697,148.44011)"
393
+ x1="1075.8267"
394
+ y1="163.4315"
395
+ x2="1122.5205"
396
+ y2="163.4315" />
397
+ <linearGradient
398
+ inkscape:collect="always"
399
+ xlink:href="#linearGradientWhitePiecesBorder"
400
+ id="linearGradient3303"
401
+ gradientUnits="userSpaceOnUse"
402
+ gradientTransform="matrix(0.96536025,0,0,0.96536025,37.962697,183.12756)"
403
+ x1="1075.8267"
404
+ y1="163.4315"
405
+ x2="1122.5205"
406
+ y2="163.4315" />
407
+ <linearGradient
408
+ inkscape:collect="always"
409
+ xlink:href="#linearGradientWhitePiecesBorder"
410
+ id="linearGradient3306"
411
+ gradientUnits="userSpaceOnUse"
412
+ gradientTransform="matrix(0.96536025,0,0,0.96536025,37.962697,216.01534)"
413
+ x1="1075.8267"
414
+ y1="163.4315"
415
+ x2="1122.5205"
416
+ y2="163.4315" />
417
+ <linearGradient
418
+ inkscape:collect="always"
419
+ xlink:href="#linearGradientWhitePieces"
420
+ id="linearGradient3309"
421
+ gradientUnits="userSpaceOnUse"
422
+ gradientTransform="matrix(0.13841417,0,0,0.13870064,994.85389,225.91288)"
423
+ x1="462.12891"
424
+ y1="776.05182"
425
+ x2="1135.1661"
426
+ y2="839.35919" />
427
+ <linearGradient
428
+ inkscape:collect="always"
429
+ xlink:href="#linearGradientWhitePiecesBorder"
430
+ id="linearGradient3311"
431
+ gradientUnits="userSpaceOnUse"
432
+ gradientTransform="matrix(0.13841417,0,0,0.13870064,994.85389,225.91288)"
433
+ x1="477.83588"
434
+ y1="745.69482"
435
+ x2="1070.0619"
436
+ y2="749.1748" />
437
+ <linearGradient
438
+ inkscape:collect="always"
439
+ xlink:href="#linearGradientWhitePiecesBorder"
440
+ id="linearGradient3316"
441
+ gradientUnits="userSpaceOnUse"
442
+ gradientTransform="matrix(1.3414767,0,0,1.5265609,-256.18016,144.6729)"
443
+ x1="683"
444
+ y1="74"
445
+ x2="739.5"
446
+ y2="69" />
447
+ <linearGradient
448
+ inkscape:collect="always"
449
+ xlink:href="#linearGradientWhitePiecesBorder"
450
+ id="linearGradient3319"
451
+ gradientUnits="userSpaceOnUse"
452
+ gradientTransform="matrix(1.0703804,0,0,1.0703804,-484.54564,115.73251)"
453
+ x1="1075.8267"
454
+ y1="163.4315"
455
+ x2="1122.5205"
456
+ y2="163.4315" />
457
+ <linearGradient
458
+ inkscape:collect="always"
459
+ xlink:href="#linearGradientWhitePiecesBorder"
460
+ id="linearGradient3322"
461
+ gradientUnits="userSpaceOnUse"
462
+ gradientTransform="matrix(1.0703804,0,0,1.0703804,-478.18164,137.83077)"
463
+ x1="1075.8267"
464
+ y1="163.4315"
465
+ x2="1122.5205"
466
+ y2="163.4315" />
467
+ <linearGradient
468
+ inkscape:collect="always"
469
+ xlink:href="#linearGradientWhitePiecesBorder"
470
+ id="linearGradient3325"
471
+ gradientUnits="userSpaceOnUse"
472
+ gradientTransform="matrix(1.0703804,0,0,1.0703804,-478.18164,180.78674)"
473
+ x1="1075.8267"
474
+ y1="163.4315"
475
+ x2="1122.5205"
476
+ y2="163.4315" />
477
+ <linearGradient
478
+ inkscape:collect="always"
479
+ xlink:href="#linearGradientWhitePiecesBorder"
480
+ id="linearGradient3328"
481
+ gradientUnits="userSpaceOnUse"
482
+ gradientTransform="matrix(1.0703804,0,0,1.0703804,-478.18164,197.91283)"
483
+ x1="1075.8267"
484
+ y1="163.4315"
485
+ x2="1122.5205"
486
+ y2="163.4315" />
487
+ <linearGradient
488
+ inkscape:collect="always"
489
+ xlink:href="#linearGradientWhitePieces"
490
+ id="linearGradient3331"
491
+ gradientUnits="userSpaceOnUse"
492
+ gradientTransform="matrix(1.3414767,0,0,1.5265609,-250.52328,147.50135)"
493
+ x1="683"
494
+ y1="74"
495
+ x2="739.5"
496
+ y2="69" />
497
+ <linearGradient
498
+ inkscape:collect="always"
499
+ xlink:href="#linearGradientWhitePiecesBorder"
500
+ id="linearGradient3333"
501
+ gradientUnits="userSpaceOnUse"
502
+ gradientTransform="matrix(1.3414767,0,0,1.5265609,-250.52328,147.50135)"
503
+ x1="683"
504
+ y1="74"
505
+ x2="739.5"
506
+ y2="69" />
507
+ <linearGradient
508
+ inkscape:collect="always"
509
+ xlink:href="#linearGradientBlackPiecesBorder"
510
+ id="linearGradient3336"
511
+ gradientUnits="userSpaceOnUse"
512
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-1090.1432,-68.884034)"
513
+ x1="1081.4321"
514
+ y1="164.36575"
515
+ x2="1122.5205"
516
+ y2="163.4315" />
517
+ <linearGradient
518
+ inkscape:collect="always"
519
+ xlink:href="#linearGradientBlackPiecesBorder"
520
+ id="linearGradient3339"
521
+ gradientUnits="userSpaceOnUse"
522
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-1111.7492,-110.14164)"
523
+ x1="1075.8267"
524
+ y1="163.4315"
525
+ x2="1122.5205"
526
+ y2="163.4315" />
527
+ <linearGradient
528
+ inkscape:collect="always"
529
+ xlink:href="#linearGradientBlackPiecesBorder"
530
+ id="linearGradient3342"
531
+ gradientUnits="userSpaceOnUse"
532
+ gradientTransform="matrix(1.3389577,0,0,1.5265609,-855.97561,-48.757737)"
533
+ x1="660.51819"
534
+ y1="90.376785"
535
+ x2="757.72223"
536
+ y2="103.71878" />
537
+ <linearGradient
538
+ inkscape:collect="always"
539
+ xlink:href="#linearGradientBlackPiecesBorder"
540
+ id="linearGradient3345"
541
+ gradientUnits="userSpaceOnUse"
542
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-1081.3063,-121.64171)"
543
+ x1="1075.8267"
544
+ y1="163.4315"
545
+ x2="1122.5205"
546
+ y2="163.4315" />
547
+ <linearGradient
548
+ inkscape:collect="always"
549
+ xlink:href="#linearGradientBlackPiecesBorder"
550
+ id="linearGradient3348"
551
+ gradientUnits="userSpaceOnUse"
552
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-1088.0259,-53.327586)"
553
+ x1="1075.8267"
554
+ y1="163.4315"
555
+ x2="1122.5205"
556
+ y2="163.4315" />
557
+ <linearGradient
558
+ inkscape:collect="always"
559
+ xlink:href="#linearGradientBlackPiecesBorder"
560
+ id="linearGradient3351"
561
+ gradientUnits="userSpaceOnUse"
562
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-1076.7187,-17.346379)"
563
+ x1="1075.8267"
564
+ y1="163.4315"
565
+ x2="1122.5205"
566
+ y2="163.4315" />
567
+ <linearGradient
568
+ inkscape:collect="always"
569
+ xlink:href="#linearGradientBlackPiecesBorder"
570
+ id="linearGradient3354"
571
+ gradientUnits="userSpaceOnUse"
572
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-1076.7187,-3.3462911)"
573
+ x1="1075.8267"
574
+ y1="163.4315"
575
+ x2="1122.5205"
576
+ y2="163.4315" />
577
+ <linearGradient
578
+ inkscape:collect="always"
579
+ xlink:href="#linearGradientBlackPieces"
580
+ id="linearGradient3357"
581
+ gradientUnits="userSpaceOnUse"
582
+ gradientTransform="matrix(1.3389577,0,0,1.5265609,-849.98684,-48.757737)"
583
+ x1="660.51819"
584
+ y1="90.376785"
585
+ x2="757.72223"
586
+ y2="103.71878" />
587
+ <linearGradient
588
+ inkscape:collect="always"
589
+ xlink:href="#linearGradientBlackPiecesBorder"
590
+ id="linearGradient3359"
591
+ gradientUnits="userSpaceOnUse"
592
+ gradientTransform="matrix(1.3389577,0,0,1.5265609,-849.98684,-48.757737)"
593
+ x1="660.51819"
594
+ y1="90.376785"
595
+ x2="757.72223"
596
+ y2="103.71878" />
597
+ <linearGradient
598
+ inkscape:collect="always"
599
+ xlink:href="#linearGradientBlackPiecesBorder"
600
+ id="linearGradient3363"
601
+ gradientUnits="userSpaceOnUse"
602
+ gradientTransform="matrix(0.92208958,0,0,0.92208958,64.378515,-4.292257)"
603
+ x1="824.63312"
604
+ y1="119.49339"
605
+ x2="992.65851"
606
+ y2="168.48677" />
607
+ <linearGradient
608
+ inkscape:collect="always"
609
+ xlink:href="#linearGradientBlackPiecesBorder"
610
+ id="linearGradient3366"
611
+ gradientUnits="userSpaceOnUse"
612
+ gradientTransform="matrix(0.92208958,0,0,0.92208958,70.520128,-8.801762)"
613
+ x1="906.48578"
614
+ y1="78.619972"
615
+ x2="986.08551"
616
+ y2="78.619972" />
617
+ <linearGradient
618
+ inkscape:collect="always"
619
+ xlink:href="#linearGradientBlackPiecesBorder"
620
+ id="linearGradient3369"
621
+ gradientUnits="userSpaceOnUse"
622
+ gradientTransform="matrix(0.92208958,0,0,0.92208958,68.523871,5.1720371)"
623
+ x1="906.48578"
624
+ y1="78.619972"
625
+ x2="986.08551"
626
+ y2="78.619972" />
627
+ <linearGradient
628
+ inkscape:collect="always"
629
+ xlink:href="#linearGradientBlackPiecesBorder"
630
+ id="linearGradient3372"
631
+ gradientUnits="userSpaceOnUse"
632
+ gradientTransform="matrix(0.92208958,0,0,0.92208958,70.367286,-6.1364362)"
633
+ x1="916.03479"
634
+ y1="100.62866"
635
+ x2="923.01733"
636
+ y2="100.62866" />
637
+ <linearGradient
638
+ inkscape:collect="always"
639
+ xlink:href="#linearGradientBlackPiecesBorder"
640
+ id="linearGradient3375"
641
+ gradientUnits="userSpaceOnUse"
642
+ gradientTransform="matrix(0.92208958,0,0,0.92208958,70.828332,0.77923533)"
643
+ x1="828.48736"
644
+ y1="120.72367"
645
+ x2="836.35859"
646
+ y2="120.72367" />
647
+ <linearGradient
648
+ inkscape:collect="always"
649
+ xlink:href="#linearGradientBlackPiecesBorder"
650
+ id="linearGradient3378"
651
+ gradientUnits="userSpaceOnUse"
652
+ gradientTransform="matrix(0.89304794,-0.22959621,0.22959621,0.89304794,81.552855,202.74644)"
653
+ x1="866.44156"
654
+ y1="74.656575"
655
+ x2="876.04205"
656
+ y2="74.656575" />
657
+ <linearGradient
658
+ inkscape:collect="always"
659
+ xlink:href="#linearGradientBlackPiecesBorder"
660
+ id="linearGradient3381"
661
+ gradientUnits="userSpaceOnUse"
662
+ gradientTransform="matrix(0.89304794,-0.22959621,0.22959621,0.89304794,79.478155,204.12957)"
663
+ x1="859.85814"
664
+ y1="69.920009"
665
+ x2="880.83843"
666
+ y2="69.920009" />
667
+ <linearGradient
668
+ inkscape:collect="always"
669
+ xlink:href="#linearGradientBlackPieces"
670
+ id="linearGradient3384"
671
+ gradientUnits="userSpaceOnUse"
672
+ gradientTransform="matrix(0.92208958,0,0,0.92208958,70.367286,-4.292257)"
673
+ x1="824.63312"
674
+ y1="119.49339"
675
+ x2="992.65851"
676
+ y2="168.48677" />
677
+ <linearGradient
678
+ inkscape:collect="always"
679
+ xlink:href="#linearGradientBlackPiecesBorder"
680
+ id="linearGradient3386"
681
+ gradientUnits="userSpaceOnUse"
682
+ gradientTransform="matrix(0.92208958,0,0,0.92208958,70.367286,-4.292257)"
683
+ x1="824.63312"
684
+ y1="119.49339"
685
+ x2="992.65851"
686
+ y2="168.48677" />
687
+ <linearGradient
688
+ inkscape:collect="always"
689
+ xlink:href="#linearGradientBlackPiecesBorder"
690
+ id="linearGradient3390"
691
+ gradientUnits="userSpaceOnUse"
692
+ gradientTransform="matrix(1.3389577,0,0,1.5265609,-657.65413,-49.757744)"
693
+ x1="660.51819"
694
+ y1="90.376785"
695
+ x2="757.72223"
696
+ y2="103.71878" />
697
+ <linearGradient
698
+ inkscape:collect="always"
699
+ xlink:href="#linearGradientBlackPiecesBorder"
700
+ id="linearGradient3393"
701
+ gradientUnits="userSpaceOnUse"
702
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-881.59827,-45.160265)"
703
+ x1="1075.8267"
704
+ y1="163.4315"
705
+ x2="1122.5205"
706
+ y2="163.4315" />
707
+ <linearGradient
708
+ inkscape:collect="always"
709
+ xlink:href="#linearGradientBlackPiecesBorder"
710
+ id="linearGradient3397"
711
+ gradientUnits="userSpaceOnUse"
712
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-878.89623,-15.346369)"
713
+ x1="1075.8267"
714
+ y1="163.4315"
715
+ x2="1122.5205"
716
+ y2="163.4315" />
717
+ <linearGradient
718
+ inkscape:collect="always"
719
+ xlink:href="#linearGradientBlackPiecesBorder"
720
+ id="linearGradient3400"
721
+ gradientUnits="userSpaceOnUse"
722
+ gradientTransform="matrix(1.0683705,0,0,1.0703804,-878.89623,0.65373112)"
723
+ x1="1075.8267"
724
+ y1="163.4315"
725
+ x2="1122.5205"
726
+ y2="163.4315" />
727
+ <linearGradient
728
+ inkscape:collect="always"
729
+ xlink:href="#linearGradientBlackPieces"
730
+ id="linearGradient3403"
731
+ gradientUnits="userSpaceOnUse"
732
+ gradientTransform="matrix(1.3389577,0,0,1.5265609,-651.66536,-49.757744)"
733
+ x1="660.51819"
734
+ y1="90.376785"
735
+ x2="757.72223"
736
+ y2="103.71878" />
737
+ <linearGradient
738
+ inkscape:collect="always"
739
+ xlink:href="#linearGradientBlackPiecesBorder"
740
+ id="linearGradient3406"
741
+ gradientUnits="userSpaceOnUse"
742
+ gradientTransform="matrix(1.3389577,0,0,1.5265609,-651.66536,-49.757744)"
743
+ x1="660.51819"
744
+ y1="90.376785"
745
+ x2="757.72223"
746
+ y2="103.71878" />
747
+ <linearGradient
748
+ inkscape:collect="always"
749
+ xlink:href="#linearGradientBlackPiecesBorder"
750
+ id="linearGradient3410"
751
+ gradientUnits="userSpaceOnUse"
752
+ gradientTransform="matrix(1.3389577,0,0,1.5236944,-453.66161,-50.662439)"
753
+ x1="660.51819"
754
+ y1="90.376785"
755
+ x2="757.72223"
756
+ y2="103.71878" />
757
+ <linearGradient
758
+ inkscape:collect="always"
759
+ xlink:href="#linearGradientBlackPiecesBorder"
760
+ id="linearGradient3414"
761
+ gradientUnits="userSpaceOnUse"
762
+ gradientTransform="matrix(1.0683705,0,0,1.0683705,-690.07806,-109.02588)"
763
+ x1="1075.8267"
764
+ y1="163.4315"
765
+ x2="1122.5205"
766
+ y2="163.4315" />
767
+ <linearGradient
768
+ inkscape:collect="always"
769
+ xlink:href="#linearGradientBlackPiecesBorder"
770
+ id="linearGradient3417"
771
+ gradientUnits="userSpaceOnUse"
772
+ gradientTransform="matrix(1.0683705,0,0,1.0683705,-668.55167,-91.85528)"
773
+ x1="1075.8267"
774
+ y1="163.4315"
775
+ x2="1122.5205"
776
+ y2="163.4315" />
777
+ <linearGradient
778
+ inkscape:collect="always"
779
+ xlink:href="#linearGradientBlackPiecesBorder"
780
+ id="linearGradient3420"
781
+ gradientUnits="userSpaceOnUse"
782
+ gradientTransform="matrix(1.0683705,0,0,1.0683705,-668.55167,-20.903273)"
783
+ x1="1075.8267"
784
+ y1="163.4315"
785
+ x2="1122.5205"
786
+ y2="163.4315" />
787
+ <linearGradient
788
+ inkscape:collect="always"
789
+ xlink:href="#linearGradientBlackPiecesBorder"
790
+ id="linearGradient3423"
791
+ gradientUnits="userSpaceOnUse"
792
+ gradientTransform="matrix(1.0683705,0,0,1.0683705,-673.84504,-2.4629753)"
793
+ x1="1075.8267"
794
+ y1="163.4315"
795
+ x2="1122.5205"
796
+ y2="163.4315" />
797
+ <linearGradient
798
+ inkscape:collect="always"
799
+ xlink:href="#linearGradientBlackPieces"
800
+ id="linearGradient3426"
801
+ gradientUnits="userSpaceOnUse"
802
+ gradientTransform="matrix(1.3389577,0,0,1.5236944,-447.67284,-50.662439)"
803
+ x1="660.51819"
804
+ y1="90.376785"
805
+ x2="757.72223"
806
+ y2="103.71878" />
807
+ <linearGradient
808
+ inkscape:collect="always"
809
+ xlink:href="#linearGradientBlackPiecesBorder"
810
+ id="linearGradient3428"
811
+ gradientUnits="userSpaceOnUse"
812
+ gradientTransform="matrix(1.3389577,0,0,1.5236944,-447.67284,-50.662439)"
813
+ x1="660.51819"
814
+ y1="90.376785"
815
+ x2="757.72223"
816
+ y2="103.71878" />
817
+ <linearGradient
818
+ inkscape:collect="always"
819
+ xlink:href="#linearGradientBlackPiecesBorder"
820
+ id="linearGradient3433"
821
+ gradientUnits="userSpaceOnUse"
822
+ gradientTransform="matrix(0.13841417,0,0,0.13870064,987.79605,26.618668)"
823
+ x1="477.83588"
824
+ y1="745.69482"
825
+ x2="1070.0619"
826
+ y2="749.1748" />
827
+ <linearGradient
828
+ inkscape:collect="always"
829
+ xlink:href="#linearGradientBlackPiecesBorder"
830
+ id="linearGradient3438"
831
+ gradientUnits="userSpaceOnUse"
832
+ gradientTransform="matrix(0.96536025,0,0,0.96536025,37.962697,-51.55988)"
833
+ x1="1075.8267"
834
+ y1="163.4315"
835
+ x2="1122.5205"
836
+ y2="163.4315" />
837
+ <linearGradient
838
+ inkscape:collect="always"
839
+ xlink:href="#linearGradientBlackPiecesBorder"
840
+ id="linearGradient3441"
841
+ gradientUnits="userSpaceOnUse"
842
+ gradientTransform="matrix(0.96536025,0,0,0.96536025,37.962697,-16.872447)"
843
+ x1="1075.8267"
844
+ y1="163.4315"
845
+ x2="1122.5205"
846
+ y2="163.4315" />
847
+ <linearGradient
848
+ inkscape:collect="always"
849
+ xlink:href="#linearGradientBlackPiecesBorder"
850
+ id="linearGradient3444"
851
+ gradientUnits="userSpaceOnUse"
852
+ gradientTransform="matrix(0.96536025,0,0,0.96536025,37.962697,16.015337)"
853
+ x1="1075.8267"
854
+ y1="163.4315"
855
+ x2="1122.5205"
856
+ y2="163.4315" />
857
+ <linearGradient
858
+ inkscape:collect="always"
859
+ xlink:href="#linearGradientBlackPieces"
860
+ id="linearGradient3447"
861
+ gradientUnits="userSpaceOnUse"
862
+ gradientTransform="matrix(0.13841417,0,0,0.13870064,994.85389,25.912884)"
863
+ x1="462.12891"
864
+ y1="776.05182"
865
+ x2="1135.1661"
866
+ y2="839.35919" />
867
+ <linearGradient
868
+ inkscape:collect="always"
869
+ xlink:href="#linearGradientBlackPiecesBorder"
870
+ id="linearGradient3449"
871
+ gradientUnits="userSpaceOnUse"
872
+ gradientTransform="matrix(0.13841417,0,0,0.13870064,994.85389,25.912884)"
873
+ x1="477.83588"
874
+ y1="745.69482"
875
+ x2="1070.0619"
876
+ y2="749.1748" />
877
+ <linearGradient
878
+ inkscape:collect="always"
879
+ xlink:href="#linearGradientBlackPiecesBorder"
880
+ id="linearGradient3453"
881
+ gradientUnits="userSpaceOnUse"
882
+ gradientTransform="matrix(1.3414767,0,0,1.5265609,-256.18016,-55.327104)"
883
+ x1="683"
884
+ y1="74"
885
+ x2="739.5"
886
+ y2="69" />
887
+ <linearGradient
888
+ inkscape:collect="always"
889
+ xlink:href="#linearGradientBlackPiecesBorder"
890
+ id="linearGradient3456"
891
+ gradientUnits="userSpaceOnUse"
892
+ gradientTransform="matrix(1.0703804,0,0,1.0703804,-484.54564,-84.267504)"
893
+ x1="1075.8267"
894
+ y1="163.4315"
895
+ x2="1122.5205"
896
+ y2="163.4315" />
897
+ <linearGradient
898
+ inkscape:collect="always"
899
+ xlink:href="#linearGradientBlackPiecesBorder"
900
+ id="linearGradient3459"
901
+ gradientUnits="userSpaceOnUse"
902
+ gradientTransform="matrix(1.0703804,0,0,1.0703804,-478.18164,-62.169236)"
903
+ x1="1075.8267"
904
+ y1="163.4315"
905
+ x2="1122.5205"
906
+ y2="163.4315" />
907
+ <linearGradient
908
+ inkscape:collect="always"
909
+ xlink:href="#linearGradientBlackPiecesBorder"
910
+ id="linearGradient3462"
911
+ gradientUnits="userSpaceOnUse"
912
+ gradientTransform="matrix(1.0703804,0,0,1.0703804,-478.18164,-19.213271)"
913
+ x1="1075.8267"
914
+ y1="163.4315"
915
+ x2="1122.5205"
916
+ y2="163.4315" />
917
+ <linearGradient
918
+ inkscape:collect="always"
919
+ xlink:href="#linearGradientBlackPiecesBorder"
920
+ id="linearGradient3465"
921
+ gradientUnits="userSpaceOnUse"
922
+ gradientTransform="matrix(1.0703804,0,0,1.0703804,-478.18164,-2.0871841)"
923
+ x1="1075.8267"
924
+ y1="163.4315"
925
+ x2="1122.5205"
926
+ y2="163.4315" />
927
+ <linearGradient
928
+ inkscape:collect="always"
929
+ xlink:href="#linearGradientBlackPieces"
930
+ id="linearGradient3468"
931
+ gradientUnits="userSpaceOnUse"
932
+ gradientTransform="matrix(1.3414767,0,0,1.5265609,-250.52328,-52.498659)"
933
+ x1="683"
934
+ y1="74"
935
+ x2="739.5"
936
+ y2="69" />
937
+ <linearGradient
938
+ inkscape:collect="always"
939
+ xlink:href="#linearGradientBlackPiecesBorder"
940
+ id="linearGradient3470"
941
+ gradientUnits="userSpaceOnUse"
942
+ gradientTransform="matrix(1.3414767,0,0,1.5265609,-250.52328,-52.498659)"
943
+ x1="683"
944
+ y1="74"
945
+ x2="739.5"
946
+ y2="69" />
947
+ </defs>
948
+ <sodipodi:namedview
949
+ id="base"
950
+ pagecolor="#ffffff"
951
+ bordercolor="#666666"
952
+ borderopacity="1.0"
953
+ gridtolerance="10000"
954
+ guidetolerance="10"
955
+ objecttolerance="10"
956
+ inkscape:pageopacity="0.0"
957
+ inkscape:pageshadow="2"
958
+ inkscape:zoom="0.35355339"
959
+ inkscape:cx="557.39597"
960
+ inkscape:cy="258.63299"
961
+ inkscape:document-units="px"
962
+ inkscape:current-layer="WhitePieces"
963
+ showgrid="false"
964
+ inkscape:window-width="1602"
965
+ inkscape:window-height="874"
966
+ inkscape:window-x="99"
967
+ inkscape:window-y="19"
968
+ showguides="true"
969
+ inkscape:guide-bbox="true"
970
+ inkscape:window-maximized="0">
971
+ <inkscape:grid
972
+ type="xygrid"
973
+ id="grid5039" />
974
+ <sodipodi:guide
975
+ orientation="1,0"
976
+ position="-568.51385,608.11183"
977
+ id="guide8313" />
978
+ </sodipodi:namedview>
979
+ <metadata
980
+ id="metadata2727">
981
+ <rdf:RDF>
982
+ <cc:Work
983
+ rdf:about="">
984
+ <dc:format>image/svg+xml</dc:format>
985
+ <dc:type
986
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
987
+ </cc:Work>
988
+ </rdf:RDF>
989
+ </metadata>
990
+ <g
991
+ inkscape:label="BlackPieces"
992
+ inkscape:groupmode="layer"
993
+ id="BlackPieces">
994
+ <g
995
+ id="BlackBishop">
996
+ <rect
997
+ y="0"
998
+ x="600"
999
+ height="200"
1000
+ width="200"
1001
+ id="rect3532"
1002
+ style="fill:none;stroke:none" />
1003
+ <path
1004
+ sodipodi:nodetypes="cscccccsssscccsccscccsc"
1005
+ id="path4041"
1006
+ d="m 699.91657,14.275362 c -7.37192,0 -13.35493,4.985847 -13.35493,11.129121 0,1.777106 0.50101,3.447826 1.39112,4.938548 -15.24897,4.282287 -26.25775,16.91218 -26.25777,35.161068 0.60456,16.636146 9.02233,32.053715 22.53648,41.629871 -13.48885,5.29181 -0.6609,11.20031 -0.66079,25.30566 -9.80706,17.69122 -13.18247,19.37042 -29.87474,31.78756 -1.30079,0.91951 -11.3221,1.98751 -12.24204,3.16483 -6.88667,8.81354 -3.18293,23.53411 9.73798,24.37974 9.07579,0.59399 89.32679,0.75636 98.7014,-0.27823 14.3847,-1.58751 16.61929,-16.62937 9.98143,-24.93618 -1.01667,-1.27228 -11.1333,-2.38539 -12.55503,-3.26918 -13.13062,-7.17075 -29.77021,-17.66836 -34.29161,-30.84854 -2e-5,-14.1032 15.05042,-20.01258 1.56503,-25.30566 13.94102,-9.613557 21.97261,-23.601759 23.54505,-41.629871 0.85943,-9.853453 -4.58528,-19.717846 -13.00715,-26.744669 l -13.7723,31.196318 c -1.40461,3.18646 -5.09082,4.639014 -8.27728,3.234401 -3.18646,-1.404611 -4.63902,-5.125605 -3.2344,-8.312063 l 14.46785,-32.796129 c -0.94179,-0.408673 -1.88369,-0.773352 -2.85183,-1.112913 1.14505,-1.641306 1.80848,-3.530518 1.80848,-5.564561 0,-6.143274 -5.98301,-11.129121 -13.35495,-11.129121 z"
1007
+ style="fill:url(#linearGradient3468);fill-opacity:1;stroke:url(#linearGradient3470);stroke-width:5.00003147;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1008
+ inkscape:connector-curvature="0" />
1009
+ <path
1010
+ sodipodi:nodetypes="cc"
1011
+ id="path4061"
1012
+ d="m 662.47857,172.8467 76.0289,0"
1013
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3465);stroke-width:5.00003147;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1014
+ inkscape:connector-curvature="0" />
1015
+ <path
1016
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3462);stroke-width:5.00003147;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1017
+ d="m 683.88618,155.72061 31.07292,0"
1018
+ id="path4063"
1019
+ sodipodi:nodetypes="cc"
1020
+ inkscape:connector-curvature="0" />
1021
+ <path
1022
+ sodipodi:nodetypes="cc"
1023
+ id="path4065"
1024
+ d="m 688.1677,112.76465 22.50989,0"
1025
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3459);stroke-width:5.00003147;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1026
+ inkscape:connector-curvature="0" />
1027
+ <path
1028
+ sodipodi:nodetypes="cc"
1029
+ id="path4213"
1030
+ d="m 674.69373,91.373485 c 8.59576,10.396035 50.64385,7.60574 61.47871,-27.577337"
1031
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3456);stroke-width:5.00003147;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1032
+ inkscape:connector-curvature="0" />
1033
+ <path
1034
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3453);stroke-width:5.00003147;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1035
+ d="m 744.2364,188.66508 c 14.3847,-1.58751 16.61928,-10.62933 9.98143,-18.93614 -1.01668,-1.27228 -11.1333,-2.38539 -12.55504,-3.26918 -13.13061,-7.17075 -29.77021,-19.66838 -34.2916,-32.84855 -2e-5,-14.1032 15.05041,-24.01261 1.56503,-29.30568 13.94101,-9.613561 21.9726,-23.601764 23.54504,-41.629876 0.85944,-9.853453 -1.04972,-11.232512 -9.4716,-18.259335"
1036
+ id="path4225"
1037
+ sodipodi:nodetypes="cscccsc"
1038
+ inkscape:connector-curvature="0" />
1039
+ </g>
1040
+ <g
1041
+ id="BlackPawn">
1042
+ <rect
1043
+ y="0"
1044
+ x="1000"
1045
+ height="200"
1046
+ width="200"
1047
+ id="rect5972"
1048
+ style="fill:none;stroke:none" />
1049
+ <path
1050
+ sodipodi:nodetypes="cscsccssccscss"
1051
+ id="path35272"
1052
+ d="m 1100.04,49.169428 c -15.4625,0.174482 -27.8162,12.392882 -28.8402,26.607743 -0.5078,7.050203 9.7072,19.076362 15.6872,22.836803 -29.4485,6.638046 -0.5733,15.126706 -0.5732,27.361936 0,8.45448 -11.456,14.0871 -5.1837,19.51317 -3.4101,13.74236 -13.4071,18.71326 -25.5489,24.32366 -5.9737,7.64502 -2.769,20.41046 8.4388,21.14398 7.8725,0.51523 65.8993,0.65609 74.0311,-0.24134 12.4775,-1.37704 14.426,-14.42356 8.6682,-21.62905 -12.2307,-3.78939 -25.4272,-9.13976 -28.1013,-23.29558 6.4917,-5.44318 -6.7522,-11.1987 -6.7523,-19.81484 0,-12.23338 32.1681,-19.35757 1.3575,-27.361936 5.9799,-3.760442 15.5132,-15.770471 15.6871,-22.836803 0.3414,-13.873558 -14.0863,-26.774568 -28.8703,-26.607743 z"
1053
+ style="fill:url(#linearGradient3447);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3449);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1054
+ inkscape:connector-curvature="0" />
1055
+ <path
1056
+ sodipodi:nodetypes="cc"
1057
+ id="path36149"
1058
+ d="m 1066.7072,173.78561 68.5694,0"
1059
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3444);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1060
+ inkscape:connector-curvature="0" />
1061
+ <path
1062
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3441);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1063
+ d="m 1088.0107,140.89783 24.0317,0"
1064
+ id="path3989"
1065
+ sodipodi:nodetypes="cc"
1066
+ inkscape:connector-curvature="0" />
1067
+ <path
1068
+ sodipodi:nodetypes="cc"
1069
+ id="path3993"
1070
+ d="m 1089.8759,106.2104 20.3013,0"
1071
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3438);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1072
+ inkscape:connector-curvature="0" />
1073
+ <path
1074
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3433);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1075
+ d="m 1130.9932,191.42117 c 12.4775,-1.37704 14.426,-12.4273 8.6682,-19.63279 -12.2306,-3.7894 -25.4272,-11.13602 -28.1013,-25.29184 6.4918,-5.44319 -6.7522,-11.1987 -6.7523,-19.81485 0,-12.23337 32.1682,-19.35756 1.3575,-27.361933 5.9799,-3.760442 15.5133,-15.77047 15.6871,-22.836803 0.3414,-13.873558 -12.09,-24.77831 -26.874,-24.611485"
1076
+ id="path4229"
1077
+ sodipodi:nodetypes="cccscss"
1078
+ inkscape:connector-curvature="0" />
1079
+ </g>
1080
+ <g
1081
+ id="BlackRook">
1082
+ <rect
1083
+ y="0"
1084
+ x="400"
1085
+ height="200"
1086
+ width="200"
1087
+ id="rect5557"
1088
+ style="fill:none;stroke:none" />
1089
+ <path
1090
+ sodipodi:nodetypes="cccccccccccccsssssscccc"
1091
+ id="path4173"
1092
+ d="m 567.2801,30.068621 -27.04304,0.124766 0,17.217717 -24.45415,1.996257 0,-17.124142 -27.9476,0.155958 0,17.467248 -23.45602,-2.495321 0,-17.373674 -25.10917,0.62383 c -2.45774,21.16773 10.41494,26.02901 1.59077,41.048035 l 21.65691,11.423756 c 1.03975,22.881099 6.07203,52.850619 4.11739,67.395639 -7.63417,5.81461 6.81976,11.3197 -11.80051,15.12945 -2.23213,0.4567 -19.2627,1.97524 -20.18091,3.15034 -6.87373,8.79699 -3.19608,23.48534 9.70057,24.32939 9.05875,0.59286 107.1433,0.75192 116.50031,-0.28073 14.35768,-1.58453 16.57548,-16.56842 9.95009,-24.85964 -1.0148,-1.26988 -16.78086,-2.63577 -20.52402,-3.2751 -16.64645,-2.84321 -4.01698,-9.32759 -11.49849,-13.25454 -2.39977,-15.8829 1.87413,-44.95778 4.38681,-68.735961 l 22.14599,-10.866646 c -6.8327,-16.428121 4.25756,-18.896889 1.96507,-41.796632 z"
1093
+ style="fill:url(#linearGradient3426);fill-opacity:1;stroke:url(#linearGradient3428);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1094
+ inkscape:connector-curvature="0" />
1095
+ <path
1096
+ sodipodi:nodetypes="cc"
1097
+ id="path4175"
1098
+ d="m 456.68826,172.14242 91.8562,0"
1099
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3423);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1100
+ inkscape:connector-curvature="0" />
1101
+ <path
1102
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3420);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1103
+ d="m 473.95918,153.70213 51.93106,0"
1104
+ id="path4209"
1105
+ sodipodi:nodetypes="cc"
1106
+ inkscape:connector-curvature="0" />
1107
+ <path
1108
+ sodipodi:nodetypes="cc"
1109
+ id="path4235"
1110
+ d="m 473.95918,82.750113 45.94228,0"
1111
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3417);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1112
+ inkscape:connector-curvature="0" />
1113
+ <path
1114
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3414);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1115
+ d="m 452.43278,65.579511 83.34881,0.352892"
1116
+ id="path3375"
1117
+ sodipodi:nodetypes="cc"
1118
+ inkscape:connector-curvature="0" />
1119
+ <path
1120
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3410);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1121
+ d="m 554.86588,192.85714 c 14.35768,-1.58453 16.57548,-12.57591 9.95009,-20.86712 -1.0148,-1.26989 -16.78087,-2.63578 -20.52402,-3.27511 -16.64646,-2.84321 -4.01699,-13.3201 -11.49849,-17.24705 -2.39977,-15.8829 1.87413,-48.95029 4.38681,-72.728475 l 22.14599,-10.866646 c -6.00991,-12.601373 4.38972,-20.212103 1.96507,-37.804118"
1122
+ id="path3434"
1123
+ sodipodi:nodetypes="csscccc"
1124
+ inkscape:connector-curvature="0" />
1125
+ </g>
1126
+ <g
1127
+ id="BlackQueen">
1128
+ <rect
1129
+ style="fill:none;stroke:none"
1130
+ id="rect4547"
1131
+ width="200"
1132
+ height="200"
1133
+ x="200"
1134
+ y="0" />
1135
+ <path
1136
+ sodipodi:nodetypes="cscccssscccsssscsssssssssscsssscccsc"
1137
+ id="path4239"
1138
+ d="m 328.38428,19.218871 c -6.23348,0 -11.29133,4.590345 -11.29133,10.250064 0,3.667678 2.14185,6.875322 5.33375,8.687554 -9.10196,22.476472 -17.72308,43.148272 -24.95321,66.031671 -6.98357,-20.582489 -13.61499,-42.270917 -22.0524,-65.125415 3.39605,-1.768555 5.67684,-5.067842 5.67685,-8.875056 0,-5.659717 -5.05785,-10.281314 -11.29133,-10.281314 -6.23348,0 -11.29132,4.621597 -11.29133,10.281314 0,4.971533 3.90254,9.095893 9.07673,10.031313 0.007,23.981396 4.90599,36.608045 -3.68059,70.219198 -13.00581,-24.930811 -20.58154,-35.572546 -36.58765,-59.000378 1.75767,-1.807777 2.83843,-4.182129 2.83843,-6.781292 0,-5.659718 -5.05785,-10.250065 -11.29133,-10.250064 -6.23349,0 -11.29133,4.590345 -11.29133,10.250064 0,5.659717 5.05785,10.250063 11.29133,10.250064 0.021,0 0.0414,1.04e-4 0.0624,0 10.70134,27.261935 15.248,40.405178 24.53411,65.597266 2.94988,8.00264 9.70549,8.28207 13.43024,17.42778 1.62484,3.98963 2.40474,19.78583 -6.05543,25.03813 -1.28193,0.79586 -17.26644,3.97897 -18.18465,5.15629 -6.87373,8.81353 -3.19609,23.52951 9.70056,24.37515 9.05875,0.59398 103.15079,0.75333 112.5078,-0.28125 14.35768,-1.58751 16.57548,-16.5996 9.95009,-24.90641 -1.0148,-1.27228 -15.34728,-2.92846 -18.52776,-5.28128 -5.80845,-4.29694 -8.66079,-18.75215 -7.29941,-24.19438 2.06758,-8.26534 9.77218,-7.60953 11.8565,-14.51865 9.08608,-30.118788 16.66945,-41.465656 29.66,-68.475147 0.30955,0.02316 0.61965,0.0625 0.93575,0.0625 6.23348,0 11.29134,-4.590347 11.29133,-10.250064 0,-5.659718 -5.05787,-10.250065 -11.29133,-10.250064 -6.23348,0 -11.29133,4.590345 -11.29133,10.250064 0,2.645302 1.11829,5.055754 2.932,6.875043 -21.02753,25.280912 -27.72722,34.563556 -43.04429,59.844128 -5.4889,-26.833867 -0.0742,-46.296734 1.27885,-72.031704 4.81429,-1.172677 8.35933,-5.135488 8.35933,-9.875062 0,-5.659718 -5.05787,-10.250064 -11.29133,-10.250064 z"
1139
+ style="fill:url(#linearGradient3403);fill-opacity:1;stroke:url(#linearGradient3406);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1140
+ inkscape:connector-curvature="0" />
1141
+ <path
1142
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3400);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1143
+ d="m 251.63707,175.58761 91.8562,0"
1144
+ id="path4241"
1145
+ sodipodi:nodetypes="cc"
1146
+ inkscape:connector-curvature="0" />
1147
+ <path
1148
+ sodipodi:nodetypes="cc"
1149
+ id="path4245"
1150
+ d="m 263.61461,159.58751 51.93106,0"
1151
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3397);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1152
+ inkscape:connector-curvature="0" />
1153
+ <path
1154
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3393);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1155
+ d="m 260.91257,129.77362 67.90111,0"
1156
+ id="path4289"
1157
+ sodipodi:nodetypes="cc"
1158
+ inkscape:connector-curvature="0" />
1159
+ <path
1160
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3390);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1161
+ d="m 324.04866,111.3757 c -5.4889,-26.833866 -0.0742,-46.296733 1.27885,-72.031703 4.81428,-1.172677 8.35933,-5.135488 8.35933,-9.875062 0,-5.659718 -5.05787,-8.250052 -11.29133,-8.250052 m 26.4816,171.001077 c 14.35767,-1.58751 16.57548,-14.59958 9.95009,-22.9064 -1.0148,-1.27227 -15.34728,-2.92845 -18.52776,-5.28128 -5.80845,-4.29694 -8.66079,-22.75217 -7.29942,-28.19441 2.06759,-8.26534 9.77219,-7.60952 11.8565,-14.51865 9.08609,-30.11878 16.66946,-39.465636 29.66001,-66.475127 0.30955,0.02316 0.61965,0.0625 0.93575,0.0625 6.23348,0 11.29134,-4.590347 11.29133,-10.250064 0,-5.659718 -5.05787,-8.250053 -11.29133,-8.250052"
1162
+ id="path2601"
1163
+ sodipodi:nodetypes="ccsccsssscsss"
1164
+ inkscape:connector-curvature="0" />
1165
+ </g>
1166
+ <g
1167
+ id="BlackKnight">
1168
+ <rect
1169
+ y="0"
1170
+ x="800"
1171
+ height="200"
1172
+ width="200"
1173
+ id="rect5867"
1174
+ style="fill:none;stroke:none" />
1175
+ <path
1176
+ sodipodi:nodetypes="ccccsscccccssccscscsssscc"
1177
+ id="path8413"
1178
+ d="m 892.41016,10.613254 -5.07149,17.980747 -12.90925,-14.753433 c 0,0 -0.45932,10.505274 -0.92209,19.306251 -19.79844,19.995787 -8.32851,24.339506 -37.56604,69.066131 -1.89937,2.90558 -5.46819,5.3376 -6.23322,9.21704 -3.44061,17.44714 19.11956,13.02985 23.12456,15.0235 15.44149,-12.45388 21.79646,-12.59053 29.89559,-21.47813 9.20253,3.40789 23.45613,-0.55956 32.0426,-9.681933 -5.58124,16.851473 -29.64352,28.815843 -36.8061,58.135773 8.3811,8.24857 0.0128,16.18775 -10.43757,15.62708 -11.22039,2.60832 -7.35691,23.74886 4.2574,23.69182 l 98.58555,-0.48422 c 13.77123,-0.0677 15.71398,-20.17938 6.58993,-23.64547 -8.65736,-0.0237 -12.72537,-9.06779 -5.58795,-15.08662 0.80395,-16.15731 0.64412,-31.32178 -2.78027,-46.65553 -0.35197,-1.57606 0.50923,-4.90062 2.33157,-5.23386 -1.37823,-5.145491 -6.64174,-9.824235 -8.88976,-15.077865 -1.08063,-2.525417 -3.91506,-3.727903 4.30193,-4.064703 -2.48602,-4.653446 -13.28824,-12.575184 -16.70248,-16.906272 -1.17198,-1.486697 5.51772,-2.863364 4.19055,-4.272623 -7.53952,-8.005842 -18.49187,-10.846633 -23.76085,-14.822009 -1.79722,-1.355982 5.02895,-3.153722 3.073,-4.443172 -7.20322,-4.748676 -22.20902,-10.554351 -31.76405,-14.268583 l -8.96156,-17.173919 z"
1179
+ style="fill:url(#linearGradient3384);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3386);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1180
+ inkscape:connector-curvature="0" />
1181
+ <path
1182
+ sodipodi:nodetypes="cs"
1183
+ id="path31294"
1184
+ d="m 879.93611,62.45862 c -6.2277,0.431326 -10.99705,3.498383 -14.20078,8.890264"
1185
+ style="fill:none;stroke:url(#linearGradient3381);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1186
+ inkscape:connector-curvature="0" />
1187
+ <path
1188
+ sodipodi:nodetypes="cs"
1189
+ id="path31298"
1190
+ d="m 874.09278,70.023415 c 2.69511,1.626995 5.43653,1.018938 4.93368,-2.793859"
1191
+ style="fill:none;stroke:url(#linearGradient3378);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1192
+ inkscape:connector-curvature="0" />
1193
+ <path
1194
+ sodipodi:nodetypes="cs"
1195
+ id="path31300"
1196
+ d="m 840.33662,110.22049 c -2.92555,-1.01045 -5.04209,3.70309 -3.17546,3.89538"
1197
+ style="fill:none;stroke:url(#linearGradient3375);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1198
+ inkscape:connector-curvature="0" />
1199
+ <path
1200
+ sodipodi:nodetypes="cc"
1201
+ id="path3191"
1202
+ d="m 917.45808,89.301013 c 2.03857,-2.762761 1.8305,-4.117057 2.3228,-5.745878"
1203
+ style="fill:none;stroke:url(#linearGradient3372);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1204
+ inkscape:connector-curvature="0" />
1205
+ <path
1206
+ sodipodi:nodetypes="cc"
1207
+ id="path3971"
1208
+ d="m 885.1841,167.41456 75.80877,-0.007"
1209
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3369);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1210
+ inkscape:connector-curvature="0" />
1211
+ <path
1212
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3366);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1213
+ d="m 887.18036,153.44076 59.83871,-0.007"
1214
+ id="path3416"
1215
+ sodipodi:nodetypes="cc"
1216
+ inkscape:connector-curvature="0" />
1217
+ <path
1218
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3363);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1219
+ d="m 964.38133,192.26388 c 13.77123,-0.0677 15.71398,-16.18686 6.58993,-19.65296 -8.65736,-0.0237 -12.72537,-13.0603 -5.58795,-19.07913 0.80395,-16.15731 0.64412,-31.32178 -2.78027,-46.65553 -0.35197,-1.57606 0.50922,-4.90062 2.33157,-5.23386 -1.37823,-5.145491 -6.64174,-7.827978 -8.88976,-13.081607 -1.08063,-2.525418 -3.91506,-3.727904 4.30193,-4.064704 -2.48602,-4.653446 -13.28824,-12.575184 -16.70248,-16.906272 -1.17199,-1.486697 5.51772,-2.863364 4.19055,-4.272623 -7.53952,-8.005842 -18.49187,-10.846633 -23.76085,-14.822009 -1.79722,-1.355982 5.02895,-3.153722 3.073,-4.443172 -7.20322,-4.748676 -16.22025,-12.550608 -25.77528,-16.26484"
1220
+ id="path3446"
1221
+ sodipodi:nodetypes="cccscscssssc"
1222
+ inkscape:connector-curvature="0" />
1223
+ </g>
1224
+ <g
1225
+ id="BlackKing">
1226
+ <rect
1227
+ style="fill:none;stroke:none"
1228
+ id="rect3452"
1229
+ width="200"
1230
+ height="200"
1231
+ x="0"
1232
+ y="0" />
1233
+ <path
1234
+ style="fill:url(#linearGradient3357);fill-opacity:1;stroke:url(#linearGradient3359);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1235
+ d="m 90.798503,12.68758 c -4.380574,3.961845 1.90645,7.228385 0,13.531334 l -17.529632,-0.0312 0,16.500103 17.529632,0.0312 -8.92261,8.145581 -1.405134,3.19293 8.28088,8.517833 1.41936,9.452659 -10.778525,-0.659964 c -39.78189,-16.814504 -72.084622,-29.253772 -42.27457,25.4763 2.796761,5.134744 16.072318,16.246074 8.359326,23.656404 2.94988,8.00264 9.687606,6.29189 13.412352,15.43759 1.624843,3.98964 2.409013,19.77911 -6.051154,25.03141 -1.281926,0.79586 -17.266445,3.97897 -18.184654,5.15628 -6.873732,8.81354 -3.196087,23.52952 9.700562,24.37516 9.058754,0.59398 103.150794,0.75333 112.507794,-0.28126 14.35768,-1.58751 16.57548,-16.59959 9.9501,-24.9064 -1.0148,-1.27228 -15.34729,-2.92846 -18.52776,-5.28128 -5.80845,-4.29694 -8.6602,-18.74542 -7.29882,-24.18766 2.06759,-8.26534 9.76847,-7.62221 11.85278,-14.53134 -12.17404,-8.61826 6.53982,-17.79863 9.5446,-23.468897 28.63908,-54.044139 0.55097,-43.257241 -40.37581,-26.181784 l -11.99474,0.681624 1.55197,-9.58473 8.20773,-8.419073 -1.55633,-2.996328 -8.98316,-8.625054 17.52963,0.03125 0,-16.468853 -17.52963,-0.03125 c -3.1509,-6.009228 4.73986,-8.448123 0,-13.562585 l -18.434187,0 z"
1236
+ id="path3454"
1237
+ sodipodi:nodetypes="ccccccccccscsssssssscsccccccccccc"
1238
+ inkscape:connector-curvature="0" />
1239
+ <path
1240
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3354);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1241
+ d="m 53.814662,171.58759 91.856198,0"
1242
+ id="path3456"
1243
+ sodipodi:nodetypes="cc"
1244
+ inkscape:connector-curvature="0" />
1245
+ <path
1246
+ sodipodi:nodetypes="cc"
1247
+ id="path3458"
1248
+ d="m 65.792204,157.5875 51.931056,0"
1249
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3351);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1250
+ inkscape:connector-curvature="0" />
1251
+ <path
1252
+ sodipodi:nodetypes="cc"
1253
+ id="path3460"
1254
+ d="m 54.484975,121.6063 c 32.537064,3.63337 59.005935,3.22204 81.874915,0"
1255
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3348);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1256
+ inkscape:connector-curvature="0" />
1257
+ <path
1258
+ sodipodi:nodetypes="cc"
1259
+ id="path3462"
1260
+ d="m 89.152207,53.292164 14.002173,0"
1261
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3345);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1262
+ inkscape:connector-curvature="0" />
1263
+ <path
1264
+ sodipodi:nodetypes="cssscscccccccccc"
1265
+ id="path3464"
1266
+ d="m 150.87336,190.21994 c 14.35768,-1.58751 16.57548,-14.59958 9.9501,-22.90639 -1.0148,-1.27228 -13.35103,-1.92845 -16.53151,-4.28128 -5.80845,-4.29693 -10.65645,-21.74543 -9.29507,-27.18767 2.06758,-8.26534 9.76846,-7.62221 11.85278,-14.53134 -10.17778,-9.61827 6.53981,-15.79862 9.5446,-21.468885 28.63908,-54.044138 8.94943,-38.782343 -36.3833,-22.681762 l -14.98913,-0.818385 0.55385,-13.584755 8.20773,-8.419073 -1.55634,-2.996328 -8.98315,-12.625079 17.52963,0.0312 0,-8.468803 -17.52963,-0.0312 c -3.1509,-6.009228 4.73986,-12.448148 0,-17.56261"
1267
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3342);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1268
+ inkscape:connector-curvature="0" />
1269
+ <path
1270
+ sodipodi:nodetypes="cc"
1271
+ id="path3466"
1272
+ d="m 30.761689,64.792236 c 1.18298,-9.067577 33.879457,5.930977 48.936667,9.500059"
1273
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3339);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1274
+ inkscape:connector-curvature="0" />
1275
+ <path
1276
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3336);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1277
+ d="m 44.211345,101.17114 c 12.3872,15.225 105.763935,12.64992 118.847225,-20.198623"
1278
+ id="path3468"
1279
+ sodipodi:nodetypes="cc"
1280
+ inkscape:connector-curvature="0" />
1281
+ </g>
1282
+ </g>
1283
+ <g
1284
+ inkscape:groupmode="layer"
1285
+ id="WhitePieces"
1286
+ inkscape:label="WhitePieces">
1287
+ <g
1288
+ id="WhiteBishop">
1289
+ <path
1290
+ sodipodi:nodetypes="cscccccsssscccsccscccsc"
1291
+ id="path6213"
1292
+ d="m 699.91657,214.27536 c -7.37192,0 -13.35493,4.98585 -13.35493,11.12912 0,1.77711 0.50101,3.44783 1.39112,4.93855 -15.24897,4.28229 -26.25775,16.91218 -26.25777,35.16107 0.60456,16.63615 9.02233,32.05371 22.53648,41.62987 -13.48885,5.29181 -0.6609,11.20031 -0.66079,25.30566 -9.80706,17.69122 -13.18247,19.37042 -29.87474,31.78756 -1.30079,0.91951 -11.3221,1.98751 -12.24204,3.16483 -6.88667,8.81354 -3.18293,23.53411 9.73798,24.37974 9.07579,0.59399 89.32679,0.75636 98.7014,-0.27823 14.3847,-1.58751 16.61929,-16.62937 9.98143,-24.93618 -1.01667,-1.27228 -11.1333,-2.38539 -12.55503,-3.26918 -13.13062,-7.17075 -29.77021,-17.66836 -34.29161,-30.84854 -2e-5,-14.1032 15.05042,-20.01258 1.56503,-25.30566 13.94102,-9.61356 21.97261,-23.60175 23.54505,-41.62987 0.85943,-9.85345 -4.58528,-19.71784 -13.00715,-26.74466 l -13.7723,31.19631 c -1.40461,3.18646 -5.09082,4.63901 -8.27728,3.2344 -3.18646,-1.40461 -4.63902,-5.1256 -3.2344,-8.31206 l 14.46785,-32.79612 c -0.94179,-0.40868 -1.88369,-0.77336 -2.85183,-1.11292 1.14505,-1.64131 1.80848,-3.53052 1.80848,-5.56457 0,-6.14327 -5.98301,-11.12912 -13.35495,-11.12912 z"
1293
+ style="fill:url(#linearGradient3331);fill-opacity:1;stroke:url(#linearGradient3333);stroke-width:5.00003147;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1294
+ inkscape:connector-curvature="0" />
1295
+ <path
1296
+ sodipodi:nodetypes="cc"
1297
+ id="path6215"
1298
+ d="m 662.47857,372.8467 76.0289,0"
1299
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3328);stroke-width:5.00003147;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1300
+ inkscape:connector-curvature="0" />
1301
+ <path
1302
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3325);stroke-width:5.00003147;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1303
+ d="m 683.88618,355.72061 31.07292,0"
1304
+ id="path6217"
1305
+ sodipodi:nodetypes="cc"
1306
+ inkscape:connector-curvature="0" />
1307
+ <path
1308
+ sodipodi:nodetypes="cc"
1309
+ id="path6219"
1310
+ d="m 688.1677,312.76465 22.50989,0"
1311
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3322);stroke-width:5.00003147;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1312
+ inkscape:connector-curvature="0" />
1313
+ <path
1314
+ sodipodi:nodetypes="cc"
1315
+ id="path6221"
1316
+ d="m 674.69373,291.37349 c 8.59576,10.39603 50.64385,7.60574 61.47871,-27.57734"
1317
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3319);stroke-width:5.00003147;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1318
+ inkscape:connector-curvature="0" />
1319
+ <path
1320
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3316);stroke-width:5.00003147;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1321
+ d="m 744.2364,388.66508 c 14.3847,-1.58751 16.61928,-10.62933 9.98143,-18.93614 -1.01668,-1.27228 -11.1333,-2.38539 -12.55504,-3.26918 -13.13061,-7.17075 -29.77021,-19.66838 -34.2916,-32.84855 -2e-5,-14.1032 15.05041,-24.01261 1.56503,-29.30568 13.94101,-9.61355 21.9726,-23.60176 23.54504,-41.62987 0.85944,-9.85346 -1.04972,-11.23251 -9.4716,-18.25934"
1322
+ id="path6223"
1323
+ sodipodi:nodetypes="cscccsc"
1324
+ inkscape:connector-curvature="0" />
1325
+ <rect
1326
+ y="200"
1327
+ x="600"
1328
+ height="200"
1329
+ width="200"
1330
+ id="rect6211"
1331
+ style="fill:none;stroke:none" />
1332
+ </g>
1333
+ <g
1334
+ id="WhitePawn">
1335
+ <rect
1336
+ y="200"
1337
+ x="1000"
1338
+ height="200"
1339
+ width="200"
1340
+ id="rect6227"
1341
+ style="fill:none;stroke:none" />
1342
+ <path
1343
+ sodipodi:nodetypes="cscsccssccscss"
1344
+ id="path6229"
1345
+ d="m 1100.04,249.16943 c -15.4625,0.17448 -27.8162,12.39288 -28.8402,26.60774 -0.5078,7.0502 9.7072,19.07636 15.6872,22.8368 -29.4485,6.63805 -0.5733,15.12671 -0.5732,27.36194 0,8.45448 -11.456,14.0871 -5.1837,19.51317 -3.4101,13.74236 -13.4071,18.71326 -25.5489,24.32366 -5.9737,7.64502 -2.769,20.41046 8.4388,21.14398 7.8725,0.51523 65.8993,0.65609 74.0311,-0.24134 12.4775,-1.37704 14.426,-14.42356 8.6682,-21.62905 -12.2307,-3.78939 -25.4272,-9.13976 -28.1013,-23.29558 6.4917,-5.44318 -6.7522,-11.1987 -6.7523,-19.81484 0,-12.23338 32.1681,-19.35757 1.3575,-27.36194 5.9799,-3.76044 15.5132,-15.77047 15.6871,-22.8368 0.3414,-13.87356 -14.0863,-26.77457 -28.8703,-26.60774 z"
1346
+ style="fill:url(#linearGradient3309);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3311);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1347
+ inkscape:connector-curvature="0" />
1348
+ <path
1349
+ sodipodi:nodetypes="cc"
1350
+ id="path6231"
1351
+ d="m 1066.7072,373.78561 68.5694,0"
1352
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3306);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1353
+ inkscape:connector-curvature="0" />
1354
+ <path
1355
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3303);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1356
+ d="m 1088.0107,340.89783 24.0317,0"
1357
+ id="path6233"
1358
+ sodipodi:nodetypes="cc"
1359
+ inkscape:connector-curvature="0" />
1360
+ <path
1361
+ sodipodi:nodetypes="cc"
1362
+ id="path6235"
1363
+ d="m 1089.8759,306.2104 20.3013,0"
1364
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3300);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1365
+ inkscape:connector-curvature="0" />
1366
+ <path
1367
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3297);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1368
+ d="m 1130.9932,391.42117 c 12.4775,-1.37704 14.426,-12.4273 8.6682,-19.63279 -12.2306,-3.7894 -25.4272,-11.13602 -28.1013,-25.29184 6.4918,-5.44319 -6.7522,-11.1987 -6.7523,-19.81485 0,-12.23337 32.1682,-19.35756 1.3575,-27.36193 5.9799,-3.76044 15.5133,-15.77047 15.6871,-22.83681 0.3414,-13.87355 -12.09,-24.77831 -26.874,-24.61148"
1369
+ id="path6237"
1370
+ sodipodi:nodetypes="cccscss"
1371
+ inkscape:connector-curvature="0" />
1372
+ </g>
1373
+ <g
1374
+ id="WhiteRook">
1375
+ <rect
1376
+ y="200"
1377
+ x="400"
1378
+ height="200"
1379
+ width="200"
1380
+ id="rect6241"
1381
+ style="fill:none;stroke:none" />
1382
+ <path
1383
+ sodipodi:nodetypes="cccccccccccccsssssscccc"
1384
+ id="path6243"
1385
+ d="m 567.2801,230.06862 -27.04304,0.12477 0,17.21771 -24.45415,1.99626 0,-17.12414 -27.9476,0.15596 0,17.46725 -23.45602,-2.49533 0,-17.37367 -25.10917,0.62383 c -2.45774,21.16773 10.41494,26.02901 1.59077,41.04804 l 21.65691,11.42375 c 1.03975,22.8811 6.07203,52.85062 4.11739,67.39564 -7.63417,5.81461 6.81976,11.3197 -11.80051,15.12945 -2.23213,0.4567 -19.2627,1.97524 -20.18091,3.15034 -6.87373,8.79699 -3.19608,23.48534 9.70057,24.32939 9.05875,0.59286 107.1433,0.75192 116.50031,-0.28073 14.35768,-1.58453 16.57548,-16.56842 9.95009,-24.85964 -1.0148,-1.26988 -16.78086,-2.63577 -20.52402,-3.2751 -16.64645,-2.84321 -4.01698,-9.32759 -11.49849,-13.25454 -2.39977,-15.8829 1.87413,-44.95778 4.38681,-68.73596 l 22.14599,-10.86665 c -6.8327,-16.42811 4.25756,-18.89689 1.96507,-41.79663 z"
1386
+ style="fill:url(#linearGradient3291);fill-opacity:1;stroke:url(#linearGradient3293);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1387
+ inkscape:connector-curvature="0" />
1388
+ <path
1389
+ sodipodi:nodetypes="cc"
1390
+ id="path6245"
1391
+ d="m 456.68826,372.14242 91.8562,0"
1392
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3288);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1393
+ inkscape:connector-curvature="0" />
1394
+ <path
1395
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3285);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1396
+ d="m 473.95918,353.70213 51.93106,0"
1397
+ id="path6247"
1398
+ sodipodi:nodetypes="cc"
1399
+ inkscape:connector-curvature="0" />
1400
+ <path
1401
+ sodipodi:nodetypes="cc"
1402
+ id="path6249"
1403
+ d="m 473.95918,282.75011 45.94228,0"
1404
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3282);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1405
+ inkscape:connector-curvature="0" />
1406
+ <path
1407
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3279);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1408
+ d="m 452.43278,265.57951 83.34881,0.3529"
1409
+ id="path6251"
1410
+ sodipodi:nodetypes="cc"
1411
+ inkscape:connector-curvature="0" />
1412
+ <path
1413
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3276);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1414
+ d="m 554.86588,392.85714 c 14.35768,-1.58453 16.57548,-12.57591 9.95009,-20.86712 -1.0148,-1.26989 -16.78087,-2.63578 -20.52402,-3.27511 -16.64646,-2.84321 -4.01699,-13.3201 -11.49849,-17.24705 -2.39977,-15.8829 1.87413,-48.95029 4.38681,-72.72848 l 22.14599,-10.86664 c -6.00991,-12.60137 4.38972,-20.2121 1.96507,-37.80412"
1415
+ id="path6253"
1416
+ sodipodi:nodetypes="csscccc"
1417
+ inkscape:connector-curvature="0" />
1418
+ </g>
1419
+ <g
1420
+ id="WhiteQueen">
1421
+ <rect
1422
+ style="fill:none;stroke:none"
1423
+ id="rect6259"
1424
+ width="200"
1425
+ height="200"
1426
+ x="200"
1427
+ y="200" />
1428
+ <path
1429
+ sodipodi:nodetypes="cscccssscccsssscsssssssssscsssscccsc"
1430
+ id="path6261"
1431
+ d="m 328.38428,219.21887 c -6.23348,0 -11.29133,4.59035 -11.29133,10.25007 0,3.66767 2.14185,6.87532 5.33375,8.68755 -9.10196,22.47647 -17.72308,43.14827 -24.95321,66.03167 -6.98357,-20.58248 -13.61499,-42.27092 -22.0524,-65.12541 3.39605,-1.76855 5.67684,-5.06784 5.67685,-8.87506 0,-5.65971 -5.05785,-10.28131 -11.29133,-10.28131 -6.23348,0 -11.29132,4.6216 -11.29133,10.28131 0,4.97153 3.90254,9.0959 9.07673,10.03132 0.007,23.9814 4.90599,36.60805 -3.68059,70.21919 -13.00581,-24.93081 -20.58154,-35.57255 -36.58765,-59.00037 1.75767,-1.80779 2.83843,-4.18213 2.83843,-6.7813 0,-5.65971 -5.05785,-10.25006 -11.29133,-10.25006 -6.23349,0 -11.29133,4.59035 -11.29133,10.25006 0,5.65972 5.05785,10.25007 11.29133,10.25007 0.021,0 0.0414,1e-4 0.0624,0 10.70134,27.26193 15.248,40.40517 24.53411,65.59726 2.94988,8.00264 9.70549,8.28207 13.43024,17.42778 1.62484,3.98963 2.40474,19.78583 -6.05543,25.03813 -1.28193,0.79586 -17.26644,3.97897 -18.18465,5.15629 -6.87373,8.81353 -3.19609,23.52951 9.70056,24.37515 9.05875,0.59398 103.15079,0.75333 112.5078,-0.28125 14.35768,-1.58751 16.57548,-16.5996 9.95009,-24.90641 -1.0148,-1.27228 -15.34728,-2.92846 -18.52776,-5.28128 -5.80845,-4.29694 -8.66079,-18.75215 -7.29941,-24.19438 2.06758,-8.26534 9.77218,-7.60953 11.8565,-14.51865 9.08608,-30.11878 16.66945,-41.46565 29.66,-68.47514 0.30955,0.0232 0.61965,0.0625 0.93575,0.0625 6.23348,0 11.29134,-4.59035 11.29133,-10.25007 0,-5.65971 -5.05787,-10.25006 -11.29133,-10.25006 -6.23348,0 -11.29133,4.59035 -11.29133,10.25006 0,2.64531 1.11829,5.05576 2.932,6.87505 -21.02753,25.2809 -27.72722,34.56355 -43.04429,59.84412 -5.4889,-26.83387 -0.0742,-46.29673 1.27885,-72.0317 4.81429,-1.17268 8.35933,-5.13549 8.35933,-9.87506 0,-5.65972 -5.05787,-10.25007 -11.29133,-10.25007 z"
1432
+ style="fill:url(#linearGradient3270);fill-opacity:1;stroke:url(#linearGradient3272);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1433
+ inkscape:connector-curvature="0" />
1434
+ <path
1435
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3267);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1436
+ d="m 251.63707,375.58761 91.8562,0"
1437
+ id="path6263"
1438
+ sodipodi:nodetypes="cc"
1439
+ inkscape:connector-curvature="0" />
1440
+ <path
1441
+ sodipodi:nodetypes="cc"
1442
+ id="path6265"
1443
+ d="m 263.61461,359.58751 51.93106,0"
1444
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3264);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1445
+ inkscape:connector-curvature="0" />
1446
+ <path
1447
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3261);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1448
+ d="m 260.91257,329.77362 67.90111,0"
1449
+ id="path6267"
1450
+ sodipodi:nodetypes="cc"
1451
+ inkscape:connector-curvature="0" />
1452
+ <path
1453
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3258);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1454
+ d="m 324.04866,311.3757 c -5.4889,-26.83387 -0.0742,-46.29673 1.27885,-72.0317 4.81428,-1.17268 8.35933,-5.13549 8.35933,-9.87506 0,-5.65972 -5.05787,-8.25005 -11.29133,-8.25005 m 26.4816,171.00107 c 14.35767,-1.58751 16.57548,-14.59958 9.95009,-22.9064 -1.0148,-1.27227 -15.34728,-2.92845 -18.52776,-5.28128 -5.80845,-4.29694 -8.66079,-22.75217 -7.29942,-28.19441 2.06759,-8.26534 9.77219,-7.60952 11.8565,-14.51865 9.08609,-30.11878 16.66946,-39.46563 29.66001,-66.47512 0.30955,0.0232 0.61965,0.0625 0.93575,0.0625 6.23348,0 11.29134,-4.59035 11.29133,-10.25007 0,-5.65971 -5.05787,-8.25005 -11.29133,-8.25005"
1455
+ id="path6269"
1456
+ sodipodi:nodetypes="ccsccsssscsss"
1457
+ inkscape:connector-curvature="0" />
1458
+ </g>
1459
+ <g
1460
+ id="WhiteKnight">
1461
+ <rect
1462
+ y="200"
1463
+ x="800"
1464
+ height="200"
1465
+ width="200"
1466
+ id="rect6273"
1467
+ style="fill:none;stroke:none" />
1468
+ <path
1469
+ sodipodi:nodetypes="ccccsscccccssccscscsssscc"
1470
+ id="path6275"
1471
+ d="m 892.41016,210.61325 -5.07149,17.98075 -12.90925,-14.75343 c 0,0 -0.45932,10.50527 -0.92209,19.30625 -19.79844,19.99579 -8.32851,24.3395 -37.56604,69.06613 -1.89937,2.90558 -5.46819,5.3376 -6.23322,9.21704 -3.44061,17.44714 19.11956,13.02985 23.12456,15.0235 15.44149,-12.45388 21.79646,-12.59053 29.89559,-21.47813 9.20253,3.40789 23.45613,-0.55956 32.0426,-9.68194 -5.58124,16.85148 -29.64352,28.81585 -36.8061,58.13578 8.3811,8.24857 0.0128,16.18775 -10.43757,15.62708 -11.22039,2.60832 -7.35691,23.74886 4.2574,23.69182 l 98.58555,-0.48422 c 13.77123,-0.0677 15.71398,-20.17938 6.58993,-23.64547 -8.65736,-0.0237 -12.72537,-9.06779 -5.58795,-15.08662 0.80395,-16.15731 0.64412,-31.32178 -2.78027,-46.65553 -0.35197,-1.57606 0.50923,-4.90062 2.33157,-5.23386 -1.37823,-5.14549 -6.64174,-9.82424 -8.88976,-15.07787 -1.08063,-2.52541 -3.91506,-3.7279 4.30193,-4.0647 -2.48602,-4.65344 -13.28824,-12.57518 -16.70248,-16.90627 -1.17198,-1.4867 5.51772,-2.86336 4.19055,-4.27263 -7.53952,-8.00584 -18.49187,-10.84663 -23.76085,-14.82201 -1.79722,-1.35597 5.02895,-3.15371 3.073,-4.44316 -7.20322,-4.74868 -22.20902,-10.55436 -31.76405,-14.26859 l -8.96156,-17.17392 z"
1472
+ style="fill:url(#linearGradient3252);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3254);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1473
+ inkscape:connector-curvature="0" />
1474
+ <path
1475
+ sodipodi:nodetypes="cs"
1476
+ id="path6277"
1477
+ d="m 879.93611,262.45862 c -6.2277,0.43132 -10.99705,3.49838 -14.20078,8.89026"
1478
+ style="fill:none;stroke:url(#linearGradient3249);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1479
+ inkscape:connector-curvature="0" />
1480
+ <path
1481
+ sodipodi:nodetypes="cs"
1482
+ id="path6279"
1483
+ d="m 874.09278,270.02342 c 2.69511,1.627 5.43653,1.01894 4.93368,-2.79387"
1484
+ style="fill:none;stroke:url(#linearGradient3246);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1485
+ inkscape:connector-curvature="0" />
1486
+ <path
1487
+ sodipodi:nodetypes="cs"
1488
+ id="path6281"
1489
+ d="m 840.33662,310.22049 c -2.92555,-1.01045 -5.04209,3.70309 -3.17546,3.89538"
1490
+ style="fill:none;stroke:url(#linearGradient3243);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1491
+ inkscape:connector-curvature="0" />
1492
+ <path
1493
+ sodipodi:nodetypes="cc"
1494
+ id="path6283"
1495
+ d="m 917.45808,289.30101 c 2.03857,-2.76276 1.8305,-4.11705 2.3228,-5.74588"
1496
+ style="fill:none;stroke:url(#linearGradient3240);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1497
+ inkscape:connector-curvature="0" />
1498
+ <path
1499
+ sodipodi:nodetypes="cc"
1500
+ id="path6285"
1501
+ d="m 885.1841,367.41456 75.80877,-0.007"
1502
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3237);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1503
+ inkscape:connector-curvature="0" />
1504
+ <path
1505
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3234);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1506
+ d="m 887.18036,353.44076 59.83871,-0.007"
1507
+ id="path6287"
1508
+ sodipodi:nodetypes="cc"
1509
+ inkscape:connector-curvature="0" />
1510
+ <path
1511
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3231);stroke-width:4.99064255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1512
+ d="m 964.38133,392.26388 c 13.77123,-0.0677 15.71398,-16.18686 6.58993,-19.65296 -8.65736,-0.0237 -12.72537,-13.0603 -5.58795,-19.07913 0.80395,-16.15731 0.64412,-31.32178 -2.78027,-46.65553 -0.35197,-1.57606 0.50922,-4.90062 2.33157,-5.23386 -1.37823,-5.14549 -6.64174,-7.82798 -8.88976,-13.08161 -1.08063,-2.52542 -3.91506,-3.7279 4.30193,-4.0647 -2.48602,-4.65344 -13.28824,-12.57518 -16.70248,-16.90627 -1.17199,-1.4867 5.51772,-2.86337 4.19055,-4.27263 -7.53952,-8.00584 -18.49187,-10.84663 -23.76085,-14.82201 -1.79722,-1.35598 5.02895,-3.15372 3.073,-4.44317 -7.20322,-4.74867 -16.22025,-12.55061 -25.77528,-16.26484"
1513
+ id="path6289"
1514
+ sodipodi:nodetypes="cccscscssssc"
1515
+ inkscape:connector-curvature="0" />
1516
+ </g>
1517
+ <g
1518
+ id="WhiteKing">
1519
+ <rect
1520
+ y="200"
1521
+ x="0"
1522
+ height="200"
1523
+ width="200"
1524
+ id="rect6295"
1525
+ style="fill:none;stroke:none" />
1526
+ <path
1527
+ sodipodi:nodetypes="ccccccccccscsssssssscsccccccccccc"
1528
+ id="path6297"
1529
+ d="m 90.798503,212.68758 c -4.380574,3.96185 1.90645,7.22839 0,13.53134 l -17.529632,-0.0312 0,16.5001 17.529632,0.0312 -8.92261,8.14558 -1.405134,3.19293 8.28088,8.51784 1.41936,9.45266 -10.778525,-0.65997 c -39.78189,-16.8145 -72.084622,-29.25377 -42.27457,25.4763 2.796761,5.13474 16.072318,16.24607 8.359326,23.6564 2.94988,8.00264 9.687606,6.29189 13.412352,15.43759 1.624843,3.98964 2.409013,19.77911 -6.051154,25.03141 -1.281926,0.79586 -17.266445,3.97897 -18.184654,5.15628 -6.873732,8.81354 -3.196087,23.52952 9.700562,24.37516 9.058754,0.59398 103.150794,0.75333 112.507794,-0.28126 14.35768,-1.58751 16.57548,-16.59959 9.9501,-24.9064 -1.0148,-1.27228 -15.34729,-2.92846 -18.52776,-5.28128 -5.80845,-4.29694 -8.6602,-18.74542 -7.29882,-24.18766 2.06759,-8.26534 9.76847,-7.62221 11.85278,-14.53134 -12.17404,-8.61826 6.53982,-17.79863 9.5446,-23.46889 28.63908,-54.04414 0.55097,-43.25724 -40.37581,-26.18179 l -11.99474,0.68163 1.55197,-9.58473 8.20773,-8.41908 -1.55633,-2.99632 -8.98316,-8.62506 17.52963,0.0312 0,-16.46885 -17.52963,-0.0312 c -3.1509,-6.00923 4.73986,-8.44812 0,-13.56259 l -18.434187,0 z"
1530
+ style="fill:url(#linearGradient3225);fill-opacity:1;stroke:url(#linearGradient3227);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1531
+ inkscape:connector-curvature="0" />
1532
+ <path
1533
+ sodipodi:nodetypes="cc"
1534
+ id="path6305"
1535
+ d="m 53.814662,371.58759 91.856198,0"
1536
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3222);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1537
+ inkscape:connector-curvature="0" />
1538
+ <path
1539
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3219);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1540
+ d="m 65.792204,357.5875 51.931056,0"
1541
+ id="path6307"
1542
+ sodipodi:nodetypes="cc"
1543
+ inkscape:connector-curvature="0" />
1544
+ <path
1545
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3216);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1546
+ d="m 54.484975,321.6063 c 32.537064,3.63337 59.005935,3.22204 81.874915,0"
1547
+ id="path6313"
1548
+ sodipodi:nodetypes="cc"
1549
+ inkscape:connector-curvature="0" />
1550
+ <path
1551
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3213);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1552
+ d="m 89.152207,253.29217 14.002173,0"
1553
+ id="path2631"
1554
+ sodipodi:nodetypes="cc"
1555
+ inkscape:connector-curvature="0" />
1556
+ <path
1557
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3210);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1558
+ d="m 150.87336,390.21994 c 14.35768,-1.58751 16.57548,-14.59958 9.9501,-22.90639 -1.0148,-1.27228 -13.35103,-1.92845 -16.53151,-4.28128 -5.80845,-4.29693 -10.65645,-21.74543 -9.29507,-27.18767 2.06758,-8.26534 9.76846,-7.62221 11.85278,-14.53134 -10.17778,-9.61827 6.53981,-15.79862 9.5446,-21.46888 28.63908,-54.04414 8.94943,-38.78234 -36.3833,-22.68176 l -14.98913,-0.81839 0.55385,-13.58475 8.20773,-8.41908 -1.55634,-2.99632 -8.98315,-12.62508 17.52963,0.0312 0,-8.46881 -17.52963,-0.0312 c -3.1509,-6.00922 4.73986,-12.44814 0,-17.56261"
1559
+ id="path2635"
1560
+ sodipodi:nodetypes="cssscscccccccccc"
1561
+ inkscape:connector-curvature="0" />
1562
+ <path
1563
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3207);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1564
+ d="m 30.761689,264.79224 c 1.18298,-9.06758 33.879457,5.93098 48.936667,9.50006"
1565
+ id="path3430"
1566
+ sodipodi:nodetypes="cc"
1567
+ inkscape:connector-curvature="0" />
1568
+ <path
1569
+ sodipodi:nodetypes="cc"
1570
+ id="path3435"
1571
+ d="m 44.211345,301.17114 c 12.3872,15.225 105.763935,12.64992 118.847225,-20.19862"
1572
+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3204);stroke-width:4.99533463;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1573
+ inkscape:connector-curvature="0" />
1574
+ </g>
1575
+ </g>
1576
+ </svg>