aboutsummaryrefslogtreecommitdiff
path: root/doc/images/de1_pwm_schematic.svg
blob: db5d8761dec1a27a5df081b712e085a2a9a914c4 (plain)
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.2" width="295.93mm" height="125.17mm" viewBox="618 5507 29593 12517" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
 <defs>
  <font id="EmbeddedFont_1" horiz-adv-x="2048">
   <font-face font-family="Arial embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
   <glyph unicode="‘" horiz-adv-x="239" d="M 127,952 L 127,1098 C 127,1163 133,1220 146,1269 158,1318 178,1364 207,1409 L 328,1409 C 265,1318 233,1230 233,1147 L 322,1147 322,952 127,952 Z"/>
   <glyph unicode="w" horiz-adv-x="1509" d="M 1174,0 L 965,0 776,765 740,934 C 734,904 725,861 712,805 699,748 631,480 508,0 L 300,0 -3,1082 175,1082 358,347 C 363,331 377,265 401,149 L 418,223 644,1082 837,1082 1026,339 1072,149 1103,288 1308,1082 1484,1082 1174,0 Z"/>
   <glyph unicode="u" horiz-adv-x="874" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
   <glyph unicode="t" horiz-adv-x="531" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
   <glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
   <glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
   <glyph unicode="p" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 488,-20 376,43 319,168 L 314,168 C 317,163 318,106 318,-2 L 318,-425 138,-425 138,861 C 138,972 136,1046 132,1082 L 306,1082 C 307,1079 308,1070 309,1054 310,1037 312,1012 314,978 315,944 316,921 316,908 L 320,908 C 352,975 394,1024 447,1055 500,1086 569,1101 655,1101 788,1101 888,1056 954,967 1020,878 1053,737 1053,546 Z M 864,542 C 864,693 844,800 803,865 762,930 698,962 609,962 538,962 482,947 442,917 401,887 371,840 350,777 329,713 318,630 318,528 318,386 341,281 386,214 431,147 505,113 607,113 696,113 762,146 803,212 844,277 864,387 864,542 Z"/>
   <glyph unicode="o" horiz-adv-x="980" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
   <glyph unicode="n" horiz-adv-x="874" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
   <glyph unicode="m" horiz-adv-x="1457" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
   <glyph unicode="l" horiz-adv-x="187" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
   <glyph unicode="k" horiz-adv-x="901" d="M 816,0 L 450,494 318,385 318,0 138,0 138,1484 318,1484 318,557 793,1082 1004,1082 565,617 1027,0 816,0 Z"/>
   <glyph unicode="i" horiz-adv-x="187" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
   <glyph unicode="h" horiz-adv-x="874" d="M 317,897 C 356,968 402,1020 457,1053 511,1086 580,1102 663,1102 780,1102 867,1073 923,1015 978,956 1006,858 1006,721 L 1006,0 825,0 825,686 C 825,762 818,819 804,856 790,893 767,920 735,937 703,954 659,963 602,963 517,963 450,934 399,875 348,816 322,737 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1057 321,1015 319,972 316,929 315,904 314,897 L 317,897 Z"/>
   <glyph unicode="e" horiz-adv-x="980" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
   <glyph unicode="d" horiz-adv-x="927" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 821,1035 821,1484 1001,1484 1001,223 C 1001,110 1003,36 1007,0 L 835,0 C 833,11 831,35 829,74 826,113 825,146 825,174 L 821,174 Z M 275,542 C 275,391 295,282 335,217 375,152 440,119 530,119 632,119 706,154 752,225 798,296 821,405 821,554 821,697 798,802 752,869 706,936 633,969 532,969 441,969 376,936 336,869 295,802 275,693 275,542 Z"/>
   <glyph unicode="c" horiz-adv-x="901" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,174 752,209 778,262 788,334 L 970,322 C 956,218 912,135 837,73 762,11 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
   <glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
   <glyph unicode="_" horiz-adv-x="1218" d="M -31,-407 L -31,-277 1162,-277 1162,-407 -31,-407 Z"/>
   <glyph unicode="]" horiz-adv-x="424" d="M 16,-425 L 16,-296 249,-296 249,1355 16,1355 16,1484 423,1484 423,-425 16,-425 Z"/>
   <glyph unicode="[" horiz-adv-x="425" d="M 146,-425 L 146,1484 553,1484 553,1355 320,1355 320,-296 553,-296 553,-425 146,-425 Z"/>
   <glyph unicode="Y" horiz-adv-x="1298" d="M 777,584 L 777,0 587,0 587,584 45,1409 255,1409 684,738 1111,1409 1321,1409 777,584 Z"/>
   <glyph unicode="W" horiz-adv-x="1932" d="M 1511,0 L 1283,0 1039,895 C 1023,951 1000,1051 969,1196 952,1119 937,1054 925,1002 913,950 822,616 652,0 L 424,0 9,1409 208,1409 461,514 C 491,402 519,287 544,168 560,241 579,321 600,408 621,495 713,828 877,1409 L 1060,1409 1305,532 C 1342,389 1372,267 1393,168 L 1402,203 C 1420,280 1435,342 1446,391 1457,439 1551,778 1727,1409 L 1926,1409 1511,0 Z"/>
   <glyph unicode="V" horiz-adv-x="1377" d="M 782,0 L 584,0 9,1409 210,1409 600,417 684,168 768,417 1156,1409 1357,1409 782,0 Z"/>
   <glyph unicode="U" horiz-adv-x="1192" d="M 731,-20 C 616,-20 515,1 429,43 343,85 276,146 229,226 182,306 158,401 158,512 L 158,1409 349,1409 349,528 C 349,399 382,302 447,235 512,168 607,135 730,135 857,135 955,170 1026,239 1096,308 1131,408 1131,541 L 1131,1409 1321,1409 1321,530 C 1321,416 1297,318 1249,235 1200,152 1132,89 1044,46 955,2 851,-20 731,-20 Z"/>
   <glyph unicode="S" horiz-adv-x="1192" d="M 1272,389 C 1272,259 1221,158 1120,87 1018,16 875,-20 690,-20 347,-20 148,99 93,338 L 278,375 C 299,290 345,228 414,189 483,149 578,129 697,129 820,129 916,150 983,193 1050,235 1083,297 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 541,675 456,699 399,724 341,749 295,776 262,807 229,837 203,872 186,913 168,954 159,1000 159,1053 159,1174 205,1267 298,1332 390,1397 522,1430 694,1430 854,1430 976,1406 1061,1357 1146,1308 1205,1224 1239,1106 L 1051,1073 C 1030,1148 991,1202 933,1236 875,1269 795,1286 692,1286 579,1286 493,1267 434,1230 375,1193 345,1137 345,1063 345,1020 357,984 380,956 403,927 436,903 479,884 522,864 609,840 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
   <glyph unicode="R" horiz-adv-x="1244" d="M 1164,0 L 798,585 359,585 359,0 168,0 168,1409 831,1409 C 990,1409 1112,1374 1199,1303 1285,1232 1328,1133 1328,1006 1328,901 1298,813 1237,742 1176,671 1091,626 984,607 L 1384,0 1164,0 Z M 1136,1004 C 1136,1086 1108,1149 1053,1192 997,1235 917,1256 812,1256 L 359,1256 359,736 820,736 C 921,736 999,760 1054,807 1109,854 1136,919 1136,1004 Z"/>
   <glyph unicode="P" horiz-adv-x="1112" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
   <glyph unicode="O" horiz-adv-x="1430" d="M 1495,711 C 1495,564 1467,435 1411,324 1354,213 1273,128 1168,69 1063,10 938,-20 795,-20 650,-20 526,9 421,68 316,127 235,212 180,323 125,434 97,563 97,711 97,936 159,1113 282,1240 405,1367 577,1430 797,1430 940,1430 1065,1402 1170,1345 1275,1288 1356,1205 1412,1096 1467,987 1495,859 1495,711 Z M 1300,711 C 1300,886 1256,1024 1169,1124 1081,1224 957,1274 797,1274 636,1274 511,1225 423,1126 335,1027 291,889 291,711 291,534 336,394 425,291 514,187 637,135 795,135 958,135 1083,185 1170,286 1257,386 1300,528 1300,711 Z"/>
   <glyph unicode="N" horiz-adv-x="1165" d="M 1082,0 L 328,1200 333,1103 338,936 338,0 168,0 168,1409 390,1409 1152,201 C 1144,332 1140,426 1140,485 L 1140,1409 1312,1409 1312,0 1082,0 Z"/>
   <glyph unicode="M" horiz-adv-x="1377" d="M 1366,0 L 1366,940 C 1366,1044 1369,1144 1375,1240 1342,1121 1313,1027 1287,960 L 923,0 789,0 420,960 364,1130 331,1240 334,1129 338,940 338,0 168,0 168,1409 419,1409 794,432 C 807,393 820,351 833,306 845,261 853,228 857,208 862,235 874,275 891,330 908,384 919,418 925,432 L 1293,1409 1538,1409 1538,0 1366,0 Z"/>
   <glyph unicode="L" horiz-adv-x="927" d="M 168,0 L 168,1409 359,1409 359,156 1071,156 1071,0 168,0 Z"/>
   <glyph unicode="K" horiz-adv-x="1191" d="M 1106,0 L 543,680 359,540 359,0 168,0 168,1409 359,1409 359,703 1038,1409 1263,1409 663,797 1343,0 1106,0 Z"/>
   <glyph unicode="H" horiz-adv-x="1165" d="M 1121,0 L 1121,653 359,653 359,0 168,0 168,1409 359,1409 359,813 1121,813 1121,1409 1312,1409 1312,0 1121,0 Z"/>
   <glyph unicode="G" horiz-adv-x="1377" d="M 103,711 C 103,940 164,1117 287,1242 410,1367 582,1430 804,1430 960,1430 1087,1404 1184,1351 1281,1298 1356,1214 1409,1098 L 1227,1044 C 1187,1124 1132,1182 1062,1219 991,1256 904,1274 799,1274 636,1274 512,1225 426,1127 340,1028 297,890 297,711 297,533 343,393 434,290 525,187 652,135 813,135 905,135 991,149 1071,177 1150,205 1215,243 1264,291 L 1264,545 843,545 843,705 1440,705 1440,219 C 1365,143 1274,84 1166,43 1057,1 940,-20 813,-20 666,-20 539,9 432,68 325,127 244,211 188,322 131,432 103,562 103,711 Z"/>
   <glyph unicode="E" horiz-adv-x="1138" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
   <glyph unicode="D" horiz-adv-x="1218" d="M 1381,719 C 1381,574 1353,447 1296,338 1239,229 1159,145 1055,87 951,29 831,0 695,0 L 168,0 168,1409 634,1409 C 873,1409 1057,1349 1187,1230 1316,1110 1381,940 1381,719 Z M 1189,719 C 1189,894 1141,1027 1046,1119 950,1210 811,1256 630,1256 L 359,1256 359,153 673,153 C 776,153 867,176 946,221 1024,266 1084,332 1126,417 1168,502 1189,603 1189,719 Z"/>
   <glyph unicode="C" horiz-adv-x="1324" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
   <glyph unicode="8" horiz-adv-x="980" d="M 1050,393 C 1050,263 1009,162 926,89 843,16 725,-20 570,-20 419,-20 302,16 217,87 132,158 89,260 89,391 89,483 115,560 168,623 221,686 288,724 370,737 L 370,741 C 293,759 233,798 189,858 144,918 122,988 122,1069 122,1176 162,1263 243,1330 323,1397 431,1430 566,1430 705,1430 814,1397 895,1332 975,1267 1015,1178 1015,1067 1015,986 993,916 948,856 903,796 842,758 765,743 L 765,739 C 855,724 925,686 975,625 1025,563 1050,486 1050,393 Z M 828,1057 C 828,1216 741,1296 566,1296 481,1296 417,1276 373,1236 328,1196 306,1136 306,1057 306,976 329,915 375,873 420,830 485,809 568,809 653,809 717,829 762,868 806,907 828,970 828,1057 Z M 863,410 C 863,497 837,563 785,608 733,652 660,674 566,674 475,674 403,650 352,603 301,555 275,489 275,406 275,212 374,115 572,115 670,115 743,139 791,186 839,233 863,307 863,410 Z"/>
   <glyph unicode="7" horiz-adv-x="954" d="M 1036,1263 C 892,1043 790,871 731,746 672,621 627,498 598,377 568,256 553,130 553,0 L 365,0 C 365,180 403,370 480,569 556,768 683,997 862,1256 L 105,1256 105,1409 1036,1409 1036,1263 Z"/>
   <glyph unicode="5" horiz-adv-x="980" d="M 1053,459 C 1053,310 1009,193 921,108 832,23 710,-20 553,-20 422,-20 316,9 235,66 154,123 103,206 82,315 L 264,336 C 302,197 400,127 557,127 654,127 729,156 784,215 839,273 866,353 866,455 866,544 839,615 784,670 729,725 654,752 561,752 512,752 467,744 425,729 383,714 341,688 299,651 L 123,651 170,1409 971,1409 971,1256 334,1256 307,809 C 385,869 482,899 598,899 737,899 847,858 930,777 1012,696 1053,590 1053,459 Z"/>
   <glyph unicode="2" horiz-adv-x="954" d="M 103,0 L 103,127 C 137,205 179,274 228,334 277,393 328,447 382,496 436,544 490,589 543,630 596,671 643,713 686,754 729,795 763,839 790,884 816,929 829,981 829,1038 829,1115 806,1175 761,1218 716,1261 653,1282 572,1282 495,1282 432,1261 383,1220 333,1178 304,1119 295,1044 L 111,1061 C 124,1174 172,1263 255,1330 337,1397 443,1430 572,1430 714,1430 823,1397 900,1330 976,1263 1014,1167 1014,1044 1014,989 1002,935 977,881 952,827 914,773 865,719 816,665 721,581 582,468 505,405 444,349 399,299 354,248 321,200 301,153 L 1036,153 1036,0 103,0 Z"/>
   <glyph unicode="1" horiz-adv-x="927" d="M 156,0 L 156,153 515,153 515,1237 197,1010 197,1180 530,1409 696,1409 696,153 1039,153 1039,0 156,0 Z"/>
   <glyph unicode="0" horiz-adv-x="980" d="M 1059,705 C 1059,470 1018,290 935,166 852,42 729,-20 567,-20 405,-20 283,42 202,165 121,288 80,468 80,705 80,947 120,1128 199,1249 278,1370 402,1430 573,1430 739,1430 862,1369 941,1247 1020,1125 1059,944 1059,705 Z M 876,705 C 876,908 853,1056 806,1147 759,1238 681,1284 573,1284 462,1284 383,1239 335,1149 286,1059 262,911 262,705 262,505 287,359 336,266 385,173 462,127 569,127 675,127 753,174 802,269 851,364 876,509 876,705 Z"/>
   <glyph unicode="." horiz-adv-x="213" d="M 187,0 L 187,219 382,219 382,0 187,0 Z"/>
   <glyph unicode=" " horiz-adv-x="556"/>
  </font>
 </defs>
 <defs>
  <font id="EmbeddedFont_2" horiz-adv-x="2048">
   <font-face font-family="Arial embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
   <glyph unicode="w" horiz-adv-x="1641" d="M 1313,0 L 1016,0 844,660 C 836,690 820,764 797,882 L 745,658 571,0 274,0 -6,1082 258,1082 436,255 450,329 475,446 645,1082 946,1082 1112,446 C 1121,411 1135,348 1153,255 L 1181,387 1337,1082 1597,1082 1313,0 Z"/>
   <glyph unicode="t" horiz-adv-x="662" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
   <glyph unicode="p" horiz-adv-x="1033" d="M 1167,546 C 1167,365 1131,226 1059,128 986,29 884,-20 752,-20 676,-20 610,-3 554,30 497,63 454,110 424,172 L 418,172 C 422,152 424,91 424,-10 L 424,-425 143,-425 143,833 C 143,935 140,1018 135,1082 L 408,1082 C 411,1070 414,1046 417,1011 419,976 420,941 420,906 L 424,906 C 487,1039 603,1105 770,1105 896,1105 994,1057 1063,960 1132,863 1167,725 1167,546 Z M 874,546 C 874,789 800,910 651,910 576,910 519,877 480,812 440,747 420,655 420,538 420,421 440,331 480,268 519,204 576,172 649,172 799,172 874,297 874,546 Z"/>
   <glyph unicode="o" horiz-adv-x="1113" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
   <glyph unicode="n" horiz-adv-x="1007" d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"/>
   <glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,797 725,892 616,892 559,892 513,863 478,805 442,747 424,672 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 900,1103 1001,1024 1036,867 L 1042,867 C 1079,951 1123,1011 1174,1048 1225,1085 1291,1103 1370,1103 1475,1103 1556,1067 1611,996 1666,924 1694,821 1694,687 L 1694,0 1415,0 1415,607 C 1415,797 1360,892 1251,892 1196,892 1152,866 1117,813 1082,760 1062,686 1059,593 L 1059,0 780,0 Z"/>
   <glyph unicode="d" horiz-adv-x="1033" d="M 844,0 C 841,10 838,35 835,76 831,116 829,149 829,176 L 825,176 C 764,45 649,-20 479,-20 353,-20 256,29 187,128 118,226 84,363 84,540 84,719 120,858 193,956 265,1053 367,1102 500,1102 577,1102 643,1086 699,1054 754,1022 797,974 827,911 L 829,911 827,1089 827,1484 1108,1484 1108,236 C 1108,169 1111,91 1116,0 L 844,0 Z M 831,547 C 831,664 812,754 773,817 734,880 676,911 600,911 525,911 469,881 432,820 395,759 377,665 377,540 377,295 451,172 598,172 672,172 729,205 770,270 811,335 831,427 831,547 Z"/>
   <glyph unicode="c" horiz-adv-x="1007" d="M 594,-20 C 430,-20 303,29 214,127 125,224 80,360 80,535 80,714 125,853 215,953 305,1052 433,1102 598,1102 725,1102 831,1070 914,1006 997,942 1050,854 1071,741 L 788,727 C 780,782 760,827 728,860 696,893 651,909 592,909 447,909 375,788 375,546 375,297 449,172 596,172 649,172 694,189 730,223 766,256 788,306 797,373 L 1079,360 C 1069,286 1043,220 1000,162 957,104 900,59 830,28 760,-4 681,-20 594,-20 Z"/>
  </font>
 </defs>
 <defs class="EmbeddedBulletChars">
  <g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
  </g>
  <g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
  </g>
  <g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
  </g>
  <g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
  </g>
  <g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
  </g>
  <g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
  </g>
  <g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
  </g>
  <g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
  </g>
  <g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
  </g>
  <g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
  </g>
 </defs>
 <g class="Page">
  <g class="com.sun.star.drawing.TextShape">
   <g id="id3">
    <rect class="BoundingBox" stroke="none" fill="none" x="9993" y="9650" width="3008" height="726"/>
    <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="10243" y="10160"><tspan fill="rgb(0,0,0)" stroke="none">pwm_width_i</tspan></tspan></tspan></text>
   </g>
  </g>
  <g class="Group">
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id4">
     <rect class="BoundingBox" stroke="none" fill="none" x="1000" y="15500" width="5001" height="1001"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id5">
     <rect class="BoundingBox" stroke="none" fill="none" x="985" y="15485" width="4031" height="1031"/>
     <path fill="rgb(255,255,255)" stroke="none" d="M 3000,16500 L 1000,16500 1000,15500 5000,15500 5000,16500 3000,16500 Z"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="30" stroke-linejoin="round" d="M 3000,16500 L 1000,16500 1000,15500 5000,15500 5000,16500 3000,16500 Z"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="2562" y="16148"><tspan fill="rgb(0,0,0)" stroke="none">CLOCK_50</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id6">
     <rect class="BoundingBox" stroke="none" fill="none" x="4995" y="15995" width="1011" height="11"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="10" stroke-linejoin="round" d="M 5000,16000 L 6000,16000"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id7">
     <rect class="BoundingBox" stroke="none" fill="none" x="1299" y="16099" width="203" height="3"/>
     <path fill="none" stroke="rgb(0,0,0)" d="M 1300,16100 L 1500,16100"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id8">
     <rect class="BoundingBox" stroke="none" fill="none" x="1499" y="15799" width="3" height="303"/>
     <path fill="none" stroke="rgb(0,0,0)" d="M 1500,15800 L 1500,16100"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id9">
     <rect class="BoundingBox" stroke="none" fill="none" x="1499" y="15799" width="203" height="3"/>
     <path fill="none" stroke="rgb(0,0,0)" d="M 1700,15800 L 1500,15800"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id10">
     <rect class="BoundingBox" stroke="none" fill="none" x="1699" y="15799" width="3" height="303"/>
     <path fill="none" stroke="rgb(0,0,0)" d="M 1700,16100 L 1700,15800"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id11">
     <rect class="BoundingBox" stroke="none" fill="none" x="1699" y="16099" width="203" height="3"/>
     <path fill="none" stroke="rgb(0,0,0)" d="M 1900,16100 L 1700,16100"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id12">
     <rect class="BoundingBox" stroke="none" fill="none" x="1899" y="15799" width="3" height="303"/>
     <path fill="none" stroke="rgb(0,0,0)" d="M 1900,15800 L 1900,16100"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id13">
     <rect class="BoundingBox" stroke="none" fill="none" x="1899" y="15799" width="203" height="3"/>
     <path fill="none" stroke="rgb(0,0,0)" d="M 2100,15800 L 1900,15800"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id14">
     <rect class="BoundingBox" stroke="none" fill="none" x="2099" y="15799" width="3" height="303"/>
     <path fill="none" stroke="rgb(0,0,0)" d="M 2100,16100 L 2100,15800"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id15">
     <rect class="BoundingBox" stroke="none" fill="none" x="2099" y="16099" width="203" height="3"/>
     <path fill="none" stroke="rgb(0,0,0)" d="M 2300,16100 L 2100,16100"/>
    </g>
   </g>
  </g>
  <g class="com.sun.star.drawing.TextShape">
   <g id="id16">
    <rect class="BoundingBox" stroke="none" fill="none" x="5995" y="17150" width="1568" height="731"/>
    <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="6245" y="17660"><tspan fill="rgb(0,0,0)" stroke="none">rst_ni</tspan></tspan></tspan></text>
   </g>
  </g>
  <g class="Group">
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id17">
     <rect class="BoundingBox" stroke="none" fill="none" x="2402" y="17008" width="3596" height="1001"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id18">
     <rect class="BoundingBox" stroke="none" fill="none" x="2387" y="16993" width="2626" height="1031"/>
     <path fill="rgb(255,255,255)" stroke="none" d="M 3700,18008 L 2402,18008 2402,17008 4997,17008 4997,18008 3700,18008 Z"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="30" stroke-linejoin="round" d="M 3700,18008 L 2402,18008 2402,17008 4997,17008 4997,18008 3700,18008 Z"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="3643" y="17656"><tspan fill="rgb(0,0,0)" stroke="none">KEY0</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="Group">
    <g class="com.sun.star.drawing.CustomShape">
     <g id="id19">
      <rect class="BoundingBox" stroke="none" fill="none" x="2503" y="17008" width="1001" height="1001"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.CustomShape">
     <g id="id20">
      <rect class="BoundingBox" stroke="none" fill="none" x="2652" y="17457" width="104" height="104"/>
      <path fill="rgb(0,0,0)" stroke="none" d="M 2754,17509 C 2754,17517 2752,17526 2747,17534 2743,17541 2736,17548 2729,17552 2721,17557 2712,17559 2704,17559 2695,17559 2686,17557 2678,17552 2671,17548 2664,17541 2660,17534 2655,17526 2653,17517 2653,17509 2653,17500 2655,17491 2660,17483 2664,17476 2671,17469 2678,17465 2686,17460 2695,17458 2704,17458 2712,17458 2721,17460 2729,17465 2736,17469 2743,17476 2747,17483 2752,17491 2754,17500 2754,17509 L 2754,17509 Z"/>
      <path fill="none" stroke="rgb(0,0,0)" d="M 2754,17509 C 2754,17517 2752,17526 2747,17534 2743,17541 2736,17548 2729,17552 2721,17557 2712,17559 2704,17559 2695,17559 2686,17557 2678,17552 2671,17548 2664,17541 2660,17534 2655,17526 2653,17517 2653,17509 2653,17500 2655,17491 2660,17483 2664,17476 2671,17469 2678,17465 2686,17460 2695,17458 2704,17458 2712,17458 2721,17460 2729,17465 2736,17469 2743,17476 2747,17483 2752,17491 2754,17500 2754,17509 Z"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.LineShape">
     <g id="id21">
      <rect class="BoundingBox" stroke="none" fill="none" x="2702" y="17207" width="503" height="303"/>
      <path fill="none" stroke="rgb(0,0,0)" d="M 2703,17508 L 3203,17208"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.LineShape">
     <g id="id22">
      <rect class="BoundingBox" stroke="none" fill="none" x="3102" y="17507" width="203" height="3"/>
      <path fill="none" stroke="rgb(0,0,0)" d="M 3103,17508 L 3303,17508"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.LineShape">
     <g id="id23">
      <rect class="BoundingBox" stroke="none" fill="none" x="2502" y="17507" width="203" height="3"/>
      <path fill="none" stroke="rgb(0,0,0)" d="M 2503,17508 L 2703,17508"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.LineShape">
     <g id="id24">
      <rect class="BoundingBox" stroke="none" fill="none" x="3302" y="17507" width="203" height="3"/>
      <path fill="none" stroke="rgb(0,0,0)" d="M 3503,17508 L 3303,17508"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.CustomShape">
     <g id="id25">
      <rect class="BoundingBox" stroke="none" fill="none" x="3253" y="17458" width="104" height="104"/>
      <path fill="rgb(255,255,255)" stroke="none" d="M 3355,17510 C 3355,17518 3353,17527 3348,17535 3344,17542 3337,17549 3330,17553 3322,17558 3313,17560 3305,17560 3296,17560 3287,17558 3279,17553 3272,17549 3265,17542 3261,17535 3256,17527 3254,17518 3254,17510 3254,17501 3256,17492 3261,17484 3265,17477 3272,17470 3279,17466 3287,17461 3296,17459 3305,17459 3313,17459 3322,17461 3330,17466 3337,17470 3344,17477 3348,17484 3353,17492 3355,17501 3355,17510 L 3355,17510 Z"/>
      <path fill="none" stroke="rgb(0,0,0)" d="M 3355,17510 C 3355,17518 3353,17527 3348,17535 3344,17542 3337,17549 3330,17553 3322,17558 3313,17560 3305,17560 3296,17560 3287,17558 3279,17553 3272,17549 3265,17542 3261,17535 3256,17527 3254,17518 3254,17510 3254,17501 3256,17492 3261,17484 3265,17477 3272,17470 3279,17466 3287,17461 3296,17459 3305,17459 3313,17459 3322,17461 3330,17466 3337,17470 3344,17477 3348,17484 3353,17492 3355,17501 3355,17510 Z"/>
     </g>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id26">
     <rect class="BoundingBox" stroke="none" fill="none" x="4993" y="17503" width="1011" height="11"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="10" stroke-linejoin="round" d="M 4998,17508 L 5998,17508"/>
    </g>
   </g>
  </g>
  <g class="com.sun.star.drawing.TextShape">
   <g id="id27">
    <rect class="BoundingBox" stroke="none" fill="none" x="11612" y="10650" width="1350" height="731"/>
    <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="11862" y="11160"><tspan fill="rgb(0,0,0)" stroke="none">clk_i</tspan></tspan></tspan></text>
   </g>
  </g>
  <g class="com.sun.star.drawing.TextShape">
   <g id="id28">
    <rect class="BoundingBox" stroke="none" fill="none" x="10300" y="8250" width="2694" height="726"/>
    <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="10572" y="8760"><tspan fill="rgb(0,0,0)" stroke="none">en_pwm_pi</tspan></tspan></tspan></text>
   </g>
  </g>
  <g class="com.sun.star.drawing.TextShape">
   <g id="id29">
    <rect class="BoundingBox" stroke="none" fill="none" x="16695" y="13550" width="1568" height="731"/>
    <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="16945" y="14060"><tspan fill="rgb(0,0,0)" stroke="none">rst_ni</tspan></tspan></tspan></text>
   </g>
  </g>
  <g class="com.sun.star.drawing.TextShape">
   <g id="id30">
    <rect class="BoundingBox" stroke="none" fill="none" x="22008" y="8259" width="1893" height="726"/>
    <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="22258" y="8769"><tspan fill="rgb(0,0,0)" stroke="none">pwm_o</tspan></tspan></tspan></text>
   </g>
  </g>
  <g class="Group">
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id31">
     <rect class="BoundingBox" stroke="none" fill="none" x="14000" y="6500" width="7001" height="1001"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="17111" y="7121"><tspan fill="rgb(0,0,0)" stroke="none">MUV</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id32">
     <rect class="BoundingBox" stroke="none" fill="none" x="13975" y="7475" width="7051" height="5051"/>
     <path fill="rgb(255,255,255)" stroke="none" d="M 17500,12500 L 14000,12500 14000,7500 21000,7500 21000,12500 17500,12500 Z"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="50" stroke-linejoin="round" d="M 17500,12500 L 14000,12500 14000,7500 21000,7500 21000,12500 17500,12500 Z"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="700"><tspan class="TextPosition" x="17018" y="8035"><tspan fill="rgb(0,0,0)" stroke="none">pwm</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id33">
     <rect class="BoundingBox" stroke="none" fill="none" x="14000" y="8500" width="3501" height="1001"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="14250" y="9148"><tspan fill="rgb(0,0,0)" stroke="none">en_pi</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id34">
     <rect class="BoundingBox" stroke="none" fill="none" x="12987" y="8987" width="1027" height="27"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 13000,9000 L 14000,9000"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id35">
     <rect class="BoundingBox" stroke="none" fill="none" x="14000" y="9500" width="3501" height="1001"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="14250" y="10148"><tspan fill="rgb(0,0,0)" stroke="none">pwm_width_i</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id36">
     <rect class="BoundingBox" stroke="none" fill="none" x="12987" y="9987" width="1027" height="27"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 13000,10000 L 14000,10000"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id37">
     <rect class="BoundingBox" stroke="none" fill="none" x="13237" y="9737" width="527" height="527"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 13250,10250 L 13750,9750"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id38">
     <rect class="BoundingBox" stroke="none" fill="none" x="13000" y="9100" width="1001" height="1001"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="13403" y="9721"><tspan fill="rgb(0,0,0)" stroke="none">8</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id39">
     <rect class="BoundingBox" stroke="none" fill="none" x="17500" y="8500" width="3501" height="1001"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="19383" y="9148"><tspan fill="rgb(0,0,0)" stroke="none">pwm_o</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id40">
     <rect class="BoundingBox" stroke="none" fill="none" x="20987" y="8987" width="1027" height="27"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 21000,9000 L 22000,9000"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id41">
     <rect class="BoundingBox" stroke="none" fill="none" x="14000" y="11500" width="7001" height="1001"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="16982" y="12148"><tspan fill="rgb(0,0,0)" stroke="none">rst_ni</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id42">
     <rect class="BoundingBox" stroke="none" fill="none" x="17487" y="12487" width="27" height="1027"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 17500,12500 L 17500,13500"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id43">
     <rect class="BoundingBox" stroke="none" fill="none" x="17362" y="12537" width="278" height="278"/>
     <path fill="rgb(255,255,255)" stroke="none" d="M 17626,12676 C 17626,12698 17620,12719 17609,12738 17598,12757 17582,12773 17563,12784 17544,12795 17523,12801 17500,12801 17478,12801 17457,12795 17438,12784 17419,12773 17403,12757 17392,12738 17381,12719 17375,12698 17375,12676 17375,12653 17381,12632 17392,12613 17403,12594 17419,12578 17438,12567 17457,12556 17478,12550 17500,12550 17523,12550 17544,12556 17563,12567 17582,12578 17598,12594 17609,12613 17620,12632 17626,12653 17626,12676 L 17626,12676 Z"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 17626,12676 C 17626,12698 17620,12719 17609,12738 17598,12757 17582,12773 17563,12784 17544,12795 17523,12801 17500,12801 17478,12801 17457,12795 17438,12784 17419,12773 17403,12757 17392,12738 17381,12719 17375,12698 17375,12676 17375,12653 17381,12632 17392,12613 17403,12594 17419,12578 17438,12567 17457,12556 17478,12550 17500,12550 17523,12550 17544,12556 17563,12567 17582,12578 17598,12594 17609,12613 17620,12632 17626,12653 17626,12676 Z"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id44">
     <rect class="BoundingBox" stroke="none" fill="none" x="14000" y="10500" width="3501" height="1001"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="14250" y="11148"><tspan fill="rgb(0,0,0)" stroke="none">clk_i</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id45">
     <rect class="BoundingBox" stroke="none" fill="none" x="12987" y="10987" width="1027" height="27"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 13000,11000 L 14000,11000"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id46">
     <rect class="BoundingBox" stroke="none" fill="none" x="13987" y="10987" width="227" height="177"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 14000,11150 L 14200,11000"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id47">
     <rect class="BoundingBox" stroke="none" fill="none" x="13987" y="10837" width="227" height="177"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 14000,10850 L 14200,11000"/>
    </g>
   </g>
  </g>
  <g class="com.sun.star.drawing.TextShape">
   <g id="id48">
    <rect class="BoundingBox" stroke="none" fill="none" x="6000" y="15600" width="1350" height="731"/>
    <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="6250" y="16110"><tspan fill="rgb(0,0,0)" stroke="none">clk_i</tspan></tspan></tspan></text>
   </g>
  </g>
  <g class="Group">
   <g class="com.sun.star.drawing.LineShape">
    <g id="id49">
     <rect class="BoundingBox" stroke="none" fill="none" x="25194" y="8999" width="1003" height="3"/>
     <path fill="none" stroke="rgb(0,0,0)" d="M 25195,9000 L 26195,9000"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id50">
     <rect class="BoundingBox" stroke="none" fill="none" x="25195" y="8500" width="5001" height="1001"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id51">
     <rect class="BoundingBox" stroke="none" fill="none" x="26175" y="8485" width="4031" height="1031"/>
     <path fill="rgb(255,255,255)" stroke="none" d="M 28190,9500 L 26190,9500 26190,8500 30190,8500 30190,9500 28190,9500 Z"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="30" stroke-linejoin="round" d="M 28190,9500 L 26190,9500 26190,8500 30190,8500 30190,9500 28190,9500 Z"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="28320" y="9148"><tspan fill="rgb(0,0,0)" stroke="none">LEDR[0]</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id52">
     <rect class="BoundingBox" stroke="none" fill="none" x="26380" y="8985" width="1631" height="31"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 26395,9000 L 27995,9000"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id53">
     <rect class="BoundingBox" stroke="none" fill="none" x="26980" y="8785" width="31" height="431"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 26995,8800 L 26995,9200"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id54">
     <rect class="BoundingBox" stroke="none" fill="none" x="26980" y="8985" width="331" height="231"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 27295,9000 L 26995,9200"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id55">
     <rect class="BoundingBox" stroke="none" fill="none" x="26980" y="8785" width="331" height="231"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 26995,8800 L 27295,9000"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id56">
     <rect class="BoundingBox" stroke="none" fill="none" x="27280" y="8785" width="31" height="431"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 27295,8800 L 27295,9200"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id57">
     <rect class="BoundingBox" stroke="none" fill="none" x="27380" y="8700" width="216" height="216"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 27395,8900 L 27494,8801"/>
     <path fill="rgb(255,0,0)" stroke="none" d="M 27595,8700 L 27454,8771 27524,8841 27595,8700 Z"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id58">
     <rect class="BoundingBox" stroke="none" fill="none" x="27573" y="8708" width="216" height="216"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 27588,8908 L 27687,8809"/>
     <path fill="rgb(255,0,0)" stroke="none" d="M 27788,8708 L 27647,8779 27717,8849 27788,8708 Z"/>
    </g>
   </g>
  </g>
  <g class="Group">
   <g class="com.sun.star.drawing.LineShape">
    <g id="id59">
     <rect class="BoundingBox" stroke="none" fill="none" x="25199" y="9999" width="1003" height="3"/>
     <path fill="none" stroke="rgb(0,0,0)" d="M 25200,10000 L 26200,10000"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id60">
     <rect class="BoundingBox" stroke="none" fill="none" x="25200" y="9500" width="5001" height="1001"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id61">
     <rect class="BoundingBox" stroke="none" fill="none" x="26180" y="9485" width="4031" height="1031"/>
     <path fill="rgb(255,255,255)" stroke="none" d="M 28195,10500 L 26195,10500 26195,9500 30195,9500 30195,10500 28195,10500 Z"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="30" stroke-linejoin="round" d="M 28195,10500 L 26195,10500 26195,9500 30195,9500 30195,10500 28195,10500 Z"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="28325" y="10148"><tspan fill="rgb(0,0,0)" stroke="none">LEDR[1]</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id62">
     <rect class="BoundingBox" stroke="none" fill="none" x="26385" y="9985" width="1631" height="31"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 26400,10000 L 28000,10000"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id63">
     <rect class="BoundingBox" stroke="none" fill="none" x="26985" y="9785" width="31" height="431"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 27000,9800 L 27000,10200"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id64">
     <rect class="BoundingBox" stroke="none" fill="none" x="26985" y="9985" width="331" height="231"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 27300,10000 L 27000,10200"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id65">
     <rect class="BoundingBox" stroke="none" fill="none" x="26985" y="9785" width="331" height="231"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 27000,9800 L 27300,10000"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id66">
     <rect class="BoundingBox" stroke="none" fill="none" x="27285" y="9785" width="31" height="431"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 27300,9800 L 27300,10200"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id67">
     <rect class="BoundingBox" stroke="none" fill="none" x="27385" y="9700" width="216" height="216"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 27400,9900 L 27499,9801"/>
     <path fill="rgb(255,0,0)" stroke="none" d="M 27600,9700 L 27459,9771 27529,9841 27600,9700 Z"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id68">
     <rect class="BoundingBox" stroke="none" fill="none" x="27578" y="9708" width="216" height="216"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 27593,9908 L 27692,9809"/>
     <path fill="rgb(255,0,0)" stroke="none" d="M 27793,9708 L 27652,9779 27722,9849 27793,9708 Z"/>
    </g>
   </g>
  </g>
  <g class="Group">
   <g class="com.sun.star.drawing.LineShape">
    <g id="id69">
     <rect class="BoundingBox" stroke="none" fill="none" x="25184" y="11999" width="1006" height="3"/>
     <path fill="none" stroke="rgb(0,0,0)" d="M 25185,12000 L 26188,12000"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id70">
     <rect class="BoundingBox" stroke="none" fill="none" x="25184" y="11500" width="5016" height="1001"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id71">
     <rect class="BoundingBox" stroke="none" fill="none" x="26168" y="11485" width="4043" height="1031"/>
     <path fill="rgb(255,255,255)" stroke="none" d="M 28189,12500 L 26183,12500 26183,11500 30195,11500 30195,12500 28189,12500 Z"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="30" stroke-linejoin="round" d="M 28189,12500 L 26183,12500 26183,11500 30195,11500 30195,12500 28189,12500 Z"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="28325" y="12148"><tspan fill="rgb(0,0,0)" stroke="none">LEDR[7]</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id72">
     <rect class="BoundingBox" stroke="none" fill="none" x="26374" y="11985" width="1636" height="31"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 26389,12000 L 27994,12000"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id73">
     <rect class="BoundingBox" stroke="none" fill="none" x="26975" y="11785" width="31" height="431"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 26990,11800 L 26990,12200"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id74">
     <rect class="BoundingBox" stroke="none" fill="none" x="26975" y="11985" width="332" height="231"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 27291,12000 L 26990,12200"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id75">
     <rect class="BoundingBox" stroke="none" fill="none" x="26975" y="11785" width="332" height="231"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 26990,11800 L 27291,12000"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id76">
     <rect class="BoundingBox" stroke="none" fill="none" x="27276" y="11785" width="31" height="431"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 27291,11800 L 27291,12200"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id77">
     <rect class="BoundingBox" stroke="none" fill="none" x="27377" y="11700" width="217" height="216"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 27392,11900 L 27491,11801"/>
     <path fill="rgb(255,0,0)" stroke="none" d="M 27593,11700 L 27451,11770 27522,11841 27593,11700 Z"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id78">
     <rect class="BoundingBox" stroke="none" fill="none" x="27570" y="11708" width="217" height="216"/>
     <path fill="none" stroke="rgb(255,0,0)" stroke-width="30" stroke-linejoin="round" d="M 27585,11908 L 27684,11809"/>
     <path fill="rgb(255,0,0)" stroke="none" d="M 27786,11708 L 27644,11778 27715,11849 27786,11708 Z"/>
    </g>
   </g>
  </g>
  <g class="com.sun.star.drawing.LineShape">
   <g id="id79">
    <rect class="BoundingBox" stroke="none" fill="none" x="23984" y="11999" width="1303" height="3"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 25285,12000 L 23985,12000"/>
   </g>
  </g>
  <g class="com.sun.star.drawing.LineShape">
   <g id="id80">
    <rect class="BoundingBox" stroke="none" fill="none" x="23984" y="10299" width="3" height="1703"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 23985,10300 L 23985,10462"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 23985,10543 L 23985,10704"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 23985,10785 L 23985,10947"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 23985,11028 L 23985,11189"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 23985,11270 L 23985,11432"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 23985,11513 L 23985,11674"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 23985,11755 L 23985,11917"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 23985,11998 L 23985,12000"/>
   </g>
  </g>
  <g class="com.sun.star.drawing.ConnectorShape">
   <g id="id81">
    <rect class="BoundingBox" stroke="none" fill="none" x="23984" y="9000" width="1218" height="1002"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 25200,10000 L 23985,10000 23985,9001 24193,9001"/>
   </g>
  </g>
  <g class="com.sun.star.drawing.LineShape">
   <g id="id82">
    <rect class="BoundingBox" stroke="none" fill="none" x="27184" y="10699" width="3" height="603"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 27185,10700 L 27185,10727"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 27185,10862 L 27185,10889"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 27185,11023 L 27185,11050"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 27185,11185 L 27185,11212"/>
   </g>
  </g>
  <g class="com.sun.star.drawing.ConnectorShape">
   <g id="id83">
    <rect class="BoundingBox" stroke="none" fill="none" x="21999" y="8999" width="3198" height="3"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 22000,9000 L 25195,9000"/>
   </g>
  </g>
  <g class="com.sun.star.drawing.TextShape">
   <g id="id84">
    <rect class="BoundingBox" stroke="none" fill="none" x="618" y="8677" width="1350" height="731"/>
    <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="1121" y="9062"><tspan fill="rgb(0,0,0)" stroke="none">clk_i</tspan></tspan></tspan></text>
   </g>
  </g>
  <g class="Group">
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id85">
     <rect class="BoundingBox" stroke="none" fill="none" x="7990" y="5528" width="1521" height="1021"/>
     <path fill="rgb(242,242,242)" stroke="none" d="M 8750,6538 L 8000,6538 8000,5538 9500,5538 9500,6538 8750,6538 Z"/>
     <path fill="none" stroke="rgb(191,191,191)" stroke-width="20" stroke-linejoin="round" d="M 8750,6538 L 8000,6538 8000,5538 9500,5538 9500,6538 8750,6538 Z"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id86">
     <rect class="BoundingBox" stroke="none" fill="none" x="8000" y="5538" width="1501" height="501"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="8250" y="5909"><tspan fill="rgb(0,0,0)" stroke="none">n </tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id87">
     <rect class="BoundingBox" stroke="none" fill="none" x="8000" y="6038" width="1501" height="501"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="8250" y="6409"><tspan fill="rgb(0,0,0)" stroke="none">m  </tspan></tspan></tspan></text>
    </g>
   </g>
  </g>
  <g class="Group">
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id88">
     <rect class="BoundingBox" stroke="none" fill="none" x="3000" y="5507" width="5001" height="1001"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="4776" y="6128"><tspan fill="rgb(0,0,0)" stroke="none">prescaler</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id89">
     <rect class="BoundingBox" stroke="none" fill="none" x="2975" y="6482" width="5051" height="4051"/>
     <path fill="rgb(255,255,255)" stroke="none" d="M 5500,10507 L 3000,10507 3000,6507 8000,6507 8000,10507 5500,10507 Z"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="50" stroke-linejoin="round" d="M 5500,10507 L 3000,10507 3000,6507 8000,6507 8000,10507 5500,10507 Z"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="700"><tspan class="TextPosition" x="4290" y="7042"><tspan fill="rgb(0,0,0)" stroke="none">cntdnmodm</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id90">
     <rect class="BoundingBox" stroke="none" fill="none" x="3000" y="7507" width="2501" height="1001"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="3250" y="8155"><tspan fill="rgb(0,0,0)" stroke="none">en_pi</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id91">
     <rect class="BoundingBox" stroke="none" fill="none" x="1987" y="7994" width="1027" height="27"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 2000,8007 L 3000,8007"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id92">
     <rect class="BoundingBox" stroke="none" fill="none" x="5500" y="7507" width="2501" height="1001"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="6234" y="8155"><tspan fill="rgb(0,0,0)" stroke="none">count_o</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id93">
     <rect class="BoundingBox" stroke="none" fill="none" x="7987" y="7994" width="1027" height="27"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 8000,8007 L 9000,8007"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id94">
     <rect class="BoundingBox" stroke="none" fill="none" x="8237" y="7744" width="527" height="527"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 8250,8257 L 8750,7757"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id95">
     <rect class="BoundingBox" stroke="none" fill="none" x="8000" y="7107" width="1001" height="1001"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="8403" y="7728"><tspan fill="rgb(0,0,0)" stroke="none">n</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id96">
     <rect class="BoundingBox" stroke="none" fill="none" x="5500" y="8507" width="2501" height="1001"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="6946" y="9155"><tspan fill="rgb(0,0,0)" stroke="none">tc_o</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id97">
     <rect class="BoundingBox" stroke="none" fill="none" x="7987" y="8994" width="1027" height="27"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 8000,9007 L 9000,9007"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id98">
     <rect class="BoundingBox" stroke="none" fill="none" x="3000" y="9507" width="5001" height="1001"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="4982" y="10155"><tspan fill="rgb(0,0,0)" stroke="none">rst_ni</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id99">
     <rect class="BoundingBox" stroke="none" fill="none" x="5487" y="10494" width="27" height="1027"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 5500,10507 L 5500,11507"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id100">
     <rect class="BoundingBox" stroke="none" fill="none" x="5362" y="10544" width="278" height="278"/>
     <path fill="rgb(255,255,255)" stroke="none" d="M 5626,10683 C 5626,10705 5620,10726 5609,10745 5598,10764 5582,10780 5563,10791 5544,10802 5523,10808 5501,10808 5478,10808 5457,10802 5438,10791 5419,10780 5403,10764 5392,10745 5381,10726 5375,10705 5375,10683 5375,10660 5381,10639 5392,10620 5403,10601 5419,10585 5438,10574 5457,10563 5478,10557 5501,10557 5523,10557 5544,10563 5563,10574 5582,10585 5598,10601 5609,10620 5620,10639 5626,10660 5626,10683 L 5626,10683 Z"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 5626,10683 C 5626,10705 5620,10726 5609,10745 5598,10764 5582,10780 5563,10791 5544,10802 5523,10808 5501,10808 5478,10808 5457,10802 5438,10791 5419,10780 5403,10764 5392,10745 5381,10726 5375,10705 5375,10683 5375,10660 5381,10639 5392,10620 5403,10601 5419,10585 5438,10574 5457,10563 5478,10557 5501,10557 5523,10557 5544,10563 5563,10574 5582,10585 5598,10601 5609,10620 5620,10639 5626,10660 5626,10683 Z"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id101">
     <rect class="BoundingBox" stroke="none" fill="none" x="3000" y="8507" width="2501" height="1001"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="3250" y="9155"><tspan fill="rgb(0,0,0)" stroke="none">clk_i</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id102">
     <rect class="BoundingBox" stroke="none" fill="none" x="1987" y="8994" width="1027" height="27"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 2000,9007 L 3000,9007"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id103">
     <rect class="BoundingBox" stroke="none" fill="none" x="2987" y="8994" width="227" height="177"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 3000,9157 L 3200,9007"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id104">
     <rect class="BoundingBox" stroke="none" fill="none" x="2987" y="8844" width="227" height="177"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="25" stroke-linejoin="round" d="M 3000,8857 L 3200,9007"/>
    </g>
   </g>
  </g>
  <g class="com.sun.star.drawing.TextShape">
   <g id="id105">
    <rect class="BoundingBox" stroke="none" fill="none" x="619" y="7677" width="1350" height="731"/>
    <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="1546" y="8062"><tspan fill="rgb(0,0,0)" stroke="none">‘</tspan><tspan fill="rgb(0,0,0)" stroke="none">1‘</tspan></tspan></tspan></text>
   </g>
  </g>
  <g class="com.sun.star.drawing.TextShape">
   <g id="id106">
    <rect class="BoundingBox" stroke="none" fill="none" x="9034" y="7649" width="2067" height="759"/>
    <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="9284" y="8159"><tspan fill="rgb(0,0,0)" stroke="none">OPEN</tspan></tspan></tspan></text>
   </g>
  </g>
  <g class="com.sun.star.drawing.ConnectorShape">
   <g id="id107">
    <rect class="BoundingBox" stroke="none" fill="none" x="8999" y="8999" width="4003" height="9"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 9000,9006 L 11000,9006 11000,9000 13000,9000"/>
   </g>
  </g>
  <g class="com.sun.star.drawing.TextShape">
   <g id="id108">
    <rect class="BoundingBox" stroke="none" fill="none" x="4675" y="11622" width="1568" height="731"/>
    <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="4925" y="12132"><tspan fill="rgb(0,0,0)" stroke="none">rst_ni</tspan></tspan></tspan></text>
   </g>
  </g>
  <g class="Group">
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id109">
     <rect class="BoundingBox" stroke="none" fill="none" x="2396" y="13499" width="3598" height="1003"/>
     <path fill="none" stroke="rgb(255,255,255)" d="M 4195,14500 L 2397,14500 2397,13500 5992,13500 5992,14500 4195,14500 Z"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id110">
     <rect class="BoundingBox" stroke="none" fill="none" x="1482" y="13485" width="3526" height="1031"/>
     <path fill="rgb(255,255,255)" stroke="none" d="M 3245,14500 L 1497,14500 1497,13500 4992,13500 4992,14500 3245,14500 Z"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="30" stroke-linejoin="round" d="M 3245,14500 L 1497,14500 1497,13500 4992,13500 4992,14500 3245,14500 Z"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="3096" y="14148"><tspan fill="rgb(0,0,0)" stroke="none">SW[7..0]</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id111">
     <rect class="BoundingBox" stroke="none" fill="none" x="4983" y="13990" width="1021" height="21"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="20" stroke-linejoin="round" d="M 4993,14000 L 5993,14000"/>
    </g>
   </g>
   <g class="Group">
    <g class="com.sun.star.drawing.CustomShape">
     <g id="id112">
      <rect class="BoundingBox" stroke="none" fill="none" x="2746" y="13951" width="104" height="104"/>
      <path fill="rgb(0,0,0)" stroke="none" d="M 2747,14003 C 2747,13994 2749,13985 2754,13977 2758,13970 2765,13963 2772,13959 2780,13954 2789,13952 2798,13952 2806,13952 2815,13954 2823,13959 2830,13963 2837,13970 2841,13977 2846,13985 2848,13994 2848,14003 2848,14011 2846,14020 2841,14028 2837,14035 2830,14042 2823,14046 2815,14051 2806,14053 2798,14053 2789,14053 2780,14051 2772,14046 2765,14042 2758,14035 2754,14028 2749,14020 2747,14011 2747,14003 L 2747,14003 Z"/>
      <path fill="none" stroke="rgb(0,0,0)" d="M 2747,14003 C 2747,13994 2749,13985 2754,13977 2758,13970 2765,13963 2772,13959 2780,13954 2789,13952 2798,13952 2806,13952 2815,13954 2823,13959 2830,13963 2837,13970 2841,13977 2846,13985 2848,13994 2848,14003 2848,14011 2846,14020 2841,14028 2837,14035 2830,14042 2823,14046 2815,14051 2806,14053 2798,14053 2789,14053 2780,14051 2772,14046 2765,14042 2758,14035 2754,14028 2749,14020 2747,14011 2747,14003 Z"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.LineShape">
     <g id="id113">
      <rect class="BoundingBox" stroke="none" fill="none" x="2347" y="14002" width="453" height="303"/>
      <path fill="none" stroke="rgb(0,0,0)" d="M 2798,14003 L 2348,14303"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.LineShape">
     <g id="id114">
      <rect class="BoundingBox" stroke="none" fill="none" x="2197" y="13602" width="203" height="3"/>
      <path fill="none" stroke="rgb(0,0,0)" d="M 2398,13603 L 2198,13603"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.LineShape">
     <g id="id115">
      <rect class="BoundingBox" stroke="none" fill="none" x="2797" y="14002" width="203" height="3"/>
      <path fill="none" stroke="rgb(0,0,0)" d="M 2998,14003 L 2798,14003"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.LineShape">
     <g id="id116">
      <rect class="BoundingBox" stroke="none" fill="none" x="1997" y="13602" width="203" height="3"/>
      <path fill="none" stroke="rgb(0,0,0)" d="M 1998,13603 L 2198,13603"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.CustomShape">
     <g id="id117">
      <rect class="BoundingBox" stroke="none" fill="none" x="2145" y="13550" width="104" height="104"/>
      <path fill="rgb(255,255,255)" stroke="none" d="M 2146,13601 C 2146,13593 2148,13584 2153,13576 2157,13569 2164,13562 2171,13558 2179,13553 2188,13551 2197,13551 2205,13551 2214,13553 2222,13558 2229,13562 2236,13569 2240,13576 2245,13584 2247,13593 2247,13601 2247,13610 2245,13619 2240,13627 2236,13634 2229,13641 2222,13645 2214,13650 2205,13652 2196,13652 2188,13652 2179,13650 2171,13645 2164,13641 2157,13634 2153,13627 2148,13619 2146,13610 2146,13601 L 2146,13601 Z"/>
      <path fill="none" stroke="rgb(0,0,0)" d="M 2146,13601 C 2146,13593 2148,13584 2153,13576 2157,13569 2164,13562 2171,13558 2179,13553 2188,13551 2197,13551 2205,13551 2214,13553 2222,13558 2229,13562 2236,13569 2240,13576 2245,13584 2247,13593 2247,13601 2247,13610 2245,13619 2240,13627 2236,13634 2229,13641 2222,13645 2214,13650 2205,13652 2196,13652 2188,13652 2179,13650 2171,13645 2164,13641 2157,13634 2153,13627 2148,13619 2146,13610 2146,13601 Z"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.LineShape">
     <g id="id118">
      <rect class="BoundingBox" stroke="none" fill="none" x="2197" y="14401" width="203" height="3"/>
      <path fill="none" stroke="rgb(0,0,0)" d="M 2398,14402 L 2198,14402"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.LineShape">
     <g id="id119">
      <rect class="BoundingBox" stroke="none" fill="none" x="1997" y="14401" width="203" height="3"/>
      <path fill="none" stroke="rgb(0,0,0)" d="M 1998,14402 L 2198,14402"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.CustomShape">
     <g id="id120">
      <rect class="BoundingBox" stroke="none" fill="none" x="2145" y="14349" width="104" height="104"/>
      <path fill="rgb(255,255,255)" stroke="none" d="M 2146,14400 C 2146,14392 2148,14383 2153,14375 2157,14368 2164,14361 2171,14357 2179,14352 2188,14350 2197,14350 2205,14350 2214,14352 2222,14357 2229,14361 2236,14368 2240,14375 2245,14383 2247,14392 2247,14400 2247,14409 2245,14418 2240,14426 2236,14433 2229,14440 2222,14444 2214,14449 2205,14451 2197,14451 2188,14451 2179,14449 2171,14444 2164,14440 2157,14433 2153,14426 2148,14418 2146,14409 2146,14400 L 2146,14400 Z"/>
      <path fill="none" stroke="rgb(0,0,0)" d="M 2146,14400 C 2146,14392 2148,14383 2153,14375 2157,14368 2164,14361 2171,14357 2179,14352 2188,14350 2197,14350 2205,14350 2214,14352 2222,14357 2229,14361 2236,14368 2240,14375 2245,14383 2247,14392 2247,14400 2247,14409 2245,14418 2240,14426 2236,14433 2229,14440 2222,14444 2214,14449 2205,14451 2197,14451 2188,14451 2179,14449 2171,14444 2164,14440 2157,14433 2153,14426 2148,14418 2146,14409 2146,14400 Z"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.LineShape">
     <g id="id121">
      <rect class="BoundingBox" stroke="none" fill="none" x="2397" y="14253" width="3" height="153"/>
      <path fill="none" stroke="rgb(0,0,0)" d="M 2398,14404 L 2398,14254"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.CustomShape">
     <g id="id122">
      <rect class="BoundingBox" stroke="none" fill="none" x="1598" y="13500" width="1401" height="1001"/>
     </g>
    </g>
    <g class="com.sun.star.drawing.TextShape">
     <g id="id123">
      <rect class="BoundingBox" stroke="none" fill="none" x="1569" y="14004" width="530" height="494"/>
      <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="212px" font-weight="400"><tspan class="TextPosition" x="1819" y="14320"><tspan fill="rgb(0,0,0)" stroke="none">L</tspan></tspan></tspan></text>
     </g>
    </g>
    <g class="com.sun.star.drawing.TextShape">
     <g id="id124">
      <rect class="BoundingBox" stroke="none" fill="none" x="1570" y="13505" width="530" height="494"/>
      <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="212px" font-weight="400"><tspan class="TextPosition" x="1820" y="13821"><tspan fill="rgb(0,0,0)" stroke="none">H</tspan></tspan></tspan></text>
     </g>
    </g>
   </g>
  </g>
  <g class="com.sun.star.drawing.TextShape">
   <g id="id125">
    <rect class="BoundingBox" stroke="none" fill="none" x="6000" y="13600" width="3008" height="726"/>
    <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="6250" y="14110"><tspan fill="rgb(0,0,0)" stroke="none">pwm_width_i</tspan></tspan></tspan></text>
   </g>
  </g>
  <g class="Group">
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id126">
     <rect class="BoundingBox" stroke="none" fill="none" x="26004" y="16000" width="3596" height="1001"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id127">
     <rect class="BoundingBox" stroke="none" fill="none" x="26985" y="15985" width="2626" height="1031"/>
     <path fill="rgb(255,255,255)" stroke="none" d="M 28298,17000 L 27000,17000 27000,16000 29595,16000 29595,17000 28298,17000 Z"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="30" stroke-linejoin="round" d="M 28298,17000 L 27000,17000 27000,16000 29595,16000 29595,17000 28298,17000 Z"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="27436" y="16648"><tspan fill="rgb(0,0,0)" stroke="none">GPO_1[1]</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id128">
     <rect class="BoundingBox" stroke="none" fill="none" x="25999" y="16495" width="1011" height="11"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="10" stroke-linejoin="round" d="M 27004,16500 L 26004,16500"/>
    </g>
   </g>
  </g>
  <g class="Group">
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id129">
     <rect class="BoundingBox" stroke="none" fill="none" x="26008" y="17000" width="3596" height="1001"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id130">
     <rect class="BoundingBox" stroke="none" fill="none" x="26989" y="16985" width="2626" height="1031"/>
     <path fill="rgb(255,255,255)" stroke="none" d="M 28302,18000 L 27004,18000 27004,17000 29599,17000 29599,18000 28302,18000 Z"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="30" stroke-linejoin="round" d="M 28302,18000 L 27004,18000 27004,17000 29599,17000 29599,18000 28302,18000 Z"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="27440" y="17648"><tspan fill="rgb(0,0,0)" stroke="none">GPO_1[2]</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id131">
     <rect class="BoundingBox" stroke="none" fill="none" x="26003" y="17495" width="1011" height="11"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="10" stroke-linejoin="round" d="M 27008,17500 L 26008,17500"/>
    </g>
   </g>
  </g>
  <g class="Group">
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id132">
     <rect class="BoundingBox" stroke="none" fill="none" x="26008" y="15000" width="3596" height="1001"/>
    </g>
   </g>
   <g class="com.sun.star.drawing.CustomShape">
    <g id="id133">
     <rect class="BoundingBox" stroke="none" fill="none" x="26989" y="14985" width="2626" height="1031"/>
     <path fill="rgb(255,255,255)" stroke="none" d="M 28302,16000 L 27004,16000 27004,15000 29599,15000 29599,16000 28302,16000 Z"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="30" stroke-linejoin="round" d="M 28302,16000 L 27004,16000 27004,15000 29599,15000 29599,16000 28302,16000 Z"/>
     <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="27440" y="15648"><tspan fill="rgb(0,0,0)" stroke="none">GPO_1[0]</tspan></tspan></tspan></text>
    </g>
   </g>
   <g class="com.sun.star.drawing.LineShape">
    <g id="id134">
     <rect class="BoundingBox" stroke="none" fill="none" x="26003" y="15495" width="1011" height="11"/>
     <path fill="none" stroke="rgb(0,0,0)" stroke-width="10" stroke-linejoin="round" d="M 27008,15500 L 26008,15500"/>
    </g>
   </g>
  </g>
  <g class="com.sun.star.drawing.TextShape">
   <g id="id135">
    <rect class="BoundingBox" stroke="none" fill="none" x="24651" y="15070" width="1350" height="731"/>
    <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="24901" y="15580"><tspan fill="rgb(0,0,0)" stroke="none">clk_i</tspan></tspan></tspan></text>
   </g>
  </g>
  <g class="com.sun.star.drawing.TextShape">
   <g id="id136">
    <rect class="BoundingBox" stroke="none" fill="none" x="23300" y="17100" width="2694" height="726"/>
    <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="23572" y="17610"><tspan fill="rgb(0,0,0)" stroke="none">en_pwm_pi</tspan></tspan></tspan></text>
   </g>
  </g>
  <g class="com.sun.star.drawing.ConnectorShape">
   <g id="id137">
    <rect class="BoundingBox" stroke="none" fill="none" x="8999" y="8999" width="4003" height="9"/>
    <path fill="none" stroke="rgb(0,0,0)" d="M 9000,9006 L 11000,9006 11000,9000 13000,9000"/>
   </g>
  </g>
  <g class="com.sun.star.drawing.TextShape">
   <g id="id138">
    <rect class="BoundingBox" stroke="none" fill="none" x="24108" y="16075" width="1893" height="726"/>
    <text class="TextShape"><tspan class="TextParagraph" font-family="Arial, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="24358" y="16585"><tspan fill="rgb(0,0,0)" stroke="none">pwm_o</tspan></tspan></tspan></text>
   </g>
  </g>
 </g>
</svg>