Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"# Amira Abdel-Rahman\n",
"# (c) Massachusetts Institute of Technology 2020\n",
"\n",
"# tested using julia 1.5.2 and windows Nvidia geforce gtx 1070 Ti"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Include Dependencies"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"using LinearAlgebra\n",
"import JSON\n",
"using StaticArrays, BenchmarkTools\n",
"using Base.Threads\n",
"using CUDA\n",
"import Base: +, * , -, ^\n",
"using Plots\n"
]
},
{
"cell_type": "code",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"axialStrain (generic function with 1 method)"
]
},
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"include(\"./julia/include/vector.jl\") #utils for vectors and quaternions\n",
"include(\"./julia/include/material.jl\") #utils for node and edge material\n",
"include(\"./julia/include/export.jl\") #export simulation data to json\n",
"include(\"./julia/include/run.jl\") #turn setup to cuda arrays and run simulation\n",
"include(\"./julia/include/updateEdges.jl\") #edges properties update\n",
"include(\"./julia/include/externalForces.jl\") #external forces applied to the system\n",
"include(\"./julia/include/forces.jl\") #force integration\n",
"include(\"./julia/include/updateNodes.jl\") #nodes properties update"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Create Geometry"
]
},
{
"cell_type": "code",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"axialStrain (generic function with 1 method)"
]
},
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"name= \"tutorial\"\n",
"# alternativly you can get a saved setup from an external julia file\n",
"# include(\"./julia/examples/thermalTest.jl\") #template for multimaterial hierarchical voxels with different thermal coefficient of thermal expansion \n",
"# include(\"./julia/examples/poissonTest.jl\") #template for hierarchical voxels with global poisson ratio\n",
"# include(\"./julia/examples/latticeTest.jl\") #template for lattice voxel (small scale)\n",
"# include(\"./julia/examples/latticeTest2.jl\") #template for lattice voxel (big scale with real params)\n",
"# include(\"./julia/examples/rhinoTest.jl\") #template for importing geometry from rhino\n",
"# include(\"./julia/examples/rhinoTestChiral.jl\") #template for importing chiral array\n",
"# include(\"./julia/examples/rover.jl\") #template for importing chiral array\n",
"# include(\"./julia/examples/wing.jl\") #template for importing chiral array\n",
"# include(\"./julia/examples/walkingRobot.jl\") #template for importing chiral array\n",
"include(\"./julia/examples/nonLinearTest.jl\") #template for hierarchical voxels with global poisson ratio\n",
"\n",
"\n",
"\n",
"## rerun these just for sanity check for dynamic loads\n",
"include(\"./julia/include/run.jl\") #turn setup to cuda arrays and run simulation\n",
"include(\"./julia/include/updateEdges.jl\") #edges properties update\n",
"include(\"./julia/include/forces.jl\") #force integration\n",
"include(\"./julia/include/updateNodes.jl\") #nodes properties update"
]
},
{
"cell_type": "code",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Loaded rhino3dm.\n",
"Success!\n"
]
},
{
"data": {
"text/plain": [
"Process(`\u001b[4mnode\u001b[24m \u001b[4mapp1.js\u001b[24m \u001b[4mtutorial\u001b[24m`, ProcessExited(0))"
]
},
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"#export prev. settings to json\n",
"fileName=\"./json/$(name)Init.json\"\n",
"setup1=Dict()\n",
"setup1[\"setup\"]=setup\n",
"stringdata = JSON.json(setup1)\n",
"open(fileName, \"w\") do f\n",
" write(f, stringdata)\n",
"end\n",
"#run node.js to draw the gerometry using rhino3dm\n",
"mycommand = `node app1.js $(name)`\n",
"run(mycommand)"
]
},
{
"cell_type": "code",
"execution_count": 759,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"externalForce (generic function with 1 method)"
]
},
"execution_count": 759,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"function externalForce(currentTimeStep,N_position,N_force)\n",
" return N_force\n",
"end"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Run Simulation"
]
},
{
"cell_type": "code",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"dt: 1.4235251564292887e-5, s: 0.001, mass: 8.0e-6, momentInertiaInverse: 1.8749999999999997e11\n",
"first timestep took 0.0005638 seconds\n",
"ran 215 nodes and 374 edges for 5000 time steps took 3.921461 seconds\n"
]
}
],
"source": [
"# set name for simulation\n",
"# name= \"tutorial\"\n",
"# name=\"couponHex\"\n",
"name=\"coupon\"\n",
"\n",
"\n",
"folderPath=\"./json/tutorial/\" # make sure this folder exists\n",
"setupSim=getSetup(name);\n",
"runMetavoxelGPULive!(setupSim,folderPath)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Plot"
]
},
{
"cell_type": "code",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"include(\"./julia/include/plotViz.jl\") #plotting\n",
"name= \"tutorial\""
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
" <clipPath id=\"clip380\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip380)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip381\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip380)\" d=\"\n",
"M171.181 1486.45 L2352.76 1486.45 L2352.76 123.472 L171.181 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip382\">\n",
" <rect x=\"171\" y=\"123\" width=\"2183\" height=\"1364\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 223.307,1486.45 223.307,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 704.169,1486.45 704.169,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1185.03,1486.45 1185.03,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1665.89,1486.45 1665.89,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2146.75,1486.45 2146.75,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 171.181,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 223.307,1486.45 223.307,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 704.169,1486.45 704.169,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1185.03,1486.45 1185.03,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1665.89,1486.45 1665.89,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2146.75,1486.45 2146.75,1470.09 \n",
" \"/>\n",
"<path clip-path=\"url(#clip380)\" d=\"M 0 0 M223.307 1515.64 Q219.696 1515.64 217.867 1519.2 Q216.062 1522.75 216.062 1529.87 Q216.062 1536.98 217.867 1540.55 Q219.696 1544.09 223.307 1544.09 Q226.941 1544.09 228.747 1540.55 Q230.575 1536.98 230.575 1529.87 Q230.575 1522.75 228.747 1519.2 Q226.941 1515.64 223.307 1515.64 M223.307 1511.93 Q229.117 1511.93 232.173 1516.54 Q235.251 1521.12 235.251 1529.87 Q235.251 1538.6 232.173 1543.21 Q229.117 1547.79 223.307 1547.79 Q217.497 1547.79 214.418 1543.21 Q211.363 1538.6 211.363 1529.87 Q211.363 1521.12 214.418 1516.54 Q217.497 1511.93 223.307 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M680.94 1512.56 L699.296 1512.56 L699.296 1516.5 L685.222 1516.5 L685.222 1524.97 Q686.241 1524.62 687.259 1524.46 Q688.278 1524.27 689.296 1524.27 Q695.083 1524.27 698.463 1527.44 Q701.842 1530.62 701.842 1536.03 Q701.842 1541.61 698.37 1544.71 Q694.898 1547.79 688.579 1547.79 Q686.403 1547.79 684.134 1547.42 Q681.889 1547.05 679.481 1546.31 L679.481 1541.61 Q681.565 1542.74 683.787 1543.3 Q686.009 1543.86 688.486 1543.86 Q692.491 1543.86 694.829 1541.75 Q697.167 1539.64 697.167 1536.03 Q697.167 1532.42 694.829 1530.31 Q692.491 1528.21 688.486 1528.21 Q686.611 1528.21 684.736 1528.62 Q682.884 1529.04 680.94 1529.92 L680.94 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M716.912 1515.64 Q713.301 1515.64 711.472 1519.2 Q709.667 1522.75 709.667 1529.87 Q709.667 1536.98 711.472 1540.55 Q713.301 1544.09 716.912 1544.09 Q720.546 1544.09 722.352 1540.55 Q724.18 1536.98 724.18 1529.87 Q724.18 1522.75 722.352 1519.2 Q720.546 1515.64 716.912 1515.64 M716.912 1511.93 Q722.722 1511.93 725.778 1516.54 Q728.856 1521.12 728.856 1529.87 Q728.856 1538.6 725.778 1543.21 Q722.722 1547.79 716.912 1547.79 Q711.102 1547.79 708.023 1543.21 Q704.967 1538.6 704.967 1529.87 Q704.967 1521.12 708.023 1516.54 Q711.102 1511.93 716.912 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M1148.4 1543.18 L1156.04 1543.18 L1156.04 1516.82 L1147.73 1518.49 L1147.73 1514.23 L1155.99 1512.56 L1160.67 1512.56 L1160.67 1543.18 L1168.31 1543.18 L1168.31 1547.12 L1148.4 1547.12 L1148.4 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M1183.38 1515.64 Q1179.76 1515.64 1177.94 1519.2 Q1176.13 1522.75 1176.13 1529.87 Q1176.13 1536.98 1177.94 1540.55 Q1179.76 1544.09 1183.38 1544.09 Q1187.01 1544.09 1188.82 1540.55 Q1190.64 1536.98 1190.64 1529.87 Q1190.64 1522.75 1188.82 1519.2 Q1187.01 1515.64 1183.38 1515.64 M1183.38 1511.93 Q1189.19 1511.93 1192.24 1516.54 Q1195.32 1521.12 1195.32 1529.87 Q1195.32 1538.6 1192.24 1543.21 Q1189.19 1547.79 1183.38 1547.79 Q1177.57 1547.79 1174.49 1543.21 Q1171.43 1538.6 1171.43 1529.87 Q1171.43 1521.12 1174.49 1516.54 Q1177.57 1511.93 1183.38 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M1210.39 1515.64 Q1206.78 1515.64 1204.95 1519.2 Q1203.14 1522.75 1203.14 1529.87 Q1203.14 1536.98 1204.95 1540.55 Q1206.78 1544.09 1210.39 1544.09 Q1214.02 1544.09 1215.83 1540.55 Q1217.66 1536.98 1217.66 1529.87 Q1217.66 1522.75 1215.83 1519.2 Q1214.02 1515.64 1210.39 1515.64 M1210.39 1511.93 Q1216.2 1511.93 1219.26 1516.54 Q1222.33 1521.12 1222.33 1529.87 Q1222.33 1538.6 1219.26 1543.21 Q1216.2 1547.79 1210.39 1547.79 Q1204.58 1547.79 1201.5 1543.21 Q1198.45 1538.6 1198.45 1529.87 Q1198.45 1521.12 1201.5 1516.54 Q1204.58 1511.93 1210.39 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M1629.76 1543.18 L1637.4 1543.18 L1637.4 1516.82 L1629.09 1518.49 L1629.09 1514.23 L1637.35 1512.56 L1642.03 1512.56 L1642.03 1543.18 L1649.67 1543.18 L1649.67 1547.12 L1629.76 1547.12 L1629.76 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M1654.78 1512.56 L1673.14 1512.56 L1673.14 1516.5 L1659.06 1516.5 L1659.06 1524.97 Q1660.08 1524.62 1661.1 1524.46 Q1662.12 1524.27 1663.14 1524.27 Q1668.93 1524.27 1672.3 1527.44 Q1675.68 1530.62 1675.68 1536.03 Q1675.68 1541.61 1672.21 1544.71 Q1668.74 1547.79 1662.42 1547.79 Q1660.24 1547.79 1657.98 1547.42 Q1655.73 1547.05 1653.32 1546.31 L1653.32 1541.61 Q1655.41 1542.74 1657.63 1543.3 Q1659.85 1543.86 1662.33 1543.86 Q1666.33 1543.86 1668.67 1541.75 Q1671.01 1539.64 1671.01 1536.03 Q1671.01 1532.42 1668.67 1530.31 Q1666.33 1528.21 1662.33 1528.21 Q1660.45 1528.21 1658.58 1528.62 Q1656.73 1529.04 1654.78 1529.92 L1654.78 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M1690.75 1515.64 Q1687.14 1515.64 1685.31 1519.2 Q1683.51 1522.75 1683.51 1529.87 Q1683.51 1536.98 1685.31 1540.55 Q1687.14 1544.09 1690.75 1544.09 Q1694.39 1544.09 1696.19 1540.55 Q1698.02 1536.98 1698.02 1529.87 Q1698.02 1522.75 1696.19 1519.2 Q1694.39 1515.64 1690.75 1515.64 M1690.75 1511.93 Q1696.56 1511.93 1699.62 1516.54 Q1702.7 1521.12 1702.7 1529.87 Q1702.7 1538.6 1699.62 1543.21 Q1696.56 1547.79 1690.75 1547.79 Q1684.94 1547.79 1681.86 1543.21 Q1678.81 1538.6 1678.81 1529.87 Q1678.81 1521.12 1681.86 1516.54 Q1684.94 1511.93 1690.75 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M2114.39 1543.18 L2130.71 1543.18 L2130.71 1547.12 L2108.77 1547.12 L2108.77 1543.18 Q2111.43 1540.43 2116.01 1535.8 Q2120.62 1531.15 2121.8 1529.81 Q2124.05 1527.28 2124.93 1525.55 Q2125.83 1523.79 2125.83 1522.1 Q2125.83 1519.34 2123.88 1517.61 Q2121.96 1515.87 2118.86 1515.87 Q2116.66 1515.87 2114.21 1516.63 Q2111.78 1517.4 2109 1518.95 L2109 1514.23 Q2111.82 1513.09 2114.28 1512.51 Q2116.73 1511.93 2118.77 1511.93 Q2124.14 1511.93 2127.33 1514.62 Q2130.53 1517.31 2130.53 1521.8 Q2130.53 1523.93 2129.72 1525.85 Q2128.93 1527.74 2126.82 1530.34 Q2126.25 1531.01 2123.14 1534.23 Q2120.04 1537.42 2114.39 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M2145.78 1515.64 Q2142.17 1515.64 2140.34 1519.2 Q2138.54 1522.75 2138.54 1529.87 Q2138.54 1536.98 2140.34 1540.55 Q2142.17 1544.09 2145.78 1544.09 Q2149.42 1544.09 2151.22 1540.55 Q2153.05 1536.98 2153.05 1529.87 Q2153.05 1522.75 2151.22 1519.2 Q2149.42 1515.64 2145.78 1515.64 M2145.78 1511.93 Q2151.59 1511.93 2154.65 1516.54 Q2157.73 1521.12 2157.73 1529.87 Q2157.73 1538.6 2154.65 1543.21 Q2151.59 1547.79 2145.78 1547.79 Q2139.97 1547.79 2136.89 1543.21 Q2133.84 1538.6 2133.84 1529.87 Q2133.84 1521.12 2136.89 1516.54 Q2139.97 1511.93 2145.78 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M2172.8 1515.64 Q2169.19 1515.64 2167.36 1519.2 Q2165.55 1522.75 2165.55 1529.87 Q2165.55 1536.98 2167.36 1540.55 Q2169.19 1544.09 2172.8 1544.09 Q2176.43 1544.09 2178.24 1540.55 Q2180.06 1536.98 2180.06 1529.87 Q2180.06 1522.75 2178.24 1519.2 Q2176.43 1515.64 2172.8 1515.64 M2172.8 1511.93 Q2178.61 1511.93 2181.66 1516.54 Q2184.74 1521.12 2184.74 1529.87 Q2184.74 1538.6 2181.66 1543.21 Q2178.61 1547.79 2172.8 1547.79 Q2166.99 1547.79 2163.91 1543.21 Q2160.85 1538.6 2160.85 1529.87 Q2160.85 1521.12 2163.91 1516.54 Q2166.99 1511.93 2172.8 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 171.181,1324.38 2352.76,1324.38 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 171.181,1064.67 2352.76,1064.67 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 171.181,804.96 2352.76,804.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 171.181,545.25 2352.76,545.25 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 171.181,285.539 2352.76,285.539 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 171.181,1486.45 171.181,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 171.181,1324.38 197.36,1324.38 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 171.181,1064.67 197.36,1064.67 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 171.181,804.96 197.36,804.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 171.181,545.25 197.36,545.25 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 171.181,285.539 197.36,285.539 \n",
" \"/>\n",
"<path clip-path=\"url(#clip380)\" d=\"M 0 0 M50.9921 1324.83 L80.6679 1324.83 L80.6679 1328.77 L50.9921 1328.77 L50.9921 1324.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M98.5845 1311.17 L86.779 1329.62 L98.5845 1329.62 L98.5845 1311.17 M97.3576 1307.1 L103.237 1307.1 L103.237 1329.62 L108.168 1329.62 L108.168 1333.51 L103.237 1333.51 L103.237 1341.66 L98.5845 1341.66 L98.5845 1333.51 L82.9827 1333.51 L82.9827 1329 L97.3576 1307.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M123.237 1310.18 Q119.626 1310.18 117.797 1313.74 Q115.992 1317.29 115.992 1324.42 Q115.992 1331.52 117.797 1335.09 Q119.626 1338.63 123.237 1338.63 Q126.871 1338.63 128.677 1335.09 Q130.506 1331.52 130.506 1324.42 Q130.506 1317.29 128.677 1313.74 Q126.871 1310.18 123.237 1310.18 M123.237 1306.48 Q129.047 1306.48 132.103 1311.08 Q135.181 1315.67 135.181 1324.42 Q135.181 1333.14 132.103 1337.75 Q129.047 1342.33 123.237 1342.33 Q117.427 1342.33 114.348 1337.75 Q111.293 1333.14 111.293 1324.42 Q111.293 1315.67 114.348 1311.08 Q117.427 1306.48 123.237 1306.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M53.0754 1065.12 L82.7512 1065.12 L82.7512 1069.06 L53.0754 1069.06 L53.0754 1065.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M91.8484 1078.02 L108.168 1078.02 L108.168 1081.95 L86.2234 1081.95 L86.2234 1078.02 Q88.8854 1075.26 93.4688 1070.63 Q98.0752 1065.98 99.2558 1064.64 Q101.501 1062.11 102.381 1060.38 Q103.284 1058.62 103.284 1056.93 Q103.284 1054.17 101.339 1052.44 Q99.4178 1050.7 96.316 1050.7 Q94.1169 1050.7 91.6632 1051.46 Q89.2327 1052.23 86.4549 1053.78 L86.4549 1049.06 Q89.279 1047.92 91.7326 1047.34 Q94.1863 1046.77 96.2234 1046.77 Q101.594 1046.77 104.788 1049.45 Q107.983 1052.14 107.983 1056.63 Q107.983 1058.76 107.172 1060.68 Q106.385 1062.58 104.279 1065.17 Q103.7 1065.84 100.598 1069.06 Q97.4965 1072.25 91.8484 1078.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M123.237 1050.47 Q119.626 1050.47 117.797 1054.03 Q115.992 1057.58 115.992 1064.71 Q115.992 1071.81 117.797 1075.38 Q119.626 1078.92 123.237 1078.92 Q126.871 1078.92 128.677 1075.38 Q130.506 1071.81 130.506 1064.71 Q130.506 1057.58 128.677 1054.03 Q126.871 1050.47 123.237 1050.47 M123.237 1046.77 Q129.047 1046.77 132.103 1051.37 Q135.181 1055.96 135.181 1064.71 Q135.181 1073.43 132.103 1078.04 Q129.047 1082.62 123.237 1082.62 Q117.427 1082.62 114.348 1078.04 Q111.293 1073.43 111.293 1064.71 Q111.293 1055.96 114.348 1051.37 Q117.427 1046.77 123.237 1046.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M123.237 790.759 Q119.626 790.759 117.797 794.323 Q115.992 797.865 115.992 804.995 Q115.992 812.101 117.797 815.666 Q119.626 819.208 123.237 819.208 Q126.871 819.208 128.677 815.666 Q130.506 812.101 130.506 804.995 Q130.506 797.865 128.677 794.323 Q126.871 790.759 123.237 790.759 M123.237 787.055 Q129.047 787.055 132.103 791.661 Q135.181 796.245 135.181 804.995 Q135.181 813.722 132.103 818.328 Q129.047 822.911 123.237 822.911 Q117.427 822.911 114.348 818.328 Q111.293 813.722 111.293 804.995 Q111.293 796.245 114.348 791.661 Q117.427 787.055 123.237 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M91.8484 558.594 L108.168 558.594 L108.168 562.53 L86.2234 562.53 L86.2234 558.594 Q88.8854 555.84 93.4688 551.21 Q98.0752 546.557 99.2558 545.215 Q101.501 542.692 102.381 540.956 Q103.284 539.196 103.284 537.507 Q103.284 534.752 101.339 533.016 Q99.4178 531.28 96.316 531.28 Q94.1169 531.28 91.6632 532.044 Q89.2327 532.808 86.4549 534.358 L86.4549 529.636 Q89.279 528.502 91.7326 527.923 Q94.1863 527.345 96.2234 527.345 Q101.594 527.345 104.788 530.03 Q107.983 532.715 107.983 537.206 Q107.983 539.335 107.172 541.257 Q106.385 543.155 104.279 545.747 Q103.7 546.419 100.598 549.636 Q97.4965 552.831 91.8484 558.594 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M123.237 531.048 Q119.626 531.048 117.797 534.613 Q115.992 538.155 115.992 545.284 Q115.992 552.391 117.797 555.956 Q119.626 559.497 123.237 559.497 Q126.871 559.497 128.677 555.956 Q130.506 552.391 130.506 545.284 Q130.506 538.155 128.677 534.613 Q126.871 531.048 123.237 531.048 M123.237 527.345 Q129.047 527.345 132.103 531.951 Q135.181 536.534 135.181 545.284 Q135.181 554.011 132.103 558.618 Q129.047 563.201 123.237 563.201 Q117.427 563.201 114.348 558.618 Q111.293 554.011 111.293 545.284 Q111.293 536.534 114.348 531.951 Q117.427 527.345 123.237 527.345 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M98.5845 272.333 L86.779 290.782 L98.5845 290.782 L98.5845 272.333 M97.3576 268.259 L103.237 268.259 L103.237 290.782 L108.168 290.782 L108.168 294.671 L103.237 294.671 L103.237 302.819 L98.5845 302.819 L98.5845 294.671 L82.9827 294.671 L82.9827 290.157 L97.3576 268.259 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M123.237 271.338 Q119.626 271.338 117.797 274.903 Q115.992 278.444 115.992 285.574 Q115.992 292.68 117.797 296.245 Q119.626 299.787 123.237 299.787 Q126.871 299.787 128.677 296.245 Q130.506 292.68 130.506 285.574 Q130.506 278.444 128.677 274.903 Q126.871 271.338 123.237 271.338 M123.237 267.634 Q129.047 267.634 132.103 272.241 Q135.181 276.824 135.181 285.574 Q135.181 294.301 132.103 298.907 Q129.047 303.49 123.237 303.49 Q117.427 303.49 114.348 298.907 Q111.293 294.301 111.293 285.574 Q111.293 276.824 114.348 272.241 Q117.427 267.634 123.237 267.634 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M1283.11 27.2059 L1266.71 49.2833 L1283.97 72.576 L1275.17 72.576 L1261.97 54.752 L1248.76 72.576 L1239.97 72.576 L1257.59 48.8377 L1241.47 27.2059 L1250.26 27.2059 L1262.29 43.369 L1274.32 27.2059 L1283.11 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip382)\" cx=\"232.924\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"242.541\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"252.159\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"261.776\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"271.393\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"281.01\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"290.628\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"300.245\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"309.862\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"319.479\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"329.097\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"338.714\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"348.331\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"357.948\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"367.566\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"377.183\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"386.8\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"396.417\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"406.034\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"415.652\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"425.269\" cy=\"1443.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"434.886\" cy=\"1443.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"444.503\" cy=\"1443.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"454.121\" cy=\"1443.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"463.738\" cy=\"1443.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"473.355\" cy=\"1439.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"482.972\" cy=\"1439.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"492.59\" cy=\"1439.17\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"502.207\" cy=\"1439.17\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"511.824\" cy=\"1439.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"521.441\" cy=\"1435.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"531.059\" cy=\"1435.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"540.676\" cy=\"1435.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"550.293\" cy=\"1435.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"559.91\" cy=\"1435.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"569.528\" cy=\"1431.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"579.145\" cy=\"1431.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"588.762\" cy=\"1431.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"598.379\" cy=\"1431.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"607.996\" cy=\"1431.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"617.614\" cy=\"1428.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"627.231\" cy=\"1428.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"636.848\" cy=\"1428.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"646.465\" cy=\"1428.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"656.083\" cy=\"1428.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"665.7\" cy=\"1425.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"675.317\" cy=\"1425.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"684.934\" cy=\"1425.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"694.552\" cy=\"1425.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"704.169\" cy=\"1425.91\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"713.786\" cy=\"1423.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"723.403\" cy=\"1423.51\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"733.021\" cy=\"1423.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"742.638\" cy=\"1423.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"752.255\" cy=\"1423.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"761.872\" cy=\"1421.43\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"771.49\" cy=\"1421.41\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"781.107\" cy=\"1421.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"790.724\" cy=\"1421.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"800.341\" cy=\"1421.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"809.958\" cy=\"1419.68\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"819.576\" cy=\"1419.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"829.193\" cy=\"1419.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"838.81\" cy=\"1419.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"848.427\" cy=\"1419.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"858.045\" cy=\"1418.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"867.662\" cy=\"1418.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"877.279\" cy=\"1418.26\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"886.896\" cy=\"1418.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"896.514\" cy=\"1418.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"906.131\" cy=\"1417.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"915.748\" cy=\"1417.23\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"925.365\" cy=\"1417.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"934.983\" cy=\"1417.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"944.6\" cy=\"1417.19\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"954.217\" cy=\"1416.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"963.834\" cy=\"1416.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"973.452\" cy=\"1416.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"983.069\" cy=\"1416.51\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"992.686\" cy=\"1416.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1002.3\" cy=\"1416.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1011.92\" cy=\"1416.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1021.54\" cy=\"1416.17\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1031.15\" cy=\"1416.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1040.77\" cy=\"1416.14\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1050.39\" cy=\"807.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1060.01\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1069.62\" cy=\"807.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1079.24\" cy=\"807.321\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1088.86\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1098.48\" cy=\"807.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1108.09\" cy=\"807.322\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1117.71\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1127.33\" cy=\"807.349\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1136.94\" cy=\"807.323\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1146.56\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1156.18\" cy=\"807.347\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1165.8\" cy=\"807.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1175.41\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1185.03\" cy=\"807.345\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1194.65\" cy=\"807.329\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1204.27\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1213.88\" cy=\"807.342\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1223.5\" cy=\"807.332\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1233.12\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1242.73\" cy=\"807.338\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1252.35\" cy=\"807.336\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1261.97\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1271.59\" cy=\"807.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1281.2\" cy=\"807.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1290.82\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1300.44\" cy=\"807.331\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1310.05\" cy=\"807.343\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1319.67\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1329.29\" cy=\"807.327\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1338.91\" cy=\"807.346\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1348.52\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1358.14\" cy=\"807.324\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1367.76\" cy=\"807.349\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1377.38\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1386.99\" cy=\"807.322\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1396.61\" cy=\"807.351\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1406.23\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1415.84\" cy=\"807.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1425.46\" cy=\"807.352\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1435.08\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1444.7\" cy=\"807.319\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1454.31\" cy=\"807.352\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1463.93\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1473.55\" cy=\"807.318\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1483.17\" cy=\"193.705\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1492.78\" cy=\"193.726\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1502.4\" cy=\"193.746\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1512.02\" cy=\"193.766\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1521.63\" cy=\"193.787\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1531.25\" cy=\"193.356\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1540.87\" cy=\"193.377\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1550.49\" cy=\"193.397\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1560.1\" cy=\"193.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1569.72\" cy=\"193.438\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1579.34\" cy=\"192.659\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1588.95\" cy=\"192.679\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1598.57\" cy=\"192.699\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1608.19\" cy=\"192.719\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1617.81\" cy=\"192.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1627.42\" cy=\"191.613\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1637.04\" cy=\"191.633\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1646.66\" cy=\"191.653\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1656.28\" cy=\"191.673\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1665.89\" cy=\"191.693\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1675.51\" cy=\"190.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1685.13\" cy=\"190.239\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1694.74\" cy=\"190.258\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1704.36\" cy=\"190.277\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1713.98\" cy=\"190.296\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1723.6\" cy=\"188.478\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1733.21\" cy=\"188.496\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1742.83\" cy=\"188.514\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1752.45\" cy=\"188.533\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1762.07\" cy=\"188.551\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1771.68\" cy=\"186.388\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1781.3\" cy=\"186.406\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1790.92\" cy=\"186.423\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1800.53\" cy=\"186.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1810.15\" cy=\"186.457\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1819.77\" cy=\"183.951\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1829.39\" cy=\"183.967\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1839\" cy=\"183.983\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1848.62\" cy=\"183.998\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1858.24\" cy=\"184.014\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1867.85\" cy=\"181.167\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1877.47\" cy=\"181.181\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1887.09\" cy=\"181.195\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1896.71\" cy=\"181.209\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1906.32\" cy=\"181.223\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1915.94\" cy=\"178.035\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1925.56\" cy=\"178.048\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1935.18\" cy=\"178.059\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1944.79\" cy=\"178.071\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1954.41\" cy=\"178.084\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1964.03\" cy=\"174.557\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1973.64\" cy=\"174.567\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1983.26\" cy=\"174.577\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"1992.88\" cy=\"174.586\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2002.5\" cy=\"174.596\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2012.11\" cy=\"170.733\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2021.73\" cy=\"170.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2031.35\" cy=\"170.747\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2040.97\" cy=\"170.753\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2050.58\" cy=\"170.761\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2060.2\" cy=\"166.563\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2069.82\" cy=\"166.567\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2079.43\" cy=\"166.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2089.05\" cy=\"166.573\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2098.67\" cy=\"166.577\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2108.29\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2117.9\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2127.52\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2137.14\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2146.75\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2156.37\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2165.99\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2175.61\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2185.22\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2194.84\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2204.46\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2214.08\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2223.69\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2233.31\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2242.93\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2252.54\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2262.16\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2271.78\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2281.4\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip382)\" cx=\"2291.01\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip420\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip420)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip420)\" d=\"\n",
"M233.681 1486.45 L2352.76 1486.45 L2352.76 123.472 L233.681 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip422\">\n",
" <rect x=\"233\" y=\"123\" width=\"2120\" height=\"1364\"/>\n",
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
"<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 284.313,1486.45 284.313,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 751.399,1486.45 751.399,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1218.48,1486.45 1218.48,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1685.57,1486.45 1685.57,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2152.66,1486.45 2152.66,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.681,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.313,1486.45 284.313,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 751.399,1486.45 751.399,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1218.48,1486.45 1218.48,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1685.57,1486.45 1685.57,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2152.66,1486.45 2152.66,1470.09 \n",
" \"/>\n",
"<path clip-path=\"url(#clip420)\" d=\"M 0 0 M284.313 1515.64 Q280.702 1515.64 278.873 1519.2 Q277.068 1522.75 277.068 1529.87 Q277.068 1536.98 278.873 1540.55 Q280.702 1544.09 284.313 1544.09 Q287.947 1544.09 289.753 1540.55 Q291.582 1536.98 291.582 1529.87 Q291.582 1522.75 289.753 1519.2 Q287.947 1515.64 284.313 1515.64 M284.313 1511.93 Q290.123 1511.93 293.179 1516.54 Q296.258 1521.12 296.258 1529.87 Q296.258 1538.6 293.179 1543.21 Q290.123 1547.79 284.313 1547.79 Q278.503 1547.79 275.424 1543.21 Q272.369 1538.6 272.369 1529.87 Q272.369 1521.12 275.424 1516.54 Q278.503 1511.93 284.313 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M728.17 1512.56 L746.526 1512.56 L746.526 1516.5 L732.452 1516.5 L732.452 1524.97 Q733.471 1524.62 734.489 1524.46 Q735.508 1524.27 736.526 1524.27 Q742.313 1524.27 745.693 1527.44 Q749.073 1530.62 749.073 1536.03 Q749.073 1541.61 745.6 1544.71 Q742.128 1547.79 735.809 1547.79 Q733.633 1547.79 731.364 1547.42 Q729.119 1547.05 726.712 1546.31 L726.712 1541.61 Q728.795 1542.74 731.017 1543.3 Q733.239 1543.86 735.716 1543.86 Q739.721 1543.86 742.059 1541.75 Q744.397 1539.64 744.397 1536.03 Q744.397 1532.42 742.059 1530.31 Q739.721 1528.21 735.716 1528.21 Q733.841 1528.21 731.966 1528.62 Q730.114 1529.04 728.17 1529.92 L728.17 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M764.142 1515.64 Q760.531 1515.64 758.702 1519.2 Q756.897 1522.75 756.897 1529.87 Q756.897 1536.98 758.702 1540.55 Q760.531 1544.09 764.142 1544.09 Q767.776 1544.09 769.582 1540.55 Q771.41 1536.98 771.41 1529.87 Q771.41 1522.75 769.582 1519.2 Q767.776 1515.64 764.142 1515.64 M764.142 1511.93 Q769.952 1511.93 773.008 1516.54 Q776.086 1521.12 776.086 1529.87 Q776.086 1538.6 773.008 1543.21 Q769.952 1547.79 764.142 1547.79 Q758.332 1547.79 755.253 1543.21 Q752.198 1538.6 752.198 1529.87 Q752.198 1521.12 755.253 1516.54 Q758.332 1511.93 764.142 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M1181.85 1543.18 L1189.49 1543.18 L1189.49 1516.82 L1181.18 1518.49 L1181.18 1514.23 L1189.45 1512.56 L1194.12 1512.56 L1194.12 1543.18 L1201.76 1543.18 L1201.76 1547.12 L1181.85 1547.12 L1181.85 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M1216.83 1515.64 Q1213.22 1515.64 1211.39 1519.2 Q1209.58 1522.75 1209.58 1529.87 Q1209.58 1536.98 1211.39 1540.55 Q1213.22 1544.09 1216.83 1544.09 Q1220.46 1544.09 1222.27 1540.55 Q1224.1 1536.98 1224.1 1529.87 Q1224.1 1522.75 1222.27 1519.2 Q1220.46 1515.64 1216.83 1515.64 M1216.83 1511.93 Q1222.64 1511.93 1225.7 1516.54 Q1228.77 1521.12 1228.77 1529.87 Q1228.77 1538.6 1225.7 1543.21 Q1222.64 1547.79 1216.83 1547.79 Q1211.02 1547.79 1207.94 1543.21 Q1204.89 1538.6 1204.89 1529.87 Q1204.89 1521.12 1207.94 1516.54 Q1211.02 1511.93 1216.83 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M1243.84 1515.64 Q1240.23 1515.64 1238.4 1519.2 Q1236.6 1522.75 1236.6 1529.87 Q1236.6 1536.98 1238.4 1540.55 Q1240.23 1544.09 1243.84 1544.09 Q1247.48 1544.09 1249.28 1540.55 Q1251.11 1536.98 1251.11 1529.87 Q1251.11 1522.75 1249.28 1519.2 Q1247.48 1515.64 1243.84 1515.64 M1243.84 1511.93 Q1249.65 1511.93 1252.71 1516.54 Q1255.79 1521.12 1255.79 1529.87 Q1255.79 1538.6 1252.71 1543.21 Q1249.65 1547.79 1243.84 1547.79 Q1238.03 1547.79 1234.95 1543.21 Q1231.9 1538.6 1231.9 1529.87 Q1231.9 1521.12 1234.95 1516.54 Q1238.03 1511.93 1243.84 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M1649.44 1543.18 L1657.08 1543.18 L1657.08 1516.82 L1648.77 1518.49 L1648.77 1514.23 L1657.03 1512.56 L1661.7 1512.56 L1661.7 1543.18 L1669.34 1543.18 L1669.34 1547.12 L1649.44 1547.12 L1649.44 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M1674.46 1512.56 L1692.82 1512.56 L1692.82 1516.5 L1678.74 1516.5 L1678.74 1524.97 Q1679.76 1524.62 1680.78 1524.46 Q1681.8 1524.27 1682.82 1524.27 Q1688.6 1524.27 1691.98 1527.44 Q1695.36 1530.62 1695.36 1536.03 Q1695.36 1541.61 1691.89 1544.71 Q1688.42 1547.79 1682.1 1547.79 Q1679.92 1547.79 1677.65 1547.42 Q1675.41 1547.05 1673 1546.31 L1673 1541.61 Q1675.08 1542.74 1677.31 1543.3 Q1679.53 1543.86 1682.01 1543.86 Q1686.01 1543.86 1688.35 1541.75 Q1690.69 1539.64 1690.69 1536.03 Q1690.69 1532.42 1688.35 1530.31 Q1686.01 1528.21 1682.01 1528.21 Q1680.13 1528.21 1678.26 1528.62 Q1676.4 1529.04 1674.46 1529.92 L1674.46 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M1710.43 1515.64 Q1706.82 1515.64 1704.99 1519.2 Q1703.19 1522.75 1703.19 1529.87 Q1703.19 1536.98 1704.99 1540.55 Q1706.82 1544.09 1710.43 1544.09 Q1714.07 1544.09 1715.87 1540.55 Q1717.7 1536.98 1717.7 1529.87 Q1717.7 1522.75 1715.87 1519.2 Q1714.07 1515.64 1710.43 1515.64 M1710.43 1511.93 Q1716.24 1511.93 1719.3 1516.54 Q1722.38 1521.12 1722.38 1529.87 Q1722.38 1538.6 1719.3 1543.21 Q1716.24 1547.79 1710.43 1547.79 Q1704.62 1547.79 1701.54 1543.21 Q1698.49 1538.6 1698.49 1529.87 Q1698.49 1521.12 1701.54 1516.54 Q1704.62 1511.93 1710.43 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M2120.3 1543.18 L2136.61 1543.18 L2136.61 1547.12 L2114.67 1547.12 L2114.67 1543.18 Q2117.33 1540.43 2121.92 1535.8 Q2126.52 1531.15 2127.7 1529.81 Q2129.95 1527.28 2130.83 1525.55 Q2131.73 1523.79 2131.73 1522.1 Q2131.73 1519.34 2129.79 1517.61 Q2127.86 1515.87 2124.76 1515.87 Q2122.56 1515.87 2120.11 1516.63 Q2117.68 1517.4 2114.9 1518.95 L2114.9 1514.23 Q2117.73 1513.09 2120.18 1512.51 Q2122.63 1511.93 2124.67 1511.93 Q2130.04 1511.93 2133.24 1514.62 Q2136.43 1517.31 2136.43 1521.8 Q2136.43 1523.93 2135.62 1525.85 Q2134.83 1527.74 2132.73 1530.34 Q2132.15 1531.01 2129.05 1534.23 Q2125.94 1537.42 2120.3 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M2151.68 1515.64 Q2148.07 1515.64 2146.24 1519.2 Q2144.44 1522.75 2144.44 1529.87 Q2144.44 1536.98 2146.24 1540.55 Q2148.07 1544.09 2151.68 1544.09 Q2155.32 1544.09 2157.12 1540.55 Q2158.95 1536.98 2158.95 1529.87 Q2158.95 1522.75 2157.12 1519.2 Q2155.32 1515.64 2151.68 1515.64 M2151.68 1511.93 Q2157.49 1511.93 2160.55 1516.54 Q2163.63 1521.12 2163.63 1529.87 Q2163.63 1538.6 2160.55 1543.21 Q2157.49 1547.79 2151.68 1547.79 Q2145.87 1547.79 2142.8 1543.21 Q2139.74 1538.6 2139.74 1529.87 Q2139.74 1521.12 2142.8 1516.54 Q2145.87 1511.93 2151.68 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M2178.7 1515.64 Q2175.09 1515.64 2173.26 1519.2 Q2171.45 1522.75 2171.45 1529.87 Q2171.45 1536.98 2173.26 1540.55 Q2175.09 1544.09 2178.7 1544.09 Q2182.33 1544.09 2184.14 1540.55 Q2185.97 1536.98 2185.97 1529.87 Q2185.97 1522.75 2184.14 1519.2 Q2182.33 1515.64 2178.7 1515.64 M2178.7 1511.93 Q2184.51 1511.93 2187.56 1516.54 Q2190.64 1521.12 2190.64 1529.87 Q2190.64 1538.6 2187.56 1543.21 Q2184.51 1547.79 2178.7 1547.79 Q2172.89 1547.79 2169.81 1543.21 Q2166.75 1538.6 2166.75 1529.87 Q2166.75 1521.12 2169.81 1516.54 Q2172.89 1511.93 2178.7 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.681,1402.31 2352.76,1402.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.681,1169.06 2352.76,1169.06 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.681,935.81 2352.76,935.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.681,702.562 2352.76,702.562 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.681,469.314 2352.76,469.314 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.681,236.067 2352.76,236.067 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.681,1486.45 233.681,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.681,1402.31 259.11,1402.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.681,1169.06 259.11,1169.06 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.681,935.81 259.11,935.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.681,702.562 259.11,702.562 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.681,469.314 259.11,469.314 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.681,236.067 259.11,236.067 \n",
" \"/>\n",
"<path clip-path=\"url(#clip420)\" d=\"M 0 0 M52.219 1402.76 L81.8947 1402.76 L81.8947 1406.69 L52.219 1406.69 L52.219 1402.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M96.9641 1388.1 Q93.353 1388.1 91.5243 1391.67 Q89.7188 1395.21 89.7188 1402.34 Q89.7188 1409.45 91.5243 1413.01 Q93.353 1416.55 96.9641 1416.55 Q100.598 1416.55 102.404 1413.01 Q104.233 1409.45 104.233 1402.34 Q104.233 1395.21 102.404 1391.67 Q100.598 1388.1 96.9641 1388.1 M96.9641 1384.4 Q102.774 1384.4 105.83 1389.01 Q108.908 1393.59 108.908 1402.34 Q108.908 1411.07 105.83 1415.67 Q102.774 1420.26 96.9641 1420.26 Q91.1539 1420.26 88.0753 1415.67 Q85.0197 1411.07 85.0197 1402.34 Q85.0197 1393.59 88.0753 1389.01 Q91.1539 1384.4 96.9641 1384.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M113.978 1413.71 L118.862 1413.71 L118.862 1419.59 L113.978 1419.59 L113.978 1413.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M133.931 1388.1 Q130.32 1388.1 128.492 1391.67 Q126.686 1395.21 126.686 1402.34 Q126.686 1409.45 128.492 1413.01 Q130.32 1416.55 133.931 1416.55 Q137.566 1416.55 139.371 1413.01 Q141.2 1409.45 141.2 1402.34 Q141.2 1395.21 139.371 1391.67 Q137.566 1388.1 133.931 1388.1 M133.931 1384.4 Q139.742 1384.4 142.797 1389.01 Q145.876 1393.59 145.876 1402.34 Q145.876 1411.07 142.797 1415.67 Q139.742 1420.26 133.931 1420.26 Q128.121 1420.26 125.043 1415.67 Q121.987 1411.07 121.987 1402.34 Q121.987 1393.59 125.043 1389.01 Q128.121 1384.4 133.931 1384.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M151.755 1415.65 L159.394 1415.65 L159.394 1389.28 L151.084 1390.95 L151.084 1386.69 L159.348 1385.03 L164.024 1385.03 L164.024 1415.65 L171.663 1415.65 L171.663 1419.59 L151.755 1419.59 L151.755 1415.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M176.778 1385.03 L195.135 1385.03 L195.135 1388.96 L181.061 1388.96 L181.061 1397.43 Q182.079 1397.09 183.098 1396.92 Q184.116 1396.74 185.135 1396.74 Q190.922 1396.74 194.302 1399.91 Q197.681 1403.08 197.681 1408.5 Q197.681 1414.08 194.209 1417.18 Q190.737 1420.26 184.417 1420.26 Q182.241 1420.26 179.973 1419.89 Q177.728 1419.52 175.32 1418.78 L175.32 1414.08 Q177.403 1415.21 179.626 1415.77 Q181.848 1416.32 184.325 1416.32 Q188.329 1416.32 190.667 1414.22 Q193.005 1412.11 193.005 1408.5 Q193.005 1404.89 190.667 1402.78 Q188.329 1400.67 184.325 1400.67 Q182.45 1400.67 180.575 1401.09 Q178.723 1401.51 176.778 1402.39 L176.778 1385.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M51.2236 1169.51 L80.8994 1169.51 L80.8994 1173.44 L51.2236 1173.44 L51.2236 1169.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M95.9687 1154.86 Q92.3576 1154.86 90.529 1158.42 Q88.7234 1161.96 88.7234 1169.09 Q88.7234 1176.2 90.529 1179.76 Q92.3576 1183.31 95.9687 1183.31 Q99.603 1183.31 101.409 1179.76 Q103.237 1176.2 103.237 1169.09 Q103.237 1161.96 101.409 1158.42 Q99.603 1154.86 95.9687 1154.86 M95.9687 1151.15 Q101.779 1151.15 104.834 1155.76 Q107.913 1160.34 107.913 1169.09 Q107.913 1177.82 104.834 1182.43 Q101.779 1187.01 95.9687 1187.01 Q90.1586 1187.01 87.0799 1182.43 Q84.0244 1177.82 84.0244 1169.09 Q84.0244 1160.34 87.0799 1155.76 Q90.1586 1151.15 95.9687 1151.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M112.983 1180.46 L117.867 1180.46 L117.867 1186.34 L112.983 1186.34 L112.983 1180.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M132.936 1154.86 Q129.325 1154.86 127.496 1158.42 Q125.691 1161.96 125.691 1169.09 Q125.691 1176.2 127.496 1179.76 Q129.325 1183.31 132.936 1183.31 Q136.57 1183.31 138.376 1179.76 Q140.205 1176.2 140.205 1169.09 Q140.205 1161.96 138.376 1158.42 Q136.57 1154.86 132.936 1154.86 M132.936 1151.15 Q138.746 1151.15 141.802 1155.76 Q144.881 1160.34 144.881 1169.09 Q144.881 1177.82 141.802 1182.43 Q138.746 1187.01 132.936 1187.01 Q127.126 1187.01 124.047 1182.43 Q120.992 1177.82 120.992 1169.09 Q120.992 1160.34 124.047 1155.76 Q127.126 1151.15 132.936 1151.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M150.76 1182.4 L158.399 1182.4 L158.399 1156.04 L150.089 1157.7 L150.089 1153.44 L158.353 1151.78 L163.029 1151.78 L163.029 1182.4 L170.667 1182.4 L170.667 1186.34 L150.76 1186.34 L150.76 1182.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M185.737 1154.86 Q182.126 1154.86 180.297 1158.42 Q178.491 1161.96 178.491 1169.09 Q178.491 1176.2 180.297 1179.76 Q182.126 1183.31 185.737 1183.31 Q189.371 1183.31 191.177 1179.76 Q193.005 1176.2 193.005 1169.09 Q193.005 1161.96 191.177 1158.42 Q189.371 1154.86 185.737 1154.86 M185.737 1151.15 Q191.547 1151.15 194.602 1155.76 Q197.681 1160.34 197.681 1169.09 Q197.681 1177.82 194.602 1182.43 Q191.547 1187.01 185.737 1187.01 Q179.927 1187.01 176.848 1182.43 Q173.792 1177.82 173.792 1169.09 Q173.792 1160.34 176.848 1155.76 Q179.927 1151.15 185.737 1151.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M50.9921 936.261 L80.6679 936.261 L80.6679 940.197 L50.9921 940.197 L50.9921 936.261 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M95.7373 921.609 Q92.1262 921.609 90.2975 925.174 Q88.4919 928.715 88.4919 935.845 Q88.4919 942.951 90.2975 946.516 Q92.1262 950.058 95.7373 950.058 Q99.3715 950.058 101.177 946.516 Q103.006 942.951 103.006 935.845 Q103.006 928.715 101.177 925.174 Q99.3715 921.609 95.7373 921.609 M95.7373 917.905 Q101.547 917.905 104.603 922.512 Q107.682 927.095 107.682 935.845 Q107.682 944.572 104.603 949.178 Q101.547 953.761 95.7373 953.761 Q89.9271 953.761 86.8484 949.178 Q83.7929 944.572 83.7929 935.845 Q83.7929 927.095 86.8484 922.512 Q89.9271 917.905 95.7373 917.905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M112.751 947.211 L117.635 947.211 L117.635 953.09 L112.751 953.09 L112.751 947.211 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M132.705 921.609 Q129.094 921.609 127.265 925.174 Q125.459 928.715 125.459 935.845 Q125.459 942.951 127.265 946.516 Q129.094 950.058 132.705 950.058 Q136.339 950.058 138.144 946.516 Q139.973 942.951 139.973 935.845 Q139.973 928.715 138.144 925.174 Q136.339 921.609 132.705 921.609 M132.705 917.905 Q138.515 917.905 141.57 922.512 Q144.649 927.095 144.649 935.845 Q144.649 944.572 141.57 949.178 Q138.515 953.761 132.705 953.761 Q126.894 953.761 123.816 949.178 Q120.76 944.572 120.76 935.845 Q120.76 927.095 123.816 922.512 Q126.894 917.905 132.705 917.905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M159.718 921.609 Q156.107 921.609 154.279 925.174 Q152.473 928.715 152.473 935.845 Q152.473 942.951 154.279 946.516 Q156.107 950.058 159.718 950.058 Q163.353 950.058 165.158 946.516 Q166.987 942.951 166.987 935.845 Q166.987 928.715 165.158 925.174 Q163.353 921.609 159.718 921.609 M159.718 917.905 Q165.529 917.905 168.584 922.512 Q171.663 927.095 171.663 935.845 Q171.663 944.572 168.584 949.178 Q165.529 953.761 159.718 953.761 Q153.908 953.761 150.83 949.178 Q147.774 944.572 147.774 935.845 Q147.774 927.095 150.83 922.512 Q153.908 917.905 159.718 917.905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M176.778 918.53 L195.135 918.53 L195.135 922.465 L181.061 922.465 L181.061 930.937 Q182.079 930.59 183.098 930.428 Q184.116 930.243 185.135 930.243 Q190.922 930.243 194.302 933.414 Q197.681 936.586 197.681 942.002 Q197.681 947.581 194.209 950.683 Q190.737 953.761 184.417 953.761 Q182.241 953.761 179.973 953.391 Q177.728 953.021 175.32 952.28 L175.32 947.581 Q177.403 948.715 179.626 949.271 Q181.848 949.826 184.325 949.826 Q188.329 949.826 190.667 947.72 Q193.005 945.613 193.005 942.002 Q193.005 938.391 190.667 936.285 Q188.329 934.178 184.325 934.178 Q182.45 934.178 180.575 934.595 Q178.723 935.012 176.778 935.891 L176.778 918.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M94.7419 688.361 Q91.1308 688.361 89.3021 691.926 Q87.4966 695.467 87.4966 702.597 Q87.4966 709.703 89.3021 713.268 Q91.1308 716.81 94.7419 716.81 Q98.3761 716.81 100.182 713.268 Q102.01 709.703 102.01 702.597 Q102.01 695.467 100.182 691.926 Q98.3761 688.361 94.7419 688.361 M94.7419 684.657 Q100.552 684.657 103.608 689.264 Q106.686 693.847 106.686 702.597 Q106.686 711.324 103.608 715.93 Q100.552 720.514 94.7419 720.514 Q88.9317 720.514 85.8531 715.93 Q82.7975 711.324 82.7975 702.597 Q82.7975 693.847 85.8531 689.264 Q88.9317 684.657 94.7419 684.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M111.756 713.963 L116.64 713.963 L116.64 719.842 L111.756 719.842 L111.756 713.963 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M131.709 688.361 Q128.098 688.361 126.27 691.926 Q124.464 695.467 124.464 702.597 Q124.464 709.703 126.27 713.268 Q128.098 716.81 131.709 716.81 Q135.344 716.81 137.149 713.268 Q138.978 709.703 138.978 702.597 Q138.978 695.467 137.149 691.926 Q135.344 688.361 131.709 688.361 M131.709 684.657 Q137.519 684.657 140.575 689.264 Q143.654 693.847 143.654 702.597 Q143.654 711.324 140.575 715.93 Q137.519 720.514 131.709 720.514 Q125.899 720.514 122.82 715.93 Q119.765 711.324 119.765 702.597 Q119.765 693.847 122.82 689.264 Q125.899 684.657 131.709 684.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M158.723 688.361 Q155.112 688.361 153.283 691.926 Q151.478 695.467 151.478 702.597 Q151.478 709.703 153.283 713.268 Q155.112 716.81 158.723 716.81 Q162.357 716.81 164.163 713.268 Q165.992 709.703 165.992 702.597 Q165.992 695.467 164.163 691.926 Q162.357 688.361 158.723 688.361 M158.723 684.657 Q164.533 684.657 167.589 689.264 Q170.667 693.847 170.667 702.597 Q170.667 711.324 167.589 715.93 Q164.533 720.514 158.723 720.514 Q152.913 720.514 149.834 715.93 Q146.779 711.324 146.779 702.597 Q146.779 693.847 149.834 689.264 Q152.913 684.657 158.723 684.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M185.737 688.361 Q182.126 688.361 180.297 691.926 Q178.491 695.467 178.491 702.597 Q178.491 709.703 180.297 713.268 Q182.126 716.81 185.737 716.81 Q189.371 716.81 191.177 713.268 Q193.005 709.703 193.005 702.597 Q193.005 695.467 191.177 691.926 Q189.371 688.361 185.737 688.361 M185.737 684.657 Q191.547 684.657 194.602 689.264 Q197.681 693.847 197.681 702.597 Q197.681 711.324 194.602 715.93 Q191.547 720.514 185.737 720.514 Q179.927 720.514 176.848 715.93 Q173.792 711.324 173.792 702.597 Q173.792 693.847 176.848 689.264 Q179.927 684.657 185.737 684.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M95.7373 455.113 Q92.1262 455.113 90.2975 458.678 Q88.4919 462.22 88.4919 469.349 Q88.4919 476.456 90.2975 480.02 Q92.1262 483.562 95.7373 483.562 Q99.3715 483.562 101.177 480.02 Q103.006 476.456 103.006 469.349 Q103.006 462.22 101.177 458.678 Q99.3715 455.113 95.7373 455.113 M95.7373 451.409 Q101.547 451.409 104.603 456.016 Q107.682 460.599 107.682 469.349 Q107.682 478.076 104.603 482.682 Q101.547 487.266 95.7373 487.266 Q89.9271 487.266 86.8484 482.682 Q83.7929 478.076 83.7929 469.349 Q83.7929 460.599 86.8484 456.016 Q89.9271 451.409 95.7373 451.409 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M112.751 480.715 L117.635 480.715 L117.635 486.594 L112.751 486.594 L112.751 480.715 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M132.705 455.113 Q129.094 455.113 127.265 458.678 Q125.459 462.22 125.459 469.349 Q125.459 476.456 127.265 480.02 Q129.094 483.562 132.705 483.562 Q136.339 483.562 138.144 480.02 Q139.973 476.456 139.973 469.349 Q139.973 462.22 138.144 458.678 Q136.339 455.113 132.705 455.113 M132.705 451.409 Q138.515 451.409 141.57 456.016 Q144.649 460.599 144.649 469.349 Q144.649 478.076 141.57 482.682 Q138.515 487.266 132.705 487.266 Q126.894 487.266 123.816 482.682 Q120.76 478.076 120.76 469.349 Q120.76 460.599 123.816 456.016 Q126.894 451.409 132.705 451.409 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M159.718 455.113 Q156.107 455.113 154.279 458.678 Q152.473 462.22 152.473 469.349 Q152.473 476.456 154.279 480.02 Q156.107 483.562 159.718 483.562 Q163.353 483.562 165.158 480.02 Q166.987 476.456 166.987 469.349 Q166.987 462.22 165.158 458.678 Q163.353 455.113 159.718 455.113 M159.718 451.409 Q165.529 451.409 168.584 456.016 Q171.663 460.599 171.663 469.349 Q171.663 478.076 168.584 482.682 Q165.529 487.266 159.718 487.266 Q153.908 487.266 150.83 482.682 Q147.774 478.076 147.774 469.349 Q147.774 460.599 150.83 456.016 Q153.908 451.409 159.718 451.409 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M176.778 452.034 L195.135 452.034 L195.135 455.97 L181.061 455.97 L181.061 464.442 Q182.079 464.095 183.098 463.933 Q184.116 463.747 185.135 463.747 Q190.922 463.747 194.302 466.919 Q197.681 470.09 197.681 475.507 Q197.681 481.085 194.209 484.187 Q190.737 487.266 184.417 487.266 Q182.241 487.266 179.973 486.895 Q177.728 486.525 175.32 485.784 L175.32 481.085 Q177.403 482.219 179.626 482.775 Q181.848 483.331 184.325 483.331 Q188.329 483.331 190.667 481.224 Q193.005 479.118 193.005 475.507 Q193.005 471.895 190.667 469.789 Q188.329 467.683 184.325 467.683 Q182.45 467.683 180.575 468.099 Q178.723 468.516 176.778 469.395 L176.778 452.034 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M95.9687 221.865 Q92.3576 221.865 90.529 225.43 Q88.7234 228.972 88.7234 236.101 Q88.7234 243.208 90.529 246.773 Q92.3576 250.314 95.9687 250.314 Q99.603 250.314 101.409 246.773 Q103.237 243.208 103.237 236.101 Q103.237 228.972 101.409 225.43 Q99.603 221.865 95.9687 221.865 M95.9687 218.162 Q101.779 218.162 104.834 222.768 Q107.913 227.351 107.913 236.101 Q107.913 244.828 104.834 249.435 Q101.779 254.018 95.9687 254.018 Q90.1586 254.018 87.0799 249.435 Q84.0244 244.828 84.0244 236.101 Q84.0244 227.351 87.0799 222.768 Q90.1586 218.162 95.9687 218.162 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M112.983 247.467 L117.867 247.467 L117.867 253.347 L112.983 253.347 L112.983 247.467 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M132.936 221.865 Q129.325 221.865 127.496 225.43 Q125.691 228.972 125.691 236.101 Q125.691 243.208 127.496 246.773 Q129.325 250.314 132.936 250.314 Q136.57 250.314 138.376 246.773 Q140.205 243.208 140.205 236.101 Q140.205 228.972 138.376 225.43 Q136.57 221.865 132.936 221.865 M132.936 218.162 Q138.746 218.162 141.802 222.768 Q144.881 227.351 144.881 236.101 Q144.881 244.828 141.802 249.435 Q138.746 254.018 132.936 254.018 Q127.126 254.018 124.047 249.435 Q120.992 244.828 120.992 236.101 Q120.992 227.351 124.047 222.768 Q127.126 218.162 132.936 218.162 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M150.76 249.411 L158.399 249.411 L158.399 223.046 L150.089 224.713 L150.089 220.453 L158.353 218.787 L163.029 218.787 L163.029 249.411 L170.667 249.411 L170.667 253.347 L150.76 253.347 L150.76 249.411 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M185.737 221.865 Q182.126 221.865 180.297 225.43 Q178.491 228.972 178.491 236.101 Q178.491 243.208 180.297 246.773 Q182.126 250.314 185.737 250.314 Q189.371 250.314 191.177 246.773 Q193.005 243.208 193.005 236.101 Q193.005 228.972 191.177 225.43 Q189.371 221.865 185.737 221.865 M185.737 218.162 Q191.547 218.162 194.602 222.768 Q197.681 227.351 197.681 236.101 Q197.681 244.828 194.602 249.435 Q191.547 254.018 185.737 254.018 Q179.927 254.018 176.848 249.435 Q173.792 244.828 173.792 236.101 Q173.792 227.351 176.848 222.768 Q179.927 218.162 185.737 218.162 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M1295.37 76.7889 Q1292.21 84.8907 1289.21 87.3618 Q1286.21 89.8329 1281.19 89.8329 L1275.23 89.8329 L1275.23 83.5945 L1279.61 83.5945 Q1282.69 83.5945 1284.39 82.1361 Q1286.09 80.6778 1288.15 75.2496 L1289.49 71.8468 L1271.14 27.2059 L1279.04 27.2059 L1293.22 62.6918 L1307.4 27.2059 L1315.3 27.2059 L1295.37 76.7889 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip422)\" cx=\"293.655\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"302.997\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"312.338\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"321.68\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"331.022\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"340.364\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"349.705\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"359.047\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"368.389\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"377.73\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"387.072\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"396.414\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"405.756\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"415.097\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"424.439\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"433.781\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"443.122\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"452.464\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"461.806\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"471.148\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"480.489\" cy=\"710.577\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"489.831\" cy=\"710.767\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"499.173\" cy=\"710.858\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"508.514\" cy=\"710.768\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"517.856\" cy=\"710.579\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"527.198\" cy=\"728.219\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"536.54\" cy=\"728.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"545.881\" cy=\"728.297\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"555.223\" cy=\"728.261\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"564.565\" cy=\"728.226\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"573.906\" cy=\"752.899\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"583.248\" cy=\"752.866\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"592.59\" cy=\"752.865\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"601.932\" cy=\"752.877\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"611.273\" cy=\"752.91\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"620.615\" cy=\"783.609\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"629.957\" cy=\"783.576\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"639.298\" cy=\"783.565\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"648.64\" cy=\"783.578\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"657.982\" cy=\"783.614\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"667.324\" cy=\"819.5\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"676.665\" cy=\"819.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"686.007\" cy=\"819.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"695.349\" cy=\"819.462\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"704.69\" cy=\"819.497\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"714.032\" cy=\"859.749\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"723.374\" cy=\"859.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"732.716\" cy=\"859.682\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"742.057\" cy=\"859.708\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"751.399\" cy=\"859.748\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"760.741\" cy=\"903.563\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"770.082\" cy=\"903.523\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"779.424\" cy=\"903.503\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"788.766\" cy=\"903.527\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"798.108\" cy=\"903.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"807.449\" cy=\"950.155\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"816.791\" cy=\"950.108\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"826.133\" cy=\"950.085\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"835.474\" cy=\"950.113\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"844.816\" cy=\"950.166\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"854.158\" cy=\"998.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"863.5\" cy=\"998.695\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"872.841\" cy=\"998.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"882.183\" cy=\"998.701\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"891.525\" cy=\"998.767\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"900.866\" cy=\"1048.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"910.208\" cy=\"1048.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"919.55\" cy=\"1048.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"928.892\" cy=\"1048.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"938.233\" cy=\"1048.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"947.575\" cy=\"1099.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"956.917\" cy=\"1099.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"966.258\" cy=\"1099\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"975.6\" cy=\"1099.04\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"984.942\" cy=\"1099.12\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"994.284\" cy=\"1149.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1003.63\" cy=\"1149.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1012.97\" cy=\"1149.5\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1022.31\" cy=\"1149.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1031.65\" cy=\"1149.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1040.99\" cy=\"1199.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1050.33\" cy=\"1199.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1059.68\" cy=\"1199.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1069.02\" cy=\"1199.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1078.36\" cy=\"1199.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1087.7\" cy=\"417.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1097.04\" cy=\"417.181\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1106.38\" cy=\"417.413\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1115.73\" cy=\"362.041\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1125.07\" cy=\"361.988\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1134.41\" cy=\"362.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1143.75\" cy=\"308.152\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1153.09\" cy=\"308.125\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1162.43\" cy=\"308.157\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1171.78\" cy=\"258.599\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1181.12\" cy=\"258.614\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1190.46\" cy=\"258.603\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1199.8\" cy=\"216.561\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1209.14\" cy=\"216.617\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1218.48\" cy=\"216.564\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1227.83\" cy=\"185.001\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1237.17\" cy=\"185.088\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1246.51\" cy=\"185.003\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1255.85\" cy=\"166.313\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1265.19\" cy=\"166.419\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1274.54\" cy=\"166.314\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1283.88\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1293.22\" cy=\"162.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1302.56\" cy=\"162.048\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1311.9\" cy=\"172.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1321.24\" cy=\"172.846\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1330.59\" cy=\"172.741\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1339.93\" cy=\"197.855\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1349.27\" cy=\"197.943\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1358.61\" cy=\"197.858\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1367.95\" cy=\"235.843\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1377.29\" cy=\"235.899\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1386.64\" cy=\"235.847\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1395.98\" cy=\"284.309\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1405.32\" cy=\"284.325\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1414.66\" cy=\"284.314\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1424\" cy=\"340.291\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1433.34\" cy=\"340.264\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1442.69\" cy=\"340.297\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1452.03\" cy=\"400.609\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1461.37\" cy=\"400.556\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1470.71\" cy=\"400.617\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1480.05\" cy=\"462.404\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1489.39\" cy=\"462.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1498.74\" cy=\"462.412\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1508.08\" cy=\"1447.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1517.42\" cy=\"1447.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1526.76\" cy=\"1447.41\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1536.1\" cy=\"1447.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1545.44\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1554.79\" cy=\"1373.04\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1564.13\" cy=\"1372.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1573.47\" cy=\"1372.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1582.81\" cy=\"1372.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1592.15\" cy=\"1373.06\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1601.5\" cy=\"1297.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1610.84\" cy=\"1297.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1620.18\" cy=\"1297.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1629.52\" cy=\"1297.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1638.86\" cy=\"1297.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1648.2\" cy=\"1222.43\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1657.55\" cy=\"1222.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1666.89\" cy=\"1222.27\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1676.23\" cy=\"1222.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1685.57\" cy=\"1222.46\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1694.91\" cy=\"1148.02\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1704.25\" cy=\"1147.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1713.6\" cy=\"1147.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1722.94\" cy=\"1147.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1732.28\" cy=\"1148.04\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1741.62\" cy=\"1075.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1750.96\" cy=\"1075.37\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1760.3\" cy=\"1075.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1769.65\" cy=\"1075.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1778.99\" cy=\"1075.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1788.33\" cy=\"1005.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1797.67\" cy=\"1005.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1807.01\" cy=\"1005.68\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1816.35\" cy=\"1005.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1825.7\" cy=\"1005.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1835.04\" cy=\"940.135\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1844.38\" cy=\"940.073\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1853.72\" cy=\"940.043\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1863.06\" cy=\"940.081\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1872.4\" cy=\"940.15\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1881.75\" cy=\"879.692\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1891.09\" cy=\"879.627\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1900.43\" cy=\"879.594\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1909.77\" cy=\"879.633\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1919.11\" cy=\"879.705\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1928.46\" cy=\"825.661\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1937.8\" cy=\"825.587\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1947.14\" cy=\"825.551\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1956.48\" cy=\"825.592\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1965.82\" cy=\"825.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1975.16\" cy=\"779.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1984.51\" cy=\"779.212\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"1993.85\" cy=\"779.189\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2003.19\" cy=\"779.216\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2012.53\" cy=\"779.288\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2021.87\" cy=\"741.817\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2031.21\" cy=\"741.841\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2040.56\" cy=\"741.888\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2049.9\" cy=\"741.844\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2059.24\" cy=\"741.822\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2068.58\" cy=\"714.798\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2077.92\" cy=\"715.091\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2087.26\" cy=\"715.231\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2096.61\" cy=\"715.092\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2105.95\" cy=\"714.801\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2115.29\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2124.63\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2133.97\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2143.31\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2152.66\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2162\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2171.34\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2180.68\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2190.02\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2199.36\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2208.71\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2218.05\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2227.39\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2236.73\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2246.07\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2255.42\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2264.76\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2274.1\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2283.44\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip422)\" cx=\"2292.78\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip460)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip460)\" d=\"\n",
"M174.862 1486.45 L2352.76 1486.45 L2352.76 123.472 L174.862 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <rect x=\"174\" y=\"123\" width=\"2179\" height=\"1364\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 226.9,1486.45 226.9,123.472 \n",
"<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 706.95,1486.45 706.95,123.472 \n",
"<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1187,1486.45 1187,123.472 \n",
"<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1667.05,1486.45 1667.05,123.472 \n",
"<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2147.1,1486.45 2147.1,123.472 \n",
"<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 226.9,1486.45 226.9,1470.09 \n",
"<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 706.95,1486.45 706.95,1470.09 \n",
"<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1187,1486.45 1187,1470.09 \n",
"<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1667.05,1486.45 1667.05,1470.09 \n",
"<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2147.1,1486.45 2147.1,1470.09 \n",
"<path clip-path=\"url(#clip460)\" d=\"M 0 0 M226.9 1515.64 Q223.288 1515.64 221.46 1519.2 Q219.654 1522.75 219.654 1529.87 Q219.654 1536.98 221.46 1540.55 Q223.288 1544.09 226.9 1544.09 Q230.534 1544.09 232.339 1540.55 Q234.168 1536.98 234.168 1529.87 Q234.168 1522.75 232.339 1519.2 Q230.534 1515.64 226.9 1515.64 M226.9 1511.93 Q232.71 1511.93 235.765 1516.54 Q238.844 1521.12 238.844 1529.87 Q238.844 1538.6 235.765 1543.21 Q232.71 1547.79 226.9 1547.79 Q221.089 1547.79 218.011 1543.21 Q214.955 1538.6 214.955 1529.87 Q214.955 1521.12 218.011 1516.54 Q221.089 1511.93 226.9 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M683.721 1512.56 L702.078 1512.56 L702.078 1516.5 L688.004 1516.5 L688.004 1524.97 Q689.022 1524.62 690.041 1524.46 Q691.059 1524.27 692.078 1524.27 Q697.865 1524.27 701.244 1527.44 Q704.624 1530.62 704.624 1536.03 Q704.624 1541.61 701.152 1544.71 Q697.679 1547.79 691.36 1547.79 Q689.184 1547.79 686.916 1547.42 Q684.67 1547.05 682.263 1546.31 L682.263 1541.61 Q684.346 1542.74 686.568 1543.3 Q688.791 1543.86 691.267 1543.86 Q695.272 1543.86 697.61 1541.75 Q699.948 1539.64 699.948 1536.03 Q699.948 1532.42 697.61 1530.31 Q695.272 1528.21 691.267 1528.21 Q689.392 1528.21 687.517 1528.62 Q685.666 1529.04 683.721 1529.92 L683.721 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M719.693 1515.64 Q716.082 1515.64 714.253 1519.2 Q712.448 1522.75 712.448 1529.87 Q712.448 1536.98 714.253 1540.55 Q716.082 1544.09 719.693 1544.09 Q723.327 1544.09 725.133 1540.55 Q726.962 1536.98 726.962 1529.87 Q726.962 1522.75 725.133 1519.2 Q723.327 1515.64 719.693 1515.64 M719.693 1511.93 Q725.503 1511.93 728.559 1516.54 Q731.638 1521.12 731.638 1529.87 Q731.638 1538.6 728.559 1543.21 Q725.503 1547.79 719.693 1547.79 Q713.883 1547.79 710.804 1543.21 Q707.749 1538.6 707.749 1529.87 Q707.749 1521.12 710.804 1516.54 Q713.883 1511.93 719.693 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M1150.37 1543.18 L1158.01 1543.18 L1158.01 1516.82 L1149.7 1518.49 L1149.7 1514.23 L1157.96 1512.56 L1162.64 1512.56 L1162.64 1543.18 L1170.28 1543.18 L1170.28 1547.12 L1150.37 1547.12 L1150.37 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M1185.35 1515.64 Q1181.73 1515.64 1179.91 1519.2 Q1178.1 1522.75 1178.1 1529.87 Q1178.1 1536.98 1179.91 1540.55 Q1181.73 1544.09 1185.35 1544.09 Q1188.98 1544.09 1190.79 1540.55 Q1192.61 1536.98 1192.61 1529.87 Q1192.61 1522.75 1190.79 1519.2 Q1188.98 1515.64 1185.35 1515.64 M1185.35 1511.93 Q1191.16 1511.93 1194.21 1516.54 Q1197.29 1521.12 1197.29 1529.87 Q1197.29 1538.6 1194.21 1543.21 Q1191.16 1547.79 1185.35 1547.79 Q1179.54 1547.79 1176.46 1543.21 Q1173.4 1538.6 1173.4 1529.87 Q1173.4 1521.12 1176.46 1516.54 Q1179.54 1511.93 1185.35 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M1212.36 1515.64 Q1208.75 1515.64 1206.92 1519.2 Q1205.11 1522.75 1205.11 1529.87 Q1205.11 1536.98 1206.92 1540.55 Q1208.75 1544.09 1212.36 1544.09 Q1215.99 1544.09 1217.8 1540.55 Q1219.63 1536.98 1219.63 1529.87 Q1219.63 1522.75 1217.8 1519.2 Q1215.99 1515.64 1212.36 1515.64 M1212.36 1511.93 Q1218.17 1511.93 1221.23 1516.54 Q1224.3 1521.12 1224.3 1529.87 Q1224.3 1538.6 1221.23 1543.21 Q1218.17 1547.79 1212.36 1547.79 Q1206.55 1547.79 1203.47 1543.21 Q1200.42 1538.6 1200.42 1529.87 Q1200.42 1521.12 1203.47 1516.54 Q1206.55 1511.93 1212.36 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M1630.92 1543.18 L1638.56 1543.18 L1638.56 1516.82 L1630.25 1518.49 L1630.25 1514.23 L1638.51 1512.56 L1643.19 1512.56 L1643.19 1543.18 L1650.82 1543.18 L1650.82 1547.12 L1630.92 1547.12 L1630.92 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M1655.94 1512.56 L1674.3 1512.56 L1674.3 1516.5 L1660.22 1516.5 L1660.22 1524.97 Q1661.24 1524.62 1662.26 1524.46 Q1663.28 1524.27 1664.3 1524.27 Q1670.08 1524.27 1673.46 1527.44 Q1676.84 1530.62 1676.84 1536.03 Q1676.84 1541.61 1673.37 1544.71 Q1669.9 1547.79 1663.58 1547.79 Q1661.4 1547.79 1659.13 1547.42 Q1656.89 1547.05 1654.48 1546.31 L1654.48 1541.61 Q1656.57 1542.74 1658.79 1543.3 Q1661.01 1543.86 1663.49 1543.86 Q1667.49 1543.86 1669.83 1541.75 Q1672.17 1539.64 1672.17 1536.03 Q1672.17 1532.42 1669.83 1530.31 Q1667.49 1528.21 1663.49 1528.21 Q1661.61 1528.21 1659.74 1528.62 Q1657.88 1529.04 1655.94 1529.92 L1655.94 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M1691.91 1515.64 Q1688.3 1515.64 1686.47 1519.2 Q1684.67 1522.75 1684.67 1529.87 Q1684.67 1536.98 1686.47 1540.55 Q1688.3 1544.09 1691.91 1544.09 Q1695.55 1544.09 1697.35 1540.55 Q1699.18 1536.98 1699.18 1529.87 Q1699.18 1522.75 1697.35 1519.2 Q1695.55 1515.64 1691.91 1515.64 M1691.91 1511.93 Q1697.72 1511.93 1700.78 1516.54 Q1703.86 1521.12 1703.86 1529.87 Q1703.86 1538.6 1700.78 1543.21 Q1697.72 1547.79 1691.91 1547.79 Q1686.1 1547.79 1683.02 1543.21 Q1679.97 1538.6 1679.97 1529.87 Q1679.97 1521.12 1683.02 1516.54 Q1686.1 1511.93 1691.91 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M2114.74 1543.18 L2131.06 1543.18 L2131.06 1547.12 L2109.12 1547.12 L2109.12 1543.18 Q2111.78 1540.43 2116.36 1535.8 Q2120.97 1531.15 2122.15 1529.81 Q2124.39 1527.28 2125.27 1525.55 Q2126.18 1523.79 2126.18 1522.1 Q2126.18 1519.34 2124.23 1517.61 Q2122.31 1515.87 2119.21 1515.87 Q2117.01 1515.87 2114.56 1516.63 Q2112.13 1517.4 2109.35 1518.95 L2109.35 1514.23 Q2112.17 1513.09 2114.63 1512.51 Q2117.08 1511.93 2119.12 1511.93 Q2124.49 1511.93 2127.68 1514.62 Q2130.88 1517.31 2130.88 1521.8 Q2130.88 1523.93 2130.07 1525.85 Q2129.28 1527.74 2127.17 1530.34 Q2126.59 1531.01 2123.49 1534.23 Q2120.39 1537.42 2114.74 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M2146.13 1515.64 Q2142.52 1515.64 2140.69 1519.2 Q2138.88 1522.75 2138.88 1529.87 Q2138.88 1536.98 2140.69 1540.55 Q2142.52 1544.09 2146.13 1544.09 Q2149.76 1544.09 2151.57 1540.55 Q2153.4 1536.98 2153.4 1529.87 Q2153.4 1522.75 2151.57 1519.2 Q2149.76 1515.64 2146.13 1515.64 M2146.13 1511.93 Q2151.94 1511.93 2155 1516.54 Q2158.07 1521.12 2158.07 1529.87 Q2158.07 1538.6 2155 1543.21 Q2151.94 1547.79 2146.13 1547.79 Q2140.32 1547.79 2137.24 1543.21 Q2134.19 1538.6 2134.19 1529.87 Q2134.19 1521.12 2137.24 1516.54 Q2140.32 1511.93 2146.13 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M2173.14 1515.64 Q2169.53 1515.64 2167.7 1519.2 Q2165.9 1522.75 2165.9 1529.87 Q2165.9 1536.98 2167.7 1540.55 Q2169.53 1544.09 2173.14 1544.09 Q2176.78 1544.09 2178.58 1540.55 Q2180.41 1536.98 2180.41 1529.87 Q2180.41 1522.75 2178.58 1519.2 Q2176.78 1515.64 2173.14 1515.64 M2173.14 1511.93 Q2178.95 1511.93 2182.01 1516.54 Q2185.09 1521.12 2185.09 1529.87 Q2185.09 1538.6 2182.01 1543.21 Q2178.95 1547.79 2173.14 1547.79 Q2167.33 1547.79 2164.25 1543.21 Q2161.2 1538.6 2161.2 1529.87 Q2161.2 1521.12 2164.25 1516.54 Q2167.33 1511.93 2173.14 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,1447.87 2352.76,1447.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,1126.42 2352.76,1126.42 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,804.96 2352.76,804.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,483.503 2352.76,483.503 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,162.047 2352.76,162.047 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1486.45 174.862,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1447.87 200.997,1447.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1126.42 200.997,1126.42 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,804.96 200.997,804.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,483.503 200.997,483.503 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,162.047 200.997,162.047 \n",
" \"/>\n",
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
"<path clip-path=\"url(#clip460)\" d=\"M 0 0 M62.9365 1433.67 Q59.3254 1433.67 57.4967 1437.24 Q55.6912 1440.78 55.6912 1447.91 Q55.6912 1455.01 57.4967 1458.58 Q59.3254 1462.12 62.9365 1462.12 Q66.5707 1462.12 68.3763 1458.58 Q70.205 1455.01 70.205 1447.91 Q70.205 1440.78 68.3763 1437.24 Q66.5707 1433.67 62.9365 1433.67 M62.9365 1429.97 Q68.7467 1429.97 71.8022 1434.57 Q74.8809 1439.16 74.8809 1447.91 Q74.8809 1456.63 71.8022 1461.24 Q68.7467 1465.82 62.9365 1465.82 Q57.1264 1465.82 54.0477 1461.24 Q50.9921 1456.63 50.9921 1447.91 Q50.9921 1439.16 54.0477 1434.57 Q57.1264 1429.97 62.9365 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M79.9503 1459.27 L84.8345 1459.27 L84.8345 1465.15 L79.9503 1465.15 L79.9503 1459.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M99.9039 1433.67 Q96.2928 1433.67 94.4641 1437.24 Q92.6586 1440.78 92.6586 1447.91 Q92.6586 1455.01 94.4641 1458.58 Q96.2928 1462.12 99.9039 1462.12 Q103.538 1462.12 105.344 1458.58 Q107.172 1455.01 107.172 1447.91 Q107.172 1440.78 105.344 1437.24 Q103.538 1433.67 99.9039 1433.67 M99.9039 1429.97 Q105.714 1429.97 108.77 1434.57 Q111.848 1439.16 111.848 1447.91 Q111.848 1456.63 108.77 1461.24 Q105.714 1465.82 99.9039 1465.82 Q94.0937 1465.82 91.0151 1461.24 Q87.9595 1456.63 87.9595 1447.91 Q87.9595 1439.16 91.0151 1434.57 Q94.0937 1429.97 99.9039 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M126.918 1433.67 Q123.307 1433.67 121.478 1437.24 Q119.672 1440.78 119.672 1447.91 Q119.672 1455.01 121.478 1458.58 Q123.307 1462.12 126.918 1462.12 Q130.552 1462.12 132.357 1458.58 Q134.186 1455.01 134.186 1447.91 Q134.186 1440.78 132.357 1437.24 Q130.552 1433.67 126.918 1433.67 M126.918 1429.97 Q132.728 1429.97 135.783 1434.57 Q138.862 1439.16 138.862 1447.91 Q138.862 1456.63 135.783 1461.24 Q132.728 1465.82 126.918 1465.82 Q121.107 1465.82 118.029 1461.24 Q114.973 1456.63 114.973 1447.91 Q114.973 1439.16 118.029 1434.57 Q121.107 1429.97 126.918 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M65.5291 1112.22 Q61.918 1112.22 60.0893 1115.78 Q58.2838 1119.32 58.2838 1126.45 Q58.2838 1133.56 60.0893 1137.12 Q61.918 1140.66 65.5291 1140.66 Q69.1633 1140.66 70.9689 1137.12 Q72.7976 1133.56 72.7976 1126.45 Q72.7976 1119.32 70.9689 1115.78 Q69.1633 1112.22 65.5291 1112.22 M65.5291 1108.51 Q71.3392 1108.51 74.3948 1113.12 Q77.4735 1117.7 77.4735 1126.45 Q77.4735 1135.18 74.3948 1139.78 Q71.3392 1144.37 65.5291 1144.37 Q59.7189 1144.37 56.6402 1139.78 Q53.5847 1135.18 53.5847 1126.45 Q53.5847 1117.7 56.6402 1113.12 Q59.7189 1108.51 65.5291 1108.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M82.5429 1137.82 L87.4271 1137.82 L87.4271 1143.7 L82.5429 1143.7 L82.5429 1137.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M96.5243 1139.76 L112.844 1139.76 L112.844 1143.7 L90.8993 1143.7 L90.8993 1139.76 Q93.5613 1137.01 98.1447 1132.38 Q102.751 1127.72 103.932 1126.38 Q106.177 1123.86 107.057 1122.12 Q107.959 1120.36 107.959 1118.67 Q107.959 1115.92 106.015 1114.18 Q104.094 1112.45 100.992 1112.45 Q98.7928 1112.45 96.3391 1113.21 Q93.9086 1113.97 91.1308 1115.53 L91.1308 1110.8 Q93.9549 1109.67 96.4085 1109.09 Q98.8622 1108.51 100.899 1108.51 Q106.27 1108.51 109.464 1111.2 Q112.658 1113.88 112.658 1118.37 Q112.658 1120.5 111.848 1122.42 Q111.061 1124.32 108.955 1126.91 Q108.376 1127.59 105.274 1130.8 Q102.172 1134 96.5243 1139.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M117.959 1109.14 L136.316 1109.14 L136.316 1113.07 L122.242 1113.07 L122.242 1121.54 Q123.26 1121.2 124.279 1121.03 Q125.297 1120.85 126.316 1120.85 Q132.103 1120.85 135.482 1124.02 Q138.862 1127.19 138.862 1132.61 Q138.862 1138.19 135.39 1141.29 Q131.918 1144.37 125.598 1144.37 Q123.422 1144.37 121.154 1144 Q118.908 1143.63 116.501 1142.89 L116.501 1138.19 Q118.584 1139.32 120.807 1139.88 Q123.029 1140.43 125.506 1140.43 Q129.51 1140.43 131.848 1138.33 Q134.186 1136.22 134.186 1132.61 Q134.186 1129 131.848 1126.89 Q129.51 1124.78 125.506 1124.78 Q123.631 1124.78 121.756 1125.2 Q119.904 1125.62 117.959 1126.5 L117.959 1109.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M63.9319 790.759 Q60.3208 790.759 58.4921 794.323 Q56.6865 797.865 56.6865 804.995 Q56.6865 812.101 58.4921 815.666 Q60.3208 819.208 63.9319 819.208 Q67.5661 819.208 69.3717 815.666 Q71.2004 812.101 71.2004 804.995 Q71.2004 797.865 69.3717 794.323 Q67.5661 790.759 63.9319 790.759 M63.9319 787.055 Q69.742 787.055 72.7976 791.661 Q75.8763 796.245 75.8763 804.995 Q75.8763 813.722 72.7976 818.328 Q69.742 822.911 63.9319 822.911 Q58.1217 822.911 55.043 818.328 Q51.9875 813.722 51.9875 804.995 Q51.9875 796.245 55.043 791.661 Q58.1217 787.055 63.9319 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M80.9457 816.36 L85.8299 816.36 L85.8299 822.24 L80.9457 822.24 L80.9457 816.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M90.9456 787.68 L109.302 787.68 L109.302 791.615 L95.228 791.615 L95.228 800.087 Q96.2465 799.74 97.265 799.578 Q98.2835 799.393 99.3021 799.393 Q105.089 799.393 108.469 802.564 Q111.848 805.735 111.848 811.152 Q111.848 816.731 108.376 819.833 Q104.904 822.911 98.5845 822.911 Q96.4085 822.911 94.14 822.541 Q91.8947 822.171 89.4873 821.43 L89.4873 816.731 Q91.5706 817.865 93.7928 818.421 Q96.015 818.976 98.4919 818.976 Q102.496 818.976 104.834 816.87 Q107.172 814.763 107.172 811.152 Q107.172 807.541 104.834 805.435 Q102.496 803.328 98.4919 803.328 Q96.6169 803.328 94.7419 803.745 Q92.89 804.161 90.9456 805.041 L90.9456 787.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M126.918 790.759 Q123.307 790.759 121.478 794.323 Q119.672 797.865 119.672 804.995 Q119.672 812.101 121.478 815.666 Q123.307 819.208 126.918 819.208 Q130.552 819.208 132.357 815.666 Q134.186 812.101 134.186 804.995 Q134.186 797.865 132.357 794.323 Q130.552 790.759 126.918 790.759 M126.918 787.055 Q132.728 787.055 135.783 791.661 Q138.862 796.245 138.862 804.995 Q138.862 813.722 135.783 818.328 Q132.728 822.911 126.918 822.911 Q121.107 822.911 118.029 818.328 Q114.973 813.722 114.973 804.995 Q114.973 796.245 118.029 791.661 Q121.107 787.055 126.918 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M64.8346 469.302 Q61.2236 469.302 59.3949 472.867 Q57.5893 476.409 57.5893 483.538 Q57.5893 490.645 59.3949 494.209 Q61.2236 497.751 64.8346 497.751 Q68.4689 497.751 70.2744 494.209 Q72.1031 490.645 72.1031 483.538 Q72.1031 476.409 70.2744 472.867 Q68.4689 469.302 64.8346 469.302 M64.8346 465.598 Q70.6448 465.598 73.7003 470.205 Q76.779 474.788 76.779 483.538 Q76.779 492.265 73.7003 496.871 Q70.6448 501.455 64.8346 501.455 Q59.0245 501.455 55.9458 496.871 Q52.8903 492.265 52.8903 483.538 Q52.8903 474.788 55.9458 470.205 Q59.0245 465.598 64.8346 465.598 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M81.8484 494.904 L86.7327 494.904 L86.7327 500.783 L81.8484 500.783 L81.8484 494.904 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M90.6215 466.223 L112.844 466.223 L112.844 468.214 L100.297 500.783 L95.4132 500.783 L107.219 470.159 L90.6215 470.159 L90.6215 466.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M117.959 466.223 L136.316 466.223 L136.316 470.159 L122.242 470.159 L122.242 478.631 Q123.26 478.284 124.279 478.122 Q125.297 477.936 126.316 477.936 Q132.103 477.936 135.482 481.108 Q138.862 484.279 138.862 489.696 Q138.862 495.274 135.39 498.376 Q131.918 501.455 125.598 501.455 Q123.422 501.455 121.154 501.084 Q118.908 500.714 116.501 499.973 L116.501 495.274 Q118.584 496.408 120.807 496.964 Q123.029 497.52 125.506 497.52 Q129.51 497.52 131.848 495.413 Q134.186 493.307 134.186 489.696 Q134.186 486.084 131.848 483.978 Q129.51 481.872 125.506 481.872 Q123.631 481.872 121.756 482.288 Q119.904 482.705 117.959 483.584 L117.959 466.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M54.9736 175.392 L62.6124 175.392 L62.6124 149.026 L54.3023 150.693 L54.3023 146.434 L62.5661 144.767 L67.242 144.767 L67.242 175.392 L74.8809 175.392 L74.8809 179.327 L54.9736 179.327 L54.9736 175.392 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M79.9503 173.447 L84.8345 173.447 L84.8345 179.327 L79.9503 179.327 L79.9503 173.447 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M99.9039 147.846 Q96.2928 147.846 94.4641 151.41 Q92.6586 154.952 92.6586 162.082 Q92.6586 169.188 94.4641 172.753 Q96.2928 176.295 99.9039 176.295 Q103.538 176.295 105.344 172.753 Q107.172 169.188 107.172 162.082 Q107.172 154.952 105.344 151.41 Q103.538 147.846 99.9039 147.846 M99.9039 144.142 Q105.714 144.142 108.77 148.748 Q111.848 153.332 111.848 162.082 Q111.848 170.808 108.77 175.415 Q105.714 179.998 99.9039 179.998 Q94.0937 179.998 91.0151 175.415 Q87.9595 170.808 87.9595 162.082 Q87.9595 153.332 91.0151 148.748 Q94.0937 144.142 99.9039 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M126.918 147.846 Q123.307 147.846 121.478 151.41 Q119.672 154.952 119.672 162.082 Q119.672 169.188 121.478 172.753 Q123.307 176.295 126.918 176.295 Q130.552 176.295 132.357 172.753 Q134.186 169.188 134.186 162.082 Q134.186 154.952 132.357 151.41 Q130.552 147.846 126.918 147.846 M126.918 144.142 Q132.728 144.142 135.783 148.748 Q138.862 153.332 138.862 162.082 Q138.862 170.808 135.783 175.415 Q132.728 179.998 126.918 179.998 Q121.107 179.998 118.029 175.415 Q114.973 170.808 114.973 162.082 Q114.973 153.332 118.029 148.748 Q121.107 144.142 126.918 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M1246.61 27.2059 L1282.02 27.2059 L1282.02 34.0114 L1253.99 66.6212 L1282.02 66.6212 L1282.02 72.576 L1245.6 72.576 L1245.6 65.7705 L1273.63 33.1607 L1246.61 33.1607 L1246.61 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip462)\" cx=\"236.501\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"246.102\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"255.703\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"265.304\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"274.905\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"284.506\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"294.107\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"303.708\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"313.309\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"322.91\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"332.511\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"342.112\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"351.713\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"361.314\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"370.915\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"380.516\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"390.117\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"399.718\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"409.319\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"418.92\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"428.521\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"438.122\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"447.723\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"457.324\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"466.925\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"476.526\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"486.127\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"495.728\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"505.329\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"514.93\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"524.531\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"534.132\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"543.733\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"553.334\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"562.935\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"572.536\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"582.137\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"591.738\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"601.339\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"610.94\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"620.541\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"630.142\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"639.743\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"649.344\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"658.945\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"668.546\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"678.147\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"687.748\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"697.349\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"706.95\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"716.551\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"726.152\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"735.753\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"745.354\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"754.955\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"764.556\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"774.157\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"783.758\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"793.359\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"802.96\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"812.561\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"822.162\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"831.763\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"841.364\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"850.965\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"860.566\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"870.167\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"879.768\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"889.369\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"898.97\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"908.571\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"918.172\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"927.773\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"937.375\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"946.976\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"956.577\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"966.178\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"975.779\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"985.38\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"994.981\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1004.58\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1014.18\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1023.78\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1033.38\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1042.99\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1052.59\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1062.19\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1071.79\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1081.39\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1090.99\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1100.59\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1110.19\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1119.79\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1129.39\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1139\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1148.6\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1158.2\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1167.8\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1177.4\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1187\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1196.6\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1206.2\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1215.8\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1225.4\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1235.01\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1244.61\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1254.21\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1263.81\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1273.41\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1283.01\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1292.61\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1302.21\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1311.81\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1321.42\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1331.02\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1340.62\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1350.22\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1359.82\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1369.42\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1379.02\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1388.62\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1398.22\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1407.82\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1417.43\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1427.03\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1436.63\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1446.23\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1455.83\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1465.43\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1475.03\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1484.63\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1494.23\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1503.83\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1513.44\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1523.04\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1532.64\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1542.24\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1551.84\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1561.44\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1571.04\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1580.64\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1590.24\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1599.84\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1609.45\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1619.05\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1628.65\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1638.25\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1647.85\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1657.45\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1667.05\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1676.65\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1686.25\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1695.85\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1705.46\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1715.06\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1724.66\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1734.26\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1743.86\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1753.46\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1763.06\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1772.66\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1782.26\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1791.86\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1801.47\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1811.07\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1820.67\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1830.27\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1839.87\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1849.47\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1859.07\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1868.67\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1878.27\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1887.87\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1897.48\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1907.08\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1916.68\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1926.28\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1935.88\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1945.48\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1955.08\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1964.68\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1974.28\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1983.88\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"1993.49\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2003.09\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2012.69\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2022.29\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2031.89\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2041.49\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2051.09\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2060.69\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2070.29\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2079.9\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2089.5\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2099.1\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2108.7\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2118.3\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2127.9\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2137.5\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2147.1\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2156.7\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2166.3\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2175.91\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2185.51\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2195.11\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2204.71\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2214.31\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2223.91\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2233.51\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2243.11\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2252.71\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2262.31\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2271.92\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2281.52\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip462)\" cx=\"2291.12\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plotFinalDisplacement(name)"
]
},
{
"cell_type": "code",
"execution_count": 763,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip500\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip500)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip501\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip500)\" d=\"\n",
"M171.181 1486.45 L2352.76 1486.45 L2352.76 123.472 L171.181 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip502\">\n",
" <rect x=\"171\" y=\"123\" width=\"2183\" height=\"1364\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 211.923,1486.45 211.923,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 736.946,1486.45 736.946,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1261.97,1486.45 1261.97,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1786.99,1486.45 1786.99,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2312.01,1486.45 2312.01,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 171.181,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 211.923,1486.45 211.923,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 736.946,1486.45 736.946,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1261.97,1486.45 1261.97,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1786.99,1486.45 1786.99,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2312.01,1486.45 2312.01,1470.09 \n",
" \"/>\n",
"<path clip-path=\"url(#clip500)\" d=\"M 0 0 M211.923 1515.64 Q208.312 1515.64 206.483 1519.2 Q204.678 1522.75 204.678 1529.87 Q204.678 1536.98 206.483 1540.55 Q208.312 1544.09 211.923 1544.09 Q215.557 1544.09 217.363 1540.55 Q219.192 1536.98 219.192 1529.87 Q219.192 1522.75 217.363 1519.2 Q215.557 1515.64 211.923 1515.64 M211.923 1511.93 Q217.733 1511.93 220.789 1516.54 Q223.868 1521.12 223.868 1529.87 Q223.868 1538.6 220.789 1543.21 Q217.733 1547.79 211.923 1547.79 Q206.113 1547.79 203.034 1543.21 Q199.979 1538.6 199.979 1529.87 Q199.979 1521.12 203.034 1516.54 Q206.113 1511.93 211.923 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M718.59 1543.18 L734.909 1543.18 L734.909 1547.12 L712.965 1547.12 L712.965 1543.18 Q715.627 1540.43 720.21 1535.8 Q724.816 1531.15 725.997 1529.81 Q728.242 1527.28 729.122 1525.55 Q730.025 1523.79 730.025 1522.1 Q730.025 1519.34 728.08 1517.61 Q726.159 1515.87 723.057 1515.87 Q720.858 1515.87 718.404 1516.63 Q715.974 1517.4 713.196 1518.95 L713.196 1514.23 Q716.02 1513.09 718.474 1512.51 Q720.928 1511.93 722.965 1511.93 Q728.335 1511.93 731.529 1514.62 Q734.724 1517.31 734.724 1521.8 Q734.724 1523.93 733.914 1525.85 Q733.127 1527.74 731.02 1530.34 Q730.441 1531.01 727.34 1534.23 Q724.238 1537.42 718.59 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M740.025 1512.56 L758.381 1512.56 L758.381 1516.5 L744.307 1516.5 L744.307 1524.97 Q745.326 1524.62 746.344 1524.46 Q747.363 1524.27 748.381 1524.27 Q754.168 1524.27 757.548 1527.44 Q760.927 1530.62 760.927 1536.03 Q760.927 1541.61 757.455 1544.71 Q753.983 1547.79 747.664 1547.79 Q745.488 1547.79 743.219 1547.42 Q740.974 1547.05 738.566 1546.31 L738.566 1541.61 Q740.65 1542.74 742.872 1543.3 Q745.094 1543.86 747.571 1543.86 Q751.576 1543.86 753.913 1541.75 Q756.251 1539.64 756.251 1536.03 Q756.251 1532.42 753.913 1530.31 Q751.576 1528.21 747.571 1528.21 Q745.696 1528.21 743.821 1528.62 Q741.969 1529.04 740.025 1529.92 L740.025 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M1238.74 1512.56 L1257.1 1512.56 L1257.1 1516.5 L1243.02 1516.5 L1243.02 1524.97 Q1244.04 1524.62 1245.06 1524.46 Q1246.08 1524.27 1247.1 1524.27 Q1252.88 1524.27 1256.26 1527.44 Q1259.64 1530.62 1259.64 1536.03 Q1259.64 1541.61 1256.17 1544.71 Q1252.7 1547.79 1246.38 1547.79 Q1244.2 1547.79 1241.93 1547.42 Q1239.69 1547.05 1237.28 1546.31 L1237.28 1541.61 Q1239.36 1542.74 1241.59 1543.3 Q1243.81 1543.86 1246.29 1543.86 Q1250.29 1543.86 1252.63 1541.75 Q1254.97 1539.64 1254.97 1536.03 Q1254.97 1532.42 1252.63 1530.31 Q1250.29 1528.21 1246.29 1528.21 Q1244.41 1528.21 1242.54 1528.62 Q1240.68 1529.04 1238.74 1529.92 L1238.74 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M1274.71 1515.64 Q1271.1 1515.64 1269.27 1519.2 Q1267.47 1522.75 1267.47 1529.87 Q1267.47 1536.98 1269.27 1540.55 Q1271.1 1544.09 1274.71 1544.09 Q1278.35 1544.09 1280.15 1540.55 Q1281.98 1536.98 1281.98 1529.87 Q1281.98 1522.75 1280.15 1519.2 Q1278.35 1515.64 1274.71 1515.64 M1274.71 1511.93 Q1280.52 1511.93 1283.58 1516.54 Q1286.66 1521.12 1286.66 1529.87 Q1286.66 1538.6 1283.58 1543.21 Q1280.52 1547.79 1274.71 1547.79 Q1268.9 1547.79 1265.82 1543.21 Q1262.77 1538.6 1262.77 1529.87 Q1262.77 1521.12 1265.82 1516.54 Q1268.9 1511.93 1274.71 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M1762.87 1512.56 L1785.09 1512.56 L1785.09 1514.55 L1772.55 1547.12 L1767.66 1547.12 L1779.47 1516.5 L1762.87 1516.5 L1762.87 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M1790.21 1512.56 L1808.57 1512.56 L1808.57 1516.5 L1794.49 1516.5 L1794.49 1524.97 Q1795.51 1524.62 1796.53 1524.46 Q1797.55 1524.27 1798.57 1524.27 Q1804.35 1524.27 1807.73 1527.44 Q1811.11 1530.62 1811.11 1536.03 Q1811.11 1541.61 1807.64 1544.71 Q1804.17 1547.79 1797.85 1547.79 Q1795.67 1547.79 1793.4 1547.42 Q1791.16 1547.05 1788.75 1546.31 L1788.75 1541.61 Q1790.83 1542.74 1793.06 1543.3 Q1795.28 1543.86 1797.76 1543.86 Q1801.76 1543.86 1804.1 1541.75 Q1806.44 1539.64 1806.44 1536.03 Q1806.44 1532.42 1804.1 1530.31 Q1801.76 1528.21 1797.76 1528.21 Q1795.88 1528.21 1794.01 1528.62 Q1792.15 1529.04 1790.21 1529.92 L1790.21 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M2275.38 1543.18 L2283.02 1543.18 L2283.02 1516.82 L2274.71 1518.49 L2274.71 1514.23 L2282.97 1512.56 L2287.65 1512.56 L2287.65 1543.18 L2295.29 1543.18 L2295.29 1547.12 L2275.38 1547.12 L2275.38 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M2310.36 1515.64 Q2306.75 1515.64 2304.92 1519.2 Q2303.11 1522.75 2303.11 1529.87 Q2303.11 1536.98 2304.92 1540.55 Q2306.75 1544.09 2310.36 1544.09 Q2313.99 1544.09 2315.8 1540.55 Q2317.63 1536.98 2317.63 1529.87 Q2317.63 1522.75 2315.8 1519.2 Q2313.99 1515.64 2310.36 1515.64 M2310.36 1511.93 Q2316.17 1511.93 2319.22 1516.54 Q2322.3 1521.12 2322.3 1529.87 Q2322.3 1538.6 2319.22 1543.21 Q2316.17 1547.79 2310.36 1547.79 Q2304.55 1547.79 2301.47 1543.21 Q2298.41 1538.6 2298.41 1529.87 Q2298.41 1521.12 2301.47 1516.54 Q2304.55 1511.93 2310.36 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M2337.37 1515.64 Q2333.76 1515.64 2331.93 1519.2 Q2330.13 1522.75 2330.13 1529.87 Q2330.13 1536.98 2331.93 1540.55 Q2333.76 1544.09 2337.37 1544.09 Q2341.01 1544.09 2342.81 1540.55 Q2344.64 1536.98 2344.64 1529.87 Q2344.64 1522.75 2342.81 1519.2 Q2341.01 1515.64 2337.37 1515.64 M2337.37 1511.93 Q2343.18 1511.93 2346.24 1516.54 Q2349.32 1521.12 2349.32 1529.87 Q2349.32 1538.6 2346.24 1543.21 Q2343.18 1547.79 2337.37 1547.79 Q2331.56 1547.79 2328.48 1543.21 Q2325.43 1538.6 2325.43 1529.87 Q2325.43 1521.12 2328.48 1516.54 Q2331.56 1511.93 2337.37 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 171.181,1478.61 2352.76,1478.61 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 171.181,1213.79 2352.76,1213.79 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 171.181,948.967 2352.76,948.967 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 171.181,684.145 2352.76,684.145 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 171.181,419.322 2352.76,419.322 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 171.181,154.5 2352.76,154.5 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 171.181,1486.45 171.181,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 171.181,1478.61 197.36,1478.61 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 171.181,1213.79 197.36,1213.79 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 171.181,948.967 197.36,948.967 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 171.181,684.145 197.36,684.145 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 171.181,419.322 197.36,419.322 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 171.181,154.5 197.36,154.5 \n",
" \"/>\n",
"<path clip-path=\"url(#clip500)\" d=\"M 0 0 M52.4736 1479.06 L82.1494 1479.06 L82.1494 1483 L52.4736 1483 L52.4736 1479.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M87.2651 1461.33 L105.621 1461.33 L105.621 1465.27 L91.5475 1465.27 L91.5475 1473.74 Q92.566 1473.39 93.5845 1473.23 Q94.603 1473.04 95.6215 1473.04 Q101.409 1473.04 104.788 1476.22 Q108.168 1479.39 108.168 1484.8 Q108.168 1490.38 104.696 1493.48 Q101.223 1496.56 94.9039 1496.56 Q92.728 1496.56 90.4595 1496.19 Q88.2141 1495.82 85.8068 1495.08 L85.8068 1490.38 Q87.8901 1491.52 90.1123 1492.07 Q92.3345 1492.63 94.8113 1492.63 Q98.8159 1492.63 101.154 1490.52 Q103.492 1488.41 103.492 1484.8 Q103.492 1481.19 101.154 1479.09 Q98.8159 1476.98 94.8113 1476.98 Q92.9363 1476.98 91.0614 1477.4 Q89.2095 1477.81 87.2651 1478.69 L87.2651 1461.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M123.237 1464.41 Q119.626 1464.41 117.797 1467.98 Q115.992 1471.52 115.992 1478.65 Q115.992 1485.75 117.797 1489.32 Q119.626 1492.86 123.237 1492.86 Q126.871 1492.86 128.677 1489.32 Q130.506 1485.75 130.506 1478.65 Q130.506 1471.52 128.677 1467.98 Q126.871 1464.41 123.237 1464.41 M123.237 1460.71 Q129.047 1460.71 132.103 1465.31 Q135.181 1469.9 135.181 1478.65 Q135.181 1487.37 132.103 1491.98 Q129.047 1496.56 123.237 1496.56 Q117.427 1496.56 114.348 1491.98 Q111.293 1487.37 111.293 1478.65 Q111.293 1469.9 114.348 1465.31 Q117.427 1460.71 123.237 1460.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M50.9921 1214.24 L80.6679 1214.24 L80.6679 1218.18 L50.9921 1218.18 L50.9921 1214.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M98.5845 1200.58 L86.779 1219.03 L98.5845 1219.03 L98.5845 1200.58 M97.3576 1196.51 L103.237 1196.51 L103.237 1219.03 L108.168 1219.03 L108.168 1222.92 L103.237 1222.92 L103.237 1231.07 L98.5845 1231.07 L98.5845 1222.92 L82.9827 1222.92 L82.9827 1218.41 L97.3576 1196.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M123.237 1199.59 Q119.626 1199.59 117.797 1203.15 Q115.992 1206.69 115.992 1213.82 Q115.992 1220.93 117.797 1224.5 Q119.626 1228.04 123.237 1228.04 Q126.871 1228.04 128.677 1224.5 Q130.506 1220.93 130.506 1213.82 Q130.506 1206.69 128.677 1203.15 Q126.871 1199.59 123.237 1199.59 M123.237 1195.88 Q129.047 1195.88 132.103 1200.49 Q135.181 1205.07 135.181 1213.82 Q135.181 1222.55 132.103 1227.16 Q129.047 1231.74 123.237 1231.74 Q117.427 1231.74 114.348 1227.16 Q111.293 1222.55 111.293 1213.82 Q111.293 1205.07 114.348 1200.49 Q117.427 1195.88 123.237 1195.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M52.1264 949.419 L81.8021 949.419 L81.8021 953.354 L52.1264 953.354 L52.1264 949.419 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M101.038 947.613 Q104.395 948.331 106.27 950.599 Q108.168 952.868 108.168 956.201 Q108.168 961.317 104.649 964.118 Q101.131 966.918 94.6493 966.918 Q92.4734 966.918 90.1586 966.479 Q87.8669 966.062 85.4132 965.205 L85.4132 960.692 Q87.3577 961.826 89.6725 962.405 Q91.9873 962.983 94.5104 962.983 Q98.9085 962.983 101.2 961.247 Q103.515 959.511 103.515 956.201 Q103.515 953.145 101.362 951.432 Q99.2326 949.696 95.4132 949.696 L91.3854 949.696 L91.3854 945.854 L95.5984 945.854 Q99.0474 945.854 100.876 944.488 Q102.705 943.099 102.705 940.507 Q102.705 937.845 100.807 936.432 Q98.9317 934.997 95.4132 934.997 Q93.4919 934.997 91.2928 935.414 Q89.0938 935.831 86.4549 936.71 L86.4549 932.544 Q89.1169 931.803 91.4317 931.432 Q93.7697 931.062 95.8298 931.062 Q101.154 931.062 104.256 933.493 Q107.358 935.9 107.358 940.02 Q107.358 942.891 105.714 944.882 Q104.071 946.849 101.038 947.613 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M123.237 934.766 Q119.626 934.766 117.797 938.331 Q115.992 941.872 115.992 949.002 Q115.992 956.108 117.797 959.673 Q119.626 963.215 123.237 963.215 Q126.871 963.215 128.677 959.673 Q130.506 956.108 130.506 949.002 Q130.506 941.872 128.677 938.331 Q126.871 934.766 123.237 934.766 M123.237 931.062 Q129.047 931.062 132.103 935.669 Q135.181 940.252 135.181 949.002 Q135.181 957.729 132.103 962.335 Q129.047 966.918 123.237 966.918 Q117.427 966.918 114.348 962.335 Q111.293 957.729 111.293 949.002 Q111.293 940.252 114.348 935.669 Q117.427 931.062 123.237 931.062 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M53.0754 684.596 L82.7512 684.596 L82.7512 688.531 L53.0754 688.531 L53.0754 684.596 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M91.8484 697.49 L108.168 697.49 L108.168 701.425 L86.2234 701.425 L86.2234 697.49 Q88.8854 694.735 93.4688 690.105 Q98.0752 685.453 99.2558 684.11 Q101.501 681.587 102.381 679.851 Q103.284 678.092 103.284 676.402 Q103.284 673.647 101.339 671.911 Q99.4178 670.175 96.316 670.175 Q94.1169 670.175 91.6632 670.939 Q89.2327 671.703 86.4549 673.254 L86.4549 668.531 Q89.279 667.397 91.7326 666.819 Q94.1863 666.24 96.2234 666.24 Q101.594 666.24 104.788 668.925 Q107.983 671.61 107.983 676.101 Q107.983 678.23 107.172 680.152 Q106.385 682.05 104.279 684.642 Q103.7 685.314 100.598 688.531 Q97.4965 691.726 91.8484 697.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M123.237 669.943 Q119.626 669.943 117.797 673.508 Q115.992 677.05 115.992 684.18 Q115.992 691.286 117.797 694.851 Q119.626 698.392 123.237 698.392 Q126.871 698.392 128.677 694.851 Q130.506 691.286 130.506 684.18 Q130.506 677.05 128.677 673.508 Q126.871 669.943 123.237 669.943 M123.237 666.24 Q129.047 666.24 132.103 670.846 Q135.181 675.43 135.181 684.18 Q135.181 692.906 132.103 697.513 Q129.047 702.096 123.237 702.096 Q117.427 702.096 114.348 697.513 Q111.293 692.906 111.293 684.18 Q111.293 675.43 114.348 670.846 Q117.427 666.24 123.237 666.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M52.7051 419.774 L82.3808 419.774 L82.3808 423.709 L52.7051 423.709 L52.7051 419.774 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M88.2604 432.667 L95.8993 432.667 L95.8993 406.302 L87.5892 407.968 L87.5892 403.709 L95.853 402.042 L100.529 402.042 L100.529 432.667 L108.168 432.667 L108.168 436.602 L88.2604 436.602 L88.2604 432.667 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M123.237 405.121 Q119.626 405.121 117.797 408.686 Q115.992 412.228 115.992 419.357 Q115.992 426.464 117.797 430.028 Q119.626 433.57 123.237 433.57 Q126.871 433.57 128.677 430.028 Q130.506 426.464 130.506 419.357 Q130.506 412.228 128.677 408.686 Q126.871 405.121 123.237 405.121 M123.237 401.417 Q129.047 401.417 132.103 406.024 Q135.181 410.607 135.181 419.357 Q135.181 428.084 132.103 432.69 Q129.047 437.274 123.237 437.274 Q117.427 437.274 114.348 432.69 Q111.293 428.084 111.293 419.357 Q111.293 410.607 114.348 406.024 Q117.427 401.417 123.237 401.417 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M123.237 140.299 Q119.626 140.299 117.797 143.864 Q115.992 147.405 115.992 154.535 Q115.992 161.641 117.797 165.206 Q119.626 168.748 123.237 168.748 Q126.871 168.748 128.677 165.206 Q130.506 161.641 130.506 154.535 Q130.506 147.405 128.677 143.864 Q126.871 140.299 123.237 140.299 M123.237 136.595 Q129.047 136.595 132.103 141.202 Q135.181 145.785 135.181 154.535 Q135.181 163.262 132.103 167.868 Q129.047 172.451 123.237 172.451 Q117.427 172.451 114.348 167.868 Q111.293 163.262 111.293 154.535 Q111.293 145.785 114.348 141.202 Q117.427 136.595 123.237 136.595 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M1283.11 27.2059 L1266.71 49.2833 L1283.97 72.576 L1275.17 72.576 L1261.97 54.752 L1248.76 72.576 L1239.97 72.576 L1257.59 48.8377 L1241.47 27.2059 L1250.26 27.2059 L1262.29 43.369 L1274.32 27.2059 L1283.11 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 232.924,162.047 253.925,172.574 274.926,183.7 295.927,195.191 316.928,206.929 337.929,218.836 358.93,230.857 379.931,242.954 400.931,255.104 421.932,267.289 \n",
" 442.933,279.497 463.934,291.721 484.935,303.956 505.936,316.199 526.937,328.446 547.938,340.696 568.939,352.949 589.94,365.203 610.941,377.458 631.941,389.714 \n",
" 652.942,401.97 673.943,414.226 694.944,426.483 715.945,438.74 736.946,450.997 757.947,463.253 778.948,475.51 799.949,487.767 820.95,500.024 841.951,512.28 \n",
" 862.951,524.537 883.952,536.794 904.953,549.05 925.954,561.307 946.955,573.563 967.956,585.82 988.957,598.076 1009.96,610.333 1030.96,622.589 1051.96,634.845 \n",
" 1072.96,647.101 1093.96,659.358 1114.96,671.614 1135.96,683.87 1156.96,696.126 1177.97,708.381 1198.97,720.633 1219.97,732.886 1240.97,745.139 1261.97,757.394 \n",
" 1282.97,769.648 1303.97,781.902 1324.97,794.157 1345.97,806.412 1366.97,818.665 1387.97,830.924 1408.98,843.182 1429.98,855.439 1450.98,867.695 1471.98,879.95 \n",
" 1492.98,892.205 1513.98,904.461 1534.98,916.716 1555.98,928.971 1576.98,941.226 1597.98,953.481 1618.98,965.736 1639.99,977.99 1660.99,990.245 1681.99,1002.5 \n",
" 1702.99,1014.75 1723.99,1027.01 1744.99,1039.26 1765.99,1051.76 1786.99,1074.32 1807.99,1100.84 1828.99,1124.05 1849.99,1144.88 1871,1163.95 1892,1181.67 \n",
" 1913,1198.34 1934,1214.21 1955,1229.47 1976,1244.25 1997,1258.68 2018,1272.83 2039,1286.77 2060,1300.55 2081,1314.2 2102.01,1327.76 \n",
" 2123.01,1341.24 2144.01,1354.67 2165.01,1368.05 2186.01,1381.4 2207.01,1394.73 2228.01,1408.03 2249.01,1421.32 2270.01,1434.6 2291.01,1447.87 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip540\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip540)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip541\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip540)\" d=\"\n",
"M260.695 1486.45 L2352.76 1486.45 L2352.76 123.472 L260.695 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip542\">\n",
" <rect x=\"260\" y=\"123\" width=\"2093\" height=\"1364\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 299.765,1486.45 299.765,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 803.245,1486.45 803.245,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1306.73,1486.45 1306.73,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1810.21,1486.45 1810.21,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2313.69,1486.45 2313.69,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 260.695,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 299.765,1486.45 299.765,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 803.245,1486.45 803.245,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1306.73,1486.45 1306.73,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1810.21,1486.45 1810.21,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2313.69,1486.45 2313.69,1470.09 \n",
" \"/>\n",
"<path clip-path=\"url(#clip540)\" d=\"M 0 0 M299.765 1515.64 Q296.154 1515.64 294.325 1519.2 Q292.52 1522.75 292.52 1529.87 Q292.52 1536.98 294.325 1540.55 Q296.154 1544.09 299.765 1544.09 Q303.399 1544.09 305.205 1540.55 Q307.033 1536.98 307.033 1529.87 Q307.033 1522.75 305.205 1519.2 Q303.399 1515.64 299.765 1515.64 M299.765 1511.93 Q305.575 1511.93 308.631 1516.54 Q311.709 1521.12 311.709 1529.87 Q311.709 1538.6 308.631 1543.21 Q305.575 1547.79 299.765 1547.79 Q293.955 1547.79 290.876 1543.21 Q287.821 1538.6 287.821 1529.87 Q287.821 1521.12 290.876 1516.54 Q293.955 1511.93 299.765 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M784.889 1543.18 L801.208 1543.18 L801.208 1547.12 L779.264 1547.12 L779.264 1543.18 Q781.926 1540.43 786.509 1535.8 Q791.116 1531.15 792.296 1529.81 Q794.542 1527.28 795.421 1525.55 Q796.324 1523.79 796.324 1522.1 Q796.324 1519.34 794.379 1517.61 Q792.458 1515.87 789.356 1515.87 Q787.157 1515.87 784.704 1516.63 Q782.273 1517.4 779.495 1518.95 L779.495 1514.23 Q782.319 1513.09 784.773 1512.51 Q787.227 1511.93 789.264 1511.93 Q794.634 1511.93 797.829 1514.62 Q801.023 1517.31 801.023 1521.8 Q801.023 1523.93 800.213 1525.85 Q799.426 1527.74 797.319 1530.34 Q796.741 1531.01 793.639 1534.23 Q790.537 1537.42 784.889 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M806.324 1512.56 L824.68 1512.56 L824.68 1516.5 L810.606 1516.5 L810.606 1524.97 Q811.625 1524.62 812.643 1524.46 Q813.662 1524.27 814.68 1524.27 Q820.467 1524.27 823.847 1527.44 Q827.227 1530.62 827.227 1536.03 Q827.227 1541.61 823.754 1544.71 Q820.282 1547.79 813.963 1547.79 Q811.787 1547.79 809.518 1547.42 Q807.273 1547.05 804.866 1546.31 L804.866 1541.61 Q806.949 1542.74 809.171 1543.3 Q811.393 1543.86 813.87 1543.86 Q817.875 1543.86 820.213 1541.75 Q822.551 1539.64 822.551 1536.03 Q822.551 1532.42 820.213 1530.31 Q817.875 1528.21 813.87 1528.21 Q811.995 1528.21 810.12 1528.62 Q808.268 1529.04 806.324 1529.92 L806.324 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M1283.5 1512.56 L1301.85 1512.56 L1301.85 1516.5 L1287.78 1516.5 L1287.78 1524.97 Q1288.8 1524.62 1289.82 1524.46 Q1290.83 1524.27 1291.85 1524.27 Q1297.64 1524.27 1301.02 1527.44 Q1304.4 1530.62 1304.4 1536.03 Q1304.4 1541.61 1300.93 1544.71 Q1297.45 1547.79 1291.14 1547.79 Q1288.96 1547.79 1286.69 1547.42 Q1284.45 1547.05 1282.04 1546.31 L1282.04 1541.61 Q1284.12 1542.74 1286.34 1543.3 Q1288.57 1543.86 1291.04 1543.86 Q1295.05 1543.86 1297.39 1541.75 Q1299.72 1539.64 1299.72 1536.03 Q1299.72 1532.42 1297.39 1530.31 Q1295.05 1528.21 1291.04 1528.21 Q1289.17 1528.21 1287.29 1528.62 Q1285.44 1529.04 1283.5 1529.92 L1283.5 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M1319.47 1515.64 Q1315.86 1515.64 1314.03 1519.2 Q1312.22 1522.75 1312.22 1529.87 Q1312.22 1536.98 1314.03 1540.55 Q1315.86 1544.09 1319.47 1544.09 Q1323.1 1544.09 1324.91 1540.55 Q1326.74 1536.98 1326.74 1529.87 Q1326.74 1522.75 1324.91 1519.2 Q1323.1 1515.64 1319.47 1515.64 M1319.47 1511.93 Q1325.28 1511.93 1328.33 1516.54 Q1331.41 1521.12 1331.41 1529.87 Q1331.41 1538.6 1328.33 1543.21 Q1325.28 1547.79 1319.47 1547.79 Q1313.66 1547.79 1310.58 1543.21 Q1307.52 1538.6 1307.52 1529.87 Q1307.52 1521.12 1310.58 1516.54 Q1313.66 1511.93 1319.47 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M1786.09 1512.56 L1808.31 1512.56 L1808.31 1514.55 L1795.76 1547.12 L1790.88 1547.12 L1802.68 1516.5 L1786.09 1516.5 L1786.09 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M1813.42 1512.56 L1831.78 1512.56 L1831.78 1516.5 L1817.71 1516.5 L1817.71 1524.97 Q1818.72 1524.62 1819.74 1524.46 Q1820.76 1524.27 1821.78 1524.27 Q1827.57 1524.27 1830.95 1527.44 Q1834.33 1530.62 1834.33 1536.03 Q1834.33 1541.61 1830.85 1544.71 Q1827.38 1547.79 1821.06 1547.79 Q1818.89 1547.79 1816.62 1547.42 Q1814.37 1547.05 1811.96 1546.31 L1811.96 1541.61 Q1814.05 1542.74 1816.27 1543.3 Q1818.49 1543.86 1820.97 1543.86 Q1824.97 1543.86 1827.31 1541.75 Q1829.65 1539.64 1829.65 1536.03 Q1829.65 1532.42 1827.31 1530.31 Q1824.97 1528.21 1820.97 1528.21 Q1819.09 1528.21 1817.22 1528.62 Q1815.37 1529.04 1813.42 1529.92 L1813.42 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M2277.05 1543.18 L2284.69 1543.18 L2284.69 1516.82 L2276.38 1518.49 L2276.38 1514.23 L2284.65 1512.56 L2289.32 1512.56 L2289.32 1543.18 L2296.96 1543.18 L2296.96 1547.12 L2277.05 1547.12 L2277.05 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M2312.03 1515.64 Q2308.42 1515.64 2306.59 1519.2 Q2304.79 1522.75 2304.79 1529.87 Q2304.79 1536.98 2306.59 1540.55 Q2308.42 1544.09 2312.03 1544.09 Q2315.66 1544.09 2317.47 1540.55 Q2319.3 1536.98 2319.3 1529.87 Q2319.3 1522.75 2317.47 1519.2 Q2315.66 1515.64 2312.03 1515.64 M2312.03 1511.93 Q2317.84 1511.93 2320.9 1516.54 Q2323.98 1521.12 2323.98 1529.87 Q2323.98 1538.6 2320.9 1543.21 Q2317.84 1547.79 2312.03 1547.79 Q2306.22 1547.79 2303.14 1543.21 Q2300.09 1538.6 2300.09 1529.87 Q2300.09 1521.12 2303.14 1516.54 Q2306.22 1511.93 2312.03 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M2339.04 1515.64 Q2335.43 1515.64 2333.6 1519.2 Q2331.8 1522.75 2331.8 1529.87 Q2331.8 1536.98 2333.6 1540.55 Q2335.43 1544.09 2339.04 1544.09 Q2342.68 1544.09 2344.48 1540.55 Q2346.31 1536.98 2346.31 1529.87 Q2346.31 1522.75 2344.48 1519.2 Q2342.68 1515.64 2339.04 1515.64 M2339.04 1511.93 Q2344.85 1511.93 2347.91 1516.54 Q2350.99 1521.12 2350.99 1529.87 Q2350.99 1538.6 2347.91 1543.21 Q2344.85 1547.79 2339.04 1547.79 Q2333.23 1547.79 2330.16 1543.21 Q2327.1 1538.6 2327.1 1529.87 Q2327.1 1521.12 2330.16 1516.54 Q2333.23 1511.93 2339.04 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 260.695,1394.88 2352.76,1394.88 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 260.695,1117.06 2352.76,1117.06 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 260.695,839.238 2352.76,839.238 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 260.695,561.417 2352.76,561.417 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 260.695,283.595 2352.76,283.595 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 260.695,1486.45 260.695,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 260.695,1394.88 285.8,1394.88 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 260.695,1117.06 285.8,1117.06 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 260.695,839.238 285.8,839.238 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 260.695,561.417 285.8,561.417 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 260.695,283.595 285.8,283.595 \n",
" \"/>\n",
"<path clip-path=\"url(#clip540)\" d=\"M 0 0 M50.9921 1395.33 L80.6679 1395.33 L80.6679 1399.27 L50.9921 1399.27 L50.9921 1395.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M95.7373 1380.68 Q92.1262 1380.68 90.2975 1384.25 Q88.4919 1387.79 88.4919 1394.92 Q88.4919 1402.02 90.2975 1405.59 Q92.1262 1409.13 95.7373 1409.13 Q99.3715 1409.13 101.177 1405.59 Q103.006 1402.02 103.006 1394.92 Q103.006 1387.79 101.177 1384.25 Q99.3715 1380.68 95.7373 1380.68 M95.7373 1376.98 Q101.547 1376.98 104.603 1381.58 Q107.682 1386.17 107.682 1394.92 Q107.682 1403.64 104.603 1408.25 Q101.547 1412.83 95.7373 1412.83 Q89.9271 1412.83 86.8484 1408.25 Q83.7929 1403.64 83.7929 1394.92 Q83.7929 1386.17 86.8484 1381.58 Q89.9271 1376.98 95.7373 1376.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M112.751 1406.28 L117.635 1406.28 L117.635 1412.16 L112.751 1412.16 L112.751 1406.28 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M132.705 1380.68 Q129.094 1380.68 127.265 1384.25 Q125.459 1387.79 125.459 1394.92 Q125.459 1402.02 127.265 1405.59 Q129.094 1409.13 132.705 1409.13 Q136.339 1409.13 138.144 1405.59 Q139.973 1402.02 139.973 1394.92 Q139.973 1387.79 138.144 1384.25 Q136.339 1380.68 132.705 1380.68 M132.705 1376.98 Q138.515 1376.98 141.57 1381.58 Q144.649 1386.17 144.649 1394.92 Q144.649 1403.64 141.57 1408.25 Q138.515 1412.83 132.705 1412.83 Q126.894 1412.83 123.816 1408.25 Q120.76 1403.64 120.76 1394.92 Q120.76 1386.17 123.816 1381.58 Q126.894 1376.98 132.705 1376.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M159.718 1380.68 Q156.107 1380.68 154.279 1384.25 Q152.473 1387.79 152.473 1394.92 Q152.473 1402.02 154.279 1405.59 Q156.107 1409.13 159.718 1409.13 Q163.353 1409.13 165.158 1405.59 Q166.987 1402.02 166.987 1394.92 Q166.987 1387.79 165.158 1384.25 Q163.353 1380.68 159.718 1380.68 M159.718 1376.98 Q165.529 1376.98 168.584 1381.58 Q171.663 1386.17 171.663 1394.92 Q171.663 1403.64 168.584 1408.25 Q165.529 1412.83 159.718 1412.83 Q153.908 1412.83 150.83 1408.25 Q147.774 1403.64 147.774 1394.92 Q147.774 1386.17 150.83 1381.58 Q153.908 1376.98 159.718 1376.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M186.732 1380.68 Q183.121 1380.68 181.292 1384.25 Q179.487 1387.79 179.487 1394.92 Q179.487 1402.02 181.292 1405.59 Q183.121 1409.13 186.732 1409.13 Q190.366 1409.13 192.172 1405.59 Q194.001 1402.02 194.001 1394.92 Q194.001 1387.79 192.172 1384.25 Q190.366 1380.68 186.732 1380.68 M186.732 1376.98 Q192.542 1376.98 195.598 1381.58 Q198.677 1386.17 198.677 1394.92 Q198.677 1403.64 195.598 1408.25 Q192.542 1412.83 186.732 1412.83 Q180.922 1412.83 177.843 1408.25 Q174.788 1403.64 174.788 1394.92 Q174.788 1386.17 177.843 1381.58 Q180.922 1376.98 186.732 1376.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M203.792 1377.6 L222.149 1377.6 L222.149 1381.54 L208.075 1381.54 L208.075 1390.01 Q209.093 1389.66 210.112 1389.5 Q211.13 1389.31 212.149 1389.31 Q217.936 1389.31 221.315 1392.49 Q224.695 1395.66 224.695 1401.07 Q224.695 1406.65 221.223 1409.75 Q217.75 1412.83 211.431 1412.83 Q209.255 1412.83 206.987 1412.46 Q204.741 1412.09 202.334 1411.35 L202.334 1406.65 Q204.417 1407.79 206.639 1408.34 Q208.862 1408.9 211.338 1408.9 Q215.343 1408.9 217.681 1406.79 Q220.019 1404.69 220.019 1401.07 Q220.019 1397.46 217.681 1395.36 Q215.343 1393.25 211.338 1393.25 Q209.463 1393.25 207.589 1393.67 Q205.737 1394.08 203.792 1394.96 L203.792 1377.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M94.7419 1102.86 Q91.1308 1102.86 89.3021 1106.42 Q87.4966 1109.97 87.4966 1117.09 Q87.4966 1124.2 89.3021 1127.77 Q91.1308 1131.31 94.7419 1131.31 Q98.3761 1131.31 100.182 1127.77 Q102.01 1124.2 102.01 1117.09 Q102.01 1109.97 100.182 1106.42 Q98.3761 1102.86 94.7419 1102.86 M94.7419 1099.16 Q100.552 1099.16 103.608 1103.76 Q106.686 1108.35 106.686 1117.09 Q106.686 1125.82 103.608 1130.43 Q100.552 1135.01 94.7419 1135.01 Q88.9317 1135.01 85.8531 1130.43 Q82.7975 1125.82 82.7975 1117.09 Q82.7975 1108.35 85.8531 1103.76 Q88.9317 1099.16 94.7419 1099.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M111.756 1128.46 L116.64 1128.46 L116.64 1134.34 L111.756 1134.34 L111.756 1128.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M131.709 1102.86 Q128.098 1102.86 126.27 1106.42 Q124.464 1109.97 124.464 1117.09 Q124.464 1124.2 126.27 1127.77 Q128.098 1131.31 131.709 1131.31 Q135.344 1131.31 137.149 1127.77 Q138.978 1124.2 138.978 1117.09 Q138.978 1109.97 137.149 1106.42 Q135.344 1102.86 131.709 1102.86 M131.709 1099.16 Q137.519 1099.16 140.575 1103.76 Q143.654 1108.35 143.654 1117.09 Q143.654 1125.82 140.575 1130.43 Q137.519 1135.01 131.709 1135.01 Q125.899 1135.01 122.82 1130.43 Q119.765 1125.82 119.765 1117.09 Q119.765 1108.35 122.82 1103.76 Q125.899 1099.16 131.709 1099.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M158.723 1102.86 Q155.112 1102.86 153.283 1106.42 Q151.478 1109.97 151.478 1117.09 Q151.478 1124.2 153.283 1127.77 Q155.112 1131.31 158.723 1131.31 Q162.357 1131.31 164.163 1127.77 Q165.992 1124.2 165.992 1117.09 Q165.992 1109.97 164.163 1106.42 Q162.357 1102.86 158.723 1102.86 M158.723 1099.16 Q164.533 1099.16 167.589 1103.76 Q170.667 1108.35 170.667 1117.09 Q170.667 1125.82 167.589 1130.43 Q164.533 1135.01 158.723 1135.01 Q152.913 1135.01 149.834 1130.43 Q146.779 1125.82 146.779 1117.09 Q146.779 1108.35 149.834 1103.76 Q152.913 1099.16 158.723 1099.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M185.737 1102.86 Q182.126 1102.86 180.297 1106.42 Q178.491 1109.97 178.491 1117.09 Q178.491 1124.2 180.297 1127.77 Q182.126 1131.31 185.737 1131.31 Q189.371 1131.31 191.177 1127.77 Q193.005 1124.2 193.005 1117.09 Q193.005 1109.97 191.177 1106.42 Q189.371 1102.86 185.737 1102.86 M185.737 1099.16 Q191.547 1099.16 194.602 1103.76 Q197.681 1108.35 197.681 1117.09 Q197.681 1125.82 194.602 1130.43 Q191.547 1135.01 185.737 1135.01 Q179.927 1135.01 176.848 1130.43 Q173.792 1125.82 173.792 1117.09 Q173.792 1108.35 176.848 1103.76 Q179.927 1099.16 185.737 1099.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M212.751 1102.86 Q209.139 1102.86 207.311 1106.42 Q205.505 1109.97 205.505 1117.09 Q205.505 1124.2 207.311 1127.77 Q209.139 1131.31 212.751 1131.31 Q216.385 1131.31 218.19 1127.77 Q220.019 1124.2 220.019 1117.09 Q220.019 1109.97 218.19 1106.42 Q216.385 1102.86 212.751 1102.86 M212.751 1099.16 Q218.561 1099.16 221.616 1103.76 Q224.695 1108.35 224.695 1117.09 Q224.695 1125.82 221.616 1130.43 Q218.561 1135.01 212.751 1135.01 Q206.94 1135.01 203.862 1130.43 Q200.806 1125.82 200.806 1117.09 Q200.806 1108.35 203.862 1103.76 Q206.94 1099.16 212.751 1099.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M95.7373 825.037 Q92.1262 825.037 90.2975 828.602 Q88.4919 832.144 88.4919 839.273 Q88.4919 846.38 90.2975 849.944 Q92.1262 853.486 95.7373 853.486 Q99.3715 853.486 101.177 849.944 Q103.006 846.38 103.006 839.273 Q103.006 832.144 101.177 828.602 Q99.3715 825.037 95.7373 825.037 M95.7373 821.333 Q101.547 821.333 104.603 825.94 Q107.682 830.523 107.682 839.273 Q107.682 848 104.603 852.606 Q101.547 857.19 95.7373 857.19 Q89.9271 857.19 86.8484 852.606 Q83.7929 848 83.7929 839.273 Q83.7929 830.523 86.8484 825.94 Q89.9271 821.333 95.7373 821.333 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M112.751 850.639 L117.635 850.639 L117.635 856.518 L112.751 856.518 L112.751 850.639 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M132.705 825.037 Q129.094 825.037 127.265 828.602 Q125.459 832.144 125.459 839.273 Q125.459 846.38 127.265 849.944 Q129.094 853.486 132.705 853.486 Q136.339 853.486 138.144 849.944 Q139.973 846.38 139.973 839.273 Q139.973 832.144 138.144 828.602 Q136.339 825.037 132.705 825.037 M132.705 821.333 Q138.515 821.333 141.57 825.94 Q144.649 830.523 144.649 839.273 Q144.649 848 141.57 852.606 Q138.515 857.19 132.705 857.19 Q126.894 857.19 123.816 852.606 Q120.76 848 120.76 839.273 Q120.76 830.523 123.816 825.94 Q126.894 821.333 132.705 821.333 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M159.718 825.037 Q156.107 825.037 154.279 828.602 Q152.473 832.144 152.473 839.273 Q152.473 846.38 154.279 849.944 Q156.107 853.486 159.718 853.486 Q163.353 853.486 165.158 849.944 Q166.987 846.38 166.987 839.273 Q166.987 832.144 165.158 828.602 Q163.353 825.037 159.718 825.037 M159.718 821.333 Q165.529 821.333 168.584 825.94 Q171.663 830.523 171.663 839.273 Q171.663 848 168.584 852.606 Q165.529 857.19 159.718 857.19 Q153.908 857.19 150.83 852.606 Q147.774 848 147.774 839.273 Q147.774 830.523 150.83 825.94 Q153.908 821.333 159.718 821.333 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M186.732 825.037 Q183.121 825.037 181.292 828.602 Q179.487 832.144 179.487 839.273 Q179.487 846.38 181.292 849.944 Q183.121 853.486 186.732 853.486 Q190.366 853.486 192.172 849.944 Q194.001 846.38 194.001 839.273 Q194.001 832.144 192.172 828.602 Q190.366 825.037 186.732 825.037 M186.732 821.333 Q192.542 821.333 195.598 825.94 Q198.677 830.523 198.677 839.273 Q198.677 848 195.598 852.606 Q192.542 857.19 186.732 857.19 Q180.922 857.19 177.843 852.606 Q174.788 848 174.788 839.273 Q174.788 830.523 177.843 825.94 Q180.922 821.333 186.732 821.333 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M203.792 821.958 L222.149 821.958 L222.149 825.894 L208.075 825.894 L208.075 834.366 Q209.093 834.019 210.112 833.857 Q211.13 833.671 212.149 833.671 Q217.936 833.671 221.315 836.843 Q224.695 840.014 224.695 845.431 Q224.695 851.009 221.223 854.111 Q217.75 857.19 211.431 857.19 Q209.255 857.19 206.987 856.819 Q204.741 856.449 202.334 855.708 L202.334 851.009 Q204.417 852.143 206.639 852.699 Q208.862 853.255 211.338 853.255 Q215.343 853.255 217.681 851.148 Q220.019 849.042 220.019 845.431 Q220.019 841.819 217.681 839.713 Q215.343 837.606 211.338 837.606 Q209.463 837.606 207.589 838.023 Q205.737 838.44 203.792 839.319 L203.792 821.958 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M95.9687 547.215 Q92.3576 547.215 90.529 550.78 Q88.7234 554.322 88.7234 561.451 Q88.7234 568.558 90.529 572.123 Q92.3576 575.664 95.9687 575.664 Q99.603 575.664 101.409 572.123 Q103.237 568.558 103.237 561.451 Q103.237 554.322 101.409 550.78 Q99.603 547.215 95.9687 547.215 M95.9687 543.512 Q101.779 543.512 104.834 548.118 Q107.913 552.701 107.913 561.451 Q107.913 570.178 104.834 574.785 Q101.779 579.368 95.9687 579.368 Q90.1586 579.368 87.0799 574.785 Q84.0244 570.178 84.0244 561.451 Q84.0244 552.701 87.0799 548.118 Q90.1586 543.512 95.9687 543.512 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M112.983 572.817 L117.867 572.817 L117.867 578.697 L112.983 578.697 L112.983 572.817 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M132.936 547.215 Q129.325 547.215 127.496 550.78 Q125.691 554.322 125.691 561.451 Q125.691 568.558 127.496 572.123 Q129.325 575.664 132.936 575.664 Q136.57 575.664 138.376 572.123 Q140.205 568.558 140.205 561.451 Q140.205 554.322 138.376 550.78 Q136.57 547.215 132.936 547.215 M132.936 543.512 Q138.746 543.512 141.802 548.118 Q144.881 552.701 144.881 561.451 Q144.881 570.178 141.802 574.785 Q138.746 579.368 132.936 579.368 Q127.126 579.368 124.047 574.785 Q120.992 570.178 120.992 561.451 Q120.992 552.701 124.047 548.118 Q127.126 543.512 132.936 543.512 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M159.95 547.215 Q156.339 547.215 154.51 550.78 Q152.705 554.322 152.705 561.451 Q152.705 568.558 154.51 572.123 Q156.339 575.664 159.95 575.664 Q163.584 575.664 165.39 572.123 Q167.218 568.558 167.218 561.451 Q167.218 554.322 165.39 550.78 Q163.584 547.215 159.95 547.215 M159.95 543.512 Q165.76 543.512 168.816 548.118 Q171.894 552.701 171.894 561.451 Q171.894 570.178 168.816 574.785 Q165.76 579.368 159.95 579.368 Q154.14 579.368 151.061 574.785 Q148.005 570.178 148.005 561.451 Q148.005 552.701 151.061 548.118 Q154.14 543.512 159.95 543.512 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M177.774 574.761 L185.413 574.761 L185.413 548.396 L177.103 550.062 L177.103 545.803 L185.366 544.137 L190.042 544.137 L190.042 574.761 L197.681 574.761 L197.681 578.697 L177.774 578.697 L177.774 574.761 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M212.751 547.215 Q209.139 547.215 207.311 550.78 Q205.505 554.322 205.505 561.451 Q205.505 568.558 207.311 572.123 Q209.139 575.664 212.751 575.664 Q216.385 575.664 218.19 572.123 Q220.019 568.558 220.019 561.451 Q220.019 554.322 218.19 550.78 Q216.385 547.215 212.751 547.215 M212.751 543.512 Q218.561 543.512 221.616 548.118 Q224.695 552.701 224.695 561.451 Q224.695 570.178 221.616 574.785 Q218.561 579.368 212.751 579.368 Q206.94 579.368 203.862 574.785 Q200.806 570.178 200.806 561.451 Q200.806 552.701 203.862 548.118 Q206.94 543.512 212.751 543.512 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M96.9641 269.393 Q93.353 269.393 91.5243 272.958 Q89.7188 276.5 89.7188 283.63 Q89.7188 290.736 91.5243 294.301 Q93.353 297.842 96.9641 297.842 Q100.598 297.842 102.404 294.301 Q104.233 290.736 104.233 283.63 Q104.233 276.5 102.404 272.958 Q100.598 269.393 96.9641 269.393 M96.9641 265.69 Q102.774 265.69 105.83 270.296 Q108.908 274.88 108.908 283.63 Q108.908 292.356 105.83 296.963 Q102.774 301.546 96.9641 301.546 Q91.1539 301.546 88.0753 296.963 Q85.0197 292.356 85.0197 283.63 Q85.0197 274.88 88.0753 270.296 Q91.1539 265.69 96.9641 265.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M113.978 294.995 L118.862 294.995 L118.862 300.875 L113.978 300.875 L113.978 294.995 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M133.931 269.393 Q130.32 269.393 128.492 272.958 Q126.686 276.5 126.686 283.63 Q126.686 290.736 128.492 294.301 Q130.32 297.842 133.931 297.842 Q137.566 297.842 139.371 294.301 Q141.2 290.736 141.2 283.63 Q141.2 276.5 139.371 272.958 Q137.566 269.393 133.931 269.393 M133.931 265.69 Q139.742 265.69 142.797 270.296 Q145.876 274.88 145.876 283.63 Q145.876 292.356 142.797 296.963 Q139.742 301.546 133.931 301.546 Q128.121 301.546 125.043 296.963 Q121.987 292.356 121.987 283.63 Q121.987 274.88 125.043 270.296 Q128.121 265.69 133.931 265.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M160.945 269.393 Q157.334 269.393 155.505 272.958 Q153.7 276.5 153.7 283.63 Q153.7 290.736 155.505 294.301 Q157.334 297.842 160.945 297.842 Q164.579 297.842 166.385 294.301 Q168.214 290.736 168.214 283.63 Q168.214 276.5 166.385 272.958 Q164.579 269.393 160.945 269.393 M160.945 265.69 Q166.755 265.69 169.811 270.296 Q172.89 274.88 172.89 283.63 Q172.89 292.356 169.811 296.963 Q166.755 301.546 160.945 301.546 Q155.135 301.546 152.056 296.963 Q149.001 292.356 149.001 283.63 Q149.001 274.88 152.056 270.296 Q155.135 265.69 160.945 265.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M178.769 296.94 L186.408 296.94 L186.408 270.574 L178.098 272.241 L178.098 267.981 L186.362 266.315 L191.038 266.315 L191.038 296.94 L198.677 296.94 L198.677 300.875 L178.769 300.875 L178.769 296.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M203.792 266.315 L222.149 266.315 L222.149 270.25 L208.075 270.25 L208.075 278.722 Q209.093 278.375 210.112 278.213 Q211.13 278.028 212.149 278.028 Q217.936 278.028 221.315 281.199 Q224.695 284.37 224.695 289.787 Q224.695 295.366 221.223 298.467 Q217.75 301.546 211.431 301.546 Q209.255 301.546 206.987 301.176 Q204.741 300.805 202.334 300.065 L202.334 295.366 Q204.417 296.5 206.639 297.055 Q208.862 297.611 211.338 297.611 Q215.343 297.611 217.681 295.504 Q220.019 293.398 220.019 289.787 Q220.019 286.176 217.681 284.069 Q215.343 281.963 211.338 281.963 Q209.463 281.963 207.589 282.38 Q205.737 282.796 203.792 283.676 L203.792 266.315 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M1308.87 76.7889 Q1305.71 84.8907 1302.72 87.3618 Q1299.72 89.8329 1294.69 89.8329 L1288.74 89.8329 L1288.74 83.5945 L1293.11 83.5945 Q1296.19 83.5945 1297.89 82.1361 Q1299.6 80.6778 1301.66 75.2496 L1303 71.8468 L1284.65 27.2059 L1292.55 27.2059 L1306.73 62.6918 L1320.9 27.2059 L1328.8 27.2059 L1308.87 76.7889 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip542)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 319.904,1117.06 340.043,1117.05 360.183,1116.45 380.322,1115.58 400.461,1114.6 420.6,1113.34 440.739,1112.05 460.879,1110.53 481.018,1108.69 501.157,1106.48 \n",
" 521.296,1103.91 541.435,1100.95 561.575,1097.54 581.714,1093.69 601.853,1089.44 621.992,1084.8 642.132,1079.75 662.271,1074.29 682.41,1068.4 702.549,1062.1 \n",
" 722.688,1055.43 742.828,1048.44 762.967,1041.1 783.106,1033.45 803.245,1025.51 823.384,1017.37 843.524,1008.98 863.663,1000.36 883.802,991.513 903.941,982.484 \n",
" 924.08,973.294 944.22,963.953 964.359,954.549 984.498,945.096 1004.64,935.583 1024.78,926.017 1044.92,916.405 1065.05,906.737 1085.19,897.055 1105.33,887.422 \n",
" 1125.47,877.873 1145.61,868.916 1165.75,859.632 1185.89,850.434 1206.03,841.051 1226.17,835.475 1246.31,873.061 1266.45,940.558 1286.59,999.426 1306.73,1044.68 \n",
" 1326.86,1079.16 1347,1105.63 1367.14,1126.23 1387.28,1142.38 1407.42,1172.88 1427.56,1251.32 1447.7,1252.19 1467.84,1233.14 1487.98,1218.54 1508.12,1209.15 \n",
" 1528.26,1203.04 1548.4,1199.11 1568.54,1196.6 1588.67,1195.03 1608.81,1194.09 1628.95,1193.57 1649.09,1193.31 1669.23,1193.24 1689.37,1193.26 1709.51,1193.42 \n",
" 1729.65,1193.63 1749.79,1193.87 1769.93,1194.17 1790.07,1094.87 1810.21,307.377 1830.34,162.047 1850.48,440.771 1870.62,714.3 1890.76,921.826 1910.9,1073.38 \n",
" 1931.04,1183.36 1951.18,1263.36 1971.32,1321.15 1991.46,1362.83 2011.6,1392.86 2031.74,1413.99 2051.88,1428.41 2072.02,1437.95 2092.15,1443.84 2112.29,1446.91 \n",
" 2132.43,1447.87 2152.57,1447.26 2172.71,1445.48 2192.85,1442.82 2212.99,1439.52 2233.13,1435.74 2253.27,1431.63 2273.41,1427.26 2293.55,1422.74 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip580)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip580)\" d=\"\n",
"M174.862 1486.45 L2352.76 1486.45 L2352.76 123.472 L174.862 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <rect x=\"174\" y=\"123\" width=\"2179\" height=\"1364\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 215.535,1486.45 215.535,123.472 \n",
"<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 739.672,1486.45 739.672,123.472 \n",
"<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1263.81,1486.45 1263.81,123.472 \n",
"<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1787.95,1486.45 1787.95,123.472 \n",
"<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2312.08,1486.45 2312.08,123.472 \n",
"<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 215.535,1486.45 215.535,1470.09 \n",
"<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 739.672,1486.45 739.672,1470.09 \n",
"<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1263.81,1486.45 1263.81,1470.09 \n",
"<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1787.95,1486.45 1787.95,1470.09 \n",
"<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2312.08,1486.45 2312.08,1470.09 \n",
"<path clip-path=\"url(#clip580)\" d=\"M 0 0 M215.535 1515.64 Q211.924 1515.64 210.095 1519.2 Q208.29 1522.75 208.29 1529.87 Q208.29 1536.98 210.095 1540.55 Q211.924 1544.09 215.535 1544.09 Q219.169 1544.09 220.975 1540.55 Q222.804 1536.98 222.804 1529.87 Q222.804 1522.75 220.975 1519.2 Q219.169 1515.64 215.535 1515.64 M215.535 1511.93 Q221.345 1511.93 224.401 1516.54 Q227.479 1521.12 227.479 1529.87 Q227.479 1538.6 224.401 1543.21 Q221.345 1547.79 215.535 1547.79 Q209.725 1547.79 206.646 1543.21 Q203.591 1538.6 203.591 1529.87 Q203.591 1521.12 206.646 1516.54 Q209.725 1511.93 215.535 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M721.316 1543.18 L737.635 1543.18 L737.635 1547.12 L715.691 1547.12 L715.691 1543.18 Q718.353 1540.43 722.936 1535.8 Q727.542 1531.15 728.723 1529.81 Q730.968 1527.28 731.848 1525.55 Q732.751 1523.79 732.751 1522.1 Q732.751 1519.34 730.806 1517.61 Q728.885 1515.87 725.783 1515.87 Q723.584 1515.87 721.13 1516.63 Q718.7 1517.4 715.922 1518.95 L715.922 1514.23 Q718.746 1513.09 721.2 1512.51 Q723.654 1511.93 725.691 1511.93 Q731.061 1511.93 734.255 1514.62 Q737.45 1517.31 737.45 1521.8 Q737.45 1523.93 736.64 1525.85 Q735.853 1527.74 733.746 1530.34 Q733.167 1531.01 730.066 1534.23 Q726.964 1537.42 721.316 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M742.751 1512.56 L761.107 1512.56 L761.107 1516.5 L747.033 1516.5 L747.033 1524.97 Q748.052 1524.62 749.07 1524.46 Q750.089 1524.27 751.107 1524.27 Q756.894 1524.27 760.274 1527.44 Q763.653 1530.62 763.653 1536.03 Q763.653 1541.61 760.181 1544.71 Q756.709 1547.79 750.39 1547.79 Q748.214 1547.79 745.945 1547.42 Q743.7 1547.05 741.292 1546.31 L741.292 1541.61 Q743.376 1542.74 745.598 1543.3 Q747.82 1543.86 750.297 1543.86 Q754.302 1543.86 756.64 1541.75 Q758.977 1539.64 758.977 1536.03 Q758.977 1532.42 756.64 1530.31 Q754.302 1528.21 750.297 1528.21 Q748.422 1528.21 746.547 1528.62 Q744.695 1529.04 742.751 1529.92 L742.751 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M1240.58 1512.56 L1258.94 1512.56 L1258.94 1516.5 L1244.86 1516.5 L1244.86 1524.97 Q1245.88 1524.62 1246.9 1524.46 Q1247.92 1524.27 1248.94 1524.27 Q1254.72 1524.27 1258.1 1527.44 Q1261.48 1530.62 1261.48 1536.03 Q1261.48 1541.61 1258.01 1544.71 Q1254.54 1547.79 1248.22 1547.79 Q1246.04 1547.79 1243.77 1547.42 Q1241.53 1547.05 1239.12 1546.31 L1239.12 1541.61 Q1241.2 1542.74 1243.43 1543.3 Q1245.65 1543.86 1248.13 1543.86 Q1252.13 1543.86 1254.47 1541.75 Q1256.81 1539.64 1256.81 1536.03 Q1256.81 1532.42 1254.47 1530.31 Q1252.13 1528.21 1248.13 1528.21 Q1246.25 1528.21 1244.38 1528.62 Q1242.52 1529.04 1240.58 1529.92 L1240.58 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M1276.55 1515.64 Q1272.94 1515.64 1271.11 1519.2 Q1269.31 1522.75 1269.31 1529.87 Q1269.31 1536.98 1271.11 1540.55 Q1272.94 1544.09 1276.55 1544.09 Q1280.19 1544.09 1281.99 1540.55 Q1283.82 1536.98 1283.82 1529.87 Q1283.82 1522.75 1281.99 1519.2 Q1280.19 1515.64 1276.55 1515.64 M1276.55 1511.93 Q1282.36 1511.93 1285.42 1516.54 Q1288.5 1521.12 1288.5 1529.87 Q1288.5 1538.6 1285.42 1543.21 Q1282.36 1547.79 1276.55 1547.79 Q1270.74 1547.79 1267.66 1543.21 Q1264.61 1538.6 1264.61 1529.87 Q1264.61 1521.12 1267.66 1516.54 Q1270.74 1511.93 1276.55 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M1763.83 1512.56 L1786.05 1512.56 L1786.05 1514.55 L1773.5 1547.12 L1768.62 1547.12 L1780.42 1516.5 L1763.83 1516.5 L1763.83 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M1791.16 1512.56 L1809.52 1512.56 L1809.52 1516.5 L1795.45 1516.5 L1795.45 1524.97 Q1796.46 1524.62 1797.48 1524.46 Q1798.5 1524.27 1799.52 1524.27 Q1805.31 1524.27 1808.69 1527.44 Q1812.07 1530.62 1812.07 1536.03 Q1812.07 1541.61 1808.59 1544.71 Q1805.12 1547.79 1798.8 1547.79 Q1796.63 1547.79 1794.36 1547.42 Q1792.11 1547.05 1789.71 1546.31 L1789.71 1541.61 Q1791.79 1542.74 1794.01 1543.3 Q1796.23 1543.86 1798.71 1543.86 Q1802.71 1543.86 1805.05 1541.75 Q1807.39 1539.64 1807.39 1536.03 Q1807.39 1532.42 1805.05 1530.31 Q1802.71 1528.21 1798.71 1528.21 Q1796.83 1528.21 1794.96 1528.62 Q1793.11 1529.04 1791.16 1529.92 L1791.16 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M2275.45 1543.18 L2283.09 1543.18 L2283.09 1516.82 L2274.78 1518.49 L2274.78 1514.23 L2283.04 1512.56 L2287.72 1512.56 L2287.72 1543.18 L2295.36 1543.18 L2295.36 1547.12 L2275.45 1547.12 L2275.45 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M2310.43 1515.64 Q2306.82 1515.64 2304.99 1519.2 Q2303.18 1522.75 2303.18 1529.87 Q2303.18 1536.98 2304.99 1540.55 Q2306.82 1544.09 2310.43 1544.09 Q2314.06 1544.09 2315.87 1540.55 Q2317.7 1536.98 2317.7 1529.87 Q2317.7 1522.75 2315.87 1519.2 Q2314.06 1515.64 2310.43 1515.64 M2310.43 1511.93 Q2316.24 1511.93 2319.29 1516.54 Q2322.37 1521.12 2322.37 1529.87 Q2322.37 1538.6 2319.29 1543.21 Q2316.24 1547.79 2310.43 1547.79 Q2304.62 1547.79 2301.54 1543.21 Q2298.48 1538.6 2298.48 1529.87 Q2298.48 1521.12 2301.54 1516.54 Q2304.62 1511.93 2310.43 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M2337.44 1515.64 Q2333.83 1515.64 2332 1519.2 Q2330.2 1522.75 2330.2 1529.87 Q2330.2 1536.98 2332 1540.55 Q2333.83 1544.09 2337.44 1544.09 Q2341.08 1544.09 2342.88 1540.55 Q2344.71 1536.98 2344.71 1529.87 Q2344.71 1522.75 2342.88 1519.2 Q2341.08 1515.64 2337.44 1515.64 M2337.44 1511.93 Q2343.25 1511.93 2346.31 1516.54 Q2349.39 1521.12 2349.39 1529.87 Q2349.39 1538.6 2346.31 1543.21 Q2343.25 1547.79 2337.44 1547.79 Q2331.63 1547.79 2328.55 1543.21 Q2325.5 1538.6 2325.5 1529.87 Q2325.5 1521.12 2328.55 1516.54 Q2331.63 1511.93 2337.44 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,1447.87 2352.76,1447.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,1126.42 2352.76,1126.42 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,804.96 2352.76,804.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,483.503 2352.76,483.503 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,162.047 2352.76,162.047 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1486.45 174.862,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1447.87 200.997,1447.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1126.42 200.997,1126.42 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,804.96 200.997,804.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,483.503 200.997,483.503 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,162.047 200.997,162.047 \n",
" \"/>\n",
"<path clip-path=\"url(#clip580)\" d=\"M 0 0 M62.9365 1433.67 Q59.3254 1433.67 57.4967 1437.24 Q55.6912 1440.78 55.6912 1447.91 Q55.6912 1455.01 57.4967 1458.58 Q59.3254 1462.12 62.9365 1462.12 Q66.5707 1462.12 68.3763 1458.58 Q70.205 1455.01 70.205 1447.91 Q70.205 1440.78 68.3763 1437.24 Q66.5707 1433.67 62.9365 1433.67 M62.9365 1429.97 Q68.7467 1429.97 71.8022 1434.57 Q74.8809 1439.16 74.8809 1447.91 Q74.8809 1456.63 71.8022 1461.24 Q68.7467 1465.82 62.9365 1465.82 Q57.1264 1465.82 54.0477 1461.24 Q50.9921 1456.63 50.9921 1447.91 Q50.9921 1439.16 54.0477 1434.57 Q57.1264 1429.97 62.9365 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M79.9503 1459.27 L84.8345 1459.27 L84.8345 1465.15 L79.9503 1465.15 L79.9503 1459.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M99.9039 1433.67 Q96.2928 1433.67 94.4641 1437.24 Q92.6586 1440.78 92.6586 1447.91 Q92.6586 1455.01 94.4641 1458.58 Q96.2928 1462.12 99.9039 1462.12 Q103.538 1462.12 105.344 1458.58 Q107.172 1455.01 107.172 1447.91 Q107.172 1440.78 105.344 1437.24 Q103.538 1433.67 99.9039 1433.67 M99.9039 1429.97 Q105.714 1429.97 108.77 1434.57 Q111.848 1439.16 111.848 1447.91 Q111.848 1456.63 108.77 1461.24 Q105.714 1465.82 99.9039 1465.82 Q94.0937 1465.82 91.0151 1461.24 Q87.9595 1456.63 87.9595 1447.91 Q87.9595 1439.16 91.0151 1434.57 Q94.0937 1429.97 99.9039 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M126.918 1433.67 Q123.307 1433.67 121.478 1437.24 Q119.672 1440.78 119.672 1447.91 Q119.672 1455.01 121.478 1458.58 Q123.307 1462.12 126.918 1462.12 Q130.552 1462.12 132.357 1458.58 Q134.186 1455.01 134.186 1447.91 Q134.186 1440.78 132.357 1437.24 Q130.552 1433.67 126.918 1433.67 M126.918 1429.97 Q132.728 1429.97 135.783 1434.57 Q138.862 1439.16 138.862 1447.91 Q138.862 1456.63 135.783 1461.24 Q132.728 1465.82 126.918 1465.82 Q121.107 1465.82 118.029 1461.24 Q114.973 1456.63 114.973 1447.91 Q114.973 1439.16 118.029 1434.57 Q121.107 1429.97 126.918 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M65.5291 1112.22 Q61.918 1112.22 60.0893 1115.78 Q58.2838 1119.32 58.2838 1126.45 Q58.2838 1133.56 60.0893 1137.12 Q61.918 1140.66 65.5291 1140.66 Q69.1633 1140.66 70.9689 1137.12 Q72.7976 1133.56 72.7976 1126.45 Q72.7976 1119.32 70.9689 1115.78 Q69.1633 1112.22 65.5291 1112.22 M65.5291 1108.51 Q71.3392 1108.51 74.3948 1113.12 Q77.4735 1117.7 77.4735 1126.45 Q77.4735 1135.18 74.3948 1139.78 Q71.3392 1144.37 65.5291 1144.37 Q59.7189 1144.37 56.6402 1139.78 Q53.5847 1135.18 53.5847 1126.45 Q53.5847 1117.7 56.6402 1113.12 Q59.7189 1108.51 65.5291 1108.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M82.5429 1137.82 L87.4271 1137.82 L87.4271 1143.7 L82.5429 1143.7 L82.5429 1137.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M96.5243 1139.76 L112.844 1139.76 L112.844 1143.7 L90.8993 1143.7 L90.8993 1139.76 Q93.5613 1137.01 98.1447 1132.38 Q102.751 1127.72 103.932 1126.38 Q106.177 1123.86 107.057 1122.12 Q107.959 1120.36 107.959 1118.67 Q107.959 1115.92 106.015 1114.18 Q104.094 1112.45 100.992 1112.45 Q98.7928 1112.45 96.3391 1113.21 Q93.9086 1113.97 91.1308 1115.53 L91.1308 1110.8 Q93.9549 1109.67 96.4085 1109.09 Q98.8622 1108.51 100.899 1108.51 Q106.27 1108.51 109.464 1111.2 Q112.658 1113.88 112.658 1118.37 Q112.658 1120.5 111.848 1122.42 Q111.061 1124.32 108.955 1126.91 Q108.376 1127.59 105.274 1130.8 Q102.172 1134 96.5243 1139.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M117.959 1109.14 L136.316 1109.14 L136.316 1113.07 L122.242 1113.07 L122.242 1121.54 Q123.26 1121.2 124.279 1121.03 Q125.297 1120.85 126.316 1120.85 Q132.103 1120.85 135.482 1124.02 Q138.862 1127.19 138.862 1132.61 Q138.862 1138.19 135.39 1141.29 Q131.918 1144.37 125.598 1144.37 Q123.422 1144.37 121.154 1144 Q118.908 1143.63 116.501 1142.89 L116.501 1138.19 Q118.584 1139.32 120.807 1139.88 Q123.029 1140.43 125.506 1140.43 Q129.51 1140.43 131.848 1138.33 Q134.186 1136.22 134.186 1132.61 Q134.186 1129 131.848 1126.89 Q129.51 1124.78 125.506 1124.78 Q123.631 1124.78 121.756 1125.2 Q119.904 1125.62 117.959 1126.5 L117.959 1109.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M63.9319 790.759 Q60.3208 790.759 58.4921 794.323 Q56.6865 797.865 56.6865 804.995 Q56.6865 812.101 58.4921 815.666 Q60.3208 819.208 63.9319 819.208 Q67.5661 819.208 69.3717 815.666 Q71.2004 812.101 71.2004 804.995 Q71.2004 797.865 69.3717 794.323 Q67.5661 790.759 63.9319 790.759 M63.9319 787.055 Q69.742 787.055 72.7976 791.661 Q75.8763 796.245 75.8763 804.995 Q75.8763 813.722 72.7976 818.328 Q69.742 822.911 63.9319 822.911 Q58.1217 822.911 55.043 818.328 Q51.9875 813.722 51.9875 804.995 Q51.9875 796.245 55.043 791.661 Q58.1217 787.055 63.9319 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M80.9457 816.36 L85.8299 816.36 L85.8299 822.24 L80.9457 822.24 L80.9457 816.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M90.9456 787.68 L109.302 787.68 L109.302 791.615 L95.228 791.615 L95.228 800.087 Q96.2465 799.74 97.265 799.578 Q98.2835 799.393 99.3021 799.393 Q105.089 799.393 108.469 802.564 Q111.848 805.735 111.848 811.152 Q111.848 816.731 108.376 819.833 Q104.904 822.911 98.5845 822.911 Q96.4085 822.911 94.14 822.541 Q91.8947 822.171 89.4873 821.43 L89.4873 816.731 Q91.5706 817.865 93.7928 818.421 Q96.015 818.976 98.4919 818.976 Q102.496 818.976 104.834 816.87 Q107.172 814.763 107.172 811.152 Q107.172 807.541 104.834 805.435 Q102.496 803.328 98.4919 803.328 Q96.6169 803.328 94.7419 803.745 Q92.89 804.161 90.9456 805.041 L90.9456 787.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M126.918 790.759 Q123.307 790.759 121.478 794.323 Q119.672 797.865 119.672 804.995 Q119.672 812.101 121.478 815.666 Q123.307 819.208 126.918 819.208 Q130.552 819.208 132.357 815.666 Q134.186 812.101 134.186 804.995 Q134.186 797.865 132.357 794.323 Q130.552 790.759 126.918 790.759 M126.918 787.055 Q132.728 787.055 135.783 791.661 Q138.862 796.245 138.862 804.995 Q138.862 813.722 135.783 818.328 Q132.728 822.911 126.918 822.911 Q121.107 822.911 118.029 818.328 Q114.973 813.722 114.973 804.995 Q114.973 796.245 118.029 791.661 Q121.107 787.055 126.918 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M64.8346 469.302 Q61.2236 469.302 59.3949 472.867 Q57.5893 476.409 57.5893 483.538 Q57.5893 490.645 59.3949 494.209 Q61.2236 497.751 64.8346 497.751 Q68.4689 497.751 70.2744 494.209 Q72.1031 490.645 72.1031 483.538 Q72.1031 476.409 70.2744 472.867 Q68.4689 469.302 64.8346 469.302 M64.8346 465.598 Q70.6448 465.598 73.7003 470.205 Q76.779 474.788 76.779 483.538 Q76.779 492.265 73.7003 496.871 Q70.6448 501.455 64.8346 501.455 Q59.0245 501.455 55.9458 496.871 Q52.8903 492.265 52.8903 483.538 Q52.8903 474.788 55.9458 470.205 Q59.0245 465.598 64.8346 465.598 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M81.8484 494.904 L86.7327 494.904 L86.7327 500.783 L81.8484 500.783 L81.8484 494.904 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M90.6215 466.223 L112.844 466.223 L112.844 468.214 L100.297 500.783 L95.4132 500.783 L107.219 470.159 L90.6215 470.159 L90.6215 466.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M117.959 466.223 L136.316 466.223 L136.316 470.159 L122.242 470.159 L122.242 478.631 Q123.26 478.284 124.279 478.122 Q125.297 477.936 126.316 477.936 Q132.103 477.936 135.482 481.108 Q138.862 484.279 138.862 489.696 Q138.862 495.274 135.39 498.376 Q131.918 501.455 125.598 501.455 Q123.422 501.455 121.154 501.084 Q118.908 500.714 116.501 499.973 L116.501 495.274 Q118.584 496.408 120.807 496.964 Q123.029 497.52 125.506 497.52 Q129.51 497.52 131.848 495.413 Q134.186 493.307 134.186 489.696 Q134.186 486.084 131.848 483.978 Q129.51 481.872 125.506 481.872 Q123.631 481.872 121.756 482.288 Q119.904 482.705 117.959 483.584 L117.959 466.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M54.9736 175.392 L62.6124 175.392 L62.6124 149.026 L54.3023 150.693 L54.3023 146.434 L62.5661 144.767 L67.242 144.767 L67.242 175.392 L74.8809 175.392 L74.8809 179.327 L54.9736 179.327 L54.9736 175.392 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M79.9503 173.447 L84.8345 173.447 L84.8345 179.327 L79.9503 179.327 L79.9503 173.447 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M99.9039 147.846 Q96.2928 147.846 94.4641 151.41 Q92.6586 154.952 92.6586 162.082 Q92.6586 169.188 94.4641 172.753 Q96.2928 176.295 99.9039 176.295 Q103.538 176.295 105.344 172.753 Q107.172 169.188 107.172 162.082 Q107.172 154.952 105.344 151.41 Q103.538 147.846 99.9039 147.846 M99.9039 144.142 Q105.714 144.142 108.77 148.748 Q111.848 153.332 111.848 162.082 Q111.848 170.808 108.77 175.415 Q105.714 179.998 99.9039 179.998 Q94.0937 179.998 91.0151 175.415 Q87.9595 170.808 87.9595 162.082 Q87.9595 153.332 91.0151 148.748 Q94.0937 144.142 99.9039 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M126.918 147.846 Q123.307 147.846 121.478 151.41 Q119.672 154.952 119.672 162.082 Q119.672 169.188 121.478 172.753 Q123.307 176.295 126.918 176.295 Q130.552 176.295 132.357 172.753 Q134.186 169.188 134.186 162.082 Q134.186 154.952 132.357 151.41 Q130.552 147.846 126.918 147.846 M126.918 144.142 Q132.728 144.142 135.783 148.748 Q138.862 153.332 138.862 162.082 Q138.862 170.808 135.783 175.415 Q132.728 179.998 126.918 179.998 Q121.107 179.998 118.029 175.415 Q114.973 170.808 114.973 162.082 Q114.973 153.332 118.029 148.748 Q121.107 144.142 126.918 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M1246.61 27.2059 L1282.02 27.2059 L1282.02 34.0114 L1253.99 66.6212 L1282.02 66.6212 L1282.02 72.576 L1245.6 72.576 L1245.6 65.7705 L1273.63 33.1607 L1246.61 33.1607 L1246.61 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip582)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 236.501,1447.87 257.466,1447.87 278.431,1447.87 299.397,1447.87 320.362,1447.87 341.328,1447.87 362.293,1447.87 383.259,1447.87 404.224,1447.87 425.19,1447.87 \n",
" 446.155,1447.87 467.121,1447.87 488.086,1447.87 509.052,1447.87 530.017,1447.87 550.983,1447.87 571.948,1447.87 592.914,1447.87 613.879,1447.87 634.845,1447.87 \n",
" 655.81,1447.87 676.776,1447.87 697.741,1447.87 718.707,1447.87 739.672,1447.87 760.637,1447.87 781.603,1447.87 802.568,1447.87 823.534,1447.87 844.499,1447.87 \n",
" 865.465,1447.87 886.43,1447.87 907.396,1447.87 928.361,1447.87 949.327,1447.87 970.292,1447.87 991.258,1447.87 1012.22,1447.87 1033.19,1447.87 1054.15,1447.87 \n",
" 1075.12,1447.87 1096.09,1447.87 1117.05,1447.87 1138.02,1447.87 1158.98,1447.87 1179.95,1447.87 1200.91,1447.87 1221.88,1447.87 1242.84,1447.87 1263.81,1447.87 \n",
" 1284.77,1447.87 1305.74,1447.87 1326.71,1447.87 1347.67,1447.87 1368.64,1447.87 1389.6,1447.87 1410.57,1447.87 1431.53,1447.87 1452.5,1447.87 1473.46,1447.87 \n",
" 1494.43,1447.87 1515.39,1447.87 1536.36,1447.87 1557.33,1447.87 1578.29,1447.87 1599.26,1447.87 1620.22,1447.87 1641.19,1447.87 1662.15,1447.87 1683.12,1447.87 \n",
" 1704.08,1447.87 1725.05,1447.87 1746.01,1447.87 1766.98,1447.87 1787.95,1447.87 1808.91,1447.87 1829.88,1447.87 1850.84,1447.87 1871.81,1447.87 1892.77,1447.87 \n",
" 1913.74,1447.87 1934.7,1447.87 1955.67,1447.87 1976.64,1447.87 1997.6,1447.87 2018.57,1447.87 2039.53,1447.87 2060.5,1447.87 2081.46,1447.87 2102.43,1447.87 \n",
" 2123.39,1447.87 2144.36,1447.87 2165.32,1447.87 2186.29,1447.87 2207.26,1447.87 2228.22,1447.87 2249.19,1447.87 2270.15,1447.87 2291.12,1447.87 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plotDisplacementTroughTimeSteps(name,30)"
]
},
{
"cell_type": "code",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip620)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
"<path clip-path=\"url(#clip620)\" d=\"\n",
"M216.251 1486.45 L2352.76 1486.45 L2352.76 123.472 L216.251 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip622\">\n",
" <rect x=\"216\" y=\"123\" width=\"2138\" height=\"1364\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip622)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 271.314,1486.45 271.314,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip622)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 811.682,1486.45 811.682,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip622)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1352.05,1486.45 1352.05,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip622)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1892.42,1486.45 1892.42,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 216.251,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 271.314,1486.45 271.314,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 811.682,1486.45 811.682,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1352.05,1486.45 1352.05,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1892.42,1486.45 1892.42,1470.09 \n",
" \"/>\n",
"<path clip-path=\"url(#clip620)\" d=\"M 0 0 M271.314 1515.64 Q267.703 1515.64 265.874 1519.2 Q264.069 1522.75 264.069 1529.87 Q264.069 1536.98 265.874 1540.55 Q267.703 1544.09 271.314 1544.09 Q274.948 1544.09 276.754 1540.55 Q278.583 1536.98 278.583 1529.87 Q278.583 1522.75 276.754 1519.2 Q274.948 1515.64 271.314 1515.64 M271.314 1511.93 Q277.124 1511.93 280.18 1516.54 Q283.259 1521.12 283.259 1529.87 Q283.259 1538.6 280.18 1543.21 Q277.124 1547.79 271.314 1547.79 Q265.504 1547.79 262.425 1543.21 Q259.37 1538.6 259.37 1529.87 Q259.37 1521.12 262.425 1516.54 Q265.504 1511.93 271.314 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M775.05 1543.18 L782.689 1543.18 L782.689 1516.82 L774.379 1518.49 L774.379 1514.23 L782.642 1512.56 L787.318 1512.56 L787.318 1543.18 L794.957 1543.18 L794.957 1547.12 L775.05 1547.12 L775.05 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M810.027 1515.64 Q806.416 1515.64 804.587 1519.2 Q802.781 1522.75 802.781 1529.87 Q802.781 1536.98 804.587 1540.55 Q806.416 1544.09 810.027 1544.09 Q813.661 1544.09 815.466 1540.55 Q817.295 1536.98 817.295 1529.87 Q817.295 1522.75 815.466 1519.2 Q813.661 1515.64 810.027 1515.64 M810.027 1511.93 Q815.837 1511.93 818.892 1516.54 Q821.971 1521.12 821.971 1529.87 Q821.971 1538.6 818.892 1543.21 Q815.837 1547.79 810.027 1547.79 Q804.216 1547.79 801.138 1543.21 Q798.082 1538.6 798.082 1529.87 Q798.082 1521.12 801.138 1516.54 Q804.216 1511.93 810.027 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M837.04 1515.64 Q833.429 1515.64 831.601 1519.2 Q829.795 1522.75 829.795 1529.87 Q829.795 1536.98 831.601 1540.55 Q833.429 1544.09 837.04 1544.09 Q840.675 1544.09 842.48 1540.55 Q844.309 1536.98 844.309 1529.87 Q844.309 1522.75 842.48 1519.2 Q840.675 1515.64 837.04 1515.64 M837.04 1511.93 Q842.851 1511.93 845.906 1516.54 Q848.985 1521.12 848.985 1529.87 Q848.985 1538.6 845.906 1543.21 Q842.851 1547.79 837.04 1547.79 Q831.23 1547.79 828.152 1543.21 Q825.096 1538.6 825.096 1529.87 Q825.096 1521.12 828.152 1516.54 Q831.23 1511.93 837.04 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1319.69 1543.18 L1336.01 1543.18 L1336.01 1547.12 L1314.06 1547.12 L1314.06 1543.18 Q1316.73 1540.43 1321.31 1535.8 Q1325.92 1531.15 1327.1 1529.81 Q1329.34 1527.28 1330.22 1525.55 Q1331.12 1523.79 1331.12 1522.1 Q1331.12 1519.34 1329.18 1517.61 Q1327.26 1515.87 1324.16 1515.87 Q1321.96 1515.87 1319.5 1516.63 Q1317.07 1517.4 1314.29 1518.95 L1314.29 1514.23 Q1317.12 1513.09 1319.57 1512.51 Q1322.03 1511.93 1324.06 1511.93 Q1329.43 1511.93 1332.63 1514.62 Q1335.82 1517.31 1335.82 1521.8 Q1335.82 1523.93 1335.01 1525.85 Q1334.23 1527.74 1332.12 1530.34 Q1331.54 1531.01 1328.44 1534.23 Q1325.34 1537.42 1319.69 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1351.08 1515.64 Q1347.47 1515.64 1345.64 1519.2 Q1343.83 1522.75 1343.83 1529.87 Q1343.83 1536.98 1345.64 1540.55 Q1347.47 1544.09 1351.08 1544.09 Q1354.71 1544.09 1356.52 1540.55 Q1358.35 1536.98 1358.35 1529.87 Q1358.35 1522.75 1356.52 1519.2 Q1354.71 1515.64 1351.08 1515.64 M1351.08 1511.93 Q1356.89 1511.93 1359.94 1516.54 Q1363.02 1521.12 1363.02 1529.87 Q1363.02 1538.6 1359.94 1543.21 Q1356.89 1547.79 1351.08 1547.79 Q1345.27 1547.79 1342.19 1543.21 Q1339.13 1538.6 1339.13 1529.87 Q1339.13 1521.12 1342.19 1516.54 Q1345.27 1511.93 1351.08 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1378.09 1515.64 Q1374.48 1515.64 1372.65 1519.2 Q1370.85 1522.75 1370.85 1529.87 Q1370.85 1536.98 1372.65 1540.55 Q1374.48 1544.09 1378.09 1544.09 Q1381.73 1544.09 1383.53 1540.55 Q1385.36 1536.98 1385.36 1529.87 Q1385.36 1522.75 1383.53 1519.2 Q1381.73 1515.64 1378.09 1515.64 M1378.09 1511.93 Q1383.9 1511.93 1386.96 1516.54 Q1390.04 1521.12 1390.04 1529.87 Q1390.04 1538.6 1386.96 1543.21 Q1383.9 1547.79 1378.09 1547.79 Q1372.28 1547.79 1369.2 1543.21 Q1366.15 1538.6 1366.15 1529.87 Q1366.15 1521.12 1369.2 1516.54 Q1372.28 1511.93 1378.09 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1869.65 1528.49 Q1873.01 1529.2 1874.88 1531.47 Q1876.78 1533.74 1876.78 1537.07 Q1876.78 1542.19 1873.26 1544.99 Q1869.74 1547.79 1863.26 1547.79 Q1861.09 1547.79 1858.77 1547.35 Q1856.48 1546.93 1854.03 1546.08 L1854.03 1541.56 Q1855.97 1542.7 1858.29 1543.28 Q1860.6 1543.86 1863.12 1543.86 Q1867.52 1543.86 1869.81 1542.12 Q1872.13 1540.38 1872.13 1537.07 Q1872.13 1534.02 1869.97 1532.31 Q1867.85 1530.57 1864.03 1530.57 L1860 1530.57 L1860 1526.73 L1864.21 1526.73 Q1867.66 1526.73 1869.49 1525.36 Q1871.32 1523.97 1871.32 1521.38 Q1871.32 1518.72 1869.42 1517.31 Q1867.54 1515.87 1864.03 1515.87 Q1862.1 1515.87 1859.91 1516.29 Q1857.71 1516.7 1855.07 1517.58 L1855.07 1513.42 Q1857.73 1512.68 1860.04 1512.31 Q1862.38 1511.93 1864.44 1511.93 Q1869.77 1511.93 1872.87 1514.37 Q1875.97 1516.77 1875.97 1520.89 Q1875.97 1523.76 1874.33 1525.75 Q1872.68 1527.72 1869.65 1528.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1891.85 1515.64 Q1888.24 1515.64 1886.41 1519.2 Q1884.6 1522.75 1884.6 1529.87 Q1884.6 1536.98 1886.41 1540.55 Q1888.24 1544.09 1891.85 1544.09 Q1895.48 1544.09 1897.29 1540.55 Q1899.12 1536.98 1899.12 1529.87 Q1899.12 1522.75 1897.29 1519.2 Q1895.48 1515.64 1891.85 1515.64 M1891.85 1511.93 Q1897.66 1511.93 1900.72 1516.54 Q1903.79 1521.12 1903.79 1529.87 Q1903.79 1538.6 1900.72 1543.21 Q1897.66 1547.79 1891.85 1547.79 Q1886.04 1547.79 1882.96 1543.21 Q1879.91 1538.6 1879.91 1529.87 Q1879.91 1521.12 1882.96 1516.54 Q1886.04 1511.93 1891.85 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1918.86 1515.64 Q1915.25 1515.64 1913.42 1519.2 Q1911.62 1522.75 1911.62 1529.87 Q1911.62 1536.98 1913.42 1540.55 Q1915.25 1544.09 1918.86 1544.09 Q1922.5 1544.09 1924.3 1540.55 Q1926.13 1536.98 1926.13 1529.87 Q1926.13 1522.75 1924.3 1519.2 Q1922.5 1515.64 1918.86 1515.64 M1918.86 1511.93 Q1924.67 1511.93 1927.73 1516.54 Q1930.81 1521.12 1930.81 1529.87 Q1930.81 1538.6 1927.73 1543.21 Q1924.67 1547.79 1918.86 1547.79 Q1913.05 1547.79 1909.97 1543.21 Q1906.92 1538.6 1906.92 1529.87 Q1906.92 1521.12 1909.97 1516.54 Q1913.05 1511.93 1918.86 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip622)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 216.251,1446.8 2352.76,1446.8 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip622)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 216.251,1078.57 2352.76,1078.57 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip622)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 216.251,710.343 2352.76,710.343 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip622)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 216.251,342.112 2352.76,342.112 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 216.251,1486.45 216.251,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 216.251,1446.8 241.889,1446.8 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 216.251,1078.57 241.889,1078.57 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 216.251,710.343 241.889,710.343 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 216.251,342.112 241.889,342.112 \n",
" \"/>\n",
"<path clip-path=\"url(#clip620)\" d=\"M 0 0 M168.306 1432.6 Q164.695 1432.6 162.867 1436.17 Q161.061 1439.71 161.061 1446.84 Q161.061 1453.95 162.867 1457.51 Q164.695 1461.05 168.306 1461.05 Q171.941 1461.05 173.746 1457.51 Q175.575 1453.95 175.575 1446.84 Q175.575 1439.71 173.746 1436.17 Q171.941 1432.6 168.306 1432.6 M168.306 1428.9 Q174.116 1428.9 177.172 1433.51 Q180.251 1438.09 180.251 1446.84 Q180.251 1455.57 177.172 1460.17 Q174.116 1464.76 168.306 1464.76 Q162.496 1464.76 159.417 1460.17 Q156.362 1455.57 156.362 1446.84 Q156.362 1438.09 159.417 1433.51 Q162.496 1428.9 168.306 1428.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M53.8393 1098.37 L61.4782 1098.37 L61.4782 1072 L53.168 1073.67 L53.168 1069.41 L61.4319 1067.74 L66.1078 1067.74 L66.1078 1098.37 L73.7466 1098.37 L73.7466 1102.3 L53.8393 1102.3 L53.8393 1098.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M106.987 1076.84 L96.4085 1087.46 L106.987 1098.04 L104.233 1100.84 L93.6076 1090.22 L82.9827 1100.84 L80.2512 1098.04 L90.8067 1087.46 L80.2512 1076.84 L82.9827 1074.04 L93.6076 1084.66 L104.233 1074.04 L106.987 1076.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M112.867 1098.37 L120.506 1098.37 L120.506 1072 L112.196 1073.67 L112.196 1069.41 L120.459 1067.74 L125.135 1067.74 L125.135 1098.37 L132.774 1098.37 L132.774 1102.3 L112.867 1102.3 L112.867 1098.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M147.843 1070.82 Q144.232 1070.82 142.404 1074.38 Q140.598 1077.93 140.598 1085.06 Q140.598 1092.16 142.404 1095.73 Q144.232 1099.27 147.843 1099.27 Q151.478 1099.27 153.283 1095.73 Q155.112 1092.16 155.112 1085.06 Q155.112 1077.93 153.283 1074.38 Q151.478 1070.82 147.843 1070.82 M147.843 1067.12 Q153.654 1067.12 156.709 1071.72 Q159.788 1076.31 159.788 1085.06 Q159.788 1093.78 156.709 1098.39 Q153.654 1102.97 147.843 1102.97 Q142.033 1102.97 138.955 1098.39 Q135.899 1093.78 135.899 1085.06 Q135.899 1076.31 138.955 1071.72 Q142.033 1067.12 147.843 1067.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M172.464 1050.12 L162.872 1065.11 L172.464 1065.11 L172.464 1050.12 M171.467 1046.81 L176.245 1046.81 L176.245 1065.11 L180.251 1065.11 L180.251 1068.27 L176.245 1068.27 L176.245 1074.89 L172.464 1074.89 L172.464 1068.27 L159.788 1068.27 L159.788 1064.6 L171.467 1046.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M57.4273 730.135 L73.7466 730.135 L73.7466 734.07 L51.8023 734.07 L51.8023 730.135 Q54.4643 727.381 59.0476 722.751 Q63.6541 718.098 64.8346 716.756 Q67.08 714.233 67.9596 712.496 Q68.8624 710.737 68.8624 709.047 Q68.8624 706.293 66.918 704.557 Q64.9967 702.821 61.8948 702.821 Q59.6958 702.821 57.2421 703.584 Q54.8115 704.348 52.0338 705.899 L52.0338 701.177 Q54.8578 700.043 57.3115 699.464 Q59.7652 698.885 61.8023 698.885 Q67.1726 698.885 70.367 701.571 Q73.5614 704.256 73.5614 708.746 Q73.5614 710.876 72.7513 712.797 Q71.9642 714.695 69.8578 717.288 Q69.2791 717.959 66.1772 721.177 Q63.0754 724.371 57.4273 730.135 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M106.987 708.608 L96.4085 719.233 L106.987 729.811 L104.233 732.612 L93.6076 721.987 L82.9827 732.612 L80.2512 729.811 L90.8067 719.233 L80.2512 708.608 L82.9827 705.807 L93.6076 716.432 L104.233 705.807 L106.987 708.608 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M112.867 730.135 L120.506 730.135 L120.506 703.77 L112.196 705.436 L112.196 701.177 L120.459 699.51 L125.135 699.51 L125.135 730.135 L132.774 730.135 L132.774 734.07 L112.867 734.07 L112.867 730.135 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M147.843 702.589 Q144.232 702.589 142.404 706.154 Q140.598 709.696 140.598 716.825 Q140.598 723.932 142.404 727.496 Q144.232 731.038 147.843 731.038 Q151.478 731.038 153.283 727.496 Q155.112 723.932 155.112 716.825 Q155.112 709.696 153.283 706.154 Q151.478 702.589 147.843 702.589 M147.843 698.885 Q153.654 698.885 156.709 703.492 Q159.788 708.075 159.788 716.825 Q159.788 725.552 156.709 730.158 Q153.654 734.742 147.843 734.742 Q142.033 734.742 138.955 730.158 Q135.899 725.552 135.899 716.825 Q135.899 708.075 138.955 703.492 Q142.033 698.885 147.843 698.885 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M172.464 681.89 L162.872 696.88 L172.464 696.88 L172.464 681.89 M171.467 678.58 L176.245 678.58 L176.245 696.88 L180.251 696.88 L180.251 700.04 L176.245 700.04 L176.245 706.66 L172.464 706.66 L172.464 700.04 L159.788 700.04 L159.788 696.372 L171.467 678.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M66.617 347.206 Q69.9735 347.923 71.8485 350.192 Q73.7466 352.46 73.7466 355.794 Q73.7466 360.909 70.2281 363.71 Q66.7096 366.511 60.2282 366.511 Q58.0523 366.511 55.7375 366.071 Q53.4458 365.655 50.9921 364.798 L50.9921 360.284 Q52.9366 361.419 55.2514 361.997 Q57.5662 362.576 60.0893 362.576 Q64.4874 362.576 66.7791 360.84 Q69.0939 359.104 69.0939 355.794 Q69.0939 352.738 66.9411 351.025 Q64.8115 349.289 60.9921 349.289 L56.9643 349.289 L56.9643 345.446 L61.1773 345.446 Q64.6263 345.446 66.455 344.081 Q68.2837 342.692 68.2837 340.099 Q68.2837 337.437 66.3856 336.025 Q64.5106 334.59 60.9921 334.59 Q59.0708 334.59 56.8717 335.007 Q54.6727 335.423 52.0338 336.303 L52.0338 332.136 Q54.6958 331.396 57.0106 331.025 Q59.3486 330.655 61.4087 330.655 Q66.7328 330.655 69.8346 333.085 Q72.9365 335.493 72.9365 339.613 Q72.9365 342.483 71.2929 344.474 Q69.6494 346.442 66.617 347.206 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M106.987 340.377 L96.4085 351.002 L106.987 361.581 L104.233 364.382 L93.6076 353.757 L82.9827 364.382 L80.2512 361.581 L90.8067 351.002 L80.2512 340.377 L82.9827 337.576 L93.6076 348.201 L104.233 337.576 L106.987 340.377 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M112.867 361.905 L120.506 361.905 L120.506 335.539 L112.196 337.206 L112.196 332.946 L120.459 331.28 L125.135 331.28 L125.135 361.905 L132.774 361.905 L132.774 365.84 L112.867 365.84 L112.867 361.905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M147.843 334.359 Q144.232 334.359 142.404 337.923 Q140.598 341.465 140.598 348.595 Q140.598 355.701 142.404 359.266 Q144.232 362.807 147.843 362.807 Q151.478 362.807 153.283 359.266 Q155.112 355.701 155.112 348.595 Q155.112 341.465 153.283 337.923 Q151.478 334.359 147.843 334.359 M147.843 330.655 Q153.654 330.655 156.709 335.261 Q159.788 339.845 159.788 348.595 Q159.788 357.321 156.709 361.928 Q153.654 366.511 147.843 366.511 Q142.033 366.511 138.955 361.928 Q135.899 357.321 135.899 348.595 Q135.899 339.845 138.955 335.261 Q142.033 330.655 147.843 330.655 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M172.464 313.66 L162.872 328.649 L172.464 328.649 L172.464 313.66 M171.467 310.349 L176.245 310.349 L176.245 328.649 L180.251 328.649 L180.251 331.809 L176.245 331.809 L176.245 338.429 L172.464 338.429 L172.464 331.809 L159.788 331.809 L159.788 328.142 L171.467 310.349 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1205.51 28.5427 L1205.51 35.5912 Q1202.35 33.9709 1198.95 33.1607 Q1195.55 32.3505 1191.9 32.3505 Q1186.35 32.3505 1183.55 34.0519 Q1180.8 35.7533 1180.8 39.156 Q1180.8 41.7486 1182.79 43.2475 Q1184.77 44.7058 1190.77 46.0426 L1193.32 46.6097 Q1201.26 48.3111 1204.58 51.4303 Q1207.94 54.509 1207.94 60.0587 Q1207.94 66.3781 1202.92 70.0644 Q1197.94 73.7508 1189.19 73.7508 Q1185.54 73.7508 1181.57 73.0216 Q1177.64 72.3329 1173.27 70.9151 L1173.27 63.2184 Q1177.4 65.3654 1181.41 66.4591 Q1185.42 67.5124 1189.35 67.5124 Q1194.61 67.5124 1197.45 65.73 Q1200.29 63.9071 1200.29 60.6258 Q1200.29 57.5877 1198.22 55.9673 Q1196.19 54.3469 1189.27 52.8481 L1186.67 52.2405 Q1179.75 50.7821 1176.67 47.7845 Q1173.59 44.7463 1173.59 39.4801 Q1173.59 33.0797 1178.13 29.5959 Q1182.66 26.1121 1191.01 26.1121 Q1195.14 26.1121 1198.79 26.7198 Q1202.43 27.3274 1205.51 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1223.13 14.324 L1223.13 27.2059 L1238.49 27.2059 L1238.49 32.9987 L1223.13 32.9987 L1223.13 57.6282 Q1223.13 63.1779 1224.63 64.7578 Q1226.17 66.3376 1230.83 66.3376 L1238.49 66.3376 L1238.49 72.576 L1230.83 72.576 Q1222.2 72.576 1218.92 69.3758 Q1215.64 66.1351 1215.64 57.6282 L1215.64 32.9987 L1210.17 32.9987 L1210.17 27.2059 L1215.64 27.2059 L1215.64 14.324 L1223.13 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1272.59 34.1734 Q1271.34 33.4443 1269.84 33.1202 Q1268.38 32.7556 1266.6 32.7556 Q1260.28 32.7556 1256.88 36.8875 Q1253.51 40.9789 1253.51 48.6757 L1253.51 72.576 L1246.02 72.576 L1246.02 27.2059 L1253.51 27.2059 L1253.51 34.2544 Q1255.86 30.1225 1259.63 28.1376 Q1263.4 26.1121 1268.79 26.1121 Q1269.56 26.1121 1270.49 26.2337 Q1271.42 26.3147 1272.55 26.5172 L1272.59 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1317.4 48.0275 L1317.4 51.6733 L1283.13 51.6733 Q1283.61 59.3701 1287.74 63.421 Q1291.92 67.4314 1299.33 67.4314 Q1303.62 67.4314 1307.63 66.3781 Q1311.68 65.3249 1315.65 63.2184 L1315.65 70.267 Q1311.64 71.9684 1307.43 72.8596 Q1303.22 73.7508 1298.88 73.7508 Q1288.03 73.7508 1281.67 67.4314 Q1275.35 61.1119 1275.35 50.3365 Q1275.35 39.1965 1281.34 32.6746 Q1287.38 26.1121 1297.59 26.1121 Q1306.74 26.1121 1312.05 32.0264 Q1317.4 37.9003 1317.4 48.0275 M1309.94 45.84 Q1309.86 39.7232 1306.5 36.0774 Q1303.18 32.4315 1297.67 32.4315 Q1291.43 32.4315 1287.66 35.9558 Q1283.94 39.4801 1283.37 45.8805 L1309.94 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1354.14 28.5427 L1354.14 35.5912 Q1350.98 33.9709 1347.58 33.1607 Q1344.17 32.3505 1340.53 32.3505 Q1334.98 32.3505 1332.18 34.0519 Q1329.43 35.7533 1329.43 39.156 Q1329.43 41.7486 1331.41 43.2475 Q1333.4 44.7058 1339.39 46.0426 L1341.95 46.6097 Q1349.88 48.3111 1353.21 51.4303 Q1356.57 54.509 1356.57 60.0587 Q1356.57 66.3781 1351.55 70.0644 Q1346.56 73.7508 1337.81 73.7508 Q1334.17 73.7508 1330.2 73.0216 Q1326.27 72.3329 1321.89 70.9151 L1321.89 63.2184 Q1326.03 65.3654 1330.04 66.4591 Q1334.05 67.5124 1337.98 67.5124 Q1343.24 67.5124 1346.08 65.73 Q1348.91 63.9071 1348.91 60.6258 Q1348.91 57.5877 1346.85 55.9673 Q1344.82 54.3469 1337.89 52.8481 L1335.3 52.2405 Q1328.37 50.7821 1325.3 47.7845 Q1322.22 44.7463 1322.22 39.4801 Q1322.22 33.0797 1326.75 29.5959 Q1331.29 26.1121 1339.64 26.1121 Q1343.77 26.1121 1347.41 26.7198 Q1351.06 27.3274 1354.14 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1393.31 28.5427 L1393.31 35.5912 Q1390.15 33.9709 1386.75 33.1607 Q1383.35 32.3505 1379.7 32.3505 Q1374.15 32.3505 1371.35 34.0519 Q1368.6 35.7533 1368.6 39.156 Q1368.6 41.7486 1370.59 43.2475 Q1372.57 44.7058 1378.57 46.0426 L1381.12 46.6097 Q1389.06 48.3111 1392.38 51.4303 Q1395.74 54.509 1395.74 60.0587 Q1395.74 66.3781 1390.72 70.0644 Q1385.74 73.7508 1376.99 73.7508 Q1373.34 73.7508 1369.37 73.0216 Q1365.44 72.3329 1361.07 70.9151 L1361.07 63.2184 Q1365.2 65.3654 1369.21 66.4591 Q1373.22 67.5124 1377.15 67.5124 Q1382.41 67.5124 1385.25 65.73 Q1388.08 63.9071 1388.08 60.6258 Q1388.08 57.5877 1386.02 55.9673 Q1383.99 54.3469 1377.07 52.8481 L1374.47 52.2405 Q1367.55 50.7821 1364.47 47.7845 Q1361.39 44.7463 1361.39 39.4801 Q1361.39 33.0797 1365.93 29.5959 Q1370.46 26.1121 1378.81 26.1121 Q1382.94 26.1121 1386.59 26.7198 Q1390.23 27.3274 1393.31 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip622)\" cx=\"276.718\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"282.121\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"287.525\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"292.929\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"298.333\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"303.736\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"309.14\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"314.544\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"319.947\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"325.351\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"330.755\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"336.158\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"341.562\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"346.966\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"352.369\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"357.773\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"363.177\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"368.58\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"373.984\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"379.388\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"384.791\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"390.195\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"395.599\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"401.002\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"406.406\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"411.81\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"417.213\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"422.617\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"428.021\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"433.424\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"438.828\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"444.232\" cy=\"165.385\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"449.635\" cy=\"164.651\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"455.039\" cy=\"1446.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"460.443\" cy=\"164.018\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"465.846\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"471.25\" cy=\"163.385\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"476.654\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"482.057\" cy=\"162.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"487.461\" cy=\"1446.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"492.865\" cy=\"263.477\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"498.269\" cy=\"262.859\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"503.672\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"509.076\" cy=\"262.269\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"514.48\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"519.883\" cy=\"261.678\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"525.287\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"530.691\" cy=\"261.06\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"536.094\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"541.498\" cy=\"361.666\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"546.902\" cy=\"361.138\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"552.305\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"557.709\" cy=\"360.609\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"563.113\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"568.516\" cy=\"360.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"573.92\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"579.324\" cy=\"359.552\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"584.727\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"590.131\" cy=\"459.954\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"595.535\" cy=\"459.499\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"600.938\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"606.342\" cy=\"459.037\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"611.746\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"617.149\" cy=\"458.574\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"622.553\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"627.957\" cy=\"458.118\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"633.36\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"638.764\" cy=\"558.333\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"644.168\" cy=\"557.944\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"649.571\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"654.975\" cy=\"557.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"660.379\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"665.782\" cy=\"557.148\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"671.186\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"676.59\" cy=\"556.76\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"681.993\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"687.397\" cy=\"656.798\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"692.801\" cy=\"656.471\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"698.205\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"703.608\" cy=\"656.133\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"709.012\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"714.416\" cy=\"655.805\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"719.819\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"725.223\" cy=\"655.475\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"730.627\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"736.03\" cy=\"755.341\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"741.434\" cy=\"755.073\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"746.838\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"752.241\" cy=\"754.798\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"757.645\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"763.049\" cy=\"754.525\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"768.452\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"773.856\" cy=\"754.257\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"779.26\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"784.663\" cy=\"853.955\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"790.067\" cy=\"853.745\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"795.471\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"800.874\" cy=\"853.526\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"806.278\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"811.682\" cy=\"853.309\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"817.085\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"822.489\" cy=\"853.098\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"827.893\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"833.296\" cy=\"952.636\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"838.7\" cy=\"952.479\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"844.104\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"849.507\" cy=\"952.313\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"854.911\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"860.315\" cy=\"952.147\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"865.718\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"871.122\" cy=\"951.991\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"876.526\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"881.929\" cy=\"1051.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"887.333\" cy=\"1051.27\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"892.737\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"898.141\" cy=\"1051.15\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"903.544\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"908.948\" cy=\"1051.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"914.352\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"919.755\" cy=\"1050.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"925.159\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"930.563\" cy=\"1150.17\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"935.966\" cy=\"1150.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"941.37\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"946.774\" cy=\"1150.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"952.177\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"957.581\" cy=\"1149.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"962.985\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"968.388\" cy=\"1149.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"973.792\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"979.196\" cy=\"1249.01\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"984.599\" cy=\"1248.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"990.003\" cy=\"1446.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"995.407\" cy=\"1248.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1000.81\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1006.21\" cy=\"1248.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1011.62\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1017.02\" cy=\"1248.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1022.43\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1027.83\" cy=\"1347.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1033.23\" cy=\"1347.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1038.64\" cy=\"1446.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1044.04\" cy=\"1347.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1049.44\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1054.85\" cy=\"1347.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1060.25\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1065.65\" cy=\"1347.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1071.06\" cy=\"1446.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1076.46\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1081.87\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1087.27\" cy=\"1446.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1092.67\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1098.08\" cy=\"1446.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1103.48\" cy=\"1446.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1108.88\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1114.29\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1119.69\" cy=\"1446.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1125.09\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1130.5\" cy=\"1447.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1135.9\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1141.31\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1146.71\" cy=\"1446.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1152.11\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1157.52\" cy=\"1447.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1162.92\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1168.32\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1173.73\" cy=\"1446.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1179.13\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1184.54\" cy=\"1447.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1189.94\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1195.34\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1200.75\" cy=\"1446.12\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1206.15\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1211.55\" cy=\"1447.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1216.96\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1222.36\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1227.76\" cy=\"1445.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1233.17\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1238.57\" cy=\"1447.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1243.98\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1249.38\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1254.78\" cy=\"1445.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1260.19\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1265.59\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1270.99\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1276.4\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1281.8\" cy=\"1445.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1287.21\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1292.61\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1298.01\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1303.42\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1308.82\" cy=\"1445.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1314.22\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1319.63\" cy=\"1447.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1325.03\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1330.43\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1335.84\" cy=\"1445.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1341.24\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1346.65\" cy=\"1447.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1352.05\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1357.45\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1362.86\" cy=\"1445.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1368.26\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1373.66\" cy=\"1447.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1379.07\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1384.47\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1389.87\" cy=\"1446.12\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1395.28\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1400.68\" cy=\"1447.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1406.09\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1411.49\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1416.89\" cy=\"1446.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1422.3\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1427.7\" cy=\"1447.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1433.1\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1438.51\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1443.91\" cy=\"1446.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1449.32\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1454.72\" cy=\"1446.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1460.12\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1465.53\" cy=\"1446.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1470.93\" cy=\"1446.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1476.33\" cy=\"1446.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1481.74\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1487.14\" cy=\"1446.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1492.54\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1497.95\" cy=\"1446.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1503.35\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1508.76\" cy=\"1446.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1514.16\" cy=\"1446.83\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1519.56\" cy=\"1347.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1524.97\" cy=\"1347.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1530.37\" cy=\"1446.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1535.77\" cy=\"1347.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1541.18\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1546.58\" cy=\"1347.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1551.99\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1557.39\" cy=\"1347.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1562.79\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1568.2\" cy=\"1249.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1573.6\" cy=\"1249.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1579\" cy=\"1446.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1584.41\" cy=\"1248.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1589.81\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1595.21\" cy=\"1248.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1600.62\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1606.02\" cy=\"1248.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1611.43\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1616.83\" cy=\"1150.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1622.23\" cy=\"1150.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1627.64\" cy=\"1446.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1633.04\" cy=\"1150.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1638.44\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1643.85\" cy=\"1149.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1649.25\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1654.66\" cy=\"1149.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1660.06\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1665.46\" cy=\"1051.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1670.87\" cy=\"1051.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1676.27\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1681.67\" cy=\"1051.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1687.08\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1692.48\" cy=\"1051.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1697.88\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1703.29\" cy=\"1050.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1708.69\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1714.1\" cy=\"952.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1719.5\" cy=\"952.623\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1724.9\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1730.31\" cy=\"952.381\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1735.71\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1741.11\" cy=\"952.138\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1746.52\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1751.92\" cy=\"951.911\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1757.32\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1762.73\" cy=\"854.231\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1768.13\" cy=\"853.925\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1773.54\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1778.94\" cy=\"853.605\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1784.34\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1789.75\" cy=\"853.286\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1795.15\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1800.55\" cy=\"852.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1805.96\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1811.36\" cy=\"755.682\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1816.77\" cy=\"755.291\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1822.17\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1827.57\" cy=\"754.888\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1832.98\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1838.38\" cy=\"754.485\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1843.78\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1849.19\" cy=\"754.093\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1854.59\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1859.99\" cy=\"657.208\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1865.4\" cy=\"656.727\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1870.8\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1876.21\" cy=\"656.235\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1881.61\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1887.01\" cy=\"655.742\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1892.42\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1897.82\" cy=\"655.261\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1903.22\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1908.63\" cy=\"558.817\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1914.03\" cy=\"558.241\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1919.44\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1924.84\" cy=\"557.653\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1930.24\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1935.65\" cy=\"557.065\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1941.05\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1946.45\" cy=\"556.489\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1951.86\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1957.26\" cy=\"460.515\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1962.66\" cy=\"459.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1968.07\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1973.47\" cy=\"459.149\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1978.88\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1984.28\" cy=\"458.459\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1989.68\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"1995.09\" cy=\"457.782\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2000.49\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2005.89\" cy=\"362.311\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2011.3\" cy=\"361.522\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2016.7\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2022.11\" cy=\"360.726\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2027.51\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2032.91\" cy=\"359.931\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2038.32\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2043.72\" cy=\"359.142\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2049.12\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2054.53\" cy=\"264.217\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2059.93\" cy=\"263.285\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2065.33\" cy=\"1446.83\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2070.74\" cy=\"262.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2076.14\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2081.55\" cy=\"261.494\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2086.95\" cy=\"1446.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2092.35\" cy=\"260.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2097.76\" cy=\"1446.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2103.16\" cy=\"166.233\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2108.56\" cy=\"165.103\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2113.97\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2119.37\" cy=\"164.14\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2124.77\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2130.18\" cy=\"163.178\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2135.58\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2140.99\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2146.39\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2151.79\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2157.2\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2162.6\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2168\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2173.41\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2178.81\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2184.22\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2189.62\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2195.02\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2200.43\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2205.83\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2211.23\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2216.64\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2222.04\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2227.44\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2232.85\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2238.25\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2243.66\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2249.06\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2254.46\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2259.87\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2265.27\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2270.67\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2276.08\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2281.48\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2286.89\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip622)\" cx=\"2292.29\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plotFinalStress(name)"
]
},
{
"cell_type": "code",
"execution_count": 765,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip660\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip660)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip661\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
"<path clip-path=\"url(#clip660)\" d=\"\n",
"M279.838 1486.45 L2352.76 1486.45 L2352.76 123.472 L279.838 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip662\">\n",
" <rect x=\"279\" y=\"123\" width=\"2074\" height=\"1364\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 318.551,1486.45 318.551,123.472 \n",
"<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 817.424,1486.45 817.424,123.472 \n",
"<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1316.3,1486.45 1316.3,123.472 \n",
"<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1815.17,1486.45 1815.17,123.472 \n",
"<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2314.04,1486.45 2314.04,123.472 \n",
"<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 279.838,1486.45 2352.76,1486.45 \n",
"<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 318.551,1486.45 318.551,1470.09 \n",
"<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 817.424,1486.45 817.424,1470.09 \n",
"<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1316.3,1486.45 1316.3,1470.09 \n",
"<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1815.17,1486.45 1815.17,1470.09 \n",
"<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2314.04,1486.45 2314.04,1470.09 \n",
"<path clip-path=\"url(#clip660)\" d=\"M 0 0 M318.551 1515.64 Q314.94 1515.64 313.111 1519.2 Q311.306 1522.75 311.306 1529.87 Q311.306 1536.98 313.111 1540.55 Q314.94 1544.09 318.551 1544.09 Q322.185 1544.09 323.991 1540.55 Q325.819 1536.98 325.819 1529.87 Q325.819 1522.75 323.991 1519.2 Q322.185 1515.64 318.551 1515.64 M318.551 1511.93 Q324.361 1511.93 327.417 1516.54 Q330.495 1521.12 330.495 1529.87 Q330.495 1538.6 327.417 1543.21 Q324.361 1547.79 318.551 1547.79 Q312.741 1547.79 309.662 1543.21 Q306.606 1538.6 306.606 1529.87 Q306.606 1521.12 309.662 1516.54 Q312.741 1511.93 318.551 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M799.068 1543.18 L815.387 1543.18 L815.387 1547.12 L793.443 1547.12 L793.443 1543.18 Q796.105 1540.43 800.688 1535.8 Q805.294 1531.15 806.475 1529.81 Q808.72 1527.28 809.6 1525.55 Q810.503 1523.79 810.503 1522.1 Q810.503 1519.34 808.558 1517.61 Q806.637 1515.87 803.535 1515.87 Q801.336 1515.87 798.882 1516.63 Q796.452 1517.4 793.674 1518.95 L793.674 1514.23 Q796.498 1513.09 798.952 1512.51 Q801.406 1511.93 803.443 1511.93 Q808.813 1511.93 812.007 1514.62 Q815.202 1517.31 815.202 1521.8 Q815.202 1523.93 814.392 1525.85 Q813.605 1527.74 811.498 1530.34 Q810.919 1531.01 807.818 1534.23 Q804.716 1537.42 799.068 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M820.503 1512.56 L838.859 1512.56 L838.859 1516.5 L824.785 1516.5 L824.785 1524.97 Q825.804 1524.62 826.822 1524.46 Q827.841 1524.27 828.859 1524.27 Q834.646 1524.27 838.026 1527.44 Q841.405 1530.62 841.405 1536.03 Q841.405 1541.61 837.933 1544.71 Q834.461 1547.79 828.142 1547.79 Q825.966 1547.79 823.697 1547.42 Q821.452 1547.05 819.044 1546.31 L819.044 1541.61 Q821.128 1542.74 823.35 1543.3 Q825.572 1543.86 828.049 1543.86 Q832.054 1543.86 834.391 1541.75 Q836.729 1539.64 836.729 1536.03 Q836.729 1532.42 834.391 1530.31 Q832.054 1528.21 828.049 1528.21 Q826.174 1528.21 824.299 1528.62 Q822.447 1529.04 820.503 1529.92 L820.503 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1293.07 1512.56 L1311.42 1512.56 L1311.42 1516.5 L1297.35 1516.5 L1297.35 1524.97 Q1298.37 1524.62 1299.39 1524.46 Q1300.41 1524.27 1301.42 1524.27 Q1307.21 1524.27 1310.59 1527.44 Q1313.97 1530.62 1313.97 1536.03 Q1313.97 1541.61 1310.5 1544.71 Q1307.03 1547.79 1300.71 1547.79 Q1298.53 1547.79 1296.26 1547.42 Q1294.02 1547.05 1291.61 1546.31 L1291.61 1541.61 Q1293.69 1542.74 1295.92 1543.3 Q1298.14 1543.86 1300.61 1543.86 Q1304.62 1543.86 1306.96 1541.75 Q1309.29 1539.64 1309.29 1536.03 Q1309.29 1532.42 1306.96 1530.31 Q1304.62 1528.21 1300.61 1528.21 Q1298.74 1528.21 1296.86 1528.62 Q1295.01 1529.04 1293.07 1529.92 L1293.07 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1329.04 1515.64 Q1325.43 1515.64 1323.6 1519.2 Q1321.79 1522.75 1321.79 1529.87 Q1321.79 1536.98 1323.6 1540.55 Q1325.43 1544.09 1329.04 1544.09 Q1332.67 1544.09 1334.48 1540.55 Q1336.31 1536.98 1336.31 1529.87 Q1336.31 1522.75 1334.48 1519.2 Q1332.67 1515.64 1329.04 1515.64 M1329.04 1511.93 Q1334.85 1511.93 1337.91 1516.54 Q1340.98 1521.12 1340.98 1529.87 Q1340.98 1538.6 1337.91 1543.21 Q1334.85 1547.79 1329.04 1547.79 Q1323.23 1547.79 1320.15 1543.21 Q1317.1 1538.6 1317.1 1529.87 Q1317.1 1521.12 1320.15 1516.54 Q1323.23 1511.93 1329.04 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1791.05 1512.56 L1813.27 1512.56 L1813.27 1514.55 L1800.73 1547.12 L1795.84 1547.12 L1807.65 1516.5 L1791.05 1516.5 L1791.05 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1818.39 1512.56 L1836.74 1512.56 L1836.74 1516.5 L1822.67 1516.5 L1822.67 1524.97 Q1823.69 1524.62 1824.71 1524.46 Q1825.73 1524.27 1826.74 1524.27 Q1832.53 1524.27 1835.91 1527.44 Q1839.29 1530.62 1839.29 1536.03 Q1839.29 1541.61 1835.82 1544.71 Q1832.35 1547.79 1826.03 1547.79 Q1823.85 1547.79 1821.58 1547.42 Q1819.34 1547.05 1816.93 1546.31 L1816.93 1541.61 Q1819.01 1542.74 1821.24 1543.3 Q1823.46 1543.86 1825.93 1543.86 Q1829.94 1543.86 1832.28 1541.75 Q1834.61 1539.64 1834.61 1536.03 Q1834.61 1532.42 1832.28 1530.31 Q1829.94 1528.21 1825.93 1528.21 Q1824.06 1528.21 1822.18 1528.62 Q1820.33 1529.04 1818.39 1529.92 L1818.39 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M2277.41 1543.18 L2285.05 1543.18 L2285.05 1516.82 L2276.74 1518.49 L2276.74 1514.23 L2285 1512.56 L2289.68 1512.56 L2289.68 1543.18 L2297.32 1543.18 L2297.32 1547.12 L2277.41 1547.12 L2277.41 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M2312.39 1515.64 Q2308.78 1515.64 2306.95 1519.2 Q2305.14 1522.75 2305.14 1529.87 Q2305.14 1536.98 2306.95 1540.55 Q2308.78 1544.09 2312.39 1544.09 Q2316.02 1544.09 2317.83 1540.55 Q2319.66 1536.98 2319.66 1529.87 Q2319.66 1522.75 2317.83 1519.2 Q2316.02 1515.64 2312.39 1515.64 M2312.39 1511.93 Q2318.2 1511.93 2321.25 1516.54 Q2324.33 1521.12 2324.33 1529.87 Q2324.33 1538.6 2321.25 1543.21 Q2318.2 1547.79 2312.39 1547.79 Q2306.58 1547.79 2303.5 1543.21 Q2300.44 1538.6 2300.44 1529.87 Q2300.44 1521.12 2303.5 1516.54 Q2306.58 1511.93 2312.39 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M2339.4 1515.64 Q2335.79 1515.64 2333.96 1519.2 Q2332.16 1522.75 2332.16 1529.87 Q2332.16 1536.98 2333.96 1540.55 Q2335.79 1544.09 2339.4 1544.09 Q2343.04 1544.09 2344.84 1540.55 Q2346.67 1536.98 2346.67 1529.87 Q2346.67 1522.75 2344.84 1519.2 Q2343.04 1515.64 2339.4 1515.64 M2339.4 1511.93 Q2345.21 1511.93 2348.27 1516.54 Q2351.35 1521.12 2351.35 1529.87 Q2351.35 1538.6 2348.27 1543.21 Q2345.21 1547.79 2339.4 1547.79 Q2333.59 1547.79 2330.51 1543.21 Q2327.46 1538.6 2327.46 1529.87 Q2327.46 1521.12 2330.51 1516.54 Q2333.59 1511.93 2339.4 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 279.838,1461.9 2352.76,1461.9 \n",
"<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 279.838,1230.28 2352.76,1230.28 \n",
"<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 279.838,998.652 2352.76,998.652 \n",
"<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 279.838,767.029 2352.76,767.029 \n",
"<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 279.838,535.405 2352.76,535.405 \n",
"<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 279.838,303.782 2352.76,303.782 \n",
"<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 279.838,1486.45 279.838,123.472 \n",
"<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 279.838,1461.9 304.713,1461.9 \n",
"<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 279.838,1230.28 304.713,1230.28 \n",
"<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 279.838,998.652 304.713,998.652 \n",
"<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 279.838,767.029 304.713,767.029 \n",
"<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 279.838,535.405 304.713,535.405 \n",
"<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 279.838,303.782 304.713,303.782 \n",
"<path clip-path=\"url(#clip660)\" d=\"M 0 0 M231.894 1447.7 Q228.283 1447.7 226.454 1451.26 Q224.649 1454.8 224.649 1461.93 Q224.649 1469.04 226.454 1472.6 Q228.283 1476.15 231.894 1476.15 Q235.528 1476.15 237.334 1472.6 Q239.162 1469.04 239.162 1461.93 Q239.162 1454.8 237.334 1451.26 Q235.528 1447.7 231.894 1447.7 M231.894 1443.99 Q237.704 1443.99 240.76 1448.6 Q243.838 1453.18 243.838 1461.93 Q243.838 1470.66 240.76 1475.27 Q237.704 1479.85 231.894 1479.85 Q226.084 1479.85 223.005 1475.27 Q219.95 1470.66 219.95 1461.93 Q219.95 1453.18 223.005 1448.6 Q226.084 1443.99 231.894 1443.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M58.0291 1250.07 L74.3485 1250.07 L74.3485 1254 L52.4042 1254 L52.4042 1250.07 Q55.0662 1247.31 59.6495 1242.68 Q64.2559 1238.03 65.4365 1236.69 Q67.6819 1234.17 68.5615 1232.43 Q69.4642 1230.67 69.4642 1228.98 Q69.4642 1226.23 67.5198 1224.49 Q65.5985 1222.75 62.4967 1222.75 Q60.2976 1222.75 57.8439 1223.52 Q55.4134 1224.28 52.6356 1225.83 L52.6356 1221.11 Q55.4597 1219.98 57.9134 1219.4 Q60.3671 1218.82 62.4041 1218.82 Q67.7744 1218.82 70.9689 1221.5 Q74.1633 1224.19 74.1633 1228.68 Q74.1633 1230.81 73.3531 1232.73 Q72.5661 1234.63 70.4596 1237.22 Q69.8809 1237.89 66.7791 1241.11 Q63.6772 1244.3 58.0291 1250.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M79.4179 1248.12 L84.3021 1248.12 L84.3021 1254 L79.4179 1254 L79.4179 1248.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M89.4178 1219.44 L107.774 1219.44 L107.774 1223.38 L93.7002 1223.38 L93.7002 1231.85 Q94.7187 1231.5 95.7373 1231.34 Q96.7558 1231.16 97.7743 1231.16 Q103.561 1231.16 106.941 1234.33 Q110.321 1237.5 110.321 1242.92 Q110.321 1248.49 106.848 1251.6 Q103.376 1254.67 97.0567 1254.67 Q94.8808 1254.67 92.6123 1254.3 Q90.3669 1253.93 87.9595 1253.19 L87.9595 1248.49 Q90.0428 1249.63 92.2651 1250.18 Q94.4873 1250.74 96.9641 1250.74 Q100.969 1250.74 103.307 1248.63 Q105.645 1246.53 105.645 1242.92 Q105.645 1239.3 103.307 1237.2 Q100.969 1235.09 96.9641 1235.09 Q95.0891 1235.09 93.2141 1235.51 Q91.3623 1235.92 89.4178 1236.8 L89.4178 1219.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M125.39 1222.52 Q121.779 1222.52 119.95 1226.09 Q118.145 1229.63 118.145 1236.76 Q118.145 1243.86 119.95 1247.43 Q121.779 1250.97 125.39 1250.97 Q129.024 1250.97 130.83 1247.43 Q132.658 1243.86 132.658 1236.76 Q132.658 1229.63 130.83 1226.09 Q129.024 1222.52 125.39 1222.52 M125.39 1218.82 Q131.2 1218.82 134.256 1223.42 Q137.334 1228.01 137.334 1236.76 Q137.334 1245.48 134.256 1250.09 Q131.2 1254.67 125.39 1254.67 Q119.58 1254.67 116.501 1250.09 Q113.445 1245.48 113.445 1236.76 Q113.445 1228.01 116.501 1223.42 Q119.58 1218.82 125.39 1218.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M170.575 1228.54 L159.996 1239.17 L170.575 1249.74 L167.82 1252.54 L157.195 1241.92 L146.57 1252.54 L143.839 1249.74 L154.394 1239.17 L143.839 1228.54 L146.57 1225.74 L157.195 1236.36 L167.82 1225.74 L170.575 1228.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M176.454 1250.07 L184.093 1250.07 L184.093 1223.7 L175.783 1225.37 L175.783 1221.11 L184.047 1219.44 L188.723 1219.44 L188.723 1250.07 L196.362 1250.07 L196.362 1254 L176.454 1254 L176.454 1250.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M211.431 1222.52 Q207.82 1222.52 205.991 1226.09 Q204.186 1229.63 204.186 1236.76 Q204.186 1243.86 205.991 1247.43 Q207.82 1250.97 211.431 1250.97 Q215.065 1250.97 216.871 1247.43 Q218.7 1243.86 218.7 1236.76 Q218.7 1229.63 216.871 1226.09 Q215.065 1222.52 211.431 1222.52 M211.431 1218.82 Q217.241 1218.82 220.297 1223.42 Q223.375 1228.01 223.375 1236.76 Q223.375 1245.48 220.297 1250.09 Q217.241 1254.67 211.431 1254.67 Q205.621 1254.67 202.542 1250.09 Q199.487 1245.48 199.487 1236.76 Q199.487 1228.01 202.542 1223.42 Q205.621 1218.82 211.431 1218.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M236.052 1201.82 L226.46 1216.81 L236.052 1216.81 L236.052 1201.82 M235.055 1198.51 L239.832 1198.51 L239.832 1216.81 L243.838 1216.81 L243.838 1219.97 L239.832 1219.97 L239.832 1226.59 L236.052 1226.59 L236.052 1219.97 L223.375 1219.97 L223.375 1216.3 L235.055 1198.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M52.4505 987.82 L70.8068 987.82 L70.8068 991.755 L56.7328 991.755 L56.7328 1000.23 Q57.7513 999.88 58.7699 999.718 Q59.7884 999.533 60.8069 999.533 Q66.5939 999.533 69.9735 1002.7 Q73.3531 1005.88 73.3531 1011.29 Q73.3531 1016.87 69.8809 1019.97 Q66.4087 1023.05 60.0893 1023.05 Q57.9134 1023.05 55.6449 1022.68 Q53.3995 1022.31 50.9921 1021.57 L50.9921 1016.87 Q53.0754 1018 55.2977 1018.56 Q57.5199 1019.12 59.9967 1019.12 Q64.0013 1019.12 66.3393 1017.01 Q68.6772 1014.9 68.6772 1011.29 Q68.6772 1007.68 66.3393 1005.57 Q64.0013 1003.47 59.9967 1003.47 Q58.1217 1003.47 56.2467 1003.88 Q54.3949 1004.3 52.4505 1005.18 L52.4505 987.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M78.4225 1016.5 L83.3068 1016.5 L83.3068 1022.38 L78.4225 1022.38 L78.4225 1016.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M98.3761 990.898 Q94.765 990.898 92.9363 994.463 Q91.1308 998.005 91.1308 1005.13 Q91.1308 1012.24 92.9363 1015.81 Q94.765 1019.35 98.3761 1019.35 Q102.01 1019.35 103.816 1015.81 Q105.645 1012.24 105.645 1005.13 Q105.645 998.005 103.816 994.463 Q102.01 990.898 98.3761 990.898 M98.3761 987.195 Q104.186 987.195 107.242 991.801 Q110.321 996.385 110.321 1005.13 Q110.321 1013.86 107.242 1018.47 Q104.186 1023.05 98.3761 1023.05 Q92.566 1023.05 89.4873 1018.47 Q86.4318 1013.86 86.4318 1005.13 Q86.4318 996.385 89.4873 991.801 Q92.566 987.195 98.3761 987.195 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M125.39 990.898 Q121.779 990.898 119.95 994.463 Q118.145 998.005 118.145 1005.13 Q118.145 1012.24 119.95 1015.81 Q121.779 1019.35 125.39 1019.35 Q129.024 1019.35 130.83 1015.81 Q132.658 1012.24 132.658 1005.13 Q132.658 998.005 130.83 994.463 Q129.024 990.898 125.39 990.898 M125.39 987.195 Q131.2 987.195 134.256 991.801 Q137.334 996.385 137.334 1005.13 Q137.334 1013.86 134.256 1018.47 Q131.2 1023.05 125.39 1023.05 Q119.58 1023.05 116.501 1018.47 Q113.445 1013.86 113.445 1005.13 Q113.445 996.385 116.501 991.801 Q119.58 987.195 125.39 987.195 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M170.575 996.917 L159.996 1007.54 L170.575 1018.12 L167.82 1020.92 L157.195 1010.3 L146.57 1020.92 L143.839 1018.12 L154.394 1007.54 L143.839 996.917 L146.57 994.116 L157.195 1004.74 L167.82 994.116 L170.575 996.917 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M176.454 1018.44 L184.093 1018.44 L184.093 992.079 L175.783 993.746 L175.783 989.486 L184.047 987.82 L188.723 987.82 L188.723 1018.44 L196.362 1018.44 L196.362 1022.38 L176.454 1022.38 L176.454 1018.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M211.431 990.898 Q207.82 990.898 205.991 994.463 Q204.186 998.005 204.186 1005.13 Q204.186 1012.24 205.991 1015.81 Q207.82 1019.35 211.431 1019.35 Q215.065 1019.35 216.871 1015.81 Q218.7 1012.24 218.7 1005.13 Q218.7 998.005 216.871 994.463 Q215.065 990.898 211.431 990.898 M211.431 987.195 Q217.241 987.195 220.297 991.801 Q223.375 996.385 223.375 1005.13 Q223.375 1013.86 220.297 1018.47 Q217.241 1023.05 211.431 1023.05 Q205.621 1023.05 202.542 1018.47 Q199.487 1013.86 199.487 1005.13 Q199.487 996.385 202.542 991.801 Q205.621 987.195 211.431 987.195 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M236.052 970.2 L226.46 985.189 L236.052 985.189 L236.052 970.2 M235.055 966.889 L239.832 966.889 L239.832 985.189 L243.838 985.189 L243.838 988.349 L239.832 988.349 L239.832 994.969 L236.052 994.969 L236.052 988.349 L223.375 988.349 L223.375 984.682 L235.055 966.889 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M52.1264 756.196 L74.3485 756.196 L74.3485 758.187 L61.8023 790.756 L56.918 790.756 L68.7235 760.132 L52.1264 760.132 L52.1264 756.196 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M79.4179 784.877 L84.3021 784.877 L84.3021 790.756 L79.4179 790.756 L79.4179 784.877 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M89.4178 756.196 L107.774 756.196 L107.774 760.132 L93.7002 760.132 L93.7002 768.604 Q94.7187 768.257 95.7373 768.094 Q96.7558 767.909 97.7743 767.909 Q103.561 767.909 106.941 771.081 Q110.321 774.252 110.321 779.668 Q110.321 785.247 106.848 788.349 Q103.376 791.428 97.0567 791.428 Q94.8808 791.428 92.6123 791.057 Q90.3669 790.687 87.9595 789.946 L87.9595 785.247 Q90.0428 786.381 92.2651 786.937 Q94.4873 787.493 96.9641 787.493 Q100.969 787.493 103.307 785.386 Q105.645 783.28 105.645 779.668 Q105.645 776.057 103.307 773.951 Q100.969 771.844 96.9641 771.844 Q95.0891 771.844 93.2141 772.261 Q91.3623 772.678 89.4178 773.557 L89.4178 756.196 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M125.39 759.275 Q121.779 759.275 119.95 762.84 Q118.145 766.382 118.145 773.511 Q118.145 780.618 119.95 784.182 Q121.779 787.724 125.39 787.724 Q129.024 787.724 130.83 784.182 Q132.658 780.618 132.658 773.511 Q132.658 766.382 130.83 762.84 Q129.024 759.275 125.39 759.275 M125.39 755.571 Q131.2 755.571 134.256 760.178 Q137.334 764.761 137.334 773.511 Q137.334 782.238 134.256 786.844 Q131.2 791.428 125.39 791.428 Q119.58 791.428 116.501 786.844 Q113.445 782.238 113.445 773.511 Q113.445 764.761 116.501 760.178 Q119.58 755.571 125.39 755.571 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M170.575 765.294 L159.996 775.919 L170.575 786.497 L167.82 789.298 L157.195 778.673 L146.57 789.298 L143.839 786.497 L154.394 775.919 L143.839 765.294 L146.57 762.493 L157.195 773.118 L167.82 762.493 L170.575 765.294 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M176.454 786.821 L184.093 786.821 L184.093 760.456 L175.783 762.122 L175.783 757.863 L184.047 756.196 L188.723 756.196 L188.723 786.821 L196.362 786.821 L196.362 790.756 L176.454 790.756 L176.454 786.821 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M211.431 759.275 Q207.82 759.275 205.991 762.84 Q204.186 766.382 204.186 773.511 Q204.186 780.618 205.991 784.182 Q207.82 787.724 211.431 787.724 Q215.065 787.724 216.871 784.182 Q218.7 780.618 218.7 773.511 Q218.7 766.382 216.871 762.84 Q215.065 759.275 211.431 759.275 M211.431 755.571 Q217.241 755.571 220.297 760.178 Q223.375 764.761 223.375 773.511 Q223.375 782.238 220.297 786.844 Q217.241 791.428 211.431 791.428 Q205.621 791.428 202.542 786.844 Q199.487 782.238 199.487 773.511 Q199.487 764.761 202.542 760.178 Q205.621 755.571 211.431 755.571 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M236.052 738.576 L226.46 753.566 L236.052 753.566 L236.052 738.576 M235.055 735.266 L239.832 735.266 L239.832 753.566 L243.838 753.566 L243.838 756.726 L239.832 756.726 L239.832 763.346 L236.052 763.346 L236.052 756.726 L223.375 756.726 L223.375 753.058 L235.055 735.266 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M55.7404 555.198 L63.3792 555.198 L63.3792 528.832 L55.0691 530.499 L55.0691 526.24 L63.3329 524.573 L68.0088 524.573 L68.0088 555.198 L75.6477 555.198 L75.6477 559.133 L55.7404 559.133 L55.7404 555.198 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M80.7171 553.253 L85.6013 553.253 L85.6013 559.133 L80.7171 559.133 L80.7171 553.253 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M100.671 527.652 Q97.0596 527.652 95.2309 531.216 Q93.4253 534.758 93.4253 541.888 Q93.4253 548.994 95.2309 552.559 Q97.0596 556.101 100.671 556.101 Q104.305 556.101 106.11 552.559 Q107.939 548.994 107.939 541.888 Q107.939 534.758 106.11 531.216 Q104.305 527.652 100.671 527.652 M100.671 523.948 Q106.481 523.948 109.536 528.554 Q112.615 533.138 112.615 541.888 Q112.615 550.615 109.536 555.221 Q106.481 559.804 100.671 559.804 Q94.8605 559.804 91.7818 555.221 Q88.7263 550.615 88.7263 541.888 Q88.7263 533.138 91.7818 528.554 Q94.8605 523.948 100.671 523.948 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M127.684 527.652 Q124.073 527.652 122.245 531.216 Q120.439 534.758 120.439 541.888 Q120.439 548.994 122.245 552.559 Q124.073 556.101 127.684 556.101 Q131.319 556.101 133.124 552.559 Q134.953 548.994 134.953 541.888 Q134.953 534.758 133.124 531.216 Q131.319 527.652 127.684 527.652 M127.684 523.948 Q133.495 523.948 136.55 528.554 Q139.629 533.138 139.629 541.888 Q139.629 550.615 136.55 555.221 Q133.495 559.804 127.684 559.804 Q121.874 559.804 118.796 555.221 Q115.74 550.615 115.74 541.888 Q115.74 533.138 118.796 528.554 Q121.874 523.948 127.684 523.948 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M172.869 533.67 L162.291 544.295 L172.869 554.874 L170.115 557.675 L159.49 547.05 L148.865 557.675 L146.133 554.874 L156.689 544.295 L146.133 533.67 L148.865 530.869 L159.49 541.494 L170.115 530.869 L172.869 533.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M178.749 555.198 L186.388 555.198 L186.388 528.832 L178.078 530.499 L178.078 526.24 L186.342 524.573 L191.017 524.573 L191.017 555.198 L198.656 555.198 L198.656 559.133 L178.749 559.133 L178.749 555.198 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M213.726 527.652 Q210.115 527.652 208.286 531.216 Q206.48 534.758 206.48 541.888 Q206.48 548.994 208.286 552.559 Q210.115 556.101 213.726 556.101 Q217.36 556.101 219.165 552.559 Q220.994 548.994 220.994 541.888 Q220.994 534.758 219.165 531.216 Q217.36 527.652 213.726 527.652 M213.726 523.948 Q219.536 523.948 222.591 528.554 Q225.67 533.138 225.67 541.888 Q225.67 550.615 222.591 555.221 Q219.536 559.804 213.726 559.804 Q207.915 559.804 204.837 555.221 Q201.781 550.615 201.781 541.888 Q201.781 533.138 204.837 528.554 Q207.915 523.948 213.726 523.948 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M226.855 503.643 L241.769 503.643 L241.769 506.84 L230.334 506.84 L230.334 513.724 Q231.162 513.441 231.989 513.31 Q232.817 513.159 233.645 513.159 Q238.346 513.159 241.092 515.736 Q243.838 518.313 243.838 522.714 Q243.838 527.246 241.017 529.767 Q238.196 532.268 233.061 532.268 Q231.294 532.268 229.45 531.967 Q227.626 531.666 225.67 531.064 L225.67 527.246 Q227.363 528.168 229.168 528.619 Q230.974 529.071 232.986 529.071 Q236.24 529.071 238.14 527.359 Q240.039 525.648 240.039 522.714 Q240.039 519.78 238.14 518.068 Q236.24 516.357 232.986 516.357 Q231.463 516.357 229.939 516.695 Q228.435 517.034 226.855 517.748 L226.855 503.643 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M58.3329 323.574 L65.9718 323.574 L65.9718 297.209 L57.6617 298.875 L57.6617 294.616 L65.9255 292.95 L70.6014 292.95 L70.6014 323.574 L78.2402 323.574 L78.2402 327.51 L58.3329 327.51 L58.3329 323.574 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M83.3097 321.63 L88.1939 321.63 L88.1939 327.51 L83.3097 327.51 L83.3097 321.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M97.2911 323.574 L113.61 323.574 L113.61 327.51 L91.6661 327.51 L91.6661 323.574 Q94.3281 320.82 98.9114 316.19 Q103.518 311.537 104.698 310.195 Q106.944 307.672 107.823 305.936 Q108.726 304.176 108.726 302.487 Q108.726 299.732 106.782 297.996 Q104.86 296.26 101.759 296.26 Q99.5596 296.26 97.1059 297.024 Q94.6753 297.788 91.8976 299.338 L91.8976 294.616 Q94.7216 293.482 97.1753 292.903 Q99.629 292.325 101.666 292.325 Q107.036 292.325 110.231 295.01 Q113.425 297.695 113.425 302.186 Q113.425 304.315 112.615 306.237 Q111.828 308.135 109.722 310.727 Q109.143 311.399 106.041 314.616 Q102.939 317.811 97.2911 323.574 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M118.726 292.95 L137.083 292.95 L137.083 296.885 L123.009 296.885 L123.009 305.357 Q124.027 305.01 125.046 304.848 Q126.064 304.662 127.083 304.662 Q132.87 304.662 136.249 307.834 Q139.629 311.005 139.629 316.422 Q139.629 322 136.157 325.102 Q132.684 328.181 126.365 328.181 Q124.189 328.181 121.921 327.81 Q119.675 327.44 117.268 326.699 L117.268 322 Q119.351 323.135 121.573 323.69 Q123.796 324.246 126.272 324.246 Q130.277 324.246 132.615 322.139 Q134.953 320.033 134.953 316.422 Q134.953 312.811 132.615 310.704 Q130.277 308.598 126.272 308.598 Q124.397 308.598 122.522 309.014 Q120.671 309.431 118.726 310.311 L118.726 292.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M172.869 302.047 L162.291 312.672 L172.869 323.25 L170.115 326.051 L159.49 315.426 L148.865 326.051 L146.133 323.25 L156.689 312.672 L146.133 302.047 L148.865 299.246 L159.49 309.871 L170.115 299.246 L172.869 302.047 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M178.749 323.574 L186.388 323.574 L186.388 297.209 L178.078 298.875 L178.078 294.616 L186.342 292.95 L191.017 292.95 L191.017 323.574 L198.656 323.574 L198.656 327.51 L178.749 327.51 L178.749 323.574 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M213.726 296.028 Q210.115 296.028 208.286 299.593 Q206.48 303.135 206.48 310.264 Q206.48 317.371 208.286 320.936 Q210.115 324.477 213.726 324.477 Q217.36 324.477 219.165 320.936 Q220.994 317.371 220.994 310.264 Q220.994 303.135 219.165 299.593 Q217.36 296.028 213.726 296.028 M213.726 292.325 Q219.536 292.325 222.591 296.931 Q225.67 301.514 225.67 310.264 Q225.67 318.991 222.591 323.598 Q219.536 328.181 213.726 328.181 Q207.915 328.181 204.837 323.598 Q201.781 318.991 201.781 310.264 Q201.781 301.514 204.837 296.931 Q207.915 292.325 213.726 292.325 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M226.855 272.019 L241.769 272.019 L241.769 275.216 L230.334 275.216 L230.334 282.1 Q231.162 281.818 231.989 281.686 Q232.817 281.536 233.645 281.536 Q238.346 281.536 241.092 284.113 Q243.838 286.689 243.838 291.09 Q243.838 295.623 241.017 298.143 Q238.196 300.645 233.061 300.645 Q231.294 300.645 229.45 300.344 Q227.626 300.043 225.67 299.441 L225.67 295.623 Q227.363 296.545 229.168 296.996 Q230.974 297.447 232.986 297.447 Q236.24 297.447 238.14 295.736 Q240.039 294.024 240.039 291.09 Q240.039 288.156 238.14 286.445 Q236.24 284.733 232.986 284.733 Q231.463 284.733 229.939 285.072 Q228.435 285.41 226.855 286.125 L226.855 272.019 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1237.3 28.5427 L1237.3 35.5912 Q1234.14 33.9709 1230.74 33.1607 Q1227.34 32.3505 1223.69 32.3505 Q1218.14 32.3505 1215.35 34.0519 Q1212.59 35.7533 1212.59 39.156 Q1212.59 41.7486 1214.58 43.2475 Q1216.56 44.7058 1222.56 46.0426 L1225.11 46.6097 Q1233.05 48.3111 1236.37 51.4303 Q1239.74 54.509 1239.74 60.0587 Q1239.74 66.3781 1234.71 70.0644 Q1229.73 73.7508 1220.98 73.7508 Q1217.33 73.7508 1213.36 73.0216 Q1209.43 72.3329 1205.06 70.9151 L1205.06 63.2184 Q1209.19 65.3654 1213.2 66.4591 Q1217.21 67.5124 1221.14 67.5124 Q1226.41 67.5124 1229.24 65.73 Q1232.08 63.9071 1232.08 60.6258 Q1232.08 57.5877 1230.01 55.9673 Q1227.99 54.3469 1221.06 52.8481 L1218.47 52.2405 Q1211.54 50.7821 1208.46 47.7845 Q1205.38 44.7463 1205.38 39.4801 Q1205.38 33.0797 1209.92 29.5959 Q1214.46 26.1121 1222.8 26.1121 Q1226.93 26.1121 1230.58 26.7198 Q1234.23 27.3274 1237.3 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1254.93 14.324 L1254.93 27.2059 L1270.28 27.2059 L1270.28 32.9987 L1254.93 32.9987 L1254.93 57.6282 Q1254.93 63.1779 1256.42 64.7578 Q1257.96 66.3376 1262.62 66.3376 L1270.28 66.3376 L1270.28 72.576 L1262.62 72.576 Q1253.99 72.576 1250.71 69.3758 Q1247.43 66.1351 1247.43 57.6282 L1247.43 32.9987 L1241.96 32.9987 L1241.96 27.2059 L1247.43 27.2059 L1247.43 14.324 L1254.93 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1304.39 34.1734 Q1303.13 33.4443 1301.63 33.1202 Q1300.17 32.7556 1298.39 32.7556 Q1292.07 32.7556 1288.67 36.8875 Q1285.31 40.9789 1285.31 48.6757 L1285.31 72.576 L1277.81 72.576 L1277.81 27.2059 L1285.31 27.2059 L1285.31 34.2544 Q1287.66 30.1225 1291.42 28.1376 Q1295.19 26.1121 1300.58 26.1121 Q1301.35 26.1121 1302.28 26.2337 Q1303.21 26.3147 1304.35 26.5172 L1304.39 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1349.19 48.0275 L1349.19 51.6733 L1314.92 51.6733 Q1315.41 59.3701 1319.54 63.421 Q1323.71 67.4314 1331.12 67.4314 Q1335.42 67.4314 1339.43 66.3781 Q1343.48 65.3249 1347.45 63.2184 L1347.45 70.267 Q1343.44 71.9684 1339.23 72.8596 Q1335.01 73.7508 1330.68 73.7508 Q1319.82 73.7508 1313.46 67.4314 Q1307.14 61.1119 1307.14 50.3365 Q1307.14 39.1965 1313.14 32.6746 Q1319.17 26.1121 1329.38 26.1121 Q1338.54 26.1121 1343.84 32.0264 Q1349.19 37.9003 1349.19 48.0275 M1341.74 45.84 Q1341.66 39.7232 1338.29 36.0774 Q1334.97 32.4315 1329.46 32.4315 Q1323.22 32.4315 1319.46 35.9558 Q1315.73 39.4801 1315.16 45.8805 L1341.74 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1385.93 28.5427 L1385.93 35.5912 Q1382.77 33.9709 1379.37 33.1607 Q1375.97 32.3505 1372.32 32.3505 Q1366.77 32.3505 1363.98 34.0519 Q1361.22 35.7533 1361.22 39.156 Q1361.22 41.7486 1363.21 43.2475 Q1365.19 44.7058 1371.19 46.0426 L1373.74 46.6097 Q1381.68 48.3111 1385 51.4303 Q1388.36 54.509 1388.36 60.0587 Q1388.36 66.3781 1383.34 70.0644 Q1378.36 73.7508 1369.61 73.7508 Q1365.96 73.7508 1361.99 73.0216 Q1358.06 72.3329 1353.69 70.9151 L1353.69 63.2184 Q1357.82 65.3654 1361.83 66.4591 Q1365.84 67.5124 1369.77 67.5124 Q1375.04 67.5124 1377.87 65.73 Q1380.71 63.9071 1380.71 60.6258 Q1380.71 57.5877 1378.64 55.9673 Q1376.62 54.3469 1369.69 52.8481 L1367.1 52.2405 Q1360.17 50.7821 1357.09 47.7845 Q1354.01 44.7463 1354.01 39.4801 Q1354.01 33.0797 1358.55 29.5959 Q1363.09 26.1121 1371.43 26.1121 Q1375.56 26.1121 1379.21 26.7198 Q1382.85 27.3274 1385.93 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1425.1 28.5427 L1425.1 35.5912 Q1421.94 33.9709 1418.54 33.1607 Q1415.14 32.3505 1411.49 32.3505 Q1405.94 32.3505 1403.15 34.0519 Q1400.39 35.7533 1400.39 39.156 Q1400.39 41.7486 1402.38 43.2475 Q1404.36 44.7058 1410.36 46.0426 L1412.91 46.6097 Q1420.85 48.3111 1424.17 51.4303 Q1427.53 54.509 1427.53 60.0587 Q1427.53 66.3781 1422.51 70.0644 Q1417.53 73.7508 1408.78 73.7508 Q1405.13 73.7508 1401.16 73.0216 Q1397.23 72.3329 1392.86 70.9151 L1392.86 63.2184 Q1396.99 65.3654 1401 66.4591 Q1405.01 67.5124 1408.94 67.5124 Q1414.21 67.5124 1417.04 65.73 Q1419.88 63.9071 1419.88 60.6258 Q1419.88 57.5877 1417.81 55.9673 Q1415.79 54.3469 1408.86 52.8481 L1406.27 52.2405 Q1399.34 50.7821 1396.26 47.7845 Q1393.18 44.7463 1393.18 39.4801 Q1393.18 33.0797 1397.72 29.5959 Q1402.26 26.1121 1410.6 26.1121 Q1414.73 26.1121 1418.38 26.7198 Q1422.03 27.3274 1425.1 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip662)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 338.506,1447.87 358.461,1415.93 378.416,1388.52 398.371,1364.48 418.325,1342.67 438.28,1322.37 458.235,1303.08 478.19,1284.47 498.145,1266.32 518.1,1248.48 \n",
" 538.055,1230.85 558.01,1213.36 577.965,1195.97 597.92,1178.64 617.875,1161.35 637.83,1144.09 657.785,1126.84 677.74,1109.61 697.694,1092.39 717.649,1075.17 \n",
" 737.604,1057.96 757.559,1040.74 777.514,1023.53 797.469,1006.31 817.424,989.099 837.379,971.883 857.334,954.666 877.289,937.448 897.244,920.228 917.199,903.008 \n",
" 937.154,885.786 957.108,868.562 977.063,851.338 997.018,834.112 1016.97,816.885 1036.93,799.657 1056.88,782.427 1076.84,765.197 1096.79,747.965 1116.75,730.731 \n",
" 1136.7,713.497 1156.66,696.262 1176.61,679.025 1196.57,661.787 1216.52,644.544 1236.48,627.303 1256.43,610.111 1276.39,592.898 1296.34,575.676 1316.3,558.449 \n",
" 1336.25,541.218 1356.21,523.984 1376.16,506.748 1396.12,489.49 1416.07,472.551 1436.03,455.287 1455.98,438.027 1475.94,420.78 1495.89,403.534 1515.85,386.287 \n",
" 1535.8,369.04 1555.76,351.793 1575.71,334.545 1595.67,317.297 1615.62,300.049 1635.58,282.799 1655.53,265.549 1675.49,248.299 1695.44,231.048 1715.4,213.796 \n",
" 1735.35,196.544 1755.31,179.291 1775.26,162.047 1795.22,373.498 1815.17,686.76 1835.13,828.798 1855.08,940.966 1875.04,1027.89 1894.99,1094.5 1914.94,1145.57 \n",
" 1934.9,1184.74 1954.85,1214.78 1974.81,1237.82 1994.76,1255.49 2014.72,1269.05 2034.67,1279.44 2054.63,1287.41 2074.58,1293.53 2094.54,1298.22 2114.49,1301.81 \n",
" 2134.45,1304.57 2154.4,1306.69 2174.36,1308.31 2194.31,1309.56 2214.27,1310.51 2234.22,1311.25 2254.18,1311.81 2274.13,1312.24 2294.09,1312.57 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plotStressTroughTimeSteps(name,100)#38"
]
},
{
"cell_type": "code",
"execution_count": 766,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip700)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip700)\" d=\"\n",
"M255.649 1486.45 L2352.76 1486.45 L2352.76 123.472 L255.649 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip702\">\n",
" <rect x=\"255\" y=\"123\" width=\"2098\" height=\"1364\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 294.813,1486.45 294.813,123.472 \n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 799.508,1486.45 799.508,123.472 \n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1304.2,1486.45 1304.2,123.472 \n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1808.9,1486.45 1808.9,123.472 \n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2313.59,1486.45 2313.59,123.472 \n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 255.649,1486.45 2352.76,1486.45 \n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 294.813,1486.45 294.813,1470.09 \n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 799.508,1486.45 799.508,1470.09 \n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1304.2,1486.45 1304.2,1470.09 \n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1808.9,1486.45 1808.9,1470.09 \n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2313.59,1486.45 2313.59,1470.09 \n",
"<path clip-path=\"url(#clip700)\" d=\"M 0 0 M294.813 1515.64 Q291.202 1515.64 289.373 1519.2 Q287.568 1522.75 287.568 1529.87 Q287.568 1536.98 289.373 1540.55 Q291.202 1544.09 294.813 1544.09 Q298.447 1544.09 300.253 1540.55 Q302.081 1536.98 302.081 1529.87 Q302.081 1522.75 300.253 1519.2 Q298.447 1515.64 294.813 1515.64 M294.813 1511.93 Q300.623 1511.93 303.679 1516.54 Q306.757 1521.12 306.757 1529.87 Q306.757 1538.6 303.679 1543.21 Q300.623 1547.79 294.813 1547.79 Q289.003 1547.79 285.924 1543.21 Q282.869 1538.6 282.869 1529.87 Q282.869 1521.12 285.924 1516.54 Q289.003 1511.93 294.813 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M781.151 1543.18 L797.471 1543.18 L797.471 1547.12 L775.526 1547.12 L775.526 1543.18 Q778.188 1540.43 782.772 1535.8 Q787.378 1531.15 788.559 1529.81 Q790.804 1527.28 791.684 1525.55 Q792.586 1523.79 792.586 1522.1 Q792.586 1519.34 790.642 1517.61 Q788.721 1515.87 785.619 1515.87 Q783.42 1515.87 780.966 1516.63 Q778.535 1517.4 775.758 1518.95 L775.758 1514.23 Q778.582 1513.09 781.035 1512.51 Q783.489 1511.93 785.526 1511.93 Q790.897 1511.93 794.091 1514.62 Q797.285 1517.31 797.285 1521.8 Q797.285 1523.93 796.475 1525.85 Q795.688 1527.74 793.582 1530.34 Q793.003 1531.01 789.901 1534.23 Q786.799 1537.42 781.151 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M802.586 1512.56 L820.943 1512.56 L820.943 1516.5 L806.869 1516.5 L806.869 1524.97 Q807.887 1524.62 808.906 1524.46 Q809.924 1524.27 810.943 1524.27 Q816.73 1524.27 820.109 1527.44 Q823.489 1530.62 823.489 1536.03 Q823.489 1541.61 820.017 1544.71 Q816.545 1547.79 810.225 1547.79 Q808.049 1547.79 805.781 1547.42 Q803.535 1547.05 801.128 1546.31 L801.128 1541.61 Q803.211 1542.74 805.433 1543.3 Q807.656 1543.86 810.133 1543.86 Q814.137 1543.86 816.475 1541.75 Q818.813 1539.64 818.813 1536.03 Q818.813 1532.42 816.475 1530.31 Q814.137 1528.21 810.133 1528.21 Q808.258 1528.21 806.383 1528.62 Q804.531 1529.04 802.586 1529.92 L802.586 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1280.97 1512.56 L1299.33 1512.56 L1299.33 1516.5 L1285.26 1516.5 L1285.26 1524.97 Q1286.27 1524.62 1287.29 1524.46 Q1288.31 1524.27 1289.33 1524.27 Q1295.12 1524.27 1298.5 1527.44 Q1301.88 1530.62 1301.88 1536.03 Q1301.88 1541.61 1298.4 1544.71 Q1294.93 1547.79 1288.61 1547.79 Q1286.44 1547.79 1284.17 1547.42 Q1281.92 1547.05 1279.51 1546.31 L1279.51 1541.61 Q1281.6 1542.74 1283.82 1543.3 Q1286.04 1543.86 1288.52 1543.86 Q1292.52 1543.86 1294.86 1541.75 Q1297.2 1539.64 1297.2 1536.03 Q1297.2 1532.42 1294.86 1530.31 Q1292.52 1528.21 1288.52 1528.21 Q1286.64 1528.21 1284.77 1528.62 Q1282.92 1529.04 1280.97 1529.92 L1280.97 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1316.95 1515.64 Q1313.33 1515.64 1311.51 1519.2 Q1309.7 1522.75 1309.7 1529.87 Q1309.7 1536.98 1311.51 1540.55 Q1313.33 1544.09 1316.95 1544.09 Q1320.58 1544.09 1322.39 1540.55 Q1324.21 1536.98 1324.21 1529.87 Q1324.21 1522.75 1322.39 1519.2 Q1320.58 1515.64 1316.95 1515.64 M1316.95 1511.93 Q1322.76 1511.93 1325.81 1516.54 Q1328.89 1521.12 1328.89 1529.87 Q1328.89 1538.6 1325.81 1543.21 Q1322.76 1547.79 1316.95 1547.79 Q1311.14 1547.79 1308.06 1543.21 Q1305 1538.6 1305 1529.87 Q1305 1521.12 1308.06 1516.54 Q1311.14 1511.93 1316.95 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1784.78 1512.56 L1807 1512.56 L1807 1514.55 L1794.45 1547.12 L1789.57 1547.12 L1801.37 1516.5 L1784.78 1516.5 L1784.78 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1812.11 1512.56 L1830.47 1512.56 L1830.47 1516.5 L1816.4 1516.5 L1816.4 1524.97 Q1817.42 1524.62 1818.43 1524.46 Q1819.45 1524.27 1820.47 1524.27 Q1826.26 1524.27 1829.64 1527.44 Q1833.02 1530.62 1833.02 1536.03 Q1833.02 1541.61 1829.54 1544.71 Q1826.07 1547.79 1819.75 1547.79 Q1817.58 1547.79 1815.31 1547.42 Q1813.06 1547.05 1810.66 1546.31 L1810.66 1541.61 Q1812.74 1542.74 1814.96 1543.3 Q1817.18 1543.86 1819.66 1543.86 Q1823.67 1543.86 1826 1541.75 Q1828.34 1539.64 1828.34 1536.03 Q1828.34 1532.42 1826 1530.31 Q1823.67 1528.21 1819.66 1528.21 Q1817.79 1528.21 1815.91 1528.62 Q1814.06 1529.04 1812.11 1529.92 L1812.11 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M2276.96 1543.18 L2284.6 1543.18 L2284.6 1516.82 L2276.29 1518.49 L2276.29 1514.23 L2284.55 1512.56 L2289.23 1512.56 L2289.23 1543.18 L2296.87 1543.18 L2296.87 1547.12 L2276.96 1547.12 L2276.96 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M2311.94 1515.64 Q2308.33 1515.64 2306.5 1519.2 Q2304.69 1522.75 2304.69 1529.87 Q2304.69 1536.98 2306.5 1540.55 Q2308.33 1544.09 2311.94 1544.09 Q2315.57 1544.09 2317.38 1540.55 Q2319.2 1536.98 2319.2 1529.87 Q2319.2 1522.75 2317.38 1519.2 Q2315.57 1515.64 2311.94 1515.64 M2311.94 1511.93 Q2317.75 1511.93 2320.8 1516.54 Q2323.88 1521.12 2323.88 1529.87 Q2323.88 1538.6 2320.8 1543.21 Q2317.75 1547.79 2311.94 1547.79 Q2306.13 1547.79 2303.05 1543.21 Q2299.99 1538.6 2299.99 1529.87 Q2299.99 1521.12 2303.05 1516.54 Q2306.13 1511.93 2311.94 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M2338.95 1515.64 Q2335.34 1515.64 2333.51 1519.2 Q2331.7 1522.75 2331.7 1529.87 Q2331.7 1536.98 2333.51 1540.55 Q2335.34 1544.09 2338.95 1544.09 Q2342.58 1544.09 2344.39 1540.55 Q2346.22 1536.98 2346.22 1529.87 Q2346.22 1522.75 2344.39 1519.2 Q2342.58 1515.64 2338.95 1515.64 M2338.95 1511.93 Q2344.76 1511.93 2347.82 1516.54 Q2350.89 1521.12 2350.89 1529.87 Q2350.89 1538.6 2347.82 1543.21 Q2344.76 1547.79 2338.95 1547.79 Q2333.14 1547.79 2330.06 1543.21 Q2327.01 1538.6 2327.01 1529.87 Q2327.01 1521.12 2330.06 1516.54 Q2333.14 1511.93 2338.95 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 255.649,1463.87 2352.76,1463.87 \n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 255.649,1252.24 2352.76,1252.24 \n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 255.649,1040.62 2352.76,1040.62 \n",
Loading
Loading full blame...