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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 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 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 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 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 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 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 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
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg
width="600" height="480"
viewBox="0 0 600 480"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>Gnuplot</title>
<desc>Produced by GNUPLOT 5.2 patchlevel 8 </desc>
<g id="gnuplot_canvas">
<rect x="0" y="0" width="600" height="480" fill="none"/>
<defs>
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
</filter>
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
</filter>
</defs>
<g fill="none" color="white" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M93.2,444.0 L519.1,444.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M93.2,444.0 L102.2,444.0 M519.1,444.0 L510.1,444.0 '/> <g transform="translate(84.9,447.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text>-6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M93.2,373.0 L519.1,373.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M93.2,373.0 L102.2,373.0 M519.1,373.0 L510.1,373.0 '/> <g transform="translate(84.9,376.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text>-4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M93.2,302.0 L519.1,302.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M93.2,302.0 L102.2,302.0 M519.1,302.0 L510.1,302.0 '/> <g transform="translate(84.9,305.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text>-2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M93.2,231.0 L519.1,231.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M93.2,231.0 L102.2,231.0 M519.1,231.0 L510.1,231.0 '/> <g transform="translate(84.9,234.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M93.2,160.1 L519.1,160.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M93.2,160.1 L102.2,160.1 M519.1,160.1 L510.1,160.1 '/> <g transform="translate(84.9,164.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text> 2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M93.2,89.1 L519.1,89.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M93.2,89.1 L102.2,89.1 M519.1,89.1 L510.1,89.1 '/> <g transform="translate(84.9,93.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text> 4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M93.2,18.1 L519.1,18.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M93.2,18.1 L102.2,18.1 M519.1,18.1 L510.1,18.1 '/> <g transform="translate(84.9,22.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text> 6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M93.2,444.0 L93.2,18.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M93.2,444.0 L93.2,435.0 M93.2,18.1 L93.2,27.1 '/> <g transform="translate(93.2,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>-6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M164.2,444.0 L164.2,18.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M164.2,444.0 L164.2,435.0 M164.2,18.1 L164.2,27.1 '/> <g transform="translate(164.2,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>-4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M235.2,444.0 L235.2,18.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M235.2,444.0 L235.2,435.0 M235.2,18.1 L235.2,27.1 '/> <g transform="translate(235.2,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>-2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M306.2,444.0 L306.2,18.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M306.2,444.0 L306.2,435.0 M306.2,18.1 L306.2,27.1 '/> <g transform="translate(306.2,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M377.1,444.0 L377.1,18.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M377.1,444.0 L377.1,435.0 M377.1,18.1 L377.1,27.1 '/> <g transform="translate(377.1,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M448.1,444.0 L448.1,18.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M448.1,444.0 L448.1,435.0 M448.1,18.1 L448.1,27.1 '/> <g transform="translate(448.1,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M519.1,444.0 L519.1,18.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M519.1,444.0 L519.1,435.0 M519.1,18.1 L519.1,27.1 '/> <g transform="translate(519.1,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M93.2,18.1 L93.2,444.0 L519.1,444.0 L519.1,18.1 L93.2,18.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g id="gnuplot_plot_1" ><title>gnuplot_plot_1</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M133.0,411.2 L133.1,410.9 L133.2,410.6 L133.3,410.3 L133.3,410.0 L133.3,409.7 L133.3,409.3 L133.2,409.0
L133.1,408.6 L133.0,408.3 L132.8,407.9 L132.6,407.6 L132.4,407.3 L132.1,406.9 L131.8,406.6 L131.5,406.3
L131.2,406.1 L130.9,405.8 L130.5,405.5 L130.1,405.3 L129.7,405.1 L129.3,405.0 L128.9,404.8 L128.5,404.7
L128.1,404.6 L127.7,404.6 L127.3,404.6 L126.9,404.6 L126.5,404.6 L126.2,404.7 L125.8,404.8 L125.5,404.9
L125.2,405.0 L125.0,405.2 L124.7,405.4 L124.5,405.7 L124.3,405.9 L124.2,406.2 L124.1,406.5 L124.0,406.8
L124.0,407.1 L124.0,407.4 L124.0,407.8 L124.1,408.1 L124.2,408.5 L124.3,408.8 L124.5,409.2 L124.7,409.5
L124.9,409.8 L125.2,410.2 L125.5,410.5 L125.8,410.8 L126.1,411.0 L126.4,411.3 L126.8,411.6 L127.2,411.8
L127.6,412.0 L128.0,412.1 L128.4,412.3 L128.8,412.4 L129.2,412.5 L129.6,412.5 L130.0,412.5 L130.4,412.5
L130.8,412.5 L131.1,412.4 L131.5,412.3 L131.8,412.2 L132.1,412.1 L132.3,411.9 L132.6,411.7 L132.8,411.4
L133.0,411.2 Z '/> <path stroke='rgb(148, 0, 211)' d='M133.0,411.2 L133.1,410.9 L133.2,410.6 L133.3,410.3 L133.3,410.0 L133.3,409.7 L133.3,409.3 L133.2,409.0
L133.1,408.6 L133.0,408.3 L132.8,407.9 L132.6,407.6 L132.4,407.3 L132.1,406.9 L131.8,406.6 L131.5,406.3
L131.2,406.1 L130.9,405.8 L130.5,405.5 L130.1,405.3 L129.7,405.1 L129.3,405.0 L128.9,404.8 L128.5,404.7
L128.1,404.6 L127.7,404.6 L127.3,404.6 L126.9,404.6 L126.5,404.6 L126.2,404.7 L125.8,404.8 L125.5,404.9
L125.2,405.0 L125.0,405.2 L124.7,405.4 L124.5,405.7 L124.3,405.9 L124.2,406.2 L124.1,406.5 L124.0,406.8
L124.0,407.1 L124.0,407.4 L124.0,407.8 L124.1,408.1 L124.2,408.5 L124.3,408.8 L124.5,409.2 L124.7,409.5
L124.9,409.8 L125.2,410.2 L125.5,410.5 L125.8,410.8 L126.1,411.0 L126.4,411.3 L126.8,411.6 L127.2,411.8
L127.6,412.0 L128.0,412.1 L128.4,412.3 L128.8,412.4 L129.2,412.5 L129.6,412.5 L130.0,412.5 L130.4,412.5
L130.8,412.5 L131.1,412.4 L131.5,412.3 L131.8,412.2 L132.1,412.1 L132.3,411.9 L132.6,411.7 L132.8,411.4
L133.0,411.2 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M177.4,406.8 L176.8,407.4 L176.4,408.0 L175.9,408.7 L175.4,409.3 L175.0,409.9 L174.7,410.5 L174.3,411.1
L174.0,411.6 L173.7,412.2 L173.5,412.7 L173.3,413.2 L173.2,413.6 L173.1,414.0 L173.1,414.4 L173.1,414.7
L173.2,415.0 L173.3,415.2 L173.4,415.4 L173.6,415.5 L173.8,415.6 L174.1,415.6 L174.4,415.6 L174.8,415.5
L175.2,415.3 L175.6,415.1 L176.1,414.9 L176.6,414.6 L177.1,414.3 L177.6,413.9 L178.1,413.5 L178.6,413.0
L179.2,412.5 L179.7,412.0 L180.3,411.4 L180.8,410.9 L181.3,410.3 L181.9,409.7 L182.3,409.1 L182.8,408.4
L183.3,407.8 L183.7,407.2 L184.0,406.6 L184.4,406.0 L184.7,405.5 L185.0,404.9 L185.2,404.4 L185.4,403.9
L185.5,403.5 L185.6,403.1 L185.6,402.7 L185.6,402.4 L185.5,402.1 L185.4,401.9 L185.3,401.7 L185.1,401.6
L184.9,401.5 L184.6,401.5 L184.3,401.5 L183.9,401.6 L183.5,401.8 L183.1,402.0 L182.6,402.2 L182.1,402.5
L181.6,402.8 L181.1,403.2 L180.6,403.6 L180.1,404.1 L179.5,404.6 L179.0,405.1 L178.4,405.7 L177.9,406.2
L177.4,406.8 Z '/> <path stroke='rgb(148, 0, 211)' d='M177.4,406.8 L176.8,407.4 L176.4,408.0 L175.9,408.7 L175.4,409.3 L175.0,409.9 L174.7,410.5 L174.3,411.1
L174.0,411.6 L173.7,412.2 L173.5,412.7 L173.3,413.2 L173.2,413.6 L173.1,414.0 L173.1,414.4 L173.1,414.7
L173.2,415.0 L173.3,415.2 L173.4,415.4 L173.6,415.5 L173.8,415.6 L174.1,415.6 L174.4,415.6 L174.8,415.5
L175.2,415.3 L175.6,415.1 L176.1,414.9 L176.6,414.6 L177.1,414.3 L177.6,413.9 L178.1,413.5 L178.6,413.0
L179.2,412.5 L179.7,412.0 L180.3,411.4 L180.8,410.9 L181.3,410.3 L181.9,409.7 L182.3,409.1 L182.8,408.4
L183.3,407.8 L183.7,407.2 L184.0,406.6 L184.4,406.0 L184.7,405.5 L185.0,404.9 L185.2,404.4 L185.4,403.9
L185.5,403.5 L185.6,403.1 L185.6,402.7 L185.6,402.4 L185.5,402.1 L185.4,401.9 L185.3,401.7 L185.1,401.6
L184.9,401.5 L184.6,401.5 L184.3,401.5 L183.9,401.6 L183.5,401.8 L183.1,402.0 L182.6,402.2 L182.1,402.5
L181.6,402.8 L181.1,403.2 L180.6,403.6 L180.1,404.1 L179.5,404.6 L179.0,405.1 L178.4,405.7 L177.9,406.2
L177.4,406.8 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M227.9,407.1 L227.4,407.7 L227.0,408.4 L226.6,409.1 L226.2,409.7 L225.9,410.4 L225.6,411.1 L225.3,411.7
L225.0,412.3 L224.8,412.9 L224.7,413.4 L224.5,413.9 L224.4,414.4 L224.4,414.8 L224.4,415.2 L224.4,415.5
L224.5,415.8 L224.7,416.0 L224.8,416.1 L225.0,416.2 L225.3,416.3 L225.6,416.3 L225.9,416.2 L226.2,416.1
L226.6,415.9 L227.0,415.6 L227.4,415.3 L227.9,415.0 L228.4,414.6 L228.8,414.1 L229.3,413.6 L229.8,413.1
L230.3,412.5 L230.8,412.0 L231.3,411.3 L231.8,410.7 L232.2,410.0 L232.7,409.4 L233.1,408.7 L233.5,408.0
L233.9,407.4 L234.2,406.7 L234.5,406.0 L234.8,405.4 L235.1,404.8 L235.3,404.2 L235.4,403.7 L235.6,403.2
L235.7,402.7 L235.7,402.3 L235.7,401.9 L235.7,401.6 L235.6,401.3 L235.4,401.1 L235.3,401.0 L235.1,400.9
L234.8,400.8 L234.5,400.8 L234.2,400.9 L233.9,401.0 L233.5,401.2 L233.1,401.5 L232.7,401.8 L232.2,402.1
L231.7,402.5 L231.3,403.0 L230.8,403.5 L230.3,404.0 L229.8,404.6 L229.3,405.1 L228.8,405.8 L228.3,406.4
L227.9,407.1 Z '/> <path stroke='rgb(148, 0, 211)' d='M227.9,407.1 L227.4,407.7 L227.0,408.4 L226.6,409.1 L226.2,409.7 L225.9,410.4 L225.6,411.1 L225.3,411.7
L225.0,412.3 L224.8,412.9 L224.7,413.4 L224.5,413.9 L224.4,414.4 L224.4,414.8 L224.4,415.2 L224.4,415.5
L224.5,415.8 L224.7,416.0 L224.8,416.1 L225.0,416.2 L225.3,416.3 L225.6,416.3 L225.9,416.2 L226.2,416.1
L226.6,415.9 L227.0,415.6 L227.4,415.3 L227.9,415.0 L228.4,414.6 L228.8,414.1 L229.3,413.6 L229.8,413.1
L230.3,412.5 L230.8,412.0 L231.3,411.3 L231.8,410.7 L232.2,410.0 L232.7,409.4 L233.1,408.7 L233.5,408.0
L233.9,407.4 L234.2,406.7 L234.5,406.0 L234.8,405.4 L235.1,404.8 L235.3,404.2 L235.4,403.7 L235.6,403.2
L235.7,402.7 L235.7,402.3 L235.7,401.9 L235.7,401.6 L235.6,401.3 L235.4,401.1 L235.3,401.0 L235.1,400.9
L234.8,400.8 L234.5,400.8 L234.2,400.9 L233.9,401.0 L233.5,401.2 L233.1,401.5 L232.7,401.8 L232.2,402.1
L231.7,402.5 L231.3,403.0 L230.8,403.5 L230.3,404.0 L229.8,404.6 L229.3,405.1 L228.8,405.8 L228.3,406.4
L227.9,407.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M275.7,405.5 L275.2,406.3 L274.8,407.1 L274.4,407.9 L274.1,408.7 L273.9,409.5 L273.7,410.4 L273.5,411.2
L273.4,411.9 L273.3,412.7 L273.3,413.4 L273.4,414.1 L273.5,414.7 L273.7,415.3 L273.9,415.9 L274.2,416.4
L274.5,416.8 L274.9,417.2 L275.3,417.5 L275.8,417.7 L276.3,417.9 L276.8,418.0 L277.4,418.0 L278.0,417.9
L278.6,417.8 L279.2,417.6 L279.9,417.4 L280.5,417.0 L281.2,416.6 L281.8,416.2 L282.4,415.7 L283.1,415.1
L283.7,414.5 L284.3,413.8 L284.8,413.1 L285.3,412.4 L285.8,411.6 L286.3,410.8 L286.7,410.0 L287.1,409.2
L287.4,408.4 L287.6,407.6 L287.8,406.7 L288.0,405.9 L288.1,405.2 L288.2,404.4 L288.2,403.7 L288.1,403.0
L288.0,402.4 L287.8,401.8 L287.6,401.2 L287.3,400.7 L287.0,400.3 L286.6,399.9 L286.2,399.6 L285.7,399.4
L285.2,399.2 L284.7,399.1 L284.1,399.1 L283.5,399.2 L282.9,399.3 L282.3,399.5 L281.6,399.7 L281.0,400.1
L280.3,400.5 L279.7,400.9 L279.1,401.4 L278.4,402.0 L277.8,402.6 L277.2,403.3 L276.7,404.0 L276.2,404.7
L275.7,405.5 Z '/> <path stroke='rgb(148, 0, 211)' d='M275.7,405.5 L275.2,406.3 L274.8,407.1 L274.4,407.9 L274.1,408.7 L273.9,409.5 L273.7,410.4 L273.5,411.2
L273.4,411.9 L273.3,412.7 L273.3,413.4 L273.4,414.1 L273.5,414.7 L273.7,415.3 L273.9,415.9 L274.2,416.4
L274.5,416.8 L274.9,417.2 L275.3,417.5 L275.8,417.7 L276.3,417.9 L276.8,418.0 L277.4,418.0 L278.0,417.9
L278.6,417.8 L279.2,417.6 L279.9,417.4 L280.5,417.0 L281.2,416.6 L281.8,416.2 L282.4,415.7 L283.1,415.1
L283.7,414.5 L284.3,413.8 L284.8,413.1 L285.3,412.4 L285.8,411.6 L286.3,410.8 L286.7,410.0 L287.1,409.2
L287.4,408.4 L287.6,407.6 L287.8,406.7 L288.0,405.9 L288.1,405.2 L288.2,404.4 L288.2,403.7 L288.1,403.0
L288.0,402.4 L287.8,401.8 L287.6,401.2 L287.3,400.7 L287.0,400.3 L286.6,399.9 L286.2,399.6 L285.7,399.4
L285.2,399.2 L284.7,399.1 L284.1,399.1 L283.5,399.2 L282.9,399.3 L282.3,399.5 L281.6,399.7 L281.0,400.1
L280.3,400.5 L279.7,400.9 L279.1,401.4 L278.4,402.0 L277.8,402.6 L277.2,403.3 L276.7,404.0 L276.2,404.7
L275.7,405.5 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M324.9,405.6 L324.6,406.5 L324.3,407.3 L324.1,408.2 L323.9,409.0 L323.7,409.9 L323.7,410.8 L323.7,411.6
L323.7,412.4 L323.8,413.2 L324.0,414.0 L324.2,414.7 L324.5,415.3 L324.8,415.9 L325.2,416.5 L325.6,417.0
L326.1,417.4 L326.6,417.8 L327.2,418.1 L327.7,418.3 L328.4,418.4 L329.0,418.5 L329.6,418.5 L330.3,418.4
L331.0,418.3 L331.7,418.0 L332.3,417.7 L333.0,417.4 L333.7,416.9 L334.3,416.4 L334.9,415.9 L335.5,415.2
L336.1,414.6 L336.6,413.8 L337.1,413.1 L337.6,412.3 L338.0,411.5 L338.3,410.6 L338.6,409.8 L338.8,408.9
L339.0,408.1 L339.2,407.2 L339.2,406.3 L339.2,405.5 L339.2,404.7 L339.1,403.9 L338.9,403.1 L338.7,402.4
L338.4,401.8 L338.1,401.2 L337.7,400.6 L337.3,400.1 L336.8,399.7 L336.3,399.3 L335.7,399.0 L335.2,398.8
L334.5,398.7 L333.9,398.6 L333.3,398.6 L332.6,398.7 L331.9,398.8 L331.2,399.1 L330.6,399.4 L329.9,399.7
L329.2,400.2 L328.6,400.7 L328.0,401.2 L327.4,401.9 L326.8,402.5 L326.3,403.3 L325.8,404.0 L325.3,404.8
L324.9,405.6 Z '/> <path stroke='rgb(148, 0, 211)' d='M324.9,405.6 L324.6,406.5 L324.3,407.3 L324.1,408.2 L323.9,409.0 L323.7,409.9 L323.7,410.8 L323.7,411.6
L323.7,412.4 L323.8,413.2 L324.0,414.0 L324.2,414.7 L324.5,415.3 L324.8,415.9 L325.2,416.5 L325.6,417.0
L326.1,417.4 L326.6,417.8 L327.2,418.1 L327.7,418.3 L328.4,418.4 L329.0,418.5 L329.6,418.5 L330.3,418.4
L331.0,418.3 L331.7,418.0 L332.3,417.7 L333.0,417.4 L333.7,416.9 L334.3,416.4 L334.9,415.9 L335.5,415.2
L336.1,414.6 L336.6,413.8 L337.1,413.1 L337.6,412.3 L338.0,411.5 L338.3,410.6 L338.6,409.8 L338.8,408.9
L339.0,408.1 L339.2,407.2 L339.2,406.3 L339.2,405.5 L339.2,404.7 L339.1,403.9 L338.9,403.1 L338.7,402.4
L338.4,401.8 L338.1,401.2 L337.7,400.6 L337.3,400.1 L336.8,399.7 L336.3,399.3 L335.7,399.0 L335.2,398.8
L334.5,398.7 L333.9,398.6 L333.3,398.6 L332.6,398.7 L331.9,398.8 L331.2,399.1 L330.6,399.4 L329.9,399.7
L329.2,400.2 L328.6,400.7 L328.0,401.2 L327.4,401.9 L326.8,402.5 L326.3,403.3 L325.8,404.0 L325.3,404.8
L324.9,405.6 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M380.5,407.3 L380.0,407.9 L379.6,408.4 L379.2,409.0 L378.8,409.6 L378.5,410.2 L378.2,410.8 L377.9,411.3
L377.6,411.8 L377.4,412.4 L377.2,412.8 L377.1,413.3 L377.0,413.7 L376.9,414.0 L376.9,414.4 L376.9,414.6
L376.9,414.9 L377.0,415.1 L377.1,415.2 L377.3,415.3 L377.5,415.3 L377.7,415.3 L378.0,415.2 L378.3,415.1
L378.7,415.0 L379.0,414.7 L379.4,414.5 L379.8,414.2 L380.2,413.8 L380.7,413.4 L381.1,413.0 L381.6,412.5
L382.0,412.0 L382.5,411.5 L382.9,411.0 L383.4,410.4 L383.8,409.8 L384.3,409.2 L384.7,408.7 L385.1,408.1
L385.5,407.5 L385.8,406.9 L386.1,406.3 L386.4,405.8 L386.7,405.3 L386.9,404.7 L387.1,404.3 L387.2,403.8
L387.3,403.4 L387.4,403.1 L387.4,402.7 L387.4,402.5 L387.4,402.2 L387.3,402.0 L387.2,401.9 L387.0,401.8
L386.8,401.8 L386.6,401.8 L386.3,401.9 L386.0,402.0 L385.6,402.1 L385.3,402.4 L384.9,402.6 L384.5,402.9
L384.1,403.3 L383.6,403.7 L383.2,404.1 L382.7,404.6 L382.3,405.1 L381.8,405.6 L381.4,406.1 L380.9,406.7
L380.5,407.3 Z '/> <path stroke='rgb(148, 0, 211)' d='M380.5,407.3 L380.0,407.9 L379.6,408.4 L379.2,409.0 L378.8,409.6 L378.5,410.2 L378.2,410.8 L377.9,411.3
L377.6,411.8 L377.4,412.4 L377.2,412.8 L377.1,413.3 L377.0,413.7 L376.9,414.0 L376.9,414.4 L376.9,414.6
L376.9,414.9 L377.0,415.1 L377.1,415.2 L377.3,415.3 L377.5,415.3 L377.7,415.3 L378.0,415.2 L378.3,415.1
L378.7,415.0 L379.0,414.7 L379.4,414.5 L379.8,414.2 L380.2,413.8 L380.7,413.4 L381.1,413.0 L381.6,412.5
L382.0,412.0 L382.5,411.5 L382.9,411.0 L383.4,410.4 L383.8,409.8 L384.3,409.2 L384.7,408.7 L385.1,408.1
L385.5,407.5 L385.8,406.9 L386.1,406.3 L386.4,405.8 L386.7,405.3 L386.9,404.7 L387.1,404.3 L387.2,403.8
L387.3,403.4 L387.4,403.1 L387.4,402.7 L387.4,402.5 L387.4,402.2 L387.3,402.0 L387.2,401.9 L387.0,401.8
L386.8,401.8 L386.6,401.8 L386.3,401.9 L386.0,402.0 L385.6,402.1 L385.3,402.4 L384.9,402.6 L384.5,402.9
L384.1,403.3 L383.6,403.7 L383.2,404.1 L382.7,404.6 L382.3,405.1 L381.8,405.6 L381.4,406.1 L380.9,406.7
L380.5,407.3 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M430.3,407.3 L430.1,407.7 L430.0,408.0 L429.9,408.4 L429.8,408.7 L429.8,409.1 L429.7,409.4 L429.7,409.8
L429.7,410.1 L429.7,410.4 L429.8,410.7 L429.9,411.0 L430.0,411.3 L430.1,411.6 L430.3,411.8 L430.4,412.0
L430.6,412.2 L430.8,412.3 L431.0,412.4 L431.3,412.5 L431.5,412.6 L431.8,412.6 L432.0,412.6 L432.3,412.6
L432.6,412.5 L432.8,412.4 L433.1,412.3 L433.4,412.1 L433.7,412.0 L433.9,411.8 L434.2,411.5 L434.4,411.3
L434.6,411.0 L434.9,410.7 L435.1,410.4 L435.3,410.1 L435.4,409.8 L435.6,409.4 L435.7,409.1 L435.8,408.7
L435.9,408.4 L435.9,408.0 L436.0,407.7 L436.0,407.3 L436.0,407.0 L436.0,406.7 L435.9,406.4 L435.8,406.1
L435.7,405.8 L435.6,405.5 L435.4,405.3 L435.3,405.1 L435.1,404.9 L434.9,404.8 L434.7,404.7 L434.4,404.6
L434.2,404.5 L433.9,404.5 L433.7,404.5 L433.4,404.5 L433.1,404.6 L432.9,404.7 L432.6,404.8 L432.3,405.0
L432.0,405.1 L431.8,405.3 L431.5,405.6 L431.3,405.8 L431.1,406.1 L430.8,406.4 L430.6,406.7 L430.4,407.0
L430.3,407.3 Z '/> <path stroke='rgb(148, 0, 211)' d='M430.3,407.3 L430.1,407.7 L430.0,408.0 L429.9,408.4 L429.8,408.7 L429.8,409.1 L429.7,409.4 L429.7,409.8
L429.7,410.1 L429.7,410.4 L429.8,410.7 L429.9,411.0 L430.0,411.3 L430.1,411.6 L430.3,411.8 L430.4,412.0
L430.6,412.2 L430.8,412.3 L431.0,412.4 L431.3,412.5 L431.5,412.6 L431.8,412.6 L432.0,412.6 L432.3,412.6
L432.6,412.5 L432.8,412.4 L433.1,412.3 L433.4,412.1 L433.7,412.0 L433.9,411.8 L434.2,411.5 L434.4,411.3
L434.6,411.0 L434.9,410.7 L435.1,410.4 L435.3,410.1 L435.4,409.8 L435.6,409.4 L435.7,409.1 L435.8,408.7
L435.9,408.4 L435.9,408.0 L436.0,407.7 L436.0,407.3 L436.0,407.0 L436.0,406.7 L435.9,406.4 L435.8,406.1
L435.7,405.8 L435.6,405.5 L435.4,405.3 L435.3,405.1 L435.1,404.9 L434.9,404.8 L434.7,404.7 L434.4,404.6
L434.2,404.5 L433.9,404.5 L433.7,404.5 L433.4,404.5 L433.1,404.6 L432.9,404.7 L432.6,404.8 L432.3,405.0
L432.0,405.1 L431.8,405.3 L431.5,405.6 L431.3,405.8 L431.1,406.1 L430.8,406.4 L430.6,406.7 L430.4,407.0
L430.3,407.3 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M487.0,405.8 L486.8,405.6 L486.6,405.4 L486.4,405.3 L486.2,405.2 L485.9,405.1 L485.6,405.1 L485.3,405.0
L485.0,405.0 L484.7,405.0 L484.4,405.1 L484.1,405.2 L483.7,405.3 L483.4,405.4 L483.1,405.5 L482.7,405.7
L482.4,405.9 L482.1,406.1 L481.8,406.3 L481.5,406.6 L481.2,406.9 L480.9,407.1 L480.7,407.4 L480.5,407.7
L480.3,408.0 L480.1,408.3 L480.0,408.6 L479.9,408.9 L479.8,409.3 L479.7,409.6 L479.7,409.8 L479.7,410.1
L479.7,410.4 L479.8,410.7 L479.9,410.9 L480.0,411.1 L480.1,411.3 L480.3,411.5 L480.5,411.7 L480.7,411.8
L480.9,411.9 L481.2,412.0 L481.5,412.0 L481.8,412.1 L482.1,412.1 L482.4,412.1 L482.7,412.0 L483.0,411.9
L483.4,411.8 L483.7,411.7 L484.0,411.6 L484.4,411.4 L484.7,411.2 L485.0,411.0 L485.3,410.8 L485.6,410.5
L485.9,410.2 L486.2,410.0 L486.4,409.7 L486.6,409.4 L486.8,409.1 L487.0,408.8 L487.1,408.5 L487.2,408.2
L487.3,407.8 L487.4,407.5 L487.4,407.3 L487.4,407.0 L487.4,406.7 L487.3,406.4 L487.2,406.2 L487.1,406.0
L487.0,405.8 Z '/> <path stroke='rgb(148, 0, 211)' d='M487.0,405.8 L486.8,405.6 L486.6,405.4 L486.4,405.3 L486.2,405.2 L485.9,405.1 L485.6,405.1 L485.3,405.0
L485.0,405.0 L484.7,405.0 L484.4,405.1 L484.1,405.2 L483.7,405.3 L483.4,405.4 L483.1,405.5 L482.7,405.7
L482.4,405.9 L482.1,406.1 L481.8,406.3 L481.5,406.6 L481.2,406.9 L480.9,407.1 L480.7,407.4 L480.5,407.7
L480.3,408.0 L480.1,408.3 L480.0,408.6 L479.9,408.9 L479.8,409.3 L479.7,409.6 L479.7,409.8 L479.7,410.1
L479.7,410.4 L479.8,410.7 L479.9,410.9 L480.0,411.1 L480.1,411.3 L480.3,411.5 L480.5,411.7 L480.7,411.8
L480.9,411.9 L481.2,412.0 L481.5,412.0 L481.8,412.1 L482.1,412.1 L482.4,412.1 L482.7,412.0 L483.0,411.9
L483.4,411.8 L483.7,411.7 L484.0,411.6 L484.4,411.4 L484.7,411.2 L485.0,411.0 L485.3,410.8 L485.6,410.5
L485.9,410.2 L486.2,410.0 L486.4,409.7 L486.6,409.4 L486.8,409.1 L487.0,408.8 L487.1,408.5 L487.2,408.2
L487.3,407.8 L487.4,407.5 L487.4,407.3 L487.4,407.0 L487.4,406.7 L487.3,406.4 L487.2,406.2 L487.1,406.0
L487.0,405.8 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M124.9,360.5 L125.2,360.9 L125.5,361.2 L125.8,361.5 L126.2,361.8 L126.5,362.1 L126.9,362.4 L127.3,362.6
L127.8,362.7 L128.2,362.9 L128.6,363.0 L129.0,363.0 L129.5,363.0 L129.9,363.0 L130.3,363.0 L130.7,362.9
L131.1,362.7 L131.4,362.5 L131.8,362.3 L132.1,362.1 L132.4,361.8 L132.6,361.5 L132.9,361.2 L133.1,360.8
L133.2,360.4 L133.4,360.0 L133.5,359.6 L133.5,359.2 L133.5,358.7 L133.5,358.3 L133.5,357.8 L133.4,357.4
L133.3,356.9 L133.1,356.5 L132.9,356.0 L132.7,355.6 L132.4,355.2 L132.1,354.8 L131.8,354.5 L131.5,354.2
L131.1,353.9 L130.8,353.6 L130.4,353.3 L130.0,353.1 L129.5,353.0 L129.1,352.8 L128.7,352.7 L128.3,352.7
L127.8,352.7 L127.4,352.7 L127.0,352.7 L126.6,352.8 L126.2,353.0 L125.9,353.2 L125.5,353.4 L125.2,353.6
L124.9,353.9 L124.7,354.2 L124.4,354.5 L124.2,354.9 L124.1,355.3 L123.9,355.7 L123.8,356.1 L123.8,356.5
L123.8,357.0 L123.8,357.4 L123.8,357.9 L123.9,358.3 L124.0,358.8 L124.2,359.2 L124.4,359.7 L124.6,360.1
L124.9,360.5 Z '/> <path stroke='rgb(148, 0, 211)' d='M124.9,360.5 L125.2,360.9 L125.5,361.2 L125.8,361.5 L126.2,361.8 L126.5,362.1 L126.9,362.4 L127.3,362.6
L127.8,362.7 L128.2,362.9 L128.6,363.0 L129.0,363.0 L129.5,363.0 L129.9,363.0 L130.3,363.0 L130.7,362.9
L131.1,362.7 L131.4,362.5 L131.8,362.3 L132.1,362.1 L132.4,361.8 L132.6,361.5 L132.9,361.2 L133.1,360.8
L133.2,360.4 L133.4,360.0 L133.5,359.6 L133.5,359.2 L133.5,358.7 L133.5,358.3 L133.5,357.8 L133.4,357.4
L133.3,356.9 L133.1,356.5 L132.9,356.0 L132.7,355.6 L132.4,355.2 L132.1,354.8 L131.8,354.5 L131.5,354.2
L131.1,353.9 L130.8,353.6 L130.4,353.3 L130.0,353.1 L129.5,353.0 L129.1,352.8 L128.7,352.7 L128.3,352.7
L127.8,352.7 L127.4,352.7 L127.0,352.7 L126.6,352.8 L126.2,353.0 L125.9,353.2 L125.5,353.4 L125.2,353.6
L124.9,353.9 L124.7,354.2 L124.4,354.5 L124.2,354.9 L124.1,355.3 L123.9,355.7 L123.8,356.1 L123.8,356.5
L123.8,357.0 L123.8,357.4 L123.8,357.9 L123.9,358.3 L124.0,358.8 L124.2,359.2 L124.4,359.7 L124.6,360.1
L124.9,360.5 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M186.7,360.8 L186.7,360.6 L186.7,360.4 L186.7,360.1 L186.6,359.9 L186.4,359.6 L186.1,359.3 L185.9,359.0
L185.5,358.7 L185.2,358.4 L184.7,358.1 L184.3,357.8 L183.8,357.4 L183.2,357.1 L182.7,356.8 L182.1,356.5
L181.5,356.2 L180.9,355.9 L180.2,355.7 L179.6,355.4 L178.9,355.2 L178.3,355.0 L177.7,354.8 L177.0,354.6
L176.4,354.5 L175.9,354.4 L175.3,354.3 L174.8,354.2 L174.3,354.2 L173.8,354.2 L173.4,354.2 L173.1,354.2
L172.7,354.3 L172.5,354.4 L172.3,354.6 L172.1,354.7 L172.0,354.9 L172.0,355.1 L172.0,355.3 L172.0,355.6
L172.1,355.8 L172.3,356.1 L172.6,356.4 L172.8,356.7 L173.2,357.0 L173.5,357.3 L174.0,357.6 L174.4,357.9
L174.9,358.3 L175.5,358.6 L176.0,358.9 L176.6,359.2 L177.2,359.5 L177.8,359.8 L178.5,360.0 L179.1,360.3
L179.8,360.5 L180.4,360.7 L181.0,360.9 L181.7,361.1 L182.3,361.2 L182.8,361.3 L183.4,361.4 L183.9,361.5
L184.4,361.5 L184.9,361.5 L185.3,361.5 L185.6,361.5 L186.0,361.4 L186.2,361.3 L186.4,361.1 L186.6,361.0
L186.7,360.8 Z '/> <path stroke='rgb(148, 0, 211)' d='M186.7,360.8 L186.7,360.6 L186.7,360.4 L186.7,360.1 L186.6,359.9 L186.4,359.6 L186.1,359.3 L185.9,359.0
L185.5,358.7 L185.2,358.4 L184.7,358.1 L184.3,357.8 L183.8,357.4 L183.2,357.1 L182.7,356.8 L182.1,356.5
L181.5,356.2 L180.9,355.9 L180.2,355.7 L179.6,355.4 L178.9,355.2 L178.3,355.0 L177.7,354.8 L177.0,354.6
L176.4,354.5 L175.9,354.4 L175.3,354.3 L174.8,354.2 L174.3,354.2 L173.8,354.2 L173.4,354.2 L173.1,354.2
L172.7,354.3 L172.5,354.4 L172.3,354.6 L172.1,354.7 L172.0,354.9 L172.0,355.1 L172.0,355.3 L172.0,355.6
L172.1,355.8 L172.3,356.1 L172.6,356.4 L172.8,356.7 L173.2,357.0 L173.5,357.3 L174.0,357.6 L174.4,357.9
L174.9,358.3 L175.5,358.6 L176.0,358.9 L176.6,359.2 L177.2,359.5 L177.8,359.8 L178.5,360.0 L179.1,360.3
L179.8,360.5 L180.4,360.7 L181.0,360.9 L181.7,361.1 L182.3,361.2 L182.8,361.3 L183.4,361.4 L183.9,361.5
L184.4,361.5 L184.9,361.5 L185.3,361.5 L185.6,361.5 L186.0,361.4 L186.2,361.3 L186.4,361.1 L186.6,361.0
L186.7,360.8 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M234.9,353.1 L234.6,352.8 L234.3,352.6 L234.0,352.5 L233.6,352.4 L233.2,352.3 L232.8,352.2 L232.4,352.2
L231.9,352.3 L231.4,352.4 L230.9,352.5 L230.4,352.7 L230.0,352.9 L229.5,353.2 L229.0,353.5 L228.5,353.8
L228.0,354.1 L227.6,354.5 L227.1,354.9 L226.7,355.3 L226.4,355.8 L226.0,356.2 L225.7,356.7 L225.4,357.2
L225.1,357.7 L224.9,358.2 L224.7,358.7 L224.6,359.2 L224.5,359.6 L224.4,360.1 L224.4,360.5 L224.4,360.9
L224.5,361.3 L224.6,361.7 L224.8,362.0 L225.0,362.4 L225.2,362.6 L225.5,362.9 L225.8,363.1 L226.1,363.2
L226.5,363.3 L226.9,363.4 L227.3,363.5 L227.7,363.5 L228.2,363.4 L228.7,363.3 L229.2,363.2 L229.7,363.0
L230.1,362.8 L230.6,362.5 L231.1,362.2 L231.6,361.9 L232.1,361.6 L232.5,361.2 L233.0,360.8 L233.4,360.4
L233.7,359.9 L234.1,359.5 L234.4,359.0 L234.7,358.5 L235.0,358.0 L235.2,357.5 L235.4,357.0 L235.5,356.5
L235.6,356.1 L235.7,355.6 L235.7,355.2 L235.7,354.8 L235.6,354.4 L235.5,354.0 L235.3,353.7 L235.1,353.3
L234.9,353.1 Z '/> <path stroke='rgb(148, 0, 211)' d='M234.9,353.1 L234.6,352.8 L234.3,352.6 L234.0,352.5 L233.6,352.4 L233.2,352.3 L232.8,352.2 L232.4,352.2
L231.9,352.3 L231.4,352.4 L230.9,352.5 L230.4,352.7 L230.0,352.9 L229.5,353.2 L229.0,353.5 L228.5,353.8
L228.0,354.1 L227.6,354.5 L227.1,354.9 L226.7,355.3 L226.4,355.8 L226.0,356.2 L225.7,356.7 L225.4,357.2
L225.1,357.7 L224.9,358.2 L224.7,358.7 L224.6,359.2 L224.5,359.6 L224.4,360.1 L224.4,360.5 L224.4,360.9
L224.5,361.3 L224.6,361.7 L224.8,362.0 L225.0,362.4 L225.2,362.6 L225.5,362.9 L225.8,363.1 L226.1,363.2
L226.5,363.3 L226.9,363.4 L227.3,363.5 L227.7,363.5 L228.2,363.4 L228.7,363.3 L229.2,363.2 L229.7,363.0
L230.1,362.8 L230.6,362.5 L231.1,362.2 L231.6,361.9 L232.1,361.6 L232.5,361.2 L233.0,360.8 L233.4,360.4
L233.7,359.9 L234.1,359.5 L234.4,359.0 L234.7,358.5 L235.0,358.0 L235.2,357.5 L235.4,357.0 L235.5,356.5
L235.6,356.1 L235.7,355.6 L235.7,355.2 L235.7,354.8 L235.6,354.4 L235.5,354.0 L235.3,353.7 L235.1,353.3
L234.9,353.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M278.5,356.5 L278.2,357.0 L278.0,357.5 L277.7,358.0 L277.5,358.5 L277.3,359.0 L277.2,359.5 L277.0,359.9
L276.9,360.4 L276.9,360.8 L276.8,361.2 L276.8,361.6 L276.8,362.0 L276.9,362.3 L276.9,362.6 L277.0,362.9
L277.2,363.1 L277.3,363.3 L277.5,363.4 L277.7,363.5 L278.0,363.5 L278.2,363.5 L278.5,363.5 L278.8,363.4
L279.1,363.3 L279.4,363.1 L279.7,362.9 L280.1,362.7 L280.4,362.4 L280.7,362.1 L281.1,361.8 L281.4,361.4
L281.8,361.0 L282.1,360.6 L282.4,360.1 L282.7,359.6 L283.0,359.2 L283.3,358.7 L283.5,358.2 L283.8,357.7
L284.0,357.2 L284.2,356.7 L284.3,356.2 L284.5,355.8 L284.6,355.3 L284.6,354.9 L284.7,354.5 L284.7,354.1
L284.7,353.7 L284.6,353.4 L284.6,353.1 L284.5,352.8 L284.3,352.6 L284.2,352.4 L284.0,352.3 L283.8,352.2
L283.5,352.2 L283.3,352.2 L283.0,352.2 L282.7,352.3 L282.4,352.4 L282.1,352.6 L281.8,352.8 L281.4,353.0
L281.1,353.3 L280.8,353.6 L280.4,353.9 L280.1,354.3 L279.7,354.7 L279.4,355.1 L279.1,355.6 L278.8,356.1
L278.5,356.5 Z '/> <path stroke='rgb(148, 0, 211)' d='M278.5,356.5 L278.2,357.0 L278.0,357.5 L277.7,358.0 L277.5,358.5 L277.3,359.0 L277.2,359.5 L277.0,359.9
L276.9,360.4 L276.9,360.8 L276.8,361.2 L276.8,361.6 L276.8,362.0 L276.9,362.3 L276.9,362.6 L277.0,362.9
L277.2,363.1 L277.3,363.3 L277.5,363.4 L277.7,363.5 L278.0,363.5 L278.2,363.5 L278.5,363.5 L278.8,363.4
L279.1,363.3 L279.4,363.1 L279.7,362.9 L280.1,362.7 L280.4,362.4 L280.7,362.1 L281.1,361.8 L281.4,361.4
L281.8,361.0 L282.1,360.6 L282.4,360.1 L282.7,359.6 L283.0,359.2 L283.3,358.7 L283.5,358.2 L283.8,357.7
L284.0,357.2 L284.2,356.7 L284.3,356.2 L284.5,355.8 L284.6,355.3 L284.6,354.9 L284.7,354.5 L284.7,354.1
L284.7,353.7 L284.6,353.4 L284.6,353.1 L284.5,352.8 L284.3,352.6 L284.2,352.4 L284.0,352.3 L283.8,352.2
L283.5,352.2 L283.3,352.2 L283.0,352.2 L282.7,352.3 L282.4,352.4 L282.1,352.6 L281.8,352.8 L281.4,353.0
L281.1,353.3 L280.8,353.6 L280.4,353.9 L280.1,354.3 L279.7,354.7 L279.4,355.1 L279.1,355.6 L278.8,356.1
L278.5,356.5 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M339.9,363.2 L340.2,362.7 L340.4,362.2 L340.6,361.6 L340.7,360.9 L340.7,360.3 L340.6,359.6 L340.5,358.9
L340.3,358.2 L340.0,357.6 L339.7,356.9 L339.3,356.2 L338.9,355.5 L338.4,354.9 L337.8,354.2 L337.2,353.6
L336.6,353.1 L335.9,352.5 L335.2,352.0 L334.4,351.6 L333.6,351.2 L332.8,350.8 L332.0,350.6 L331.2,350.3
L330.4,350.1 L329.6,350.0 L328.9,349.9 L328.1,349.9 L327.4,350.0 L326.7,350.1 L326.0,350.3 L325.4,350.5
L324.8,350.8 L324.2,351.1 L323.8,351.5 L323.4,352.0 L323.0,352.5 L322.7,353.0 L322.5,353.5 L322.3,354.1
L322.2,354.8 L322.2,355.4 L322.3,356.1 L322.4,356.8 L322.6,357.5 L322.9,358.1 L323.2,358.8 L323.6,359.5
L324.0,360.2 L324.5,360.8 L325.1,361.5 L325.7,362.1 L326.3,362.6 L327.0,363.2 L327.7,363.7 L328.5,364.1
L329.3,364.5 L330.1,364.9 L330.9,365.1 L331.7,365.4 L332.5,365.6 L333.3,365.7 L334.0,365.8 L334.8,365.8
L335.5,365.7 L336.2,365.6 L336.9,365.4 L337.5,365.2 L338.1,364.9 L338.7,364.6 L339.1,364.2 L339.5,363.7
L339.9,363.2 Z '/> <path stroke='rgb(148, 0, 211)' d='M339.9,363.2 L340.2,362.7 L340.4,362.2 L340.6,361.6 L340.7,360.9 L340.7,360.3 L340.6,359.6 L340.5,358.9
L340.3,358.2 L340.0,357.6 L339.7,356.9 L339.3,356.2 L338.9,355.5 L338.4,354.9 L337.8,354.2 L337.2,353.6
L336.6,353.1 L335.9,352.5 L335.2,352.0 L334.4,351.6 L333.6,351.2 L332.8,350.8 L332.0,350.6 L331.2,350.3
L330.4,350.1 L329.6,350.0 L328.9,349.9 L328.1,349.9 L327.4,350.0 L326.7,350.1 L326.0,350.3 L325.4,350.5
L324.8,350.8 L324.2,351.1 L323.8,351.5 L323.4,352.0 L323.0,352.5 L322.7,353.0 L322.5,353.5 L322.3,354.1
L322.2,354.8 L322.2,355.4 L322.3,356.1 L322.4,356.8 L322.6,357.5 L322.9,358.1 L323.2,358.8 L323.6,359.5
L324.0,360.2 L324.5,360.8 L325.1,361.5 L325.7,362.1 L326.3,362.6 L327.0,363.2 L327.7,363.7 L328.5,364.1
L329.3,364.5 L330.1,364.9 L330.9,365.1 L331.7,365.4 L332.5,365.6 L333.3,365.7 L334.0,365.8 L334.8,365.8
L335.5,365.7 L336.2,365.6 L336.9,365.4 L337.5,365.2 L338.1,364.9 L338.7,364.6 L339.1,364.2 L339.5,363.7
L339.9,363.2 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M378.5,360.6 L378.9,361.1 L379.3,361.6 L379.8,362.1 L380.3,362.6 L380.8,363.0 L381.3,363.3 L381.8,363.6
L382.3,363.9 L382.8,364.2 L383.3,364.3 L383.8,364.5 L384.3,364.6 L384.8,364.6 L385.2,364.6 L385.7,364.5
L386.1,364.4 L386.4,364.2 L386.8,364.0 L387.1,363.7 L387.3,363.4 L387.6,363.1 L387.8,362.7 L387.9,362.3
L388.0,361.8 L388.0,361.3 L388.1,360.8 L388.0,360.2 L387.9,359.7 L387.8,359.1 L387.6,358.5 L387.4,357.9
L387.2,357.4 L386.9,356.8 L386.6,356.2 L386.2,355.6 L385.8,355.1 L385.4,354.6 L385.0,354.1 L384.5,353.6
L384.0,353.1 L383.5,352.7 L383.0,352.4 L382.5,352.1 L382.0,351.8 L381.5,351.5 L381.0,351.4 L380.5,351.2
L380.0,351.1 L379.5,351.1 L379.1,351.1 L378.6,351.2 L378.2,351.3 L377.9,351.5 L377.5,351.7 L377.2,352.0
L377.0,352.3 L376.7,352.6 L376.5,353.0 L376.4,353.4 L376.3,353.9 L376.3,354.4 L376.2,354.9 L376.3,355.5
L376.4,356.0 L376.5,356.6 L376.7,357.2 L376.9,357.8 L377.1,358.3 L377.4,358.9 L377.7,359.5 L378.1,360.1
L378.5,360.6 Z '/> <path stroke='rgb(148, 0, 211)' d='M378.5,360.6 L378.9,361.1 L379.3,361.6 L379.8,362.1 L380.3,362.6 L380.8,363.0 L381.3,363.3 L381.8,363.6
L382.3,363.9 L382.8,364.2 L383.3,364.3 L383.8,364.5 L384.3,364.6 L384.8,364.6 L385.2,364.6 L385.7,364.5
L386.1,364.4 L386.4,364.2 L386.8,364.0 L387.1,363.7 L387.3,363.4 L387.6,363.1 L387.8,362.7 L387.9,362.3
L388.0,361.8 L388.0,361.3 L388.1,360.8 L388.0,360.2 L387.9,359.7 L387.8,359.1 L387.6,358.5 L387.4,357.9
L387.2,357.4 L386.9,356.8 L386.6,356.2 L386.2,355.6 L385.8,355.1 L385.4,354.6 L385.0,354.1 L384.5,353.6
L384.0,353.1 L383.5,352.7 L383.0,352.4 L382.5,352.1 L382.0,351.8 L381.5,351.5 L381.0,351.4 L380.5,351.2
L380.0,351.1 L379.5,351.1 L379.1,351.1 L378.6,351.2 L378.2,351.3 L377.9,351.5 L377.5,351.7 L377.2,352.0
L377.0,352.3 L376.7,352.6 L376.5,353.0 L376.4,353.4 L376.3,353.9 L376.3,354.4 L376.2,354.9 L376.3,355.5
L376.4,356.0 L376.5,356.6 L376.7,357.2 L376.9,357.8 L377.1,358.3 L377.4,358.9 L377.7,359.5 L378.1,360.1
L378.5,360.6 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M441.0,358.4 L440.9,358.2 L440.9,357.9 L440.7,357.6 L440.5,357.4 L440.3,357.1 L440.0,356.9 L439.6,356.6
L439.2,356.4 L438.7,356.2 L438.2,356.0 L437.7,355.8 L437.1,355.6 L436.5,355.4 L435.8,355.3 L435.2,355.2
L434.5,355.1 L433.8,355.0 L433.1,354.9 L432.4,354.9 L431.6,354.9 L431.0,354.9 L430.3,354.9 L429.6,354.9
L429.0,355.0 L428.4,355.1 L427.8,355.2 L427.3,355.4 L426.8,355.5 L426.3,355.7 L425.9,355.9 L425.6,356.1
L425.3,356.3 L425.1,356.5 L424.9,356.8 L424.8,357.0 L424.7,357.3 L424.8,357.5 L424.8,357.8 L425.0,358.1
L425.2,358.3 L425.4,358.6 L425.7,358.8 L426.1,359.1 L426.5,359.3 L427.0,359.5 L427.5,359.7 L428.0,359.9
L428.6,360.1 L429.2,360.3 L429.9,360.4 L430.5,360.5 L431.2,360.6 L431.9,360.7 L432.6,360.8 L433.3,360.8
L434.1,360.8 L434.7,360.8 L435.4,360.8 L436.1,360.8 L436.7,360.7 L437.3,360.6 L437.9,360.5 L438.4,360.3
L438.9,360.2 L439.4,360.0 L439.8,359.8 L440.1,359.6 L440.4,359.4 L440.6,359.2 L440.8,358.9 L440.9,358.7
L441.0,358.4 Z '/> <path stroke='rgb(148, 0, 211)' d='M441.0,358.4 L440.9,358.2 L440.9,357.9 L440.7,357.6 L440.5,357.4 L440.3,357.1 L440.0,356.9 L439.6,356.6
L439.2,356.4 L438.7,356.2 L438.2,356.0 L437.7,355.8 L437.1,355.6 L436.5,355.4 L435.8,355.3 L435.2,355.2
L434.5,355.1 L433.8,355.0 L433.1,354.9 L432.4,354.9 L431.6,354.9 L431.0,354.9 L430.3,354.9 L429.6,354.9
L429.0,355.0 L428.4,355.1 L427.8,355.2 L427.3,355.4 L426.8,355.5 L426.3,355.7 L425.9,355.9 L425.6,356.1
L425.3,356.3 L425.1,356.5 L424.9,356.8 L424.8,357.0 L424.7,357.3 L424.8,357.5 L424.8,357.8 L425.0,358.1
L425.2,358.3 L425.4,358.6 L425.7,358.8 L426.1,359.1 L426.5,359.3 L427.0,359.5 L427.5,359.7 L428.0,359.9
L428.6,360.1 L429.2,360.3 L429.9,360.4 L430.5,360.5 L431.2,360.6 L431.9,360.7 L432.6,360.8 L433.3,360.8
L434.1,360.8 L434.7,360.8 L435.4,360.8 L436.1,360.8 L436.7,360.7 L437.3,360.6 L437.9,360.5 L438.4,360.3
L438.9,360.2 L439.4,360.0 L439.8,359.8 L440.1,359.6 L440.4,359.4 L440.6,359.2 L440.8,358.9 L440.9,358.7
L441.0,358.4 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M480.2,357.6 L480.1,357.9 L480.1,358.3 L480.2,358.7 L480.2,359.1 L480.3,359.4 L480.4,359.8 L480.6,360.1
L480.7,360.4 L480.9,360.7 L481.1,361.0 L481.3,361.2 L481.5,361.4 L481.8,361.6 L482.0,361.8 L482.3,362.0
L482.6,362.1 L482.9,362.1 L483.2,362.2 L483.5,362.2 L483.8,362.2 L484.1,362.1 L484.4,362.0 L484.6,361.9
L484.9,361.7 L485.2,361.6 L485.4,361.4 L485.7,361.1 L485.9,360.9 L486.1,360.6 L486.3,360.3 L486.5,359.9
L486.6,359.6 L486.7,359.3 L486.8,358.9 L486.9,358.5 L486.9,358.1 L487.0,357.8 L487.0,357.4 L486.9,357.0
L486.9,356.6 L486.8,356.3 L486.7,355.9 L486.5,355.6 L486.4,355.3 L486.2,355.0 L486.0,354.7 L485.8,354.5
L485.6,354.3 L485.3,354.1 L485.1,353.9 L484.8,353.7 L484.5,353.6 L484.2,353.6 L483.9,353.5 L483.6,353.5
L483.3,353.5 L483.0,353.6 L482.7,353.7 L482.5,353.8 L482.2,354.0 L481.9,354.1 L481.7,354.3 L481.4,354.6
L481.2,354.8 L481.0,355.1 L480.8,355.4 L480.6,355.8 L480.5,356.1 L480.4,356.4 L480.3,356.8 L480.2,357.2
L480.2,357.6 Z '/> <path stroke='rgb(148, 0, 211)' d='M480.2,357.6 L480.1,357.9 L480.1,358.3 L480.2,358.7 L480.2,359.1 L480.3,359.4 L480.4,359.8 L480.6,360.1
L480.7,360.4 L480.9,360.7 L481.1,361.0 L481.3,361.2 L481.5,361.4 L481.8,361.6 L482.0,361.8 L482.3,362.0
L482.6,362.1 L482.9,362.1 L483.2,362.2 L483.5,362.2 L483.8,362.2 L484.1,362.1 L484.4,362.0 L484.6,361.9
L484.9,361.7 L485.2,361.6 L485.4,361.4 L485.7,361.1 L485.9,360.9 L486.1,360.6 L486.3,360.3 L486.5,359.9
L486.6,359.6 L486.7,359.3 L486.8,358.9 L486.9,358.5 L486.9,358.1 L487.0,357.8 L487.0,357.4 L486.9,357.0
L486.9,356.6 L486.8,356.3 L486.7,355.9 L486.5,355.6 L486.4,355.3 L486.2,355.0 L486.0,354.7 L485.8,354.5
L485.6,354.3 L485.3,354.1 L485.1,353.9 L484.8,353.7 L484.5,353.6 L484.2,353.6 L483.9,353.5 L483.6,353.5
L483.3,353.5 L483.0,353.6 L482.7,353.7 L482.5,353.8 L482.2,354.0 L481.9,354.1 L481.7,354.3 L481.4,354.6
L481.2,354.8 L481.0,355.1 L480.8,355.4 L480.6,355.8 L480.5,356.1 L480.4,356.4 L480.3,356.8 L480.2,357.2
L480.2,357.6 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M126.7,307.1 L126.7,307.7 L126.7,308.3 L126.7,308.9 L126.8,309.5 L126.8,310.1 L126.9,310.6 L127.0,311.1
L127.1,311.6 L127.2,312.1 L127.3,312.5 L127.4,312.8 L127.6,313.2 L127.7,313.5 L127.8,313.7 L128.0,313.9
L128.2,314.0 L128.3,314.1 L128.5,314.1 L128.7,314.1 L128.9,314.0 L129.0,313.9 L129.2,313.7 L129.3,313.5
L129.5,313.2 L129.7,312.9 L129.8,312.5 L129.9,312.1 L130.1,311.7 L130.2,311.2 L130.3,310.7 L130.4,310.1
L130.4,309.6 L130.5,309.0 L130.5,308.4 L130.6,307.8 L130.6,307.2 L130.6,306.6 L130.6,306.0 L130.6,305.4
L130.5,304.8 L130.5,304.2 L130.4,303.7 L130.3,303.2 L130.2,302.7 L130.1,302.2 L130.0,301.8 L129.9,301.5
L129.7,301.1 L129.6,300.8 L129.5,300.6 L129.3,300.4 L129.1,300.3 L129.0,300.2 L128.8,300.2 L128.6,300.2
L128.4,300.3 L128.3,300.4 L128.1,300.6 L128.0,300.8 L127.8,301.1 L127.6,301.4 L127.5,301.8 L127.4,302.2
L127.2,302.6 L127.1,303.1 L127.0,303.6 L126.9,304.2 L126.9,304.7 L126.8,305.3 L126.8,305.9 L126.7,306.5
L126.7,307.1 Z '/> <path stroke='rgb(148, 0, 211)' d='M126.7,307.1 L126.7,307.7 L126.7,308.3 L126.7,308.9 L126.8,309.5 L126.8,310.1 L126.9,310.6 L127.0,311.1
L127.1,311.6 L127.2,312.1 L127.3,312.5 L127.4,312.8 L127.6,313.2 L127.7,313.5 L127.8,313.7 L128.0,313.9
L128.2,314.0 L128.3,314.1 L128.5,314.1 L128.7,314.1 L128.9,314.0 L129.0,313.9 L129.2,313.7 L129.3,313.5
L129.5,313.2 L129.7,312.9 L129.8,312.5 L129.9,312.1 L130.1,311.7 L130.2,311.2 L130.3,310.7 L130.4,310.1
L130.4,309.6 L130.5,309.0 L130.5,308.4 L130.6,307.8 L130.6,307.2 L130.6,306.6 L130.6,306.0 L130.6,305.4
L130.5,304.8 L130.5,304.2 L130.4,303.7 L130.3,303.2 L130.2,302.7 L130.1,302.2 L130.0,301.8 L129.9,301.5
L129.7,301.1 L129.6,300.8 L129.5,300.6 L129.3,300.4 L129.1,300.3 L129.0,300.2 L128.8,300.2 L128.6,300.2
L128.4,300.3 L128.3,300.4 L128.1,300.6 L128.0,300.8 L127.8,301.1 L127.6,301.4 L127.5,301.8 L127.4,302.2
L127.2,302.6 L127.1,303.1 L127.0,303.6 L126.9,304.2 L126.9,304.7 L126.8,305.3 L126.8,305.9 L126.7,306.5
L126.7,307.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M186.1,301.0 L186.0,300.9 L185.8,300.9 L185.6,300.9 L185.3,300.9 L185.0,301.0 L184.6,301.2 L184.2,301.3
L183.7,301.6 L183.3,301.9 L182.8,302.2 L182.2,302.5 L181.7,302.9 L181.1,303.3 L180.5,303.8 L179.9,304.3
L179.3,304.8 L178.7,305.3 L178.1,305.8 L177.5,306.3 L177.0,306.9 L176.4,307.4 L175.9,308.0 L175.4,308.5
L174.9,309.1 L174.5,309.6 L174.1,310.1 L173.7,310.5 L173.4,311.0 L173.1,311.4 L172.9,311.8 L172.7,312.2
L172.6,312.5 L172.5,312.7 L172.5,313.0 L172.5,313.2 L172.6,313.3 L172.7,313.4 L172.9,313.4 L173.1,313.4
L173.4,313.4 L173.7,313.3 L174.1,313.1 L174.5,313.0 L175.0,312.7 L175.4,312.4 L175.9,312.1 L176.5,311.8
L177.0,311.4 L177.6,311.0 L178.2,310.5 L178.8,310.0 L179.4,309.5 L180.0,309.0 L180.6,308.5 L181.2,308.0
L181.7,307.4 L182.3,306.9 L182.8,306.3 L183.3,305.8 L183.8,305.2 L184.2,304.7 L184.6,304.2 L185.0,303.8
L185.3,303.3 L185.6,302.9 L185.8,302.5 L186.0,302.1 L186.1,301.8 L186.2,301.6 L186.2,301.3 L186.2,301.1
L186.1,301.0 Z '/> <path stroke='rgb(148, 0, 211)' d='M186.1,301.0 L186.0,300.9 L185.8,300.9 L185.6,300.9 L185.3,300.9 L185.0,301.0 L184.6,301.2 L184.2,301.3
L183.7,301.6 L183.3,301.9 L182.8,302.2 L182.2,302.5 L181.7,302.9 L181.1,303.3 L180.5,303.8 L179.9,304.3
L179.3,304.8 L178.7,305.3 L178.1,305.8 L177.5,306.3 L177.0,306.9 L176.4,307.4 L175.9,308.0 L175.4,308.5
L174.9,309.1 L174.5,309.6 L174.1,310.1 L173.7,310.5 L173.4,311.0 L173.1,311.4 L172.9,311.8 L172.7,312.2
L172.6,312.5 L172.5,312.7 L172.5,313.0 L172.5,313.2 L172.6,313.3 L172.7,313.4 L172.9,313.4 L173.1,313.4
L173.4,313.4 L173.7,313.3 L174.1,313.1 L174.5,313.0 L175.0,312.7 L175.4,312.4 L175.9,312.1 L176.5,311.8
L177.0,311.4 L177.6,311.0 L178.2,310.5 L178.8,310.0 L179.4,309.5 L180.0,309.0 L180.6,308.5 L181.2,308.0
L181.7,307.4 L182.3,306.9 L182.8,306.3 L183.3,305.8 L183.8,305.2 L184.2,304.7 L184.6,304.2 L185.0,303.8
L185.3,303.3 L185.6,302.9 L185.8,302.5 L186.0,302.1 L186.1,301.8 L186.2,301.6 L186.2,301.3 L186.2,301.1
L186.1,301.0 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M227.1,304.2 L226.6,304.7 L226.2,305.2 L225.8,305.8 L225.4,306.3 L225.0,306.8 L224.7,307.4 L224.5,307.9
L224.3,308.5 L224.1,309.0 L224.0,309.5 L223.9,310.0 L223.8,310.5 L223.8,310.9 L223.9,311.4 L224.0,311.8
L224.1,312.1 L224.3,312.4 L224.6,312.7 L224.9,312.9 L225.2,313.1 L225.5,313.3 L225.9,313.4 L226.4,313.4
L226.8,313.4 L227.3,313.4 L227.8,313.3 L228.3,313.1 L228.8,313.0 L229.3,312.7 L229.9,312.5 L230.4,312.1
L231.0,311.8 L231.5,311.4 L232.0,311.0 L232.5,310.5 L233.0,310.1 L233.5,309.6 L233.9,309.1 L234.3,308.5
L234.7,308.0 L235.1,307.5 L235.4,306.9 L235.6,306.4 L235.8,305.8 L236.0,305.3 L236.1,304.8 L236.2,304.3
L236.3,303.8 L236.3,303.4 L236.2,302.9 L236.1,302.5 L236.0,302.2 L235.8,301.9 L235.5,301.6 L235.2,301.4
L234.9,301.2 L234.6,301.0 L234.2,300.9 L233.7,300.9 L233.3,300.9 L232.8,300.9 L232.3,301.0 L231.8,301.2
L231.3,301.3 L230.8,301.6 L230.2,301.8 L229.7,302.2 L229.1,302.5 L228.6,302.9 L228.1,303.3 L227.6,303.8
L227.1,304.2 Z '/> <path stroke='rgb(148, 0, 211)' d='M227.1,304.2 L226.6,304.7 L226.2,305.2 L225.8,305.8 L225.4,306.3 L225.0,306.8 L224.7,307.4 L224.5,307.9
L224.3,308.5 L224.1,309.0 L224.0,309.5 L223.9,310.0 L223.8,310.5 L223.8,310.9 L223.9,311.4 L224.0,311.8
L224.1,312.1 L224.3,312.4 L224.6,312.7 L224.9,312.9 L225.2,313.1 L225.5,313.3 L225.9,313.4 L226.4,313.4
L226.8,313.4 L227.3,313.4 L227.8,313.3 L228.3,313.1 L228.8,313.0 L229.3,312.7 L229.9,312.5 L230.4,312.1
L231.0,311.8 L231.5,311.4 L232.0,311.0 L232.5,310.5 L233.0,310.1 L233.5,309.6 L233.9,309.1 L234.3,308.5
L234.7,308.0 L235.1,307.5 L235.4,306.9 L235.6,306.4 L235.8,305.8 L236.0,305.3 L236.1,304.8 L236.2,304.3
L236.3,303.8 L236.3,303.4 L236.2,302.9 L236.1,302.5 L236.0,302.2 L235.8,301.9 L235.5,301.6 L235.2,301.4
L234.9,301.2 L234.6,301.0 L234.2,300.9 L233.7,300.9 L233.3,300.9 L232.8,300.9 L232.3,301.0 L231.8,301.2
L231.3,301.3 L230.8,301.6 L230.2,301.8 L229.7,302.2 L229.1,302.5 L228.6,302.9 L228.1,303.3 L227.6,303.8
L227.1,304.2 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M274.4,312.5 L275.0,313.2 L275.7,313.8 L276.3,314.4 L277.1,314.9 L277.8,315.3 L278.6,315.7 L279.4,316.1
L280.2,316.3 L281.0,316.5 L281.8,316.6 L282.6,316.7 L283.3,316.7 L284.1,316.6 L284.8,316.4 L285.5,316.1
L286.2,315.8 L286.8,315.5 L287.4,315.0 L287.9,314.5 L288.4,314.0 L288.8,313.4 L289.2,312.7 L289.5,312.0
L289.7,311.3 L289.8,310.5 L289.9,309.7 L289.9,308.9 L289.9,308.1 L289.8,307.3 L289.6,306.5 L289.3,305.6
L289.0,304.8 L288.6,304.0 L288.2,303.2 L287.6,302.5 L287.1,301.8 L286.5,301.1 L285.8,300.5 L285.2,299.9
L284.4,299.4 L283.7,299.0 L282.9,298.6 L282.1,298.2 L281.3,298.0 L280.5,297.8 L279.7,297.7 L278.9,297.6
L278.2,297.6 L277.4,297.7 L276.7,297.9 L276.0,298.2 L275.3,298.5 L274.7,298.8 L274.1,299.3 L273.6,299.8
L273.1,300.3 L272.7,300.9 L272.3,301.6 L272.0,302.3 L271.8,303.0 L271.7,303.8 L271.6,304.6 L271.6,305.4
L271.6,306.2 L271.7,307.0 L271.9,307.8 L272.2,308.7 L272.5,309.5 L272.9,310.3 L273.3,311.1 L273.9,311.8
L274.4,312.5 Z '/> <path stroke='rgb(148, 0, 211)' d='M274.4,312.5 L275.0,313.2 L275.7,313.8 L276.3,314.4 L277.1,314.9 L277.8,315.3 L278.6,315.7 L279.4,316.1
L280.2,316.3 L281.0,316.5 L281.8,316.6 L282.6,316.7 L283.3,316.7 L284.1,316.6 L284.8,316.4 L285.5,316.1
L286.2,315.8 L286.8,315.5 L287.4,315.0 L287.9,314.5 L288.4,314.0 L288.8,313.4 L289.2,312.7 L289.5,312.0
L289.7,311.3 L289.8,310.5 L289.9,309.7 L289.9,308.9 L289.9,308.1 L289.8,307.3 L289.6,306.5 L289.3,305.6
L289.0,304.8 L288.6,304.0 L288.2,303.2 L287.6,302.5 L287.1,301.8 L286.5,301.1 L285.8,300.5 L285.2,299.9
L284.4,299.4 L283.7,299.0 L282.9,298.6 L282.1,298.2 L281.3,298.0 L280.5,297.8 L279.7,297.7 L278.9,297.6
L278.2,297.6 L277.4,297.7 L276.7,297.9 L276.0,298.2 L275.3,298.5 L274.7,298.8 L274.1,299.3 L273.6,299.8
L273.1,300.3 L272.7,300.9 L272.3,301.6 L272.0,302.3 L271.8,303.0 L271.7,303.8 L271.6,304.6 L271.6,305.4
L271.6,306.2 L271.7,307.0 L271.9,307.8 L272.2,308.7 L272.5,309.5 L272.9,310.3 L273.3,311.1 L273.9,311.8
L274.4,312.5 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M328.1,309.4 L328.5,309.9 L328.9,310.3 L329.3,310.8 L329.7,311.2 L330.1,311.6 L330.5,311.9 L330.9,312.2
L331.4,312.5 L331.8,312.8 L332.3,313.0 L332.7,313.1 L333.1,313.2 L333.5,313.3 L333.9,313.3 L334.3,313.2
L334.7,313.2 L335.0,313.0 L335.3,312.9 L335.6,312.6 L335.8,312.4 L336.0,312.1 L336.2,311.8 L336.3,311.4
L336.4,311.0 L336.5,310.6 L336.5,310.1 L336.5,309.6 L336.5,309.1 L336.4,308.6 L336.2,308.1 L336.1,307.6
L335.9,307.0 L335.6,306.5 L335.4,306.0 L335.1,305.4 L334.8,304.9 L334.4,304.4 L334.0,304.0 L333.6,303.5
L333.2,303.1 L332.8,302.7 L332.4,302.4 L332.0,302.1 L331.5,301.8 L331.1,301.5 L330.6,301.3 L330.2,301.2
L329.8,301.1 L329.4,301.0 L329.0,301.0 L328.6,301.1 L328.2,301.1 L327.9,301.3 L327.6,301.4 L327.3,301.7
L327.1,301.9 L326.9,302.2 L326.7,302.5 L326.6,302.9 L326.5,303.3 L326.4,303.7 L326.4,304.2 L326.4,304.7
L326.4,305.2 L326.5,305.7 L326.7,306.2 L326.8,306.7 L327.0,307.3 L327.3,307.8 L327.5,308.3 L327.8,308.9
L328.1,309.4 Z '/> <path stroke='rgb(148, 0, 211)' d='M328.1,309.4 L328.5,309.9 L328.9,310.3 L329.3,310.8 L329.7,311.2 L330.1,311.6 L330.5,311.9 L330.9,312.2
L331.4,312.5 L331.8,312.8 L332.3,313.0 L332.7,313.1 L333.1,313.2 L333.5,313.3 L333.9,313.3 L334.3,313.2
L334.7,313.2 L335.0,313.0 L335.3,312.9 L335.6,312.6 L335.8,312.4 L336.0,312.1 L336.2,311.8 L336.3,311.4
L336.4,311.0 L336.5,310.6 L336.5,310.1 L336.5,309.6 L336.5,309.1 L336.4,308.6 L336.2,308.1 L336.1,307.6
L335.9,307.0 L335.6,306.5 L335.4,306.0 L335.1,305.4 L334.8,304.9 L334.4,304.4 L334.0,304.0 L333.6,303.5
L333.2,303.1 L332.8,302.7 L332.4,302.4 L332.0,302.1 L331.5,301.8 L331.1,301.5 L330.6,301.3 L330.2,301.2
L329.8,301.1 L329.4,301.0 L329.0,301.0 L328.6,301.1 L328.2,301.1 L327.9,301.3 L327.6,301.4 L327.3,301.7
L327.1,301.9 L326.9,302.2 L326.7,302.5 L326.6,302.9 L326.5,303.3 L326.4,303.7 L326.4,304.2 L326.4,304.7
L326.4,305.2 L326.5,305.7 L326.7,306.2 L326.8,306.7 L327.0,307.3 L327.3,307.8 L327.5,308.3 L327.8,308.9
L328.1,309.4 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M387.2,302.2 L386.8,301.8 L386.3,301.5 L385.8,301.1 L385.2,300.9 L384.7,300.6 L384.1,300.5 L383.5,300.3
L382.9,300.2 L382.3,300.2 L381.7,300.2 L381.1,300.3 L380.5,300.4 L379.9,300.6 L379.4,300.9 L378.8,301.1
L378.3,301.5 L377.8,301.8 L377.4,302.2 L377.0,302.7 L376.6,303.2 L376.2,303.7 L375.9,304.2 L375.7,304.8
L375.5,305.3 L375.3,305.9 L375.3,306.5 L375.2,307.1 L375.2,307.7 L375.3,308.3 L375.4,308.9 L375.6,309.5
L375.8,310.1 L376.0,310.6 L376.4,311.1 L376.7,311.6 L377.1,312.1 L377.5,312.5 L378.0,312.8 L378.5,313.2
L379.1,313.4 L379.6,313.7 L380.2,313.8 L380.8,314.0 L381.4,314.1 L382.0,314.1 L382.6,314.1 L383.2,314.0
L383.8,313.9 L384.4,313.7 L384.9,313.4 L385.5,313.2 L386.0,312.8 L386.5,312.5 L386.9,312.1 L387.3,311.6
L387.7,311.1 L388.1,310.6 L388.4,310.1 L388.6,309.5 L388.8,309.0 L389.0,308.4 L389.0,307.8 L389.1,307.2
L389.1,306.6 L389.0,306.0 L388.9,305.4 L388.7,304.8 L388.5,304.2 L388.3,303.7 L387.9,303.2 L387.6,302.7
L387.2,302.2 Z '/> <path stroke='rgb(148, 0, 211)' d='M387.2,302.2 L386.8,301.8 L386.3,301.5 L385.8,301.1 L385.2,300.9 L384.7,300.6 L384.1,300.5 L383.5,300.3
L382.9,300.2 L382.3,300.2 L381.7,300.2 L381.1,300.3 L380.5,300.4 L379.9,300.6 L379.4,300.9 L378.8,301.1
L378.3,301.5 L377.8,301.8 L377.4,302.2 L377.0,302.7 L376.6,303.2 L376.2,303.7 L375.9,304.2 L375.7,304.8
L375.5,305.3 L375.3,305.9 L375.3,306.5 L375.2,307.1 L375.2,307.7 L375.3,308.3 L375.4,308.9 L375.6,309.5
L375.8,310.1 L376.0,310.6 L376.4,311.1 L376.7,311.6 L377.1,312.1 L377.5,312.5 L378.0,312.8 L378.5,313.2
L379.1,313.4 L379.6,313.7 L380.2,313.8 L380.8,314.0 L381.4,314.1 L382.0,314.1 L382.6,314.1 L383.2,314.0
L383.8,313.9 L384.4,313.7 L384.9,313.4 L385.5,313.2 L386.0,312.8 L386.5,312.5 L386.9,312.1 L387.3,311.6
L387.7,311.1 L388.1,310.6 L388.4,310.1 L388.6,309.5 L388.8,309.0 L389.0,308.4 L389.0,307.8 L389.1,307.2
L389.1,306.6 L389.0,306.0 L388.9,305.4 L388.7,304.8 L388.5,304.2 L388.3,303.7 L387.9,303.2 L387.6,302.7
L387.2,302.2 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M442.0,311.7 L442.1,311.4 L442.2,311.1 L442.1,310.7 L442.0,310.3 L441.9,309.9 L441.6,309.4 L441.3,309.0
L440.9,308.5 L440.5,308.0 L440.0,307.5 L439.5,307.0 L438.9,306.5 L438.2,306.0 L437.6,305.5 L436.8,305.1
L436.1,304.6 L435.3,304.2 L434.5,303.8 L433.7,303.4 L432.9,303.0 L432.1,302.7 L431.3,302.4 L430.5,302.2
L429.7,302.0 L429.0,301.8 L428.2,301.6 L427.6,301.6 L426.9,301.5 L426.3,301.5 L425.8,301.5 L425.3,301.6
L424.8,301.7 L424.4,301.9 L424.1,302.1 L423.9,302.3 L423.7,302.6 L423.6,302.9 L423.5,303.2 L423.6,303.6
L423.7,304.0 L423.8,304.4 L424.1,304.9 L424.4,305.3 L424.8,305.8 L425.2,306.3 L425.7,306.8 L426.2,307.3
L426.8,307.8 L427.5,308.3 L428.1,308.8 L428.9,309.2 L429.6,309.7 L430.4,310.1 L431.2,310.5 L432.0,310.9
L432.8,311.3 L433.6,311.6 L434.4,311.9 L435.2,312.1 L436.0,312.3 L436.7,312.5 L437.5,312.7 L438.1,312.7
L438.8,312.8 L439.4,312.8 L439.9,312.8 L440.4,312.7 L440.9,312.6 L441.3,312.4 L441.6,312.2 L441.8,312.0
L442.0,311.7 Z '/> <path stroke='rgb(148, 0, 211)' d='M442.0,311.7 L442.1,311.4 L442.2,311.1 L442.1,310.7 L442.0,310.3 L441.9,309.9 L441.6,309.4 L441.3,309.0
L440.9,308.5 L440.5,308.0 L440.0,307.5 L439.5,307.0 L438.9,306.5 L438.2,306.0 L437.6,305.5 L436.8,305.1
L436.1,304.6 L435.3,304.2 L434.5,303.8 L433.7,303.4 L432.9,303.0 L432.1,302.7 L431.3,302.4 L430.5,302.2
L429.7,302.0 L429.0,301.8 L428.2,301.6 L427.6,301.6 L426.9,301.5 L426.3,301.5 L425.8,301.5 L425.3,301.6
L424.8,301.7 L424.4,301.9 L424.1,302.1 L423.9,302.3 L423.7,302.6 L423.6,302.9 L423.5,303.2 L423.6,303.6
L423.7,304.0 L423.8,304.4 L424.1,304.9 L424.4,305.3 L424.8,305.8 L425.2,306.3 L425.7,306.8 L426.2,307.3
L426.8,307.8 L427.5,308.3 L428.1,308.8 L428.9,309.2 L429.6,309.7 L430.4,310.1 L431.2,310.5 L432.0,310.9
L432.8,311.3 L433.6,311.6 L434.4,311.9 L435.2,312.1 L436.0,312.3 L436.7,312.5 L437.5,312.7 L438.1,312.7
L438.8,312.8 L439.4,312.8 L439.9,312.8 L440.4,312.7 L440.9,312.6 L441.3,312.4 L441.6,312.2 L441.8,312.0
L442.0,311.7 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M490.1,313.7 L490.5,313.3 L490.7,312.9 L491.0,312.4 L491.1,311.9 L491.2,311.3 L491.3,310.8 L491.3,310.2
L491.2,309.5 L491.1,308.9 L490.9,308.2 L490.6,307.6 L490.3,306.9 L490.0,306.2 L489.6,305.6 L489.2,304.9
L488.7,304.3 L488.1,303.7 L487.6,303.1 L487.0,302.5 L486.4,302.0 L485.7,301.5 L485.1,301.1 L484.4,300.7
L483.8,300.4 L483.1,300.1 L482.4,299.8 L481.7,299.6 L481.1,299.5 L480.5,299.5 L479.9,299.5 L479.3,299.5
L478.7,299.6 L478.2,299.8 L477.8,300.0 L477.3,300.3 L477.0,300.6 L476.6,301.0 L476.4,301.4 L476.1,301.9
L476.0,302.4 L475.9,303.0 L475.8,303.5 L475.8,304.1 L475.9,304.8 L476.0,305.4 L476.2,306.1 L476.5,306.7
L476.8,307.4 L477.1,308.1 L477.5,308.7 L477.9,309.4 L478.4,310.0 L479.0,310.6 L479.5,311.2 L480.1,311.8
L480.7,312.3 L481.4,312.8 L482.0,313.2 L482.7,313.6 L483.3,313.9 L484.0,314.2 L484.7,314.5 L485.4,314.7
L486.0,314.8 L486.6,314.8 L487.2,314.8 L487.8,314.8 L488.4,314.7 L488.9,314.5 L489.3,314.3 L489.8,314.0
L490.1,313.7 Z '/> <path stroke='rgb(148, 0, 211)' d='M490.1,313.7 L490.5,313.3 L490.7,312.9 L491.0,312.4 L491.1,311.9 L491.2,311.3 L491.3,310.8 L491.3,310.2
L491.2,309.5 L491.1,308.9 L490.9,308.2 L490.6,307.6 L490.3,306.9 L490.0,306.2 L489.6,305.6 L489.2,304.9
L488.7,304.3 L488.1,303.7 L487.6,303.1 L487.0,302.5 L486.4,302.0 L485.7,301.5 L485.1,301.1 L484.4,300.7
L483.8,300.4 L483.1,300.1 L482.4,299.8 L481.7,299.6 L481.1,299.5 L480.5,299.5 L479.9,299.5 L479.3,299.5
L478.7,299.6 L478.2,299.8 L477.8,300.0 L477.3,300.3 L477.0,300.6 L476.6,301.0 L476.4,301.4 L476.1,301.9
L476.0,302.4 L475.9,303.0 L475.8,303.5 L475.8,304.1 L475.9,304.8 L476.0,305.4 L476.2,306.1 L476.5,306.7
L476.8,307.4 L477.1,308.1 L477.5,308.7 L477.9,309.4 L478.4,310.0 L479.0,310.6 L479.5,311.2 L480.1,311.8
L480.7,312.3 L481.4,312.8 L482.0,313.2 L482.7,313.6 L483.3,313.9 L484.0,314.2 L484.7,314.5 L485.4,314.7
L486.0,314.8 L486.6,314.8 L487.2,314.8 L487.8,314.8 L488.4,314.7 L488.9,314.5 L489.3,314.3 L489.8,314.0
L490.1,313.7 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M124.3,255.9 L124.2,256.6 L124.2,257.3 L124.2,258.0 L124.2,258.7 L124.3,259.3 L124.4,260.0 L124.5,260.6
L124.7,261.1 L124.9,261.7 L125.1,262.2 L125.4,262.6 L125.6,263.1 L125.9,263.4 L126.3,263.7 L126.6,264.0
L127.0,264.2 L127.3,264.3 L127.7,264.4 L128.1,264.4 L128.5,264.3 L128.9,264.2 L129.3,264.1 L129.6,263.9
L130.0,263.6 L130.4,263.2 L130.7,262.9 L131.1,262.4 L131.4,261.9 L131.7,261.4 L132.0,260.9 L132.2,260.3
L132.4,259.6 L132.6,259.0 L132.8,258.3 L132.9,257.7 L133.0,257.0 L133.1,256.3 L133.1,255.6 L133.1,254.9
L133.1,254.2 L133.0,253.6 L132.9,252.9 L132.8,252.3 L132.6,251.8 L132.4,251.2 L132.2,250.7 L131.9,250.3
L131.7,249.8 L131.4,249.5 L131.0,249.2 L130.7,248.9 L130.3,248.7 L130.0,248.6 L129.6,248.5 L129.2,248.5
L128.8,248.6 L128.4,248.7 L128.0,248.8 L127.7,249.0 L127.3,249.3 L126.9,249.7 L126.6,250.0 L126.2,250.5
L125.9,251.0 L125.6,251.5 L125.3,252.0 L125.1,252.6 L124.9,253.3 L124.7,253.9 L124.5,254.6 L124.4,255.2
L124.3,255.9 Z '/> <path stroke='rgb(148, 0, 211)' d='M124.3,255.9 L124.2,256.6 L124.2,257.3 L124.2,258.0 L124.2,258.7 L124.3,259.3 L124.4,260.0 L124.5,260.6
L124.7,261.1 L124.9,261.7 L125.1,262.2 L125.4,262.6 L125.6,263.1 L125.9,263.4 L126.3,263.7 L126.6,264.0
L127.0,264.2 L127.3,264.3 L127.7,264.4 L128.1,264.4 L128.5,264.3 L128.9,264.2 L129.3,264.1 L129.6,263.9
L130.0,263.6 L130.4,263.2 L130.7,262.9 L131.1,262.4 L131.4,261.9 L131.7,261.4 L132.0,260.9 L132.2,260.3
L132.4,259.6 L132.6,259.0 L132.8,258.3 L132.9,257.7 L133.0,257.0 L133.1,256.3 L133.1,255.6 L133.1,254.9
L133.1,254.2 L133.0,253.6 L132.9,252.9 L132.8,252.3 L132.6,251.8 L132.4,251.2 L132.2,250.7 L131.9,250.3
L131.7,249.8 L131.4,249.5 L131.0,249.2 L130.7,248.9 L130.3,248.7 L130.0,248.6 L129.6,248.5 L129.2,248.5
L128.8,248.6 L128.4,248.7 L128.0,248.8 L127.7,249.0 L127.3,249.3 L126.9,249.7 L126.6,250.0 L126.2,250.5
L125.9,251.0 L125.6,251.5 L125.3,252.0 L125.1,252.6 L124.9,253.3 L124.7,253.9 L124.5,254.6 L124.4,255.2
L124.3,255.9 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M175.1,253.3 L174.7,253.9 L174.2,254.6 L173.9,255.3 L173.5,255.9 L173.2,256.6 L173.0,257.3 L172.8,258.0
L172.6,258.7 L172.5,259.3 L172.5,259.9 L172.5,260.5 L172.6,261.1 L172.7,261.7 L172.9,262.1 L173.1,262.6
L173.3,263.0 L173.6,263.4 L174.0,263.7 L174.4,263.9 L174.8,264.1 L175.3,264.2 L175.8,264.3 L176.3,264.3
L176.8,264.3 L177.4,264.2 L178.0,264.0 L178.6,263.8 L179.1,263.5 L179.7,263.2 L180.3,262.8 L180.9,262.4
L181.5,261.9 L182.1,261.4 L182.6,260.8 L183.1,260.2 L183.6,259.6 L184.0,259.0 L184.5,258.3 L184.8,257.6
L185.2,257.0 L185.5,256.3 L185.7,255.6 L185.9,254.9 L186.1,254.2 L186.2,253.6 L186.2,253.0 L186.2,252.4
L186.1,251.8 L186.0,251.2 L185.8,250.8 L185.6,250.3 L185.4,249.9 L185.1,249.5 L184.7,249.2 L184.3,249.0
L183.9,248.8 L183.4,248.7 L182.9,248.6 L182.4,248.6 L181.9,248.6 L181.3,248.7 L180.7,248.9 L180.1,249.1
L179.6,249.4 L179.0,249.7 L178.4,250.1 L177.8,250.5 L177.2,251.0 L176.6,251.5 L176.1,252.1 L175.6,252.7
L175.1,253.3 Z '/> <path stroke='rgb(148, 0, 211)' d='M175.1,253.3 L174.7,253.9 L174.2,254.6 L173.9,255.3 L173.5,255.9 L173.2,256.6 L173.0,257.3 L172.8,258.0
L172.6,258.7 L172.5,259.3 L172.5,259.9 L172.5,260.5 L172.6,261.1 L172.7,261.7 L172.9,262.1 L173.1,262.6
L173.3,263.0 L173.6,263.4 L174.0,263.7 L174.4,263.9 L174.8,264.1 L175.3,264.2 L175.8,264.3 L176.3,264.3
L176.8,264.3 L177.4,264.2 L178.0,264.0 L178.6,263.8 L179.1,263.5 L179.7,263.2 L180.3,262.8 L180.9,262.4
L181.5,261.9 L182.1,261.4 L182.6,260.8 L183.1,260.2 L183.6,259.6 L184.0,259.0 L184.5,258.3 L184.8,257.6
L185.2,257.0 L185.5,256.3 L185.7,255.6 L185.9,254.9 L186.1,254.2 L186.2,253.6 L186.2,253.0 L186.2,252.4
L186.1,251.8 L186.0,251.2 L185.8,250.8 L185.6,250.3 L185.4,249.9 L185.1,249.5 L184.7,249.2 L184.3,249.0
L183.9,248.8 L183.4,248.7 L182.9,248.6 L182.4,248.6 L181.9,248.6 L181.3,248.7 L180.7,248.9 L180.1,249.1
L179.6,249.4 L179.0,249.7 L178.4,250.1 L177.8,250.5 L177.2,251.0 L176.6,251.5 L176.1,252.1 L175.6,252.7
L175.1,253.3 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M223.2,255.5 L223.1,256.3 L223.1,257.1 L223.1,258.0 L223.1,258.8 L223.3,259.6 L223.4,260.3 L223.6,261.1
L223.9,261.8 L224.2,262.5 L224.6,263.1 L225.0,263.7 L225.4,264.2 L225.9,264.6 L226.4,265.0 L227.0,265.4
L227.5,265.6 L228.1,265.8 L228.7,265.9 L229.3,266.0 L229.9,266.0 L230.5,265.9 L231.1,265.7 L231.7,265.5
L232.3,265.2 L232.9,264.8 L233.4,264.4 L233.9,263.9 L234.4,263.3 L234.9,262.7 L235.3,262.1 L235.7,261.4
L236.0,260.6 L236.3,259.9 L236.6,259.1 L236.8,258.3 L236.9,257.4 L237.0,256.6 L237.0,255.8 L237.0,254.9
L237.0,254.1 L236.8,253.3 L236.7,252.6 L236.5,251.8 L236.2,251.1 L235.9,250.4 L235.5,249.8 L235.1,249.2
L234.7,248.7 L234.2,248.3 L233.7,247.9 L233.1,247.5 L232.6,247.3 L232.0,247.1 L231.4,247.0 L230.8,246.9
L230.2,246.9 L229.6,247.0 L229.0,247.2 L228.4,247.4 L227.8,247.7 L227.2,248.1 L226.7,248.5 L226.2,249.0
L225.7,249.6 L225.2,250.2 L224.8,250.8 L224.4,251.5 L224.1,252.3 L223.8,253.0 L223.5,253.8 L223.3,254.6
L223.2,255.5 Z '/> <path stroke='rgb(148, 0, 211)' d='M223.2,255.5 L223.1,256.3 L223.1,257.1 L223.1,258.0 L223.1,258.8 L223.3,259.6 L223.4,260.3 L223.6,261.1
L223.9,261.8 L224.2,262.5 L224.6,263.1 L225.0,263.7 L225.4,264.2 L225.9,264.6 L226.4,265.0 L227.0,265.4
L227.5,265.6 L228.1,265.8 L228.7,265.9 L229.3,266.0 L229.9,266.0 L230.5,265.9 L231.1,265.7 L231.7,265.5
L232.3,265.2 L232.9,264.8 L233.4,264.4 L233.9,263.9 L234.4,263.3 L234.9,262.7 L235.3,262.1 L235.7,261.4
L236.0,260.6 L236.3,259.9 L236.6,259.1 L236.8,258.3 L236.9,257.4 L237.0,256.6 L237.0,255.8 L237.0,254.9
L237.0,254.1 L236.8,253.3 L236.7,252.6 L236.5,251.8 L236.2,251.1 L235.9,250.4 L235.5,249.8 L235.1,249.2
L234.7,248.7 L234.2,248.3 L233.7,247.9 L233.1,247.5 L232.6,247.3 L232.0,247.1 L231.4,247.0 L230.8,246.9
L230.2,246.9 L229.6,247.0 L229.0,247.2 L228.4,247.4 L227.8,247.7 L227.2,248.1 L226.7,248.5 L226.2,249.0
L225.7,249.6 L225.2,250.2 L224.8,250.8 L224.4,251.5 L224.1,252.3 L223.8,253.0 L223.5,253.8 L223.3,254.6
L223.2,255.5 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M288.5,250.8 L288.1,250.3 L287.6,249.8 L287.1,249.4 L286.5,249.0 L285.8,248.6 L285.2,248.4 L284.5,248.2
L283.7,248.0 L283.0,247.9 L282.2,247.9 L281.4,248.0 L280.6,248.1 L279.8,248.3 L279.0,248.5 L278.3,248.8
L277.5,249.2 L276.8,249.6 L276.1,250.0 L275.4,250.5 L274.8,251.1 L274.3,251.7 L273.7,252.3 L273.3,253.0
L272.8,253.7 L272.5,254.4 L272.2,255.1 L272.0,255.9 L271.8,256.6 L271.7,257.4 L271.7,258.1 L271.7,258.8
L271.9,259.5 L272.0,260.2 L272.3,260.9 L272.6,261.5 L273.0,262.1 L273.4,262.6 L273.9,263.1 L274.4,263.5
L275.0,263.9 L275.7,264.3 L276.3,264.5 L277.0,264.7 L277.8,264.9 L278.5,265.0 L279.3,265.0 L280.1,264.9
L280.9,264.8 L281.7,264.6 L282.5,264.4 L283.2,264.1 L284.0,263.7 L284.7,263.3 L285.4,262.9 L286.1,262.4
L286.7,261.8 L287.2,261.2 L287.8,260.6 L288.2,259.9 L288.7,259.2 L289.0,258.5 L289.3,257.8 L289.5,257.0
L289.7,256.3 L289.8,255.5 L289.8,254.8 L289.8,254.1 L289.6,253.4 L289.5,252.7 L289.2,252.0 L288.9,251.4
L288.5,250.8 Z '/> <path stroke='rgb(148, 0, 211)' d='M288.5,250.8 L288.1,250.3 L287.6,249.8 L287.1,249.4 L286.5,249.0 L285.8,248.6 L285.2,248.4 L284.5,248.2
L283.7,248.0 L283.0,247.9 L282.2,247.9 L281.4,248.0 L280.6,248.1 L279.8,248.3 L279.0,248.5 L278.3,248.8
L277.5,249.2 L276.8,249.6 L276.1,250.0 L275.4,250.5 L274.8,251.1 L274.3,251.7 L273.7,252.3 L273.3,253.0
L272.8,253.7 L272.5,254.4 L272.2,255.1 L272.0,255.9 L271.8,256.6 L271.7,257.4 L271.7,258.1 L271.7,258.8
L271.9,259.5 L272.0,260.2 L272.3,260.9 L272.6,261.5 L273.0,262.1 L273.4,262.6 L273.9,263.1 L274.4,263.5
L275.0,263.9 L275.7,264.3 L276.3,264.5 L277.0,264.7 L277.8,264.9 L278.5,265.0 L279.3,265.0 L280.1,264.9
L280.9,264.8 L281.7,264.6 L282.5,264.4 L283.2,264.1 L284.0,263.7 L284.7,263.3 L285.4,262.9 L286.1,262.4
L286.7,261.8 L287.2,261.2 L287.8,260.6 L288.2,259.9 L288.7,259.2 L289.0,258.5 L289.3,257.8 L289.5,257.0
L289.7,256.3 L289.8,255.5 L289.8,254.8 L289.8,254.1 L289.6,253.4 L289.5,252.7 L289.2,252.0 L288.9,251.4
L288.5,250.8 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M326.1,253.3 L325.7,254.0 L325.4,254.6 L325.2,255.3 L325.0,256.0 L324.8,256.6 L324.7,257.3 L324.7,258.0
L324.7,258.6 L324.7,259.3 L324.8,259.9 L325.0,260.5 L325.2,261.1 L325.5,261.6 L325.8,262.1 L326.1,262.5
L326.5,262.9 L326.9,263.3 L327.4,263.6 L327.8,263.8 L328.4,264.0 L328.9,264.1 L329.4,264.2 L330.0,264.2
L330.6,264.2 L331.2,264.1 L331.8,263.9 L332.4,263.7 L333.0,263.4 L333.5,263.1 L334.1,262.7 L334.6,262.3
L335.1,261.8 L335.6,261.3 L336.1,260.7 L336.5,260.2 L336.8,259.6 L337.2,258.9 L337.5,258.3 L337.7,257.6
L337.9,256.9 L338.1,256.3 L338.2,255.6 L338.2,254.9 L338.2,254.3 L338.2,253.6 L338.1,253.0 L337.9,252.4
L337.7,251.8 L337.4,251.3 L337.1,250.8 L336.8,250.4 L336.4,250.0 L336.0,249.6 L335.5,249.3 L335.1,249.1
L334.5,248.9 L334.0,248.8 L333.5,248.7 L332.9,248.7 L332.3,248.7 L331.7,248.8 L331.1,249.0 L330.5,249.2
L329.9,249.5 L329.4,249.8 L328.8,250.2 L328.3,250.6 L327.8,251.1 L327.3,251.6 L326.8,252.2 L326.4,252.7
L326.1,253.3 Z '/> <path stroke='rgb(148, 0, 211)' d='M326.1,253.3 L325.7,254.0 L325.4,254.6 L325.2,255.3 L325.0,256.0 L324.8,256.6 L324.7,257.3 L324.7,258.0
L324.7,258.6 L324.7,259.3 L324.8,259.9 L325.0,260.5 L325.2,261.1 L325.5,261.6 L325.8,262.1 L326.1,262.5
L326.5,262.9 L326.9,263.3 L327.4,263.6 L327.8,263.8 L328.4,264.0 L328.9,264.1 L329.4,264.2 L330.0,264.2
L330.6,264.2 L331.2,264.1 L331.8,263.9 L332.4,263.7 L333.0,263.4 L333.5,263.1 L334.1,262.7 L334.6,262.3
L335.1,261.8 L335.6,261.3 L336.1,260.7 L336.5,260.2 L336.8,259.6 L337.2,258.9 L337.5,258.3 L337.7,257.6
L337.9,256.9 L338.1,256.3 L338.2,255.6 L338.2,254.9 L338.2,254.3 L338.2,253.6 L338.1,253.0 L337.9,252.4
L337.7,251.8 L337.4,251.3 L337.1,250.8 L336.8,250.4 L336.4,250.0 L336.0,249.6 L335.5,249.3 L335.1,249.1
L334.5,248.9 L334.0,248.8 L333.5,248.7 L332.9,248.7 L332.3,248.7 L331.7,248.8 L331.1,249.0 L330.5,249.2
L329.9,249.5 L329.4,249.8 L328.8,250.2 L328.3,250.6 L327.8,251.1 L327.3,251.6 L326.8,252.2 L326.4,252.7
L326.1,253.3 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M375.3,253.4 L375.0,254.3 L374.7,255.1 L374.5,256.0 L374.3,256.8 L374.2,257.7 L374.1,258.5 L374.2,259.4
L374.2,260.2 L374.4,261.0 L374.6,261.7 L374.8,262.4 L375.1,263.1 L375.5,263.7 L375.9,264.2 L376.4,264.7
L376.9,265.2 L377.4,265.5 L378.0,265.8 L378.6,266.1 L379.3,266.2 L379.9,266.3 L380.6,266.3 L381.3,266.2
L382.0,266.1 L382.7,265.9 L383.4,265.6 L384.1,265.2 L384.7,264.8 L385.4,264.3 L386.0,263.8 L386.6,263.2
L387.2,262.5 L387.7,261.8 L388.2,261.1 L388.6,260.3 L389.0,259.5 L389.3,258.6 L389.6,257.8 L389.8,256.9
L390.0,256.1 L390.1,255.2 L390.2,254.4 L390.1,253.5 L390.1,252.7 L389.9,251.9 L389.7,251.2 L389.5,250.5
L389.2,249.8 L388.8,249.2 L388.4,248.7 L387.9,248.2 L387.4,247.7 L386.9,247.4 L386.3,247.1 L385.7,246.8
L385.0,246.7 L384.4,246.6 L383.7,246.6 L383.0,246.7 L382.3,246.8 L381.6,247.0 L380.9,247.3 L380.2,247.7
L379.6,248.1 L378.9,248.6 L378.3,249.1 L377.7,249.7 L377.1,250.4 L376.6,251.1 L376.1,251.8 L375.7,252.6
L375.3,253.4 Z '/> <path stroke='rgb(148, 0, 211)' d='M375.3,253.4 L375.0,254.3 L374.7,255.1 L374.5,256.0 L374.3,256.8 L374.2,257.7 L374.1,258.5 L374.2,259.4
L374.2,260.2 L374.4,261.0 L374.6,261.7 L374.8,262.4 L375.1,263.1 L375.5,263.7 L375.9,264.2 L376.4,264.7
L376.9,265.2 L377.4,265.5 L378.0,265.8 L378.6,266.1 L379.3,266.2 L379.9,266.3 L380.6,266.3 L381.3,266.2
L382.0,266.1 L382.7,265.9 L383.4,265.6 L384.1,265.2 L384.7,264.8 L385.4,264.3 L386.0,263.8 L386.6,263.2
L387.2,262.5 L387.7,261.8 L388.2,261.1 L388.6,260.3 L389.0,259.5 L389.3,258.6 L389.6,257.8 L389.8,256.9
L390.0,256.1 L390.1,255.2 L390.2,254.4 L390.1,253.5 L390.1,252.7 L389.9,251.9 L389.7,251.2 L389.5,250.5
L389.2,249.8 L388.8,249.2 L388.4,248.7 L387.9,248.2 L387.4,247.7 L386.9,247.4 L386.3,247.1 L385.7,246.8
L385.0,246.7 L384.4,246.6 L383.7,246.6 L383.0,246.7 L382.3,246.8 L381.6,247.0 L380.9,247.3 L380.2,247.7
L379.6,248.1 L378.9,248.6 L378.3,249.1 L377.7,249.7 L377.1,250.4 L376.6,251.1 L376.1,251.8 L375.7,252.6
L375.3,253.4 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M439.8,258.3 L439.9,257.8 L439.9,257.4 L439.9,256.9 L439.8,256.4 L439.7,255.9 L439.6,255.4 L439.3,254.9
L439.1,254.4 L438.8,254.0 L438.4,253.6 L438.0,253.1 L437.6,252.8 L437.1,252.4 L436.6,252.1 L436.0,251.8
L435.5,251.5 L434.9,251.3 L434.3,251.1 L433.7,251.0 L433.1,250.9 L432.5,250.8 L431.8,250.8 L431.2,250.8
L430.7,250.9 L430.1,251.0 L429.5,251.2 L429.0,251.3 L428.5,251.6 L428.0,251.9 L427.6,252.2 L427.2,252.5
L426.9,252.9 L426.6,253.3 L426.3,253.7 L426.1,254.1 L425.9,254.6 L425.8,255.1 L425.8,255.5 L425.8,256.0
L425.9,256.5 L426.0,257.0 L426.1,257.5 L426.4,258.0 L426.6,258.5 L426.9,258.9 L427.3,259.3 L427.7,259.8
L428.1,260.1 L428.6,260.5 L429.1,260.8 L429.7,261.1 L430.2,261.4 L430.8,261.6 L431.4,261.8 L432.0,261.9
L432.6,262.0 L433.2,262.1 L433.9,262.1 L434.5,262.1 L435.0,262.0 L435.6,261.9 L436.2,261.7 L436.7,261.6
L437.2,261.3 L437.7,261.0 L438.1,260.7 L438.5,260.4 L438.8,260.0 L439.1,259.6 L439.4,259.2 L439.6,258.8
L439.8,258.3 Z '/> <path stroke='rgb(148, 0, 211)' d='M439.8,258.3 L439.9,257.8 L439.9,257.4 L439.9,256.9 L439.8,256.4 L439.7,255.9 L439.6,255.4 L439.3,254.9
L439.1,254.4 L438.8,254.0 L438.4,253.6 L438.0,253.1 L437.6,252.8 L437.1,252.4 L436.6,252.1 L436.0,251.8
L435.5,251.5 L434.9,251.3 L434.3,251.1 L433.7,251.0 L433.1,250.9 L432.5,250.8 L431.8,250.8 L431.2,250.8
L430.7,250.9 L430.1,251.0 L429.5,251.2 L429.0,251.3 L428.5,251.6 L428.0,251.9 L427.6,252.2 L427.2,252.5
L426.9,252.9 L426.6,253.3 L426.3,253.7 L426.1,254.1 L425.9,254.6 L425.8,255.1 L425.8,255.5 L425.8,256.0
L425.9,256.5 L426.0,257.0 L426.1,257.5 L426.4,258.0 L426.6,258.5 L426.9,258.9 L427.3,259.3 L427.7,259.8
L428.1,260.1 L428.6,260.5 L429.1,260.8 L429.7,261.1 L430.2,261.4 L430.8,261.6 L431.4,261.8 L432.0,261.9
L432.6,262.0 L433.2,262.1 L433.9,262.1 L434.5,262.1 L435.0,262.0 L435.6,261.9 L436.2,261.7 L436.7,261.6
L437.2,261.3 L437.7,261.0 L438.1,260.7 L438.5,260.4 L438.8,260.0 L439.1,259.6 L439.4,259.2 L439.6,258.8
L439.8,258.3 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M486.7,259.6 L486.8,259.4 L486.9,259.3 L487.0,259.1 L487.0,258.9 L487.0,258.7 L487.0,258.4 L486.9,258.2
L486.9,257.9 L486.8,257.7 L486.6,257.4 L486.5,257.1 L486.3,256.8 L486.1,256.5 L485.9,256.2 L485.7,255.9
L485.4,255.6 L485.2,255.3 L484.9,255.1 L484.6,254.8 L484.3,254.5 L484.0,254.3 L483.7,254.1 L483.4,253.9
L483.1,253.7 L482.8,253.5 L482.5,253.4 L482.3,253.3 L482.0,253.2 L481.7,253.1 L481.5,253.1 L481.2,253.0
L481.0,253.1 L480.8,253.1 L480.7,253.1 L480.5,253.2 L480.4,253.3 L480.3,253.5 L480.2,253.6 L480.1,253.8
L480.1,254.0 L480.1,254.2 L480.1,254.5 L480.2,254.7 L480.2,255.0 L480.3,255.2 L480.5,255.5 L480.6,255.8
L480.8,256.1 L481.0,256.4 L481.2,256.7 L481.4,257.0 L481.7,257.3 L481.9,257.6 L482.2,257.8 L482.5,258.1
L482.8,258.4 L483.1,258.6 L483.4,258.8 L483.7,259.0 L484.0,259.2 L484.3,259.4 L484.6,259.5 L484.8,259.6
L485.1,259.7 L485.4,259.8 L485.6,259.8 L485.9,259.9 L486.1,259.8 L486.3,259.8 L486.4,259.8 L486.6,259.7
L486.7,259.6 Z '/> <path stroke='rgb(148, 0, 211)' d='M486.7,259.6 L486.8,259.4 L486.9,259.3 L487.0,259.1 L487.0,258.9 L487.0,258.7 L487.0,258.4 L486.9,258.2
L486.9,257.9 L486.8,257.7 L486.6,257.4 L486.5,257.1 L486.3,256.8 L486.1,256.5 L485.9,256.2 L485.7,255.9
L485.4,255.6 L485.2,255.3 L484.9,255.1 L484.6,254.8 L484.3,254.5 L484.0,254.3 L483.7,254.1 L483.4,253.9
L483.1,253.7 L482.8,253.5 L482.5,253.4 L482.3,253.3 L482.0,253.2 L481.7,253.1 L481.5,253.1 L481.2,253.0
L481.0,253.1 L480.8,253.1 L480.7,253.1 L480.5,253.2 L480.4,253.3 L480.3,253.5 L480.2,253.6 L480.1,253.8
L480.1,254.0 L480.1,254.2 L480.1,254.5 L480.2,254.7 L480.2,255.0 L480.3,255.2 L480.5,255.5 L480.6,255.8
L480.8,256.1 L481.0,256.4 L481.2,256.7 L481.4,257.0 L481.7,257.3 L481.9,257.6 L482.2,257.8 L482.5,258.1
L482.8,258.4 L483.1,258.6 L483.4,258.8 L483.7,259.0 L484.0,259.2 L484.3,259.4 L484.6,259.5 L484.8,259.6
L485.1,259.7 L485.4,259.8 L485.6,259.8 L485.9,259.9 L486.1,259.8 L486.3,259.8 L486.4,259.8 L486.6,259.7
L486.7,259.6 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M124.7,203.8 L124.5,204.4 L124.2,205.1 L124.0,205.7 L123.8,206.3 L123.7,206.9 L123.6,207.5 L123.5,208.1
L123.5,208.7 L123.5,209.2 L123.6,209.8 L123.7,210.3 L123.8,210.7 L124.0,211.2 L124.2,211.5 L124.4,211.9
L124.7,212.2 L125.0,212.4 L125.3,212.6 L125.6,212.7 L126.0,212.8 L126.4,212.9 L126.8,212.8 L127.3,212.8
L127.7,212.6 L128.1,212.5 L128.6,212.2 L129.0,211.9 L129.5,211.6 L129.9,211.2 L130.3,210.8 L130.8,210.4
L131.2,209.9 L131.6,209.4 L131.9,208.8 L132.2,208.3 L132.6,207.7 L132.8,207.1 L133.1,206.4 L133.3,205.8
L133.5,205.2 L133.6,204.6 L133.7,204.0 L133.8,203.4 L133.8,202.8 L133.8,202.3 L133.7,201.7 L133.6,201.2
L133.5,200.8 L133.3,200.3 L133.1,200.0 L132.9,199.6 L132.6,199.3 L132.3,199.1 L132.0,198.9 L131.7,198.8
L131.3,198.7 L130.9,198.6 L130.5,198.7 L130.0,198.7 L129.6,198.9 L129.2,199.0 L128.7,199.3 L128.3,199.6
L127.8,199.9 L127.4,200.3 L127.0,200.7 L126.5,201.1 L126.1,201.6 L125.7,202.1 L125.4,202.7 L125.1,203.2
L124.7,203.8 Z '/> <path stroke='rgb(148, 0, 211)' d='M124.7,203.8 L124.5,204.4 L124.2,205.1 L124.0,205.7 L123.8,206.3 L123.7,206.9 L123.6,207.5 L123.5,208.1
L123.5,208.7 L123.5,209.2 L123.6,209.8 L123.7,210.3 L123.8,210.7 L124.0,211.2 L124.2,211.5 L124.4,211.9
L124.7,212.2 L125.0,212.4 L125.3,212.6 L125.6,212.7 L126.0,212.8 L126.4,212.9 L126.8,212.8 L127.3,212.8
L127.7,212.6 L128.1,212.5 L128.6,212.2 L129.0,211.9 L129.5,211.6 L129.9,211.2 L130.3,210.8 L130.8,210.4
L131.2,209.9 L131.6,209.4 L131.9,208.8 L132.2,208.3 L132.6,207.7 L132.8,207.1 L133.1,206.4 L133.3,205.8
L133.5,205.2 L133.6,204.6 L133.7,204.0 L133.8,203.4 L133.8,202.8 L133.8,202.3 L133.7,201.7 L133.6,201.2
L133.5,200.8 L133.3,200.3 L133.1,200.0 L132.9,199.6 L132.6,199.3 L132.3,199.1 L132.0,198.9 L131.7,198.8
L131.3,198.7 L130.9,198.6 L130.5,198.7 L130.0,198.7 L129.6,198.9 L129.2,199.0 L128.7,199.3 L128.3,199.6
L127.8,199.9 L127.4,200.3 L127.0,200.7 L126.5,201.1 L126.1,201.6 L125.7,202.1 L125.4,202.7 L125.1,203.2
L124.7,203.8 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M174.6,202.7 L174.3,203.3 L174.0,203.9 L173.8,204.4 L173.6,205.0 L173.4,205.6 L173.3,206.2 L173.3,206.8
L173.2,207.4 L173.3,208.0 L173.3,208.5 L173.5,209.0 L173.6,209.5 L173.8,210.0 L174.1,210.5 L174.4,210.9
L174.7,211.3 L175.0,211.6 L175.4,211.9 L175.9,212.1 L176.3,212.3 L176.8,212.4 L177.3,212.5 L177.8,212.6
L178.3,212.5 L178.8,212.5 L179.4,212.4 L179.9,212.2 L180.4,212.0 L181.0,211.7 L181.5,211.4 L182.0,211.1
L182.4,210.7 L182.9,210.2 L183.3,209.8 L183.7,209.3 L184.1,208.8 L184.4,208.2 L184.7,207.6 L184.9,207.1
L185.1,206.5 L185.3,205.9 L185.4,205.3 L185.4,204.7 L185.5,204.1 L185.4,203.5 L185.4,203.0 L185.2,202.5
L185.1,202.0 L184.9,201.5 L184.6,201.0 L184.3,200.6 L184.0,200.2 L183.7,199.9 L183.3,199.6 L182.8,199.4
L182.4,199.2 L181.9,199.1 L181.4,199.0 L180.9,198.9 L180.4,199.0 L179.9,199.0 L179.3,199.1 L178.8,199.3
L178.3,199.5 L177.7,199.8 L177.2,200.1 L176.7,200.4 L176.3,200.8 L175.8,201.3 L175.4,201.7 L175.0,202.2
L174.6,202.7 Z '/> <path stroke='rgb(148, 0, 211)' d='M174.6,202.7 L174.3,203.3 L174.0,203.9 L173.8,204.4 L173.6,205.0 L173.4,205.6 L173.3,206.2 L173.3,206.8
L173.2,207.4 L173.3,208.0 L173.3,208.5 L173.5,209.0 L173.6,209.5 L173.8,210.0 L174.1,210.5 L174.4,210.9
L174.7,211.3 L175.0,211.6 L175.4,211.9 L175.9,212.1 L176.3,212.3 L176.8,212.4 L177.3,212.5 L177.8,212.6
L178.3,212.5 L178.8,212.5 L179.4,212.4 L179.9,212.2 L180.4,212.0 L181.0,211.7 L181.5,211.4 L182.0,211.1
L182.4,210.7 L182.9,210.2 L183.3,209.8 L183.7,209.3 L184.1,208.8 L184.4,208.2 L184.7,207.6 L184.9,207.1
L185.1,206.5 L185.3,205.9 L185.4,205.3 L185.4,204.7 L185.5,204.1 L185.4,203.5 L185.4,203.0 L185.2,202.5
L185.1,202.0 L184.9,201.5 L184.6,201.0 L184.3,200.6 L184.0,200.2 L183.7,199.9 L183.3,199.6 L182.8,199.4
L182.4,199.2 L181.9,199.1 L181.4,199.0 L180.9,198.9 L180.4,199.0 L179.9,199.0 L179.3,199.1 L178.8,199.3
L178.3,199.5 L177.7,199.8 L177.2,200.1 L176.7,200.4 L176.3,200.8 L175.8,201.3 L175.4,201.7 L175.0,202.2
L174.6,202.7 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M234.5,205.8 L234.5,205.6 L234.4,205.3 L234.3,205.1 L234.2,204.8 L234.1,204.6 L233.9,204.3 L233.7,204.1
L233.5,203.9 L233.2,203.7 L232.9,203.5 L232.6,203.4 L232.3,203.2 L232.0,203.1 L231.6,203.0 L231.2,202.9
L230.9,202.8 L230.5,202.8 L230.1,202.8 L229.7,202.8 L229.3,202.8 L229.0,202.9 L228.6,202.9 L228.2,203.0
L227.9,203.1 L227.6,203.3 L227.3,203.4 L227.0,203.6 L226.7,203.8 L226.5,204.0 L226.2,204.2 L226.1,204.4
L225.9,204.7 L225.8,204.9 L225.7,205.2 L225.7,205.4 L225.6,205.7 L225.6,205.9 L225.7,206.2 L225.8,206.4
L225.9,206.7 L226.0,206.9 L226.2,207.2 L226.4,207.4 L226.6,207.6 L226.9,207.8 L227.2,208.0 L227.5,208.1
L227.8,208.3 L228.1,208.4 L228.5,208.5 L228.9,208.6 L229.2,208.7 L229.6,208.7 L230.0,208.7 L230.4,208.7
L230.8,208.7 L231.1,208.6 L231.5,208.6 L231.9,208.5 L232.2,208.4 L232.5,208.2 L232.8,208.1 L233.1,207.9
L233.4,207.7 L233.6,207.5 L233.9,207.3 L234.0,207.1 L234.2,206.8 L234.3,206.6 L234.4,206.3 L234.4,206.1
L234.5,205.8 Z '/> <path stroke='rgb(148, 0, 211)' d='M234.5,205.8 L234.5,205.6 L234.4,205.3 L234.3,205.1 L234.2,204.8 L234.1,204.6 L233.9,204.3 L233.7,204.1
L233.5,203.9 L233.2,203.7 L232.9,203.5 L232.6,203.4 L232.3,203.2 L232.0,203.1 L231.6,203.0 L231.2,202.9
L230.9,202.8 L230.5,202.8 L230.1,202.8 L229.7,202.8 L229.3,202.8 L229.0,202.9 L228.6,202.9 L228.2,203.0
L227.9,203.1 L227.6,203.3 L227.3,203.4 L227.0,203.6 L226.7,203.8 L226.5,204.0 L226.2,204.2 L226.1,204.4
L225.9,204.7 L225.8,204.9 L225.7,205.2 L225.7,205.4 L225.6,205.7 L225.6,205.9 L225.7,206.2 L225.8,206.4
L225.9,206.7 L226.0,206.9 L226.2,207.2 L226.4,207.4 L226.6,207.6 L226.9,207.8 L227.2,208.0 L227.5,208.1
L227.8,208.3 L228.1,208.4 L228.5,208.5 L228.9,208.6 L229.2,208.7 L229.6,208.7 L230.0,208.7 L230.4,208.7
L230.8,208.7 L231.1,208.6 L231.5,208.6 L231.9,208.5 L232.2,208.4 L232.5,208.2 L232.8,208.1 L233.1,207.9
L233.4,207.7 L233.6,207.5 L233.9,207.3 L234.0,207.1 L234.2,206.8 L234.3,206.6 L234.4,206.3 L234.4,206.1
L234.5,205.8 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M286.5,209.8 L286.8,209.3 L287.1,208.8 L287.3,208.2 L287.5,207.7 L287.6,207.1 L287.7,206.5 L287.7,205.9
L287.7,205.3 L287.6,204.7 L287.5,204.1 L287.3,203.5 L287.0,203.0 L286.8,202.4 L286.4,201.9 L286.1,201.4
L285.6,201.0 L285.2,200.6 L284.7,200.2 L284.2,199.8 L283.7,199.6 L283.1,199.3 L282.5,199.1 L281.9,199.0
L281.3,198.9 L280.7,198.9 L280.1,198.9 L279.5,198.9 L278.9,199.1 L278.3,199.2 L277.8,199.4 L277.2,199.7
L276.7,200.0 L276.2,200.4 L275.8,200.8 L275.4,201.2 L275.0,201.7 L274.7,202.2 L274.4,202.7 L274.2,203.3
L274.0,203.8 L273.9,204.4 L273.8,205.0 L273.8,205.6 L273.8,206.2 L273.9,206.8 L274.0,207.4 L274.2,208.0
L274.5,208.5 L274.7,209.1 L275.1,209.6 L275.4,210.1 L275.9,210.5 L276.3,210.9 L276.8,211.3 L277.3,211.7
L277.8,211.9 L278.4,212.2 L279.0,212.4 L279.6,212.5 L280.2,212.6 L280.8,212.6 L281.4,212.6 L282.0,212.6
L282.6,212.4 L283.2,212.3 L283.7,212.1 L284.3,211.8 L284.8,211.5 L285.3,211.1 L285.7,210.7 L286.1,210.3
L286.5,209.8 Z '/> <path stroke='rgb(148, 0, 211)' d='M286.5,209.8 L286.8,209.3 L287.1,208.8 L287.3,208.2 L287.5,207.7 L287.6,207.1 L287.7,206.5 L287.7,205.9
L287.7,205.3 L287.6,204.7 L287.5,204.1 L287.3,203.5 L287.0,203.0 L286.8,202.4 L286.4,201.9 L286.1,201.4
L285.6,201.0 L285.2,200.6 L284.7,200.2 L284.2,199.8 L283.7,199.6 L283.1,199.3 L282.5,199.1 L281.9,199.0
L281.3,198.9 L280.7,198.9 L280.1,198.9 L279.5,198.9 L278.9,199.1 L278.3,199.2 L277.8,199.4 L277.2,199.7
L276.7,200.0 L276.2,200.4 L275.8,200.8 L275.4,201.2 L275.0,201.7 L274.7,202.2 L274.4,202.7 L274.2,203.3
L274.0,203.8 L273.9,204.4 L273.8,205.0 L273.8,205.6 L273.8,206.2 L273.9,206.8 L274.0,207.4 L274.2,208.0
L274.5,208.5 L274.7,209.1 L275.1,209.6 L275.4,210.1 L275.9,210.5 L276.3,210.9 L276.8,211.3 L277.3,211.7
L277.8,211.9 L278.4,212.2 L279.0,212.4 L279.6,212.5 L280.2,212.6 L280.8,212.6 L281.4,212.6 L282.0,212.6
L282.6,212.4 L283.2,212.3 L283.7,212.1 L284.3,211.8 L284.8,211.5 L285.3,211.1 L285.7,210.7 L286.1,210.3
L286.5,209.8 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M337.6,210.1 L338.0,209.6 L338.2,209.1 L338.5,208.5 L338.6,207.9 L338.7,207.3 L338.8,206.7 L338.8,206.1
L338.7,205.5 L338.6,204.8 L338.5,204.2 L338.2,203.6 L338.0,203.1 L337.6,202.5 L337.3,202.0 L336.9,201.4
L336.4,201.0 L335.9,200.5 L335.4,200.1 L334.8,199.8 L334.3,199.5 L333.7,199.2 L333.0,199.0 L332.4,198.8
L331.8,198.7 L331.1,198.6 L330.5,198.6 L329.9,198.7 L329.2,198.8 L328.6,199.0 L328.1,199.2 L327.5,199.4
L327.0,199.7 L326.5,200.1 L326.0,200.5 L325.6,200.9 L325.3,201.4 L324.9,201.9 L324.7,202.4 L324.4,203.0
L324.3,203.6 L324.2,204.2 L324.1,204.8 L324.1,205.4 L324.2,206.0 L324.3,206.7 L324.4,207.3 L324.7,207.9
L324.9,208.4 L325.3,209.0 L325.6,209.5 L326.0,210.1 L326.5,210.5 L327.0,211.0 L327.5,211.4 L328.1,211.7
L328.6,212.0 L329.2,212.3 L329.9,212.5 L330.5,212.7 L331.1,212.8 L331.8,212.9 L332.4,212.9 L333.0,212.8
L333.7,212.7 L334.3,212.5 L334.8,212.3 L335.4,212.1 L335.9,211.8 L336.4,211.4 L336.9,211.0 L337.3,210.6
L337.6,210.1 Z '/> <path stroke='rgb(148, 0, 211)' d='M337.6,210.1 L338.0,209.6 L338.2,209.1 L338.5,208.5 L338.6,207.9 L338.7,207.3 L338.8,206.7 L338.8,206.1
L338.7,205.5 L338.6,204.8 L338.5,204.2 L338.2,203.6 L338.0,203.1 L337.6,202.5 L337.3,202.0 L336.9,201.4
L336.4,201.0 L335.9,200.5 L335.4,200.1 L334.8,199.8 L334.3,199.5 L333.7,199.2 L333.0,199.0 L332.4,198.8
L331.8,198.7 L331.1,198.6 L330.5,198.6 L329.9,198.7 L329.2,198.8 L328.6,199.0 L328.1,199.2 L327.5,199.4
L327.0,199.7 L326.5,200.1 L326.0,200.5 L325.6,200.9 L325.3,201.4 L324.9,201.9 L324.7,202.4 L324.4,203.0
L324.3,203.6 L324.2,204.2 L324.1,204.8 L324.1,205.4 L324.2,206.0 L324.3,206.7 L324.4,207.3 L324.7,207.9
L324.9,208.4 L325.3,209.0 L325.6,209.5 L326.0,210.1 L326.5,210.5 L327.0,211.0 L327.5,211.4 L328.1,211.7
L328.6,212.0 L329.2,212.3 L329.9,212.5 L330.5,212.7 L331.1,212.8 L331.8,212.9 L332.4,212.9 L333.0,212.8
L333.7,212.7 L334.3,212.5 L334.8,212.3 L335.4,212.1 L335.9,211.8 L336.4,211.4 L336.9,211.0 L337.3,210.6
L337.6,210.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M377.6,202.5 L377.2,203.1 L376.9,203.6 L376.6,204.2 L376.4,204.8 L376.2,205.4 L376.0,206.0 L375.9,206.6
L375.8,207.2 L375.8,207.8 L375.9,208.4 L375.9,208.9 L376.1,209.5 L376.3,210.0 L376.5,210.4 L376.7,210.9
L377.0,211.3 L377.4,211.6 L377.8,211.9 L378.2,212.2 L378.6,212.4 L379.1,212.5 L379.6,212.7 L380.1,212.7
L380.6,212.7 L381.2,212.7 L381.7,212.6 L382.3,212.4 L382.8,212.2 L383.4,211.9 L383.9,211.6 L384.4,211.3
L384.9,210.9 L385.4,210.5 L385.9,210.0 L386.3,209.5 L386.7,209.0 L387.1,208.4 L387.4,207.9 L387.7,207.3
L387.9,206.7 L388.1,206.1 L388.3,205.5 L388.4,204.9 L388.5,204.3 L388.5,203.7 L388.4,203.1 L388.4,202.6
L388.2,202.0 L388.0,201.5 L387.8,201.1 L387.6,200.6 L387.3,200.2 L386.9,199.9 L386.5,199.6 L386.1,199.3
L385.7,199.1 L385.2,199.0 L384.7,198.8 L384.2,198.8 L383.7,198.8 L383.1,198.8 L382.6,198.9 L382.0,199.1
L381.5,199.3 L380.9,199.6 L380.4,199.9 L379.9,200.2 L379.4,200.6 L378.9,201.0 L378.4,201.5 L378.0,202.0
L377.6,202.5 Z '/> <path stroke='rgb(148, 0, 211)' d='M377.6,202.5 L377.2,203.1 L376.9,203.6 L376.6,204.2 L376.4,204.8 L376.2,205.4 L376.0,206.0 L375.9,206.6
L375.8,207.2 L375.8,207.8 L375.9,208.4 L375.9,208.9 L376.1,209.5 L376.3,210.0 L376.5,210.4 L376.7,210.9
L377.0,211.3 L377.4,211.6 L377.8,211.9 L378.2,212.2 L378.6,212.4 L379.1,212.5 L379.6,212.7 L380.1,212.7
L380.6,212.7 L381.2,212.7 L381.7,212.6 L382.3,212.4 L382.8,212.2 L383.4,211.9 L383.9,211.6 L384.4,211.3
L384.9,210.9 L385.4,210.5 L385.9,210.0 L386.3,209.5 L386.7,209.0 L387.1,208.4 L387.4,207.9 L387.7,207.3
L387.9,206.7 L388.1,206.1 L388.3,205.5 L388.4,204.9 L388.5,204.3 L388.5,203.7 L388.4,203.1 L388.4,202.6
L388.2,202.0 L388.0,201.5 L387.8,201.1 L387.6,200.6 L387.3,200.2 L386.9,199.9 L386.5,199.6 L386.1,199.3
L385.7,199.1 L385.2,199.0 L384.7,198.8 L384.2,198.8 L383.7,198.8 L383.1,198.8 L382.6,198.9 L382.0,199.1
L381.5,199.3 L380.9,199.6 L380.4,199.9 L379.9,200.2 L379.4,200.6 L378.9,201.0 L378.4,201.5 L378.0,202.0
L377.6,202.5 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M440.7,200.0 L440.4,199.7 L440.1,199.4 L439.7,199.2 L439.2,199.0 L438.7,198.9 L438.2,198.8 L437.6,198.7
L437.0,198.8 L436.3,198.8 L435.7,199.0 L434.9,199.1 L434.2,199.4 L433.5,199.6 L432.8,200.0 L432.0,200.3
L431.3,200.7 L430.6,201.2 L429.9,201.7 L429.2,202.2 L428.6,202.7 L428.0,203.3 L427.4,203.9 L426.8,204.5
L426.4,205.1 L425.9,205.7 L425.5,206.3 L425.2,206.9 L424.9,207.5 L424.7,208.1 L424.5,208.7 L424.5,209.2
L424.4,209.7 L424.5,210.2 L424.6,210.7 L424.7,211.1 L425.0,211.5 L425.3,211.8 L425.6,212.1 L426.0,212.3
L426.5,212.5 L427.0,212.6 L427.5,212.7 L428.1,212.8 L428.7,212.7 L429.4,212.7 L430.0,212.5 L430.8,212.4
L431.5,212.1 L432.2,211.9 L432.9,211.5 L433.7,211.2 L434.4,210.8 L435.1,210.3 L435.8,209.8 L436.5,209.3
L437.1,208.8 L437.7,208.2 L438.3,207.6 L438.9,207.0 L439.3,206.4 L439.8,205.8 L440.2,205.2 L440.5,204.6
L440.8,204.0 L441.0,203.4 L441.2,202.8 L441.2,202.3 L441.3,201.8 L441.2,201.3 L441.1,200.8 L441.0,200.4
L440.7,200.0 Z '/> <path stroke='rgb(148, 0, 211)' d='M440.7,200.0 L440.4,199.7 L440.1,199.4 L439.7,199.2 L439.2,199.0 L438.7,198.9 L438.2,198.8 L437.6,198.7
L437.0,198.8 L436.3,198.8 L435.7,199.0 L434.9,199.1 L434.2,199.4 L433.5,199.6 L432.8,200.0 L432.0,200.3
L431.3,200.7 L430.6,201.2 L429.9,201.7 L429.2,202.2 L428.6,202.7 L428.0,203.3 L427.4,203.9 L426.8,204.5
L426.4,205.1 L425.9,205.7 L425.5,206.3 L425.2,206.9 L424.9,207.5 L424.7,208.1 L424.5,208.7 L424.5,209.2
L424.4,209.7 L424.5,210.2 L424.6,210.7 L424.7,211.1 L425.0,211.5 L425.3,211.8 L425.6,212.1 L426.0,212.3
L426.5,212.5 L427.0,212.6 L427.5,212.7 L428.1,212.8 L428.7,212.7 L429.4,212.7 L430.0,212.5 L430.8,212.4
L431.5,212.1 L432.2,211.9 L432.9,211.5 L433.7,211.2 L434.4,210.8 L435.1,210.3 L435.8,209.8 L436.5,209.3
L437.1,208.8 L437.7,208.2 L438.3,207.6 L438.9,207.0 L439.3,206.4 L439.8,205.8 L440.2,205.2 L440.5,204.6
L440.8,204.0 L441.0,203.4 L441.2,202.8 L441.2,202.3 L441.3,201.8 L441.2,201.3 L441.1,200.8 L441.0,200.4
L440.7,200.0 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M491.1,211.9 L491.4,211.5 L491.6,211.0 L491.7,210.5 L491.8,210.0 L491.9,209.4 L491.8,208.8 L491.8,208.2
L491.6,207.6 L491.4,207.0 L491.1,206.3 L490.8,205.7 L490.4,205.0 L490.0,204.4 L489.5,203.7 L488.9,203.1
L488.4,202.5 L487.7,201.9 L487.1,201.4 L486.4,200.9 L485.7,200.4 L485.0,199.9 L484.3,199.5 L483.6,199.2
L482.9,198.9 L482.1,198.7 L481.4,198.5 L480.7,198.3 L480.1,198.3 L479.4,198.2 L478.8,198.3 L478.2,198.4
L477.7,198.5 L477.2,198.7 L476.8,199.0 L476.4,199.3 L476.0,199.6 L475.7,200.0 L475.5,200.5 L475.4,201.0
L475.3,201.5 L475.2,202.1 L475.3,202.7 L475.3,203.3 L475.5,203.9 L475.7,204.5 L476.0,205.2 L476.3,205.8
L476.7,206.5 L477.1,207.1 L477.6,207.8 L478.2,208.4 L478.7,209.0 L479.4,209.6 L480.0,210.1 L480.7,210.6
L481.4,211.1 L482.1,211.6 L482.8,212.0 L483.5,212.3 L484.2,212.6 L485.0,212.8 L485.7,213.0 L486.4,213.2
L487.0,213.2 L487.7,213.3 L488.3,213.2 L488.9,213.1 L489.4,213.0 L489.9,212.8 L490.3,212.5 L490.7,212.2
L491.1,211.9 Z '/> <path stroke='rgb(148, 0, 211)' d='M491.1,211.9 L491.4,211.5 L491.6,211.0 L491.7,210.5 L491.8,210.0 L491.9,209.4 L491.8,208.8 L491.8,208.2
L491.6,207.6 L491.4,207.0 L491.1,206.3 L490.8,205.7 L490.4,205.0 L490.0,204.4 L489.5,203.7 L488.9,203.1
L488.4,202.5 L487.7,201.9 L487.1,201.4 L486.4,200.9 L485.7,200.4 L485.0,199.9 L484.3,199.5 L483.6,199.2
L482.9,198.9 L482.1,198.7 L481.4,198.5 L480.7,198.3 L480.1,198.3 L479.4,198.2 L478.8,198.3 L478.2,198.4
L477.7,198.5 L477.2,198.7 L476.8,199.0 L476.4,199.3 L476.0,199.6 L475.7,200.0 L475.5,200.5 L475.4,201.0
L475.3,201.5 L475.2,202.1 L475.3,202.7 L475.3,203.3 L475.5,203.9 L475.7,204.5 L476.0,205.2 L476.3,205.8
L476.7,206.5 L477.1,207.1 L477.6,207.8 L478.2,208.4 L478.7,209.0 L479.4,209.6 L480.0,210.1 L480.7,210.6
L481.4,211.1 L482.1,211.6 L482.8,212.0 L483.5,212.3 L484.2,212.6 L485.0,212.8 L485.7,213.0 L486.4,213.2
L487.0,213.2 L487.7,213.3 L488.3,213.2 L488.9,213.1 L489.4,213.0 L489.9,212.8 L490.3,212.5 L490.7,212.2
L491.1,211.9 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M121.1,152.2 L120.9,153.0 L120.7,153.7 L120.6,154.5 L120.5,155.3 L120.5,156.0 L120.6,156.8 L120.7,157.5
L120.9,158.3 L121.1,159.0 L121.4,159.6 L121.8,160.3 L122.2,160.9 L122.6,161.4 L123.1,161.9 L123.7,162.4
L124.3,162.8 L124.9,163.1 L125.5,163.4 L126.2,163.6 L126.9,163.8 L127.6,163.9 L128.3,163.9 L129.0,163.8
L129.7,163.7 L130.4,163.5 L131.1,163.3 L131.7,163.0 L132.4,162.6 L133.0,162.2 L133.6,161.7 L134.1,161.1
L134.6,160.6 L135.1,159.9 L135.5,159.3 L135.9,158.6 L136.2,157.9 L136.4,157.1 L136.6,156.4 L136.7,155.6
L136.8,154.8 L136.8,154.1 L136.7,153.3 L136.6,152.6 L136.4,151.8 L136.2,151.1 L135.9,150.5 L135.5,149.8
L135.1,149.2 L134.7,148.7 L134.2,148.2 L133.6,147.7 L133.0,147.3 L132.4,147.0 L131.8,146.7 L131.1,146.5
L130.4,146.3 L129.7,146.2 L129.0,146.2 L128.3,146.3 L127.6,146.4 L126.9,146.6 L126.2,146.8 L125.6,147.1
L124.9,147.5 L124.3,147.9 L123.7,148.4 L123.2,149.0 L122.7,149.5 L122.2,150.2 L121.8,150.8 L121.4,151.5
L121.1,152.2 Z '/> <path stroke='rgb(148, 0, 211)' d='M121.1,152.2 L120.9,153.0 L120.7,153.7 L120.6,154.5 L120.5,155.3 L120.5,156.0 L120.6,156.8 L120.7,157.5
L120.9,158.3 L121.1,159.0 L121.4,159.6 L121.8,160.3 L122.2,160.9 L122.6,161.4 L123.1,161.9 L123.7,162.4
L124.3,162.8 L124.9,163.1 L125.5,163.4 L126.2,163.6 L126.9,163.8 L127.6,163.9 L128.3,163.9 L129.0,163.8
L129.7,163.7 L130.4,163.5 L131.1,163.3 L131.7,163.0 L132.4,162.6 L133.0,162.2 L133.6,161.7 L134.1,161.1
L134.6,160.6 L135.1,159.9 L135.5,159.3 L135.9,158.6 L136.2,157.9 L136.4,157.1 L136.6,156.4 L136.7,155.6
L136.8,154.8 L136.8,154.1 L136.7,153.3 L136.6,152.6 L136.4,151.8 L136.2,151.1 L135.9,150.5 L135.5,149.8
L135.1,149.2 L134.7,148.7 L134.2,148.2 L133.6,147.7 L133.0,147.3 L132.4,147.0 L131.8,146.7 L131.1,146.5
L130.4,146.3 L129.7,146.2 L129.0,146.2 L128.3,146.3 L127.6,146.4 L126.9,146.6 L126.2,146.8 L125.6,147.1
L124.9,147.5 L124.3,147.9 L123.7,148.4 L123.2,149.0 L122.7,149.5 L122.2,150.2 L121.8,150.8 L121.4,151.5
L121.1,152.2 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M188.3,159.3 L188.4,159.0 L188.4,158.8 L188.3,158.5 L188.2,158.2 L188.0,157.8 L187.7,157.5 L187.4,157.1
L187.0,156.7 L186.5,156.3 L186.0,155.9 L185.4,155.5 L184.8,155.1 L184.2,154.6 L183.5,154.2 L182.8,153.8
L182.0,153.4 L181.3,153.0 L180.5,152.6 L179.7,152.3 L178.9,151.9 L178.1,151.6 L177.3,151.3 L176.6,151.1
L175.8,150.9 L175.1,150.7 L174.4,150.5 L173.8,150.4 L173.2,150.3 L172.6,150.2 L172.1,150.2 L171.7,150.2
L171.3,150.3 L170.9,150.4 L170.7,150.5 L170.5,150.7 L170.4,150.8 L170.3,151.1 L170.3,151.3 L170.4,151.6
L170.5,151.9 L170.7,152.3 L171.0,152.6 L171.3,153.0 L171.7,153.4 L172.2,153.8 L172.7,154.2 L173.3,154.6
L173.9,155.0 L174.5,155.5 L175.2,155.9 L175.9,156.3 L176.7,156.7 L177.4,157.1 L178.2,157.5 L179.0,157.8
L179.8,158.2 L180.6,158.5 L181.4,158.8 L182.1,159.0 L182.9,159.2 L183.6,159.4 L184.3,159.6 L184.9,159.7
L185.5,159.8 L186.1,159.9 L186.6,159.9 L187.0,159.9 L187.4,159.8 L187.8,159.7 L188.0,159.6 L188.2,159.4
L188.3,159.3 Z '/> <path stroke='rgb(148, 0, 211)' d='M188.3,159.3 L188.4,159.0 L188.4,158.8 L188.3,158.5 L188.2,158.2 L188.0,157.8 L187.7,157.5 L187.4,157.1
L187.0,156.7 L186.5,156.3 L186.0,155.9 L185.4,155.5 L184.8,155.1 L184.2,154.6 L183.5,154.2 L182.8,153.8
L182.0,153.4 L181.3,153.0 L180.5,152.6 L179.7,152.3 L178.9,151.9 L178.1,151.6 L177.3,151.3 L176.6,151.1
L175.8,150.9 L175.1,150.7 L174.4,150.5 L173.8,150.4 L173.2,150.3 L172.6,150.2 L172.1,150.2 L171.7,150.2
L171.3,150.3 L170.9,150.4 L170.7,150.5 L170.5,150.7 L170.4,150.8 L170.3,151.1 L170.3,151.3 L170.4,151.6
L170.5,151.9 L170.7,152.3 L171.0,152.6 L171.3,153.0 L171.7,153.4 L172.2,153.8 L172.7,154.2 L173.3,154.6
L173.9,155.0 L174.5,155.5 L175.2,155.9 L175.9,156.3 L176.7,156.7 L177.4,157.1 L178.2,157.5 L179.0,157.8
L179.8,158.2 L180.6,158.5 L181.4,158.8 L182.1,159.0 L182.9,159.2 L183.6,159.4 L184.3,159.6 L184.9,159.7
L185.5,159.8 L186.1,159.9 L186.6,159.9 L187.0,159.9 L187.4,159.8 L187.8,159.7 L188.0,159.6 L188.2,159.4
L188.3,159.3 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M238.2,161.9 L238.6,161.3 L239.0,160.7 L239.3,160.0 L239.5,159.3 L239.6,158.6 L239.7,157.9 L239.7,157.1
L239.6,156.3 L239.5,155.5 L239.3,154.7 L239.0,153.9 L238.6,153.1 L238.2,152.3 L237.7,151.5 L237.2,150.8
L236.6,150.1 L236.0,149.5 L235.3,148.8 L234.5,148.3 L233.8,147.7 L233.0,147.3 L232.2,146.9 L231.3,146.5
L230.5,146.2 L229.6,146.0 L228.8,145.9 L228.0,145.8 L227.2,145.8 L226.4,145.9 L225.6,146.0 L224.9,146.2
L224.2,146.5 L223.5,146.8 L222.9,147.2 L222.4,147.7 L221.9,148.2 L221.5,148.8 L221.1,149.4 L220.8,150.1
L220.6,150.8 L220.5,151.5 L220.4,152.2 L220.4,153.0 L220.5,153.8 L220.6,154.6 L220.8,155.4 L221.1,156.2
L221.5,157.0 L221.9,157.8 L222.4,158.6 L222.9,159.3 L223.5,160.0 L224.1,160.6 L224.8,161.3 L225.6,161.8
L226.3,162.4 L227.1,162.8 L227.9,163.2 L228.8,163.6 L229.6,163.9 L230.5,164.1 L231.3,164.2 L232.1,164.3
L232.9,164.3 L233.7,164.2 L234.5,164.1 L235.2,163.9 L235.9,163.6 L236.6,163.3 L237.2,162.9 L237.7,162.4
L238.2,161.9 Z '/> <path stroke='rgb(148, 0, 211)' d='M238.2,161.9 L238.6,161.3 L239.0,160.7 L239.3,160.0 L239.5,159.3 L239.6,158.6 L239.7,157.9 L239.7,157.1
L239.6,156.3 L239.5,155.5 L239.3,154.7 L239.0,153.9 L238.6,153.1 L238.2,152.3 L237.7,151.5 L237.2,150.8
L236.6,150.1 L236.0,149.5 L235.3,148.8 L234.5,148.3 L233.8,147.7 L233.0,147.3 L232.2,146.9 L231.3,146.5
L230.5,146.2 L229.6,146.0 L228.8,145.9 L228.0,145.8 L227.2,145.8 L226.4,145.9 L225.6,146.0 L224.9,146.2
L224.2,146.5 L223.5,146.8 L222.9,147.2 L222.4,147.7 L221.9,148.2 L221.5,148.8 L221.1,149.4 L220.8,150.1
L220.6,150.8 L220.5,151.5 L220.4,152.2 L220.4,153.0 L220.5,153.8 L220.6,154.6 L220.8,155.4 L221.1,156.2
L221.5,157.0 L221.9,157.8 L222.4,158.6 L222.9,159.3 L223.5,160.0 L224.1,160.6 L224.8,161.3 L225.6,161.8
L226.3,162.4 L227.1,162.8 L227.9,163.2 L228.8,163.6 L229.6,163.9 L230.5,164.1 L231.3,164.2 L232.1,164.3
L232.9,164.3 L233.7,164.2 L234.5,164.1 L235.2,163.9 L235.9,163.6 L236.6,163.3 L237.2,162.9 L237.7,162.4
L238.2,161.9 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M290.2,155.6 L290.2,155.3 L290.1,155.1 L289.9,154.8 L289.7,154.5 L289.4,154.3 L289.0,154.0 L288.6,153.7
L288.1,153.5 L287.6,153.3 L287.0,153.0 L286.3,152.8 L285.6,152.7 L284.9,152.5 L284.2,152.3 L283.4,152.2
L282.6,152.1 L281.8,152.0 L280.9,152.0 L280.1,151.9 L279.3,151.9 L278.5,151.9 L277.7,151.9 L276.9,152.0
L276.2,152.1 L275.5,152.2 L274.8,152.3 L274.2,152.5 L273.6,152.6 L273.1,152.8 L272.7,153.0 L272.3,153.2
L271.9,153.5 L271.7,153.7 L271.5,154.0 L271.3,154.2 L271.3,154.5 L271.3,154.8 L271.4,155.0 L271.6,155.3
L271.8,155.6 L272.1,155.8 L272.5,156.1 L272.9,156.4 L273.4,156.6 L273.9,156.8 L274.5,157.1 L275.2,157.3
L275.9,157.4 L276.6,157.6 L277.3,157.8 L278.1,157.9 L278.9,158.0 L279.7,158.1 L280.6,158.1 L281.4,158.2
L282.2,158.2 L283.0,158.2 L283.8,158.2 L284.6,158.1 L285.3,158.0 L286.0,157.9 L286.7,157.8 L287.3,157.6
L287.9,157.5 L288.4,157.3 L288.8,157.1 L289.2,156.9 L289.6,156.6 L289.8,156.4 L290.0,156.1 L290.2,155.9
L290.2,155.6 Z '/> <path stroke='rgb(148, 0, 211)' d='M290.2,155.6 L290.2,155.3 L290.1,155.1 L289.9,154.8 L289.7,154.5 L289.4,154.3 L289.0,154.0 L288.6,153.7
L288.1,153.5 L287.6,153.3 L287.0,153.0 L286.3,152.8 L285.6,152.7 L284.9,152.5 L284.2,152.3 L283.4,152.2
L282.6,152.1 L281.8,152.0 L280.9,152.0 L280.1,151.9 L279.3,151.9 L278.5,151.9 L277.7,151.9 L276.9,152.0
L276.2,152.1 L275.5,152.2 L274.8,152.3 L274.2,152.5 L273.6,152.6 L273.1,152.8 L272.7,153.0 L272.3,153.2
L271.9,153.5 L271.7,153.7 L271.5,154.0 L271.3,154.2 L271.3,154.5 L271.3,154.8 L271.4,155.0 L271.6,155.3
L271.8,155.6 L272.1,155.8 L272.5,156.1 L272.9,156.4 L273.4,156.6 L273.9,156.8 L274.5,157.1 L275.2,157.3
L275.9,157.4 L276.6,157.6 L277.3,157.8 L278.1,157.9 L278.9,158.0 L279.7,158.1 L280.6,158.1 L281.4,158.2
L282.2,158.2 L283.0,158.2 L283.8,158.2 L284.6,158.1 L285.3,158.0 L286.0,157.9 L286.7,157.8 L287.3,157.6
L287.9,157.5 L288.4,157.3 L288.8,157.1 L289.2,156.9 L289.6,156.6 L289.8,156.4 L290.0,156.1 L290.2,155.9
L290.2,155.6 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M337.1,159.5 L337.3,159.3 L337.4,159.0 L337.5,158.7 L337.5,158.4 L337.4,158.0 L337.4,157.7 L337.2,157.3
L337.1,156.9 L336.9,156.4 L336.6,156.0 L336.3,155.5 L336.0,155.1 L335.7,154.7 L335.3,154.2 L334.8,153.8
L334.4,153.3 L333.9,152.9 L333.4,152.5 L332.9,152.1 L332.4,151.8 L331.9,151.5 L331.4,151.1 L330.8,150.9
L330.3,150.6 L329.8,150.4 L329.3,150.2 L328.8,150.1 L328.4,150.0 L327.9,149.9 L327.5,149.9 L327.1,149.9
L326.8,150.0 L326.5,150.1 L326.2,150.2 L326.0,150.4 L325.8,150.6 L325.6,150.8 L325.5,151.1 L325.4,151.4
L325.4,151.7 L325.5,152.1 L325.5,152.4 L325.7,152.8 L325.8,153.2 L326.0,153.7 L326.3,154.1 L326.6,154.6
L326.9,155.0 L327.2,155.4 L327.6,155.9 L328.1,156.3 L328.5,156.8 L329.0,157.2 L329.5,157.6 L330.0,158.0
L330.5,158.3 L331.0,158.6 L331.5,159.0 L332.1,159.2 L332.6,159.5 L333.1,159.7 L333.6,159.9 L334.1,160.0
L334.5,160.1 L335.0,160.2 L335.4,160.2 L335.8,160.2 L336.1,160.1 L336.4,160.0 L336.7,159.9 L336.9,159.7
L337.1,159.5 Z '/> <path stroke='rgb(148, 0, 211)' d='M337.1,159.5 L337.3,159.3 L337.4,159.0 L337.5,158.7 L337.5,158.4 L337.4,158.0 L337.4,157.7 L337.2,157.3
L337.1,156.9 L336.9,156.4 L336.6,156.0 L336.3,155.5 L336.0,155.1 L335.7,154.7 L335.3,154.2 L334.8,153.8
L334.4,153.3 L333.9,152.9 L333.4,152.5 L332.9,152.1 L332.4,151.8 L331.9,151.5 L331.4,151.1 L330.8,150.9
L330.3,150.6 L329.8,150.4 L329.3,150.2 L328.8,150.1 L328.4,150.0 L327.9,149.9 L327.5,149.9 L327.1,149.9
L326.8,150.0 L326.5,150.1 L326.2,150.2 L326.0,150.4 L325.8,150.6 L325.6,150.8 L325.5,151.1 L325.4,151.4
L325.4,151.7 L325.5,152.1 L325.5,152.4 L325.7,152.8 L325.8,153.2 L326.0,153.7 L326.3,154.1 L326.6,154.6
L326.9,155.0 L327.2,155.4 L327.6,155.9 L328.1,156.3 L328.5,156.8 L329.0,157.2 L329.5,157.6 L330.0,158.0
L330.5,158.3 L331.0,158.6 L331.5,159.0 L332.1,159.2 L332.6,159.5 L333.1,159.7 L333.6,159.9 L334.1,160.0
L334.5,160.1 L335.0,160.2 L335.4,160.2 L335.8,160.2 L336.1,160.1 L336.4,160.0 L336.7,159.9 L336.9,159.7
L337.1,159.5 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M389.4,160.8 L389.6,160.6 L389.6,160.4 L389.6,160.0 L389.6,159.7 L389.5,159.3 L389.4,158.9 L389.1,158.5
L388.9,158.0 L388.6,157.5 L388.2,157.0 L387.8,156.5 L387.3,156.0 L386.8,155.5 L386.3,154.9 L385.8,154.4
L385.2,153.8 L384.6,153.3 L383.9,152.8 L383.3,152.3 L382.6,151.8 L382.0,151.4 L381.3,151.0 L380.7,150.6
L380.1,150.2 L379.4,149.9 L378.8,149.6 L378.3,149.4 L377.7,149.2 L377.2,149.0 L376.7,148.9 L376.3,148.9
L375.9,148.8 L375.6,148.9 L375.3,149.0 L375.0,149.1 L374.9,149.3 L374.7,149.5 L374.7,149.7 L374.7,150.1
L374.7,150.4 L374.8,150.8 L374.9,151.2 L375.2,151.6 L375.4,152.1 L375.7,152.6 L376.1,153.1 L376.5,153.6
L377.0,154.1 L377.5,154.6 L378.0,155.2 L378.5,155.7 L379.1,156.3 L379.7,156.8 L380.4,157.3 L381.0,157.8
L381.7,158.3 L382.3,158.7 L383.0,159.1 L383.6,159.5 L384.2,159.9 L384.9,160.2 L385.5,160.5 L386.0,160.7
L386.6,160.9 L387.1,161.1 L387.6,161.2 L388.0,161.2 L388.4,161.3 L388.7,161.2 L389.0,161.1 L389.3,161.0
L389.4,160.8 Z '/> <path stroke='rgb(148, 0, 211)' d='M389.4,160.8 L389.6,160.6 L389.6,160.4 L389.6,160.0 L389.6,159.7 L389.5,159.3 L389.4,158.9 L389.1,158.5
L388.9,158.0 L388.6,157.5 L388.2,157.0 L387.8,156.5 L387.3,156.0 L386.8,155.5 L386.3,154.9 L385.8,154.4
L385.2,153.8 L384.6,153.3 L383.9,152.8 L383.3,152.3 L382.6,151.8 L382.0,151.4 L381.3,151.0 L380.7,150.6
L380.1,150.2 L379.4,149.9 L378.8,149.6 L378.3,149.4 L377.7,149.2 L377.2,149.0 L376.7,148.9 L376.3,148.9
L375.9,148.8 L375.6,148.9 L375.3,149.0 L375.0,149.1 L374.9,149.3 L374.7,149.5 L374.7,149.7 L374.7,150.1
L374.7,150.4 L374.8,150.8 L374.9,151.2 L375.2,151.6 L375.4,152.1 L375.7,152.6 L376.1,153.1 L376.5,153.6
L377.0,154.1 L377.5,154.6 L378.0,155.2 L378.5,155.7 L379.1,156.3 L379.7,156.8 L380.4,157.3 L381.0,157.8
L381.7,158.3 L382.3,158.7 L383.0,159.1 L383.6,159.5 L384.2,159.9 L384.9,160.2 L385.5,160.5 L386.0,160.7
L386.6,160.9 L387.1,161.1 L387.6,161.2 L388.0,161.2 L388.4,161.3 L388.7,161.2 L389.0,161.1 L389.3,161.0
L389.4,160.8 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M426.2,153.6 L426.0,154.4 L426.0,155.2 L425.9,155.9 L425.9,156.7 L426.0,157.5 L426.1,158.2 L426.3,158.9
L426.5,159.6 L426.8,160.2 L427.1,160.8 L427.5,161.4 L427.9,161.9 L428.3,162.4 L428.8,162.8 L429.3,163.1
L429.9,163.4 L430.4,163.6 L431.0,163.8 L431.6,163.9 L432.2,163.9 L432.8,163.9 L433.4,163.8 L434.0,163.6
L434.6,163.3 L435.1,163.0 L435.7,162.7 L436.2,162.2 L436.8,161.8 L437.2,161.2 L437.7,160.7 L438.1,160.0
L438.5,159.4 L438.8,158.7 L439.1,158.0 L439.3,157.2 L439.5,156.5 L439.7,155.7 L439.7,154.9 L439.8,154.2
L439.8,153.4 L439.7,152.6 L439.6,151.9 L439.4,151.2 L439.2,150.5 L438.9,149.9 L438.6,149.3 L438.2,148.7
L437.8,148.2 L437.4,147.7 L436.9,147.3 L436.4,147.0 L435.8,146.7 L435.3,146.5 L434.7,146.3 L434.1,146.2
L433.5,146.2 L432.9,146.2 L432.3,146.3 L431.7,146.5 L431.1,146.8 L430.6,147.1 L430.0,147.4 L429.5,147.9
L428.9,148.3 L428.5,148.9 L428.0,149.4 L427.6,150.1 L427.2,150.7 L426.9,151.4 L426.6,152.1 L426.4,152.9
L426.2,153.6 Z '/> <path stroke='rgb(148, 0, 211)' d='M426.2,153.6 L426.0,154.4 L426.0,155.2 L425.9,155.9 L425.9,156.7 L426.0,157.5 L426.1,158.2 L426.3,158.9
L426.5,159.6 L426.8,160.2 L427.1,160.8 L427.5,161.4 L427.9,161.9 L428.3,162.4 L428.8,162.8 L429.3,163.1
L429.9,163.4 L430.4,163.6 L431.0,163.8 L431.6,163.9 L432.2,163.9 L432.8,163.9 L433.4,163.8 L434.0,163.6
L434.6,163.3 L435.1,163.0 L435.7,162.7 L436.2,162.2 L436.8,161.8 L437.2,161.2 L437.7,160.7 L438.1,160.0
L438.5,159.4 L438.8,158.7 L439.1,158.0 L439.3,157.2 L439.5,156.5 L439.7,155.7 L439.7,154.9 L439.8,154.2
L439.8,153.4 L439.7,152.6 L439.6,151.9 L439.4,151.2 L439.2,150.5 L438.9,149.9 L438.6,149.3 L438.2,148.7
L437.8,148.2 L437.4,147.7 L436.9,147.3 L436.4,147.0 L435.8,146.7 L435.3,146.5 L434.7,146.3 L434.1,146.2
L433.5,146.2 L432.9,146.2 L432.3,146.3 L431.7,146.5 L431.1,146.8 L430.6,147.1 L430.0,147.4 L429.5,147.9
L428.9,148.3 L428.5,148.9 L428.0,149.4 L427.6,150.1 L427.2,150.7 L426.9,151.4 L426.6,152.1 L426.4,152.9
L426.2,153.6 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M481.2,154.7 L481.1,155.2 L481.1,155.7 L481.1,156.1 L481.1,156.6 L481.1,157.0 L481.2,157.5 L481.2,157.9
L481.3,158.2 L481.4,158.6 L481.5,158.9 L481.6,159.3 L481.8,159.5 L481.9,159.8 L482.1,160.0 L482.3,160.1
L482.5,160.3 L482.7,160.3 L482.9,160.4 L483.1,160.4 L483.3,160.4 L483.5,160.3 L483.7,160.2 L483.9,160.0
L484.1,159.8 L484.3,159.6 L484.5,159.3 L484.7,159.0 L484.9,158.7 L485.1,158.4 L485.3,158.0 L485.4,157.6
L485.5,157.2 L485.7,156.7 L485.8,156.3 L485.8,155.8 L485.9,155.4 L486.0,154.9 L486.0,154.4 L486.0,154.0
L486.0,153.5 L486.0,153.1 L485.9,152.6 L485.9,152.2 L485.8,151.9 L485.7,151.5 L485.6,151.2 L485.5,150.8
L485.3,150.6 L485.2,150.3 L485.0,150.1 L484.8,150.0 L484.6,149.8 L484.4,149.8 L484.2,149.7 L484.0,149.7
L483.8,149.7 L483.6,149.8 L483.4,149.9 L483.2,150.1 L483.0,150.3 L482.8,150.5 L482.6,150.8 L482.4,151.1
L482.2,151.4 L482.0,151.7 L481.8,152.1 L481.7,152.5 L481.6,152.9 L481.4,153.4 L481.3,153.8 L481.3,154.3
L481.2,154.7 Z '/> <path stroke='rgb(148, 0, 211)' d='M481.2,154.7 L481.1,155.2 L481.1,155.7 L481.1,156.1 L481.1,156.6 L481.1,157.0 L481.2,157.5 L481.2,157.9
L481.3,158.2 L481.4,158.6 L481.5,158.9 L481.6,159.3 L481.8,159.5 L481.9,159.8 L482.1,160.0 L482.3,160.1
L482.5,160.3 L482.7,160.3 L482.9,160.4 L483.1,160.4 L483.3,160.4 L483.5,160.3 L483.7,160.2 L483.9,160.0
L484.1,159.8 L484.3,159.6 L484.5,159.3 L484.7,159.0 L484.9,158.7 L485.1,158.4 L485.3,158.0 L485.4,157.6
L485.5,157.2 L485.7,156.7 L485.8,156.3 L485.8,155.8 L485.9,155.4 L486.0,154.9 L486.0,154.4 L486.0,154.0
L486.0,153.5 L486.0,153.1 L485.9,152.6 L485.9,152.2 L485.8,151.9 L485.7,151.5 L485.6,151.2 L485.5,150.8
L485.3,150.6 L485.2,150.3 L485.0,150.1 L484.8,150.0 L484.6,149.8 L484.4,149.8 L484.2,149.7 L484.0,149.7
L483.8,149.7 L483.6,149.8 L483.4,149.9 L483.2,150.1 L483.0,150.3 L482.8,150.5 L482.6,150.8 L482.4,151.1
L482.2,151.4 L482.0,151.7 L481.8,152.1 L481.7,152.5 L481.6,152.9 L481.4,153.4 L481.3,153.8 L481.3,154.3
L481.2,154.7 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M123.1,102.6 L122.9,103.2 L122.8,103.9 L122.7,104.6 L122.6,105.2 L122.6,105.9 L122.6,106.6 L122.7,107.2
L122.8,107.8 L123.0,108.4 L123.2,109.0 L123.5,109.5 L123.8,110.0 L124.1,110.5 L124.4,110.8 L124.8,111.2
L125.3,111.5 L125.7,111.7 L126.2,111.9 L126.7,112.0 L127.2,112.1 L127.7,112.1 L128.2,112.1 L128.7,112.0
L129.3,111.8 L129.8,111.6 L130.3,111.3 L130.8,111.0 L131.3,110.6 L131.7,110.2 L132.2,109.7 L132.6,109.2
L133.0,108.6 L133.3,108.0 L133.7,107.4 L133.9,106.8 L134.2,106.1 L134.4,105.5 L134.5,104.8 L134.6,104.1
L134.7,103.5 L134.7,102.8 L134.7,102.1 L134.6,101.5 L134.5,100.9 L134.3,100.3 L134.1,99.7 L133.8,99.2
L133.5,98.7 L133.2,98.2 L132.9,97.9 L132.5,97.5 L132.0,97.2 L131.6,97.0 L131.1,96.8 L130.6,96.7
L130.1,96.6 L129.6,96.6 L129.1,96.6 L128.6,96.7 L128.0,96.9 L127.5,97.1 L127.0,97.4 L126.5,97.7
L126.0,98.1 L125.6,98.5 L125.1,99.0 L124.7,99.5 L124.3,100.1 L124.0,100.7 L123.6,101.3 L123.4,101.9
L123.1,102.6 Z '/> <path stroke='rgb(148, 0, 211)' d='M123.1,102.6 L122.9,103.2 L122.8,103.9 L122.7,104.6 L122.6,105.2 L122.6,105.9 L122.6,106.6 L122.7,107.2
L122.8,107.8 L123.0,108.4 L123.2,109.0 L123.5,109.5 L123.8,110.0 L124.1,110.5 L124.4,110.8 L124.8,111.2
L125.3,111.5 L125.7,111.7 L126.2,111.9 L126.7,112.0 L127.2,112.1 L127.7,112.1 L128.2,112.1 L128.7,112.0
L129.3,111.8 L129.8,111.6 L130.3,111.3 L130.8,111.0 L131.3,110.6 L131.7,110.2 L132.2,109.7 L132.6,109.2
L133.0,108.6 L133.3,108.0 L133.7,107.4 L133.9,106.8 L134.2,106.1 L134.4,105.5 L134.5,104.8 L134.6,104.1
L134.7,103.5 L134.7,102.8 L134.7,102.1 L134.6,101.5 L134.5,100.9 L134.3,100.3 L134.1,99.7 L133.8,99.2
L133.5,98.7 L133.2,98.2 L132.9,97.9 L132.5,97.5 L132.0,97.2 L131.6,97.0 L131.1,96.8 L130.6,96.7
L130.1,96.6 L129.6,96.6 L129.1,96.6 L128.6,96.7 L128.0,96.9 L127.5,97.1 L127.0,97.4 L126.5,97.7
L126.0,98.1 L125.6,98.5 L125.1,99.0 L124.7,99.5 L124.3,100.1 L124.0,100.7 L123.6,101.3 L123.4,101.9
L123.1,102.6 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M188.2,107.7 L188.4,107.0 L188.6,106.3 L188.6,105.6 L188.7,104.9 L188.6,104.2 L188.5,103.4 L188.3,102.7
L188.0,102.0 L187.7,101.3 L187.3,100.7 L186.8,100.0 L186.3,99.4 L185.7,98.8 L185.1,98.3 L184.5,97.8
L183.8,97.4 L183.0,97.0 L182.3,96.7 L181.5,96.4 L180.7,96.2 L179.9,96.1 L179.1,96.0 L178.3,96.0
L177.4,96.0 L176.7,96.2 L175.9,96.3 L175.2,96.6 L174.4,96.9 L173.8,97.2 L173.1,97.6 L172.6,98.1
L172.0,98.6 L171.6,99.1 L171.1,99.7 L170.8,100.3 L170.5,101.0 L170.3,101.7 L170.1,102.4 L170.1,103.1
L170.0,103.8 L170.1,104.5 L170.2,105.3 L170.4,106.0 L170.7,106.7 L171.0,107.4 L171.4,108.0 L171.9,108.7
L172.4,109.3 L173.0,109.9 L173.6,110.4 L174.2,110.9 L174.9,111.3 L175.7,111.7 L176.4,112.0 L177.2,112.3
L178.0,112.5 L178.8,112.6 L179.6,112.7 L180.4,112.7 L181.3,112.7 L182.0,112.5 L182.8,112.4 L183.5,112.1
L184.3,111.8 L184.9,111.5 L185.6,111.1 L186.1,110.6 L186.7,110.1 L187.1,109.6 L187.6,109.0 L187.9,108.4
L188.2,107.7 Z '/> <path stroke='rgb(148, 0, 211)' d='M188.2,107.7 L188.4,107.0 L188.6,106.3 L188.6,105.6 L188.7,104.9 L188.6,104.2 L188.5,103.4 L188.3,102.7
L188.0,102.0 L187.7,101.3 L187.3,100.7 L186.8,100.0 L186.3,99.4 L185.7,98.8 L185.1,98.3 L184.5,97.8
L183.8,97.4 L183.0,97.0 L182.3,96.7 L181.5,96.4 L180.7,96.2 L179.9,96.1 L179.1,96.0 L178.3,96.0
L177.4,96.0 L176.7,96.2 L175.9,96.3 L175.2,96.6 L174.4,96.9 L173.8,97.2 L173.1,97.6 L172.6,98.1
L172.0,98.6 L171.6,99.1 L171.1,99.7 L170.8,100.3 L170.5,101.0 L170.3,101.7 L170.1,102.4 L170.1,103.1
L170.0,103.8 L170.1,104.5 L170.2,105.3 L170.4,106.0 L170.7,106.7 L171.0,107.4 L171.4,108.0 L171.9,108.7
L172.4,109.3 L173.0,109.9 L173.6,110.4 L174.2,110.9 L174.9,111.3 L175.7,111.7 L176.4,112.0 L177.2,112.3
L178.0,112.5 L178.8,112.6 L179.6,112.7 L180.4,112.7 L181.3,112.7 L182.0,112.5 L182.8,112.4 L183.5,112.1
L184.3,111.8 L184.9,111.5 L185.6,111.1 L186.1,110.6 L186.7,110.1 L187.1,109.6 L187.6,109.0 L187.9,108.4
L188.2,107.7 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M222.2,99.3 L221.7,100.1 L221.3,100.9 L221.0,101.7 L220.7,102.6 L220.5,103.5 L220.4,104.4 L220.4,105.2
L220.4,106.1 L220.5,107.0 L220.7,107.8 L220.9,108.6 L221.2,109.4 L221.6,110.2 L222.1,110.9 L222.6,111.5
L223.1,112.1 L223.8,112.7 L224.4,113.1 L225.1,113.5 L225.9,113.9 L226.7,114.1 L227.5,114.3 L228.3,114.4
L229.1,114.5 L230.0,114.4 L230.8,114.3 L231.6,114.1 L232.5,113.9 L233.3,113.5 L234.1,113.1 L234.8,112.6
L235.5,112.1 L236.2,111.5 L236.8,110.9 L237.4,110.2 L237.9,109.4 L238.4,108.6 L238.8,107.8 L239.1,107.0
L239.4,106.1 L239.6,105.2 L239.7,104.3 L239.7,103.5 L239.7,102.6 L239.6,101.7 L239.4,100.9 L239.2,100.1
L238.9,99.3 L238.5,98.5 L238.0,97.8 L237.5,97.2 L237.0,96.6 L236.3,96.0 L235.7,95.6 L235.0,95.2
L234.2,94.8 L233.4,94.6 L232.6,94.4 L231.8,94.3 L231.0,94.2 L230.1,94.3 L229.3,94.4 L228.5,94.6
L227.6,94.8 L226.8,95.2 L226.0,95.6 L225.3,96.1 L224.6,96.6 L223.9,97.2 L223.3,97.8 L222.7,98.5
L222.2,99.3 Z '/> <path stroke='rgb(148, 0, 211)' d='M222.2,99.3 L221.7,100.1 L221.3,100.9 L221.0,101.7 L220.7,102.6 L220.5,103.5 L220.4,104.4 L220.4,105.2
L220.4,106.1 L220.5,107.0 L220.7,107.8 L220.9,108.6 L221.2,109.4 L221.6,110.2 L222.1,110.9 L222.6,111.5
L223.1,112.1 L223.8,112.7 L224.4,113.1 L225.1,113.5 L225.9,113.9 L226.7,114.1 L227.5,114.3 L228.3,114.4
L229.1,114.5 L230.0,114.4 L230.8,114.3 L231.6,114.1 L232.5,113.9 L233.3,113.5 L234.1,113.1 L234.8,112.6
L235.5,112.1 L236.2,111.5 L236.8,110.9 L237.4,110.2 L237.9,109.4 L238.4,108.6 L238.8,107.8 L239.1,107.0
L239.4,106.1 L239.6,105.2 L239.7,104.3 L239.7,103.5 L239.7,102.6 L239.6,101.7 L239.4,100.9 L239.2,100.1
L238.9,99.3 L238.5,98.5 L238.0,97.8 L237.5,97.2 L237.0,96.6 L236.3,96.0 L235.7,95.6 L235.0,95.2
L234.2,94.8 L233.4,94.6 L232.6,94.4 L231.8,94.3 L231.0,94.2 L230.1,94.3 L229.3,94.4 L228.5,94.6
L227.6,94.8 L226.8,95.2 L226.0,95.6 L225.3,96.1 L224.6,96.6 L223.9,97.2 L223.3,97.8 L222.7,98.5
L222.2,99.3 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M285.2,106.5 L285.3,106.3 L285.3,106.1 L285.3,105.9 L285.2,105.8 L285.2,105.5 L285.0,105.3 L284.9,105.1
L284.7,104.9 L284.5,104.6 L284.3,104.4 L284.0,104.2 L283.7,103.9 L283.4,103.7 L283.0,103.5 L282.7,103.3
L282.3,103.0 L281.9,102.8 L281.5,102.6 L281.2,102.5 L280.8,102.3 L280.4,102.2 L280.0,102.0 L279.6,101.9
L279.2,101.8 L278.8,101.7 L278.5,101.7 L278.1,101.7 L277.8,101.6 L277.5,101.6 L277.3,101.7 L277.0,101.7
L276.8,101.8 L276.6,101.9 L276.5,102.0 L276.3,102.1 L276.3,102.2 L276.2,102.4 L276.2,102.6 L276.2,102.8
L276.3,102.9 L276.3,103.2 L276.5,103.4 L276.6,103.6 L276.8,103.8 L277.0,104.1 L277.2,104.3 L277.5,104.5
L277.8,104.8 L278.1,105.0 L278.5,105.2 L278.8,105.4 L279.2,105.7 L279.6,105.9 L280.0,106.1 L280.3,106.2
L280.7,106.4 L281.1,106.5 L281.5,106.7 L281.9,106.8 L282.3,106.9 L282.7,107.0 L283.0,107.0 L283.4,107.0
L283.7,107.1 L284.0,107.1 L284.2,107.0 L284.5,107.0 L284.7,106.9 L284.9,106.8 L285.0,106.7 L285.2,106.6
L285.2,106.5 Z '/> <path stroke='rgb(148, 0, 211)' d='M285.2,106.5 L285.3,106.3 L285.3,106.1 L285.3,105.9 L285.2,105.8 L285.2,105.5 L285.0,105.3 L284.9,105.1
L284.7,104.9 L284.5,104.6 L284.3,104.4 L284.0,104.2 L283.7,103.9 L283.4,103.7 L283.0,103.5 L282.7,103.3
L282.3,103.0 L281.9,102.8 L281.5,102.6 L281.2,102.5 L280.8,102.3 L280.4,102.2 L280.0,102.0 L279.6,101.9
L279.2,101.8 L278.8,101.7 L278.5,101.7 L278.1,101.7 L277.8,101.6 L277.5,101.6 L277.3,101.7 L277.0,101.7
L276.8,101.8 L276.6,101.9 L276.5,102.0 L276.3,102.1 L276.3,102.2 L276.2,102.4 L276.2,102.6 L276.2,102.8
L276.3,102.9 L276.3,103.2 L276.5,103.4 L276.6,103.6 L276.8,103.8 L277.0,104.1 L277.2,104.3 L277.5,104.5
L277.8,104.8 L278.1,105.0 L278.5,105.2 L278.8,105.4 L279.2,105.7 L279.6,105.9 L280.0,106.1 L280.3,106.2
L280.7,106.4 L281.1,106.5 L281.5,106.7 L281.9,106.8 L282.3,106.9 L282.7,107.0 L283.0,107.0 L283.4,107.0
L283.7,107.1 L284.0,107.1 L284.2,107.0 L284.5,107.0 L284.7,106.9 L284.9,106.8 L285.0,106.7 L285.2,106.6
L285.2,106.5 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M338.3,99.8 L338.2,99.6 L337.9,99.4 L337.6,99.3 L337.3,99.1 L336.9,99.1 L336.5,99.0 L336.1,99.1
L335.6,99.1 L335.0,99.2 L334.5,99.3 L333.9,99.5 L333.3,99.7 L332.7,99.9 L332.1,100.2 L331.5,100.5
L330.9,100.8 L330.2,101.2 L329.6,101.6 L329.0,102.0 L328.5,102.4 L327.9,102.9 L327.4,103.3 L326.9,103.8
L326.4,104.2 L326.0,104.7 L325.6,105.2 L325.3,105.6 L325.0,106.1 L324.8,106.5 L324.6,106.9 L324.4,107.3
L324.4,107.7 L324.3,108.0 L324.3,108.3 L324.4,108.6 L324.6,108.9 L324.7,109.1 L325.0,109.3 L325.3,109.4
L325.6,109.6 L326.0,109.6 L326.4,109.7 L326.8,109.6 L327.3,109.6 L327.9,109.5 L328.4,109.4 L329.0,109.2
L329.6,109.0 L330.2,108.8 L330.8,108.5 L331.4,108.2 L332.0,107.9 L332.7,107.5 L333.3,107.1 L333.9,106.7
L334.4,106.3 L335.0,105.8 L335.5,105.4 L336.0,104.9 L336.5,104.5 L336.9,104.0 L337.3,103.5 L337.6,103.1
L337.9,102.6 L338.1,102.2 L338.3,101.8 L338.5,101.4 L338.5,101.0 L338.6,100.7 L338.6,100.4 L338.5,100.1
L338.3,99.8 Z '/> <path stroke='rgb(148, 0, 211)' d='M338.3,99.8 L338.2,99.6 L337.9,99.4 L337.6,99.3 L337.3,99.1 L336.9,99.1 L336.5,99.0 L336.1,99.1
L335.6,99.1 L335.0,99.2 L334.5,99.3 L333.9,99.5 L333.3,99.7 L332.7,99.9 L332.1,100.2 L331.5,100.5
L330.9,100.8 L330.2,101.2 L329.6,101.6 L329.0,102.0 L328.5,102.4 L327.9,102.9 L327.4,103.3 L326.9,103.8
L326.4,104.2 L326.0,104.7 L325.6,105.2 L325.3,105.6 L325.0,106.1 L324.8,106.5 L324.6,106.9 L324.4,107.3
L324.4,107.7 L324.3,108.0 L324.3,108.3 L324.4,108.6 L324.6,108.9 L324.7,109.1 L325.0,109.3 L325.3,109.4
L325.6,109.6 L326.0,109.6 L326.4,109.7 L326.8,109.6 L327.3,109.6 L327.9,109.5 L328.4,109.4 L329.0,109.2
L329.6,109.0 L330.2,108.8 L330.8,108.5 L331.4,108.2 L332.0,107.9 L332.7,107.5 L333.3,107.1 L333.9,106.7
L334.4,106.3 L335.0,105.8 L335.5,105.4 L336.0,104.9 L336.5,104.5 L336.9,104.0 L337.3,103.5 L337.6,103.1
L337.9,102.6 L338.1,102.2 L338.3,101.8 L338.5,101.4 L338.5,101.0 L338.6,100.7 L338.6,100.4 L338.5,100.1
L338.3,99.8 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M379.9,104.1 L379.9,104.7 L379.8,105.2 L379.8,105.8 L379.8,106.3 L379.8,106.8 L379.9,107.3 L379.9,107.8
L380.0,108.3 L380.1,108.7 L380.2,109.1 L380.3,109.4 L380.5,109.7 L380.6,110.0 L380.8,110.3 L380.9,110.4
L381.1,110.6 L381.3,110.7 L381.5,110.7 L381.7,110.7 L381.9,110.7 L382.1,110.6 L382.3,110.4 L382.5,110.2
L382.7,110.0 L382.9,109.7 L383.1,109.4 L383.3,109.0 L383.5,108.6 L383.6,108.2 L383.8,107.7 L383.9,107.2
L384.0,106.7 L384.1,106.2 L384.2,105.7 L384.3,105.1 L384.4,104.6 L384.4,104.0 L384.5,103.5 L384.5,102.9
L384.5,102.4 L384.5,101.9 L384.4,101.4 L384.4,100.9 L384.3,100.4 L384.2,100.0 L384.1,99.6 L384.0,99.3
L383.8,99.0 L383.7,98.7 L383.5,98.4 L383.4,98.3 L383.2,98.1 L383.0,98.0 L382.8,98.0 L382.6,98.0
L382.4,98.0 L382.2,98.1 L382.0,98.3 L381.8,98.5 L381.6,98.7 L381.4,99.0 L381.2,99.3 L381.0,99.7
L380.8,100.1 L380.7,100.5 L380.5,101.0 L380.4,101.5 L380.3,102.0 L380.2,102.5 L380.1,103.0 L380.0,103.6
L379.9,104.1 Z '/> <path stroke='rgb(148, 0, 211)' d='M379.9,104.1 L379.9,104.7 L379.8,105.2 L379.8,105.8 L379.8,106.3 L379.8,106.8 L379.9,107.3 L379.9,107.8
L380.0,108.3 L380.1,108.7 L380.2,109.1 L380.3,109.4 L380.5,109.7 L380.6,110.0 L380.8,110.3 L380.9,110.4
L381.1,110.6 L381.3,110.7 L381.5,110.7 L381.7,110.7 L381.9,110.7 L382.1,110.6 L382.3,110.4 L382.5,110.2
L382.7,110.0 L382.9,109.7 L383.1,109.4 L383.3,109.0 L383.5,108.6 L383.6,108.2 L383.8,107.7 L383.9,107.2
L384.0,106.7 L384.1,106.2 L384.2,105.7 L384.3,105.1 L384.4,104.6 L384.4,104.0 L384.5,103.5 L384.5,102.9
L384.5,102.4 L384.5,101.9 L384.4,101.4 L384.4,100.9 L384.3,100.4 L384.2,100.0 L384.1,99.6 L384.0,99.3
L383.8,99.0 L383.7,98.7 L383.5,98.4 L383.4,98.3 L383.2,98.1 L383.0,98.0 L382.8,98.0 L382.6,98.0
L382.4,98.0 L382.2,98.1 L382.0,98.3 L381.8,98.5 L381.6,98.7 L381.4,99.0 L381.2,99.3 L381.0,99.7
L380.8,100.1 L380.7,100.5 L380.5,101.0 L380.4,101.5 L380.3,102.0 L380.2,102.5 L380.1,103.0 L380.0,103.6
L379.9,104.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M431.0,103.9 L430.9,104.3 L430.9,104.6 L430.8,104.9 L430.8,105.2 L430.8,105.5 L430.8,105.7 L430.9,106.0
L430.9,106.3 L431.0,106.5 L431.1,106.8 L431.2,107.0 L431.3,107.2 L431.4,107.3 L431.5,107.5 L431.6,107.6
L431.8,107.7 L432.0,107.8 L432.1,107.8 L432.3,107.8 L432.5,107.8 L432.6,107.8 L432.8,107.8 L433.0,107.7
L433.2,107.6 L433.3,107.4 L433.5,107.3 L433.7,107.1 L433.8,106.9 L434.0,106.7 L434.1,106.4 L434.3,106.2
L434.4,105.9 L434.5,105.6 L434.6,105.3 L434.7,105.1 L434.7,104.8 L434.8,104.4 L434.8,104.1 L434.9,103.8
L434.9,103.5 L434.9,103.2 L434.9,103.0 L434.8,102.7 L434.8,102.4 L434.7,102.2 L434.6,101.9 L434.5,101.7
L434.4,101.5 L434.3,101.4 L434.2,101.2 L434.1,101.1 L433.9,101.0 L433.7,100.9 L433.6,100.9 L433.4,100.9
L433.2,100.9 L433.1,100.9 L432.9,100.9 L432.7,101.0 L432.5,101.1 L432.4,101.3 L432.2,101.4 L432.0,101.6
L431.9,101.8 L431.7,102.0 L431.6,102.3 L431.4,102.5 L431.3,102.8 L431.2,103.1 L431.1,103.4 L431.0,103.6
L431.0,103.9 Z '/> <path stroke='rgb(148, 0, 211)' d='M431.0,103.9 L430.9,104.3 L430.9,104.6 L430.8,104.9 L430.8,105.2 L430.8,105.5 L430.8,105.7 L430.9,106.0
L430.9,106.3 L431.0,106.5 L431.1,106.8 L431.2,107.0 L431.3,107.2 L431.4,107.3 L431.5,107.5 L431.6,107.6
L431.8,107.7 L432.0,107.8 L432.1,107.8 L432.3,107.8 L432.5,107.8 L432.6,107.8 L432.8,107.8 L433.0,107.7
L433.2,107.6 L433.3,107.4 L433.5,107.3 L433.7,107.1 L433.8,106.9 L434.0,106.7 L434.1,106.4 L434.3,106.2
L434.4,105.9 L434.5,105.6 L434.6,105.3 L434.7,105.1 L434.7,104.8 L434.8,104.4 L434.8,104.1 L434.9,103.8
L434.9,103.5 L434.9,103.2 L434.9,103.0 L434.8,102.7 L434.8,102.4 L434.7,102.2 L434.6,101.9 L434.5,101.7
L434.4,101.5 L434.3,101.4 L434.2,101.2 L434.1,101.1 L433.9,101.0 L433.7,100.9 L433.6,100.9 L433.4,100.9
L433.2,100.9 L433.1,100.9 L432.9,100.9 L432.7,101.0 L432.5,101.1 L432.4,101.3 L432.2,101.4 L432.0,101.6
L431.9,101.8 L431.7,102.0 L431.6,102.3 L431.4,102.5 L431.3,102.8 L431.2,103.1 L431.1,103.4 L431.0,103.6
L431.0,103.9 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M479.8,103.7 L479.7,104.5 L479.6,105.3 L479.6,106.0 L479.6,106.8 L479.6,107.5 L479.6,108.2 L479.7,108.8
L479.8,109.5 L479.9,110.1 L480.1,110.6 L480.3,111.1 L480.5,111.6 L480.7,112.0 L480.9,112.3 L481.2,112.6
L481.5,112.8 L481.8,113.0 L482.1,113.1 L482.5,113.1 L482.8,113.0 L483.1,112.9 L483.5,112.7 L483.8,112.5
L484.2,112.2 L484.5,111.8 L484.9,111.4 L485.2,110.9 L485.5,110.4 L485.8,109.8 L486.1,109.2 L486.3,108.6
L486.6,107.9 L486.8,107.2 L487.0,106.5 L487.1,105.7 L487.3,105.0 L487.4,104.2 L487.5,103.4 L487.5,102.7
L487.5,101.9 L487.5,101.2 L487.5,100.5 L487.4,99.9 L487.3,99.2 L487.2,98.6 L487.0,98.1 L486.8,97.6
L486.6,97.1 L486.4,96.7 L486.2,96.4 L485.9,96.1 L485.6,95.9 L485.3,95.7 L485.0,95.6 L484.6,95.6
L484.3,95.7 L484.0,95.8 L483.6,96.0 L483.3,96.2 L482.9,96.5 L482.6,96.9 L482.2,97.3 L481.9,97.8
L481.6,98.3 L481.3,98.9 L481.0,99.5 L480.8,100.1 L480.5,100.8 L480.3,101.5 L480.1,102.2 L480.0,103.0
L479.8,103.7 Z '/> <path stroke='rgb(148, 0, 211)' d='M479.8,103.7 L479.7,104.5 L479.6,105.3 L479.6,106.0 L479.6,106.8 L479.6,107.5 L479.6,108.2 L479.7,108.8
L479.8,109.5 L479.9,110.1 L480.1,110.6 L480.3,111.1 L480.5,111.6 L480.7,112.0 L480.9,112.3 L481.2,112.6
L481.5,112.8 L481.8,113.0 L482.1,113.1 L482.5,113.1 L482.8,113.0 L483.1,112.9 L483.5,112.7 L483.8,112.5
L484.2,112.2 L484.5,111.8 L484.9,111.4 L485.2,110.9 L485.5,110.4 L485.8,109.8 L486.1,109.2 L486.3,108.6
L486.6,107.9 L486.8,107.2 L487.0,106.5 L487.1,105.7 L487.3,105.0 L487.4,104.2 L487.5,103.4 L487.5,102.7
L487.5,101.9 L487.5,101.2 L487.5,100.5 L487.4,99.9 L487.3,99.2 L487.2,98.6 L487.0,98.1 L486.8,97.6
L486.6,97.1 L486.4,96.7 L486.2,96.4 L485.9,96.1 L485.6,95.9 L485.3,95.7 L485.0,95.6 L484.6,95.6
L484.3,95.7 L484.0,95.8 L483.6,96.0 L483.3,96.2 L482.9,96.5 L482.6,96.9 L482.2,97.3 L481.9,97.8
L481.6,98.3 L481.3,98.9 L481.0,99.5 L480.8,100.1 L480.5,100.8 L480.3,101.5 L480.1,102.2 L480.0,103.0
L479.8,103.7 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M136.6,59.7 L136.8,59.4 L137.0,59.0 L137.1,58.5 L137.1,58.1 L137.1,57.5 L137.0,57.0 L136.8,56.4
L136.6,55.8 L136.4,55.2 L136.0,54.6 L135.6,54.0 L135.2,53.4 L134.7,52.7 L134.1,52.1 L133.5,51.5
L132.9,50.9 L132.3,50.4 L131.6,49.8 L130.9,49.3 L130.2,48.8 L129.4,48.4 L128.7,48.0 L128.0,47.6
L127.2,47.3 L126.5,47.0 L125.8,46.8 L125.1,46.6 L124.5,46.5 L123.8,46.5 L123.2,46.5 L122.7,46.5
L122.2,46.6 L121.7,46.8 L121.3,47.0 L121.0,47.3 L120.7,47.6 L120.5,47.9 L120.3,48.3 L120.2,48.8
L120.2,49.2 L120.2,49.8 L120.3,50.3 L120.5,50.9 L120.7,51.5 L120.9,52.1 L121.3,52.7 L121.7,53.3
L122.1,53.9 L122.6,54.6 L123.2,55.2 L123.8,55.8 L124.4,56.4 L125.0,56.9 L125.7,57.5 L126.4,58.0
L127.1,58.5 L127.9,58.9 L128.6,59.3 L129.3,59.7 L130.1,60.0 L130.8,60.3 L131.5,60.5 L132.2,60.7
L132.8,60.8 L133.5,60.8 L134.1,60.8 L134.6,60.8 L135.1,60.7 L135.6,60.5 L136.0,60.3 L136.3,60.0
L136.6,59.7 Z '/> <path stroke='rgb(148, 0, 211)' d='M136.6,59.7 L136.8,59.4 L137.0,59.0 L137.1,58.5 L137.1,58.1 L137.1,57.5 L137.0,57.0 L136.8,56.4
L136.6,55.8 L136.4,55.2 L136.0,54.6 L135.6,54.0 L135.2,53.4 L134.7,52.7 L134.1,52.1 L133.5,51.5
L132.9,50.9 L132.3,50.4 L131.6,49.8 L130.9,49.3 L130.2,48.8 L129.4,48.4 L128.7,48.0 L128.0,47.6
L127.2,47.3 L126.5,47.0 L125.8,46.8 L125.1,46.6 L124.5,46.5 L123.8,46.5 L123.2,46.5 L122.7,46.5
L122.2,46.6 L121.7,46.8 L121.3,47.0 L121.0,47.3 L120.7,47.6 L120.5,47.9 L120.3,48.3 L120.2,48.8
L120.2,49.2 L120.2,49.8 L120.3,50.3 L120.5,50.9 L120.7,51.5 L120.9,52.1 L121.3,52.7 L121.7,53.3
L122.1,53.9 L122.6,54.6 L123.2,55.2 L123.8,55.8 L124.4,56.4 L125.0,56.9 L125.7,57.5 L126.4,58.0
L127.1,58.5 L127.9,58.9 L128.6,59.3 L129.3,59.7 L130.1,60.0 L130.8,60.3 L131.5,60.5 L132.2,60.7
L132.8,60.8 L133.5,60.8 L134.1,60.8 L134.6,60.8 L135.1,60.7 L135.6,60.5 L136.0,60.3 L136.3,60.0
L136.6,59.7 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M177.4,53.1 L177.2,53.8 L177.0,54.5 L176.9,55.2 L176.8,55.8 L176.7,56.5 L176.6,57.1 L176.6,57.7
L176.5,58.2 L176.5,58.8 L176.5,59.3 L176.6,59.7 L176.6,60.1 L176.7,60.5 L176.8,60.8 L176.9,61.0
L177.0,61.2 L177.2,61.3 L177.3,61.4 L177.5,61.4 L177.7,61.4 L177.9,61.3 L178.1,61.1 L178.4,60.9
L178.6,60.6 L178.8,60.3 L179.1,59.9 L179.3,59.5 L179.6,59.0 L179.8,58.5 L180.1,58.0 L180.3,57.4
L180.5,56.8 L180.8,56.2 L181.0,55.5 L181.2,54.8 L181.3,54.2 L181.5,53.5 L181.7,52.8 L181.8,52.1
L181.9,51.5 L182.0,50.8 L182.1,50.2 L182.1,49.6 L182.2,49.1 L182.2,48.5 L182.2,48.0 L182.1,47.6
L182.1,47.2 L182.0,46.8 L181.9,46.5 L181.8,46.3 L181.7,46.1 L181.5,46.0 L181.4,45.9 L181.2,45.9
L181.0,45.9 L180.8,46.0 L180.6,46.2 L180.3,46.4 L180.1,46.7 L179.9,47.0 L179.6,47.4 L179.4,47.8
L179.1,48.3 L178.9,48.8 L178.6,49.3 L178.4,49.9 L178.2,50.5 L177.9,51.1 L177.7,51.8 L177.5,52.5
L177.4,53.1 Z '/> <path stroke='rgb(148, 0, 211)' d='M177.4,53.1 L177.2,53.8 L177.0,54.5 L176.9,55.2 L176.8,55.8 L176.7,56.5 L176.6,57.1 L176.6,57.7
L176.5,58.2 L176.5,58.8 L176.5,59.3 L176.6,59.7 L176.6,60.1 L176.7,60.5 L176.8,60.8 L176.9,61.0
L177.0,61.2 L177.2,61.3 L177.3,61.4 L177.5,61.4 L177.7,61.4 L177.9,61.3 L178.1,61.1 L178.4,60.9
L178.6,60.6 L178.8,60.3 L179.1,59.9 L179.3,59.5 L179.6,59.0 L179.8,58.5 L180.1,58.0 L180.3,57.4
L180.5,56.8 L180.8,56.2 L181.0,55.5 L181.2,54.8 L181.3,54.2 L181.5,53.5 L181.7,52.8 L181.8,52.1
L181.9,51.5 L182.0,50.8 L182.1,50.2 L182.1,49.6 L182.2,49.1 L182.2,48.5 L182.2,48.0 L182.1,47.6
L182.1,47.2 L182.0,46.8 L181.9,46.5 L181.8,46.3 L181.7,46.1 L181.5,46.0 L181.4,45.9 L181.2,45.9
L181.0,45.9 L180.8,46.0 L180.6,46.2 L180.3,46.4 L180.1,46.7 L179.9,47.0 L179.6,47.4 L179.4,47.8
L179.1,48.3 L178.9,48.8 L178.6,49.3 L178.4,49.9 L178.2,50.5 L177.9,51.1 L177.7,51.8 L177.5,52.5
L177.4,53.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M236.6,56.9 L236.7,56.7 L236.7,56.4 L236.7,56.1 L236.7,55.7 L236.6,55.4 L236.4,55.0 L236.2,54.7
L236.0,54.3 L235.7,53.9 L235.3,53.5 L235.0,53.2 L234.6,52.8 L234.1,52.4 L233.6,52.1 L233.1,51.7
L232.6,51.4 L232.1,51.1 L231.5,50.8 L230.9,50.5 L230.4,50.2 L229.8,50.0 L229.2,49.8 L228.6,49.6
L228.1,49.5 L227.5,49.4 L227.0,49.3 L226.5,49.3 L226.0,49.3 L225.6,49.3 L225.1,49.4 L224.8,49.5
L224.4,49.6 L224.1,49.7 L223.9,49.9 L223.7,50.1 L223.5,50.4 L223.4,50.6 L223.4,50.9 L223.4,51.2
L223.4,51.6 L223.5,51.9 L223.7,52.3 L223.9,52.6 L224.1,53.0 L224.4,53.4 L224.8,53.8 L225.1,54.1
L225.5,54.5 L226.0,54.9 L226.5,55.2 L227.0,55.6 L227.5,55.9 L228.0,56.2 L228.6,56.5 L229.2,56.8
L229.7,57.1 L230.3,57.3 L230.9,57.5 L231.5,57.7 L232.0,57.8 L232.6,57.9 L233.1,58.0 L233.6,58.0
L234.1,58.0 L234.5,58.0 L235.0,57.9 L235.3,57.8 L235.7,57.7 L236.0,57.6 L236.2,57.4 L236.4,57.2
L236.6,56.9 Z '/> <path stroke='rgb(148, 0, 211)' d='M236.6,56.9 L236.7,56.7 L236.7,56.4 L236.7,56.1 L236.7,55.7 L236.6,55.4 L236.4,55.0 L236.2,54.7
L236.0,54.3 L235.7,53.9 L235.3,53.5 L235.0,53.2 L234.6,52.8 L234.1,52.4 L233.6,52.1 L233.1,51.7
L232.6,51.4 L232.1,51.1 L231.5,50.8 L230.9,50.5 L230.4,50.2 L229.8,50.0 L229.2,49.8 L228.6,49.6
L228.1,49.5 L227.5,49.4 L227.0,49.3 L226.5,49.3 L226.0,49.3 L225.6,49.3 L225.1,49.4 L224.8,49.5
L224.4,49.6 L224.1,49.7 L223.9,49.9 L223.7,50.1 L223.5,50.4 L223.4,50.6 L223.4,50.9 L223.4,51.2
L223.4,51.6 L223.5,51.9 L223.7,52.3 L223.9,52.6 L224.1,53.0 L224.4,53.4 L224.8,53.8 L225.1,54.1
L225.5,54.5 L226.0,54.9 L226.5,55.2 L227.0,55.6 L227.5,55.9 L228.0,56.2 L228.6,56.5 L229.2,56.8
L229.7,57.1 L230.3,57.3 L230.9,57.5 L231.5,57.7 L232.0,57.8 L232.6,57.9 L233.1,58.0 L233.6,58.0
L234.1,58.0 L234.5,58.0 L235.0,57.9 L235.3,57.8 L235.7,57.7 L236.0,57.6 L236.2,57.4 L236.4,57.2
L236.6,56.9 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M277.0,52.7 L276.8,53.3 L276.7,53.9 L276.7,54.5 L276.6,55.1 L276.6,55.6 L276.7,56.2 L276.7,56.7
L276.8,57.2 L276.9,57.7 L277.0,58.2 L277.2,58.6 L277.4,59.0 L277.6,59.3 L277.9,59.6 L278.2,59.9
L278.5,60.1 L278.8,60.2 L279.1,60.3 L279.4,60.4 L279.8,60.4 L280.1,60.4 L280.5,60.3 L280.8,60.1
L281.2,59.9 L281.5,59.7 L281.9,59.4 L282.2,59.0 L282.6,58.7 L282.9,58.3 L283.2,57.8 L283.5,57.3
L283.7,56.8 L284.0,56.3 L284.2,55.7 L284.4,55.2 L284.5,54.6 L284.7,54.0 L284.8,53.4 L284.8,52.8
L284.9,52.2 L284.9,51.7 L284.8,51.1 L284.8,50.6 L284.7,50.1 L284.6,49.6 L284.5,49.1 L284.3,48.7
L284.1,48.3 L283.9,48.0 L283.6,47.7 L283.3,47.4 L283.0,47.2 L282.7,47.1 L282.4,47.0 L282.1,46.9
L281.7,46.9 L281.4,46.9 L281.0,47.0 L280.7,47.2 L280.3,47.4 L280.0,47.6 L279.6,47.9 L279.3,48.3
L278.9,48.6 L278.6,49.0 L278.3,49.5 L278.0,50.0 L277.8,50.5 L277.5,51.0 L277.3,51.6 L277.1,52.1
L277.0,52.7 Z '/> <path stroke='rgb(148, 0, 211)' d='M277.0,52.7 L276.8,53.3 L276.7,53.9 L276.7,54.5 L276.6,55.1 L276.6,55.6 L276.7,56.2 L276.7,56.7
L276.8,57.2 L276.9,57.7 L277.0,58.2 L277.2,58.6 L277.4,59.0 L277.6,59.3 L277.9,59.6 L278.2,59.9
L278.5,60.1 L278.8,60.2 L279.1,60.3 L279.4,60.4 L279.8,60.4 L280.1,60.4 L280.5,60.3 L280.8,60.1
L281.2,59.9 L281.5,59.7 L281.9,59.4 L282.2,59.0 L282.6,58.7 L282.9,58.3 L283.2,57.8 L283.5,57.3
L283.7,56.8 L284.0,56.3 L284.2,55.7 L284.4,55.2 L284.5,54.6 L284.7,54.0 L284.8,53.4 L284.8,52.8
L284.9,52.2 L284.9,51.7 L284.8,51.1 L284.8,50.6 L284.7,50.1 L284.6,49.6 L284.5,49.1 L284.3,48.7
L284.1,48.3 L283.9,48.0 L283.6,47.7 L283.3,47.4 L283.0,47.2 L282.7,47.1 L282.4,47.0 L282.1,46.9
L281.7,46.9 L281.4,46.9 L281.0,47.0 L280.7,47.2 L280.3,47.4 L280.0,47.6 L279.6,47.9 L279.3,48.3
L278.9,48.6 L278.6,49.0 L278.3,49.5 L278.0,50.0 L277.8,50.5 L277.5,51.0 L277.3,51.6 L277.1,52.1
L277.0,52.7 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M324.3,52.5 L324.2,53.4 L324.2,54.2 L324.1,55.1 L324.2,56.0 L324.3,56.8 L324.5,57.6 L324.7,58.4
L325.0,59.2 L325.3,59.9 L325.6,60.5 L326.1,61.1 L326.5,61.7 L327.0,62.2 L327.5,62.6 L328.1,63.0
L328.6,63.2 L329.2,63.4 L329.9,63.6 L330.5,63.6 L331.1,63.6 L331.8,63.5 L332.4,63.4 L333.0,63.1
L333.6,62.8 L334.2,62.4 L334.8,62.0 L335.4,61.5 L335.9,60.9 L336.4,60.3 L336.8,59.6 L337.2,58.9
L337.6,58.1 L337.9,57.3 L338.2,56.5 L338.4,55.7 L338.6,54.8 L338.7,53.9 L338.7,53.1 L338.8,52.2
L338.7,51.3 L338.6,50.5 L338.4,49.7 L338.2,48.9 L337.9,48.1 L337.6,47.4 L337.3,46.8 L336.8,46.2
L336.4,45.6 L335.9,45.1 L335.4,44.7 L334.8,44.3 L334.3,44.1 L333.7,43.9 L333.0,43.7 L332.4,43.7
L331.8,43.7 L331.1,43.8 L330.5,43.9 L329.9,44.2 L329.3,44.5 L328.7,44.9 L328.1,45.3 L327.5,45.8
L327.0,46.4 L326.5,47.0 L326.1,47.7 L325.7,48.4 L325.3,49.2 L325.0,50.0 L324.7,50.8 L324.5,51.6
L324.3,52.5 Z '/> <path stroke='rgb(148, 0, 211)' d='M324.3,52.5 L324.2,53.4 L324.2,54.2 L324.1,55.1 L324.2,56.0 L324.3,56.8 L324.5,57.6 L324.7,58.4
L325.0,59.2 L325.3,59.9 L325.6,60.5 L326.1,61.1 L326.5,61.7 L327.0,62.2 L327.5,62.6 L328.1,63.0
L328.6,63.2 L329.2,63.4 L329.9,63.6 L330.5,63.6 L331.1,63.6 L331.8,63.5 L332.4,63.4 L333.0,63.1
L333.6,62.8 L334.2,62.4 L334.8,62.0 L335.4,61.5 L335.9,60.9 L336.4,60.3 L336.8,59.6 L337.2,58.9
L337.6,58.1 L337.9,57.3 L338.2,56.5 L338.4,55.7 L338.6,54.8 L338.7,53.9 L338.7,53.1 L338.8,52.2
L338.7,51.3 L338.6,50.5 L338.4,49.7 L338.2,48.9 L337.9,48.1 L337.6,47.4 L337.3,46.8 L336.8,46.2
L336.4,45.6 L335.9,45.1 L335.4,44.7 L334.8,44.3 L334.3,44.1 L333.7,43.9 L333.0,43.7 L332.4,43.7
L331.8,43.7 L331.1,43.8 L330.5,43.9 L329.9,44.2 L329.3,44.5 L328.7,44.9 L328.1,45.3 L327.5,45.8
L327.0,46.4 L326.5,47.0 L326.1,47.7 L325.7,48.4 L325.3,49.2 L325.0,50.0 L324.7,50.8 L324.5,51.6
L324.3,52.5 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M389.1,54.4 L389.2,53.9 L389.1,53.3 L389.1,52.7 L388.9,52.2 L388.8,51.6 L388.5,51.1 L388.3,50.6
L387.9,50.1 L387.6,49.6 L387.2,49.2 L386.7,48.8 L386.3,48.4 L385.7,48.1 L385.2,47.8 L384.6,47.6
L384.1,47.4 L383.5,47.3 L382.9,47.2 L382.3,47.1 L381.6,47.1 L381.0,47.2 L380.4,47.3 L379.9,47.4
L379.3,47.6 L378.7,47.9 L378.2,48.2 L377.7,48.5 L377.3,48.9 L376.9,49.3 L376.5,49.7 L376.1,50.2
L375.8,50.7 L375.6,51.2 L375.4,51.8 L375.3,52.3 L375.2,52.9 L375.1,53.4 L375.2,54.0 L375.2,54.6
L375.4,55.1 L375.5,55.7 L375.8,56.2 L376.0,56.7 L376.4,57.2 L376.7,57.7 L377.1,58.1 L377.6,58.5
L378.0,58.9 L378.6,59.2 L379.1,59.5 L379.7,59.7 L380.2,59.9 L380.8,60.0 L381.4,60.1 L382.0,60.2
L382.7,60.2 L383.3,60.1 L383.9,60.0 L384.4,59.9 L385.0,59.7 L385.6,59.4 L386.1,59.1 L386.6,58.8
L387.0,58.4 L387.4,58.0 L387.8,57.6 L388.2,57.1 L388.5,56.6 L388.7,56.1 L388.9,55.5 L389.0,55.0
L389.1,54.4 Z '/> <path stroke='rgb(148, 0, 211)' d='M389.1,54.4 L389.2,53.9 L389.1,53.3 L389.1,52.7 L388.9,52.2 L388.8,51.6 L388.5,51.1 L388.3,50.6
L387.9,50.1 L387.6,49.6 L387.2,49.2 L386.7,48.8 L386.3,48.4 L385.7,48.1 L385.2,47.8 L384.6,47.6
L384.1,47.4 L383.5,47.3 L382.9,47.2 L382.3,47.1 L381.6,47.1 L381.0,47.2 L380.4,47.3 L379.9,47.4
L379.3,47.6 L378.7,47.9 L378.2,48.2 L377.7,48.5 L377.3,48.9 L376.9,49.3 L376.5,49.7 L376.1,50.2
L375.8,50.7 L375.6,51.2 L375.4,51.8 L375.3,52.3 L375.2,52.9 L375.1,53.4 L375.2,54.0 L375.2,54.6
L375.4,55.1 L375.5,55.7 L375.8,56.2 L376.0,56.7 L376.4,57.2 L376.7,57.7 L377.1,58.1 L377.6,58.5
L378.0,58.9 L378.6,59.2 L379.1,59.5 L379.7,59.7 L380.2,59.9 L380.8,60.0 L381.4,60.1 L382.0,60.2
L382.7,60.2 L383.3,60.1 L383.9,60.0 L384.4,59.9 L385.0,59.7 L385.6,59.4 L386.1,59.1 L386.6,58.8
L387.0,58.4 L387.4,58.0 L387.8,57.6 L388.2,57.1 L388.5,56.6 L388.7,56.1 L388.9,55.5 L389.0,55.0
L389.1,54.4 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M429.3,50.9 L428.8,51.5 L428.4,52.1 L428.1,52.7 L427.7,53.3 L427.5,53.9 L427.2,54.5 L427.0,55.1
L426.9,55.7 L426.7,56.3 L426.7,56.9 L426.7,57.4 L426.7,57.9 L426.8,58.4 L426.9,58.8 L427.1,59.2
L427.3,59.6 L427.5,59.9 L427.8,60.2 L428.1,60.4 L428.5,60.6 L428.9,60.7 L429.3,60.7 L429.8,60.7
L430.3,60.7 L430.8,60.6 L431.3,60.4 L431.8,60.2 L432.4,60.0 L432.9,59.7 L433.4,59.3 L434.0,58.9
L434.5,58.5 L435.0,58.0 L435.5,57.5 L436.0,57.0 L436.4,56.4 L436.9,55.8 L437.3,55.2 L437.6,54.6
L438.0,54.0 L438.2,53.4 L438.5,52.8 L438.7,52.2 L438.8,51.6 L439.0,51.0 L439.0,50.4 L439.0,49.9
L439.0,49.4 L438.9,48.9 L438.8,48.5 L438.6,48.1 L438.4,47.7 L438.2,47.4 L437.9,47.1 L437.6,46.9
L437.2,46.7 L436.8,46.6 L436.4,46.6 L435.9,46.6 L435.4,46.6 L434.9,46.7 L434.4,46.9 L433.9,47.1
L433.3,47.3 L432.8,47.6 L432.3,48.0 L431.7,48.4 L431.2,48.8 L430.7,49.3 L430.2,49.8 L429.7,50.3
L429.3,50.9 Z '/> <path stroke='rgb(148, 0, 211)' d='M429.3,50.9 L428.8,51.5 L428.4,52.1 L428.1,52.7 L427.7,53.3 L427.5,53.9 L427.2,54.5 L427.0,55.1
L426.9,55.7 L426.7,56.3 L426.7,56.9 L426.7,57.4 L426.7,57.9 L426.8,58.4 L426.9,58.8 L427.1,59.2
L427.3,59.6 L427.5,59.9 L427.8,60.2 L428.1,60.4 L428.5,60.6 L428.9,60.7 L429.3,60.7 L429.8,60.7
L430.3,60.7 L430.8,60.6 L431.3,60.4 L431.8,60.2 L432.4,60.0 L432.9,59.7 L433.4,59.3 L434.0,58.9
L434.5,58.5 L435.0,58.0 L435.5,57.5 L436.0,57.0 L436.4,56.4 L436.9,55.8 L437.3,55.2 L437.6,54.6
L438.0,54.0 L438.2,53.4 L438.5,52.8 L438.7,52.2 L438.8,51.6 L439.0,51.0 L439.0,50.4 L439.0,49.9
L439.0,49.4 L438.9,48.9 L438.8,48.5 L438.6,48.1 L438.4,47.7 L438.2,47.4 L437.9,47.1 L437.6,46.9
L437.2,46.7 L436.8,46.6 L436.4,46.6 L435.9,46.6 L435.4,46.6 L434.9,46.7 L434.4,46.9 L433.9,47.1
L433.3,47.3 L432.8,47.6 L432.3,48.0 L431.7,48.4 L431.2,48.8 L430.7,49.3 L430.2,49.8 L429.7,50.3
L429.3,50.9 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M479.9,53.1 L479.9,53.6 L479.9,54.1 L479.9,54.5 L479.9,55.0 L480.0,55.4 L480.1,55.8 L480.2,56.3
L480.3,56.6 L480.5,57.0 L480.7,57.4 L480.9,57.7 L481.1,58.0 L481.4,58.2 L481.6,58.4 L481.9,58.6
L482.2,58.7 L482.5,58.8 L482.8,58.9 L483.1,58.9 L483.5,58.9 L483.8,58.9 L484.1,58.8 L484.4,58.6
L484.7,58.5 L485.0,58.2 L485.3,58.0 L485.6,57.7 L485.8,57.4 L486.1,57.1 L486.3,56.7 L486.5,56.3
L486.7,55.9 L486.8,55.5 L487.0,55.1 L487.1,54.6 L487.2,54.2 L487.2,53.7 L487.2,53.2 L487.2,52.8
L487.2,52.3 L487.1,51.9 L487.0,51.5 L486.9,51.0 L486.8,50.7 L486.6,50.3 L486.4,49.9 L486.2,49.6
L486.0,49.3 L485.7,49.1 L485.5,48.9 L485.2,48.7 L484.9,48.6 L484.6,48.5 L484.3,48.4 L484.0,48.4
L483.6,48.4 L483.3,48.4 L483.0,48.5 L482.7,48.7 L482.4,48.8 L482.1,49.1 L481.8,49.3 L481.5,49.6
L481.3,49.9 L481.0,50.2 L480.8,50.6 L480.6,51.0 L480.4,51.4 L480.3,51.8 L480.1,52.2 L480.0,52.7
L479.9,53.1 Z '/> <path stroke='rgb(148, 0, 211)' d='M479.9,53.1 L479.9,53.6 L479.9,54.1 L479.9,54.5 L479.9,55.0 L480.0,55.4 L480.1,55.8 L480.2,56.3
L480.3,56.6 L480.5,57.0 L480.7,57.4 L480.9,57.7 L481.1,58.0 L481.4,58.2 L481.6,58.4 L481.9,58.6
L482.2,58.7 L482.5,58.8 L482.8,58.9 L483.1,58.9 L483.5,58.9 L483.8,58.9 L484.1,58.8 L484.4,58.6
L484.7,58.5 L485.0,58.2 L485.3,58.0 L485.6,57.7 L485.8,57.4 L486.1,57.1 L486.3,56.7 L486.5,56.3
L486.7,55.9 L486.8,55.5 L487.0,55.1 L487.1,54.6 L487.2,54.2 L487.2,53.7 L487.2,53.2 L487.2,52.8
L487.2,52.3 L487.1,51.9 L487.0,51.5 L486.9,51.0 L486.8,50.7 L486.6,50.3 L486.4,49.9 L486.2,49.6
L486.0,49.3 L485.7,49.1 L485.5,48.9 L485.2,48.7 L484.9,48.6 L484.6,48.5 L484.3,48.4 L484.0,48.4
L483.6,48.4 L483.3,48.4 L483.0,48.5 L482.7,48.7 L482.4,48.8 L482.1,49.1 L481.8,49.3 L481.5,49.6
L481.3,49.9 L481.0,50.2 L480.8,50.6 L480.6,51.0 L480.4,51.4 L480.3,51.8 L480.1,52.2 L480.0,52.7
L479.9,53.1 Z '/></g>
</g>
<g id="gnuplot_plot_2" ><title>gnuplot_plot_2</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(128.7,408.5) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(179.4,408.5) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(230.1,408.5) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(280.8,408.5) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(331.5,408.5) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(382.2,408.5) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(432.9,408.5) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(483.6,408.5) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(128.7,357.8) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(179.4,357.8) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(230.1,357.8) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(280.8,357.8) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(331.5,357.8) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(382.2,357.8) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(432.9,357.8) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(483.6,357.8) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(128.7,307.1) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(179.4,307.1) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(230.1,307.1) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(280.8,307.1) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(331.5,307.1) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(382.2,307.1) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(432.9,307.1) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(483.6,307.1) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(128.7,256.4) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(179.4,256.4) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(230.1,256.4) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(280.8,256.4) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(331.5,256.4) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(382.2,256.4) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(432.9,256.4) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(483.6,256.4) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(128.7,205.7) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(179.4,205.7) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(230.1,205.7) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(280.8,205.7) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(331.5,205.7) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(382.2,205.7) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(432.9,205.7) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(483.6,205.7) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(128.7,155.0) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(179.4,155.0) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(230.1,155.0) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(280.8,155.0) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(331.5,155.0) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(382.2,155.0) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(432.9,155.0) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(483.6,155.0) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(128.7,104.3) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(179.4,104.3) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(230.1,104.3) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(280.8,104.3) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(331.5,104.3) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(382.2,104.3) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(432.9,104.3) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(483.6,104.3) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(128.7,53.6) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(179.4,53.6) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(230.1,53.6) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(280.8,53.6) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(331.5,53.6) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(382.2,53.6) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(432.9,53.6) scale(2.25)' color='rgb( 0, 158, 115)'/>
<use xlink:href='#gpPt1' transform='translate(483.6,53.6) scale(2.25)' color='rgb( 0, 158, 115)'/>
</g>
</g>
<g fill="none" color="white" stroke="rgb( 0, 158, 115)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M93.2,18.1 L93.2,444.0 L519.1,444.0 L519.1,18.1 L93.2,18.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
</svg>
|