Skip to content
pointer_struct_ok.svg 97.8 KiB
Newer Older
orestis.malaspin's avatar
orestis.malaspin committed
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
   xmlns:ns1="http://www.iki.fi/pav/software/textext/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="259.53647mm"
   height="97.828239mm"
   viewBox="0 0 259.53647 97.828242"
   version="1.1"
   id="svg8"
   inkscape:version="0.92.3 (2405546, 2018-03-11)"
   sodipodi:docname="pointer_struct_ok.svg">
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="0.98994949"
     inkscape:cx="300.19469"
     inkscape:cy="109.53435"
     inkscape:document-units="mm"
     inkscape:current-layer="layer1"
     showgrid="false"
     inkscape:window-width="1920"
     inkscape:window-height="1028"
     inkscape:window-x="0"
     inkscape:window-y="24"
     inkscape:window-maximized="1"
     fit-margin-top="0"
     fit-margin-left="0"
     fit-margin-right="0"
     fit-margin-bottom="0">
    <inkscape:grid
       originy="-92.328475"
       originx="13.618856"
       type="xygrid"
       id="grid819" />
  </sodipodi:namedview>
  <defs
     id="defs2">
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="marker3314"
       refX="0"
       refY="0"
       orient="auto"
       inkscape:stockid="Arrow2Lend">
      <path
         inkscape:connector-curvature="0"
         transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
         id="path3312" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="marker3284"
       refX="0"
       refY="0"
       orient="auto"
       inkscape:stockid="Arrow2Lend">
      <path
         inkscape:connector-curvature="0"
         transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
         id="path3028" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="Arrow2Lstart"
       refX="0"
       refY="0"
       orient="auto"
       inkscape:stockid="Arrow2Lstart">
      <path
         inkscape:connector-curvature="0"
         transform="matrix(1.1,0,0,1.1,1.1,0)"
         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
         id="path3025" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="Arrow2Lend"
       refX="0"
       refY="0"
       orient="auto"
       inkscape:stockid="Arrow2Lend">
      <path
         inkscape:connector-curvature="0"
         transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
         id="path8951" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="Arrow2Lend-7"
       refX="0"
       refY="0"
       orient="auto"
       inkscape:stockid="Arrow2Lend">
      <path
         transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
         id="path8951-5"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="Arrow2Lend-9"
       refX="0"
       refY="0"
       orient="auto"
       inkscape:stockid="Arrow2Lend">
      <path
         transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
         id="path8951-8"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="Arrow2Lend-7-2"
       refX="0"
       refY="0"
       orient="auto"
       inkscape:stockid="Arrow2Lend">
      <path
         transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
         id="path8951-5-8"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="Arrow2Lend-1"
       refX="0"
       refY="0"
       orient="auto"
       inkscape:stockid="Arrow2Lend">
      <path
         transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
         id="path8951-3"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="marker3284-4"
       refX="0"
       refY="0"
       orient="auto"
       inkscape:stockid="Arrow2Lend">
      <path
         inkscape:connector-curvature="0"
         transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
         id="path3028-7" />
    </marker>
  </defs>
  <metadata
     id="metadata5">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
        <dc:title></dc:title>
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     transform="translate(13.618857,-106.8433)"
     id="layer1"
     inkscape:groupmode="layer"
     inkscape:label="Layer 1">
    <g
       style="fill:none;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       id="g846-7-2"
       transform="matrix(0.48784069,0,0,1,-19.844943,-20.032731)">
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         id="rect821-3-5-2"
         width="29.104166"
         height="9.260417"
         x="99.218758"
         y="156.77083" />
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         id="rect821-6-3-8"
         width="29.104166"
         height="9.260417"
         x="128.32292"
         y="156.77083" />
    </g>
    <rect
       y="136.7381"
       x="0.16160744"
       height="9.260417"
       width="14.198196"
       id="rect821-3-6-7"
       style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
    <rect
       y="136.7381"
       x="14.359803"
       height="9.260417"
       width="14.198196"
       id="rect821-6-2-3"
       style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
    <rect
       y="136.7381"
       x="85.350792"
       height="9.260417"
       width="14.198196"
       id="rect821-3-5-29"
       style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
    <rect
       y="136.7381"
       x="99.548988"
       height="9.260417"
       width="14.198196"
       id="rect821-6-3-3"
       style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
    <g
       style="fill:none;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       id="g846-5-1"
       transform="matrix(0.48784069,0,0,1,8.5514489,-20.032726)">
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         id="rect821-3-6-9"
         width="29.104166"
         height="9.260417"
         x="99.218758"
         y="156.77083" />
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         id="rect821-6-2-4"
         width="29.104166"
         height="9.260417"
         x="128.32292"
         y="156.77083" />
    </g>
    <g
       style="fill:none;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       id="g846-7-2-6"
       transform="matrix(0.4878407,0,0,1,93.949527,-20.032732)">
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         id="rect821-3-5-2-7"
         width="29.104166"
         height="9.260417"
         x="99.218758"
         y="156.77083" />
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         id="rect821-6-3-8-5"
         width="29.104166"
         height="9.260417"
         x="128.32292"
         y="156.77083" />
    </g>
    <rect
       y="136.7381"
       x="113.95608"
       height="9.260417"
       width="14.198196"
       id="rect821-3-6-7-3"
       style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
    <rect
       y="136.7381"
       x="128.15427"
       height="9.260417"
       width="14.198196"
       id="rect821-6-2-3-5"
       style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
    <rect
       y="136.7381"
       x="199.14526"
       height="9.260417"
       width="14.198196"
       id="rect821-3-5-29-6"
       style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
    <rect
       y="136.7381"
       x="213.34346"
       height="9.260417"
       width="14.198196"
       id="rect821-6-3-3-2"
       style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
    <g
       style="fill:none;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       id="g846-5-1-9"
       transform="matrix(0.4878407,0,0,1,122.34592,-20.032727)">
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         id="rect821-3-6-9-1"
         width="29.104166"
         height="9.260417"
         x="99.218758"
         y="156.77083" />
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         id="rect821-6-2-4-2"
         width="29.104166"
         height="9.260417"
         x="128.32292"
         y="156.77083" />
    </g>
    <g
       transform="translate(-136.75554,0.36372314)"
       ns1:version="0.9.0"
       ns1:texconverter="pdflatex"
       ns1:pdfconverter="pdf2svg"
       ns1:text="\\begin{verbatim}\ncomplex_t\n\\end{verbatim}"
       ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex"
       ns1:scale="2.83464566935"
       ns1:alignment="middle center"
       inkscapeversion="0.92.3"
       ns1:jacobian_sqrt="1.0"
       id="g2178">
      <g
         id="g2176">
        <g
           style="fill:#000000;fill-opacity:1"
           id="g2174">
          <path
             inkscape:connector-curvature="0"
             style="stroke:none;stroke-width:0"
             d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0"
             transform="translate(133.768,134.765)"
             id="path2156" />
          <path
             inkscape:connector-curvature="0"
             style="stroke:none;stroke-width:0"
             d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0"
             transform="translate(138.99836,134.765)"
             id="path2158" />
          <path
             inkscape:connector-curvature="0"
             style="stroke:none;stroke-width:0"
             d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0"
             transform="translate(144.22873,134.765)"
             id="path2160" />
          <path
             inkscape:connector-curvature="0"
             style="stroke:none;stroke-width:0"
             d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0"
             transform="translate(149.45909,134.765)"
             id="path2162" />
          <path
             inkscape:connector-curvature="0"
             style="stroke:none;stroke-width:0"
             d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0"
             transform="translate(154.68946,134.765)"
             id="path2164" />
          <path
             inkscape:connector-curvature="0"
             style="stroke:none;stroke-width:0"
             d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0"
             transform="translate(159.91982,134.765)"
             id="path2166" />
          <path
             inkscape:connector-curvature="0"
             style="stroke:none;stroke-width:0"
             d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0"
             transform="translate(165.15019,134.765)"
             id="path2168" />
          <path
             inkscape:connector-curvature="0"
             style="stroke:none;stroke-width:0"
             d="m 4.203125,0.953125 c 0.109375,0 0.46875,0 0.46875,-0.359375 C 4.671875,0.25 4.3125,0.25 4.203125,0.25 H 1.03125 c -0.125,0 -0.46875,0 -0.46875,0.34375 0,0.359375 0.34375,0.359375 0.46875,0.359375 z m 0,0"
             transform="translate(170.38055,134.765)"
             id="path2170" />
          <path
             inkscape:connector-curvature="0"
             style="stroke:none;stroke-width:0"
             d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0"
             transform="translate(175.61092,134.765)"
             id="path2172" />
        </g>
      </g>
    </g>
    <g
       id="g2302"
       ns1:jacobian_sqrt="1.0"
       inkscapeversion="0.92.3"
       ns1:alignment="middle center"
       ns1:scale="2.83464566935"
       ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex"
       ns1:text="\\begin{verbatim}\nre\n\\end{verbatim}"
       ns1:pdfconverter="pdf2svg"
       ns1:texconverter="pdflatex"
       ns1:version="0.9.0"
       transform="translate(-134.13904,19.40315)">
      <g
         id="surface1">
        <g
           id="g2299"
           style="fill:#000000;fill-opacity:1">
          <path
             inkscape:connector-curvature="0"
             id="path2295"
             transform="translate(133.768,134.765)"
             d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0"
             style="stroke:none;stroke-width:0" />
          <path
             inkscape:connector-curvature="0"
             id="path2297"
             transform="translate(138.99836,134.765)"
             d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0"
             style="stroke:none;stroke-width:0" />
        </g>
      </g>
    </g>
    <g
       transform="translate(-17.894592,19.239092)"
       ns1:version="0.9.0"
       ns1:texconverter="pdflatex"
       ns1:pdfconverter="pdf2svg"
       ns1:text="\\begin{verbatim}\nim\n\\end{verbatim}"
       ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex"
       ns1:scale="2.83464566935"
       ns1:alignment="middle center"
       inkscapeversion="0.92.3"
       ns1:jacobian_sqrt="1.0"
       id="g2427">
      <g
         id="g2425">
        <g
           style="fill:#000000;fill-opacity:1"
           id="g2423">
          <path
             inkscape:connector-curvature="0"
             style="stroke:none;stroke-width:0"
             d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0"
             transform="translate(133.768,134.765)"
             id="path2419" />
          <path
             inkscape:connector-curvature="0"
             style="stroke:none;stroke-width:0"
             d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0"
             transform="translate(138.99836,134.765)"
             id="path2421" />
        </g>
      </g>
    </g>
    <path
       sodipodi:nodetypes="cc"
       inkscape:connector-curvature="0"
       id="path2993"
       d="M -1.3502974,187.19792 C -10.434806,173.94887 -12.664615,164.59117 0.16160744,145.99852"
       style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3284)" />
    <path
       sodipodi:nodetypes="cc"
       inkscape:connector-curvature="0"
       id="path2993-6"
       d="M -4.3159001,200.39522 C -14.736757,188.74979 -18.226203,141.46875 -3.5290926,116.46165"
       style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3284-4)" />
    <g
       style="fill:none;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.7158648, 1.43172961;stroke-dashoffset:0;stroke-opacity:1"
       id="g846-7-2-5"
       transform="matrix(0.48784068,0,0,1,-23.535649,-49.569597)">
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.7158648, 1.43172961;stroke-dashoffset:0;stroke-opacity:1"
         id="rect821-3-5-2-6"
         width="29.104166"
         height="9.260417"
         x="99.218758"
         y="156.77083" />
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.7158648, 1.43172961;stroke-dashoffset:0;stroke-opacity:1"
         id="rect821-6-3-8-9"
         width="29.104166"
         height="9.260417"
         x="128.32292"
         y="156.77083" />
    </g>
    <rect
       y="107.20123"
       x="-3.5290926"
       height="9.260417"
       width="14.198196"
       id="rect821-3-6-7-37"
       style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:0.50000001, 1.00000003;stroke-dashoffset:0;stroke-opacity:1" />
    <rect
       y="107.20123"
       x="10.669104"
       height="9.260417"
       width="14.198196"
       id="rect821-6-2-3-4"
       style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:0.50000001, 1.00000003;stroke-dashoffset:0;stroke-opacity:1" />
    <rect
       y="107.20123"
       x="81.660095"
       height="9.260417"
       width="14.198196"
       id="rect821-3-5-29-5"
       style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:0.50000001, 1.00000003;stroke-dashoffset:0;stroke-opacity:1" />
    <rect
       y="107.20123"
       x="95.858292"
       height="9.260417"
       width="14.198196"
       id="rect821-6-3-3-25"
       style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:0.50000001, 1.00000003;stroke-dashoffset:0;stroke-opacity:1" />
    <g
       style="fill:none;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.7158648, 1.43172961;stroke-dashoffset:0;stroke-opacity:1"
       id="g846-5-1-4"
       transform="matrix(0.48784068,0,0,1,4.860751,-49.569591)">
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.7158648, 1.43172961;stroke-dashoffset:0;stroke-opacity:1"
         id="rect821-3-6-9-7"
         width="29.104166"
         height="9.260417"
         x="99.218758"
         y="156.77083" />
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.7158648, 1.43172961;stroke-dashoffset:0;stroke-opacity:1"
         id="rect821-6-2-4-4"
         width="29.104166"
         height="9.260417"
         x="128.32292"
         y="156.77083" />
    </g>
    <g
       style="fill:none;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.71586478, 1.43172956;stroke-dashoffset:0;stroke-opacity:1"
       id="g846-7-2-6-4"
       transform="matrix(0.48784071,0,0,1,90.258825,-49.569599)">
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.71586478, 1.43172956;stroke-dashoffset:0;stroke-opacity:1"
         id="rect821-3-5-2-7-3"
         width="29.104166"
         height="9.260417"
         x="99.218758"
         y="156.77083" />
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.71586478, 1.43172956;stroke-dashoffset:0;stroke-opacity:1"
         id="rect821-6-3-8-5-0"
         width="29.104166"
         height="9.260417"
         x="128.32292"
         y="156.77083" />
    </g>
    <rect
       y="107.20123"
       x="110.26537"
       height="9.260417"
       width="14.198196"
       id="rect821-3-6-7-3-7"
       style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:0.50000001, 1.00000003;stroke-dashoffset:0;stroke-opacity:1" />
    <rect
       y="107.20123"
       x="124.46355"
       height="9.260417"
       width="14.198196"
       id="rect821-6-2-3-5-8"
       style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:0.50000001, 1.00000003;stroke-dashoffset:0;stroke-opacity:1" />
    <rect
       y="107.20123"
       x="195.45456"
       height="9.260417"
       width="14.198196"
       id="rect821-3-5-29-6-6"
       style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:0.50000001, 1.00000003;stroke-dashoffset:0;stroke-opacity:1" />
    <rect
       y="107.20123"
       x="209.65276"
       height="9.260417"
       width="14.198196"
       id="rect821-6-3-3-2-8"
       style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:0.50000001, 1.00000003;stroke-dashoffset:0;stroke-opacity:1" />
    <g
       style="fill:none;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.71586478, 1.43172956;stroke-dashoffset:0;stroke-opacity:1"
       id="g846-5-1-9-8"
       transform="matrix(0.48784071,0,0,1,118.65522,-49.569594)">
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.71586478, 1.43172956;stroke-dashoffset:0;stroke-opacity:1"
         id="rect821-3-6-9-1-4"
         width="29.104166"
         height="9.260417"
         x="99.218758"
         y="156.77083" />
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.71586478, 1.43172956;stroke-dashoffset:0;stroke-opacity:1"
         id="rect821-6-2-4-2-3"
         width="29.104166"
         height="9.260417"
         x="128.32292"
         y="156.77083" />
    </g>
    <g
       id="g8068"
       ns1:jacobian_sqrt="1.0"
       inkscapeversion="0.92.3"
       ns1:alignment="middle center"
       ns1:scale="2.83464566935"
       ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex"
       ns1:text="\\begin{verbatim}\ncomplex_t *num = malloc(sizeof(complex_t));\nnum = NULL; // la m\xc3\xa9moire allou\xc3\xa9e -&gt; inaccessible\n\\end{verbatim}"
       ns1:pdfconverter="pdf2svg"
       ns1:texconverter="pdflatex"
       ns1:version="0.9.0"
       transform="translate(-133.07219,56.560909)">
      <g
         id="g8066">
        <g
           id="g7900"
           style="fill:#000000;fill-opacity:1">
          <path
             id="path7882"
             transform="translate(133.768,134.765)"
             d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7884"
             transform="translate(138.99836,134.765)"
             d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7886"
             transform="translate(144.22873,134.765)"
             d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7888"
             transform="translate(149.45909,134.765)"
             d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7890"
             transform="translate(154.68946,134.765)"
             d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7892"
             transform="translate(159.91982,134.765)"
             d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7894"
             transform="translate(165.15019,134.765)"
             d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7896"
             transform="translate(170.38055,134.765)"
             d="m 4.203125,0.953125 c 0.109375,0 0.46875,0 0.46875,-0.359375 C 4.671875,0.25 4.3125,0.25 4.203125,0.25 H 1.03125 c -0.125,0 -0.46875,0 -0.46875,0.34375 0,0.359375 0.34375,0.359375 0.46875,0.359375 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7898"
             transform="translate(175.61092,134.765)"
             d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g7910"
           style="fill:#000000;fill-opacity:1">
          <path
             id="path7902"
             transform="translate(186.07165,134.765)"
             d="m 2.90625,-2.515625 c 0.609375,0.328125 0.25,0.140625 0.9375,0.546875 0.265625,0.171875 0.296875,0.171875 0.375,0.171875 0.203125,0 0.328125,-0.1875 0.328125,-0.34375 0,-0.15625 -0.125,-0.25 -0.140625,-0.265625 -0.25,-0.171875 -0.921875,-0.5 -1.1875,-0.640625 L 4.296875,-3.625 c 0.125,-0.078125 0.25,-0.140625 0.25,-0.328125 0,-0.046875 0,-0.328125 -0.40625,-0.328125 L 2.90625,-3.5625 C 2.9375,-3.828125 2.9375,-4.484375 2.9375,-4.78125 c 0,-0.078125 0,-0.40625 -0.328125,-0.40625 -0.328125,0 -0.328125,0.328125 -0.328125,0.40625 0,0.296875 0.015625,0.953125 0.03125,1.21875 L 1.234375,-4.203125 C 1.09375,-4.28125 1.078125,-4.28125 1,-4.28125 c -0.1875,0 -0.328125,0.171875 -0.328125,0.328125 0,0.1875 0.109375,0.25 0.25,0.3125 L 2,-3.046875 0.921875,-2.46875 c -0.109375,0.078125 -0.25,0.140625 -0.25,0.328125 0,0.046875 0,0.34375 0.40625,0.34375 L 2.3125,-2.515625 c -0.015625,0.25 -0.03125,0.90625 -0.03125,1.203125 0,0.09375 0,0.421875 0.328125,0.421875 0.328125,0 0.328125,-0.328125 0.328125,-0.421875 0,-0.296875 0,-0.953125 -0.03125,-1.203125 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7904"
             transform="translate(191.30201,134.765)"
             d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7906"
             transform="translate(196.53238,134.765)"
             d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7908"
             transform="translate(201.76274,134.765)"
             d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g7914"
           style="fill:#000000;fill-opacity:1">
          <path
             id="path7912"
             transform="translate(212.22347,134.765)"
             d="m 4.390625,-3.453125 c 0.125,0 0.453125,0 0.453125,-0.359375 0,-0.34375 -0.375,-0.34375 -0.5,-0.34375 H 0.890625 c -0.140625,0 -0.515625,0 -0.515625,0.34375 0,0.359375 0.328125,0.359375 0.453125,0.359375 z M 4.34375,-1.9375 c 0.125,0 0.5,0 0.5,-0.359375 0,-0.34375 -0.328125,-0.34375 -0.453125,-0.34375 h -3.5625 c -0.125,0 -0.453125,0 -0.453125,0.34375 0,0.359375 0.375,0.359375 0.515625,0.359375 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g7968"
           style="fill:#000000;fill-opacity:1">
          <path
             id="path7916"
             transform="translate(222.6842,134.765)"
             d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7918"
             transform="translate(227.91457,134.765)"
             d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7920"
             transform="translate(233.14493,134.765)"
             d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7922"
             transform="translate(238.3753,134.765)"
             d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7924"
             transform="translate(243.60566,134.765)"
             d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7926"
             transform="translate(248.83603,134.765)"
             d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7928"
             transform="translate(254.06639,134.765)"
             d="m 4.359375,0.53125 c 0,-0.140625 -0.078125,-0.1875 -0.25,-0.296875 C 2.875,-0.609375 2.40625,-1.9375 2.40625,-3.046875 c 0,-1 0.390625,-2.390625 1.71875,-3.296875 0.15625,-0.109375 0.234375,-0.140625 0.234375,-0.296875 0,-0.078125 -0.046875,-0.28125 -0.3125,-0.28125 -0.28125,0 -2.328125,1.3125 -2.328125,3.875 0,1.1875 0.46875,2.078125 0.8125,2.578125 0.53125,0.734375 1.28125,1.28125 1.515625,1.28125 0.265625,0 0.3125,-0.1875 0.3125,-0.28125 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7930"
             transform="translate(259.29676,134.765)"
             d="M 2.96875,-2.546875 C 2.734375,-2.578125 2.546875,-2.609375 2.296875,-2.65625 2,-2.703125 1.328125,-2.828125 1.328125,-3.203125 c 0,-0.265625 0.3125,-0.578125 1.265625,-0.578125 0.828125,0 0.96875,0.296875 1,0.5625 0,0.171875 0.03125,0.34375 0.328125,0.34375 0.359375,0 0.359375,-0.21875 0.359375,-0.421875 v -0.6875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.25,0 -0.28125,0.140625 -0.3125,0.21875 -0.4375,-0.21875 -0.875,-0.21875 -1.0625,-0.21875 -1.65625,0 -1.890625,0.828125 -1.890625,1.1875 0,0.90625 1.046875,1.078125 1.96875,1.21875 0.484375,0.078125 1.28125,0.203125 1.28125,0.734375 0,0.375 -0.375,0.703125 -1.28125,0.703125 -0.46875,0 -1.015625,-0.109375 -1.265625,-0.890625 -0.0625,-0.171875 -0.09375,-0.28125 -0.359375,-0.28125 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.96875 c 0,0.15625 0,0.40625 0.296875,0.40625 0.09375,0 0.25,-0.015625 0.375,-0.375 0.484375,0.359375 1.015625,0.375 1.296875,0.375 1.5625,0 1.890625,-0.828125 1.890625,-1.3125 0,-1.03125 -1.28125,-1.25 -1.609375,-1.296875 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7932"
             transform="translate(264.52712,134.765)"
             d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7934"
             transform="translate(269.75749,134.765)"
             d="M 4.46875,-3.5625 C 4.6875,-3.765625 4.6875,-3.78125 4.6875,-3.953125 c 0,-0.34375 -0.21875,-0.34375 -0.40625,-0.34375 H 0.890625 c -0.328125,0 -0.40625,0.078125 -0.40625,0.40625 v 0.46875 c 0,0.1875 0,0.40625 0.34375,0.40625 0.34375,0 0.34375,-0.21875 0.34375,-0.40625 V -3.6875 H 3.65625 L 0.546875,-0.734375 C 0.34375,-0.53125 0.328125,-0.515625 0.328125,-0.34375 0.328125,0 0.546875,0 0.734375,0 h 3.78125 c 0.21875,-0.0625 0.21875,-0.265625 0.21875,-0.40625 v -0.578125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.375 h -2.6875 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7936"
             transform="translate(274.98786,134.765)"
             d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7938"
             transform="translate(280.21822,134.765)"
             d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7940"
             transform="translate(285.44858,134.765)"
             d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7942"
             transform="translate(290.67895,134.765)"
             d="m 4.359375,0.53125 c 0,-0.140625 -0.078125,-0.1875 -0.25,-0.296875 C 2.875,-0.609375 2.40625,-1.9375 2.40625,-3.046875 c 0,-1 0.390625,-2.390625 1.71875,-3.296875 0.15625,-0.109375 0.234375,-0.140625 0.234375,-0.296875 0,-0.078125 -0.046875,-0.28125 -0.3125,-0.28125 -0.28125,0 -2.328125,1.3125 -2.328125,3.875 0,1.1875 0.46875,2.078125 0.8125,2.578125 0.53125,0.734375 1.28125,1.28125 1.515625,1.28125 0.265625,0 0.3125,-0.1875 0.3125,-0.28125 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7944"
             transform="translate(295.90931,134.765)"
             d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7946"
             transform="translate(301.13968,134.765)"
             d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7948"
             transform="translate(306.37004,134.765)"
             d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7950"
             transform="translate(311.60041,134.765)"
             d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7952"
             transform="translate(316.83078,134.765)"
             d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7954"
             transform="translate(322.06114,134.765)"
             d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7956"
             transform="translate(327.2915,134.765)"
             d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7958"
             transform="translate(332.52187,134.765)"
             d="m 4.203125,0.953125 c 0.109375,0 0.46875,0 0.46875,-0.359375 C 4.671875,0.25 4.3125,0.25 4.203125,0.25 H 1.03125 c -0.125,0 -0.46875,0 -0.46875,0.34375 0,0.359375 0.34375,0.359375 0.46875,0.359375 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7960"
             transform="translate(337.75223,134.765)"
             d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7962"
             transform="translate(342.9826,134.765)"
             d="m 3.515625,-3.046875 c 0,-1.1875 -0.46875,-2.09375 -0.8125,-2.578125 -0.53125,-0.734375 -1.28125,-1.296875 -1.515625,-1.296875 -0.25,0 -0.3125,0.203125 -0.3125,0.28125 0,0.15625 0.109375,0.21875 0.15625,0.25 1.640625,1.09375 1.796875,2.6875 1.796875,3.34375 0,1 -0.375,2.375 -1.71875,3.28125 C 0.953125,0.34375 0.875,0.390625 0.875,0.53125 c 0,0.09375 0.0625,0.28125 0.3125,0.28125 0.28125,0 2.328125,-1.3125 2.328125,-3.859375 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7964"
             transform="translate(348.21296,134.765)"
             d="m 3.515625,-3.046875 c 0,-1.1875 -0.46875,-2.09375 -0.8125,-2.578125 -0.53125,-0.734375 -1.28125,-1.296875 -1.515625,-1.296875 -0.25,0 -0.3125,0.203125 -0.3125,0.28125 0,0.15625 0.109375,0.21875 0.15625,0.25 1.640625,1.09375 1.796875,2.6875 1.796875,3.34375 0,1 -0.375,2.375 -1.71875,3.28125 C 0.953125,0.34375 0.875,0.390625 0.875,0.53125 c 0,0.09375 0.0625,0.28125 0.3125,0.28125 0.28125,0 2.328125,-1.3125 2.328125,-3.859375 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7966"
             transform="translate(353.44333,134.765)"
             d="m 3.234375,-3.671875 c 0,-0.359375 -0.296875,-0.625 -0.609375,-0.625 -0.375,0 -0.625,0.3125 -0.625,0.625 0,0.359375 0.296875,0.625 0.609375,0.625 0.375,0 0.625,-0.3125 0.625,-0.625 z M 2.65625,0 C 2.515625,0.53125 2.140625,0.734375 2,0.8125 1.9375,0.84375 1.796875,0.90625 1.796875,1.0625 c 0,0.15625 0.140625,0.328125 0.3125,0.328125 0.21875,0 1.1875,-0.546875 1.1875,-1.65625 0,-0.65625 -0.3125,-0.984375 -0.6875,-0.984375 C 2.25,-1.25 2,-0.96875 2,-0.625 2,-0.34375 2.15625,0 2.65625,0 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g7976"
           style="fill:#000000;fill-opacity:1">
          <path
             id="path7970"
             transform="translate(133.768,146.72)"
             d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7972"
             transform="translate(138.99836,146.72)"
             d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7974"
             transform="translate(144.22873,146.72)"
             d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g7980"
           style="fill:#000000;fill-opacity:1">
          <path
             id="path7978"
             transform="translate(154.68946,146.72)"
             d="m 4.390625,-3.453125 c 0.125,0 0.453125,0 0.453125,-0.359375 0,-0.34375 -0.375,-0.34375 -0.5,-0.34375 H 0.890625 c -0.140625,0 -0.515625,0 -0.515625,0.34375 0,0.359375 0.328125,0.359375 0.453125,0.359375 z M 4.34375,-1.9375 c 0.125,0 0.5,0 0.5,-0.359375 0,-0.34375 -0.328125,-0.34375 -0.453125,-0.34375 h -3.5625 c -0.125,0 -0.453125,0 -0.453125,0.34375 0,0.359375 0.375,0.359375 0.515625,0.359375 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g7992"
           style="fill:#000000;fill-opacity:1">
          <path
             id="path7982"
             transform="translate(165.15019,146.72)"
             d="M 1.890625,-5.734375 C 1.78125,-6.0625 1.625,-6.09375 1.359375,-6.09375 h -0.6875 c -0.140625,0 -0.390625,0 -0.390625,0.296875 0,0.3125 0.234375,0.3125 0.390625,0.3125 h 0.25 v 4.875 h -0.25 c -0.140625,0 -0.390625,0 -0.390625,0.296875 C 0.28125,0 0.515625,0 0.671875,0 h 1.0625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -0.25 V -5.34375 H 1.5 l 1.828125,4.984375 C 3.453125,-0.015625 3.625,0 3.875,0 4.171875,0 4.296875,-0.03125 4.296875,-0.40625 v -5.078125 h 0.25 c 0.140625,0 0.390625,0 0.390625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.390625,-0.3125 h -1.0625 c -0.15625,0 -0.390625,0 -0.390625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 h 0.25 V -0.75 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7984"
             transform="translate(170.38055,146.72)"
             d="m 4.46875,-5.484375 h 0.3125 c 0.15625,0 0.40625,0 0.40625,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 3.484375 c -0.140625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.265625,0.3125 0.40625,0.3125 H 3.78125 v 3.40625 C 3.78125,-1.015625 3.125,-0.5 2.609375,-0.5 2.078125,-0.5 1.4375,-1.015625 1.4375,-2.078125 v -3.40625 h 0.296875 c 0.15625,0 0.40625,0 0.40625,-0.3125 0,-0.296875 -0.25,-0.296875 -0.40625,-0.296875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 H 0.75 v 3.453125 c 0,1.21875 0.859375,2.140625 1.859375,2.140625 1,0 1.859375,-0.921875 1.859375,-2.140625 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7986"
             transform="translate(175.61092,146.72)"
             d="m 1.78125,-5.484375 h 0.546875 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 0.375 v 4.875 h -0.375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.3125,0 0.5625,0 0.71875,0 h 3.75 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.890625 c 0,-0.203125 0,-0.40625 -0.328125,-0.40625 -0.359375,0 -0.359375,0.203125 -0.359375,0.40625 v 0.6875 H 1.78125 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7988"
             transform="translate(180.84128,146.72)"
             d="m 1.78125,-5.484375 h 0.546875 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 0.375 v 4.875 h -0.375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.3125,0 0.5625,0 0.71875,0 h 3.75 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.890625 c 0,-0.203125 0,-0.40625 -0.328125,-0.40625 -0.359375,0 -0.359375,0.203125 -0.359375,0.40625 v 0.6875 H 1.78125 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7990"
             transform="translate(186.07165,146.72)"
             d="m 3.234375,-3.671875 c 0,-0.359375 -0.296875,-0.625 -0.609375,-0.625 -0.375,0 -0.625,0.3125 -0.625,0.625 0,0.359375 0.296875,0.625 0.609375,0.625 0.375,0 0.625,-0.3125 0.625,-0.625 z M 2.65625,0 C 2.515625,0.53125 2.140625,0.734375 2,0.8125 1.9375,0.84375 1.796875,0.90625 1.796875,1.0625 c 0,0.15625 0.140625,0.328125 0.3125,0.328125 0.21875,0 1.1875,-0.546875 1.1875,-1.65625 0,-0.65625 -0.3125,-0.984375 -0.6875,-0.984375 C 2.25,-1.25 2,-0.96875 2,-0.625 2,-0.34375 2.15625,0 2.65625,0 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g7998"
           style="fill:#000000;fill-opacity:1">
          <path
             id="path7994"
             transform="translate(196.53238,146.72)"
             d="m 4.5625,-6.328125 c 0.078125,-0.15625 0.078125,-0.15625 0.078125,-0.234375 0,-0.1875 -0.140625,-0.359375 -0.34375,-0.359375 -0.21875,0 -0.296875,0.15625 -0.34375,0.28125 l -3.296875,6.875 c -0.0625,0.171875 -0.078125,0.171875 -0.078125,0.25 0,0.171875 0.15625,0.34375 0.34375,0.34375 0.21875,0 0.296875,-0.15625 0.359375,-0.28125 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path7996"
             transform="translate(201.76274,146.72)"
             d="m 4.5625,-6.328125 c 0.078125,-0.15625 0.078125,-0.15625 0.078125,-0.234375 0,-0.1875 -0.140625,-0.359375 -0.34375,-0.359375 -0.21875,0 -0.296875,0.15625 -0.34375,0.28125 l -3.296875,6.875 c -0.0625,0.171875 -0.078125,0.171875 -0.078125,0.25 0,0.171875 0.15625,0.34375 0.34375,0.34375 0.21875,0 0.296875,-0.15625 0.359375,-0.28125 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g8004"
           style="fill:#000000;fill-opacity:1">
          <path
             id="path8000"
             transform="translate(212.22347,146.72)"
             d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path8002"
             transform="translate(217.45384,146.72)"
             d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g8018"
           style="fill:#000000;fill-opacity:1">
          <path
             id="path8006"
             transform="translate(227.91457,146.72)"
             d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path
             id="path8008"
             transform="translate(233.14493,146.72)"
             d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0"
             style="stroke:none;stroke-width:0"
             inkscape:connector-curvature="0" />
          <path