-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuchende.drawio
1823 lines (1823 loc) · 192 KB
/
buchende.drawio
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
<mxfile host="app.diagrams.net" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36" version="26.0.10">
<diagram name="Kalender" id="cYS-9EuOB4i6pcKZ9MJi">
<mxGraphModel dx="2246" dy="777" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" value="Kalender" style="locked=1;" parent="0" />
<mxCell id="5hnXaATVoiFRzyK2IRA5-401" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1052.9966666666674" y="231.00000000000023" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="2NE3QntdV9dIywlUFts6-8" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="25" y="500" width="817" height="780" as="geometry" />
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-61" value="" style="group;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;fillColor=#f9f7ed;strokeColor=#36393d;container=0;" parent="2NE3QntdV9dIywlUFts6-8" vertex="1" connectable="0">
<mxGeometry width="817" height="780" as="geometry" />
</mxCell>
<mxCell id="2NE3QntdV9dIywlUFts6-6" value="" style="group;" parent="2NE3QntdV9dIywlUFts6-8" vertex="1" connectable="0">
<mxGeometry x="23" y="720" width="772" height="44" as="geometry" />
</mxCell>
<mxCell id="tTCCTxN9szVMtPMrQivX-1" value="Import / Export" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.buttons.button;strokeColor=#666666;fontColor=#ffffff;mainText=;buttonStyle=round;fontSize=17;fontStyle=1;fillColor=#008cff;whiteSpace=wrap;" parent="2NE3QntdV9dIywlUFts6-6" vertex="1">
<mxGeometry x="632" width="140" height="40" as="geometry" />
</mxCell>
<mxCell id="2NE3QntdV9dIywlUFts6-7" value="" style="group" parent="2NE3QntdV9dIywlUFts6-8" vertex="1" connectable="0">
<mxGeometry x="21" y="34" width="775" height="655.0000000000002" as="geometry" />
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-193" value="" style="shape=table;childLayout=tableLayout;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="2NE3QntdV9dIywlUFts6-7" vertex="1">
<mxGeometry y="104" width="775" height="551" as="geometry" />
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-194" value="Zeitslot 1 " style="shape=tableRow;horizontal=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;dropTarget=0;fontStyle=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;startSize=40;collapsible=0;recursiveResize=0;expand=0;fillColor=default;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-193" vertex="1">
<mxGeometry width="775" height="170" as="geometry" />
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-195" value="Montag
Datum" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=60;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-194" vertex="1">
<mxGeometry x="40" width="105" height="170" as="geometry">
<mxRectangle width="105" height="170" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-196" value="Dienstag
Datum" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=60;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-194" vertex="1">
<mxGeometry x="145" width="105" height="170" as="geometry">
<mxRectangle width="105" height="170" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-197" value="Mittwoch
Datum" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=60;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-194" vertex="1">
<mxGeometry x="250" width="105" height="170" as="geometry">
<mxRectangle width="105" height="170" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-198" value="Donnerstag
Datum" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=60;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-194" vertex="1">
<mxGeometry x="355" width="105" height="170" as="geometry">
<mxRectangle width="105" height="170" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-199" value="Freitag
Datum" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=60;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-194" vertex="1">
<mxGeometry x="460" width="105" height="170" as="geometry">
<mxRectangle width="105" height="170" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-200" value="Samstag
Datum" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=60;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-194" vertex="1">
<mxGeometry x="565" width="105" height="170" as="geometry">
<mxRectangle width="105" height="170" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-201" value="Sonntag
Datum" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;strokeColor=inherit;connectable=0;fillColor=none;startSize=60;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-194" vertex="1">
<mxGeometry x="670" width="105" height="170" as="geometry">
<mxRectangle width="105" height="170" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-202" value="Zeitslot 2" style="shape=tableRow;horizontal=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;dropTarget=0;fontStyle=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;startSize=40;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-193" vertex="1">
<mxGeometry y="170" width="775" height="126" as="geometry" />
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-203" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-202" vertex="1">
<mxGeometry x="40" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-204" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-202" vertex="1">
<mxGeometry x="145" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-205" value="<font style="background-color: rgb(204, 204, 204);" color="#ffffff">geblockter Termin</font>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#969696;fillColor=#CCCCCC;" parent="5hnXaATVoiFRzyK2IRA5-204" vertex="1">
<mxGeometry width="106" height="127" as="geometry" />
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-206" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-202" vertex="1">
<mxGeometry x="250" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-207" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-202" vertex="1">
<mxGeometry x="355" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-208" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-202" vertex="1">
<mxGeometry x="460" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-209" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-202" vertex="1">
<mxGeometry x="565" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-210" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-202" vertex="1">
<mxGeometry x="670" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-211" value="Zeitslot 3" style="shape=tableRow;horizontal=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;dropTarget=0;fontStyle=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;startSize=40;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-193" vertex="1">
<mxGeometry y="296" width="775" height="129" as="geometry" />
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-212" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-211" vertex="1">
<mxGeometry x="40" width="105" height="129" as="geometry">
<mxRectangle width="105" height="129" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-213" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-211" vertex="1">
<mxGeometry x="145" width="105" height="129" as="geometry">
<mxRectangle width="105" height="129" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-214" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-211" vertex="1">
<mxGeometry x="250" width="105" height="129" as="geometry">
<mxRectangle width="105" height="129" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-215" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-211" vertex="1">
<mxGeometry x="355" width="105" height="129" as="geometry">
<mxRectangle width="105" height="129" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-216" value="<div align="left"><font color="#4f688c">Eintrag gebuchter Termin (der für Aufsicht relevant ist) --&gt; Relevante Info anzeigen<br></font></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="5hnXaATVoiFRzyK2IRA5-215" vertex="1">
<mxGeometry width="105" height="130" as="geometry" />
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-217" value="" style="shape=flexArrow;endArrow=classic;html=1;rounded=0;width=6;endSize=5.45;strokeWidth=2;endWidth=15;" parent="5hnXaATVoiFRzyK2IRA5-215" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="126" y="114" as="sourcePoint" />
<mxPoint x="96" y="104" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-218" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-211" vertex="1">
<mxGeometry x="460" width="105" height="129" as="geometry">
<mxRectangle width="105" height="129" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-220" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-211" vertex="1">
<mxGeometry x="565" width="105" height="129" as="geometry">
<mxRectangle width="105" height="129" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-221" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-211" vertex="1">
<mxGeometry x="670" width="105" height="129" as="geometry">
<mxRectangle width="105" height="129" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-222" value="Zeitslot 4" style="shape=tableRow;horizontal=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;dropTarget=0;fontStyle=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;startSize=40;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-193" vertex="1">
<mxGeometry y="425" width="775" height="126" as="geometry" />
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-223" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-222" vertex="1">
<mxGeometry x="40" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-224" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-222" vertex="1">
<mxGeometry x="145" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-225" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-222" vertex="1">
<mxGeometry x="250" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-226" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-222" vertex="1">
<mxGeometry x="355" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-227" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-222" vertex="1">
<mxGeometry x="460" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-228" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-222" vertex="1">
<mxGeometry x="565" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-229" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="5hnXaATVoiFRzyK2IRA5-222" vertex="1">
<mxGeometry x="670" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-230" value="" style="shape=flexArrow;endArrow=classic;html=1;rounded=0;endWidth=8;endSize=4;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="2NE3QntdV9dIywlUFts6-7" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="40" y="84.5" as="sourcePoint" />
<mxPoint y="84.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-231" value="" style="shape=flexArrow;endArrow=classic;html=1;rounded=0;endWidth=8;endSize=4;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="2NE3QntdV9dIywlUFts6-7" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="735" y="84.5" as="sourcePoint" />
<mxPoint x="775" y="84.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-232" value="<div><font style="font-size: 25px;">Monat<br></font></div><div><font style="font-size: 25px;">Kalenderwoche xx</font></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#7EA6E0;" parent="2NE3QntdV9dIywlUFts6-7" vertex="1">
<mxGeometry x="229" y="40" width="290" height="60" as="geometry" />
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-233" value="KW xx" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="2NE3QntdV9dIywlUFts6-7" vertex="1">
<mxGeometry x="40" y="70" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-234" value="KW xx" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="2NE3QntdV9dIywlUFts6-7" vertex="1">
<mxGeometry x="675" y="70" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-247" value="" style="line;strokeWidth=1;html=1;dashed=1;" parent="2NE3QntdV9dIywlUFts6-7" vertex="1">
<mxGeometry x="30" y="246" width="40" height="10" as="geometry" />
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-62" value="" style="shape=table;childLayout=tableLayout;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="2NE3QntdV9dIywlUFts6-7" vertex="1">
<mxGeometry y="104" width="775" height="551.0000000000002" as="geometry" />
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-63" value="Zeitslot 1 " style="shape=tableRow;horizontal=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;dropTarget=0;fontStyle=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;startSize=40;collapsible=0;recursiveResize=0;expand=0;fillColor=default;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-62" vertex="1">
<mxGeometry width="775" height="170" as="geometry" />
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-64" value="Montag
Datum" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=60;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-63" vertex="1">
<mxGeometry x="40" width="105" height="170" as="geometry">
<mxRectangle width="105" height="170" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-65" value="Dienstag
Datum" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=60;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-63" vertex="1">
<mxGeometry x="145" width="105" height="170" as="geometry">
<mxRectangle width="105" height="170" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-66" value="Mittwoch
Datum" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=60;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-63" vertex="1">
<mxGeometry x="250" width="105" height="170" as="geometry">
<mxRectangle width="105" height="170" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-67" value="Donnerstag
Datum" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=60;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-63" vertex="1">
<mxGeometry x="355" width="105" height="170" as="geometry">
<mxRectangle width="105" height="170" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-68" value="Freitag
Datum" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=60;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-63" vertex="1">
<mxGeometry x="460" width="105" height="170" as="geometry">
<mxRectangle width="105" height="170" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-69" value="Samstag
Datum" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=60;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-63" vertex="1">
<mxGeometry x="565" width="105" height="170" as="geometry">
<mxRectangle width="105" height="170" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-70" value="Sonntag
Datum" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;strokeColor=inherit;connectable=0;fillColor=none;startSize=60;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-63" vertex="1">
<mxGeometry x="670" width="105" height="170" as="geometry">
<mxRectangle width="105" height="170" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-71" value="Zeitslot 2" style="shape=tableRow;horizontal=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;dropTarget=0;fontStyle=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;startSize=40;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-62" vertex="1">
<mxGeometry y="170" width="775" height="126" as="geometry" />
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-72" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-71" vertex="1">
<mxGeometry x="40" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-73" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-71" vertex="1">
<mxGeometry x="145" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-74" value="<font style="background-color: rgb(204, 204, 204);" color="#ffffff">geblockter Termin eines anderen Buchenden</font>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#969696;fillColor=#CCCCCC;" parent="CCN0DATAm5xw3YuDV8w9-73" vertex="1">
<mxGeometry width="106" height="127" as="geometry" />
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-75" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-71" vertex="1">
<mxGeometry x="250" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-76" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-71" vertex="1">
<mxGeometry x="355" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-77" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-71" vertex="1">
<mxGeometry x="460" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-78" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-71" vertex="1">
<mxGeometry x="565" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-79" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-71" vertex="1">
<mxGeometry x="670" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-80" value="Zeitslot 3" style="shape=tableRow;horizontal=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;dropTarget=0;fontStyle=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;startSize=40;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-62" vertex="1">
<mxGeometry y="296" width="775" height="129" as="geometry" />
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-81" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-80" vertex="1">
<mxGeometry x="40" width="105" height="129" as="geometry">
<mxRectangle width="105" height="129" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-82" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-80" vertex="1">
<mxGeometry x="145" width="105" height="129" as="geometry">
<mxRectangle width="105" height="129" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-83" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-80" vertex="1">
<mxGeometry x="250" width="105" height="129" as="geometry">
<mxRectangle width="105" height="129" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-84" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-80" vertex="1">
<mxGeometry x="355" width="105" height="129" as="geometry">
<mxRectangle width="105" height="129" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-85" value="<div style=""><font color="#4f688c">Eintrag gebuchter Termin (des Buchenden)<br></font></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="CCN0DATAm5xw3YuDV8w9-84" vertex="1">
<mxGeometry width="105" height="130" as="geometry" />
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-86" value="" style="shape=flexArrow;endArrow=classic;html=1;rounded=0;width=6;endSize=5.45;strokeWidth=2;endWidth=15;" parent="CCN0DATAm5xw3YuDV8w9-84" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="126" y="114" as="sourcePoint" />
<mxPoint x="96" y="104" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-87" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-80" vertex="1">
<mxGeometry x="460" width="105" height="129" as="geometry">
<mxRectangle width="105" height="129" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-88" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-80" vertex="1">
<mxGeometry x="565" width="105" height="129" as="geometry">
<mxRectangle width="105" height="129" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-89" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-80" vertex="1">
<mxGeometry x="670" width="105" height="129" as="geometry">
<mxRectangle width="105" height="129" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-90" value="Zeitslot 4" style="shape=tableRow;horizontal=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;dropTarget=0;fontStyle=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;startSize=40;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-62" vertex="1">
<mxGeometry y="425" width="775" height="126" as="geometry" />
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-91" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-90" vertex="1">
<mxGeometry x="40" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-92" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-90" vertex="1">
<mxGeometry x="145" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-93" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-90" vertex="1">
<mxGeometry x="250" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-94" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-90" vertex="1">
<mxGeometry x="355" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-95" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-90" vertex="1">
<mxGeometry x="460" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-96" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-90" vertex="1">
<mxGeometry x="565" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-97" value="" style="swimlane;swimlaneHead=0;swimlaneBody=0;fontStyle=0;connectable=0;strokeColor=inherit;fillColor=none;startSize=0;collapsible=0;recursiveResize=0;expand=0;dashed=1;" parent="CCN0DATAm5xw3YuDV8w9-90" vertex="1">
<mxGeometry x="670" width="105" height="126" as="geometry">
<mxRectangle width="105" height="126" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-98" value="" style="shape=flexArrow;endArrow=classic;html=1;rounded=0;endWidth=8;endSize=4;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="2NE3QntdV9dIywlUFts6-7" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="40" y="84.5" as="sourcePoint" />
<mxPoint y="84.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-99" value="" style="shape=flexArrow;endArrow=classic;html=1;rounded=0;endWidth=8;endSize=4;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="2NE3QntdV9dIywlUFts6-7" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="735" y="84.5" as="sourcePoint" />
<mxPoint x="775" y="84.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-100" value="<div><font style="font-size: 25px;">Monat<br></font></div><div><font style="font-size: 25px;">Kalenderwoche xx</font></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#7EA6E0;" parent="2NE3QntdV9dIywlUFts6-7" vertex="1">
<mxGeometry x="229" y="40" width="290" height="60" as="geometry" />
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-101" value="KW xx" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="2NE3QntdV9dIywlUFts6-7" vertex="1">
<mxGeometry x="40" y="70" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-102" value="KW xx" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="2NE3QntdV9dIywlUFts6-7" vertex="1">
<mxGeometry x="675" y="70" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="2NE3QntdV9dIywlUFts6-4" value="" style="group;" parent="2NE3QntdV9dIywlUFts6-7" vertex="1" connectable="0">
<mxGeometry width="774.9952380952383" height="31" as="geometry" />
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-237" value="Monat / KW / Semester" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#ffffff;strokeColor=#999999;align=left;spacing=15;fontSize=14;fontColor=#6C767D;" parent="2NE3QntdV9dIywlUFts6-4" vertex="1">
<mxGeometry width="180" height="30" as="geometry" />
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-238" value="" style="shape=triangle;direction=south;fillColor=#343A40;strokeColor=none;perimeter=none;" parent="5hnXaATVoiFRzyK2IRA5-237" vertex="1">
<mxGeometry x="1" y="0.5" width="7" height="3" relative="1" as="geometry">
<mxPoint x="-17" y="1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-239" value="" style="shape=triangle;direction=north;fillColor=#343A40;strokeColor=none;perimeter=none;" parent="5hnXaATVoiFRzyK2IRA5-237" vertex="1">
<mxGeometry x="1" y="0.5" width="7" height="3" relative="1" as="geometry">
<mxPoint x="-17" y="-4" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-256" value="Filterkategorie" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#ABABAB;strokeWidth=1;fillColor=#ffffff;fontColor=#777777;whiteSpace=wrap;align=left;verticalAlign=middle;fontStyle=0;fontSize=14;spacingRight=0;spacing=17;" parent="2NE3QntdV9dIywlUFts6-4" vertex="1">
<mxGeometry x="395.6738095238097" width="379.32142857142856" height="30" as="geometry" />
</mxCell>
<mxCell id="5hnXaATVoiFRzyK2IRA5-257" value="" style="shape=triangle;direction=south;fillColor=#495057;strokeColor=none;perimeter=none;" parent="5hnXaATVoiFRzyK2IRA5-256" vertex="1">
<mxGeometry x="1" y="0.5" width="10" height="5" relative="1" as="geometry">
<mxPoint x="-17" y="-2.5" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="IoXwf7EjeMQtzgtA14rk-1" value="<div><span style="background-color: initial;">Termine&nbsp;</span><br></div>" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#ffffff;strokeColor=#999999;align=left;spacing=15;fontSize=14;fontColor=#6C767D;" parent="2NE3QntdV9dIywlUFts6-4" vertex="1">
<mxGeometry x="214.76666666666688" y="1" width="155.61904761904762" height="30" as="geometry" />
</mxCell>
<mxCell id="IoXwf7EjeMQtzgtA14rk-2" value="" style="shape=triangle;direction=south;fillColor=#343A40;strokeColor=none;perimeter=none;" parent="IoXwf7EjeMQtzgtA14rk-1" vertex="1">
<mxGeometry x="1" y="0.5" width="7" height="3" relative="1" as="geometry">
<mxPoint x="-17" y="1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="IoXwf7EjeMQtzgtA14rk-3" value="" style="shape=triangle;direction=north;fillColor=#343A40;strokeColor=none;perimeter=none;" parent="IoXwf7EjeMQtzgtA14rk-1" vertex="1">
<mxGeometry x="1" y="0.5" width="7" height="3" relative="1" as="geometry">
<mxPoint x="-17" y="-4" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="TuoxUDgc9kxG5lUEJexI-2" value="Per Klick auf ein leeres Terminfeld öffnet sich die leere Ansicht "Detailansicht Gebuchter Termin (Popup)", die dann vom Buchenden ausgefüllt werden kann." style="shape=note;whiteSpace=wrap;html=1;backgroundOutline=1;fontColor=#000000;darkOpacity=0.05;fillColor=#FFF9B2;strokeColor=none;fillStyle=solid;direction=west;gradientDirection=north;gradientColor=#FFF2A1;shadow=1;size=20;pointerEvents=1;" parent="2NE3QntdV9dIywlUFts6-7" vertex="1">
<mxGeometry x="484" y="466" width="140" height="160" as="geometry" />
</mxCell>
<mxCell id="TuoxUDgc9kxG5lUEJexI-1" value="" style="shape=flexArrow;endArrow=classic;html=1;rounded=0;width=6;endSize=5.45;strokeWidth=2;endWidth=15;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="556" y="721" as="sourcePoint" />
<mxPoint x="526" y="711" as="targetPoint" />
</mxGeometry>
</mxCell>
<object label="Filteroptionen" id="N64B7SWwX6CFY86yBuNC-1">
<mxCell style="locked=1;" parent="0" />
</object>
<mxCell id="N64B7SWwX6CFY86yBuNC-3" value="<font style="font-size: 24px;" color="#ffffff"><b>Mockup Kalender Startseite: BUCHENDE</b></font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#7EA6E0;strokeColor=#7EA6E0;" parent="N64B7SWwX6CFY86yBuNC-1" vertex="1">
<mxGeometry x="20" y="420" width="827" height="70" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-174" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="N64B7SWwX6CFY86yBuNC-1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1052.9966666666674" y="231.00000000000023" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-178" value="" style="endArrow=classic;html=1;rounded=0;exitX=0.997;exitY=0.867;exitDx=0;exitDy=0;exitPerimeter=0;entryX=-0.009;entryY=1.064;entryDx=0;entryDy=0;entryPerimeter=0;" parent="N64B7SWwX6CFY86yBuNC-1" source="5hnXaATVoiFRzyK2IRA5-256" target="fP41CBTMwJmhMQKIAeSz-4" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="970" y="580" as="sourcePoint" />
<mxPoint x="1028" y="580" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-179" value="Search" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.searchBox;strokeColor=#999999;mainText=;strokeColor2=#008cff;fontColor=#666666;fontSize=17;align=left;spacingLeft=3;whiteSpace=wrap;" parent="N64B7SWwX6CFY86yBuNC-1" vertex="1">
<mxGeometry x="1249.9966666666667" y="510.00333333333333" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-242" value="" style="endArrow=classic;html=1;rounded=0;entryX=0.987;entryY=0.497;entryDx=0;entryDy=0;entryPerimeter=0;" parent="N64B7SWwX6CFY86yBuNC-1" source="5hnXaATVoiFRzyK2IRA5-237" target="N64B7SWwX6CFY86yBuNC-189" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="30" y="152" as="sourcePoint" />
<mxPoint x="-40" y="152.0290581162326" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-20" value="Raum" style="swimlane;strokeColor=#999999;swimlaneFillColor=#FFFFFF;fillColor=#ffffff;fontColor=#008CFF;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=0;marginBottom=0;whiteSpace=wrap;html=1;fontSize=17;" parent="N64B7SWwX6CFY86yBuNC-1" vertex="1">
<mxGeometry x="1250" y="550" width="150" height="110" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-21" value="Prüfungszentrum" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;fillColor=none;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-20" vertex="1">
<mxGeometry y="30" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-22" value="PC-Pool SoWi" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;rSize=5;fillColor=none;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-20" vertex="1">
<mxGeometry y="50" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-23" value="PC-Saal MatNath" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;rSize=5;fillColor=#DDEEFF;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-20" vertex="1">
<mxGeometry y="70" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-24" value="Fernprüfungen" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;fillColor=none;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-20" vertex="1">
<mxGeometry y="90" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-26" value="Zeitslot" style="swimlane;strokeColor=#999999;swimlaneFillColor=#FFFFFF;fillColor=#ffffff;fontColor=#008CFF;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=0;marginBottom=0;whiteSpace=wrap;html=1;fontSize=17;" parent="N64B7SWwX6CFY86yBuNC-1" vertex="1">
<mxGeometry x="1250" y="680" width="150" height="110" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-27" value="09:00 - 11:00 Uhr" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;fillColor=none;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-26" vertex="1">
<mxGeometry y="30" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-28" value="11:00 - 13:00 Uhr" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;rSize=5;fillColor=none;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-26" vertex="1">
<mxGeometry y="50" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-29" value="13:00 - 15:00 Uhr" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;rSize=5;fillColor=#DDEEFF;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-26" vertex="1">
<mxGeometry y="70" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-30" value="15:00 - 17:00 Uhr" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;fillColor=none;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-26" vertex="1">
<mxGeometry y="90" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-10" value="" style="endArrow=classic;html=1;rounded=0;" parent="N64B7SWwX6CFY86yBuNC-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1040" y="640" as="sourcePoint" />
<mxPoint x="1040" y="790" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-32" value="Fakultät / Einrichtung" style="swimlane;strokeColor=#999999;swimlaneFillColor=#FFFFFF;fillColor=#ffffff;fontColor=#008CFF;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=0;marginBottom=0;whiteSpace=wrap;html=1;fontSize=17;" parent="N64B7SWwX6CFY86yBuNC-1" vertex="1">
<mxGeometry x="1250" y="815" width="180" height="110" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-33" value="Sozialwissenschaften" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;fillColor=none;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-32" vertex="1">
<mxGeometry y="30" width="180" height="20" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-34" value="MathNat HU" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;rSize=5;fillColor=none;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-32" vertex="1">
<mxGeometry y="50" width="180" height="20" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-35" value="TU Berlin" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;rSize=5;fillColor=#DDEEFF;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-32" vertex="1">
<mxGeometry y="70" width="180" height="20" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-36" value="UdK" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;fillColor=none;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-32" vertex="1">
<mxGeometry y="90" width="180" height="20" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-38" value="Status" style="swimlane;strokeColor=#999999;swimlaneFillColor=#FFFFFF;fillColor=#ffffff;fontColor=#008CFF;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=0;marginBottom=0;whiteSpace=wrap;html=1;fontSize=17;" parent="N64B7SWwX6CFY86yBuNC-1" vertex="1">
<mxGeometry x="1030" y="790" width="150" height="130" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-39" value="offen" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;fillColor=none;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-38" vertex="1">
<mxGeometry y="30" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-40" value="in Bearbeitung" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;rSize=5;fillColor=none;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-38" vertex="1">
<mxGeometry y="50" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-41" value="bestätigt" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;rSize=5;fillColor=#DDEEFF;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-38" vertex="1">
<mxGeometry y="70" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-42" value="storniert" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;fillColor=none;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-38" vertex="1">
<mxGeometry y="90" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-45" value="abgelehnt" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;fillColor=none;fontColor=#666666;fontSize=17;" parent="QiOB0qECL0zAiB_2sR25-38" vertex="1">
<mxGeometry y="110" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="HSe4UDjtnV36XrPr70aD-3" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="N64B7SWwX6CFY86yBuNC-1" source="TuoxUDgc9kxG5lUEJexI-7" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="360.00000000000045" y="530" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="TuoxUDgc9kxG5lUEJexI-7" value="Termine" style="swimlane;strokeColor=#999999;swimlaneFillColor=#FFFFFF;fillColor=#ffffff;fontColor=#008CFF;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=0;marginBottom=0;whiteSpace=wrap;html=1;fontSize=17;" parent="N64B7SWwX6CFY86yBuNC-1" vertex="1">
<mxGeometry x="-470" y="238" width="150" height="70" as="geometry" />
</mxCell>
<mxCell id="TuoxUDgc9kxG5lUEJexI-8" value="Alle Termine" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;fillColor=none;fontColor=#666666;fontSize=17;" parent="TuoxUDgc9kxG5lUEJexI-7" vertex="1">
<mxGeometry y="30" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="TuoxUDgc9kxG5lUEJexI-10" value="Meine Termine" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;rSize=5;fillColor=#DDEEFF;fontColor=#666666;fontSize=17;" parent="TuoxUDgc9kxG5lUEJexI-7" vertex="1">
<mxGeometry y="50" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="TuoxUDgc9kxG5lUEJexI-14" value="Beim Klick auf "Meine Termine" öffnet sich unterhalb des Kalenders die Liste mit den Persönlichen Terminen. Auch in der Kalenderansicht werden dann nur die Persönlichen Termine angezeigt." style="shape=note;whiteSpace=wrap;html=1;backgroundOutline=1;fontColor=#000000;darkOpacity=0.05;fillColor=#FFF9B2;strokeColor=none;fillStyle=solid;direction=west;gradientDirection=north;gradientColor=#FFF2A1;shadow=1;size=20;pointerEvents=1;" parent="N64B7SWwX6CFY86yBuNC-1" vertex="1">
<mxGeometry x="-710" y="235" width="140" height="160" as="geometry" />
</mxCell>
<mxCell id="TuoxUDgc9kxG5lUEJexI-15" value="" style="edgeStyle=none;orthogonalLoop=1;jettySize=auto;html=1;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0.018;entryY=0.606;entryDx=0;entryDy=0;entryPerimeter=0;" parent="N64B7SWwX6CFY86yBuNC-1" source="TuoxUDgc9kxG5lUEJexI-10" target="TuoxUDgc9kxG5lUEJexI-14" edge="1">
<mxGeometry width="80" relative="1" as="geometry">
<mxPoint x="280" y="718" as="sourcePoint" />
<mxPoint x="-240" y="490" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="fP41CBTMwJmhMQKIAeSz-3" value="Filteroptionen" style="swimlane;strokeColor=#999999;swimlaneFillColor=#FFFFFF;fillColor=#ffffff;fontColor=#008CFF;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=0;marginBottom=0;whiteSpace=wrap;html=1;fontSize=17;" parent="N64B7SWwX6CFY86yBuNC-1" vertex="1">
<mxGeometry x="1030" y="510" width="190" height="130" as="geometry" />
</mxCell>
<mxCell id="fP41CBTMwJmhMQKIAeSz-4" value="Freitextsuche" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;fillColor=none;fontColor=#666666;fontSize=17;" parent="fP41CBTMwJmhMQKIAeSz-3" vertex="1">
<mxGeometry y="30" width="190" height="20" as="geometry" />
</mxCell>
<mxCell id="fP41CBTMwJmhMQKIAeSz-5" value="Raum" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;rSize=5;fillColor=none;fontColor=#666666;fontSize=17;" parent="fP41CBTMwJmhMQKIAeSz-3" vertex="1">
<mxGeometry y="50" width="190" height="20" as="geometry" />
</mxCell>
<mxCell id="fP41CBTMwJmhMQKIAeSz-6" value="Zeitslot" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;rSize=5;fillColor=#DDEEFF;fontColor=#666666;fontSize=17;" parent="fP41CBTMwJmhMQKIAeSz-3" vertex="1">
<mxGeometry y="70" width="190" height="20" as="geometry" />
</mxCell>
<mxCell id="fP41CBTMwJmhMQKIAeSz-7" value="Fakultät / Einrichtung" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;fillColor=none;fontColor=#666666;fontSize=17;" parent="fP41CBTMwJmhMQKIAeSz-3" vertex="1">
<mxGeometry y="90" width="190" height="20" as="geometry" />
</mxCell>
<mxCell id="fP41CBTMwJmhMQKIAeSz-8" value="Status" style="text;spacing=0;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=7;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;fillColor=none;fontColor=#666666;fontSize=17;" parent="fP41CBTMwJmhMQKIAeSz-3" vertex="1">
<mxGeometry y="110" width="190" height="20" as="geometry" />
</mxCell>
<mxCell id="2NE3QntdV9dIywlUFts6-9" value="" style="endArrow=classic;html=1;rounded=0;entryX=-0.002;entryY=0.6;entryDx=0;entryDy=0;entryPerimeter=0;exitX=0.605;exitY=0.2;exitDx=0;exitDy=0;exitPerimeter=0;" parent="N64B7SWwX6CFY86yBuNC-1" source="fP41CBTMwJmhMQKIAeSz-4" target="N64B7SWwX6CFY86yBuNC-179" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1142" y="532.4" as="sourcePoint" />
<mxPoint x="1200" y="532.4" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-8" value="" style="endArrow=classic;html=1;rounded=0;" parent="N64B7SWwX6CFY86yBuNC-1" source="fP41CBTMwJmhMQKIAeSz-6" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1120" y="640" as="sourcePoint" />
<mxPoint x="1270" y="700.48" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-7" value="" style="endArrow=classic;html=1;rounded=0;entryX=-0.007;entryY=0.191;entryDx=0;entryDy=0;entryPerimeter=0;" parent="N64B7SWwX6CFY86yBuNC-1" source="fP41CBTMwJmhMQKIAeSz-5" target="QiOB0qECL0zAiB_2sR25-20" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1092" y="544.72" as="sourcePoint" />
<mxPoint x="1250" y="549.2" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="QiOB0qECL0zAiB_2sR25-9" value="" style="endArrow=classic;html=1;rounded=0;entryX=-0.022;entryY=0.136;entryDx=0;entryDy=0;entryPerimeter=0;" parent="N64B7SWwX6CFY86yBuNC-1" source="fP41CBTMwJmhMQKIAeSz-7" target="QiOB0qECL0zAiB_2sR25-32" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1172" y="624" as="sourcePoint" />
<mxPoint x="1100" y="870" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-189" value="" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=5;strokeColor=#999999;fillColor=#ffffff;" parent="N64B7SWwX6CFY86yBuNC-1" vertex="1">
<mxGeometry x="-231" y="232" width="160" height="175" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-190" value="October 2014" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="30" y="9" width="100" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-191" value="<" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=4;strokeColor=#999999;fontColor=#008cff;fontSize=19;fontStyle=1;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="8" y="9" width="25" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-192" value=">" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=4;strokeColor=#999999;fontColor=#008cff;fontSize=19;fontStyle=1;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="127" y="9" width="25" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-193" value="Mo" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="10" y="29" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-194" value="Tu" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="30" y="29" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-195" value="We" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="50" y="29" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-196" value="Th" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="70" y="29" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-197" value="Fr" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="90" y="29" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-198" value="Sa" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="110" y="29" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-199" value="Su" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="130" y="29" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-200" value="1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="10" y="49" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-201" value="2" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="30" y="49" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-202" value="3" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="50" y="49" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-203" value="4" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="70" y="49" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-204" value="5" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="90" y="49" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-205" value="6" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="110" y="49" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-206" value="7" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="130" y="49" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-207" value="8" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="10" y="69" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-209" value="10" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="50" y="69" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-210" value="11" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="70" y="69" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-211" value="12" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="90" y="69" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-212" value="13" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="110" y="69" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-213" value="14" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="130" y="69" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-214" value="15" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="10" y="89" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-215" value="16" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="30" y="89" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-216" value="17" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="50" y="89" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-217" value="18" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="70" y="89" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-218" value="19" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="90" y="89" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-219" value="20" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="110" y="89" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-220" value="21" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="130" y="89" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-221" value="22" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="10" y="109" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-222" value="23" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="30" y="109" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-223" value="25" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="70" y="109" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-224" value="26" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="90" y="109" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-225" value="27" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="110" y="109" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-226" value="28" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="130" y="109" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-227" value="29" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="10" y="129" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-228" value="30" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="30" y="129" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-229" value="31" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="50" y="129" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-230" value="1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="70" y="129" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-231" value="2" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="90" y="129" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-232" value="3" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="110" y="129" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-233" value="4" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="130" y="129" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-234" value="5" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="10" y="149" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-235" value="6" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="30" y="149" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-236" value="7" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="50" y="149" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-237" value="8" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="70" y="149" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-238" value="9" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="90" y="149" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-239" value="10" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="110" y="149" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-240" value="11" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="130" y="149" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="N64B7SWwX6CFY86yBuNC-241" value="24" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#ff0000;fontColor=#ffffff;strokeWidth=2;fillColor=#008cff;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="50" y="109" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="HSe4UDjtnV36XrPr70aD-4" value="9" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" parent="N64B7SWwX6CFY86yBuNC-189" vertex="1">
<mxGeometry x="31" y="69" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-1" value="Buchungsformular" style="locked=1;" parent="0" />
<mxCell id="tTCCTxN9szVMtPMrQivX-2" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="CCN0DATAm5xw3YuDV8w9-1" target="CCN0DATAm5xw3YuDV8w9-85" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="460" y="1490" as="sourcePoint" />
<Array as="points">
<mxPoint x="454" y="1533" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-93" value="Bei "Raum" kann auch die Prüfungsform "Fernprüfung" und / oder weitere Prüfungsformen untergebracht werden." style="shape=note;whiteSpace=wrap;html=1;backgroundOutline=1;fontColor=#000000;darkOpacity=0.05;fillColor=#FFF9B2;strokeColor=none;fillStyle=solid;direction=west;gradientDirection=north;gradientColor=#FFF2A1;shadow=1;size=20;pointerEvents=1;" parent="CCN0DATAm5xw3YuDV8w9-1" vertex="1">
<mxGeometry x="-150" y="1735" width="110" height="160" as="geometry" />
</mxCell>
<mxCell id="HSe4UDjtnV36XrPr70aD-10" value="" style="group" parent="CCN0DATAm5xw3YuDV8w9-1" vertex="1" connectable="0">
<mxGeometry x="20" y="1500" width="640" height="1093" as="geometry" />
</mxCell>
<mxCell id="CCN0DATAm5xw3YuDV8w9-30" value="<font style="font-size: 24px;" color="#ffffff"><b>Detailansicht Gebuchter Termin (Popup)<br></b></font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#7EA6E0;strokeColor=#7EA6E0;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1">
<mxGeometry x="40" width="500" height="65" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-1" value="Persönlicher Prüfungstermin" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.containers.window;align=left;verticalAlign=top;spacingLeft=8;strokeColor2=#008cff;strokeColor3=#c4c4c4;fontColor=#666666;mainText=;fontSize=17;labelBackgroundColor=none;whiteSpace=wrap;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1">
<mxGeometry y="100" width="610" height="993" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-40" value="" style="group;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1" connectable="0">
<mxGeometry x="10" y="195" width="590" height="40" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-7" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#0080F0;shadow=0;dashed=0;shape=mxgraph.ios7.icons.calendar;" parent="_DsCVTP__QrlFAfJBJhi-40" vertex="1">
<mxGeometry y="5" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-21" value="Sommersemester 2024" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#505050;strokeWidth=1;fillColor=#ffffff;fontColor=#777777;whiteSpace=wrap;align=left;verticalAlign=middle;fontStyle=0;fontSize=14;spacingRight=0;spacing=17;" parent="_DsCVTP__QrlFAfJBJhi-40" vertex="1">
<mxGeometry x="200" width="390" height="40" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-22" value="" style="shape=triangle;direction=south;fillColor=#495057;strokeColor=none;perimeter=none;" parent="_DsCVTP__QrlFAfJBJhi-21" vertex="1">
<mxGeometry x="1" y="0.5" width="10" height="5" relative="1" as="geometry">
<mxPoint x="-17" y="-2.5" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-33" value="<font style="font-size: 14px;">Semester</font>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="_DsCVTP__QrlFAfJBJhi-40" vertex="1">
<mxGeometry x="40" y="5" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-41" value="" style="group;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1" connectable="0">
<mxGeometry x="13" y="244.75" width="587" height="40" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-9" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#0080F0;shadow=0;dashed=0;shape=mxgraph.ios7.icons.home;" parent="_DsCVTP__QrlFAfJBJhi-41" vertex="1">
<mxGeometry y="7.25" width="24" height="25.5" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-29" value="Juristische Fakultät" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#505050;strokeWidth=1;fillColor=#ffffff;fontColor=#777777;whiteSpace=wrap;align=left;verticalAlign=middle;fontStyle=0;fontSize=14;spacingRight=0;spacing=17;" parent="_DsCVTP__QrlFAfJBJhi-41" vertex="1">
<mxGeometry x="197" width="390" height="40" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-30" value="" style="shape=triangle;direction=south;fillColor=#495057;strokeColor=none;perimeter=none;" parent="_DsCVTP__QrlFAfJBJhi-29" vertex="1">
<mxGeometry x="1" y="0.5" width="10" height="5" relative="1" as="geometry">
<mxPoint x="-17" y="-2.5" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-34" value="<font style="font-size: 14px;">Fakultät / Einrichtung</font>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="_DsCVTP__QrlFAfJBJhi-41" vertex="1">
<mxGeometry x="37" y="2.75" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-44" value="" style="group;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1" connectable="0">
<mxGeometry x="10" y="295" width="590" height="40" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-5" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#0080F0;shadow=0;dashed=0;shape=mxgraph.ios7.icons.location_2;" parent="_DsCVTP__QrlFAfJBJhi-44" vertex="1">
<mxGeometry y="5" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-31" value="Prüfungszentrum" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#505050;strokeWidth=1;fillColor=#ffffff;fontColor=#777777;whiteSpace=wrap;align=left;verticalAlign=middle;fontStyle=0;fontSize=14;spacingRight=0;spacing=17;" parent="_DsCVTP__QrlFAfJBJhi-44" vertex="1">
<mxGeometry x="200" width="390" height="40" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-32" value="" style="shape=triangle;direction=south;fillColor=#495057;strokeColor=none;perimeter=none;" parent="_DsCVTP__QrlFAfJBJhi-31" vertex="1">
<mxGeometry x="1" y="0.5" width="10" height="5" relative="1" as="geometry">
<mxPoint x="-17" y="-2.5" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-35" value="<font style="font-size: 14px;">Raum</font>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="_DsCVTP__QrlFAfJBJhi-44" vertex="1">
<mxGeometry x="40" y="5" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-45" value="" style="group;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1" connectable="0">
<mxGeometry x="10" y="350" width="586.8200000000002" height="75" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-8" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#0080F0;shadow=0;dashed=0;shape=mxgraph.ios7.icons.clock;" parent="_DsCVTP__QrlFAfJBJhi-45" vertex="1">
<mxGeometry width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-36" value="<font style="font-size: 14px;">Datum</font>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="_DsCVTP__QrlFAfJBJhi-45" vertex="1">
<mxGeometry x="40" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-10" value="" style="shape=image;verticalLabelPosition=bottom;labelBackgroundColor=default;verticalAlign=top;aspect=fixed;imageAspect=0;image=data:image/png,iVBORw0KGgoAAAANSUhEUgAAAbUAAAA3CAYAAACLpdS6AAALJUlEQVR4Xu2dbagexRXHT76be9UPkkSfqxUhoOSDYBETSQIJGtMaGow0mBQNCIIv4AtawZYWpaKWaqGtIBSimIhiJCXBECSBJG2uBl+iBIWA+JLHJsEP6r3xu965j2Pmbnaf+c/u7M7L87+f4u6ZmXN+5+z8d3Z2H+f9MPMn/CMBEiABEiCBDAjMo6hlkEWGQAIkQAIkMEuAosZCIAESIAESyIYARS2bVDIQEiABEiABihprgARIgARIIBsCFLVsUslASIAESIAEKGqsARIgARIggWwIUNSySSUDIQESIAESoKixBkiABEiABLIhUEvUTp3+Wj45/qn0vzol301NJwXj/PEx6V2yUK5cfIUsXHBRI99T5tAo8EQaM9d+EkWOA47k4J+Dnwqd24uzqO0/OCkn+idlyVWL5fLLJuTCC8bb8Ku1Pr/5dko+++KEHPv4uEz0FsmqFUtrjZU6h1pBJ9aIufaTMHIccCQHvxz8VOe5vTiJ2s7db8nY/PNk1cp6QtBWEHX73X9gUqbPfC/rb77BqYvcODgFn6gxc+0nceQ44EgOzTj4qcbyXmBRUysTmfmVyFwETeNQxSnzZuICV2y5cmizyGLpm7n2kwlyPDuhc+4YCLwLBz9VWN0LJGpq72jvvkOyZfOGtv0J0v/WbTtkzerl1j223DkEgd/xoMy1H+DkOOBIDm4c/FTf8F4gUVOrk/Gx+XLN1Uu68KnzMd47ekymps9YV2u5c+gcfIABmWs/0MlxwJEc3Dj4qT4Povbi9jdk3drVyb0UggJUG8C79uyTOzbdMrRJ7hxQXinbMdd+skeOA47k4MbBT/V5ELW/P79V7r97Sxf+BBsDiRGxCRYAB4YJIHlEbOABMzVEGCE2qeNBYkRsRoFDFzFCjx+ZkEEqRoFDF0UXegwkj4hN6DhCj48wQmxCx9F0fCRGxKapH6HbxxIjRe2nSkASgtiELiyObyeA5BGxsY+UtwXCCLFJnRISI2IzChy6iJGiRlHros6iGgOZYBCbqIIK4AzCCLEJ4LrXIZEYERuvTgXorE6My259eNbTw6//dY7HVceRsChqFDWkTrKyQS4+xCYrKDWCQRghNjWGjqoJEiNiE1VQNZypE+OCa383O9LpIy/PGbHqOOIWRY2ihtRJVjbIxYfYZAWlRjAII8SmxtBRNUFiRGyiCqqGM2iMD/7l3/LKroNOI9y2boU8+9idUJvORO2eBx6RzRtvleuu/eUcx5557h9y4NDh2WO/mPktyX899wzkuGm0+8298sGHH8mfHvu9c1vdAEkIYlPlwNtH3pUnnvqb7Nn5KuSj4nJprye/3fAbyH5UjGLPtc6zzsfK5cvkkQfug2seaa8707Yv/PNZ6V28yKkEYudoBlM2d7hwGgYmNw4q1rKasxVHVxyUH3oVZvOpeL64mqtq37qomaL1x0cfmiNqr+34jxw6PPmzkKnivXSid84kYCvKx598etbk12vX1BY2RLAQG4qaa6ni9urCiz3Xqt5NEVu7fqPcvmnjzzcntpq3tS9O9p/P/Di3q6ilwFHFOWzucOFUVWE5cFDi/t/Jd5zmzCKPLjkkL2rm6kRd3EVRKx7r//+k3HXvg/BFaiZDJ6qusCGChdhQ1HCRcrFMKddmXEURc635Ynvdtzr+Zb8/+5TDRdRS4WibO4q1U8UJEbSY5w4bB10HxacB6LXVdT2gfjWxa32lpp2rupiLj+PKxK8swLJkNClORLAQG1TUVJzmZKQFXfMwHz+qf6s/s3BdL+ImRRK6bWq5NnmpSWnbq6/PPo0o5rjq2qhqr4+b/RTraFiuUuWIzAkmZ1u95sShiaiF4JD8Ss0srmJhVhVh1d6brVCbnkcEC7FpQ9TKWIXi1JRzDO2RPCI2SCzmDUmdmi+7oTFz7yJqiL8uNggjxMY2JiJqZZxs/fo6j8SI2Nj8KeOgRO2l7Wf36evsp9nGRc+jMSa/p1Z1NzrsAl++bGnnL0ggCUFs2hA11ac5eVXd8aPFN+p2SB4RGxtHPeHo1bdrzRfbq/GKkzdFTaSMky03Ps8jtYLY2HxCxF3ZhBI2NEYtav3/bZ0NuXf94CcYbf8dzYsidUSt7C3JYsKHLZ1/ddON8uc/PGqrkTnnkYQgNm2Jmvk4sskjBycokRinlmstPmq/y3y87rJS0y9J2Nq7iFqKHPUNXXE/XpdmGSdb2ebIQcfs8pZ1CA7Kz6xFrewVd+RuRCewLCl1BE31hwgWYjNM1PTeir5Q0T01ZW9OiKP46DGlXFe9xVs14RRrvqq9Oq7ediz7Q+/OU+JYdUOsj9d5WzrFucPGwawH16c4XdeDKWq2m4/i+ehXasjEjgRtJqWuoHUhamVvwZmiVpzwyr5T05Ofy/duCMNUbFLItW1vB3lBSOUDfZvNZaVWNqHHfM0Mm8xtnJGaTqGezDiQG36XlVqIeshe1FRhfnmiP+c7tTr7aao43z/6ofMjR7NgkFUYYlN1MRVXV8W7TFWw6q/s7Ufdp+bl+i0fcoGnYhNzrpFPUobVPNK+mKc6oqb6iJljWYzm48c6nKrqO2UOKibzez3NxfwuEr2uu+JgipptD614PomVmk6K/kUR9BEKmigXO0SwEJuyC1IdKys0LWTqvFq1qW/0homaz4vZhU1utkgeEZsiF52fMl7mpGx+VGzWPNq+ePfu8p2az1wijBAbm09VnwPZONv69XUeiRGxsflTtlIrPpKu2nu09e3jPBpjNntqPqC12QeSEMSmTR9dvsVp04/U+0byiNikzqGp/wgjxKapH6HbIzEiNqHjaDo+GmM2r/Q3BdZ2eyQhiE2bfqq7sjqPZ9v0KcW+kTwiNinG7tNnhBFi49OnEH0hMSI2IXz3OSYaYzY/aOwTXht9IQlBbNrwTT+uCvl4to24QvWJ5BGxCeV/LOMijBCbWOKp6wcSI2JTd/xY2sUSY2c/kxUL+Co/kIQgNrHHSf/a/3xjVBgj1wNikzovJEbEZhQ4dBEjRe0nykjRITZdJI1jNCOA5BGxaeZF+q0RRohN6iSQGBGbUeDQRYwUNYpaF3UW1RjIBIPYRBVUAGcQRohNANe9DonEiNh4dSpAZ7HECInai9vfkHVrV8uFF4wHQNX+kN98OyW79uyTOzbdMnSw3Dm0Tzr8CMy1nxyQ44AjObhx8FN9w3uBRG3/wUkZH5sv11y9pAufOh/jvaPHZGr6jKxasXTo2Llz6Bx8gAGZaz/QyXHAkRzcOPipPg+idur017J33yHZsnlDFz51PsbWbTtkzerlsnDBRUPHzp1D5+ADDMhc+4FOjgOO5ODGwU/1eRA11YVapcgPIqtWDl/NdOG0zzH2H5iJa95MXJZVmh4zVw4+mcbaF3PtJzPkOOBIDvU4+KnC6l6gx4+6+c7db8nY/POyETZVlNNnvpf1N9/gxDk3Dk7BJ2rMXPtJHDmencg5dwyEvQ4HP9VY3ouTqOkV24n+SVly1WK5/LKJ5F4eURu7n8387zuOfXxcJnqL4BVaEZ9asaXMoc2iiqVv5tpPJshxwJEc/HLwU53n9uIsaqoLtbf0yfFPpf/VKfluarot31rp9/zxMeldslCuXHyFdQ/N5kDKHGyx5XCeufaTRXIccCQH/xz8VOjcXmqJWhuOsE8SIAESIAESaEqAotaUINuTAAmQAAlEQ4CiFk0q6AgJkAAJkEBTAhS1pgTZngRIgARIIBoCFLVoUkFHSIAESIAEmhKgqDUlyPYkQAIkQALREKCoRZMKOkICJEACJNCUAEWtKUG2JwESIAESiIYARS2aVNAREiABEiCBpgR+BDoA6vIpzYs+AAAAAElFTkSuQmCC;clipPath=inset(0% 35.67% 0% 0%);" parent="_DsCVTP__QrlFAfJBJhi-45" vertex="1">
<mxGeometry x="192" y="-10" width="228.55" height="45" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-73" value="" style="group;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1" connectable="0">
<mxGeometry x="50" y="423" width="210" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-66" value="90" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=none;strokeColor=#999999;align=left;spacing=15;fontSize=14;fontColor=#6C767D;" parent="_DsCVTP__QrlFAfJBJhi-73" vertex="1">
<mxGeometry width="320" height="30" relative="1" as="geometry">
<mxPoint x="230" y="5" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-50" value="<font style="font-size: 14px;">Bearbeitungszeit in Minuten</font>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="_DsCVTP__QrlFAfJBJhi-73" vertex="1">
<mxGeometry y="6" width="210" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-74" value="" style="group;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1" connectable="0">
<mxGeometry x="50" y="470" width="550" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-58" value="<font style="font-size: 14px;">Anzahl der Studierenden</font>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="_DsCVTP__QrlFAfJBJhi-74" vertex="1">
<mxGeometry width="180" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-72" value="80" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=none;strokeColor=#999999;align=left;spacing=15;fontSize=14;fontColor=#6C767D;" parent="_DsCVTP__QrlFAfJBJhi-74" vertex="1">
<mxGeometry x="230" width="320" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-94" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=-0.167;entryY=0.483;entryDx=0;entryDy=0;entryPerimeter=0;" parent="HSe4UDjtnV36XrPr70aD-10" source="_DsCVTP__QrlFAfJBJhi-93" target="_DsCVTP__QrlFAfJBJhi-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-106" value="" style="group;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1" connectable="0">
<mxGeometry x="10" y="550" width="587" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-13" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#0080F0;shadow=0;dashed=0;shape=mxgraph.ios7.icons.user;" parent="_DsCVTP__QrlFAfJBJhi-106" vertex="1">
<mxGeometry width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-82" value="Verantwortende Person(en)" style="fillColor=none;strokeColor=none;align=left;fontSize=14;" parent="_DsCVTP__QrlFAfJBJhi-106" vertex="1">
<mxGeometry width="170" height="40" relative="1" as="geometry">
<mxPoint x="40" y="-5" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-83" value="Prof. Manuela Schulze" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=none;strokeColor=#999999;align=left;spacing=15;fontSize=14;fontColor=#6C767D;" parent="_DsCVTP__QrlFAfJBJhi-106" vertex="1">
<mxGeometry width="210" height="30" relative="1" as="geometry">
<mxPoint x="221" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-91" value="<font color="#b3b3b3" style="font-size: 14px;">Search</font>" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.searchBox;strokeColor=#999999;mainText=;strokeColor2=#008cff;fontColor=#666666;fontSize=17;align=left;spacingLeft=3;whiteSpace=wrap;" parent="_DsCVTP__QrlFAfJBJhi-106" vertex="1">
<mxGeometry x="437" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-116" value="" style="group;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1" connectable="0">
<mxGeometry x="13" y="673.97" width="587" height="42.049999999999955" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-15" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#0080F0;shadow=0;dashed=0;shape=mxgraph.ios7.icons.info;" parent="_DsCVTP__QrlFAfJBJhi-116" vertex="1">
<mxGeometry y="6.0499999999999545" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-108" value="Service vor Ort" style="fillColor=none;strokeColor=none;align=left;fontSize=14;" parent="_DsCVTP__QrlFAfJBJhi-116" vertex="1">
<mxGeometry x="73" width="105" height="40" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-110" value="Roman Herrlich" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#E9ECEF;strokeColor=#CED4DA;align=left;spacing=15;fontSize=14;fontColor=#6C767D;" parent="_DsCVTP__QrlFAfJBJhi-116" vertex="1">
<mxGeometry x="217" y="2.0499999999999545" width="370" height="40" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-112" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#0080F0;shadow=0;dashed=0;shape=mxgraph.ios7.icons.user;" parent="_DsCVTP__QrlFAfJBJhi-116" vertex="1">
<mxGeometry x="35.5" y="6.0499999999999545" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-129" value="<font style="font-size: 14px;">Nachteilsausgleich</font>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1">
<mxGeometry x="50" y="510" width="180" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-131" value="ja" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.comboBox;strokeColor=#999999;fillColor=#ddeeff;align=left;fillColor2=#aaddff;mainText=;fontColor=#666666;fontSize=14;spacingLeft=3;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1">
<mxGeometry x="231.5" y="510" width="98.5" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-143" value="" style="group;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1" connectable="0">
<mxGeometry x="10" y="729" width="421" height="120" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-117" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#0080F0;shadow=0;dashed=0;shape=mxgraph.ios7.icons.microphone;" parent="_DsCVTP__QrlFAfJBJhi-143" vertex="1">
<mxGeometry y="10" width="12" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-125" value="<font style="font-size: 14px;">Ressourcen</font>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="_DsCVTP__QrlFAfJBJhi-143" vertex="1">
<mxGeometry x="31" y="10" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-145" value="" style="group;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1" connectable="0">
<mxGeometry x="13" y="630" width="587" height="40" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-100" value="In Bearbeitung" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#E9ECEF;strokeColor=#CED4DA;align=left;spacing=15;fontSize=14;fontColor=#6C767D;" parent="_DsCVTP__QrlFAfJBJhi-145" vertex="1">
<mxGeometry x="217" width="370" height="40" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-111" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#0080F0;shadow=0;dashed=0;shape=mxgraph.ios7.icons.info;" parent="_DsCVTP__QrlFAfJBJhi-145" vertex="1">
<mxGeometry y="5" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-115" value="Status" style="fillColor=none;strokeColor=none;align=left;fontSize=14;" parent="_DsCVTP__QrlFAfJBJhi-145" vertex="1">
<mxGeometry x="74.5" width="105" height="40" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-144" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#0080F0;shadow=0;dashed=0;shape=mxgraph.ios7.icons.select;" parent="_DsCVTP__QrlFAfJBJhi-145" vertex="1">
<mxGeometry x="37" y="5" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-14" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#0080F0;shadow=0;dashed=0;shape=mxgraph.ios7.icons.eye;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1">
<mxGeometry x="13" y="600" width="30" height="14.1" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-89" value="Aufsichtsperson(en)" style="fillColor=none;strokeColor=none;align=left;fontSize=14;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1">
<mxGeometry x="50" y="587.05" width="170" height="40" as="geometry" />
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-63" value="Titel der Prüfung" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=none;strokeColor=#999999;align=left;spacing=15;fontSize=14;fontColor=#6C767D;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1">
<mxGeometry x="50" y="150" width="550" height="30" as="geometry">
<mxPoint x="40" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="_DsCVTP__QrlFAfJBJhi-6" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#0080F0;shadow=0;dashed=0;shape=mxgraph.ios7.icons.add;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1">
<mxGeometry x="10" y="150" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="r4X6bJzELrKwT9pSQfz--1" value="Freitext Personeneingabe" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=none;strokeColor=#999999;align=left;spacing=15;fontSize=14;fontColor=#6C767D;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1">
<mxGeometry x="209" y="592.05" width="391" height="30" as="geometry">
<mxPoint x="40" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="fP41CBTMwJmhMQKIAeSz-71" value="<font style="font-size: 14px;">Zeit-Slot</font>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1">
<mxGeometry x="50" y="380.84000000000003" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="fP41CBTMwJmhMQKIAeSz-72" value="Zeit-Slot 09-11 Uhr" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.comboBox;strokeColor=#999999;fillColor=#ddeeff;align=left;fillColor2=#aaddff;mainText=;fontColor=#666666;fontSize=14;spacingLeft=3;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1">
<mxGeometry x="209" y="383.84000000000003" width="180" height="30" as="geometry" />
</mxCell>
<mxCell id="fP41CBTMwJmhMQKIAeSz-73" value="<font style="font-size: 14px;">Beachten Sie die Zeit-Slot-Reihenfolge bei der Buchung</font>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1">
<mxGeometry x="409" y="383.84000000000003" width="190" height="30" as="geometry" />
</mxCell>
<mxCell id="fP41CBTMwJmhMQKIAeSz-81" value="" style="swimlane;strokeColor=#999999;swimlaneFillColor=#FFFFFF;fillColor=#ffffff;fontColor=#666666;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=0;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=0;marginBottom=0;whiteSpace=wrap;html=1;" parent="HSe4UDjtnV36XrPr70aD-10" vertex="1">
<mxGeometry x="209" y="738" width="390" height="120" as="geometry" />
</mxCell>
<mxCell id="fP41CBTMwJmhMQKIAeSz-84" value="Kopfhörer und Mikrophon" style="text;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=27;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;rSize=5;fillColor=none;fontColor=inherit;fontSize=17;" parent="fP41CBTMwJmhMQKIAeSz-81" vertex="1">
<mxGeometry width="390" height="30" as="geometry" />
</mxCell>
<mxCell id="fP41CBTMwJmhMQKIAeSz-85" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;" parent="fP41CBTMwJmhMQKIAeSz-84" vertex="1">
<mxGeometry y="0.5" width="15" height="15" relative="1" as="geometry">
<mxPoint x="8" y="-7.5" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="fP41CBTMwJmhMQKIAeSz-82" value="Barrierefreier Arbeitsplatz" style="text;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=27;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;fillColor=none;fontColor=inherit;fontSize=17;" parent="fP41CBTMwJmhMQKIAeSz-81" vertex="1">
<mxGeometry y="30" width="390" height="30" as="geometry" />
</mxCell>
<mxCell id="fP41CBTMwJmhMQKIAeSz-83" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;" parent="fP41CBTMwJmhMQKIAeSz-82" vertex="1">
<mxGeometry y="0.5" width="15" height="15" relative="1" as="geometry">
<mxPoint x="8" y="-7.5" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="fP41CBTMwJmhMQKIAeSz-88" value="Self Exam Browser" style="text;strokeColor=none;align=left;verticalAlign=middle;spacingLeft=27;spacingRight=10;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;fillColor=none;fontColor=inherit;fontSize=17;" parent="fP41CBTMwJmhMQKIAeSz-81" vertex="1">
<mxGeometry y="60" width="390" height="30" as="geometry" />
</mxCell>
<mxCell id="fP41CBTMwJmhMQKIAeSz-89" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;" parent="fP41CBTMwJmhMQKIAeSz-88" vertex="1">
<mxGeometry y="0.5" width="15" height="15" relative="1" as="geometry">