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
|
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill-opacity="1" color-rendering="auto" color-interpolation="auto" text-rendering="auto" stroke="black" stroke-linecap="square" width="840" stroke-miterlimit="10" shape-rendering="auto" stroke-opacity="1" fill="black" stroke-dasharray="none" font-weight="normal" stroke-width="1" height="613" font-family="'Dialog'" font-style="normal" stroke-linejoin="miter" font-size="12px" stroke-dashoffset="0" image-rendering="auto">
<!--Generated by ySVG 2.6-->
<defs id="genericDefs"/>
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M0 0 L840 0 L840 613 L0 613 L0 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M-1257 -417 L-1167 -417 L-1167 -339 L-1257 -339 L-1257 -417 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-1061 -534 L-946 -534 L-946 -475 L-1061 -475 L-1061 -534 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-845 -538 L-724 -538 L-724 -466 L-845 -466 L-845 -538 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-646 -538 L-533 -538 L-533 -479 L-646 -479 L-646 -538 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-449 -390 L-322 -390 L-322 -363 L-449 -363 L-449 -390 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-1055 -402 L-950 -402 L-950 -354 L-1055 -354 L-1055 -402 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-647 -260 L-531 -260 L-531 -233 L-647 -233 L-647 -260 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-900 -115 L-785 -115 L-785 -88 L-900 -88 L-900 -115 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-609 -120 L-501 -120 L-501 -93 L-609 -93 L-609 -120 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-1021 -115 L-937 -115 L-937 -88 L-1021 -88 L-1021 -115 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-747 -132 L-647 -132 L-647 -71 L-747 -71 L-747 -132 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-1085 -271 L-922 -271 L-922 -223 L-1085 -223 L-1085 -271 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-640 -390 L-538 -390 L-538 -363 L-640 -363 L-640 -390 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-272 -390 L-114 -390 L-114 -363 L-272 -363 L-272 -390 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-451 -260 L-322 -260 L-322 -233 L-451 -233 L-451 -260 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-257 -260 L-129 -260 L-129 -233 L-257 -233 L-257 -260 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-271 -122 L-115 -122 L-115 -95 L-271 -95 L-271 -122 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-827 -276 L-742 -276 L-742 -228 L-827 -228 L-827 -276 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-840 -390 L-729 -390 L-729 -363 L-840 -363 L-840 -390 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-445 -120 L-327 -120 L-327 -93 L-445 -93 L-445 -120 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-609 27 L-509 27 L-509 87 L-609 87 L-609 27 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-251 16 L-134 16 L-134 64 L-251 64 L-251 16 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-431 9 L-341 9 L-341 110 L-431 110 L-431 9 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-1054 -734 L-952 -734 L-952 -707 L-1054 -707 L-1054 -734 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-1038 -634 L-968 -634 L-968 -607 L-1038 -607 L-1038 -634 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-623 -734 L-555 -734 L-555 -707 L-623 -707 L-623 -734 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-1258 -735 L-54 -735 L-54 143.6333 L-1258 143.6333 L-1258 -735 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M0 0 L0 18 L278 18 L278 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M0 0 L0 32 L256 32 L256 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M0 0 L0 32 L268 32 L268 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M0 0 L0 32 L263 32 L263 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M0 0 L0 32 L309 32 L309 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M0 0 L0 74 L405 74 L405 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M0 0 L0 32 L261 32 L261 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M0 0 L0 60 L315 60 L315 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M0 0 L0 18 L201 18 L201 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M0 0 L0 60 L339 60 L339 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M0 0 L0 74 L296 74 L296 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M0 0 L0 46 L323 46 L323 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M0 0 L0 46 L197 46 L197 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M0 0 L0 46 L202 46 L202 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M0 0 L0 46 L225 46 L225 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M0 0 L0 60 L325 60 L325 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M0 0 L0 32 L262 32 L262 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M0 0 L0 60 L336 60 L336 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M0 0 L0 88 L368 88 L368 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M0 0 L0 88 L201 88 L201 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M0 0 L0 74 L289 74 L289 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
<path d="M0 0 L0 32 L299 32 L299 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
<path d="M0 0 L0 18 L345 18 L345 0 Z"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
<path d="M0 0 L0 18 L283 18 L283 0 Z"/>
</clipPath>
<script type="text/ecmascript"><![CDATA[ var SVGDocument = null;
var SVGRoot = null;
var TrueCoords = null;
var lastElement = null;
var initialized = null;
var tipGroup;
function Init(evt)
{
SVGDocument = evt.target.ownerDocument;
SVGRoot = SVGDocument.documentElement;
TrueCoords = SVGRoot.createSVGPoint();
initialized = evt;
};
function GetTrueCoords(evt)
{
var newScale = SVGRoot.currentScale;
var translation = SVGRoot.currentTranslate;
TrueCoords.x = (evt.clientX - translation.x)/newScale;
TrueCoords.y = (evt.clientY - translation.y)/newScale;
};
function HideTooltip( evt )
{
if(initialized == null) {
Init(evt);
}
if(tipGroup != null) {
tipGroup.setAttributeNS(null, 'visibility', 'hidden');
}
};
function ShowTooltip( evt )
{
if(initialized == null) {
Init(evt);
}
GetTrueCoords( evt );
var tipScale = 1/SVGRoot.currentScale;
var targetElement = evt.currentTarget;
if ( lastElement != targetElement )
{
var targetId = targetElement.getAttributeNS(null, 'id');
var tipId = 'tooltip.' + targetId;
tipGroup = SVGDocument.getElementById(tipId);
var xPos = TrueCoords.x + (10 * tipScale);
var yPos = TrueCoords.y + (10 * tipScale);
tipGroup.setAttributeNS(null, 'transform', 'translate(' + xPos + ',' + yPos + ') scale(' + tipScale + ')');
tipGroup.setAttributeNS(null, 'visibility', 'visible');
}
};
]]></script>
</defs>
<g onmouseout="HideTooltip(evt)" id="y.node.0" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://pyqtgraph.readthedocs.io/en/latest/widgets/imageview.html" xlink:show="new">
<g fill="rgb(111,121,168)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(111,121,168)">
<rect x="-1257.6249" width="90.998" height="78" y="-417.1875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-1257.6249" width="90.998" height="78" y="-417.1875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-1248.5741" xml:space="preserve" y="-399.6191" clip-path="url(#clipPath2)" stroke="none">ImageView</text>
</g>
</g>
<g text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)">
<line y2="-391" fill="none" x1="-1256" clip-path="url(#clipPath2)" x2="-1167" y1="-391"/>
<text stroke-linecap="butt" x="-1252.6249" y="-375.2754" clip-path="url(#clipPath2)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">graphicsView</text>
<text stroke-linecap="butt" x="-1252.6249" y="-361.1426" clip-path="url(#clipPath2)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">imageItem</text>
<text stroke-linecap="butt" x="-1252.6249" y="-347.0098" clip-path="url(#clipPath2)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">view</text>
<line y2="-339" fill="none" x1="-1256" clip-path="url(#clipPath2)" x2="-1167" y1="-339"/>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.1" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://doc.qt.io/qt-5/qgraphicsview.html" xlink:show="new">
<g fill="rgb(117,163,120)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(117,163,120)">
<rect x="-1061.2184" width="115.7466" height="59" y="-534.1875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-1061.2184" width="115.7466" height="59" y="-534.1875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-1054.2184" xml:space="preserve" y="-516.6191" clip-path="url(#clipPath3)" stroke="none">QGraphicsView</text>
</g>
</g>
<g text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)">
<line y2="-508" fill="none" x1="-1060" clip-path="url(#clipPath3)" x2="-946" y1="-508"/>
<line y2="-498" fill="none" x1="-1060" clip-path="url(#clipPath3)" x2="-946" y1="-498"/>
<text stroke-linecap="butt" x="-1056.2184" y="-482.2754" clip-path="url(#clipPath3)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">scene()</text>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.2" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://doc.qt.io/qt-5/qgraphicsscene.html" xlink:show="new">
<g fill="rgb(117,163,120)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(117,163,120)">
<rect x="-845.4177" width="121.7197" height="72" y="-538.6875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-845.4177" width="121.7197" height="72" y="-538.6875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-838.4177" xml:space="preserve" y="-521.1191" clip-path="url(#clipPath4)" stroke="none">QGraphicsScene</text>
</g>
</g>
<g text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)">
<line y2="-513" fill="none" x1="-844" clip-path="url(#clipPath4)" x2="-724" y1="-513"/>
<line y2="-503" fill="none" x1="-844" clip-path="url(#clipPath4)" x2="-724" y1="-503"/>
<text stroke-linecap="butt" x="-840.4177" y="-486.7754" clip-path="url(#clipPath4)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">items()</text>
<text stroke-linecap="butt" x="-840.4177" y="-472.6426" clip-path="url(#clipPath4)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">views()</text>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.3" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://doc.qt.io/qt-5/qgraphicsitem.html" xlink:show="new">
<g fill="rgb(117,163,120)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(117,163,120)">
<rect x="-646.2193" width="113.4043" height="59" y="-538.6875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-646.2193" width="113.4043" height="59" y="-538.6875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-639.2192" xml:space="preserve" y="-521.1191" clip-path="url(#clipPath5)" stroke="none">QGraphicsItem</text>
</g>
</g>
<g text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)">
<line y2="-513" fill="none" x1="-645" clip-path="url(#clipPath5)" x2="-533" y1="-513"/>
<line y2="-503" fill="none" x1="-645" clip-path="url(#clipPath5)" x2="-533" y1="-503"/>
<text stroke-linecap="butt" x="-641.2192" y="-486.7754" clip-path="url(#clipPath5)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">scene()</text>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.4" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://doc.qt.io/qt-5/qgraphicsobject.html" xlink:show="new">
<g fill="rgb(117,163,120)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(117,163,120)">
<rect x="-449.982" width="127.0518" height="27" y="-390.6875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-449.982" width="127.0518" height="27" y="-390.6875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-442.982" xml:space="preserve" y="-373.1191" clip-path="url(#clipPath6)" stroke="none">QGraphicsObject</text>
</g>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.5" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://pyqtgraph.readthedocs.io/en/latest/widgets/graphicsview.html" xlink:show="new">
<g fill="rgb(111,121,168)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(111,121,168)">
<rect x="-1055.8642" width="105.0381" height="48" y="-402.1875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-1055.8642" width="105.0381" height="48" y="-402.1875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-1048.8641" xml:space="preserve" y="-384.6191" clip-path="url(#clipPath7)" stroke="none">GraphicsView</text>
</g>
</g>
<g text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)">
<line y2="-376" fill="none" x1="-1054" clip-path="url(#clipPath7)" x2="-951" y1="-376"/>
<text stroke-linecap="butt" x="-1050.8641" y="-360.2754" clip-path="url(#clipPath7)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">sceneObj</text>
<line y2="-352" fill="none" x1="-1054" clip-path="url(#clipPath7)" x2="-951" y1="-352"/>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.6" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://pyqtgraph.readthedocs.io/en/latest/graphicsItems/graphicsobject.html" xlink:show="new">
<g fill="rgb(111,121,168)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(111,121,168)">
<rect x="-647.6887" width="116.3433" height="27" y="-260.6875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-647.6887" width="116.3433" height="27" y="-260.6875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-640.6887" xml:space="preserve" y="-243.1191" clip-path="url(#clipPath8)" stroke="none">GraphicsObject</text>
</g>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.7" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://pyqtgraph.readthedocs.io/en/latest/graphicsItems/scatterplotitem.html" xlink:show="new">
<g fill="rgb(111,121,168)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(111,121,168)">
<rect x="-900.1143" width="115.626" height="27" y="-115.6875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-900.1143" width="115.626" height="27" y="-115.6875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-893.1143" xml:space="preserve" y="-98.1191" clip-path="url(#clipPath9)" stroke="none">ScatterPlotItem</text>
</g>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.8" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://pyqtgraph.readthedocs.io/en/latest/graphicsItems/plotcurveitem.html" xlink:show="new">
<g fill="rgb(111,121,168)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(111,121,168)">
<rect x="-609.9573" width="108.6118" height="27" y="-120.6875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-609.9573" width="108.6118" height="27" y="-120.6875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-602.9573" xml:space="preserve" y="-103.1191" clip-path="url(#clipPath10)" stroke="none">PlotCurveItem</text>
</g>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.9" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://pyqtgraph.readthedocs.io/en/latest/graphicsItems/imageitem.html" xlink:show="new">
<g fill="rgb(111,121,168)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(111,121,168)">
<rect x="-1021.716" width="84.5542" height="27" y="-115.6875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-1021.716" width="84.5542" height="27" y="-115.6875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-1014.716" xml:space="preserve" y="-98.1191" clip-path="url(#clipPath11)" stroke="none">ImageItem</text>
</g>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.10" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://pyqtgraph.readthedocs.io/en/latest/graphicsItems/plotdataitem.html" xlink:show="new">
<g fill="rgb(111,121,168)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(111,121,168)">
<rect x="-747.4408" width="100.436" height="61" y="-132.6875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-747.4408" width="100.436" height="61" y="-132.6875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-740.4408" xml:space="preserve" y="-115.1191" clip-path="url(#clipPath12)" stroke="none">PlotDataItem</text>
</g>
</g>
<g text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)">
<line y2="-107" fill="none" x1="-746" clip-path="url(#clipPath12)" x2="-648" y1="-107"/>
<text stroke-linecap="butt" x="-742.4408" y="-90.7754" clip-path="url(#clipPath12)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">curve</text>
<text stroke-linecap="butt" x="-742.4408" y="-76.6426" clip-path="url(#clipPath12)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">scatter</text>
<line y2="-69" fill="none" x1="-746" clip-path="url(#clipPath12)" x2="-648" y1="-69"/>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.11" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://pyqtgraph.readthedocs.io/en/latest/widgets/graphicslayoutwidget.html" xlink:show="new">
<g fill="rgb(111,121,168)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(111,121,168)">
<rect x="-1085.2634" width="163.8364" height="48" y="-271.1875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-1085.2634" width="163.8364" height="48" y="-271.1875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-1078.2633" xml:space="preserve" y="-253.6191" clip-path="url(#clipPath13)" stroke="none">GraphicsLayoutWidget</text>
</g>
</g>
<g text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)">
<line y2="-245" fill="none" x1="-1084" clip-path="url(#clipPath13)" x2="-922" y1="-245"/>
<text stroke-linecap="butt" x="-1080.2633" y="-229.2754" clip-path="url(#clipPath13)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">graphicsLayout</text>
<line y2="-221" fill="none" x1="-1084" clip-path="url(#clipPath13)" x2="-922" y1="-221"/>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.12" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://pyqtgraph.readthedocs.io/en/latest/graphicsItems/graphicsitem.html" xlink:show="new">
<g fill="rgb(111,121,168)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(111,121,168)">
<rect x="-640.865" width="102.6958" height="27" y="-390.1875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-640.865" width="102.6958" height="27" y="-390.1875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-633.865" xml:space="preserve" y="-372.6191" clip-path="url(#clipPath14)" stroke="none">GraphicsItem</text>
</g>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.13" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://doc.qt.io/qt-5/qgraphicslayoutitem.html" xlink:show="new">
<g fill="rgb(117,163,120)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(117,163,120)">
<rect x="-272.246" width="158.2949" height="27" y="-390.6875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-272.246" width="158.2949" height="27" y="-390.6875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-265.246" xml:space="preserve" y="-373.1191" clip-path="url(#clipPath15)" stroke="none">QGraphicsLayoutItem</text>
</g>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.14" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://doc.qt.io/qt-5/qgraphicswidget.html" xlink:show="new">
<g fill="rgb(117,163,120)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(117,163,120)">
<rect x="-451.2833" width="129.6543" height="27" y="-260.6875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-451.2833" width="129.6543" height="27" y="-260.6875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-444.2833" xml:space="preserve" y="-243.1191" clip-path="url(#clipPath16)" stroke="none">QGraphicsWidget</text>
</g>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.15" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://doc.qt.io/qt-5/qgraphicslayout.html" xlink:show="new">
<g fill="rgb(117,163,120)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(117,163,120)">
<rect x="-257.3448" width="128.4927" height="27" y="-260.6875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-257.3448" width="128.4927" height="27" y="-260.6875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-250.3448" xml:space="preserve" y="-243.1191" clip-path="url(#clipPath17)" stroke="none">QGraphicsLayout</text>
</g>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.16" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://doc.qt.io/qt-5/qgraphicsgridlayout.html" xlink:show="new">
<g fill="rgb(117,163,120)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(117,163,120)">
<rect x="-271.5668" width="156.9365" height="27" y="-122.1875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-271.5668" width="156.9365" height="27" y="-122.1875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-264.5668" xml:space="preserve" y="-104.6191" clip-path="url(#clipPath18)" stroke="none">QGraphicsGridLayout</text>
</g>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.17" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://pyqtgraph.readthedocs.io/en/latest/widgets/plotwidget.html" xlink:show="new">
<g fill="rgb(111,121,168)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(111,121,168)">
<rect x="-827.4697" width="85.8237" height="48" y="-276.1875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-827.4697" width="85.8237" height="48" y="-276.1875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-820.4697" xml:space="preserve" y="-258.6191" clip-path="url(#clipPath19)" stroke="none">PlotWidget</text>
</g>
</g>
<g text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)">
<line y2="-250" fill="none" x1="-826" clip-path="url(#clipPath19)" x2="-742" y1="-250"/>
<text stroke-linecap="butt" x="-822.4697" y="-234.2754" clip-path="url(#clipPath19)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">plotItem</text>
<line y2="-226" fill="none" x1="-826" clip-path="url(#clipPath19)" x2="-742" y1="-226"/>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.18" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://pyqtgraph.readthedocs.io/en/latest/graphicsscene/graphicsscene.html" xlink:show="new">
<g fill="rgb(111,121,168)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(111,121,168)">
<rect x="-840.0634" width="111.0112" height="27" y="-390.1875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-840.0634" width="111.0112" height="27" y="-390.1875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-833.0634" xml:space="preserve" y="-372.6191" clip-path="url(#clipPath20)" stroke="none">GraphicsScene</text>
</g>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.19" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://pyqtgraph.readthedocs.io/en/latest/graphicsItems/graphicswidget.html" xlink:show="new">
<g fill="rgb(111,121,168)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(111,121,168)">
<rect x="-445.929" width="118.9458" height="27" y="-120.6875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-445.929" width="118.9458" height="27" y="-120.6875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-438.929" xml:space="preserve" y="-103.1191" clip-path="url(#clipPath21)" stroke="none">GraphicsWidget</text>
</g>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.20" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://pyqtgraph.readthedocs.io/en/latest/graphicsItems/viewbox.html" xlink:show="new">
<g fill="rgb(111,121,168)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(111,121,168)">
<rect x="-609.9573" width="100.436" height="60" y="27.8125" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-609.9573" width="100.436" height="60" y="27.8125"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-587.8975" xml:space="preserve" y="45.3809" clip-path="url(#clipPath22)" stroke="none">ViewBox</text>
</g>
</g>
<g text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)">
<line y2="53" fill="none" x1="-608" clip-path="url(#clipPath22)" x2="-510" y1="53"/>
<line y2="63" fill="none" x1="-608" clip-path="url(#clipPath22)" x2="-510" y1="63"/>
<text stroke-linecap="butt" x="-604.9573" y="79.7246" clip-path="url(#clipPath22)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">addItem(item)</text>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.21" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://pyqtgraph.readthedocs.io/en/latest/graphicsItems/graphicslayout.html" xlink:show="new">
<g fill="rgb(111,121,168)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(111,121,168)">
<rect x="-251.9906" width="117.7842" height="48" y="16.8125" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-251.9906" width="117.7842" height="48" y="16.8125"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-244.9906" xml:space="preserve" y="34.3809" clip-path="url(#clipPath23)" stroke="none">GraphicsLayout</text>
</g>
</g>
<g text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)">
<line y2="42" fill="none" x1="-250" clip-path="url(#clipPath23)" x2="-135" y1="42"/>
<text stroke-linecap="butt" x="-246.9906" y="58.7246" clip-path="url(#clipPath23)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">layout</text>
<line y2="66" fill="none" x1="-250" clip-path="url(#clipPath23)" x2="-135" y1="66"/>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.22" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://pyqtgraph.readthedocs.io/en/latest/graphicsItems/plotitem.html" xlink:show="new">
<g fill="rgb(111,121,168)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(111,121,168)">
<rect x="-431.9551" width="90.998" height="101.5508" y="9.3125" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-431.9551" width="90.998" height="101.5508" y="9.3125"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-414.243" xml:space="preserve" y="26.8809" clip-path="url(#clipPath24)" stroke="none">PlotItem</text>
</g>
</g>
<g text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)">
<line y2="34" fill="none" x1="-430" clip-path="url(#clipPath24)" x2="-341" y1="34"/>
<text stroke-linecap="butt" x="-426.9551" y="51.2246" clip-path="url(#clipPath24)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">items</text>
<text stroke-linecap="butt" x="-426.9551" y="65.3574" clip-path="url(#clipPath24)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">layout</text>
<text stroke-linecap="butt" x="-426.9551" y="79.4902" clip-path="url(#clipPath24)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">vb</text>
<line y2="87" fill="none" x1="-430" clip-path="url(#clipPath24)" x2="-341" y1="87"/>
<text stroke-linecap="butt" x="-426.9551" y="103.623" clip-path="url(#clipPath24)" font-family="sans-serif" stroke="none" stroke-miterlimit="1.45" xml:space="preserve">addItem(item)</text>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.23" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://doc.qt.io/qt-5/qpaintdevice.html" xlink:show="new">
<g fill="rgb(117,163,120)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(117,163,120)">
<rect x="-1054.7248" width="102.7593" height="27" y="-734.1875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-1054.7248" width="102.7593" height="27" y="-734.1875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-1047.7247" xml:space="preserve" y="-716.6191" clip-path="url(#clipPath25)" stroke="none">QPaintDevice</text>
</g>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.24" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://doc.qt.io/qt-5/qwidget.html" xlink:show="new">
<g fill="rgb(117,163,120)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(117,163,120)">
<rect x="-1038.7255" width="70.7607" height="27" y="-634.1875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-1038.7255" width="70.7607" height="27" y="-634.1875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-1031.7255" xml:space="preserve" y="-616.6191" clip-path="url(#clipPath26)" stroke="none">QWidget</text>
</g>
</g>
</a>
</g>
<g onmouseout="HideTooltip(evt)" id="y.node.25" onmousemove="ShowTooltip(evt)">
<a target="_blank" xlink:type="simple" xlink:href="https://doc.qt.io/qt-5/qobject.html" xlink:show="new">
<g fill="rgb(117,163,120)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke="rgb(117,163,120)">
<rect x="-623.5962" width="68.1582" height="27" y="-734.1875" stroke="none"/>
</g>
<g text-rendering="geometricPrecision" stroke-miterlimit="1.45" shape-rendering="geometricPrecision" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" stroke-linecap="butt">
<rect fill="none" x="-623.5962" width="68.1582" height="27" y="-734.1875"/>
</g>
<g>
<g font-size="13px" stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="geometricPrecision" font-weight="bold" stroke-miterlimit="1.45">
<text x="-616.5962" xml:space="preserve" y="-716.6191" clip-path="url(#clipPath27)" stroke="none">QObject</text>
</g>
</g>
</a>
</g>
<g id="y.edge.5">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(184,184,184)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(184,184,184)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-937.297 -490.9444 L-937.1979 -490.9306 L-935.9892 -490.7685 L-931.5469 -490.2188 L-927.1802 -489.7481 L-922.9146 -489.3831 L-918.775 -489.15 L-914.7869 -489.0752 L-910.9753 -489.1852 L-907.3656 -489.5063 L-903.983 -490.0648 L-900.8527 -490.8873 L-898 -492 L-895.4393 -493.4169 L-893.142 -495.1018 L-891.0687 -497.0063 L-889.1802 -499.0815 L-887.4371 -501.2789 L-885.8 -503.55 L-884.2296 -505.8461 L-882.6864 -508.1185 L-881.1312 -510.3188 L-879.5247 -512.3981 L-877.8274 -514.3081 L-876 -516 L-874.0121 -517.437 L-871.8688 -518.6296 L-869.5844 -519.6 L-867.1729 -520.3704 L-864.6483 -520.963 L-862.025 -521.4 L-859.317 -521.7037 L-856.5383 -521.8963 L-853.7031 -522 L-850.8256 -522.037 L-847.9199 -522.0296 L-845.4106 -522.0042"/>
<path fill="white" d="M-945.0991 -492.0136 L-936.5333 -496.5173 L-929.4949 -489.8753 L-938.0607 -485.3715 Z" stroke="none"/>
<path fill="none" stroke-width="1" d="M-945.0991 -492.0136 L-936.5333 -496.5173 L-929.4949 -489.8753 L-938.0607 -485.3715 Z"/>
</g>
<g/>
</g>
<g id="y.edge.40">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(184,184,184)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(184,184,184)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-853.2099 -477.1659 L-853.3099 -477.1676 L-854.8125 -477.2188 L-858.0272 -477.3975 L-861.1937 -477.6671 L-864.3 -478.05 L-867.3341 -478.5691 L-870.2839 -479.2469 L-873.1375 -480.1063 L-875.8827 -481.1697 L-878.5076 -482.4601 L-881 -484 L-883.3542 -485.801 L-885.5895 -487.8303 L-887.7313 -490.0438 L-889.8049 -492.3975 L-891.8361 -494.8476 L-893.85 -497.35 L-895.8723 -499.8607 L-897.9284 -502.3358 L-900.0438 -504.7313 L-902.2438 -507.0031 L-904.5541 -509.1073 L-907 -511 L-909.6005 -512.648 L-912.3488 -514.0617 L-915.2313 -515.2625 L-918.2346 -516.2716 L-921.3453 -517.1104 L-924.55 -517.8 L-927.8353 -518.3619 L-931.1876 -518.8173 L-934.5938 -519.1875 L-938.0401 -519.4938 L-941.5134 -519.7576 L-945 -520"/>
<path fill="white" d="M-845.3365 -477.0036 L-853.3258 -471.5421 L-861.0832 -477.3282 L-853.0939 -482.7897 Z" stroke="none"/>
<path fill="none" stroke-width="1" d="M-845.3365 -477.0036 L-853.3258 -471.5421 L-861.0832 -477.3282 L-853.0939 -482.7897 Z"/>
</g>
<g/>
</g>
<g id="y.edge.6">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(184,184,184)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(184,184,184)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-714.4418 -490.1765 L-714.3448 -490.1525 L-713.5938 -489.9844 L-710.8543 -489.4518 L-708.1686 -489.0388 L-705.55 -488.775 L-703.012 -488.6904 L-700.5679 -488.8148 L-698.2313 -489.1781 L-696.0154 -489.8102 L-693.9339 -490.7408 L-692 -492 L-690.2208 -493.6032 L-688.5771 -495.5092 L-687.0438 -497.6625 L-685.5951 -500.0074 L-684.2056 -502.4884 L-682.85 -505.05 L-681.5027 -507.6366 L-680.1382 -510.1926 L-678.7313 -512.6625 L-677.2562 -514.9907 L-675.6876 -517.1218 L-674 -519 L-672.1743 -520.5834 L-670.2161 -521.8843 L-668.1375 -522.9281 L-665.9506 -523.7407 L-663.6674 -524.3478 L-661.3 -524.775 L-658.8604 -525.048 L-656.3605 -525.1926 L-653.8125 -525.2344 L-651.2284 -525.1991 L-648.6202 -525.1124 L-646.2047 -525.0088"/>
<path fill="white" d="M-722.0972 -492.0234 L-713.1226 -495.6446 L-706.7864 -488.3296 L-715.761 -484.7084 Z" stroke="none"/>
<path fill="none" stroke-width="1" d="M-722.0972 -492.0234 L-713.1226 -495.6446 L-706.7864 -488.3296 L-715.761 -484.7084 Z"/>
</g>
<g/>
</g>
<g id="y.edge.39">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(184,184,184)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(184,184,184)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-654.0009 -489.8805 L-654.1009 -489.8787 L-655.6094 -489.875 L-658.7358 -489.9284 L-661.7965 -490.0633 L-664.775 -490.3 L-667.6549 -490.6589 L-670.4197 -491.1605 L-673.0531 -491.825 L-675.5386 -492.6729 L-677.8597 -493.7244 L-680 -495 L-681.9503 -496.5101 L-683.7299 -498.2253 L-685.3656 -500.1063 L-686.884 -502.1136 L-688.3115 -504.2079 L-689.675 -506.35 L-691.001 -508.5004 L-692.316 -510.6198 L-693.6469 -512.6688 L-695.0201 -514.608 L-696.4622 -516.3983 L-698 -518 L-699.6539 -519.3837 L-701.4197 -520.5587 L-703.2875 -521.5438 L-705.2469 -522.358 L-707.2878 -523.0204 L-709.4 -523.55 L-711.5733 -523.9656 L-713.7975 -524.2864 L-716.0625 -524.5312 L-718.358 -524.7191 L-720.674 -524.8691 L-723 -525"/>
<path fill="white" d="M-646.1268 -489.9966 L-653.918 -484.2561 L-661.8751 -489.7643 L-654.0839 -495.5049 Z" stroke="none"/>
<path fill="none" stroke-width="1" d="M-646.1268 -489.9966 L-653.918 -484.2561 L-661.8751 -489.7643 L-654.0839 -495.5049 Z"/>
</g>
<g/>
</g>
<g id="y.edge.7">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-413.2021 -390.687 L-578.4695 -474.1022"/>
<path d="M-589.5171 -479.6782 L-580.5067 -467.5693 L-574.4238 -479.6212 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.9">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(184,184,184)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(184,184,184)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-1158.5774 -380.314 L-1158.4819 -380.3438 L-1154.0266 -381.7153 L-1148.0117 -383.5078 L-1141.963 -385.2222 L-1135.869 -386.8325 L-1129.7188 -388.3125 L-1123.5007 -389.6363 L-1117.2037 -390.7778 L-1110.8164 -391.7109 L-1104.3275 -392.4097 L-1097.7258 -392.8481 L-1091 -393 L-1084.1425 -392.8481 L-1077.1609 -392.4097 L-1070.0664 -391.7109 L-1062.8704 -390.7778 L-1055.8402 -389.6764"/>
<path fill="white" d="M-1166.0956 -377.9702 L-1160.2516 -385.6841 L-1151.0593 -382.6577 L-1156.9033 -374.9438 Z" stroke="none"/>
<path fill="none" stroke-width="1" d="M-1166.0956 -377.9702 L-1160.2516 -385.6841 L-1151.0593 -382.6577 L-1156.9033 -374.9438 Z"/>
</g>
<g/>
</g>
<g id="y.edge.37">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-1003.3452 -402.1842 L-1003.3452 -462.8078"/>
<path d="M-1003.3452 -475.1828 L-1010.0952 -461.6828 L-996.5952 -461.6828 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.10">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-568.4227 -260.6921 L-417.9582 -357.0198"/>
<path d="M-407.536 -363.6921 L-422.545 -362.0981 L-415.2662 -350.7285 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.14">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-818.7571 -115.6927 L-623.7855 -227.5307"/>
<path d="M-613.0511 -233.6881 L-628.12 -232.8261 L-621.4028 -221.1158 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.13">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-558.9172 -120.6885 L-583.3428 -221.6633"/>
<path d="M-586.2524 -233.6914 L-589.6391 -218.9828 L-576.5176 -222.1569 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.36">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(184,184,184)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(184,184,184)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-1158.2771 -363.8987 L-1158.178 -363.9116 L-1156.8235 -364.0446 L-1152.334 -364.1984 L-1147.963 -363.9101 L-1143.7499 -363.0322 L-1139.7344 -361.4174 L-1135.9558 -358.9183 L-1132.4537 -355.3876 L-1129.2676 -350.6777 L-1126.4369 -344.6414 L-1124.0012 -337.1313 L-1122 -328 L-1120.4518 -317.1705 L-1119.2911 -304.8475 L-1118.4316 -291.3061 L-1117.787 -276.8214 L-1117.2709 -261.6686 L-1116.7969 -246.1228 L-1116.2786 -230.459 L-1115.6296 -214.9524 L-1114.7637 -199.8781 L-1113.5944 -185.5112 L-1112.0353 -172.1268 L-1110 -160 L-1107.4237 -149.3419 L-1104.327 -140.1072 L-1100.752 -132.1867 L-1096.7407 -125.4709 L-1092.3354 -119.8506 L-1087.5781 -115.2165 L-1082.511 -111.4593 L-1077.1759 -108.4696 L-1071.6152 -106.1381 L-1065.871 -104.3556 L-1059.9852 -103.0126 L-1054 -102 L-1047.9513 -101.2235 L-1041.8501 -100.6496 L-1035.7012 -100.2598 L-1029.5093 -100.0357 L-1023.2792 -99.959 L-1021.7622 -99.9716"/>
<path fill="white" d="M-1166.0994 -362.9884 L-1158.9274 -369.486 L-1150.455 -364.809 L-1157.627 -358.3114 Z" stroke="none"/>
<path fill="none" stroke-width="1" d="M-1166.0994 -362.9884 L-1158.9274 -369.486 L-1150.455 -364.809 L-1157.627 -358.3114 Z"/>
</g>
<g/>
</g>
<g id="y.edge.12">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-943.1455 -115.6839 L-637.42 -229.3739"/>
<path d="M-625.821 -233.6872 L-640.8271 -235.3085 L-636.1217 -222.6551 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.11">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-674.5825 -132.6672 L-606.9271 -223.749"/>
<path d="M-599.548 -233.6833 L-613.0167 -226.8709 L-602.1793 -218.821 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.15">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(184,184,184)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(184,184,184)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-755.0817 -80.3573 L-755.1794 -80.3365 L-755.5916 -80.2784 L-757.2812 -80.125 L-758.9553 -80.0758 L-760.6111 -80.1481 L-762.2461 -80.3594 L-763.8577 -80.7269 L-765.4431 -81.2679 L-767 -82 L-768.5265 -82.9346 L-770.0243 -84.0602 L-771.4961 -85.3594 L-772.9445 -86.8148 L-774.3719 -88.4091 L-775.7812 -90.125 L-777.1749 -91.945 L-778.5555 -93.8519 L-779.9258 -95.8281 L-781.2882 -97.8565 L-782.6454 -99.9196 L-784 -102"/>
<path fill="white" d="M-747.3612 -81.9098 L-753.9728 -74.8427 L-762.8021 -78.8049 L-756.1906 -85.872 Z" stroke="none"/>
<path fill="none" stroke-width="1" d="M-747.3612 -81.9098 L-753.9728 -74.8427 L-762.8021 -78.8049 L-756.1906 -85.872 Z"/>
</g>
<g/>
</g>
<g id="y.edge.16">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(184,184,184)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(184,184,184)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-639.2354 -101.5978 L-639.1356 -101.5924 L-638.4945 -101.5696 L-636.8125 -101.5312 L-635.1409 -101.519 L-633.4815 -101.537 L-631.8359 -101.5898 L-630.206 -101.6817 L-628.5934 -101.817 L-627 -102 L-625.4268 -102.2337 L-623.8727 -102.515 L-622.3359 -102.8398 L-620.8148 -103.2037 L-619.3076 -103.6023 L-617.8125 -104.0312 L-616.3278 -104.4863 L-614.8519 -104.963 L-613.3828 -105.457 L-611.919 -105.9641 L-610.4586 -106.4799 L-609.9572 -106.6587"/>
<path fill="white" d="M-647.0999 -102.0052 L-638.9444 -107.2152 L-631.371 -101.1904 L-639.5264 -95.9803 Z" stroke="none"/>
<path fill="none" stroke-width="1" d="M-647.0999 -102.0052 L-638.9444 -107.2152 L-631.371 -101.1904 L-639.5264 -95.9803 Z"/>
</g>
<g/>
</g>
<g id="y.edge.17">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-1003.3452 -271.2063 L-1003.3452 -341.8096"/>
<path d="M-1003.3452 -354.1846 L-1010.0952 -340.6846 L-996.5952 -340.6846 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.18">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-589.5171 -260.6876 L-589.5171 -350.8037"/>
<path d="M-589.5171 -363.1787 L-596.2671 -349.6787 L-582.7671 -349.6787 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.19">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-366.3698 -260.6921 L-223.4408 -356.7875"/>
<path d="M-213.1711 -363.6921 L-228.1405 -361.7615 L-220.6082 -350.5582 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.20">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-386.4561 -260.6763 L-386.4561 -351.3011"/>
<path d="M-386.4561 -363.6761 L-393.2061 -350.1761 L-379.7061 -350.1761 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.22">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-193.0985 -260.6763 L-193.0985 -351.3011"/>
<path d="M-193.0985 -363.6761 L-199.8485 -350.1761 L-186.3485 -350.1761 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.21">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-193.0985 -122.1791 L-193.0985 -221.2923"/>
<path d="M-193.0985 -233.6673 L-199.8485 -220.1673 L-186.3485 -220.1673 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.23">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-826.2481 -276.197 L-950.9846 -348.0329"/>
<path d="M-961.7083 -354.2088 L-953.3783 -341.6221 L-946.641 -353.3208 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.25">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(184,184,184)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(184,184,184)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-942.9512 -366.2811 L-942.8607 -366.3234 L-939.3866 -367.9225 L-934.0234 -370.3164 L-928.5926 -372.6296 L-923.0715 -374.8352 L-917.4375 -376.9062 L-911.6681 -378.8158 L-905.7407 -380.537 L-899.6328 -382.043 L-893.3218 -383.3067 L-886.785 -384.3014 L-880 -385 L-872.9517 -385.3847 L-865.6551 -385.4734 L-858.1328 -385.293 L-850.4074 -384.8704 L-842.5015 -384.2325 L-840.076 -383.984"/>
<path fill="white" d="M-950.0906 -362.9578 L-945.325 -371.3807 L-935.8118 -369.6044 L-940.5775 -361.1815 Z" stroke="none"/>
<path fill="none" stroke-width="1" d="M-950.0906 -362.9578 L-945.325 -371.3807 L-935.8118 -369.6044 L-940.5775 -361.1815 Z"/>
</g>
<g/>
</g>
<g id="y.edge.24">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-784.5578 -390.1919 L-784.5578 -454.3062"/>
<path d="M-784.5578 -466.6812 L-791.3078 -453.1812 L-777.8078 -453.1812 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.26">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-386.4561 -120.6885 L-386.4561 -221.3164"/>
<path d="M-386.4561 -233.6914 L-393.2061 -220.1914 L-379.7061 -220.1914 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.38">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-396.6439 -120.7086 L-571.8755 -353.2739"/>
<path d="M-579.3225 -363.1573 L-576.5895 -348.3134 L-565.8076 -356.4373 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.28">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(184,184,184)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(184,184,184)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-1158.3014 -346.912 L-1158.2021 -346.9 L-1156.7238 -346.6482 L-1152.2969 -345.4375 L-1148.1234 -343.5852 L-1144.288 -340.8773 L-1140.875 -337.1 L-1137.969 -332.0394 L-1135.6543 -325.4815 L-1134.0156 -317.2125 L-1133.1373 -307.0185 L-1133.104 -294.6856 L-1134 -280 L-1135.8162 -262.8545 L-1138.1682 -243.5694 L-1140.5781 -222.5719 L-1142.5679 -200.2889 L-1143.6595 -177.1476 L-1143.375 -153.575 L-1141.2363 -129.9983 L-1136.7654 -106.8444 L-1129.4844 -84.5406 L-1118.9152 -63.5139 L-1104.5797 -44.1913 L-1086 -27 L-1062.8434 -12.2603 L-1035.358 0.1343 L-1003.9375 10.3969 L-968.9753 18.7407 L-930.865 25.3791 L-890 30.525 L-846.7739 34.3918 L-801.5802 37.1926 L-754.8125 39.1406 L-706.8643 40.4491 L-658.1289 41.3311 L-609.9116 41.9876"/>
<path fill="white" d="M-1166.0989 -348.014 L-1157.5143 -352.4817 L-1150.5038 -345.8101 L-1159.0885 -341.3424 Z" stroke="none"/>
<path fill="none" stroke-width="1" d="M-1166.0989 -348.014 L-1157.5143 -352.4817 L-1150.5038 -345.8101 L-1159.0885 -341.3424 Z"/>
</g>
<g/>
</g>
<g id="y.edge.27">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-528.2429 27.8217 L-409.576 -85.1727"/>
<path d="M-400.614 -93.7064 L-415.0455 -89.2853 L-405.7361 -79.5086 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.34">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(184,184,184)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(184,184,184)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-1093.1211 -234.3001 L-1094.1962 -234.3398 L-1103.3281 -234.543 L-1112.3318 -234.473 L-1121.1428 -233.993 L-1129.6973 -232.9664 L-1137.9308 -231.2567 L-1145.7793 -228.7272 L-1153.1786 -225.2412 L-1160.0645 -220.6621 L-1166.3728 -214.8533 L-1172.0393 -207.6782 L-1177 -199 L-1181.1899 -188.7366 L-1184.5417 -177.0238 L-1186.9875 -164.0516 L-1188.4591 -150.0101 L-1188.8884 -135.0894 L-1188.2076 -119.4798 L-1186.3488 -103.3713 L-1183.2435 -86.954 L-1178.8241 -70.4182 L-1173.0223 -53.9538 L-1165.7703 -37.751 L-1157 -22 L-1146.6302 -6.8605 L-1134.528 7.629 L-1120.5464 21.4605 L-1104.5394 34.6258 L-1086.3606 47.117 L-1065.8635 58.926 L-1042.9017 70.0446 L-1017.329 80.4648 L-988.9988 90.1785 L-957.7648 99.1776 L-923.4807 107.4542 L-886 115 L-845.3207 121.8003 L-802.0179 127.8134 L-756.8113 132.991 L-710.4203 137.2845 L-663.5646 140.6456 L-616.9635 143.026 L-571.3367 144.3771 L-527.4036 144.6505 L-485.8839 143.798 L-447.497 141.771 L-412.9626 138.5211 L-383 134 L-358.1194 128.2038 L-337.993 121.307 L-322.0834 113.5287 L-309.8534 105.0879 L-300.7656 96.2038 L-294.2827 87.0952 L-289.8674 77.9814 L-286.9825 69.0813 L-285.0906 60.6141 L-283.6544 52.7987 L-282.1367 45.8544 L-280 40 L-276.8127 35.4 L-272.5656 32.0001 L-267.355 29.691 L-261.2773 28.3637 L-254.4288 27.9092 L-251.9897 28.0094" clip-path="url(#clipPath28)"/>
<path fill="white" d="M-1085.2515 -234.0093 L-1093.3289 -228.6789 L-1100.9907 -234.5909 L-1092.9133 -239.9213 Z" clip-path="url(#clipPath28)" stroke="none"/>
<path fill="none" d="M-1085.2515 -234.0093 L-1093.3289 -228.6789 L-1100.9907 -234.5909 L-1092.9133 -239.9213 Z" stroke-width="1" clip-path="url(#clipPath28)"/>
</g>
<g/>
</g>
<g id="y.edge.29">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(184,184,184)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(184,184,184)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-126.2885 51.0085 L-126.1893 50.9959 L-120.8349 50.2485 L-114.3594 49.1719 L-108.0123 47.8543 L-101.8366 46.2155 L-95.875 44.175 L-90.1703 41.6526 L-84.7654 38.5679 L-79.7031 34.8406 L-75.0262 30.3904 L-70.7776 25.137 L-67 19 L-63.7288 11.9401 L-60.9691 4.0818 L-58.7188 -4.4094 L-56.9753 -13.3679 L-55.7365 -22.6283 L-55 -32.025 L-54.7635 -41.3926 L-55.0247 -50.5654 L-55.7812 -59.3781 L-57.0309 -67.6651 L-58.7712 -75.2609 L-61 -82 L-63.7085 -87.7586 L-66.8627 -92.5802 L-70.4219 -96.55 L-74.3457 -99.7531 L-78.5936 -102.2747 L-83.125 -104.2 L-87.8995 -105.6142 L-92.8765 -106.6025 L-98.0156 -107.25 L-103.2762 -107.642 L-108.6179 -107.8636 L-114 -108"/>
<path fill="white" d="M-134.0992 52.0128 L-127.0058 45.4294 L-118.4778 50.0042 L-125.5711 56.5876 Z" stroke="none"/>
<path fill="none" stroke-width="1" d="M-134.0992 52.0128 L-127.0058 45.4294 L-118.4778 50.0042 L-125.5711 56.5876 Z"/>
</g>
<g/>
</g>
<g id="y.edge.32">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-224.4672 16.8022 L-359.0304 -86.1953"/>
<path d="M-368.8572 -93.7169 L-362.2398 -80.1515 L-354.0344 -90.8716 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.35">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(184,184,184)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(184,184,184)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-834.9279 -236.2315 L-841.8534 -233.813 L-856.6954 -228.5778 L-871.5148 -223.2465 L-886.3002 -217.7709 L-901.0403 -212.1029 L-915.7237 -206.1944 L-930.3391 -199.9973 L-944.8752 -193.4636 L-959.3207 -186.5451 L-973.6642 -179.1937 L-987.8944 -171.3614 L-1002 -163 L-1015.8987 -154.091 L-1029.2251 -144.7343 L-1041.5427 -135.0591 L-1052.4152 -125.1949 L-1061.4061 -115.2711 L-1068.079 -105.4169 L-1071.9974 -95.7617 L-1072.7251 -86.4351 L-1069.8257 -77.5662 L-1062.8625 -69.2844 L-1051.3995 -61.7193 L-1035 -55 L-1013.4219 -49.221 L-987.2003 -44.3369 L-957.0641 -40.267 L-923.7427 -36.9309 L-887.9651 -34.2481 L-850.4605 -32.1382 L-811.9581 -30.5205 L-773.1871 -29.3147 L-734.8766 -28.4403 L-697.7559 -27.8167 L-662.5539 -27.3634 L-630 -27 L-600.6639 -26.6516 L-574.4783 -26.2655 L-551.2163 -25.7949 L-530.6511 -25.1926 L-512.5559 -24.4118 L-496.7039 -23.4055 L-482.8685 -22.1266 L-470.8226 -20.5283 L-460.3396 -18.5634 L-451.1927 -16.1851 L-443.1551 -13.3462 L-436 -10 L-429.5293 -6.1149 L-423.6596 -1.7215 L-418.3364 3.1339 L-413.5049 8.4051 L-412.8011 9.3085"/>
<path fill="white" d="M-827.4932 -238.8278 L-833.0734 -230.921 L-842.3625 -233.6351 L-836.7823 -241.542 Z" stroke="none"/>
<path fill="none" stroke-width="1" d="M-827.4932 -238.8278 L-833.0734 -230.921 L-842.3625 -233.6351 L-836.7823 -241.542 Z"/>
</g>
<g/>
</g>
<g id="y.edge.30">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(184,184,184)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(184,184,184)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-332.2845 60.9604 L-332.1854 60.9735 L-329.5781 61.125 L-326.237 61.0074 L-323.0098 60.4676 L-319.925 59.4 L-317.011 57.6991 L-314.2963 55.2593 L-311.8094 51.975 L-309.5787 47.7407 L-307.6328 42.4509 L-306 36 L-304.6955 28.3347 L-303.6805 19.6111 L-302.9031 10.0375 L-302.3111 -0.1778 L-301.8524 -10.8264 L-301.475 -21.7 L-301.1267 -32.5903 L-300.7556 -43.2889 L-300.3094 -53.5875 L-299.7361 -63.2778 L-298.9837 -72.1514 L-298 -80 L-296.7456 -86.6671 L-295.2315 -92.2037 L-293.4813 -96.7125 L-291.5185 -100.2963 L-289.3669 -103.0579 L-287.05 -105.1 L-284.5914 -106.5255 L-282.0148 -107.437 L-279.3438 -107.9375 L-276.6019 -108.1296 L-273.8127 -108.1162 L-271.5714 -108.0236"/>
<path fill="white" d="M-340.0992 59.9877 L-331.5897 55.3785 L-324.4698 61.9331 L-332.9793 66.5423 Z" stroke="none"/>
<path fill="none" stroke-width="1" d="M-340.0992 59.9877 L-331.5897 55.3785 L-324.4698 61.9331 L-332.9793 66.5423 Z"/>
</g>
<g/>
</g>
<g id="y.edge.31">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(184,184,184)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(184,184,184)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-439.6507 79.0668 L-439.7501 79.0561 L-442.1432 78.7012 L-444.8578 78.1977 L-447.525 77.575 L-450.1352 76.8092 L-452.679 75.8765 L-455.1469 74.7531 L-457.5293 73.4151 L-459.8169 71.8387 L-462 70 L-464.0782 67.8898 L-466.0864 65.5571 L-468.0688 63.0656 L-470.0691 60.479 L-472.1316 57.8609 L-474.3 55.275 L-476.6184 52.7849 L-479.1309 50.4543 L-481.8813 48.3469 L-484.9136 46.5262 L-488.2719 45.0561 L-492 44 L-496.129 43.4045 L-500.6374 43.2469 L-505.4906 43.4875 L-509.4844 43.9507"/>
<path fill="white" d="M-431.8225 79.9239 L-440.2629 84.6583 L-447.4789 78.2096 L-439.0385 73.4752 Z" stroke="none"/>
<path fill="none" stroke-width="1" d="M-431.8225 79.9239 L-440.2629 84.6583 L-447.4789 78.2096 L-439.0385 73.4752 Z"/>
</g>
<g/>
</g>
<g id="y.edge.33">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-386.4561 9.3254 L-386.4561 -81.3009"/>
<path d="M-386.4561 -93.6759 L-393.2061 -80.1759 L-379.7061 -80.1759 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.41">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(184,184,184)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(184,184,184)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-439.69 44.5801 L-439.7898 44.5869 L-442.1481 44.3122 L-444.805 43.5425 L-447.375 42.2076 L-449.8409 40.1945 L-452.1852 37.3902 L-454.3906 33.6816 L-456.4398 28.9558 L-458.3154 23.0996 L-460 16 L-461.4838 7.5928 L-462.787 -1.991 L-463.9375 -12.5717 L-464.963 -23.9696 L-465.8912 -36.0048 L-466.75 -48.4978 L-467.5671 -61.2686 L-468.3704 -74.1376 L-469.1875 -86.9249 L-470.0463 -99.451 L-470.9745 -111.5359 L-472 -123 L-473.1458 -133.7001 L-474.4167 -143.6396 L-475.8125 -152.8585 L-477.3333 -161.3968 L-478.9792 -169.2945 L-480.75 -176.5915 L-482.6458 -183.3279 L-484.6667 -189.5437 L-486.8125 -195.2787 L-489.0833 -200.5732 L-491.4792 -205.4669 L-494 -210 L-496.6441 -214.2102 L-499.4028 -218.1264 L-502.2656 -221.7754 L-505.2222 -225.1839 L-508.2621 -228.3785 L-511.375 -231.3862 L-514.5504 -234.2334 L-517.7778 -236.9471 L-521.0469 -239.5538 L-524.3472 -242.0804 L-527.6684 -244.5536 L-531 -247"/>
<path fill="white" d="M-431.8289 44.1124 L-439.356 50.1951 L-447.5511 45.0478 L-440.0241 38.965 Z" stroke="none"/>
<path fill="none" stroke-width="1" d="M-431.8289 44.1124 L-439.356 50.1951 L-447.5511 45.0478 L-440.0241 38.965 Z"/>
</g>
<g/>
</g>
<g id="y.edge.2">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-1212.1003 -417.2123 L-1026.0441 -598.5627"/>
<path d="M-1017.1823 -607.2004 L-1031.5612 -602.6111 L-1022.1382 -592.9438 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.3">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-1003.3452 -534.1548 L-1003.3452 -594.834"/>
<path d="M-1003.3452 -607.209 L-1010.0952 -593.709 L-996.5952 -593.709 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.1">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-1003.3452 -634.2275 L-1003.3452 -694.7769"/>
<path d="M-1003.3452 -707.1519 L-1010.0952 -693.6519 L-996.5952 -693.6519 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.0">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-1003.3452 -634.2275 L-635.7037 -711.0378"/>
<path d="M-623.5902 -713.5687 L-638.1854 -717.4151 L-635.4244 -704.2004 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.4">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-778.2009 -538.709 L-612.4052 -698.6127"/>
<path d="M-603.4979 -707.2035 L-617.9008 -702.6903 L-608.5291 -692.9733 Z" stroke="none"/>
</g>
<g/>
</g>
<g id="y.edge.8">
<g stroke-linecap="butt" transform="matrix(0.6977,0,0,0.6977,877.6744,512.7907)" fill="rgb(141,141,141)" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" stroke="rgb(141,141,141)" stroke-width="2" stroke-miterlimit="1.45">
<path fill="none" d="M-394.413 -390.6474 L-575.2411 -696.5381"/>
<path d="M-581.5386 -707.191 L-580.4793 -692.1348 L-568.858 -699.0046 Z" stroke="none"/>
</g>
<g/>
</g>
<g visibility="hidden" id="tooltip.y.node.0" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="278" height="18" y="0" clip-path="url(#clipPath29)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath29)" stroke="none">Widget used for display and analysis of image data.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.1" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="256" height="32" y="0" clip-path="url(#clipPath30)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath30)" stroke="none">The QGraphicsView class provides a widget for</text>
<text fill="black" x="253" xml:space="preserve" y="13" clip-path="url(#clipPath30)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath30)" stroke="none">displaying the contents of a QGraphicsScene.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.2" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="268" height="32" y="0" clip-path="url(#clipPath31)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath31)" stroke="none">The QGraphicsScene class provides a surface for</text>
<text fill="black" x="265" xml:space="preserve" y="13" clip-path="url(#clipPath31)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath31)" stroke="none">managing a large number of 2D graphical items.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.3" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="263" height="32" y="0" clip-path="url(#clipPath32)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath32)" stroke="none">The QGraphicsItem class is the base class for all</text>
<text fill="black" x="260" xml:space="preserve" y="13" clip-path="url(#clipPath32)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath32)" stroke="none">graphical items in a QGraphicsScene.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.4" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="309" height="32" y="0" clip-path="url(#clipPath33)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath33)" stroke="none">The QGraphicsObject class provides a base class for all</text>
<text fill="black" x="299" xml:space="preserve" y="13" clip-path="url(#clipPath33)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath33)" stroke="none">graphics items that require signals, slots and properties.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.5" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="405" height="74" y="0" clip-path="url(#clipPath34)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath34)" stroke="none">Re-implementation of QGraphicsView that removes scrollbars and allows</text>
<text fill="black" x="392" xml:space="preserve" y="13" clip-path="url(#clipPath34)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath34)" stroke="none">unambiguous control of the viewed coordinate range.</text>
<text fill="black" x="290" xml:space="preserve" y="27" clip-path="url(#clipPath34)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="41" clip-path="url(#clipPath34)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="55" clip-path="url(#clipPath34)" stroke="none">Also automatically creates a GraphicsScene and a central QGraphicsWidget</text>
<text fill="black" x="402" xml:space="preserve" y="55" clip-path="url(#clipPath34)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="69" clip-path="url(#clipPath34)" stroke="none">that is automatically scaled to the full view geometry.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.6" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="261" height="32" y="0" clip-path="url(#clipPath35)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath35)" stroke="none">Extension of QGraphicsObject with some useful</text>
<text fill="black" x="258" xml:space="preserve" y="13" clip-path="url(#clipPath35)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath35)" stroke="none">methods (provided by GraphicsItem)</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.7" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="315" height="60" y="0" clip-path="url(#clipPath36)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath36)" stroke="none">Displays a set of x/y points.</text>
<text fill="black" x="152" xml:space="preserve" y="13" clip-path="url(#clipPath36)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath36)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="41" clip-path="url(#clipPath36)" stroke="none">Instances of this class are created automatically as part of</text>
<text fill="black" x="312" xml:space="preserve" y="41" clip-path="url(#clipPath36)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="55" clip-path="url(#clipPath36)" stroke="none">PlotDataItem; these rarely need to be instantiated directly.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.8" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="315" height="60" y="0" clip-path="url(#clipPath36)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath36)" stroke="none">Class representing a single plot curve.</text>
<text fill="black" x="208" xml:space="preserve" y="13" clip-path="url(#clipPath36)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath36)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="41" clip-path="url(#clipPath36)" stroke="none">Instances of this class are created automatically as part of</text>
<text fill="black" x="312" xml:space="preserve" y="41" clip-path="url(#clipPath36)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="55" clip-path="url(#clipPath36)" stroke="none">PlotDataItem; these rarely need to be instantiated directly.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.9" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="201" height="18" y="0" clip-path="url(#clipPath37)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath37)" stroke="none">GraphicsObject displaying an image.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.10" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="339" height="60" y="0" clip-path="url(#clipPath38)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath38)" stroke="none">GraphicsItem for displaying plot curves, scatter plots, or both.</text>
<text fill="black" x="336" xml:space="preserve" y="13" clip-path="url(#clipPath38)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath38)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="41" clip-path="url(#clipPath38)" stroke="none">While it is possible to use PlotCurveItem or ScatterPlotItem</text>
<text fill="black" x="313" xml:space="preserve" y="41" clip-path="url(#clipPath38)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="55" clip-path="url(#clipPath38)" stroke="none">individually, this class provides a unified interface to both.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.11" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="296" height="74" y="0" clip-path="url(#clipPath39)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath39)" stroke="none">Convenience class consisting of a GraphicsView with a</text>
<text fill="black" x="293" xml:space="preserve" y="13" clip-path="url(#clipPath39)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath39)" stroke="none">single GraphicsLayout as its central item.</text>
<text fill="black" x="222" xml:space="preserve" y="27" clip-path="url(#clipPath39)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="41" clip-path="url(#clipPath39)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="55" clip-path="url(#clipPath39)" stroke="none">Most of the methods provided by GraphicsLayout are</text>
<text fill="black" x="287" xml:space="preserve" y="55" clip-path="url(#clipPath39)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="69" clip-path="url(#clipPath39)" stroke="none">also available through GraphicsLayoutWidget.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.12" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="323" height="46" y="0" clip-path="url(#clipPath40)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath40)" stroke="none">Abstract class providing useful methods to GraphicsObject</text>
<text fill="black" x="320" xml:space="preserve" y="13" clip-path="url(#clipPath40)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath40)" stroke="none">and GraphicsWidget. (This is required because we cannot</text>
<text fill="black" x="308" xml:space="preserve" y="27" clip-path="url(#clipPath40)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="41" clip-path="url(#clipPath40)" stroke="none">have multiple inheritance with QObject subclasses.)</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.13" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="197" height="46" y="0" clip-path="url(#clipPath41)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath41)" stroke="none">The QGraphicsLayoutItem class can</text>
<text fill="black" x="194" xml:space="preserve" y="13" clip-path="url(#clipPath41)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath41)" stroke="none">be inherited to allow your custom</text>
<text fill="black" x="182" xml:space="preserve" y="27" clip-path="url(#clipPath41)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="41" clip-path="url(#clipPath41)" stroke="none">items to be managed by layouts.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.14" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="261" height="32" y="0" clip-path="url(#clipPath35)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath35)" stroke="none">The QGraphicsWidget class is the base class for</text>
<text fill="black" x="258" xml:space="preserve" y="13" clip-path="url(#clipPath35)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath35)" stroke="none">all widget items in a QGraphicsScene.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.15" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="202" height="46" y="0" clip-path="url(#clipPath42)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath42)" stroke="none">The QGraphicsLayout class provides</text>
<text fill="black" x="199" xml:space="preserve" y="13" clip-path="url(#clipPath42)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath42)" stroke="none">the base class for all layouts in</text>
<text fill="black" x="167" xml:space="preserve" y="27" clip-path="url(#clipPath42)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="41" clip-path="url(#clipPath42)" stroke="none">Graphics View.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.16" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="225" height="46" y="0" clip-path="url(#clipPath43)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath43)" stroke="none">The QGraphicsGridLayout class provides</text>
<text fill="black" x="222" xml:space="preserve" y="13" clip-path="url(#clipPath43)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath43)" stroke="none">a grid layout for managing widgets in</text>
<text fill="black" x="202" xml:space="preserve" y="27" clip-path="url(#clipPath43)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="41" clip-path="url(#clipPath43)" stroke="none">Graphics View.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.17" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="325" height="60" y="0" clip-path="url(#clipPath44)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath44)" stroke="none">A subclass of GraphicsView with a single PlotItem displayed.</text>
<text fill="black" x="322" xml:space="preserve" y="13" clip-path="url(#clipPath44)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath44)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="41" clip-path="url(#clipPath44)" stroke="none">Most of the methods provided by PlotItem are also available</text>
<text fill="black" x="320" xml:space="preserve" y="41" clip-path="url(#clipPath44)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="55" clip-path="url(#clipPath44)" stroke="none">through PlotWidget.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.18" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="262" height="32" y="0" clip-path="url(#clipPath45)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath45)" stroke="none">Extension of QGraphicsScene that implements a</text>
<text fill="black" x="259" xml:space="preserve" y="13" clip-path="url(#clipPath45)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath45)" stroke="none">complete, parallel mouse event system.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.19" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="336" height="60" y="0" clip-path="url(#clipPath46)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath46)" stroke="none">Extends QGraphicsWidget with several helpful methods and</text>
<text fill="black" x="321" xml:space="preserve" y="13" clip-path="url(#clipPath46)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath46)" stroke="none">workarounds for PyQt bugs.</text>
<text fill="black" x="154" xml:space="preserve" y="27" clip-path="url(#clipPath46)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="41" clip-path="url(#clipPath46)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="55" clip-path="url(#clipPath46)" stroke="none">Most of the extra functionality is inherited from GraphicsItem.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.20" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="368" height="88" y="0" clip-path="url(#clipPath47)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath47)" stroke="none">Box that allows internal scaling/panning of children by mouse drag.</text>
<text fill="black" x="365" xml:space="preserve" y="13" clip-path="url(#clipPath47)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath47)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="41" clip-path="url(#clipPath47)" stroke="none">addItem() will add a graphics item (e.g. a PlotDataItem) to the scene.</text>
<text fill="black" x="362" xml:space="preserve" y="41" clip-path="url(#clipPath47)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="55" clip-path="url(#clipPath47)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="69" clip-path="url(#clipPath47)" stroke="none">This class is usually created automatically as part of a PlotItem or</text>
<text fill="black" x="350" xml:space="preserve" y="69" clip-path="url(#clipPath47)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="83" clip-path="url(#clipPath47)" stroke="none">Canvas or with GraphicsLayout.addViewBox().</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.21" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="201" height="88" y="0" clip-path="url(#clipPath48)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath48)" stroke="none">Used for laying out GraphicsWidgets</text>
<text fill="black" x="198" xml:space="preserve" y="13" clip-path="url(#clipPath48)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath48)" stroke="none">in a grid.</text>
<text fill="black" x="50" xml:space="preserve" y="27" clip-path="url(#clipPath48)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="41" clip-path="url(#clipPath48)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="55" clip-path="url(#clipPath48)" stroke="none">This is usually created automatically</text>
<text fill="black" x="196" xml:space="preserve" y="55" clip-path="url(#clipPath48)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="69" clip-path="url(#clipPath48)" stroke="none">as part of a GraphicsWindow or</text>
<text fill="black" x="170" xml:space="preserve" y="69" clip-path="url(#clipPath48)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="83" clip-path="url(#clipPath48)" stroke="none">GraphicsLayoutWidget.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.22" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="289" height="74" y="0" clip-path="url(#clipPath49)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath49)" stroke="none">GraphicsWidget implementing a standard 2D plotting</text>
<text fill="black" x="286" xml:space="preserve" y="13" clip-path="url(#clipPath49)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath49)" stroke="none">area with axes.</text>
<text fill="black" x="82" xml:space="preserve" y="27" clip-path="url(#clipPath49)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="41" clip-path="url(#clipPath49)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="55" clip-path="url(#clipPath49)" stroke="none">addItem() will call ViewBox.addItem(), which will add</text>
<text fill="black" x="276" xml:space="preserve" y="55" clip-path="url(#clipPath49)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="69" clip-path="url(#clipPath49)" stroke="none">the graphics item to the scene.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.23" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="299" height="32" y="0" clip-path="url(#clipPath50)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath50)" stroke="none">The QPaintDevice class is the base class of objects that</text>
<text fill="black" x="296" xml:space="preserve" y="13" clip-path="url(#clipPath50)" stroke="none"> </text>
<text fill="black" x="3" xml:space="preserve" y="27" clip-path="url(#clipPath50)" stroke="none">can be painted on with QPainter.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.24" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="345" height="18" y="0" clip-path="url(#clipPath51)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath51)" stroke="none">The QWidget class is the base class of all user interface objects.</text>
</g>
</g>
<g visibility="hidden" id="tooltip.y.node.25" pointer-events="none">
<g fill="rgb(255,255,204)" text-rendering="geometricPrecision" font-size="11px" shape-rendering="geometricPrecision" font-family="'Lucida Grande'" stroke="rgb(255,255,204)">
<rect x="0" width="283" height="18" y="0" clip-path="url(#clipPath52)" stroke="none"/>
<text fill="black" x="3" xml:space="preserve" y="13" clip-path="url(#clipPath52)" stroke="none">The QObject class is the base class of all Qt objects.</text>
</g>
</g>
</g>
</svg>
|